This patch is generated from the nt branch of HEAD in squid3
Sun Oct 11 15:51:30 2009 GMT
See http://devel.squid-cache.org/
Index: squid3/.cvsignore
diff -u squid3/.cvsignore:1.4 squid3/.cvsignore:1.1.10.3
--- squid3/.cvsignore:1.4 Sun Jun 1 09:23:28 2003
+++ squid3/.cvsignore Sun Nov 20 14:20:33 2005
@@ -1,10 +1,10 @@
-.cvsignore
+Makefile
Makefile.in
-aclocal
+autom4te*
+aclocal.*
cfgaux
-aclocal.m4
+config.*
configure
+configure.lineno
+libtool
merge.log
-autom4te*
-config.*
-Makefile
Index: squid3/Makefile.am
diff -u squid3/Makefile.am:1.21 squid3/Makefile.am:1.6.2.16
--- squid3/Makefile.am:1.21 Sun Aug 16 12:51:08 2009
+++ squid3/Makefile.am Mon Aug 17 11:47:16 2009
@@ -2,7 +2,7 @@
#
AUTOMAKE_OPTIONS = dist-bzip2 subdir-objects 1.5 foreign
-DIST_SUBDIRS = compat lib snmplib scripts src icons errors contrib doc helpers test-suite tools
+DIST_SUBDIRS = compat lib snmplib scripts src icons errors contrib doc helpers port test-suite tools
SUBDIRS = compat lib @makesnmplib@ scripts src icons errors doc helpers test-suite tools
DISTCLEANFILES = include/stamp-h include/stamp-h[0-9]*
Index: squid3/configure.in
diff -u squid3/configure.in:1.1019 squid3/configure.in:1.26.2.179
--- squid3/configure.in:1.1019 Sun Oct 4 03:51:32 2009
+++ squid3/configure.in Sun Oct 11 14:56:24 2009
@@ -4,7 +4,7 @@
dnl
dnl
dnl
-AC_INIT([Squid Web Proxy],[3.HEAD-BZR],[http://www.squid-cache.org/bugs/],[squid])
+AC_INIT([Squid Web Proxy],[3.HEAD-NT-BZR],[http://www.squid-cache.org/bugs/],[squid])
AC_PREREQ(2.61)
AC_CONFIG_HEADERS([include/autoconf.h])
AC_CONFIG_AUX_DIR(cfgaux)
@@ -4146,6 +4146,8 @@
helpers/external_acl/mswin_lm_group/Makefile \
helpers/url_rewrite/Makefile \
helpers/url_rewrite/fake/Makefile \
+ port/Makefile \
+ port/win32/Makefile \
tools/Makefile
])
Index: squid3/compat/.cvsignore
diff -u /dev/null squid3/compat/.cvsignore:1.1.2.1
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/compat/.cvsignore Tue Jun 2 08:53:30 2009
@@ -0,0 +1,6 @@
+.deps
+.libs
+Makefile
+Makefile.in
+*.la
+*.lo
Index: squid3/compat/os/mswin.h
diff -u squid3/compat/os/mswin.h:1.3 squid3/compat/os/mswin.h:1.1.2.7
--- squid3/compat/os/mswin.h:1.3 Sun Aug 23 03:51:03 2009
+++ squid3/compat/os/mswin.h Sun Aug 23 08:02:42 2009
@@ -68,15 +68,15 @@
typedef unsigned int uint32_t;
typedef unsigned __int64 uint64_t;
-typedef long pid_t;
+/* typedef long pid_t; */
#if defined __USE_FILE_OFFSET64
typedef int64_t off_t;
-typedef uint64_t ino_t;
+// typedef uint64_t ino_t;
#else
typedef long off_t;
-typedef unsigned long ino_t;
+// typedef unsigned long ino_t;
#endif
@@ -131,6 +131,7 @@
#define tempnam _tempnam
#endif
#define truncate WIN32_truncate
+#define tzset _tzset
#define umask _umask
#define unlink _unlink
#if defined(_MSC_VER) /* Microsoft C Compiler ONLY */
Index: squid3/contrib/.cvsignore
diff -u squid3/contrib/.cvsignore:1.2 squid3/contrib/.cvsignore:1.1.6.2
--- squid3/contrib/.cvsignore:1.2 Sun Jun 1 09:23:29 2003
+++ squid3/contrib/.cvsignore Tue Nov 22 19:55:57 2005
@@ -1,3 +1,2 @@
-.cvsignore
-Makefile.in
Makefile
+Makefile.in
Index: squid3/doc/.cvsignore
diff -u squid3/doc/.cvsignore:1.2 squid3/doc/.cvsignore:1.1.6.2
--- squid3/doc/.cvsignore:1.2 Sun Jun 1 09:23:30 2003
+++ squid3/doc/.cvsignore Sun Nov 20 13:56:14 2005
@@ -1,3 +1,4 @@
-.cvsignore
-Makefile.in
Makefile
+Makefile.in
+cachemgr.cgi.8
+squid.8
Index: squid3/doc/win32-relnotes.html
diff -u /dev/null squid3/doc/win32-relnotes.html:1.1.2.1
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/doc/win32-relnotes.html Sat Apr 12 19:04:23 2003
@@ -0,0 +1,148 @@
+
+
+
+WIN32 Squid Release Notes
+
+
+
+
+WIN32 Squid Release Notes
+
+Windows Service run mode
+
+When Squid is compiled as a Windows service, the -N command line switch is disabled, and default run mode of
+Squid is no daemon (=no service) mode, so is possible to run Squid from command line
+for debug purpose with all command line options available.
+On Windows 2000/XP/.NET the service is configured to use the Windows Service Recovery option restarting
+automatically after 60 seconds.
+
+Usage
+
+The squid -? command gives the following output:
+
+
Usage: squid [-dhirsvzCDFRVYX] [-f config-file] [-[au] port] [-k signal] [-n nam
+e] [-O CommandLine]
+ -a port Specify HTTP port number (default: 3128).
+ -d level Write debugging to stderr also.
+ -f file Use given config-file instead of
+ c:/squid/etc/squid.conf
+ -h Print help message.
+ -i Installs as a Windows Service (see -n option).
+ -k reconfigure|rotate|shutdown|interrupt|kill|debug|check|parse
+ Parse configuration file, then send signal to
+ running copy (except -k parse) and exit.
+ -n name Specify Windows Service name to use for service operations
+ default is: SquidNT.
+ -r Removes a Windows Service (see -n option).
+ -s Enable logging to syslog.
+ -u port Specify ICP port number (default: 3130), disable with 0.
+ -v Print version.
+ -z Create swap directories
+ -C Do not catch fatal signals.
+ -D Disable initial DNS tests.
+ -F Don't serve any requests until store is rebuilt.
+ -O options
+ Set Windows Service Command line options in Registry.
+ -R Do not set REUSEADDR on port.
+ -S Double-check swap during rebuild.
+ -V Virtual host httpd-accelerator.
+ -X Force full debugging.
+ -Y Only return UDP_HIT or UDP_MISS_NOFETCH during fast reload.
+
+
+The service installation is made with -i command line switch, it's possible to use
+-f switch at the same time for specify a different config-file settings for the Squid
+Service that is stored on Registry.
+A new -n switch specify the Windows Service Name, so multiple Squid instance are allowed.
+"SquidNT" is the default when the switch is not used.
+
+So the install service syntax is:
+
squid -i [-f file] [-n name]
+
+To start as service is used a "hidden" --ntservice:service-name command line switch,
+where service-name is the name specified with -n options at service install time.
+
+Service uninstallation is made with -r command line switch plus the appropriate
+-n switch.
+
+The -k switch family must be used with the appropriate -f and -n switches, so the syntax is:
+
+
squid -k command [-f file] -n service-name
+where service-name is the name specified with -n options at service install time.
+
+To use Squid original command line, the new -O switch must be used ONCE, the sintax is:
+
+
squid -O cmdline [-n service-name]
+
+If multiple service command line options must be specified, use quote. The -n switch is
+needed only when non default service name is in use.
+
+Example:
+
+
squid -O "-D -a 8080" -n squidsvc
+
+
+PSAPI.DLL (Process Status Helper) Considerations
+
+The process status helper functions make it easier for you to obtain information about
+processes and device drivers running on Microsoft® Windows NT®/Windows® 2000. These
+functions are available in PSAPI.DLL, which is distributed in the Microsoft® Platform
+Software Development Kit (SDK). The same information is generally available through the
+performance data in the registry, but it is more difficult to get to it. PSAPI.DLL is
+freely redistributable.
+
+PSAPI.DLL is available only on Windows NT, 2000, XP and .NET. The implementation in Squid is
+aware of this, and try to use it only on the rigth platform.
+
+On Windows NT PSAPI.DLL can be found as component of many applications, if you need it,
+you can find it on Windows NT Resource KIT. If you have problem, it can be
+downloaded from here:
+http://download.microsoft.com/download/platformsdk/Redist/4.0.1371.1/NT4/EN-US/psinst.EXE
+
+On Windows 2000 and later it is available installing the Windows Support Tools, located on the
+Support\Tools folder of the installation Windows CD-ROM.
+
+
+Registry DNS lookup
+
+On Windows platforms, if no value is specified in the dns_nameservers option on
+squid.conf or in the /etc/resolv.conf file, the list of DNS name servers are
+taken from the Windows registry, both static and dynamic DHCP configurations
+are supported.
+
+
+Awin32 fs module
+
+awin32 is a native WIN32 Async I/O Squid fs module derived from aufs. Configuration
+in squid.conf is identical to aufs, but You nedd to specify 'awin32' instead 'aufs' as
+cache type.
+
+Compatibility Notes
+
+
+Known Limitations:
+
+- Squid features not operationals: DISKD, WCCP, Transparent Proxy.
+
- Some code sections can make blocking calls.
+
- Some external helpers may not work.
+
- File Descriptors number hard-limited to 2048
+
+
+To report a BUG, e-mail on squidnt@serassio.it.
+The latest version and documentation can be found on http://www.serassio.it/SquidNT.htm.
+
+
+
Index: squid3/errors/.cvsignore
diff -u squid3/errors/.cvsignore:1.2 squid3/errors/.cvsignore:1.1.4.4
--- squid3/errors/.cvsignore:1.2 Sun Jun 1 09:23:31 2003
+++ squid3/errors/.cvsignore Wed Jun 3 13:12:05 2009
@@ -1,3 +1,35 @@
-.cvsignore
-Makefile.in
Makefile
+Makefile.in
+zh-cn
+uz
+uk
+tr
+sv
+sr
+ru
+ro
+pt-br
+nl
+lv
+ja
+it
+id
+hy
+fr
+fi
+fa
+et
+es
+en-us
+en-nz
+en-gb
+en-au
+en
+el
+de
+da
+cs
+ca
+bg
+az
+ar
Index: squid3/helpers/.cvsignore
diff -u squid3/helpers/.cvsignore:1.2 squid3/helpers/.cvsignore:1.1.4.3
--- squid3/helpers/.cvsignore:1.2 Sun Jun 1 09:23:31 2003
+++ squid3/helpers/.cvsignore Sun Nov 20 14:56:03 2005
@@ -1,3 +1,2 @@
-.cvsignore
-Makefile.in
Makefile
+Makefile.in
Index: squid3/helpers/basic_auth/.cvsignore
diff -u squid3/helpers/basic_auth/.cvsignore:1.2 squid3/helpers/basic_auth/.cvsignore:1.1.4.3
--- squid3/helpers/basic_auth/.cvsignore:1.2 Sun Jun 1 09:23:31 2003
+++ squid3/helpers/basic_auth/.cvsignore Sun Nov 20 14:29:03 2005
@@ -1,3 +1,2 @@
-.cvsignore
-Makefile.in
Makefile
+Makefile.in
Index: squid3/helpers/basic_auth/LDAP/.cvsignore
diff -u squid3/helpers/basic_auth/LDAP/.cvsignore:1.2 squid3/helpers/basic_auth/LDAP/.cvsignore:1.1.4.3
--- squid3/helpers/basic_auth/LDAP/.cvsignore:1.2 Sun Jun 1 09:23:32 2003
+++ squid3/helpers/basic_auth/LDAP/.cvsignore Sun Nov 20 14:29:03 2005
@@ -1,4 +1,5 @@
-.cvsignore
-Makefile.in
-Makefile
.deps
+.libs
+Makefile
+Makefile.in
+squid_ldap_auth
Index: squid3/helpers/basic_auth/MSNT/.cvsignore
diff -u squid3/helpers/basic_auth/MSNT/.cvsignore:1.2 squid3/helpers/basic_auth/MSNT/.cvsignore:1.1.4.3
--- squid3/helpers/basic_auth/MSNT/.cvsignore:1.2 Sun Jun 1 09:23:32 2003
+++ squid3/helpers/basic_auth/MSNT/.cvsignore Sun Nov 20 14:29:03 2005
@@ -1,4 +1,5 @@
-.cvsignore
-Makefile.in
-Makefile
.deps
+.libs
+Makefile
+Makefile.in
+msnt_auth
Index: squid3/helpers/basic_auth/NCSA/.cvsignore
diff -u squid3/helpers/basic_auth/NCSA/.cvsignore:1.2 squid3/helpers/basic_auth/NCSA/.cvsignore:1.1.4.3
--- squid3/helpers/basic_auth/NCSA/.cvsignore:1.2 Sun Jun 1 09:23:33 2003
+++ squid3/helpers/basic_auth/NCSA/.cvsignore Sun Nov 20 14:29:03 2005
@@ -1,4 +1,5 @@
-.cvsignore
-Makefile.in
-Makefile
.deps
+.libs
+Makefile
+Makefile.in
+ncsa_auth
Index: squid3/helpers/basic_auth/PAM/.cvsignore
diff -u squid3/helpers/basic_auth/PAM/.cvsignore:1.2 squid3/helpers/basic_auth/PAM/.cvsignore:1.1.4.3
--- squid3/helpers/basic_auth/PAM/.cvsignore:1.2 Sun Jun 1 09:23:33 2003
+++ squid3/helpers/basic_auth/PAM/.cvsignore Sun Nov 20 14:29:03 2005
@@ -1,4 +1,5 @@
-.cvsignore
-Makefile.in
-Makefile
.deps
+.libs
+Makefile
+Makefile.in
+pam_auth
Index: squid3/helpers/basic_auth/SASL/.cvsignore
diff -u squid3/helpers/basic_auth/SASL/.cvsignore:1.2 squid3/helpers/basic_auth/SASL/.cvsignore:1.1.4.3
--- squid3/helpers/basic_auth/SASL/.cvsignore:1.2 Sun Jun 1 09:23:34 2003
+++ squid3/helpers/basic_auth/SASL/.cvsignore Sun Nov 20 14:29:03 2005
@@ -1,4 +1,5 @@
-.cvsignore
-Makefile.in
-Makefile
.deps
+.libs
+Makefile
+Makefile.in
+sasl_auth
Index: squid3/helpers/basic_auth/SMB/.cvsignore
diff -u squid3/helpers/basic_auth/SMB/.cvsignore:1.2 squid3/helpers/basic_auth/SMB/.cvsignore:1.1.4.3
--- squid3/helpers/basic_auth/SMB/.cvsignore:1.2 Sun Jun 1 09:23:34 2003
+++ squid3/helpers/basic_auth/SMB/.cvsignore Sun Nov 20 14:29:03 2005
@@ -1,4 +1,5 @@
-.cvsignore
-Makefile.in
-Makefile
.deps
+.libs
+Makefile
+Makefile.in
+smb_auth
Index: squid3/helpers/basic_auth/YP/.cvsignore
diff -u squid3/helpers/basic_auth/YP/.cvsignore:1.2 squid3/helpers/basic_auth/YP/.cvsignore:1.1.4.3
--- squid3/helpers/basic_auth/YP/.cvsignore:1.2 Sun Jun 1 09:23:35 2003
+++ squid3/helpers/basic_auth/YP/.cvsignore Sun Nov 20 14:29:03 2005
@@ -1,4 +1,5 @@
-.cvsignore
-Makefile.in
-Makefile
.deps
+.libs
+Makefile
+Makefile.in
+yp_auth
Index: squid3/helpers/basic_auth/getpwnam/.cvsignore
diff -u squid3/helpers/basic_auth/getpwnam/.cvsignore:1.2 squid3/helpers/basic_auth/getpwnam/.cvsignore:1.1.4.3
--- squid3/helpers/basic_auth/getpwnam/.cvsignore:1.2 Sun Jun 1 09:23:35 2003
+++ squid3/helpers/basic_auth/getpwnam/.cvsignore Sun Nov 20 14:29:03 2005
@@ -1,4 +1,5 @@
-.cvsignore
-Makefile.in
-Makefile
.deps
+.libs
+Makefile
+Makefile.in
+getpwname_auth
Index: squid3/helpers/basic_auth/mswin_sspi/.cvsignore
diff -u squid3/helpers/basic_auth/mswin_sspi/.cvsignore:1.2 squid3/helpers/basic_auth/mswin_sspi/.cvsignore:1.1.2.2
--- squid3/helpers/basic_auth/mswin_sspi/.cvsignore:1.2 Sat Jun 10 23:36:00 2006
+++ squid3/helpers/basic_auth/mswin_sspi/.cvsignore Sun Nov 20 14:29:03 2005
@@ -1,5 +1,5 @@
.deps
.libs
Makefile
-mswin_auth.exe
Makefile.in
+mswin_auth.exe
Index: squid3/helpers/basic_auth/multi-domain-NTLM/.cvsignore
diff -u squid3/helpers/basic_auth/multi-domain-NTLM/.cvsignore:1.2 squid3/helpers/basic_auth/multi-domain-NTLM/.cvsignore:1.1.4.3
--- squid3/helpers/basic_auth/multi-domain-NTLM/.cvsignore:1.2 Sun Jun 1 09:23:35 2003
+++ squid3/helpers/basic_auth/multi-domain-NTLM/.cvsignore Sun Nov 20 14:29:03 2005
@@ -1,3 +1,3 @@
-.cvsignore
-Makefile.in
+.deps
Makefile
+Makefile.in
Index: squid3/helpers/digest_auth/.cvsignore
diff -u squid3/helpers/digest_auth/.cvsignore:1.2 squid3/helpers/digest_auth/.cvsignore:1.1.4.3
--- squid3/helpers/digest_auth/.cvsignore:1.2 Sun Jun 1 09:23:36 2003
+++ squid3/helpers/digest_auth/.cvsignore Sun Nov 20 14:56:03 2005
@@ -1,3 +1,2 @@
-.cvsignore
-Makefile.in
Makefile
+Makefile.in
Index: squid3/helpers/digest_auth/eDirectory/edir_ldapext.h
diff -u squid3/helpers/digest_auth/eDirectory/edir_ldapext.h:1.5 squid3/helpers/digest_auth/eDirectory/edir_ldapext.h:1.1.2.7
--- squid3/helpers/digest_auth/eDirectory/edir_ldapext.h:1.5 Sat Oct 11 00:27:45 2008
+++ squid3/helpers/digest_auth/eDirectory/edir_ldapext.h Sat Aug 22 20:28:15 2009
@@ -1 +1,2 @@
-int nds_get_password(LDAP *ld, char *object_dn, size_t * pwd_len, char *pwd);
+int nds_get_password(LDAP *ld, char *object_dn, size_t * pwd_len, char *pwd);
+
Index: squid3/helpers/digest_auth/ldap/.cvsignore
diff -u squid3/helpers/digest_auth/ldap/.cvsignore:1.2 squid3/helpers/digest_auth/ldap/.cvsignore:1.1.2.1
--- squid3/helpers/digest_auth/ldap/.cvsignore:1.2 Sat Jun 10 23:36:00 2006
+++ squid3/helpers/digest_auth/ldap/.cvsignore Tue Apr 25 12:24:25 2006
@@ -1,5 +1,5 @@
.deps
.libs
Makefile
-digest_ldap_auth
Makefile.in
+digest_ldap_auth.exe
Index: squid3/helpers/digest_auth/password/.cvsignore
diff -u squid3/helpers/digest_auth/password/.cvsignore:1.2 squid3/helpers/digest_auth/password/.cvsignore:1.1.4.3
--- squid3/helpers/digest_auth/password/.cvsignore:1.2 Sun Jun 1 09:23:36 2003
+++ squid3/helpers/digest_auth/password/.cvsignore Sun Nov 20 14:56:03 2005
@@ -1,4 +1,5 @@
-.cvsignore
-Makefile.in
-Makefile
.deps
+.libs
+Makefile
+Makefile.in
+digest_pw_auth
Index: squid3/helpers/external_acl/.cvsignore
diff -u squid3/helpers/external_acl/.cvsignore:1.2 squid3/helpers/external_acl/.cvsignore:1.1.4.3
--- squid3/helpers/external_acl/.cvsignore:1.2 Sun Jun 1 09:23:36 2003
+++ squid3/helpers/external_acl/.cvsignore Sun Nov 20 14:37:22 2005
@@ -1,3 +1,2 @@
-.cvsignore
-Makefile.in
Makefile
+Makefile.in
Index: squid3/helpers/external_acl/ip_user/.cvsignore
diff -u squid3/helpers/external_acl/ip_user/.cvsignore:1.2 squid3/helpers/external_acl/ip_user/.cvsignore:1.1.4.3
--- squid3/helpers/external_acl/ip_user/.cvsignore:1.2 Sun Jun 1 09:23:37 2003
+++ squid3/helpers/external_acl/ip_user/.cvsignore Sun Nov 20 14:37:22 2005
@@ -1,4 +1,5 @@
-.cvsignore
-Makefile.in
-Makefile
.deps
+.libs
+Makefile
+Makefile.in
+ip_user_check
Index: squid3/helpers/external_acl/ip_user/dict.c
diff -u squid3/helpers/external_acl/ip_user/dict.c:1.3 squid3/helpers/external_acl/ip_user/dict.c:1.1.2.3
--- squid3/helpers/external_acl/ip_user/dict.c:1.3 Sun Aug 23 09:51:54 2009
+++ squid3/helpers/external_acl/ip_user/dict.c Tue Aug 25 12:02:02 2009
@@ -19,13 +19,18 @@
*
*/
+#include "config.h"
#include
#include
#include
#include
+#ifdef _SQUID_MSWIN_
+#include
+#else
#include
#include
#include
+#endif
#include "ip_user.h"
@@ -128,9 +133,11 @@
if ((strchr (current_entry->username, '@')) == NULL) {
if ((match_user (current_entry->username, username)) == 1)
return 1;
+#ifndef _SQUID_MSWIN_
} else {
if ((match_group (current_entry->username, username)) == 1)
return 1;
+#endif
}
}
current_entry = current_entry->next_entry;
Index: squid3/helpers/external_acl/ip_user/main.c
diff -u squid3/helpers/external_acl/ip_user/main.c:1.5 squid3/helpers/external_acl/ip_user/main.c:1.1.2.5
--- squid3/helpers/external_acl/ip_user/main.c:1.5 Sat Oct 11 00:27:45 2008
+++ squid3/helpers/external_acl/ip_user/main.c Sun Oct 12 16:27:22 2008
@@ -23,7 +23,11 @@
#include
#include
+#ifdef _SQUID_MSWIN_
+#include
+#else
#include
+#endif
#include
#include "ip_user.h"
Index: squid3/helpers/external_acl/ip_user/match.c
diff -u squid3/helpers/external_acl/ip_user/match.c:1.3 squid3/helpers/external_acl/ip_user/match.c:1.1.2.3
--- squid3/helpers/external_acl/ip_user/match.c:1.3 Sat Oct 11 00:27:45 2008
+++ squid3/helpers/external_acl/ip_user/match.c Sun Oct 12 16:27:22 2008
@@ -18,10 +18,13 @@
* Author: Rodrigo Campos (rodrigo@geekbunker.org)
*
*/
+#include "config.h"
#include
#include
#include
+#ifndef _SQUID_MSWIN_
#include
+#endif
#include "ip_user.h"
@@ -38,6 +41,7 @@
return 0;
} /* match_user */
+#ifndef _SQUID_MSWIN_
int
match_group (char *dict_group, char *username)
{
@@ -60,3 +64,4 @@
return 0;
} /* match_group */
+#endif
Index: squid3/helpers/external_acl/ldap_group/.cvsignore
diff -u squid3/helpers/external_acl/ldap_group/.cvsignore:1.2 squid3/helpers/external_acl/ldap_group/.cvsignore:1.1.4.3
--- squid3/helpers/external_acl/ldap_group/.cvsignore:1.2 Sun Jun 1 09:23:38 2003
+++ squid3/helpers/external_acl/ldap_group/.cvsignore Sun Nov 20 14:37:23 2005
@@ -1,4 +1,5 @@
-.cvsignore
-Makefile.in
-Makefile
.deps
+.libs
+Makefile
+Makefile.in
+squid_ldap_group
Index: squid3/helpers/external_acl/mswin_ad_group/.cvsignore
diff -u /dev/null squid3/helpers/external_acl/mswin_ad_group/.cvsignore:1.1.2.1
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/helpers/external_acl/mswin_ad_group/.cvsignore Tue Jul 1 08:51:01 2008
@@ -0,0 +1,5 @@
+.deps
+.libs
+Makefile
+Makefile.in
+mswin_check_ad_group.exe
Index: squid3/helpers/external_acl/mswin_lm_group/.cvsignore
diff -u squid3/helpers/external_acl/mswin_lm_group/.cvsignore:1.2 squid3/helpers/external_acl/mswin_lm_group/.cvsignore:1.1.2.2
--- squid3/helpers/external_acl/mswin_lm_group/.cvsignore:1.2 Sat Jun 10 23:36:00 2006
+++ squid3/helpers/external_acl/mswin_lm_group/.cvsignore Sun Nov 20 14:37:23 2005
@@ -1,5 +1,5 @@
.deps
.libs
Makefile
-mswin_check_lm_group.exe
Makefile.in
+mswin_check_lm_group.exe
Index: squid3/helpers/external_acl/session/.cvsignore
diff -u squid3/helpers/external_acl/session/.cvsignore:1.2 squid3/helpers/external_acl/session/.cvsignore:1.1.2.1
--- squid3/helpers/external_acl/session/.cvsignore:1.2 Sat Jun 10 23:36:00 2006
+++ squid3/helpers/external_acl/session/.cvsignore Tue Apr 25 12:24:25 2006
@@ -1,5 +1,5 @@
.deps
.libs
Makefile
-squid_session
Makefile.in
+squid_session.exe
Index: squid3/helpers/external_acl/unix_group/.cvsignore
diff -u squid3/helpers/external_acl/unix_group/.cvsignore:1.2 squid3/helpers/external_acl/unix_group/.cvsignore:1.1.4.3
--- squid3/helpers/external_acl/unix_group/.cvsignore:1.2 Sun Jun 1 09:23:38 2003
+++ squid3/helpers/external_acl/unix_group/.cvsignore Sun Nov 20 14:37:23 2005
@@ -1,4 +1,5 @@
-.cvsignore
-Makefile.in
-Makefile
.deps
+.libs
+Makefile
+Makefile.in
+squid_unix_group
Index: squid3/helpers/external_acl/wbinfo_group/.cvsignore
diff -u squid3/helpers/external_acl/wbinfo_group/.cvsignore:1.2 squid3/helpers/external_acl/wbinfo_group/.cvsignore:1.1.4.3
--- squid3/helpers/external_acl/wbinfo_group/.cvsignore:1.2 Sun Jun 1 09:23:38 2003
+++ squid3/helpers/external_acl/wbinfo_group/.cvsignore Sun Nov 20 14:37:23 2005
@@ -1,3 +1,3 @@
-.cvsignore
-Makefile.in
+.deps
Makefile
+Makefile.in
Index: squid3/helpers/negotiate_auth/mswin_sspi/.cvsignore
diff -u squid3/helpers/negotiate_auth/mswin_sspi/.cvsignore:1.2 squid3/helpers/negotiate_auth/mswin_sspi/.cvsignore:1.1.2.2
--- squid3/helpers/negotiate_auth/mswin_sspi/.cvsignore:1.2 Sat Jun 10 23:36:00 2006
+++ squid3/helpers/negotiate_auth/mswin_sspi/.cvsignore Sun Nov 20 14:59:59 2005
@@ -1,5 +1,5 @@
.deps
.libs
Makefile
-mswin_negotiate_auth.exe
Makefile.in
+mswin_negotiate_auth.exe
Index: squid3/helpers/negotiate_auth/squid_kerb_auth/.cvsignore
diff -u squid3/helpers/negotiate_auth/squid_kerb_auth/.cvsignore:1.1 squid3/helpers/negotiate_auth/squid_kerb_auth/.cvsignore:1.1.10.3
--- squid3/helpers/negotiate_auth/squid_kerb_auth/.cvsignore:1.1 Wed Jul 18 11:59:56 2007
+++ squid3/helpers/negotiate_auth/squid_kerb_auth/.cvsignore Wed Jun 3 13:12:05 2009
@@ -1,3 +1,14 @@
+.deps
Makefile.in
Makefile
-.deps
+aclocal.m4
+autom4te.cache
+cfgaux
+config.guess
+config.sub
+configure
+depcomp
+install-sh
+ltmain.sh
+missing
+ska_config.h.in
Index: squid3/helpers/ntlm_auth/.cvsignore
diff -u squid3/helpers/ntlm_auth/.cvsignore:1.2 squid3/helpers/ntlm_auth/.cvsignore:1.1.4.3
--- squid3/helpers/ntlm_auth/.cvsignore:1.2 Sun Jun 1 09:23:39 2003
+++ squid3/helpers/ntlm_auth/.cvsignore Sun Nov 20 15:09:44 2005
@@ -1,3 +1,2 @@
-.cvsignore
-Makefile.in
Makefile
+Makefile.in
Index: squid3/helpers/ntlm_auth/SMB/.cvsignore
diff -u squid3/helpers/ntlm_auth/SMB/.cvsignore:1.2 squid3/helpers/ntlm_auth/SMB/.cvsignore:removed
--- squid3/helpers/ntlm_auth/SMB/.cvsignore:1.2 Sun Jun 1 09:23:39 2003
+++ squid3/helpers/ntlm_auth/SMB/.cvsignore Sun Oct 11 15:51:33 2009
@@ -1,4 +0,0 @@
-.cvsignore
-Makefile.in
-Makefile
-.deps
Index: squid3/helpers/ntlm_auth/SMB/smbval/.cvsignore
diff -u squid3/helpers/ntlm_auth/SMB/smbval/.cvsignore:1.2 squid3/helpers/ntlm_auth/SMB/smbval/.cvsignore:removed
--- squid3/helpers/ntlm_auth/SMB/smbval/.cvsignore:1.2 Sun Jun 1 09:23:40 2003
+++ squid3/helpers/ntlm_auth/SMB/smbval/.cvsignore Sun Oct 11 15:51:33 2009
@@ -1,4 +0,0 @@
-.cvsignore
-Makefile.in
-Makefile
-.deps
Index: squid3/helpers/ntlm_auth/fakeauth/.cvsignore
diff -u squid3/helpers/ntlm_auth/fakeauth/.cvsignore:1.2 squid3/helpers/ntlm_auth/fakeauth/.cvsignore:1.1.4.3
--- squid3/helpers/ntlm_auth/fakeauth/.cvsignore:1.2 Sun Jun 1 09:23:40 2003
+++ squid3/helpers/ntlm_auth/fakeauth/.cvsignore Sun Nov 20 15:09:44 2005
@@ -1,4 +1,5 @@
-.cvsignore
-Makefile.in
-Makefile
.deps
+.libs
+Makefile
+Makefile.in
+fakeauth_auth
Index: squid3/helpers/ntlm_auth/mswin_sspi/.cvsignore
diff -u squid3/helpers/ntlm_auth/mswin_sspi/.cvsignore:1.2 squid3/helpers/ntlm_auth/mswin_sspi/.cvsignore:1.1.2.2
--- squid3/helpers/ntlm_auth/mswin_sspi/.cvsignore:1.2 Sat Jun 10 23:36:00 2006
+++ squid3/helpers/ntlm_auth/mswin_sspi/.cvsignore Sun Nov 20 15:09:44 2005
@@ -1,5 +1,5 @@
.deps
.libs
Makefile
-mswin_ntlm_auth.exe
Makefile.in
+mswin_ntlm_auth.exe
Index: squid3/helpers/ntlm_auth/no_check/.cvsignore
diff -u squid3/helpers/ntlm_auth/no_check/.cvsignore:1.2 squid3/helpers/ntlm_auth/no_check/.cvsignore:1.1.4.3
--- squid3/helpers/ntlm_auth/no_check/.cvsignore:1.2 Sun Jun 1 09:23:40 2003
+++ squid3/helpers/ntlm_auth/no_check/.cvsignore Sun Nov 20 15:09:44 2005
@@ -1,3 +1,3 @@
-.cvsignore
-Makefile.in
+.deps
Makefile
+Makefile.in
Index: squid3/helpers/ntlm_auth/smb_lm/.cvsignore
diff -u /dev/null squid3/helpers/ntlm_auth/smb_lm/.cvsignore:1.1.2.1
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/helpers/ntlm_auth/smb_lm/.cvsignore Wed Jun 3 13:12:05 2009
@@ -0,0 +1,5 @@
+.deps
+.libs
+Makefile
+Makefile.in
+ntlm_auth
Index: squid3/helpers/ntlm_auth/smb_lm/smbval/.cvsignore
diff -u /dev/null squid3/helpers/ntlm_auth/smb_lm/smbval/.cvsignore:1.1.2.1
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/helpers/ntlm_auth/smb_lm/smbval/.cvsignore Wed Jun 3 13:12:05 2009
@@ -0,0 +1,4 @@
+.cvsignore
+Makefile.in
+Makefile
+.deps
Index: squid3/icons/.cvsignore
diff -u squid3/icons/.cvsignore:1.2 squid3/icons/.cvsignore:1.1.6.3
--- squid3/icons/.cvsignore:1.2 Sun Jun 1 09:23:41 2003
+++ squid3/icons/.cvsignore Thu Dec 11 10:00:06 2008
@@ -1,30 +1,3 @@
-.cvsignore
-Makefile.in
-anthony-binhex.gif
-anthony-bomb.gif
-anthony-box.gif
-anthony-box2.gif
-anthony-c.gif
-anthony-compressed.gif
-anthony-dir.gif
-anthony-dirup.gif
-anthony-dvi.gif
-anthony-f.gif
-anthony-image.gif
-anthony-image2.gif
-anthony-layout.gif
-anthony-link.gif
-anthony-movie.gif
-anthony-pdf.gif
-anthony-portal.gif
-anthony-ps.gif
-anthony-quill.gif
-anthony-script.gif
-anthony-sound.gif
-anthony-tar.gif
-anthony-tex.gif
-anthony-text.gif
-anthony-unknown.gif
-anthony-xbm.gif
-anthony-xpm.gif
Makefile
+Makefile.in
+
Index: squid3/include/.cvsignore
diff -u squid3/include/.cvsignore:1.2 squid3/include/.cvsignore:1.1.6.2
--- squid3/include/.cvsignore:1.2 Sun Jun 1 09:23:41 2003
+++ squid3/include/.cvsignore Tue Nov 22 19:55:57 2005
@@ -1,5 +1,4 @@
-.cvsignore
-Makefile.in
-autoconf.h.in
-stamp-h*
autoconf.h
+autoconf.h.in
+stamp-h
+stamp-h1
Index: squid3/include/config.h
diff -u squid3/include/config.h:1.23 squid3/include/config.h:1.3.16.21
--- squid3/include/config.h:1.23 Thu Feb 19 02:03:33 2009
+++ squid3/include/config.h Sat Aug 22 16:40:28 2009
@@ -59,126 +59,10 @@
#ifdef USE_POSIX_REGEX
#ifndef USE_RE_SYNTAX
-#define USE_RE_SYNTAX REG_EXTENDED /* default Syntax */
+#define USE_RE_SYNTAX REG_EXTENDED /* default Syntax */
#endif
#endif
-
-/* Typedefs for missing entries on a system */
-
-/* int8_t */
-#ifndef HAVE_INT8_T
-#if HAVE_CHAR && SIZEOF_CHAR == 1
-typedef char int8_t;
-#else
-#error NO 8 bit signed type available
-#endif
-#endif
-
-/* u_int8_t */
-#ifndef HAVE_U_INT8_T
-#if HAVE_UINT8_T
-typedef uint8_t u_int8_t;
-#else
-typedef unsigned char u_int8_t;
-#endif
-#endif
-
-/* int16_t */
-#ifndef HAVE_INT16_T
-#if HAVE_SHORT && SIZEOF_SHORT == 2
-typedef short int16_t;
-#elif HAVE_INT && SIZEOF_INT == 2
-typedef int int16_t;
-#else
-#error NO 16 bit signed type available
-#endif
-#endif
-
-/* u_int16_t */
-#ifndef HAVE_U_INT16_T
-#if HAVE_UINT16_T
-typedef uint16_t u_int16_t;
-#else
-typedef unsigned int16_t u_int16_t;
-#endif
-#endif
-
-/* int32_t */
-#ifndef HAVE_INT32_T
-#if HAVE_INT && SIZEOF_INT == 4
-typedef int int32_t;
-#elif HAVE_LONG && SIZEOF_LONG == 4
-typedef long int32_t;
-#else
-#error NO 32 bit signed type available
-#endif
-#endif
-
-/* u_int32_t */
-#ifndef HAVE_U_INT32_T
-#if HAVE_UINT32_T
-typedef uint32_t u_int32_t;
-#else
-typedef unsigned int32_t u_int32_t;
-#endif
-#endif
-
-/* int64_t */
-#ifndef HAVE_INT64_T
-#if HAVE___INT64
-typedef __int64 int64_t;
-#elif HAVE_LONG && SIZEOF_LONG == 8
-typedef long int64_t;
-#elif HAVE_LONG_LONG && SIZEOF_LONG_LONG == 8
-typedef long long int64_t;
-#else
-#error NO 64 bit signed type available
-#endif
-#endif
-
-/* u_int64_t */
-#ifndef HAVE_U_INT64_T
-#if HAVE_UINT64_T
-typedef uint64_t u_int64_t;
-#else
-typedef unsigned int64_t u_int64_t;
-#endif
-#endif
-
-
-#ifndef HAVE_PID_T
-typedef int pid_t;
-#endif
-
-#ifndef HAVE_SIZE_T
-typedef unsigned int size_t;
-#endif
-
-#ifndef HAVE_SSIZE_T
-typedef int ssize_t;
-#endif
-
-#ifndef HAVE_OFF_T
-typedef int off_t;
-#endif
-
-#ifndef HAVE_MODE_T
-typedef unsigned short mode_t;
-#endif
-
-#ifndef HAVE_FD_MASK
-typedef unsigned long fd_mask;
-#endif
-
-#ifndef HAVE_SOCKLEN_T
-typedef int socklen_t;
-#endif
-
-#ifndef HAVE_MTYP_T
-typedef long mtyp_t;
-#endif
-
#if !defined(CACHEMGR_HOSTNAME)
#define CACHEMGR_HOSTNAME ""
#else
Index: squid3/include/squid_types.h
diff -u squid3/include/squid_types.h:1.6 squid3/include/squid_types.h:1.1.2.6
--- squid3/include/squid_types.h:1.6 Mon Aug 10 11:51:51 2009
+++ squid3/include/squid_types.h Sat Aug 22 16:40:28 2009
@@ -81,6 +81,147 @@
#include
#endif
+
+/* Typedefs for missing entries on a system */
+
+/* int8_t */
+#ifndef HAVE_INT8_T
+#if HAVE_CHAR && SIZEOF_CHAR == 1
+typedef char int8_t;
+#else
+#error NO 8 bit signed type available
+#endif
+#endif
+
+/* u_int8_t */
+#ifndef HAVE_U_INT8_T
+#if HAVE_UINT8_T
+typedef uint8_t u_int8_t;
+#else
+typedef unsigned char u_int8_t;
+#endif
+#endif
+
+/* int16_t */
+#ifndef HAVE_INT16_T
+#if HAVE_SHORT && SIZEOF_SHORT == 2
+typedef short int16_t;
+#elif HAVE_INT && SIZEOF_INT == 2
+typedef int int16_t;
+#else
+#error NO 16 bit signed type available
+#endif
+#endif
+
+/* u_int16_t */
+#ifndef HAVE_U_INT16_T
+#if HAVE_UINT16_T
+typedef uint16_t u_int16_t;
+#else
+#ifndef HAVE_INT16_T
+#if HAVE_SHORT && SIZEOF_SHORT == 2
+typedef unsigned short u_int16_t;
+#elif HAVE_INT && SIZEOF_INT == 2
+typedef unsigned int u_int16_t;
+#else
+typedef unsigned int16_t u_int16_t;
+#endif
+#endif /* HAVE_INT16_T */
+#endif /* HAVE_UINT16_T */
+#endif /* HAVE_U_INT16_T */
+
+/* int32_t */
+#ifndef HAVE_INT32_T
+#if HAVE_INT && SIZEOF_INT == 4
+typedef int int32_t;
+#elif HAVE_LONG && SIZEOF_LONG == 4
+typedef long int32_t;
+#else
+#error NO 32 bit signed type available
+#endif
+#endif
+
+/* u_int32_t */
+#ifndef HAVE_U_INT32_T
+#if HAVE_UINT32_T
+typedef uint32_t u_int32_t;
+#else
+#ifndef HAVE_INT32_T
+#if HAVE_INT && SIZEOF_INT == 4
+typedef unsigned int u_int32_t;
+#elif HAVE_LONG && SIZEOF_LONG == 4
+typedef unsigned long u_int32_t;
+#else
+typedef unsigned int32_t u_int32_t;
+#endif
+#endif
+#endif
+#endif
+
+/* int64_t */
+#ifndef HAVE_INT64_T
+#if HAVE___INT64
+typedef __int64 int64_t;
+#elif HAVE_LONG && SIZEOF_LONG == 8
+typedef long int64_t;
+#elif HAVE_LONG_LONG && SIZEOF_LONG_LONG == 8
+typedef long long int64_t;
+#else
+#error NO 64 bit signed type available
+#endif
+#endif
+
+/* u_int64_t */
+#ifndef HAVE_U_INT64_T
+#if HAVE_UINT64_T
+typedef uint64_t u_int64_t;
+#else
+#ifndef HAVE_INT64_T
+#if HAVE___INT64
+typedef unsigned __int64 u_int64_t;
+#elif HAVE_LONG && SIZEOF_LONG == 8
+typedef unsigned long u_int64_t;
+#elif HAVE_LONG_LONG && SIZEOF_LONG_LONG == 8
+typedef unsigned long long u_int64_t;
+#else
+typedef unsigned int64_t u_int64_t;
+#endif
+#endif
+#endif
+#endif
+
+#ifndef HAVE_PID_T
+typedef int pid_t;
+#endif
+
+#ifndef HAVE_SIZE_T
+typedef unsigned int size_t;
+#endif
+
+#ifndef HAVE_SSIZE_T
+typedef int ssize_t;
+#endif
+
+#ifndef HAVE_OFF_T
+typedef int off_t;
+#endif
+
+#ifndef HAVE_MODE_T
+typedef unsigned short mode_t;
+#endif
+
+#ifndef HAVE_FD_MASK
+typedef unsigned long fd_mask;
+#endif
+
+#ifndef HAVE_SOCKLEN_T
+typedef int socklen_t;
+#endif
+
+#ifndef HAVE_MTYP_T
+typedef long mtyp_t;
+#endif
+
/*
* ISO C99 Standard printf() macros for 64 bit integers
* On some 64 bit platform, HP Tru64 is one, for printf must be used
Index: squid3/lib/.cvsignore
diff -u squid3/lib/.cvsignore:1.2 squid3/lib/.cvsignore:1.1.4.5
--- squid3/lib/.cvsignore:1.2 Sun Jun 1 09:23:41 2003
+++ squid3/lib/.cvsignore Wed Jun 3 13:12:05 2009
@@ -1,4 +1,5 @@
-.cvsignore
-Makefile.in
-Makefile
.deps
+Makefile
+Makefile.in
+libLtdl
+testHeaders.c
Index: squid3/lib/libTrie/.cvsignore
diff -u squid3/lib/libTrie/.cvsignore:1.5 squid3/lib/libTrie/.cvsignore:1.1.2.4
--- squid3/lib/libTrie/.cvsignore:1.5 Wed Jul 18 11:59:57 2007
+++ squid3/lib/libTrie/.cvsignore Sat Jul 21 16:55:46 2007
@@ -1,13 +1,14 @@
-.cvsignore
+Makefile
Makefile.in
+aclocal.m4
autom4te*
+cfgaux
config.*
configure
+configure.lineno
depcomp
install-sh
missing
mkinstalldirs
-Makefile
-aclocal.m4
stamp-h*
cfgaux
Index: squid3/lib/libTrie/include/.cvsignore
diff -u squid3/lib/libTrie/include/.cvsignore:1.2 squid3/lib/libTrie/include/.cvsignore:1.1.4.3
--- squid3/lib/libTrie/include/.cvsignore:1.2 Sun Jun 1 09:23:42 2003
+++ squid3/lib/libTrie/include/.cvsignore Sun Nov 20 17:51:08 2005
@@ -1,3 +1,2 @@
-.cvsignore
-Makefile.in
Makefile
+Makefile.in
Index: squid3/lib/libTrie/src/.cvsignore
diff -u squid3/lib/libTrie/src/.cvsignore:1.2 squid3/lib/libTrie/src/.cvsignore:1.1.4.3
--- squid3/lib/libTrie/src/.cvsignore:1.2 Sun Jun 1 09:23:42 2003
+++ squid3/lib/libTrie/src/.cvsignore Sun Nov 20 17:51:09 2005
@@ -1,4 +1,3 @@
-.cvsignore
-Makefile.in
-Makefile
.deps
+Makefile
+Makefile.in
Index: squid3/lib/libTrie/test/.cvsignore
diff -u squid3/lib/libTrie/test/.cvsignore:1.2 squid3/lib/libTrie/test/.cvsignore:1.1.4.3
--- squid3/lib/libTrie/test/.cvsignore:1.2 Sun Jun 1 09:23:43 2003
+++ squid3/lib/libTrie/test/.cvsignore Sun Nov 20 17:51:09 2005
@@ -1,4 +1,5 @@
-.cvsignore
-Makefile.in
-Makefile
.deps
+Makefile
+Makefile.in
+trie
+trie-c
Index: squid3/lib/tests/.cvsignore
diff -u squid3/lib/tests/.cvsignore:1.2 squid3/lib/tests/.cvsignore:1.1.2.1
--- squid3/lib/tests/.cvsignore:1.2 Sat Jun 10 23:36:05 2006
+++ squid3/lib/tests/.cvsignore Sun Nov 20 17:51:09 2005
@@ -1,4 +1,3 @@
.dirstamp
.libs
testAll
-Makefile.in
Index: squid3/port/.cvsignore
diff -u /dev/null squid3/port/.cvsignore:1.1.2.1
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/.cvsignore Sun Nov 20 21:10:09 2005
@@ -0,0 +1,2 @@
+Makefile
+Makefile.in
Index: squid3/port/Makefile.am
diff -u /dev/null squid3/port/Makefile.am:1.2.18.1
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/Makefile.am Tue Feb 25 02:48:33 2003
@@ -0,0 +1,6 @@
+## Process this file with automake to produce Makefile.in
+#
+# $Id$
+#
+
+SUBDIRS = win32
Index: squid3/port/win32/.cvsignore
diff -u /dev/null squid3/port/win32/.cvsignore:1.1.18.8
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/.cvsignore Sun Nov 20 21:10:10 2005
@@ -0,0 +1,9 @@
+*.suo
+*.user
+BuildLog.htm
+Debug
+Makefile
+Makefile.in
+Release
+squid.ncb
+squid_version.mak
Index: squid3/port/win32/Build.vcproj
diff -u /dev/null squid3/port/win32/Build.vcproj:1.1.2.1
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/Build.vcproj Sat Jan 1 11:28:41 2005
@@ -0,0 +1,76 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Index: squid3/port/win32/Makefile.am
diff -u /dev/null squid3/port/win32/Makefile.am:1.2.18.25
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/Makefile.am Sat Aug 22 20:23:42 2009
@@ -0,0 +1,75 @@
+## Process this file with automake to produce Makefile.in
+#
+# $Id$
+#
+
+EXTRA_DIST = \
+ Build.vcproj \
+ cf_data.vcproj \
+ default_config_file.cmd \
+ digest_edir_auth/digest_edir_auth.vcproj \
+ digest_ldap_auth/digest_ldap_auth.vcproj \
+ digest_pw_auth/digest_pw_auth.vcproj \
+ doc.vcproj \
+ icons.vcproj \
+ install.vcproj \
+ modules.vcproj \
+ PerlPreprocessing.vcproj \
+ repl_modules.cmd \
+ squid.sln \
+ squid_conf_default.vcproj \
+ squid_mswin.mak \
+ update.cmd \
+ cachemgr/cachemgr.vcproj \
+ cf_gen/cf_gen.vcproj \
+ dnsserver/dnsserver.vcproj \
+ fake_auth/fake_auth.vcproj \
+ include/autoconf.h \
+ include/crypt.h \
+ include/getopt.h \
+ include/dirent.h \
+ ip_user_check/ip_user_check.vcproj \
+ LDAP_auth/LDAP_auth.vcproj \
+ LDAP_group/LDAP_group.vcproj \
+ libbasic/libbasic.vcproj \
+ libAIO/libAIO.vcproj \
+ libBlocking/libBlocking.vcproj \
+ libDiskThreads/libDiskThreads.vcproj \
+ libc/libc.vcproj \
+ libcc/libcc.vcproj \
+ libcompat/libcompat.vcproj \
+ libcompatc/libcompatc.vcproj \
+ libcoss/libcoss.vcproj \
+ libdigest/libdigest.vcproj \
+ libheap/libheap.vcproj \
+ libicap/libicap.vcproj \
+ libip/libip.vcproj \
+ liblru/liblru.vcproj \
+ libmiscutil/libmiscutil.vcproj \
+ libnegotiate/libnegotiate.vcproj \
+ libntlm/libntlm.vcproj \
+ libntlmauth/libntlmauth.vcproj \
+ libnull/libnull.vcproj \
+ libsnmp/libsnmp.vcproj \
+ libsspwin32/libsspwin32.vcproj \
+ libtrie/libtrie.vcproj \
+ libufs/libufs.vcproj \
+ mswin_auth/mswin_auth.vcproj \
+ mswin_check_lm_group/mswin_check_lm_group.vcproj \
+ mswin_negotiate_auth/mswin_negotiate_auth.vcproj \
+ mswin_ntlm_auth/mswin_ntlm_auth.vcproj \
+ NCSA_auth/NCSA_auth.vcproj \
+ pinger/pinger.vcproj \
+ squid/buildcount.dsm \
+ squid/buildver.h \
+ squid/resource.h \
+ squid/squid.vcproj \
+ squid/squid.mak \
+ squid/squid.rc \
+ squid/squid.rc2 \
+ squid_radius_auth/squid_radius_auth.vcproj \
+ squid_session/squid_session.vcproj \
+ squidclient/squidclient.vcproj \
+ setup/banner.jpg \
+ setup/Setup.vdproj \
+ unlinkd/unlinkd.vcproj
Index: squid3/port/win32/PerlPreprocessing.vcproj
diff -u /dev/null squid3/port/win32/PerlPreprocessing.vcproj:1.1.2.4
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/PerlPreprocessing.vcproj Sun Jun 18 09:11:14 2006
@@ -0,0 +1,114 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Index: squid3/port/win32/cf_data.vcproj
diff -u /dev/null squid3/port/win32/cf_data.vcproj:1.1.2.3
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/cf_data.vcproj Sun Jan 30 12:04:57 2005
@@ -0,0 +1,101 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Index: squid3/port/win32/default_config_file.cmd
diff -u /dev/null squid3/port/win32/default_config_file.cmd:1.2.18.5
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/default_config_file.cmd Sat Jun 17 22:01:53 2006
@@ -0,0 +1,9 @@
+@echo off
+echo /* automatically generated by %0
+echo * do not edit manually
+echo */
+echo #define DEFAULT_CONFIG_FILE "%1"
+echo #define DEFAULT_SQUID_ERROR_DIR "%2"
+echo #define DEFAULT_CACHEMGR_CONFIG "%3"
+echo /* Info of package */
+FOR /F "tokens=1,2 delims== " %%a in (squid_version.mak) do echo #define %%a "%%b"
Index: squid3/port/win32/doc.vcproj
diff -u /dev/null squid3/port/win32/doc.vcproj:1.1.2.1
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/doc.vcproj Sun Nov 6 16:12:18 2005
@@ -0,0 +1,113 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Index: squid3/port/win32/icons.cmd
diff -u /dev/null squid3/port/win32/icons.cmd:1.2.18.2
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/icons.cmd Sun Nov 6 16:12:18 2005
@@ -0,0 +1,6 @@
+@echo off
+cd /D %1
+attrib -r *.gif >NUL 2>&1
+del *.gif >NUL 2>&1
+sh icons.shar
+attrib -r *.gif >NUL 2>&1
Index: squid3/port/win32/icons.vcproj
diff -u /dev/null squid3/port/win32/icons.vcproj:1.1.2.4
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/icons.vcproj Sun Nov 6 16:12:18 2005
@@ -0,0 +1,97 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Index: squid3/port/win32/install.vcproj
diff -u /dev/null squid3/port/win32/install.vcproj:1.1.2.2
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/install.vcproj Sat Jan 1 11:14:50 2005
@@ -0,0 +1,98 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Index: squid3/port/win32/modules.vcproj
diff -u /dev/null squid3/port/win32/modules.vcproj:1.1.2.4
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/modules.vcproj Sat Jun 17 22:01:53 2006
@@ -0,0 +1,143 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Index: squid3/port/win32/repl_modules.cmd
diff -u /dev/null squid3/port/win32/repl_modules.cmd:1.2.18.1
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/repl_modules.cmd Tue Feb 25 02:48:37 2003
@@ -0,0 +1,17 @@
+@echo off
+if exist %temp%\repl_modules.txt del %temp%\repl_modules.txt
+:loop
+echo %1 >> %temp%\repl_modules.txt
+shift /1
+if NOT "%1"=="" goto :loop
+echo /* automatically generated by %0 %*
+echo * do not edit
+echo */
+echo #include "squid.h"
+echo #include "Store.h"
+for /F %%m in (%temp%\repl_modules.txt) do echo extern REMOVALPOLICYCREATE createRemovalPolicy_%%m;
+echo void storeReplSetup(void)
+echo {
+for /F %%m in (%temp%\repl_modules.txt) do echo storeReplAdd("%%m", createRemovalPolicy_%%m);
+echo }
+if exist %temp%\repl_modules.txt del %temp%\repl_modules.txt
Index: squid3/port/win32/squid.sln
diff -u /dev/null squid3/port/win32/squid.sln:1.1.2.13
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/squid.sln Sat Aug 22 20:23:42 2009
@@ -0,0 +1,497 @@
+
+Microsoft Visual Studio Solution File, Format Version 9.00
+# Visual Studio 2005
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Build", "Build.vcproj", "{C50A62CE-A509-4D92-BB2D-B6AC10F29679}"
+ ProjectSection(ProjectDependencies) = postProject
+ {E9AE84F6-5932-40EA-9EFF-B9553993258E} = {E9AE84F6-5932-40EA-9EFF-B9553993258E}
+ {A42166DB-7B36-4757-9987-20630AF9A15A} = {A42166DB-7B36-4757-9987-20630AF9A15A}
+ {FEBC1AD4-8805-490F-86C4-EED32F9D364C} = {FEBC1AD4-8805-490F-86C4-EED32F9D364C}
+ {436115CB-6D55-48CA-9625-484F9DAE7F7E} = {436115CB-6D55-48CA-9625-484F9DAE7F7E}
+ {869AB5B9-DC77-4E83-BA14-1FFC4D03A343} = {869AB5B9-DC77-4E83-BA14-1FFC4D03A343}
+ {C3ACE9B0-9E43-4CCB-8642-8F66F55DAEDD} = {C3ACE9B0-9E43-4CCB-8642-8F66F55DAEDD}
+ {B5C81293-3761-4F0C-9AA6-508D20A5BA00} = {B5C81293-3761-4F0C-9AA6-508D20A5BA00}
+ {8B2EF167-36D3-43AC-8F3D-68E609C08EBA} = {8B2EF167-36D3-43AC-8F3D-68E609C08EBA}
+ {9CEC3963-D2C7-40F1-8AC5-B3E2A350E5D9} = {9CEC3963-D2C7-40F1-8AC5-B3E2A350E5D9}
+ {0A05ED5C-CAA9-4753-B70D-7A443099572F} = {0A05ED5C-CAA9-4753-B70D-7A443099572F}
+ {41039656-D5A4-412B-A60D-75F912F5FC1E} = {41039656-D5A4-412B-A60D-75F912F5FC1E}
+ {C8237A1B-3BA9-412F-8D48-5F7BA8A93E32} = {C8237A1B-3BA9-412F-8D48-5F7BA8A93E32}
+ {DCC74F1A-6DB9-44CC-8935-2CFA54ACAB38} = {DCC74F1A-6DB9-44CC-8935-2CFA54ACAB38}
+ {B11B1C1A-29FA-4E3C-A2A8-FACCD0FD4F18} = {B11B1C1A-29FA-4E3C-A2A8-FACCD0FD4F18}
+ {236A1219-0E12-4A5D-AB03-C1680A665F05} = {236A1219-0E12-4A5D-AB03-C1680A665F05}
+ {68527517-5E82-4A59-861F-F8342237DE18} = {68527517-5E82-4A59-861F-F8342237DE18}
+ {5A3E6817-5A3C-4F59-BC8B-5365A50D2780} = {5A3E6817-5A3C-4F59-BC8B-5365A50D2780}
+ {8FBE9FCA-498E-4D2E-86C0-A84A83D34E27} = {8FBE9FCA-498E-4D2E-86C0-A84A83D34E27}
+ {BEA083E2-7516-49E9-B09F-11CE27EB5FAE} = {BEA083E2-7516-49E9-B09F-11CE27EB5FAE}
+ {647229B4-4DBF-4113-B78B-80C257F68C90} = {647229B4-4DBF-4113-B78B-80C257F68C90}
+ {0FFF4160-F800-49C1-9451-A690458BDE3D} = {0FFF4160-F800-49C1-9451-A690458BDE3D}
+ {86E28700-5F2A-4181-A6F7-13B739E434B7} = {86E28700-5F2A-4181-A6F7-13B739E434B7}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "LDAP_auth", "LDAP_auth\LDAP_auth.vcproj", "{FEBC1AD4-8805-490F-86C4-EED32F9D364C}"
+ ProjectSection(ProjectDependencies) = postProject
+ {89F015D1-DCA7-444C-AFA0-D1E445922243} = {89F015D1-DCA7-444C-AFA0-D1E445922243}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "LDAP_group", "LDAP_group\LDAP_group.vcproj", "{9CEC3963-D2C7-40F1-8AC5-B3E2A350E5D9}"
+ ProjectSection(ProjectDependencies) = postProject
+ {89F015D1-DCA7-444C-AFA0-D1E445922243} = {89F015D1-DCA7-444C-AFA0-D1E445922243}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "NCSA_auth", "NCSA_auth\NCSA_auth.vcproj", "{B5C81293-3761-4F0C-9AA6-508D20A5BA00}"
+ ProjectSection(ProjectDependencies) = postProject
+ {89F015D1-DCA7-444C-AFA0-D1E445922243} = {89F015D1-DCA7-444C-AFA0-D1E445922243}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PerlPreprocessing", "PerlPreprocessing.vcproj", "{AB5858D1-01C2-43A6-9665-2ACC4CB37052}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cachemgr", "cachemgr\cachemgr.vcproj", "{C8237A1B-3BA9-412F-8D48-5F7BA8A93E32}"
+ ProjectSection(ProjectDependencies) = postProject
+ {89F015D1-DCA7-444C-AFA0-D1E445922243} = {89F015D1-DCA7-444C-AFA0-D1E445922243}
+ {9F3EC1F7-7AB1-495F-9151-966C6F12DB48} = {9F3EC1F7-7AB1-495F-9151-966C6F12DB48}
+ {D699E422-95DC-448E-8338-9AF3E0DD5BFB} = {D699E422-95DC-448E-8338-9AF3E0DD5BFB}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cf_data", "cf_data.vcproj", "{0DFA8E93-CD7B-42DF-9BB5-1BB51B55B587}"
+ ProjectSection(ProjectDependencies) = postProject
+ {E665C76C-411C-40B2-BF0A-12E61DFFF0B7} = {E665C76C-411C-40B2-BF0A-12E61DFFF0B7}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cf_gen", "cf_gen\cf_gen.vcproj", "{426670FC-0606-4959-B3FA-2A0EC2264E91}"
+ ProjectSection(ProjectDependencies) = postProject
+ {AB5858D1-01C2-43A6-9665-2ACC4CB37052} = {AB5858D1-01C2-43A6-9665-2ACC4CB37052}
+ {89F015D1-DCA7-444C-AFA0-D1E445922243} = {89F015D1-DCA7-444C-AFA0-D1E445922243}
+ {0DFA8E93-CD7B-42DF-9BB5-1BB51B55B587} = {0DFA8E93-CD7B-42DF-9BB5-1BB51B55B587}
+ {D699E422-95DC-448E-8338-9AF3E0DD5BFB} = {D699E422-95DC-448E-8338-9AF3E0DD5BFB}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "dnsserver", "dnsserver\dnsserver.vcproj", "{41039656-D5A4-412B-A60D-75F912F5FC1E}"
+ ProjectSection(ProjectDependencies) = postProject
+ {89F015D1-DCA7-444C-AFA0-D1E445922243} = {89F015D1-DCA7-444C-AFA0-D1E445922243}
+ {9F3EC1F7-7AB1-495F-9151-966C6F12DB48} = {9F3EC1F7-7AB1-495F-9151-966C6F12DB48}
+ {D699E422-95DC-448E-8338-9AF3E0DD5BFB} = {D699E422-95DC-448E-8338-9AF3E0DD5BFB}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "fake_auth", "fake_auth\fake_auth.vcproj", "{86E28700-5F2A-4181-A6F7-13B739E434B7}"
+ ProjectSection(ProjectDependencies) = postProject
+ {89F015D1-DCA7-444C-AFA0-D1E445922243} = {89F015D1-DCA7-444C-AFA0-D1E445922243}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "icons", "icons.vcproj", "{436115CB-6D55-48CA-9625-484F9DAE7F7E}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "install", "install.vcproj", "{636D3412-1C74-48C8-89A6-EEAB2E6E9BFF}"
+ ProjectSection(ProjectDependencies) = postProject
+ {C50A62CE-A509-4D92-BB2D-B6AC10F29679} = {C50A62CE-A509-4D92-BB2D-B6AC10F29679}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ip_user_check", "ip_user_check\ip_user_check.vcproj", "{5A3E6817-5A3C-4F59-BC8B-5365A50D2780}"
+ ProjectSection(ProjectDependencies) = postProject
+ {89F015D1-DCA7-444C-AFA0-D1E445922243} = {89F015D1-DCA7-444C-AFA0-D1E445922243}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libbasic", "libbasic\libbasic.vcproj", "{CD900DFA-11EE-42C3-BAD9-72BEA224B43B}"
+ ProjectSection(ProjectDependencies) = postProject
+ {E665C76C-411C-40B2-BF0A-12E61DFFF0B7} = {E665C76C-411C-40B2-BF0A-12E61DFFF0B7}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libc", "libc\libc.vcproj", "{2BCD20AD-A8F3-4E68-9282-9ABAD020042F}"
+ ProjectSection(ProjectDependencies) = postProject
+ {AB5858D1-01C2-43A6-9665-2ACC4CB37052} = {AB5858D1-01C2-43A6-9665-2ACC4CB37052}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libcc", "libcc\libcc.vcproj", "{D699E422-95DC-448E-8338-9AF3E0DD5BFB}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libcoss", "libcoss\libcoss.vcproj", "{B569AD4D-0243-4791-8409-8EF77B227C4D}"
+ ProjectSection(ProjectDependencies) = postProject
+ {E665C76C-411C-40B2-BF0A-12E61DFFF0B7} = {E665C76C-411C-40B2-BF0A-12E61DFFF0B7}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libdigest", "libdigest\libdigest.vcproj", "{5FAC2F21-D34C-46F3-8356-5D28C1136D4C}"
+ ProjectSection(ProjectDependencies) = postProject
+ {E665C76C-411C-40B2-BF0A-12E61DFFF0B7} = {E665C76C-411C-40B2-BF0A-12E61DFFF0B7}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libheap", "libheap\libheap.vcproj", "{9DD3787C-DF28-4670-B65C-DA6AB7AFBA28}"
+ ProjectSection(ProjectDependencies) = postProject
+ {E665C76C-411C-40B2-BF0A-12E61DFFF0B7} = {E665C76C-411C-40B2-BF0A-12E61DFFF0B7}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "liblru", "liblru\liblru.vcproj", "{AB5656AD-FBB4-4836-8E38-385FCE92780B}"
+ ProjectSection(ProjectDependencies) = postProject
+ {E665C76C-411C-40B2-BF0A-12E61DFFF0B7} = {E665C76C-411C-40B2-BF0A-12E61DFFF0B7}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libmiscutil", "libmiscutil\libmiscutil.vcproj", "{89F015D1-DCA7-444C-AFA0-D1E445922243}"
+ ProjectSection(ProjectDependencies) = postProject
+ {E665C76C-411C-40B2-BF0A-12E61DFFF0B7} = {E665C76C-411C-40B2-BF0A-12E61DFFF0B7}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libntlm", "libntlm\libntlm.vcproj", "{5F90BFED-718E-47CE-A4CF-ED8B3109AC6C}"
+ ProjectSection(ProjectDependencies) = postProject
+ {E665C76C-411C-40B2-BF0A-12E61DFFF0B7} = {E665C76C-411C-40B2-BF0A-12E61DFFF0B7}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libntlmauth", "libntlmauth\libntlmauth.vcproj", "{8C9E4410-64C5-471D-A4E2-11CDD1E56527}"
+ ProjectSection(ProjectDependencies) = postProject
+ {E665C76C-411C-40B2-BF0A-12E61DFFF0B7} = {E665C76C-411C-40B2-BF0A-12E61DFFF0B7}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libsnmp", "libsnmp\libsnmp.vcproj", "{BE74C2FC-B559-43E3-BE83-F1700D5E267D}"
+ ProjectSection(ProjectDependencies) = postProject
+ {E665C76C-411C-40B2-BF0A-12E61DFFF0B7} = {E665C76C-411C-40B2-BF0A-12E61DFFF0B7}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libsspwin32", "libsspwin32\libsspwin32.vcproj", "{492C477E-8D8E-442B-BB7D-E1ED24D942B2}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libtrie", "libtrie\libtrie.vcproj", "{CF8BFAAD-1BB1-497F-A6B0-75739AF88FE8}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libufs", "libufs\libufs.vcproj", "{E798C636-AF93-446E-846C-5B6E01B5899E}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "modules", "modules.vcproj", "{E665C76C-411C-40B2-BF0A-12E61DFFF0B7}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pinger", "pinger\pinger.vcproj", "{FB6C8F4E-30A1-4A4D-8450-77005A3B9893}"
+ ProjectSection(ProjectDependencies) = postProject
+ {D699E422-95DC-448E-8338-9AF3E0DD5BFB} = {D699E422-95DC-448E-8338-9AF3E0DD5BFB}
+ {89F015D1-DCA7-444C-AFA0-D1E445922243} = {89F015D1-DCA7-444C-AFA0-D1E445922243}
+ {AB5858D1-01C2-43A6-9665-2ACC4CB37052} = {AB5858D1-01C2-43A6-9665-2ACC4CB37052}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "squid", "squid\squid.vcproj", "{C3ACE9B0-9E43-4CCB-8642-8F66F55DAEDD}"
+ ProjectSection(ProjectDependencies) = postProject
+ {8C9E4410-64C5-471D-A4E2-11CDD1E56527} = {8C9E4410-64C5-471D-A4E2-11CDD1E56527}
+ {5FAC2F21-D34C-46F3-8356-5D28C1136D4C} = {5FAC2F21-D34C-46F3-8356-5D28C1136D4C}
+ {303568DA-FD43-4B0B-8D7E-090BC9350A64} = {303568DA-FD43-4B0B-8D7E-090BC9350A64}
+ {E73379FA-E241-43B2-B83F-2378EBBDD24F} = {E73379FA-E241-43B2-B83F-2378EBBDD24F}
+ {FF99A1FE-532A-4A23-AD40-AEEE8E9BB05F} = {FF99A1FE-532A-4A23-AD40-AEEE8E9BB05F}
+ {BE74C2FC-B559-43E3-BE83-F1700D5E267D} = {BE74C2FC-B559-43E3-BE83-F1700D5E267D}
+ {CD900DFA-11EE-42C3-BAD9-72BEA224B43B} = {CD900DFA-11EE-42C3-BAD9-72BEA224B43B}
+ {5F90BFED-718E-47CE-A4CF-ED8B3109AC6C} = {5F90BFED-718E-47CE-A4CF-ED8B3109AC6C}
+ {DB51CEDA-D745-45BB-941F-40740526AA36} = {DB51CEDA-D745-45BB-941F-40740526AA36}
+ {AB5858D1-01C2-43A6-9665-2ACC4CB37052} = {AB5858D1-01C2-43A6-9665-2ACC4CB37052}
+ {89F015D1-DCA7-444C-AFA0-D1E445922243} = {89F015D1-DCA7-444C-AFA0-D1E445922243}
+ {93345CCC-5234-4178-916D-A8034D05E0EF} = {93345CCC-5234-4178-916D-A8034D05E0EF}
+ {CF8BFAAD-1BB1-497F-A6B0-75739AF88FE8} = {CF8BFAAD-1BB1-497F-A6B0-75739AF88FE8}
+ {AB5656AD-FBB4-4836-8E38-385FCE92780B} = {AB5656AD-FBB4-4836-8E38-385FCE92780B}
+ {2BCD20AD-A8F3-4E68-9282-9ABAD020042F} = {2BCD20AD-A8F3-4E68-9282-9ABAD020042F}
+ {9DD3787C-DF28-4670-B65C-DA6AB7AFBA28} = {9DD3787C-DF28-4670-B65C-DA6AB7AFBA28}
+ {AA5CF173-AA03-4209-AD7E-F22F840EFF9B} = {AA5CF173-AA03-4209-AD7E-F22F840EFF9B}
+ {E665C76C-411C-40B2-BF0A-12E61DFFF0B7} = {E665C76C-411C-40B2-BF0A-12E61DFFF0B7}
+ {B569AD4D-0243-4791-8409-8EF77B227C4D} = {B569AD4D-0243-4791-8409-8EF77B227C4D}
+ {E798C636-AF93-446E-846C-5B6E01B5899E} = {E798C636-AF93-446E-846C-5B6E01B5899E}
+ {D699E422-95DC-448E-8338-9AF3E0DD5BFB} = {D699E422-95DC-448E-8338-9AF3E0DD5BFB}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "squid_conf_default", "squid_conf_default.vcproj", "{DB51CEDA-D745-45BB-941F-40740526AA36}"
+ ProjectSection(ProjectDependencies) = postProject
+ {426670FC-0606-4959-B3FA-2A0EC2264E91} = {426670FC-0606-4959-B3FA-2A0EC2264E91}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "squidclient", "squidclient\squidclient.vcproj", "{869AB5B9-DC77-4E83-BA14-1FFC4D03A343}"
+ ProjectSection(ProjectDependencies) = postProject
+ {D699E422-95DC-448E-8338-9AF3E0DD5BFB} = {D699E422-95DC-448E-8338-9AF3E0DD5BFB}
+ {9F3EC1F7-7AB1-495F-9151-966C6F12DB48} = {9F3EC1F7-7AB1-495F-9151-966C6F12DB48}
+ {89F015D1-DCA7-444C-AFA0-D1E445922243} = {89F015D1-DCA7-444C-AFA0-D1E445922243}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "unlinkd", "unlinkd\unlinkd.vcproj", "{8B2EF167-36D3-43AC-8F3D-68E609C08EBA}"
+ ProjectSection(ProjectDependencies) = postProject
+ {89F015D1-DCA7-444C-AFA0-D1E445922243} = {89F015D1-DCA7-444C-AFA0-D1E445922243}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libBlocking", "libBlocking\libBlocking.vcproj", "{FF99A1FE-532A-4A23-AD40-AEEE8E9BB05F}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "digest_pw_auth", "digest_pw_auth\digest_pw_auth.vcproj", "{A42166DB-7B36-4757-9987-20630AF9A15A}"
+ ProjectSection(ProjectDependencies) = postProject
+ {89F015D1-DCA7-444C-AFA0-D1E445922243} = {89F015D1-DCA7-444C-AFA0-D1E445922243}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mswin_negotiate_auth", "mswin_negotiate_auth\mswin_negotiate_auth.vcproj", "{E9AE84F6-5932-40EA-9EFF-B9553993258E}"
+ ProjectSection(ProjectDependencies) = postProject
+ {89F015D1-DCA7-444C-AFA0-D1E445922243} = {89F015D1-DCA7-444C-AFA0-D1E445922243}
+ {492C477E-8D8E-442B-BB7D-E1ED24D942B2} = {492C477E-8D8E-442B-BB7D-E1ED24D942B2}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libnegotiate", "libnegotiate\libnegotiate.vcproj", "{AA5CF173-AA03-4209-AD7E-F22F840EFF9B}"
+ ProjectSection(ProjectDependencies) = postProject
+ {E665C76C-411C-40B2-BF0A-12E61DFFF0B7} = {E665C76C-411C-40B2-BF0A-12E61DFFF0B7}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mswin_ntlm_auth", "mswin_ntlm_auth\mswin_ntlm_auth.vcproj", "{B11B1C1A-29FA-4E3C-A2A8-FACCD0FD4F18}"
+ ProjectSection(ProjectDependencies) = postProject
+ {89F015D1-DCA7-444C-AFA0-D1E445922243} = {89F015D1-DCA7-444C-AFA0-D1E445922243}
+ {492C477E-8D8E-442B-BB7D-E1ED24D942B2} = {492C477E-8D8E-442B-BB7D-E1ED24D942B2}
+ {8C9E4410-64C5-471D-A4E2-11CDD1E56527} = {8C9E4410-64C5-471D-A4E2-11CDD1E56527}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mswin_auth", "mswin_auth\mswin_auth.vcproj", "{236A1219-0E12-4A5D-AB03-C1680A665F05}"
+ ProjectSection(ProjectDependencies) = postProject
+ {89F015D1-DCA7-444C-AFA0-D1E445922243} = {89F015D1-DCA7-444C-AFA0-D1E445922243}
+ {492C477E-8D8E-442B-BB7D-E1ED24D942B2} = {492C477E-8D8E-442B-BB7D-E1ED24D942B2}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mswin_check_lm_group", "mswin_check_lm_group\mswin_check_lm_group.vcproj", "{0A05ED5C-CAA9-4753-B70D-7A443099572F}"
+ ProjectSection(ProjectDependencies) = postProject
+ {89F015D1-DCA7-444C-AFA0-D1E445922243} = {89F015D1-DCA7-444C-AFA0-D1E445922243}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "doc", "doc.vcproj", "{68527517-5E82-4A59-861F-F8342237DE18}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libicap", "libicap\libicap.vcproj", "{93345CCC-5234-4178-916D-A8034D05E0EF}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "digest_ldap_auth", "digest_ldap_auth\digest_ldap_auth.vcproj", "{DCC74F1A-6DB9-44CC-8935-2CFA54ACAB38}"
+ ProjectSection(ProjectDependencies) = postProject
+ {89F015D1-DCA7-444C-AFA0-D1E445922243} = {89F015D1-DCA7-444C-AFA0-D1E445922243}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libAIO", "libAIO\libAIO.vcproj", "{E73379FA-E241-43B2-B83F-2378EBBDD24F}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libDiskThreads", "libDiskThreads\libDiskThreads.vcproj", "{303568DA-FD43-4B0B-8D7E-090BC9350A64}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "digest_edir_auth", "digest_edir_auth\digest_edir_auth.vcproj", "{647229B4-4DBF-4113-B78B-80C257F68C90}"
+ ProjectSection(ProjectDependencies) = postProject
+ {89F015D1-DCA7-444C-AFA0-D1E445922243} = {89F015D1-DCA7-444C-AFA0-D1E445922243}
+ EndProjectSection
+EndProject
+Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "Setup", "Setup\Setup.vdproj", "{B506D44F-1D91-4DF9-A813-87F456453E2C}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mswin_check_ad_group", "mswin_check_ad_group\mswin_check_ad_group.vcproj", "{8FBE9FCA-498E-4D2E-86C0-A84A83D34E27}"
+ ProjectSection(ProjectDependencies) = postProject
+ {89F015D1-DCA7-444C-AFA0-D1E445922243} = {89F015D1-DCA7-444C-AFA0-D1E445922243}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "squid_radius_auth", "squid_radius_auth\squid_radius_auth.vcproj", "{BEA083E2-7516-49E9-B09F-11CE27EB5FAE}"
+ ProjectSection(ProjectDependencies) = postProject
+ {89F015D1-DCA7-444C-AFA0-D1E445922243} = {89F015D1-DCA7-444C-AFA0-D1E445922243}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "squid_session", "squid_session\squid_session.vcproj", "{0FFF4160-F800-49C1-9451-A690458BDE3D}"
+ ProjectSection(ProjectDependencies) = postProject
+ {89F015D1-DCA7-444C-AFA0-D1E445922243} = {89F015D1-DCA7-444C-AFA0-D1E445922243}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libip", "libip\libip.vcproj", "{9F3EC1F7-7AB1-495F-9151-966C6F12DB48}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libcompat", "libcompat\libcompat.vcproj", "{AEF9372C-F983-4104-9EC3-345C9693E66B}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libcompatc", "libcompatc\libcompatC.vcproj", "{F349BB9E-A83D-4457-82CE-928DC3707E45}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Win32 = Debug|Win32
+ Release|Win32 = Release|Win32
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {C50A62CE-A509-4D92-BB2D-B6AC10F29679}.Debug|Win32.ActiveCfg = Debug|Win32
+ {C50A62CE-A509-4D92-BB2D-B6AC10F29679}.Debug|Win32.Build.0 = Debug|Win32
+ {C50A62CE-A509-4D92-BB2D-B6AC10F29679}.Release|Win32.ActiveCfg = Release|Win32
+ {C50A62CE-A509-4D92-BB2D-B6AC10F29679}.Release|Win32.Build.0 = Release|Win32
+ {FEBC1AD4-8805-490F-86C4-EED32F9D364C}.Debug|Win32.ActiveCfg = Debug|Win32
+ {FEBC1AD4-8805-490F-86C4-EED32F9D364C}.Debug|Win32.Build.0 = Debug|Win32
+ {FEBC1AD4-8805-490F-86C4-EED32F9D364C}.Release|Win32.ActiveCfg = Release|Win32
+ {FEBC1AD4-8805-490F-86C4-EED32F9D364C}.Release|Win32.Build.0 = Release|Win32
+ {9CEC3963-D2C7-40F1-8AC5-B3E2A350E5D9}.Debug|Win32.ActiveCfg = Debug|Win32
+ {9CEC3963-D2C7-40F1-8AC5-B3E2A350E5D9}.Debug|Win32.Build.0 = Debug|Win32
+ {9CEC3963-D2C7-40F1-8AC5-B3E2A350E5D9}.Release|Win32.ActiveCfg = Release|Win32
+ {9CEC3963-D2C7-40F1-8AC5-B3E2A350E5D9}.Release|Win32.Build.0 = Release|Win32
+ {B5C81293-3761-4F0C-9AA6-508D20A5BA00}.Debug|Win32.ActiveCfg = Debug|Win32
+ {B5C81293-3761-4F0C-9AA6-508D20A5BA00}.Debug|Win32.Build.0 = Debug|Win32
+ {B5C81293-3761-4F0C-9AA6-508D20A5BA00}.Release|Win32.ActiveCfg = Release|Win32
+ {B5C81293-3761-4F0C-9AA6-508D20A5BA00}.Release|Win32.Build.0 = Release|Win32
+ {AB5858D1-01C2-43A6-9665-2ACC4CB37052}.Debug|Win32.ActiveCfg = Debug|Win32
+ {AB5858D1-01C2-43A6-9665-2ACC4CB37052}.Debug|Win32.Build.0 = Debug|Win32
+ {AB5858D1-01C2-43A6-9665-2ACC4CB37052}.Release|Win32.ActiveCfg = Release|Win32
+ {AB5858D1-01C2-43A6-9665-2ACC4CB37052}.Release|Win32.Build.0 = Release|Win32
+ {C8237A1B-3BA9-412F-8D48-5F7BA8A93E32}.Debug|Win32.ActiveCfg = Debug|Win32
+ {C8237A1B-3BA9-412F-8D48-5F7BA8A93E32}.Debug|Win32.Build.0 = Debug|Win32
+ {C8237A1B-3BA9-412F-8D48-5F7BA8A93E32}.Release|Win32.ActiveCfg = Release|Win32
+ {C8237A1B-3BA9-412F-8D48-5F7BA8A93E32}.Release|Win32.Build.0 = Release|Win32
+ {0DFA8E93-CD7B-42DF-9BB5-1BB51B55B587}.Debug|Win32.ActiveCfg = Debug|Win32
+ {0DFA8E93-CD7B-42DF-9BB5-1BB51B55B587}.Debug|Win32.Build.0 = Debug|Win32
+ {0DFA8E93-CD7B-42DF-9BB5-1BB51B55B587}.Release|Win32.ActiveCfg = Release|Win32
+ {0DFA8E93-CD7B-42DF-9BB5-1BB51B55B587}.Release|Win32.Build.0 = Release|Win32
+ {426670FC-0606-4959-B3FA-2A0EC2264E91}.Debug|Win32.ActiveCfg = Debug|Win32
+ {426670FC-0606-4959-B3FA-2A0EC2264E91}.Debug|Win32.Build.0 = Debug|Win32
+ {426670FC-0606-4959-B3FA-2A0EC2264E91}.Release|Win32.ActiveCfg = Release|Win32
+ {426670FC-0606-4959-B3FA-2A0EC2264E91}.Release|Win32.Build.0 = Release|Win32
+ {41039656-D5A4-412B-A60D-75F912F5FC1E}.Debug|Win32.ActiveCfg = Debug|Win32
+ {41039656-D5A4-412B-A60D-75F912F5FC1E}.Debug|Win32.Build.0 = Debug|Win32
+ {41039656-D5A4-412B-A60D-75F912F5FC1E}.Release|Win32.ActiveCfg = Release|Win32
+ {41039656-D5A4-412B-A60D-75F912F5FC1E}.Release|Win32.Build.0 = Release|Win32
+ {86E28700-5F2A-4181-A6F7-13B739E434B7}.Debug|Win32.ActiveCfg = Debug|Win32
+ {86E28700-5F2A-4181-A6F7-13B739E434B7}.Debug|Win32.Build.0 = Debug|Win32
+ {86E28700-5F2A-4181-A6F7-13B739E434B7}.Release|Win32.ActiveCfg = Release|Win32
+ {86E28700-5F2A-4181-A6F7-13B739E434B7}.Release|Win32.Build.0 = Release|Win32
+ {436115CB-6D55-48CA-9625-484F9DAE7F7E}.Debug|Win32.ActiveCfg = Debug|Win32
+ {436115CB-6D55-48CA-9625-484F9DAE7F7E}.Debug|Win32.Build.0 = Debug|Win32
+ {436115CB-6D55-48CA-9625-484F9DAE7F7E}.Release|Win32.ActiveCfg = Release|Win32
+ {436115CB-6D55-48CA-9625-484F9DAE7F7E}.Release|Win32.Build.0 = Release|Win32
+ {636D3412-1C74-48C8-89A6-EEAB2E6E9BFF}.Debug|Win32.ActiveCfg = Debug|Win32
+ {636D3412-1C74-48C8-89A6-EEAB2E6E9BFF}.Debug|Win32.Build.0 = Debug|Win32
+ {636D3412-1C74-48C8-89A6-EEAB2E6E9BFF}.Release|Win32.ActiveCfg = Release|Win32
+ {636D3412-1C74-48C8-89A6-EEAB2E6E9BFF}.Release|Win32.Build.0 = Release|Win32
+ {5A3E6817-5A3C-4F59-BC8B-5365A50D2780}.Debug|Win32.ActiveCfg = Debug|Win32
+ {5A3E6817-5A3C-4F59-BC8B-5365A50D2780}.Debug|Win32.Build.0 = Debug|Win32
+ {5A3E6817-5A3C-4F59-BC8B-5365A50D2780}.Release|Win32.ActiveCfg = Release|Win32
+ {5A3E6817-5A3C-4F59-BC8B-5365A50D2780}.Release|Win32.Build.0 = Release|Win32
+ {CD900DFA-11EE-42C3-BAD9-72BEA224B43B}.Debug|Win32.ActiveCfg = Debug|Win32
+ {CD900DFA-11EE-42C3-BAD9-72BEA224B43B}.Debug|Win32.Build.0 = Debug|Win32
+ {CD900DFA-11EE-42C3-BAD9-72BEA224B43B}.Release|Win32.ActiveCfg = Release|Win32
+ {CD900DFA-11EE-42C3-BAD9-72BEA224B43B}.Release|Win32.Build.0 = Release|Win32
+ {2BCD20AD-A8F3-4E68-9282-9ABAD020042F}.Debug|Win32.ActiveCfg = Debug|Win32
+ {2BCD20AD-A8F3-4E68-9282-9ABAD020042F}.Debug|Win32.Build.0 = Debug|Win32
+ {2BCD20AD-A8F3-4E68-9282-9ABAD020042F}.Release|Win32.ActiveCfg = Release|Win32
+ {2BCD20AD-A8F3-4E68-9282-9ABAD020042F}.Release|Win32.Build.0 = Release|Win32
+ {D699E422-95DC-448E-8338-9AF3E0DD5BFB}.Debug|Win32.ActiveCfg = Debug|Win32
+ {D699E422-95DC-448E-8338-9AF3E0DD5BFB}.Debug|Win32.Build.0 = Debug|Win32
+ {D699E422-95DC-448E-8338-9AF3E0DD5BFB}.Release|Win32.ActiveCfg = Release|Win32
+ {D699E422-95DC-448E-8338-9AF3E0DD5BFB}.Release|Win32.Build.0 = Release|Win32
+ {B569AD4D-0243-4791-8409-8EF77B227C4D}.Debug|Win32.ActiveCfg = Debug|Win32
+ {B569AD4D-0243-4791-8409-8EF77B227C4D}.Debug|Win32.Build.0 = Debug|Win32
+ {B569AD4D-0243-4791-8409-8EF77B227C4D}.Release|Win32.ActiveCfg = Release|Win32
+ {B569AD4D-0243-4791-8409-8EF77B227C4D}.Release|Win32.Build.0 = Release|Win32
+ {5FAC2F21-D34C-46F3-8356-5D28C1136D4C}.Debug|Win32.ActiveCfg = Debug|Win32
+ {5FAC2F21-D34C-46F3-8356-5D28C1136D4C}.Debug|Win32.Build.0 = Debug|Win32
+ {5FAC2F21-D34C-46F3-8356-5D28C1136D4C}.Release|Win32.ActiveCfg = Release|Win32
+ {5FAC2F21-D34C-46F3-8356-5D28C1136D4C}.Release|Win32.Build.0 = Release|Win32
+ {9DD3787C-DF28-4670-B65C-DA6AB7AFBA28}.Debug|Win32.ActiveCfg = Debug|Win32
+ {9DD3787C-DF28-4670-B65C-DA6AB7AFBA28}.Debug|Win32.Build.0 = Debug|Win32
+ {9DD3787C-DF28-4670-B65C-DA6AB7AFBA28}.Release|Win32.ActiveCfg = Release|Win32
+ {9DD3787C-DF28-4670-B65C-DA6AB7AFBA28}.Release|Win32.Build.0 = Release|Win32
+ {AB5656AD-FBB4-4836-8E38-385FCE92780B}.Debug|Win32.ActiveCfg = Debug|Win32
+ {AB5656AD-FBB4-4836-8E38-385FCE92780B}.Debug|Win32.Build.0 = Debug|Win32
+ {AB5656AD-FBB4-4836-8E38-385FCE92780B}.Release|Win32.ActiveCfg = Release|Win32
+ {AB5656AD-FBB4-4836-8E38-385FCE92780B}.Release|Win32.Build.0 = Release|Win32
+ {89F015D1-DCA7-444C-AFA0-D1E445922243}.Debug|Win32.ActiveCfg = Debug|Win32
+ {89F015D1-DCA7-444C-AFA0-D1E445922243}.Debug|Win32.Build.0 = Debug|Win32
+ {89F015D1-DCA7-444C-AFA0-D1E445922243}.Release|Win32.ActiveCfg = Release|Win32
+ {89F015D1-DCA7-444C-AFA0-D1E445922243}.Release|Win32.Build.0 = Release|Win32
+ {5F90BFED-718E-47CE-A4CF-ED8B3109AC6C}.Debug|Win32.ActiveCfg = Debug|Win32
+ {5F90BFED-718E-47CE-A4CF-ED8B3109AC6C}.Debug|Win32.Build.0 = Debug|Win32
+ {5F90BFED-718E-47CE-A4CF-ED8B3109AC6C}.Release|Win32.ActiveCfg = Release|Win32
+ {5F90BFED-718E-47CE-A4CF-ED8B3109AC6C}.Release|Win32.Build.0 = Release|Win32
+ {8C9E4410-64C5-471D-A4E2-11CDD1E56527}.Debug|Win32.ActiveCfg = Debug|Win32
+ {8C9E4410-64C5-471D-A4E2-11CDD1E56527}.Debug|Win32.Build.0 = Debug|Win32
+ {8C9E4410-64C5-471D-A4E2-11CDD1E56527}.Release|Win32.ActiveCfg = Release|Win32
+ {8C9E4410-64C5-471D-A4E2-11CDD1E56527}.Release|Win32.Build.0 = Release|Win32
+ {BE74C2FC-B559-43E3-BE83-F1700D5E267D}.Debug|Win32.ActiveCfg = Debug|Win32
+ {BE74C2FC-B559-43E3-BE83-F1700D5E267D}.Debug|Win32.Build.0 = Debug|Win32
+ {BE74C2FC-B559-43E3-BE83-F1700D5E267D}.Release|Win32.ActiveCfg = Release|Win32
+ {BE74C2FC-B559-43E3-BE83-F1700D5E267D}.Release|Win32.Build.0 = Release|Win32
+ {492C477E-8D8E-442B-BB7D-E1ED24D942B2}.Debug|Win32.ActiveCfg = Debug|Win32
+ {492C477E-8D8E-442B-BB7D-E1ED24D942B2}.Debug|Win32.Build.0 = Debug|Win32
+ {492C477E-8D8E-442B-BB7D-E1ED24D942B2}.Release|Win32.ActiveCfg = Release|Win32
+ {492C477E-8D8E-442B-BB7D-E1ED24D942B2}.Release|Win32.Build.0 = Release|Win32
+ {CF8BFAAD-1BB1-497F-A6B0-75739AF88FE8}.Debug|Win32.ActiveCfg = Debug|Win32
+ {CF8BFAAD-1BB1-497F-A6B0-75739AF88FE8}.Debug|Win32.Build.0 = Debug|Win32
+ {CF8BFAAD-1BB1-497F-A6B0-75739AF88FE8}.Release|Win32.ActiveCfg = Release|Win32
+ {CF8BFAAD-1BB1-497F-A6B0-75739AF88FE8}.Release|Win32.Build.0 = Release|Win32
+ {E798C636-AF93-446E-846C-5B6E01B5899E}.Debug|Win32.ActiveCfg = Debug|Win32
+ {E798C636-AF93-446E-846C-5B6E01B5899E}.Debug|Win32.Build.0 = Debug|Win32
+ {E798C636-AF93-446E-846C-5B6E01B5899E}.Release|Win32.ActiveCfg = Release|Win32
+ {E798C636-AF93-446E-846C-5B6E01B5899E}.Release|Win32.Build.0 = Release|Win32
+ {E665C76C-411C-40B2-BF0A-12E61DFFF0B7}.Debug|Win32.ActiveCfg = Debug|Win32
+ {E665C76C-411C-40B2-BF0A-12E61DFFF0B7}.Debug|Win32.Build.0 = Debug|Win32
+ {E665C76C-411C-40B2-BF0A-12E61DFFF0B7}.Release|Win32.ActiveCfg = Release|Win32
+ {E665C76C-411C-40B2-BF0A-12E61DFFF0B7}.Release|Win32.Build.0 = Release|Win32
+ {FB6C8F4E-30A1-4A4D-8450-77005A3B9893}.Debug|Win32.ActiveCfg = Debug|Win32
+ {FB6C8F4E-30A1-4A4D-8450-77005A3B9893}.Debug|Win32.Build.0 = Debug|Win32
+ {FB6C8F4E-30A1-4A4D-8450-77005A3B9893}.Release|Win32.ActiveCfg = Release|Win32
+ {FB6C8F4E-30A1-4A4D-8450-77005A3B9893}.Release|Win32.Build.0 = Release|Win32
+ {C3ACE9B0-9E43-4CCB-8642-8F66F55DAEDD}.Debug|Win32.ActiveCfg = Debug|Win32
+ {C3ACE9B0-9E43-4CCB-8642-8F66F55DAEDD}.Debug|Win32.Build.0 = Debug|Win32
+ {C3ACE9B0-9E43-4CCB-8642-8F66F55DAEDD}.Release|Win32.ActiveCfg = Release|Win32
+ {C3ACE9B0-9E43-4CCB-8642-8F66F55DAEDD}.Release|Win32.Build.0 = Release|Win32
+ {DB51CEDA-D745-45BB-941F-40740526AA36}.Debug|Win32.ActiveCfg = Debug|Win32
+ {DB51CEDA-D745-45BB-941F-40740526AA36}.Debug|Win32.Build.0 = Debug|Win32
+ {DB51CEDA-D745-45BB-941F-40740526AA36}.Release|Win32.ActiveCfg = Release|Win32
+ {DB51CEDA-D745-45BB-941F-40740526AA36}.Release|Win32.Build.0 = Release|Win32
+ {869AB5B9-DC77-4E83-BA14-1FFC4D03A343}.Debug|Win32.ActiveCfg = Debug|Win32
+ {869AB5B9-DC77-4E83-BA14-1FFC4D03A343}.Debug|Win32.Build.0 = Debug|Win32
+ {869AB5B9-DC77-4E83-BA14-1FFC4D03A343}.Release|Win32.ActiveCfg = Release|Win32
+ {869AB5B9-DC77-4E83-BA14-1FFC4D03A343}.Release|Win32.Build.0 = Release|Win32
+ {8B2EF167-36D3-43AC-8F3D-68E609C08EBA}.Debug|Win32.ActiveCfg = Debug|Win32
+ {8B2EF167-36D3-43AC-8F3D-68E609C08EBA}.Debug|Win32.Build.0 = Debug|Win32
+ {8B2EF167-36D3-43AC-8F3D-68E609C08EBA}.Release|Win32.ActiveCfg = Release|Win32
+ {8B2EF167-36D3-43AC-8F3D-68E609C08EBA}.Release|Win32.Build.0 = Release|Win32
+ {FF99A1FE-532A-4A23-AD40-AEEE8E9BB05F}.Debug|Win32.ActiveCfg = Debug|Win32
+ {FF99A1FE-532A-4A23-AD40-AEEE8E9BB05F}.Debug|Win32.Build.0 = Debug|Win32
+ {FF99A1FE-532A-4A23-AD40-AEEE8E9BB05F}.Release|Win32.ActiveCfg = Release|Win32
+ {FF99A1FE-532A-4A23-AD40-AEEE8E9BB05F}.Release|Win32.Build.0 = Release|Win32
+ {A42166DB-7B36-4757-9987-20630AF9A15A}.Debug|Win32.ActiveCfg = Debug|Win32
+ {A42166DB-7B36-4757-9987-20630AF9A15A}.Debug|Win32.Build.0 = Debug|Win32
+ {A42166DB-7B36-4757-9987-20630AF9A15A}.Release|Win32.ActiveCfg = Release|Win32
+ {A42166DB-7B36-4757-9987-20630AF9A15A}.Release|Win32.Build.0 = Release|Win32
+ {E9AE84F6-5932-40EA-9EFF-B9553993258E}.Debug|Win32.ActiveCfg = Debug|Win32
+ {E9AE84F6-5932-40EA-9EFF-B9553993258E}.Debug|Win32.Build.0 = Debug|Win32
+ {E9AE84F6-5932-40EA-9EFF-B9553993258E}.Release|Win32.ActiveCfg = Release|Win32
+ {E9AE84F6-5932-40EA-9EFF-B9553993258E}.Release|Win32.Build.0 = Release|Win32
+ {AA5CF173-AA03-4209-AD7E-F22F840EFF9B}.Debug|Win32.ActiveCfg = Debug|Win32
+ {AA5CF173-AA03-4209-AD7E-F22F840EFF9B}.Debug|Win32.Build.0 = Debug|Win32
+ {AA5CF173-AA03-4209-AD7E-F22F840EFF9B}.Release|Win32.ActiveCfg = Release|Win32
+ {AA5CF173-AA03-4209-AD7E-F22F840EFF9B}.Release|Win32.Build.0 = Release|Win32
+ {B11B1C1A-29FA-4E3C-A2A8-FACCD0FD4F18}.Debug|Win32.ActiveCfg = Debug|Win32
+ {B11B1C1A-29FA-4E3C-A2A8-FACCD0FD4F18}.Debug|Win32.Build.0 = Debug|Win32
+ {B11B1C1A-29FA-4E3C-A2A8-FACCD0FD4F18}.Release|Win32.ActiveCfg = Release|Win32
+ {B11B1C1A-29FA-4E3C-A2A8-FACCD0FD4F18}.Release|Win32.Build.0 = Release|Win32
+ {236A1219-0E12-4A5D-AB03-C1680A665F05}.Debug|Win32.ActiveCfg = Debug|Win32
+ {236A1219-0E12-4A5D-AB03-C1680A665F05}.Debug|Win32.Build.0 = Debug|Win32
+ {236A1219-0E12-4A5D-AB03-C1680A665F05}.Release|Win32.ActiveCfg = Release|Win32
+ {236A1219-0E12-4A5D-AB03-C1680A665F05}.Release|Win32.Build.0 = Release|Win32
+ {0A05ED5C-CAA9-4753-B70D-7A443099572F}.Debug|Win32.ActiveCfg = Debug|Win32
+ {0A05ED5C-CAA9-4753-B70D-7A443099572F}.Debug|Win32.Build.0 = Debug|Win32
+ {0A05ED5C-CAA9-4753-B70D-7A443099572F}.Release|Win32.ActiveCfg = Release|Win32
+ {0A05ED5C-CAA9-4753-B70D-7A443099572F}.Release|Win32.Build.0 = Release|Win32
+ {68527517-5E82-4A59-861F-F8342237DE18}.Debug|Win32.ActiveCfg = Debug|Win32
+ {68527517-5E82-4A59-861F-F8342237DE18}.Debug|Win32.Build.0 = Debug|Win32
+ {68527517-5E82-4A59-861F-F8342237DE18}.Release|Win32.ActiveCfg = Release|Win32
+ {68527517-5E82-4A59-861F-F8342237DE18}.Release|Win32.Build.0 = Release|Win32
+ {93345CCC-5234-4178-916D-A8034D05E0EF}.Debug|Win32.ActiveCfg = Debug|Win32
+ {93345CCC-5234-4178-916D-A8034D05E0EF}.Debug|Win32.Build.0 = Debug|Win32
+ {93345CCC-5234-4178-916D-A8034D05E0EF}.Release|Win32.ActiveCfg = Release|Win32
+ {93345CCC-5234-4178-916D-A8034D05E0EF}.Release|Win32.Build.0 = Release|Win32
+ {DCC74F1A-6DB9-44CC-8935-2CFA54ACAB38}.Debug|Win32.ActiveCfg = Debug|Win32
+ {DCC74F1A-6DB9-44CC-8935-2CFA54ACAB38}.Debug|Win32.Build.0 = Debug|Win32
+ {DCC74F1A-6DB9-44CC-8935-2CFA54ACAB38}.Release|Win32.ActiveCfg = Release|Win32
+ {DCC74F1A-6DB9-44CC-8935-2CFA54ACAB38}.Release|Win32.Build.0 = Release|Win32
+ {E73379FA-E241-43B2-B83F-2378EBBDD24F}.Debug|Win32.ActiveCfg = Debug|Win32
+ {E73379FA-E241-43B2-B83F-2378EBBDD24F}.Debug|Win32.Build.0 = Debug|Win32
+ {E73379FA-E241-43B2-B83F-2378EBBDD24F}.Release|Win32.ActiveCfg = Release|Win32
+ {E73379FA-E241-43B2-B83F-2378EBBDD24F}.Release|Win32.Build.0 = Release|Win32
+ {303568DA-FD43-4B0B-8D7E-090BC9350A64}.Debug|Win32.ActiveCfg = Debug|Win32
+ {303568DA-FD43-4B0B-8D7E-090BC9350A64}.Debug|Win32.Build.0 = Debug|Win32
+ {303568DA-FD43-4B0B-8D7E-090BC9350A64}.Release|Win32.ActiveCfg = Release|Win32
+ {303568DA-FD43-4B0B-8D7E-090BC9350A64}.Release|Win32.Build.0 = Release|Win32
+ {647229B4-4DBF-4113-B78B-80C257F68C90}.Debug|Win32.ActiveCfg = Debug|Win32
+ {647229B4-4DBF-4113-B78B-80C257F68C90}.Debug|Win32.Build.0 = Debug|Win32
+ {647229B4-4DBF-4113-B78B-80C257F68C90}.Release|Win32.ActiveCfg = Release|Win32
+ {647229B4-4DBF-4113-B78B-80C257F68C90}.Release|Win32.Build.0 = Release|Win32
+ {B506D44F-1D91-4DF9-A813-87F456453E2C}.Debug|Win32.ActiveCfg = Debug
+ {B506D44F-1D91-4DF9-A813-87F456453E2C}.Release|Win32.ActiveCfg = Release
+ {8FBE9FCA-498E-4D2E-86C0-A84A83D34E27}.Debug|Win32.ActiveCfg = Debug|Win32
+ {8FBE9FCA-498E-4D2E-86C0-A84A83D34E27}.Debug|Win32.Build.0 = Debug|Win32
+ {8FBE9FCA-498E-4D2E-86C0-A84A83D34E27}.Release|Win32.ActiveCfg = Release|Win32
+ {8FBE9FCA-498E-4D2E-86C0-A84A83D34E27}.Release|Win32.Build.0 = Release|Win32
+ {BEA083E2-7516-49E9-B09F-11CE27EB5FAE}.Debug|Win32.ActiveCfg = Debug|Win32
+ {BEA083E2-7516-49E9-B09F-11CE27EB5FAE}.Debug|Win32.Build.0 = Debug|Win32
+ {BEA083E2-7516-49E9-B09F-11CE27EB5FAE}.Release|Win32.ActiveCfg = Release|Win32
+ {BEA083E2-7516-49E9-B09F-11CE27EB5FAE}.Release|Win32.Build.0 = Release|Win32
+ {0FFF4160-F800-49C1-9451-A690458BDE3D}.Debug|Win32.ActiveCfg = Debug|Win32
+ {0FFF4160-F800-49C1-9451-A690458BDE3D}.Debug|Win32.Build.0 = Debug|Win32
+ {0FFF4160-F800-49C1-9451-A690458BDE3D}.Release|Win32.ActiveCfg = Release|Win32
+ {0FFF4160-F800-49C1-9451-A690458BDE3D}.Release|Win32.Build.0 = Release|Win32
+ {9F3EC1F7-7AB1-495F-9151-966C6F12DB48}.Debug|Win32.ActiveCfg = Debug|Win32
+ {9F3EC1F7-7AB1-495F-9151-966C6F12DB48}.Debug|Win32.Build.0 = Debug|Win32
+ {9F3EC1F7-7AB1-495F-9151-966C6F12DB48}.Release|Win32.ActiveCfg = Release|Win32
+ {9F3EC1F7-7AB1-495F-9151-966C6F12DB48}.Release|Win32.Build.0 = Release|Win32
+ {AEF9372C-F983-4104-9EC3-345C9693E66B}.Debug|Win32.ActiveCfg = Debug|Win32
+ {AEF9372C-F983-4104-9EC3-345C9693E66B}.Debug|Win32.Build.0 = Debug|Win32
+ {AEF9372C-F983-4104-9EC3-345C9693E66B}.Release|Win32.ActiveCfg = Release|Win32
+ {AEF9372C-F983-4104-9EC3-345C9693E66B}.Release|Win32.Build.0 = Release|Win32
+ {F349BB9E-A83D-4457-82CE-928DC3707E45}.Debug|Win32.ActiveCfg = Debug|Win32
+ {F349BB9E-A83D-4457-82CE-928DC3707E45}.Debug|Win32.Build.0 = Debug|Win32
+ {F349BB9E-A83D-4457-82CE-928DC3707E45}.Release|Win32.ActiveCfg = Release|Win32
+ {F349BB9E-A83D-4457-82CE-928DC3707E45}.Release|Win32.Build.0 = Release|Win32
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+EndGlobal
Index: squid3/port/win32/squid_conf_default.vcproj
diff -u /dev/null squid3/port/win32/squid_conf_default.vcproj:1.1.2.3
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/squid_conf_default.vcproj Sun Sep 23 15:14:47 2007
@@ -0,0 +1,97 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Index: squid3/port/win32/squid_mswin.mak
diff -u /dev/null squid3/port/win32/squid_mswin.mak:1.2.18.7
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/squid_mswin.mak Sat Jun 17 22:01:53 2006
@@ -0,0 +1,98 @@
+THISMAKEFILE = squid_mswin.mak
+
+prefix = c:/squid
+exec_prefix = $(prefix)/bin
+exec_suffix = .exe
+cgi_suffix = .cgi
+top_srcdir = ..\..
+bindir = $(exec_prefix)
+libexecdir = $(prefix)/libexec
+sysconfdir = $(prefix)/etc
+datadir = $(prefix)/share
+localstatedir = $(prefix)/var
+srcdir = ..\..\src
+docdir = ..\..\doc
+win32includedir = .\include
+iconsdir = $(top_srcdir)\icons
+
+# Gotta love the DOS legacy
+#
+SQUID_EXE = squid$(exec_suffix)
+CLIENT_EXE = client$(exec_suffix)
+DNSSERVER_EXE = dnsserver$(exec_suffix)
+UNLINKD_EXE = unlinkd$(exec_suffix)
+PINGER_EXE = pinger$(exec_suffix)
+CACHEMGR_EXE = cachemgr$(cgi_suffix)
+DISKD_EXE = diskd$(exec_suffix)
+
+DEFAULT_HTTP_PORT = 3128
+DEFAULT_ICP_PORT = 3130
+DEFAULT_PREFIX = $(prefix)
+DEFAULT_CONFIG_FILE = $(sysconfdir)/squid.conf
+DEFAULT_CACHEMGR_CONFIG = $(sysconfdir)/cachemgr.conf
+DEFAULT_MIME_TABLE = $(sysconfdir)/mime.conf
+DEFAULT_DNSSERVER = $(libexecdir)/$(DNSSERVER_EXE)
+DEFAULT_LOG_PREFIX = $(localstatedir)/logs
+DEFAULT_CACHE_LOG = $(DEFAULT_LOG_PREFIX)/cache.log
+DEFAULT_ACCESS_LOG = $(DEFAULT_LOG_PREFIX)/access.log
+DEFAULT_STORE_LOG = $(DEFAULT_LOG_PREFIX)/store.log
+DEFAULT_PID_FILE = $(DEFAULT_LOG_PREFIX)/squid.pid
+DEFAULT_SWAP_DIR = $(localstatedir)/cache
+DEFAULT_PINGER = $(libexecdir)/$(PINGER_EXE)
+DEFAULT_UNLINKD = $(libexecdir)/$(UNLINKD_EXE)
+DEFAULT_DISKD = $(libexecdir)/$(DISKD_EXE)
+DEFAULT_ICON_DIR = $(datadir)/icons
+DEFAULT_ERROR_DIR = $(datadir)/errors/English
+DEFAULT_MIB_PATH = $(datadir)/mib.txt
+DEFAULT_HOSTS = none
+!INCLUDE squid_version.mak
+
+REPL_POLICIES = lru heap
+
+SUBSTITUTE=sed "\
+ s%@DEFAULT_CONFIG_FILE@%$(DEFAULT_CONFIG_FILE)%g;\
+ s%@DEFAULT_CACHEMGR_CONFIG@%$(DEFAULT_CACHEMGR_CONFIG)%g;\
+ s%@DEFAULT_ERROR_DIR@%$(DEFAULT_ERROR_DIR)%g;\
+ s%@DEFAULT_MIME_TABLE@%$(DEFAULT_MIME_TABLE)%g;\
+ s%@PACKAGE_STRING@%$(PACKAGE_STRING)%g;\
+ "
+
+cf_gen_defines.h: $(srcdir)\cf_gen_defines $(srcdir)\cf.data.pre
+ gawk -f $(srcdir)\cf_gen_defines <$(srcdir)\cf.data.pre >$(srcdir)\cf_gen_defines.h
+
+cf.data: $(srcdir)\cf.data.pre .\$(THISMAKEFILE)
+ sed "\
+ s%@DEFAULT_HTTP_PORT@%$(DEFAULT_HTTP_PORT)%g;\
+ s%@DEFAULT_ICP_PORT@%$(DEFAULT_ICP_PORT)%g;\
+ s%@DEFAULT_MIME_TABLE@%$(DEFAULT_MIME_TABLE)%g;\
+ s%@DEFAULT_DNSSERVER@%$(DEFAULT_DNSSERVER)%g;\
+ s%@DEFAULT_UNLINKD@%$(DEFAULT_UNLINKD)%g;\
+ s%@DEFAULT_PINGER@%$(DEFAULT_PINGER)%g;\
+ s%@DEFAULT_DISKD@%$(DEFAULT_DISKD)%g;\
+ s%@DEFAULT_CACHE_LOG@%$(DEFAULT_CACHE_LOG)%g;\
+ s%@DEFAULT_ACCESS_LOG@%$(DEFAULT_ACCESS_LOG)%g;\
+ s%@DEFAULT_STORE_LOG@%$(DEFAULT_STORE_LOG)%g;\
+ s%@DEFAULT_PID_FILE@%$(DEFAULT_PID_FILE)%g;\
+ s%@DEFAULT_SWAP_DIR@%$(DEFAULT_SWAP_DIR)%g;\
+ s%@DEFAULT_ICON_DIR@%$(DEFAULT_ICON_DIR)%g;\
+ s%@DEFAULT_MIB_PATH@%$(DEFAULT_MIB_PATH)%g;\
+ s%@DEFAULT_ERROR_DIR@%$(DEFAULT_ERROR_DIR)%g;\
+ s%@DEFAULT_PREFIX@%$(DEFAULT_PREFIX)%g;\
+ s%@DEFAULT_HOSTS@%$(DEFAULT_HOSTS)%g;\
+ s%@[V]ERSION@%$(VERSION)%g;"\
+ < $(srcdir)\cf.data.pre >$(srcdir)\cf.data
+
+repl_modules.cc: .\repl_modules.cmd .\$(THISMAKEFILE)
+ .\repl_modules.cmd $(REPL_POLICIES) >$(srcdir)\repl_modules.cc
+
+default_config_file.h: .\$(THISMAKEFILE)
+ .\default_config_file.cmd $(DEFAULT_CONFIG_FILE) $(DEFAULT_ERROR_DIR) $(DEFAULT_CACHEMGR_CONFIG) >$(win32includedir)\default_config_file.h
+
+icons: .\icons.cmd $(iconsdir)\icons.shar
+ .\icons.cmd $(iconsdir)
+
+squid.8: $(docdir)\squid.8.in .\$(THISMAKEFILE)
+ $(SUBSTITUTE) < $(docdir)\squid.8.in > $(docdir)\squid.8
+
+cachemgr.cgi.8: $(docdir)\cachemgr.cgi.8.in .\$(THISMAKEFILE)
+ $(SUBSTITUTE) < $(docdir)\cachemgr.cgi.8.in > $(docdir)\cachemgr.cgi.8
Index: squid3/port/win32/squid_version.cmd
diff -u /dev/null squid3/port/win32/squid_version.cmd:1.1.2.4
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/squid_version.cmd Mon Aug 17 12:18:52 2009
@@ -0,0 +1,12 @@
+@echo off
+FOR /F "usebackq skip=2 tokens=2 delims=[]" %%i in (`find "AC_INIT" ../../configure.in`) do set PACKAGE_NAME=%%i
+FOR /F "usebackq skip=2 tokens=4 delims=[]" %%i in (`find "AC_INIT" ../../configure.in`) do set PACKAGE_VERSION=%%i
+FOR /F "usebackq skip=2 tokens=6 delims=[]" %%i in (`find "AC_INIT" ../../configure.in`) do set PACKAGE_BUGREPORT=%%i
+FOR /F "usebackq skip=2 tokens=8 delims=[]" %%i in (`find "AC_INIT" ../../configure.in`) do set PACKAGE_TARNAME=%%i
+echo PACKAGE_NAME = %PACKAGE_NAME%
+echo PACKAGE_TARNAME = %PACKAGE_TARNAME%
+echo PACKAGE_VERSION = %PACKAGE_VERSION%
+echo PACKAGE_STRING = %PACKAGE_NAME% %PACKAGE_VERSION%
+echo PACKAGE_BUGREPORT = %PACKAGE_BUGREPORT%
+echo PACKAGE = %PACKAGE_TARNAME%
+echo VERSION = %PACKAGE_VERSION%
Index: squid3/port/win32/update.cmd
diff -u /dev/null squid3/port/win32/update.cmd:1.2.18.15
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/update.cmd Sun Jun 18 08:05:35 2006
@@ -0,0 +1,67 @@
+@echo off
+if %1==release net stop %3
+
+if not exist %2 md %2
+if not exist %2\bin md %2\bin
+if not exist %2\sbin md %2\sbin
+if not exist %2\libexec md %2\libexec
+if not exist %2\docs md %2\docs
+if not exist %2\etc md %2\etc
+if not exist %2\var\logs md %2\var\logs
+if not exist %2\share\errors md %2\share\errors
+if not exist %2\share\icons md %2\share\icons
+
+copy %0\..\squid\%1\squid.exe %2\sbin\squid.exe
+copy %0\..\unlinkd\%1\unlinkd.exe %2\libexec\unlinkd.exe
+if exist %0\..\dnsserver\%1\dnsserver.exe copy %0\..\dnsserver\%1\dnsserver.exe %2\libexec\dnsserver.exe
+if exist %0\..\pinger\%1\pinger.exe copy %0\..\pinger\%1\pinger.exe %2\libexec\pinger.exe
+copy %0\..\squidclient\%1\squidclient.exe %2\bin\squidclient.exe
+copy %0\..\fake_auth\%1\fake_auth.exe %2\libexec\fakeauth_auth.exe
+copy %0\..\mswin_auth\%1\mswin_auth.exe %2\libexec\mswin_auth.exe
+copy %0\..\ncsa_auth\%1\ncsa_auth.exe %2\libexec\ncsa_auth.exe
+copy %0\..\mswin_ntlm_auth\%1\mswin_ntlm_auth.exe %2\libexec\mswin_ntlm_auth.exe
+copy %0\..\mswin_negotiate_auth\%1\mswin_negotiate_auth.exe %2\libexec\mswin_negotiate_auth.exe
+copy %0\..\ldap_auth\%1\ldap_auth.exe %2\libexec\squid_ldap_auth.exe
+copy %0\..\ldap_group\%1\ldap_group.exe %2\libexec\squid_ldap_group.exe
+copy %0\..\mswin_check_lm_group\%1\mswin_check_lm_group.exe %2\libexec\mswin_check_lm_group.exe
+copy %0\..\ip_user_check\%1\ip_user_check.exe %2\libexec\ip_user_check.exe
+copy %0\..\digest_ldap_auth\%1\digest_ldap_auth.exe %2\libexec\digest_ldap_auth.exe
+copy %0\..\digest_pw_auth\%1\digest_pw_auth.exe %2\libexec\digest_pw_auth.exe
+copy %0\..\cachemgr\%1\cachemgr.exe %2\libexec\cachemgr.cgi
+
+copy %0\..\..\..\src\squid.conf.default %2\etc\squid.conf.default
+copy %0\..\..\..\src\mime.conf.default %2\etc\mime.conf.default
+copy %0\..\..\..\tools\cachemgr.conf %2\etc\cachemgr.conf.default
+copy %0\..\..\..\src\mib.txt %2\share\mib.txt
+
+pushd %0\..\..\..\errors
+for /D %%d IN (*) DO xcopy /Y /Q %%d\err_* %2\share\errors\%%d\
+popd
+
+copy %0\..\..\..\icons\*.gif %2\share\icons > NUL
+
+copy %0\..\..\..\helpers\ntlm_auth\mswin_sspi\readme.txt %2\docs\mswin_ntlm_auth.txt
+copy %0\..\..\..\helpers\negotiate_auth\mswin_sspi\readme.txt %2\docs\mswin_negotiate_auth.txt
+copy %0\..\..\..\helpers\external_acl\mswin_lm_group\readme.txt %2\docs\mswin_check_lm_group.txt
+copy %0\..\..\..\helpers\external_acl\ip_user\README %2\docs\ip_user_check.txt
+copy %0\..\..\..\helpers\basic_auth\mswin_sspi\readme.txt %2\docs\mswin_auth.txt
+copy %0\..\..\..\doc\win32-relnotes.html %2\docs\win32-relnotes.html
+copy %0\..\..\..\doc\debug-sections.txt %2\docs\debug-sections.txt
+copy %0\..\..\..\doc\HTTP-codes.txt %2\docs\HTTP-codes.txt
+copy %0\..\..\..\doc\release-notes\release-2.5.html %2\docs\release-2.5.html
+copy %0\..\..\..\doc\release-notes\release-3.0.html %2\docs\release-3.0.html
+type %0\..\..\..\helpers\basic_auth\LDAP\squid_ldap_auth.8 | man2htm2 > %2\docs\squid_ldap_auth.html
+type %0\..\..\..\helpers\external_acl\LDAP_group\squid_ldap_group.8 | man2htm2 > %2\docs\squid_ldap_group.html
+type %0\..\..\..\doc\squid.8 | man2htm2 > %2\docs\squid.html
+type %0\..\..\..\doc\cachemgr.cgi.8 | man2htm2 > %2\docs\cachemgr.cgi.html
+
+copy %0\..\..\..\README %2\README
+copy %0\..\..\..\COPYRIGHT %2\COPYRIGHT
+copy %0\..\..\..\COPYING %2\COPYING
+copy %0\..\..\..\CONTRIBUTORS %2\CONTRIBUTORS
+copy %0\..\..\..\CREDITS %2\CREDITS
+copy %0\..\..\..\SPONSORS %2\SPONSORS
+copy %0\..\..\..\QUICKSTART %2\QUICKSTART
+copy %0\..\..\..\ChangeLog %2\ChangeLog
+
+if %1==release net start %3
Index: squid3/port/win32/LDAP_auth/.cvsignore
diff -u /dev/null squid3/port/win32/LDAP_auth/.cvsignore:1.1.18.3
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/LDAP_auth/.cvsignore Sun Nov 20 21:10:10 2005
@@ -0,0 +1,3 @@
+*.user
+Debug
+Release
Index: squid3/port/win32/LDAP_auth/LDAP_auth.vcproj
diff -u /dev/null squid3/port/win32/LDAP_auth/LDAP_auth.vcproj:1.1.2.3
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/LDAP_auth/LDAP_auth.vcproj Sat Aug 22 16:53:00 2009
@@ -0,0 +1,257 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Index: squid3/port/win32/LDAP_group/.cvsignore
diff -u /dev/null squid3/port/win32/LDAP_group/.cvsignore:1.1.14.3
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/LDAP_group/.cvsignore Sun Nov 20 21:10:10 2005
@@ -0,0 +1,3 @@
+*.user
+Debug
+Release
Index: squid3/port/win32/LDAP_group/LDAP_group.vcproj
diff -u /dev/null squid3/port/win32/LDAP_group/LDAP_group.vcproj:1.1.2.3
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/LDAP_group/LDAP_group.vcproj Sat Aug 22 16:53:00 2009
@@ -0,0 +1,245 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Index: squid3/port/win32/NCSA_auth/.cvsignore
diff -u /dev/null squid3/port/win32/NCSA_auth/.cvsignore:1.1.18.3
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/NCSA_auth/.cvsignore Sun Nov 20 21:10:10 2005
@@ -0,0 +1,3 @@
+*.user
+Debug
+Release
Index: squid3/port/win32/NCSA_auth/NCSA_auth.vcproj
diff -u /dev/null squid3/port/win32/NCSA_auth/NCSA_auth.vcproj:1.1.2.5
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/NCSA_auth/NCSA_auth.vcproj Sat Aug 22 16:53:00 2009
@@ -0,0 +1,277 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Index: squid3/port/win32/cachemgr/.cvsignore
diff -u /dev/null squid3/port/win32/cachemgr/.cvsignore:1.1.18.3
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/cachemgr/.cvsignore Sun Nov 20 21:10:10 2005
@@ -0,0 +1,3 @@
+*.user
+Debug
+Release
Index: squid3/port/win32/cachemgr/cachemgr.vcproj
diff -u /dev/null squid3/port/win32/cachemgr/cachemgr.vcproj:1.1.2.5
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/cachemgr/cachemgr.vcproj Sat Aug 22 16:38:24 2009
@@ -0,0 +1,229 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Index: squid3/port/win32/cf_gen/.cvsignore
diff -u /dev/null squid3/port/win32/cf_gen/.cvsignore:1.1.18.3
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/cf_gen/.cvsignore Sun Nov 20 21:10:10 2005
@@ -0,0 +1,3 @@
+*.user
+Debug
+Release
Index: squid3/port/win32/cf_gen/cf_gen.vcproj
diff -u /dev/null squid3/port/win32/cf_gen/cf_gen.vcproj:1.1.2.5
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/cf_gen/cf_gen.vcproj Sat Aug 22 16:38:24 2009
@@ -0,0 +1,245 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Index: squid3/port/win32/digest_edir_auth/.cvsignore
diff -u /dev/null squid3/port/win32/digest_edir_auth/.cvsignore:1.1.2.1
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/digest_edir_auth/.cvsignore Sat Aug 11 20:25:24 2007
@@ -0,0 +1,3 @@
+*.user
+Debug
+Release
Index: squid3/port/win32/digest_edir_auth/digest_edir_auth.vcproj
diff -u /dev/null squid3/port/win32/digest_edir_auth/digest_edir_auth.vcproj:1.1.2.3
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/digest_edir_auth/digest_edir_auth.vcproj Sat Aug 22 16:53:00 2009
@@ -0,0 +1,219 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Index: squid3/port/win32/digest_ldap_auth/.cvsignore
diff -u /dev/null squid3/port/win32/digest_ldap_auth/.cvsignore:1.1.2.1
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/digest_ldap_auth/.cvsignore Tue Apr 25 14:14:12 2006
@@ -0,0 +1,3 @@
+*.user
+Debug
+Release
Index: squid3/port/win32/digest_ldap_auth/digest_ldap_auth.vcproj
diff -u /dev/null squid3/port/win32/digest_ldap_auth/digest_ldap_auth.vcproj:1.1.2.3
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/digest_ldap_auth/digest_ldap_auth.vcproj Sat Aug 22 16:53:00 2009
@@ -0,0 +1,215 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Index: squid3/port/win32/digest_pw_auth/.cvsignore
diff -u /dev/null squid3/port/win32/digest_pw_auth/.cvsignore:1.1.2.2
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/digest_pw_auth/.cvsignore Sun Nov 20 21:10:10 2005
@@ -0,0 +1,3 @@
+*.user
+Debug
+Release
Index: squid3/port/win32/digest_pw_auth/digest_pw_auth.vcproj
diff -u /dev/null squid3/port/win32/digest_pw_auth/digest_pw_auth.vcproj:1.1.2.4
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/digest_pw_auth/digest_pw_auth.vcproj Sat Aug 22 16:53:00 2009
@@ -0,0 +1,217 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Index: squid3/port/win32/dnsserver/.cvsignore
diff -u /dev/null squid3/port/win32/dnsserver/.cvsignore:1.1.18.3
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/dnsserver/.cvsignore Sun Nov 20 21:10:10 2005
@@ -0,0 +1,3 @@
+*.user
+Debug
+Release
Index: squid3/port/win32/dnsserver/dnsserver.vcproj
diff -u /dev/null squid3/port/win32/dnsserver/dnsserver.vcproj:1.1.2.3
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/dnsserver/dnsserver.vcproj Sat Aug 22 20:23:42 2009
@@ -0,0 +1,225 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Index: squid3/port/win32/fake_auth/.cvsignore
diff -u /dev/null squid3/port/win32/fake_auth/.cvsignore:1.1.18.3
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/fake_auth/.cvsignore Sun Nov 20 21:10:10 2005
@@ -0,0 +1,3 @@
+*.user
+Debug
+Release
Index: squid3/port/win32/fake_auth/fake_auth.vcproj
diff -u /dev/null squid3/port/win32/fake_auth/fake_auth.vcproj:1.1.2.3
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/fake_auth/fake_auth.vcproj Sat Aug 22 16:53:00 2009
@@ -0,0 +1,249 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Index: squid3/port/win32/include/.cvsignore
diff -u /dev/null squid3/port/win32/include/.cvsignore:1.1.2.2
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/include/.cvsignore Sun Nov 20 21:10:10 2005
@@ -0,0 +1 @@
+default_config_file.h
Index: squid3/port/win32/include/autoconf.h
diff -u /dev/null squid3/port/win32/include/autoconf.h:1.2.18.24
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/include/autoconf.h Sat Aug 22 20:23:42 2009
@@ -0,0 +1,1184 @@
+/* include/autoconf.h. Generated from autoconf.h.in by configure. */
+/* include/autoconf.h.in. Generated from configure.in by autoheader. */
+
+/* Define if building universal (internal helper macro) */
+/* #undef AC_APPLE_UNIVERSAL_BUILD */
+
+/* Defines how many threads aufs uses for I/O */
+/* #undef AUFS_IO_THREADS */
+
+/* If you are upset that the cachemgr.cgi form comes up with the hostname
+ field blank, then define this to getfullhostname() */
+/* #undef CACHEMGR_HOSTNAME */
+
+/* What default TCP port to use for HTTP listening? */
+#define CACHE_HTTP_PORT 3128
+
+/* What default UDP port to use for ICP listening? */
+#define CACHE_ICP_PORT 3130
+
+/* Enable for cbdata debug information */
+/* #undef CBDATA_DEBUG */
+
+/* Host type from configure */
+#define CONFIG_HOST_TYPE "i686-pc-winnt"
+
+/* Define if you want to set the COSS membuf size */
+/* #undef COSS_MEMBUF_SZ */
+
+/* Define to one of `_getb67', `GETB67', `getb67' for Cray-2 and Cray-YMP
+ systems. This function is required for `alloca.c' support on those systems.
+ */
+/* #undef CRAY_STACKSEG_END */
+
+/* Define to 1 if using `alloca.c'. */
+/* #undef C_ALLOCA */
+
+/* Default FD_SETSIZE value */
+#define DEFAULT_FD_SETSIZE 64
+
+/* Traffic management via "delay pools". */
+#define DELAY_POOLS 1
+
+/* Define if you have problems with memPools and want to disable Pools. */
+#define DISABLE_POOLS 0
+
+/* Enable following X-Forwarded-For headers */
+#define FOLLOW_X_FORWARDED_FOR 1
+
+/* Enable Forw/Via database */
+#define FORW_VIA_DB 1
+
+/* If gettimeofday is known to take only one argument */
+/* #undef GETTIMEOFDAY_NO_TZP */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_AIO_H */
+
+/* Define to 1 if you have `alloca', as a function or macro. */
+#define HAVE_ALLOCA 1
+
+/* Define to 1 if you have and it should be used (not on Ultrix).
+ */
+/* #undef HAVE_ALLOCA_H */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_ARPA_INET_H */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_ARPA_NAMESER_H */
+
+/* Define to 1 if you have the header file. */
+#define HAVE_ASSERT_H 1
+
+/* Basic auth module is built */
+#define HAVE_AUTH_MODULE_BASIC 1
+
+/* Digest auth module is built */
+#define HAVE_AUTH_MODULE_DIGEST 1
+
+/* Negotiate auth module is built */
+#define HAVE_AUTH_MODULE_NEGOTIATE 1
+
+/* NTLM auth module is built */
+#define HAVE_AUTH_MODULE_NTLM 1
+
+/* Define to 1 if you have the `backtrace_symbols_fd' function. */
+/* #undef HAVE_BACKTRACE_SYMBOLS_FD */
+
+/* Define to 1 if you have the `bcopy' function. */
+/* #undef HAVE_BCOPY */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_BSTRING_H */
+
+/* Define to 1 if you have the `bswap16' function. */
+/* #undef HAVE_BSWAP16 */
+
+/* Define to 1 if you have the `bswap32' function. */
+/* #undef HAVE_BSWAP32 */
+
+/* Define to 1 if you have the `bswap_16' function. */
+/* #undef HAVE_BSWAP_16 */
+
+/* Define to 1 if you have the `bswap_32' function. */
+/* #undef HAVE_BSWAP_32 */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_BYTESWAP_H */
+
+/* Define to 1 if you have the header file. */
+#define HAVE_CASSERT 1
+
+/* char is defined in system headers */
+#define HAVE_CHAR 1
+
+/* Define to 1 if you have the `crypt' function. */
+#define HAVE_CRYPT 1
+
+/* Define to 1 if you have the header file. */
+#define HAVE_CRYPT_H 1
+
+/* Define to 1 if you have the header file. */
+#define HAVE_CSTRING 1
+
+/* Define to 1 if you have the header file. */
+#define HAVE_CTYPE_H 1
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_DB_185_H */
+
+/* Define to 1 if you have the header file. */
+#define HAVE_DB_H 1
+
+/* Define to 1 if you have the header file, and it defines `DIR'.
+ */
+#define HAVE_DIRENT_H 1
+
+/* Define if you have the GNU dld library. */
+/* #undef HAVE_DLD */
+
+/* Define to 1 if you have the `dlerror' function. */
+/* #undef HAVE_DLERROR */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_DLFCN_H */
+
+/* Define to 1 if you have the `drand48' function. */
+/* #undef HAVE_DRAND48 */
+
+/* Define if you have the _dyld_func_lookup function. */
+/* #undef HAVE_DYLD */
+
+/* Define to 1 if you have the `epoll_ctl' function. */
+/* #undef HAVE_EPOLL_CTL */
+
+/* Define to 1 if you have the header file. */
+#define HAVE_ERRNO_H 1
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_EXECINFO_H */
+
+/* Define to 1 if you have the `fchmod' function. */
+/* #undef HAVE_FCHMOD */
+
+/* Define to 1 if you have the header file. */
+#define HAVE_FCNTL_H 1
+
+/* fd_mask is defined by the system headers */
+/* #undef HAVE_FD_MASK */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_FNMATCH_H */
+
+/* "Define to 1 if aufs filesystem module is build" */
+#define HAVE_FS_AUFS 1
+
+/* "Define to 1 if coss filesystem module is build" */
+/* #undef HAVE_FS_COSS */
+
+/* "Define to 1 if diskd filesystem module is build" */
+/* #undef HAVE_FS_DISKD */
+
+/* "Define to 1 if ufs filesystem module is build" */
+#define HAVE_FS_UFS 1
+
+/* Define to 1 if you have the `getaddrinfo' function. */
+/* #undef HAVE_GETADDRINFO */
+
+/* Define to 1 if you have the `getdtablesize' function. */
+/* #undef HAVE_GETDTABLESIZE */
+
+/* Define to 1 if you have the `getnameinfo' function. */
+/* #undef HAVE_GETNAMEINFO */
+
+/* Define to 1 if you have the header file. */
+#define HAVE_GETOPT_H 1
+
+/* Define to 1 if you have the `getpagesize' function. */
+#define HAVE_GETPAGESIZE 1
+
+/* Define to 1 if you have the `getpass' function. */
+/* #undef HAVE_GETPASS */
+
+/* Define to 1 if you have the `getrlimit' function. */
+/* #undef HAVE_GETRLIMIT */
+
+/* Define to 1 if you have the `getrusage' function. */
+#define HAVE_GETRUSAGE 1
+
+/* Define to 1 if you have the `getspnam' function. */
+/* #undef HAVE_GETSPNAM */
+
+/* Define to 1 if you have the `gettimeofday' function. */
+/* #undef HAVE_GETTIMEOFDAY */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_GLIB_H */
+
+/* Define to 1 if you have the `glob' function. */
+/* #undef HAVE_GLOB */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_GLOB_H */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_GNUMALLOC_H */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_GRP_H */
+
+/* Define to 1 if you have the `htobe16' function. */
+/* #undef HAVE_HTOBE16 */
+
+/* Define to 1 if you have the `htole16' function. */
+/* #undef HAVE_HTOLE16 */
+
+/* Define to 1 if you have the `inet_ntop' function. */
+/* #undef HAVE_INET_NTOP */
+
+/* Define to 1 if you have the `inet_pton' function. */
+/* #undef HAVE_INET_PTON */
+
+/* Define to 1 if you have the `initgroups' function. */
+/* #undef HAVE_INITGROUPS */
+
+/* int is defined in system headers */
+#define HAVE_INT 1
+
+/* int16_t is defined in system headers */
+/* #undef HAVE_INT16_T */
+
+/* int32_t is defined in system headers */
+/* #undef HAVE_INT32_T */
+
+/* int64_t is defined in system headers */
+/* #undef HAVE_INT64_T */
+
+/* int8_t is defined in system headers */
+/* #undef HAVE_INT8_T */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_INTTYPES_H */
+
+/* Define to 1 if you have the header file. */
+#define HAVE_IOMANIP 1
+
+/* Define to 1 if you have the header file. */
+#define HAVE_IOSFWD 1
+
+/* Define to 1 if you have the header file. */
+#define HAVE_IOSTREAM 1
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_IPL_H */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_IP_COMPAT_H */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_IP_FIL_COMPAT_H */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_IP_FIL_H */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_IP_NAT_H */
+
+/* Define to 1 if you have the `kqueue' function. */
+/* #undef HAVE_KQUEUE */
+
+/* Define to 1 if you have the `bind' library (-lbind). */
+/* #undef HAVE_LIBBIND */
+
+/* Define to 1 if you have the `bsd' library (-lbsd). */
+/* #undef HAVE_LIBBSD */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_LIBC_H */
+
+/* Define to 1 if you have the `dl' library (-ldl). */
+/* #undef HAVE_LIBDL */
+
+/* Define to 1 if you have the `gnumalloc' library (-lgnumalloc). */
+/* #undef HAVE_LIBGNUMALLOC */
+
+/* Define to 1 if you have the `intl' library (-lintl). */
+/* #undef HAVE_LIBINTL */
+
+/* Define to 1 if you have the `m' library (-lm). */
+/* #undef HAVE_LIBM */
+
+/* Define to 1 if you have the `malloc' library (-lmalloc). */
+/* #undef HAVE_LIBMALLOC */
+
+/* Define to 1 if you have the `nsl' library (-lnsl). */
+/* #undef HAVE_LIBNSL */
+
+/* Define to 1 if you have the `resolv' library (-lresolv). */
+/* #undef HAVE_LIBRESOLV */
+
+/* Define to 1 if you have the `socket' library (-lsocket). */
+/* #undef HAVE_LIBSOCKET */
+
+/* Define to 1 if you have the header file. */
+#define HAVE_LIBXML_PARSER_H 1
+
+/* Define to 1 if you have the header file. */
+#define HAVE_LIMITS_H 1
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_LINUX_NETFILTER_IPV4_H */
+
+/* Define to 1 if you have the header file.
+ */
+/* #undef HAVE_LINUX_NETFILTER_IPV4_IP_TPROXY_H */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_LINUX_TYPES_H */
+
+/* long is defined in system headers */
+#define HAVE_LONG 1
+
+/* long long is defined in system headers */
+#define HAVE_LONG_LONG 1
+
+/* Define to 1 if you have the `lrand48' function. */
+/* #undef HAVE_LRAND48 */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_MACHINE_BYTE_SWAP_H */
+
+/* Define to 1 if you have the `mallinfo' function. */
+/* #undef HAVE_MALLINFO */
+
+/* Define to 1 if you have the `mallocblksize' function. */
+/* #undef HAVE_MALLOCBLKSIZE */
+
+/* Define to 1 if you have the header file. */
+#define HAVE_MALLOC_H 1
+
+/* Define to 1 if you have the `mallopt' function. */
+/* #undef HAVE_MALLOPT */
+
+/* Define to 1 if you have the header file. */
+#define HAVE_MATH_H 1
+
+/* Define to 1 if you have the `memcpy' function. */
+#define HAVE_MEMCPY 1
+
+/* Define to 1 if you have the `memmove' function. */
+#define HAVE_MEMMOVE 1
+
+/* Define to 1 if you have the header file. */
+#define HAVE_MEMORY_H 1
+
+/* Define to 1 if you have the `memset' function. */
+#define HAVE_MEMSET 1
+
+/* Define to 1 if you have the `mkstemp' function. */
+/* #undef HAVE_MKSTEMP */
+
+/* Define to 1 if you have the `mktime' function. */
+#define HAVE_MKTIME 1
+
+/* mode_t is defined by the system headers */
+/* #undef HAVE_MODE_T */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_MOUNT_H */
+
+/* Define to 1 if you have the `mstats' function. */
+/* #undef HAVE_MSTATS */
+
+/* mtyp_t is defined by the system headers */
+/* #undef HAVE_MTYP_T */
+
+/* Define to 1 if you have the header file, and it defines `DIR'. */
+/* #undef HAVE_NDIR_H */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_NETDB_H */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_NETINET_ICMP6_H */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_NETINET_IF_ETHER_H */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_NETINET_IN_H */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_NETINET_IN_SYSTM_H */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_NETINET_IP6_H */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_NETINET_IPL_H */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_NETINET_IP_COMPAT_H */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_NETINET_IP_FIL_COMPAT_H */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_NETINET_IP_FIL_H */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_NETINET_IP_H */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_NETINET_IP_ICMP_H */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_NETINET_IP_NAT_H */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_NETINET_TCP_H */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_NET_IF_H */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_NET_PFVAR_H */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_NET_PF_PFVAR_H */
+
+/* off_t is defined by the system headers */
+#define HAVE_OFF_T 1
+
+/* Define to 1 if you have the header file. */
+#define HAVE_OPENSSL_ENGINE_H 1
+
+/* Define to 1 if you have the header file. */
+#define HAVE_OPENSSL_ERR_H 1
+
+/* Define to 1 if you have the header file. */
+#define HAVE_OPENSSL_MD5_H 1
+
+/* Define to 1 if you have the header file. */
+#define HAVE_OPENSSL_SSL_H 1
+
+/* Define to 1 if you have the header file. */
+#define HAVE_OSTREAM 1
+
+/* pad128_t is defined in system headers */
+/* #undef HAVE_PAD128_T */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_PATHS_H */
+
+/* pid_t is defined by the system headers */
+// #define HAVE_PID_T 1
+
+/* Define to 1 if you have the `poll' function. */
+/* #undef HAVE_POLL */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_POLL_H */
+
+/* Define to 1 if you have the `prctl' function. */
+/* #undef HAVE_PRCTL */
+
+/* Define to 1 if you have the `pthread_attr_setschedparam' function. */
+/* #undef HAVE_PTHREAD_ATTR_SETSCHEDPARAM */
+
+/* Define to 1 if you have the `pthread_attr_setscope' function. */
+/* #undef HAVE_PTHREAD_ATTR_SETSCOPE */
+
+/* Define to 1 if you have the `pthread_setschedparam' function. */
+/* #undef HAVE_PTHREAD_SETSCHEDPARAM */
+
+/* Define to 1 if you have the `pthread_sigmask' function. */
+/* #undef HAVE_PTHREAD_SIGMASK */
+
+/* Define to 1 if you have the `putenv' function. */
+#define HAVE_PUTENV 1
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_PWD_H */
+
+/* Define to 1 if you have the `random' function. */
+/* #undef HAVE_RANDOM */
+
+/* Define to 1 if you have the `regcomp' function. */
+#define HAVE_REGCOMP 1
+
+/* Define to 1 if you have the `regexec' function. */
+#define HAVE_REGEXEC 1
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_REGEX_H */
+
+/* Define to 1 if you have the `regfree' function. */
+#define HAVE_REGFREE 1
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_RESOLV_H */
+
+/* Define to 1 if you have the `res_init' function. */
+/* #undef HAVE_RES_INIT */
+
+/* Define to 1 if you have the `rint' function. */
+/* #undef HAVE_RINT */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_SASL_H */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_SASL_SASL_H */
+
+/* Define to 1 if you have the `sbrk' function. */
+/* #undef HAVE_SBRK */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_SCHED_H */
+
+/* Define to 1 if you have the `select' function. */
+#define HAVE_SELECT 1
+
+/* Define to 1 if you have the `seteuid' function. */
+#define HAVE_SETEUID 1
+
+/* Define to 1 if you have the `setgroups' function. */
+/* #undef HAVE_SETGROUPS */
+
+/* Define to 1 if you have the `setpgrp' function. */
+/* #undef HAVE_SETPGRP */
+
+/* Yay! Another Linux brokenness. Its not good enough to know that setresuid()
+ exists, because RedHat 5.0 declare setresuid() but doesn't implement it. */
+/* #undef HAVE_SETRESUID */
+
+/* Define to 1 if you have the `setrlimit' function. */
+/* #undef HAVE_SETRLIMIT */
+
+/* Define to 1 if you have the `setsid' function. */
+/* #undef HAVE_SETSID */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_SHADOW_H */
+
+/* Define if you have the shl_load function. */
+/* #undef HAVE_SHL_LOAD */
+
+/* short is defined in system headers */
+#define HAVE_SHORT 1
+
+/* Define to 1 if you have the `sigaction' function. */
+/* #undef HAVE_SIGACTION */
+
+/* Define to 1 if you have the header file. */
+#define HAVE_SIGNAL_H 1
+
+/* Does struct sockaddr_in6 have sin6_len? 1: Yes, 0: No */
+/* #undef HAVE_SIN6_LEN_IN_SAI */
+
+/* Does struct sockaddr_in have sin_len? 1: Yes, 0: No */
+#define HAVE_SIN_LEN_IN_SAI 0
+
+/* size_t is defined by the system headers */
+#define HAVE_SIZE_T 1
+
+/* Define to 1 if you have the `snprintf' function. */
+#define HAVE_SNPRINTF 1
+
+/* Define to 1 if you have the `socketpair' function. */
+/* #undef HAVE_SOCKETPAIR */
+
+/* socklen_t is defined by the system headers */
+/* #undef HAVE_SOCKLEN_T */
+
+/* Define to 1 if you have the `srand48' function. */
+/* #undef HAVE_SRAND48 */
+
+/* Define to 1 if you have the `srandom' function. */
+/* #undef HAVE_SRANDOM */
+
+/* ssize_t is defined by the system headers */
+/* #undef HAVE_SSIZE_T */
+
+/* Define to 1 if you have the header file. */
+#define HAVE_SSTREAM 1
+
+/* Does struct sockaddr_storage have ss_len? 1: Yes, 0: No */
+#define HAVE_SS_LEN_IN_SS 0
+
+/* Define to 1 if you have the `statfs' function. */
+#define HAVE_STATFS 1
+
+/* If your system has statvfs(), and if it actually works! */
+/* #undef HAVE_STATVFS */
+
+/* Define to 1 if you have the header file. */
+#define HAVE_STDARG_H 1
+
+/* Define to 1 if you have the header file. */
+#define HAVE_STDDEF_H 1
+
+/* Define to 1 if you have the header file. */
+#define HAVE_STDEXCEPT 1
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_STDINT_H */
+
+/* Define to 1 if you have the header file. */
+#define HAVE_STDIO_H 1
+
+/* Define to 1 if you have the header file. */
+#define HAVE_STDLIB_H 1
+
+/* Define to 1 if you have the `strerror' function. */
+#define HAVE_STRERROR 1
+
+/* Define to 1 if you have the header file. */
+#define HAVE_STRING 1
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_STRINGS_H */
+
+/* Define to 1 if you have the header file. */
+#define HAVE_STRING_H 1
+
+/* Yay! A MacOS X brokenness. Its not good enough to know that strnstr()
+ exists, because MacOSX 10.4 and earlier may have a buffer overrun. */
+#define HAVE_STRNSTR 0
+
+/* Define to 1 if you have the `strsep' function. */
+/* #undef HAVE_STRSEP */
+
+/* Define to 1 if you have the `strtoll' function. */
+/* #undef HAVE_STRTOLL */
+
+/* Define to 1 if `ip_hl' is member of `struct iphdr'. */
+/* #undef HAVE_STRUCT_IPHDR_IP_HL */
+
+/* The system provides struct mallinfo */
+/* #undef HAVE_STRUCT_MALLINFO */
+
+/* Define to 1 if `mxfast' is member of `struct mallinfo'. */
+/* #undef HAVE_STRUCT_MALLINFO_MXFAST */
+
+/* The system provides struct rusage */
+#define HAVE_STRUCT_RUSAGE 1
+
+/* Define to 1 if `tm_gmtoff' is member of `struct tm'. */
+/* #undef HAVE_STRUCT_TM_TM_GMTOFF */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_SYSCALL_H */
+
+/* Define to 1 if you have the `sysconf' function. */
+/* #undef HAVE_SYSCONF */
+
+/* Define to 1 if you have the `syslog' function. */
+/* #undef HAVE_SYSLOG */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_SYSLOG_H */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_SYS_BITYPES_H */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_SYS_BSWAP_H */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_SYS_CAPABILITY_H */
+
+/* Define to 1 if you have the header file, and it defines `DIR'.
+ */
+/* #undef HAVE_SYS_DIR_H */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_SYS_ENDIAN_H */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_SYS_EPOLL_H */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_SYS_EVENT_H */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_SYS_FILE_H */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_SYS_IOCTL_H */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_SYS_MD5_H */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_SYS_MOUNT_H */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_SYS_MSG_H */
+
+/* Define to 1 if you have the header file, and it defines `DIR'.
+ */
+/* #undef HAVE_SYS_NDIR_H */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_SYS_PARAM_H */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_SYS_PRCTL_H */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_SYS_RESOURCE_H */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_SYS_SELECT_H */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_SYS_SOCKET_H */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_SYS_STATVFS_H */
+
+/* Define to 1 if you have the header file. */
+#define HAVE_SYS_STAT_H 1
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_SYS_SYSCALL_H */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_SYS_TIME_H */
+
+/* Define to 1 if you have the header file. */
+#define HAVE_SYS_TYPES_H 1
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_SYS_UN_H */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_SYS_VFS_H */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_SYS_WAIT_H */
+
+/* Define to 1 if you have the `tempnam' function. */
+#define HAVE_TEMPNAM 1
+
+/* Define to 1 if you have the `timegm' function. */
+/* #undef HAVE_TIMEGM */
+
+/* Define to 1 if you have the header file. */
+#define HAVE_TIME_H 1
+
+/* uint16_t is defined in system headers */
+/* #undef HAVE_UINT16_T */
+
+/* uint32_t is defined in system headers */
+/* #undef HAVE_UINT32_T */
+
+/* uint64_t is defined in system headers */
+/* #undef HAVE_UINT64_T */
+
+/* uint8_t is defined in system headers */
+/* #undef HAVE_UINT8_T */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_UNISTD_H */
+
+/* Do we have unix sockets? (required for the winbind ntlm helper */
+/* #undef HAVE_UNIXSOCKET */
+
+/* upad128_t is defined in system headers */
+/* #undef HAVE_UPAD128_T */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_UTIME_H */
+
+/* u_int16_t is defined in system headers */
+/* #undef HAVE_U_INT16_T */
+
+/* u_int32_t is defined in system headers */
+/* #undef HAVE_U_INT32_T */
+
+/* u_int64_t is defined in system headers */
+/* #undef HAVE_U_INT64_T */
+
+/* u_int8_t is defined in system headers */
+/* #undef HAVE_U_INT8_T */
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_VALGRIND_MEMCHECK_H */
+
+/* Define to 1 if you have the header file. */
+#define HAVE_VARARGS_H 1
+
+/* If your system have va_copy */
+/* #undef HAVE_VA_COPY 1 */
+
+/* Define to 1 if you have the `vsnprintf' function. */
+#define HAVE_VSNPRINTF 1
+
+/* Define if you have PSAPI.DLL on Windows systems */
+#define HAVE_WIN32_PSAPI 1
+
+/* Define to 1 if you have the header file. */
+#define HAVE_WINSOCK2_H 1
+
+/* Define to 1 if you have the header file. */
+/* #undef HAVE_WINSOCK_H */
+
+/* __int64 is defined in system headers */
+#define HAVE___INT64 1
+
+/* Define to 1 if you have the `__res_init' function. */
+/* #undef HAVE___RES_INIT */
+
+/* Some systems have __va_copy instead of va_copy */
+/* #undef HAVE___VA_COPY 1 */
+
+/* By default (for now anyway) Squid includes options which allows the cache
+ administrator to violate the HTTP protocol specification in terms of cache
+ behaviour. Setting this to '0' will disable such code. */
+#define HTTP_VIOLATIONS 1
+
+/* Enable ICAP client features in Squid */
+#define ICAP_CLIENT 1
+
+/* Enable support for Transparent Proxy on systems using FreeBSD IPFW address
+ redirection. */
+/* #undef IPFW_TRANSPARENT */
+
+/* Enable support for Transparent Proxy on systems using IP-Filter address
+ redirection. This provides "masquerading" support for non Linux system. */
+/* #undef IPF_TRANSPARENT */
+
+/* Enable support for IPv6 on split-stack implementations */
+#define IPV6_SPECIAL_SPLITSTACK 0
+
+/* Enable v4-mapping through v6 sockets */
+#define IPV6_SPECIAL_V4MAPPED 0
+
+/* A dangerous feature which causes Squid to kill its parent process
+ (presumably the RunCache script) upon receipt of SIGTERM or SIGINT. Use
+ with caution. */
+/* #undef KILL_PARENT_OPT */
+
+/* if libcap2 is available and not clashing with libc */
+#define LIBCAP_BROKEN 1
+
+/* If libresolv.a has been hacked to export _dns_ttl_ */
+/* #undef LIBRESOLV_DNS_TTL_HACK */
+
+/* Enable support for Transparent Proxy on Linux (Netfilter) systems */
+/* #undef LINUX_NETFILTER */
+
+/* Enable real Transparent Proxy support for Netfilter TPROXY v2. */
+/* #undef LINUX_TPROXY2 */
+
+/* If we need to declare sys_errlist[] as external */
+#define NEED_SYS_ERRLIST 1
+
+/* Define to 1 if your C compiler doesn't accept -c and -o together. */
+/* #undef NO_MINUS_C_MINUS_O */
+
+/* Define if NTLM is allowed to fail gracefully when a helper has problems.
+ WARNING: This has security implications. DO NOT enable unless you KNOW you
+ need it. */
+/* #undef NTLM_FAIL_OPEN */
+
+/* Enable support for Transparent Proxy on systems using PF address
+ redirection. This provides "masquerading" support for OpenBSD. */
+/* #undef PF_TRANSPARENT */
+
+/* Print stacktraces on fatal errors */
+/* #undef PRINT_STACK_TRACE */
+
+/* The size of `char', as computed by sizeof. */
+#define SIZEOF_CHAR 1
+
+/* The size of `int', as computed by sizeof. */
+#define SIZEOF_INT 4
+
+/* The size of `int16_t', as computed by sizeof. */
+/* #undef SIZEOF_INT16_T */
+
+/* The size of `int32_t', as computed by sizeof. */
+/* #undef SIZEOF_INT32_T */
+
+/* The size of `int64_t', as computed by sizeof. */
+/* #undef SIZEOF_INT64_T */
+
+/* The size of `int8_t', as computed by sizeof. */
+/* #undef SIZEOF_INT8_T */
+
+/* The size of `long', as computed by sizeof. */
+#define SIZEOF_LONG 4
+
+/* The size of `long long', as computed by sizeof. */
+#define SIZEOF_LONG_LONG 8
+
+/* The size of `off_t', as computed by sizeof. */
+#define SIZEOF_OFF_T 4
+
+/* The size of `short', as computed by sizeof. */
+#define SIZEOF_SHORT 2
+
+/* The size of `size_t', as computed by sizeof. */
+#define SIZEOF_SIZE_T 4
+
+/* The size of `uint16_t', as computed by sizeof. */
+#define SIZEOF_UINT16_T 2
+
+/* The size of `uint32_t', as computed by sizeof. */
+#define SIZEOF_UINT32_T 4
+
+/* The size of `uint64_t', as computed by sizeof. */
+#define SIZEOF_UINT64_T 8
+
+/* The size of `uint8_t', as computed by sizeof. */
+/* #undef SIZEOF_UINT8_T */
+
+/* The size of `u_int16_t', as computed by sizeof. */
+/* #undef SIZEOF_U_INT16_T */
+
+/* The size of `u_int32_t', as computed by sizeof. */
+/* #undef SIZEOF_U_INT32_T */
+
+/* The size of `u_int64_t', as computed by sizeof. */
+/* #undef SIZEOF_U_INT64_T */
+
+/* The size of `u_int8_t', as computed by sizeof. */
+/* #undef SIZEOF_U_INT8_T */
+
+/* The size of `void *', as computed by sizeof. */
+#define SIZEOF_VOID_P 4
+
+/* The size of `__int64', as computed by sizeof. */
+#define SIZEOF___INT64 8
+
+/* UDP receive buffer size */
+#define SQUID_DETECT_UDP_SO_RCVBUF 8192
+
+/* UDP send buffer size */
+#define SQUID_DETECT_UDP_SO_SNDBUF 8192
+
+/* Maximum number of open filedescriptors */
+#define SQUID_MAXFD 2048
+
+/* Define to enable SNMP monitoring of Squid */
+#define SQUID_SNMP 1
+
+/* TCP receive buffer size */
+#define SQUID_TCP_SO_RCVBUF 8192
+
+/* TCP send buffer size */
+#define SQUID_TCP_SO_SNDBUF 8192
+
+/* If using the C implementation of alloca, define if you know the
+ direction of stack growth for your system; otherwise it will be
+ automatically deduced at runtime.
+ STACK_DIRECTION > 0 => grows toward higher addresses
+ STACK_DIRECTION < 0 => grows toward lower addresses
+ STACK_DIRECTION = 0 => direction of growth unknown */
+/* #undef STACK_DIRECTION */
+
+/* Define to 1 if you have the ANSI C header files. */
+#define STDC_HEADERS 1
+
+/* Define to 1 if your declares `struct tm'. */
+/* #undef TM_IN_SYS_TIME */
+
+/* common adaptation support */
+#define USE_ADAPTATION 1
+
+/* Define this to include code which lets you specify access control elements
+ based on ethernet hardware addresses. This code uses functions found in 4.4
+ BSD derviations (e.g. FreeBSD, ?). */
+#define USE_ARP_ACL 1
+
+/* Use Cache Digests for locating objects in neighbor caches. This code is
+ still semi-experimental. */
+#define USE_CACHE_DIGESTS 1
+
+/* DiskIO modules are expected to be available. */
+#define USE_DISKIO 1
+
+/* Use dnsserver processes instead of the internal DNS protocol support */
+/* #undef USE_DNSSERVERS */
+
+/* Disable eCAP support */
+#define USE_ECAP 0
+
+/* Use epoll() for the IO loop */
+/* #undef USE_EPOLL */
+
+/* Use multi-language support on error pages */
+#define USE_ERR_LOCALES 1
+
+/* Define if we should use GNU regex */
+#define USE_GNUREGEX 1
+
+/* Define this to include code for the Hypertext Cache Protocol (HTCP) */
+#define USE_HTCP 1
+
+/* Define to use Squid's ICMP and Network Measurement features (highly
+ recommended!) */
+#define USE_ICMP 1
+
+/* Compile in support for Ident (RFC 931) lookups? Enabled by default. */
+#define USE_IDENT 1
+
+/* Enable support for IPv6 */
+#define USE_IPV6 0
+
+/* Use kqueue() for the IO loop */
+/* #undef USE_KQUEUE */
+
+/* Enable code for assisting in finding memory leaks. Hacker stuff only. */
+/* #undef USE_LEAKFINDER */
+
+/* Support Loadable Modules */
+/* #undef USE_LOADABLE_MODULES */
+
+/* Define this to make use of the OpenSSL libraries for MD5 calculation rather
+ than Squid's own MD5 implementation or if building with SSL encryption
+ (USE_SSL) */
+#define USE_OPENSSL 1
+
+/* Use poll() for the IO loop */
+/* #undef USE_POLL */
+
+/* If you want to log Referer request header values, define this. By default,
+ they are written to referer.log in the Squid log directory. */
+#define USE_REFERER_LOG 1
+
+/* Use select() for the IO loop */
+/* #undef USE_SELECT */
+
+/* Use Winsock select() for the IO loop */
+#define USE_SELECT_WIN32 1
+
+/* Compile the ESI processor and Surrogate header support */
+#define USE_SQUID_ESI 1
+
+/* Define this to include code for SSL encryption. */
+#define USE_SSL 1
+
+/* Define this if unlinkd is required (strongly recommended for ufs storage
+ type) */
+#define USE_UNLINKD 1
+
+/* If you want to log User-Agent request header values, define this. By
+ default, they are written to useragent.log in the Squid log directory. */
+#define USE_USERAGENT_LOG 1
+
+/* Define to enable WCCP */
+/* #undef USE_WCCP */
+
+/* Define to enable WCCP V2 */
+/* #undef USE_WCCPv2 */
+
+/* Define Windows NT & Windows 2000 run service mode */
+#define USE_WIN32_SERVICE 1
+
+/* Define to enable CPU profiling within Squid */
+#define USE_XPROF_STATS 1
+
+/* Define this to use Squid's ZPH (Zero Penalty Hit) QOS features. When
+ enabled, Squid will alter TOS field of HIT responses for better QOS on
+ intermediate routing/shaping devices. */
+/* #undef USE_ZPH_QOS */
+
+/* Valgrind memory debugger support */
+/* #undef WITH_VALGRIND */
+
+/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
+ significant byte first (like Motorola and SPARC, unlike Intel). */
+#if defined AC_APPLE_UNIVERSAL_BUILD
+# if defined __BIG_ENDIAN__
+# define WORDS_BIGENDIAN 1
+# endif
+#else
+# ifndef WORDS_BIGENDIAN
+/* # undef WORDS_BIGENDIAN */
+# endif
+#endif
+
+/* Define to have malloc statistics */
+/* #undef XMALLOC_STATISTICS */
+
+/* Enable support for the X-Accelerator-Vary HTTP header */
+/* #undef X_ACCELERATOR_VARY */
+
+/* Keyword used by squid for inlining methods */
+#define _SQUID_INLINE_ inline
+
+/* Nameserver Counter for IPv6 _res */
+/* #undef _SQUID_RES_NSADDR6_COUNT */
+
+/* If _res_ext structure has nsaddr_list member */
+/* #undef _SQUID_RES_NSADDR6_LARRAY */
+
+/* If _res structure has _ext.nsaddrs member */
+/* #undef _SQUID_RES_NSADDR6_LPTR */
+
+/* Nameserver counter for IPv4 _res */
+/* #undef _SQUID_RES_NSADDR_COUNT */
+
+/* If _res structure has ns_list member */
+/* #undef _SQUID_RES_NSADDR_LIST */
+
+/* Include inline methods into header file */
+#define _USE_INLINE_ /**/
+
+/* Define to empty if `const' does not conform to ANSI C. */
+/* #undef const */
+
+#if (USE_SQUID_ESI == 1)
+#define STR_SQUID_ESI "--enable-esi "
+#else
+#define STR_SQUID_ESI ""
+#endif
+#if DELAY_POOLS
+#define STR_DELAY_POOLS "--enable-delay-pools "
+#else
+#define STR_DELAY_POOLS ""
+#endif
+#if USE_ICMP
+#define STR_USE_ICMP "--enable-icmp "
+#else
+#define STR_USE_ICMP ""
+#endif
+#if USE_DNSSERVERS
+#define STR_USE_DNSSERVERS "--disable-internal-dns "
+#else
+#define STR_USE_DNSSERVERS ""
+#endif
+#if USE_SSL
+#define STR_USE_SSL "--enable-ssl "
+#else
+#define STR_USE_SSL ""
+#endif
+#if USE_ARP_ACL
+#define STR_USE_ARP_ACL "--enable-arp-acl "
+#else
+#define STR_USE_ARP_ACL ""
+#endif
+#if USE_XPROF_STATS
+#define STR_USE_XPROF_STATS "--enable-cpu-profiling "
+#else
+#define STR_USE_XPROF_STATS ""
+#endif
+
+#define SQUID_CONFIGURE_OPTIONS "--enable-win32-service --enable-storeio='ufs aufs' --enable-disk-io='Blocking AIO DiskThreads' " \
+ "--enable-removal-policies='heap lru' --enable-snmp --enable-htcp --disable-wccp --disable-wccpv2 --enable-useragent-log " \
+ "--enable-referer-log --enable-cache-digests --enable-icap-client --enable-forw-via-db " \
+ "--with-large-files --enable-default-hostsfile=none --enable-auth=basic ntlm digest negotiate " \
+ STR_DELAY_POOLS \
+ STR_USE_ICMP \
+ STR_USE_DNSSERVERS \
+ STR_USE_SSL \
+ STR_SQUID_ESI \
+ STR_USE_ARP_ACL \
+ STR_USE_XPROF_STATS \
+ "--prefix=c:/squid"
Index: squid3/port/win32/include/crypt.h
diff -u /dev/null squid3/port/win32/include/crypt.h:1.2.18.1
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/include/crypt.h Tue Feb 25 02:48:45 2003
@@ -0,0 +1,45 @@
+/* encrypt.h - API to 56 bit DES encryption via calls
+ encrypt(3), setkey(3) and crypt(3)
+ Copyright (C) 1991 Jochen Obalek
+
+ 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, write to the Free Software
+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
+
+#ifndef _ENCRYPT_H_
+#define _ENCRYPT_H_
+
+#ifdef __cplusplus
+extern "C"
+{
+#endif
+
+
+#ifdef WIN32
+void encrypt(char *block, int edflag);
+void setkey(char *key);
+char * crypt(const char *key, const char *salt);
+
+#else
+#include <_ansi.h>
+
+void _EXFUN(encrypt, (char *block, int edflag));
+void _EXFUN(setkey, (char *key));
+char * _EXFUN(crypt, (const char *key, const char *salt));
+#endif
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* _ENCRYPT_H_ */
Index: squid3/port/win32/include/dirent.h
diff -u /dev/null squid3/port/win32/include/dirent.h:1.1.2.1
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/include/dirent.h Mon Jun 30 12:12:00 2008
@@ -0,0 +1,102 @@
+/*
+ * $Id$
+ *
+ * Implement dirent-style opendir(), readdir(), closedir(), rewinddir(),
+ * seekdir() and telldir on Windows - Based on mingw-runtime package sources.
+ * AUTHOR: Guido Serassio
+ *
+ * SQUID Web Proxy Cache http://www.squid-cache.org/
+ * ----------------------------------------------------------
+ *
+ * Squid is the result of efforts by numerous individuals from
+ * the Internet community; see the CONTRIBUTORS file for full
+ * details. Many organizations have provided support for Squid's
+ * development; see the SPONSORS file for full details. Squid is
+ * Copyrighted (C) 2001 by the Regents of the University of
+ * California; see the COPYRIGHT file for full details. Squid
+ * incorporates software developed and/or copyrighted by other
+ * sources; see the CREDITS file for full details.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
+ *
+ * Original file info follow:
+ *
+ * DIRENT.H (formerly DIRLIB.H)
+ * This file has no copyright assigned and is placed in the Public Domain.
+ * This file is a part of the mingw-runtime package.
+ * No warranty is given; refer to the file DISCLAIMER within the package.
+ *
+ */
+#ifndef _DIRENT_H_
+#define _DIRENT_H_
+
+/* All the headers include this file. */
+#include
+#include
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+ struct dirent {
+ long d_ino; /* Always zero. */
+ unsigned short d_reclen; /* Always zero. */
+ unsigned short d_namlen; /* Length of name in d_name. */
+ char d_name[FILENAME_MAX]; /* File name. */
+ };
+
+/*
+ * This is an internal data structure. Good programmers will not use it
+ * except as an argument to one of the functions below.
+ * dd_stat field is now int (was short in older versions).
+ */
+ typedef struct {
+ /* disk transfer area for this dir */
+ struct _finddata_t dd_dta;
+
+ /* dirent struct to return from dir (NOTE: this makes this thread
+ * safe as long as only one thread uses a particular DIR struct at
+ * a time) */
+ struct dirent dd_dir;
+
+ /* _findnext handle */
+ long dd_handle;
+
+ /*
+ * Status of search:
+ * 0 = not started yet (next entry to read is first entry)
+ * -1 = off the end
+ * positive = 0 based index of next entry
+ */
+ int dd_stat;
+
+ /* given path for dir with search pattern (struct is extended) */
+ char dd_name[1];
+ } DIR;
+
+ DIR *__cdecl opendir(const char *);
+ struct dirent *__cdecl readdir(DIR *);
+ int __cdecl closedir(DIR *);
+ void __cdecl rewinddir(DIR *);
+ long __cdecl telldir(DIR *);
+ void __cdecl seekdir(DIR *, long);
+
+
+
+#ifdef __cplusplus
+}
+
+#endif
+#endif /* Not _DIRENT_H_ */
Index: squid3/port/win32/include/getopt.h
diff -u /dev/null squid3/port/win32/include/getopt.h:1.2.18.2
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/include/getopt.h Mon Jun 30 12:11:20 2008
@@ -0,0 +1,49 @@
+/*
+ * Copyright (c) 1987, 1993, 1994
+ * The Regents of the University of California. 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 University 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 REGENTS 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 REGENTS OR CONTRIBUTORS BE LIABLE
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ * SUCH DAMAGE.
+ */
+
+#ifndef __GETOPT_H
+#define __GETOPT_H
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+ extern int opterr; /* if error message should be printed */
+ extern int optind; /* index into parent argv vector */
+ extern int optopt; /* character checked for validity */
+ extern int optreset; /* reset getopt */
+ extern char *optarg; /* argument associated with option */
+
+ int getopt(int nargc, char *const *nargv, const char *ostr);
+
+#ifdef __cplusplus
+}
+
+#endif
+#endif
Index: squid3/port/win32/ip_user_check/.cvsignore
diff -u /dev/null squid3/port/win32/ip_user_check/.cvsignore:1.1.6.3
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/ip_user_check/.cvsignore Sun Nov 20 21:10:11 2005
@@ -0,0 +1,3 @@
+*.user
+Debug
+Release
Index: squid3/port/win32/ip_user_check/ip_user_check.vcproj
diff -u /dev/null squid3/port/win32/ip_user_check/ip_user_check.vcproj:1.1.2.3
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/ip_user_check/ip_user_check.vcproj Sat Aug 22 16:53:00 2009
@@ -0,0 +1,297 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Index: squid3/port/win32/libAIO/.cvsignore
diff -u /dev/null squid3/port/win32/libAIO/.cvsignore:1.1.2.1
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/libAIO/.cvsignore Mon Sep 11 16:55:14 2006
@@ -0,0 +1,3 @@
+*.user
+Debug
+Release
Index: squid3/port/win32/libAIO/libAIO.vcproj
diff -u /dev/null squid3/port/win32/libAIO/libAIO.vcproj:1.1.2.2
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/libAIO/libAIO.vcproj Sat Aug 22 16:53:00 2009
@@ -0,0 +1,203 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Index: squid3/port/win32/libBlocking/.cvsignore
diff -u /dev/null squid3/port/win32/libBlocking/.cvsignore:1.1.2.2
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/libBlocking/.cvsignore Sun Nov 20 21:10:11 2005
@@ -0,0 +1,3 @@
+*.user
+Debug
+Release
Index: squid3/port/win32/libBlocking/libBlocking.vcproj
diff -u /dev/null squid3/port/win32/libBlocking/libBlocking.vcproj:1.1.2.2
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/libBlocking/libBlocking.vcproj Sat Aug 22 16:53:00 2009
@@ -0,0 +1,187 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Index: squid3/port/win32/libDiskThreads/.cvsignore
diff -u /dev/null squid3/port/win32/libDiskThreads/.cvsignore:1.1.2.1
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/libDiskThreads/.cvsignore Mon Sep 11 16:55:14 2006
@@ -0,0 +1,3 @@
+*.user
+Debug
+Release
Index: squid3/port/win32/libDiskThreads/libDiskThreads.vcproj
diff -u /dev/null squid3/port/win32/libDiskThreads/libDiskThreads.vcproj:1.1.2.2
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/libDiskThreads/libDiskThreads.vcproj Sat Aug 22 17:39:06 2009
@@ -0,0 +1,195 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Index: squid3/port/win32/libbasic/.cvsignore
diff -u /dev/null squid3/port/win32/libbasic/.cvsignore:1.1.18.3
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/libbasic/.cvsignore Sun Nov 20 21:10:11 2005
@@ -0,0 +1,3 @@
+*.user
+Debug
+Release
Index: squid3/port/win32/libbasic/libbasic.vcproj
diff -u /dev/null squid3/port/win32/libbasic/libbasic.vcproj:1.1.2.3
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/libbasic/libbasic.vcproj Sat Aug 22 16:53:00 2009
@@ -0,0 +1,193 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Index: squid3/port/win32/libc/.cvsignore
diff -u /dev/null squid3/port/win32/libc/.cvsignore:1.1.10.3
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/libc/.cvsignore Sun Nov 20 21:10:11 2005
@@ -0,0 +1,3 @@
+*.user
+Debug
+Release
Index: squid3/port/win32/libc/libc.vcproj
diff -u /dev/null squid3/port/win32/libc/libc.vcproj:1.1.2.3
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/libc/libc.vcproj Tue Apr 25 14:14:12 2006
@@ -0,0 +1,209 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Index: squid3/port/win32/libcc/.cvsignore
diff -u /dev/null squid3/port/win32/libcc/.cvsignore:1.1.2.3
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/libcc/.cvsignore Sun Nov 20 21:10:11 2005
@@ -0,0 +1,3 @@
+*.user
+Debug
+Release
Index: squid3/port/win32/libcc/libcc.vcproj
diff -u /dev/null squid3/port/win32/libcc/libcc.vcproj:1.1.2.4
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/libcc/libcc.vcproj Sat Aug 22 16:38:24 2009
@@ -0,0 +1,199 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Index: squid3/port/win32/libcompat/.cvsignore
diff -u /dev/null squid3/port/win32/libcompat/.cvsignore:1.1.2.1
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/libcompat/.cvsignore Sat Aug 22 20:23:42 2009
@@ -0,0 +1,3 @@
+*.user
+Debug
+Release
Index: squid3/port/win32/libcompat/libcompat.vcproj
diff -u /dev/null squid3/port/win32/libcompat/libcompat.vcproj:1.1.2.1
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/libcompat/libcompat.vcproj Sat Aug 22 20:23:42 2009
@@ -0,0 +1,223 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Index: squid3/port/win32/libcompatc/.cvsignore
diff -u /dev/null squid3/port/win32/libcompatc/.cvsignore:1.1.2.1
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/libcompatc/.cvsignore Sat Aug 22 20:23:42 2009
@@ -0,0 +1,3 @@
+*.user
+Debug
+Release
Index: squid3/port/win32/libcompatc/libcompatC.vcproj
diff -u /dev/null squid3/port/win32/libcompatc/libcompatC.vcproj:1.1.2.1
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/libcompatc/libcompatC.vcproj Sat Aug 22 20:23:42 2009
@@ -0,0 +1,207 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Index: squid3/port/win32/libcoss/.cvsignore
diff -u /dev/null squid3/port/win32/libcoss/.cvsignore:1.1.18.3
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/libcoss/.cvsignore Sun Nov 20 21:10:11 2005
@@ -0,0 +1,3 @@
+*.user
+Debug
+Release
Index: squid3/port/win32/libcoss/libcoss.vcproj
diff -u /dev/null squid3/port/win32/libcoss/libcoss.vcproj:1.1.2.3
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/libcoss/libcoss.vcproj Sat Aug 22 16:53:00 2009
@@ -0,0 +1,201 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Index: squid3/port/win32/libdigest/.cvsignore
diff -u /dev/null squid3/port/win32/libdigest/.cvsignore:1.1.18.3
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/libdigest/.cvsignore Sun Nov 20 21:10:11 2005
@@ -0,0 +1,3 @@
+*.user
+Debug
+Release
Index: squid3/port/win32/libdigest/libdigest.vcproj
diff -u /dev/null squid3/port/win32/libdigest/libdigest.vcproj:1.1.2.3
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/libdigest/libdigest.vcproj Sat Aug 22 16:53:00 2009
@@ -0,0 +1,193 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Index: squid3/port/win32/libheap/.cvsignore
diff -u /dev/null squid3/port/win32/libheap/.cvsignore:1.1.18.3
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/libheap/.cvsignore Sun Nov 20 21:10:11 2005
@@ -0,0 +1,3 @@
+*.user
+Debug
+Release
Index: squid3/port/win32/libheap/libheap.vcproj
diff -u /dev/null squid3/port/win32/libheap/libheap.vcproj:1.1.2.3
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/libheap/libheap.vcproj Sat Aug 22 16:53:00 2009
@@ -0,0 +1,195 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Index: squid3/port/win32/libicap/.cvsignore
diff -u /dev/null squid3/port/win32/libicap/.cvsignore:1.1.2.1
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/libicap/.cvsignore Sun Dec 4 10:59:57 2005
@@ -0,0 +1,3 @@
+*.user
+Debug
+Release
Index: squid3/port/win32/libicap/libicap.vcproj
diff -u /dev/null squid3/port/win32/libicap/libicap.vcproj:1.1.2.4
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/libicap/libicap.vcproj Sat Aug 22 16:38:24 2009
@@ -0,0 +1,263 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Index: squid3/port/win32/libip/.cvsignore
diff -u /dev/null squid3/port/win32/libip/.cvsignore:1.1.2.1
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/libip/.cvsignore Sat Aug 22 20:23:42 2009
@@ -0,0 +1,3 @@
+*.user
+Debug
+Release
Index: squid3/port/win32/libip/libip.vcproj
diff -u /dev/null squid3/port/win32/libip/libip.vcproj:1.1.2.1
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/libip/libip.vcproj Sat Aug 22 20:23:42 2009
@@ -0,0 +1,193 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Index: squid3/port/win32/liblru/.cvsignore
diff -u /dev/null squid3/port/win32/liblru/.cvsignore:1.1.18.3
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/liblru/.cvsignore Sun Nov 20 21:10:11 2005
@@ -0,0 +1,3 @@
+*.user
+Debug
+Release
Index: squid3/port/win32/liblru/liblru.vcproj
diff -u /dev/null squid3/port/win32/liblru/liblru.vcproj:1.1.2.3
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/liblru/liblru.vcproj Sat Aug 22 16:53:00 2009
@@ -0,0 +1,187 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Index: squid3/port/win32/libmiscutil/.cvsignore
diff -u /dev/null squid3/port/win32/libmiscutil/.cvsignore:1.1.18.3
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/libmiscutil/.cvsignore Sun Nov 20 21:10:11 2005
@@ -0,0 +1,3 @@
+*.user
+Debug
+Release
Index: squid3/port/win32/libmiscutil/libmiscutil.vcproj
diff -u /dev/null squid3/port/win32/libmiscutil/libmiscutil.vcproj:1.1.2.13
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/libmiscutil/libmiscutil.vcproj Sat Aug 22 20:23:42 2009
@@ -0,0 +1,732 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Index: squid3/port/win32/libnegotiate/.cvsignore
diff -u /dev/null squid3/port/win32/libnegotiate/.cvsignore:1.1.2.2
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/libnegotiate/.cvsignore Sun Nov 20 21:10:11 2005
@@ -0,0 +1,3 @@
+*.user
+Debug
+Release
Index: squid3/port/win32/libnegotiate/libnegotiate.vcproj
diff -u /dev/null squid3/port/win32/libnegotiate/libnegotiate.vcproj:1.1.2.3
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/libnegotiate/libnegotiate.vcproj Sat Aug 22 16:53:00 2009
@@ -0,0 +1,175 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Index: squid3/port/win32/libntlm/.cvsignore
diff -u /dev/null squid3/port/win32/libntlm/.cvsignore:1.1.18.3
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/libntlm/.cvsignore Sun Nov 20 21:10:11 2005
@@ -0,0 +1,3 @@
+*.user
+Debug
+Release
Index: squid3/port/win32/libntlm/libntlm.vcproj
diff -u /dev/null squid3/port/win32/libntlm/libntlm.vcproj:1.1.2.3
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/libntlm/libntlm.vcproj Sat Aug 22 16:38:24 2009
@@ -0,0 +1,193 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Index: squid3/port/win32/libntlmauth/.cvsignore
diff -u /dev/null squid3/port/win32/libntlmauth/.cvsignore:1.1.18.3
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/libntlmauth/.cvsignore Sun Nov 20 21:10:11 2005
@@ -0,0 +1,3 @@
+*.user
+Debug
+Release
Index: squid3/port/win32/libntlmauth/libntlmauth.vcproj
diff -u /dev/null squid3/port/win32/libntlmauth/libntlmauth.vcproj:1.1.2.3
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/libntlmauth/libntlmauth.vcproj Sat Aug 22 16:38:25 2009
@@ -0,0 +1,211 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Index: squid3/port/win32/libnull/.cvsignore
diff -u /dev/null squid3/port/win32/libnull/.cvsignore:1.1.18.3
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/libnull/.cvsignore Sun Nov 20 21:10:11 2005
@@ -0,0 +1,3 @@
+*.user
+Debug
+Release
Index: squid3/port/win32/libnull/libnull.vcproj
diff -u /dev/null squid3/port/win32/libnull/libnull.vcproj:1.1.2.2
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/libnull/libnull.vcproj Sat Jan 1 11:14:55 2005
@@ -0,0 +1,191 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Index: squid3/port/win32/libsnmp/.cvsignore
diff -u /dev/null squid3/port/win32/libsnmp/.cvsignore:1.1.18.3
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/libsnmp/.cvsignore Sun Nov 20 21:10:11 2005
@@ -0,0 +1,3 @@
+*.user
+Debug
+Release
Index: squid3/port/win32/libsnmp/libsnmp.vcproj
diff -u /dev/null squid3/port/win32/libsnmp/libsnmp.vcproj:1.1.2.3
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/libsnmp/libsnmp.vcproj Sat Aug 22 16:38:25 2009
@@ -0,0 +1,515 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Index: squid3/port/win32/libsspwin32/.cvsignore
diff -u /dev/null squid3/port/win32/libsspwin32/.cvsignore:1.1.18.3
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/libsspwin32/.cvsignore Sun Nov 20 21:10:11 2005
@@ -0,0 +1,3 @@
+*.user
+Debug
+Release
Index: squid3/port/win32/libsspwin32/libsspwin32.vcproj
diff -u /dev/null squid3/port/win32/libsspwin32/libsspwin32.vcproj:1.1.2.3
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/libsspwin32/libsspwin32.vcproj Sat Aug 22 16:53:00 2009
@@ -0,0 +1,235 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Index: squid3/port/win32/libtrie/.cvsignore
diff -u /dev/null squid3/port/win32/libtrie/.cvsignore:1.1.2.3
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/libtrie/.cvsignore Sun Nov 20 21:10:12 2005
@@ -0,0 +1,3 @@
+*.user
+Debug
+Release
Index: squid3/port/win32/libtrie/libtrie.vcproj
diff -u /dev/null squid3/port/win32/libtrie/libtrie.vcproj:1.1.2.3
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/libtrie/libtrie.vcproj Sat Aug 22 16:53:00 2009
@@ -0,0 +1,199 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Index: squid3/port/win32/libufs/.cvsignore
diff -u /dev/null squid3/port/win32/libufs/.cvsignore:1.1.18.3
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/libufs/.cvsignore Sun Nov 20 21:10:12 2005
@@ -0,0 +1,3 @@
+*.user
+Debug
+Release
Index: squid3/port/win32/libufs/libufs.vcproj
diff -u /dev/null squid3/port/win32/libufs/libufs.vcproj:1.1.2.3
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/libufs/libufs.vcproj Sat Aug 22 16:53:00 2009
@@ -0,0 +1,201 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Index: squid3/port/win32/mswin_auth/.cvsignore
diff -u /dev/null squid3/port/win32/mswin_auth/.cvsignore:1.1.2.2
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/mswin_auth/.cvsignore Sun Nov 20 21:10:12 2005
@@ -0,0 +1,3 @@
+*.user
+Debug
+Release
Index: squid3/port/win32/mswin_auth/mswin_auth.vcproj
diff -u /dev/null squid3/port/win32/mswin_auth/mswin_auth.vcproj:1.1.2.2
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/mswin_auth/mswin_auth.vcproj Sat Aug 22 16:53:00 2009
@@ -0,0 +1,234 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Index: squid3/port/win32/mswin_check_ad_group/.cvsignore
diff -u /dev/null squid3/port/win32/mswin_check_ad_group/.cvsignore:1.1.2.1
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/mswin_check_ad_group/.cvsignore Fri Jul 11 10:03:16 2008
@@ -0,0 +1,4 @@
+*.user
+Debug
+Release
+Makefile.in
Index: squid3/port/win32/mswin_check_ad_group/mswin_check_ad_group.vcproj
diff -u /dev/null squid3/port/win32/mswin_check_ad_group/mswin_check_ad_group.vcproj:1.1.2.2
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/mswin_check_ad_group/mswin_check_ad_group.vcproj Sat Aug 22 16:53:01 2009
@@ -0,0 +1,207 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Index: squid3/port/win32/mswin_check_lm_group/.cvsignore
diff -u /dev/null squid3/port/win32/mswin_check_lm_group/.cvsignore:1.1.2.2
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/mswin_check_lm_group/.cvsignore Sun Nov 20 21:10:13 2005
@@ -0,0 +1,3 @@
+*.user
+Debug
+Release
Index: squid3/port/win32/mswin_check_lm_group/mswin_check_lm_group.vcproj
diff -u /dev/null squid3/port/win32/mswin_check_lm_group/mswin_check_lm_group.vcproj:1.1.2.2
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/mswin_check_lm_group/mswin_check_lm_group.vcproj Sat Aug 22 16:53:01 2009
@@ -0,0 +1,229 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Index: squid3/port/win32/mswin_negotiate_auth/.cvsignore
diff -u /dev/null squid3/port/win32/mswin_negotiate_auth/.cvsignore:1.1.2.2
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/mswin_negotiate_auth/.cvsignore Sun Nov 20 21:10:13 2005
@@ -0,0 +1,3 @@
+*.user
+Debug
+Release
Index: squid3/port/win32/mswin_negotiate_auth/mswin_negotiate_auth.vcproj
diff -u /dev/null squid3/port/win32/mswin_negotiate_auth/mswin_negotiate_auth.vcproj:1.1.2.3
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/mswin_negotiate_auth/mswin_negotiate_auth.vcproj Sat Aug 22 16:53:01 2009
@@ -0,0 +1,212 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Index: squid3/port/win32/mswin_ntlm_auth/.cvsignore
diff -u /dev/null squid3/port/win32/mswin_ntlm_auth/.cvsignore:1.1.2.2
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/mswin_ntlm_auth/.cvsignore Sun Nov 20 21:10:14 2005
@@ -0,0 +1,3 @@
+*.user
+Debug
+Release
Index: squid3/port/win32/mswin_ntlm_auth/mswin_ntlm_auth.vcproj
diff -u /dev/null squid3/port/win32/mswin_ntlm_auth/mswin_ntlm_auth.vcproj:1.1.2.2
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/mswin_ntlm_auth/mswin_ntlm_auth.vcproj Sat Aug 22 16:53:01 2009
@@ -0,0 +1,234 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Index: squid3/port/win32/pinger/.cvsignore
diff -u /dev/null squid3/port/win32/pinger/.cvsignore:1.1.18.3
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/pinger/.cvsignore Sun Nov 20 21:10:14 2005
@@ -0,0 +1,3 @@
+*.user
+Debug
+Release
Index: squid3/port/win32/pinger/pinger.vcproj
diff -u /dev/null squid3/port/win32/pinger/pinger.vcproj:1.1.2.5
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/pinger/pinger.vcproj Sat Aug 22 17:02:08 2009
@@ -0,0 +1,273 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Index: squid3/port/win32/setup/.cvsignore
diff -u /dev/null squid3/port/win32/setup/.cvsignore:1.1.2.1
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/setup/.cvsignore Tue Jan 22 20:24:50 2008
@@ -0,0 +1,3 @@
+*.user
+Debug
+Release
Index: squid3/port/win32/setup/Setup.vdproj
diff -u /dev/null squid3/port/win32/setup/Setup.vdproj:1.1.2.2
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid3/port/win32/setup/Setup.vdproj Fri Jul 11 10:03:16 2008
@@ -0,0 +1,11743 @@
+"DeployProject"
+{
+"VSVersion" = "3:800"
+"ProjectType" = "8:{978C614F-708E-4E1A-B201-565925725DBA}"
+"IsWebType" = "8:FALSE"
+"ProjectName" = "8:Setup"
+"LanguageId" = "3:1033"
+"CodePage" = "3:1252"
+"UILanguageId" = "3:1033"
+"SccProjectName" = "8:"
+"SccLocalPath" = "8:"
+"SccAuxPath" = "8:"
+"SccProvider" = "8:"
+ "Hierarchy"
+ {
+ "Entry"
+ {
+ "MsmKey" = "8:_00B39FDAF8804AAAAA8CFE66265833B9"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_017F58C46A454238905BD60099E70E30"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_018C85FF2BA24BAFAB6D0E63637E461B"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_02BEA726672F47169B381802CB7FFF26"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_02CC907151504068B492B87ADACCC1DC"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_036394E4422645D893E884E0B95B2DCE"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_037DE327524C46EFA3B18E912C8C163A"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_04BBFB8F2A7A4FFC96BA1D1687B33691"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_04EB8EF872BC40E8953AC2A1B070FEB2"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_050C7E9CBDD24D1B857EE0E0F4A49DFB"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_0530478AB8B1403DAB6BDBDB00962138"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_0558B9DF5CEC43958EF182A4E10D84DB"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_0577E4AD1EDF4147B49B011D3BED2589"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_05809AEA2C174CB18CDB0D2E60BF7D00"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_069269C987F24F648ACCBF3EE2241639"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_06C7489E0155425AB10CB1CBAA0CA8C7"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_07E6436E193D462086E90EC138256CEF"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_0891CB4A306243508D9FE6BA767E7A56"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_08957F88D95D49BF9EC38672D5810F8A"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_09BEE976F51C4451A65A70AE3035234E"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_0A6DEF006BF24EFEB396D047874B4D7A"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_0AD482290D7545E5B22E5B33074A79E5"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_0AFB16CC6BB94BEDBC992A616222DCBA"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_0C9FB7D0E2DC41699777C4A867CE31C8"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_0D52604A417F482787C37F61119A9020"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_0F68D5B5881743B0AB36C300C775DF6B"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_0FD35EF75C454A3983C0C25D287D20CA"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_106B6A3AE99A41978147704660EABAD4"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_10EBCED9D2F94CCB8A29247760F2D029"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_11057A08B295478DA4AAED862E948976"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_11ECB4AF6DE6430B822801EE885BF5E9"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_12364AAAEF074967A44E22A7DDF88175"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_12FCC64795D9451D913196F4C01378DA"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_13D16070CAD54D5B9239C12FC7E3B0C7"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_15E9A28ABC9047AE943816D9C8D7CA10"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_186D0E3591FE428BA5E6A90F80C92C18"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_190342BCE4BA462492D20CF222E10BAC"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_1A162F0DDC594A409F594F4AE17F0E2C"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_1B444EB9EA3E47CE8D501715906385F7"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_1BA19E2C4794463A891627969157A01B"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_1BF3629D7E2045E0908A2943D5AC300A"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_1C1F676D2DFC40FB9DB63D231D966ACA"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_1C8396E13B4C4B0CA7D5755869127863"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_1CE0388A4BD54B4AAE4C169A16E80538"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_1D1770CCD704475A9ACB0DEF85AAFFDD"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_1D2EFEDAD7DE4934BFA75D9C1F19AE48"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_1D409FA1D8C8474289E1E1C6894E23C3"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_1D927BFA8A954814B7A59A85A3E7E886"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_1EB692D8F012475183AA542E5F3C793E"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_1EE7974FEE0A40B69E575116A0DBE1A5"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_1F4A70E92521458395D5DF2F5BEFE9B3"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_2008D68988B14F19B8A047231DDF7D22"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_211A9C5E14974692AA78FD43C0C1DF13"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_226426F146014F66A8ADF8FDEE7500F4"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_2276B140B48F482995163E029D71BF62"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_238E18B9DC0345EB9D3B2F8BE306A643"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_2393382595324AEE9757C719C5888446"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_27543A2A0A0F4F6EA02DD8B69ADB53E3"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_27EC0E5B61DD4266B402FC4FF4F51B12"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_282B98E535854CB2A1EAE025830A3D64"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_28650DFB41234CBDBAA0EB3D433FB019"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_286666804B9C48A9ADFB41994E0B2D1F"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_288BDA4108334181AE5979001D3EEEC0"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_28A43A935DA646C28FA8F2EA7EA69BE5"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_290B5B9BF6EA4E189B5D7C078BC46925"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_2985C12672E940F3B1B3B4EB6CFD9F21"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_2999FCBD56624FC1A8C3C56528DBBC85"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_29D40F498BF64A40AA8432E9D4D54CF5"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_2A2960B9D6C64BAD9E3580DA175AA365"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_2AA5CA9FC0BA4AEE80ACEAF1B858F522"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_2AF04397DA2F4B8BA342DD9144A993E2"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_2B03110555B440AA98A503D08ED0E003"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_2B7F047F5A5E4809A02621FFD619A5FD"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_2B80CC33F7304BB0B313BD5CDCBB29E9"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_2C1FD320C4B14512A67614A10388F524"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_2C39EADCBAA246C6BABBE0D34AE13D15"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_2C70158C03FC4C6A8559BB31017B3130"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_2C72A2D57D944BB2909253324525339D"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_2E5E34B80E2C4CC69B6ED5CEC68E6C06"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_2EB3AC8E86E549DF95AF43DCF8F80F6C"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_2ECE186228BC4E3DA4DBAA07F1307CA3"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_2FB15D592C774D83A78451E3EF6F8EE4"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_2FD9F78220CB54015100446FBC902A95"
+ "OwnerKey" = "8:_7C0CF57587014349B723ABBB89322079"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_31E4D6BECDBE484FB26A71E67DC899B5"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_31F3A572C42B4FB7AC91BA350D91CC64"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_31F439AAC4914BE2A398CF39FF66D862"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_327F77164DC44377B32F54895F4DB6DE"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_3296AF986E1843A18AB7914DDBDA5A52"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_32EC5CAEABA9473C8D025753A0B00D9F"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_3329DEDD678D4EFAB1915467DEDA05FA"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_336B034CE9434C7290CC095E1F93AB47"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_33CE8D2E0A1F4628B3B52440D050453E"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_33F419376BD6478BBE1A46F151A11BF8"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_34DF2AE40B414882ABC209CE78D688F7"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_3541794D8B034FC0999C5620AD18772E"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_35FDF45E6AFB4F3DBB6A310210B59592"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_368ADB3C35784CE2AE3B9047F60F7121"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_368CC15B19874C0A9659E1D57F3A8B70"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_37A80FD1C69B46C2A2A4A7D66A51B30A"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_3805D14935854918882BCF45141C6CB2"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_38E416A7439A46C69CF0F914C60E7797"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_38F7A11926ED440E9D631E5B638AB48A"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_393DC3F861DF4D318862EDD2AC4A7B43"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_3ACFC46CA5B04CCDB30311760C62586B"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_3B69FFFDF967424E9233314B04F2675A"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_3C754FD24BB84E85B28D9B6177124AF8"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_3D2960B2336D4D04A1B1DC664AFA1CED"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_3DC3984E4C6E40B1B8B1B63E2525BDD2"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_3DD630543EB248B39D8EB8915AF34578"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_3EAC42D010CF4C0794640588E46A3E0A"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_3F57CDC17F144D5382D2D2F35C283095"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_3FC02EBE9BD8400F8C9DE5F2F21331EA"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_404F630F69864E6B88C719493627685F"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_4099E196F6FA4CF6B441CAB160B0A91A"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_40AD467626E24EE69EE381CE795C22A0"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_429CDA1CA6EC497D9CE1EF9373BE449E"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_42FC52E79A694B1287F9DFD48FA11D87"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_4464A1B8AAB2435191FB640B2E1971FA"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_44A1B570B3FC4E6FB697845EF1108375"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_4715DA7F775240FCB4C52953A6FA055D"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_4870889BFB17432EB74D09F7808A57D1"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_48C2FEE969B14007A0EE97C77BF16569"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_4C22A8CCABAC4B1097D3146358BB118C"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_4C2C7965A90B47D7BE5064F427137463"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_4C703876D55B46FE9AE56FE41396ACA3"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_4E14D993B79C4623885872E9FCD646AC"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_4E2299D8ACDE45FFB795FC461FDC5EEF"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_4F160FA03AB14068B166872DC2693663"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_503D836015E44D848F89A871198D47E9"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_50BFB6B5CB424F489B0089048C89F123"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_50DDC97074E34434B66FF8FDBAC15277"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_518787B89133496BBD0086E84E4A39BC"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_52BF3CA944B244C2B0CBCA98E395A2CE"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_53119DE0CE164ACEA1F30C7303E27A78"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_53B0C4D887124C18908917F5A0DE8CF1"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_53D846B3BAA14977ADD601A262D2AECB"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_5524801C6133496B9CD4D41344F7D59D"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_55A51408AB2D41548C056FD133F73A3A"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_56571DF92FE24EC69A65EA2C91DC1DF9"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_5664D711CBEA44A487963D830448EE3C"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_56CBBCA26A9248A6A2DBA9FF96DAF5EB"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_57451185C32846348277397A046FF93B"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_575889C681FB4C2081A885CA9C6E75D0"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_57D45C4C608247BBAA88C8EAF6C05054"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_581C95D4E71946E09CADA48E8E63DAC5"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_587AC18A8598403481D9B58D51D4BA5C"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_59CF78331EFF4781BA96060DB8BE249A"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_5ACA944B7C5D49D1A94391FDF0AF4E00"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_5BCC5FF89A7B4D1EB2D09B14BD335F70"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_5D3185F7051D4625A929BA3DDED2660A"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_5E088ADACA1A42549162412126FFB236"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_5E2CD06116C24AA0967B037FF73EE6A8"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_5E5B9DC60711470E8FF93CD88AFB993D"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_5E684806EC344D2ABA9D219F8954BD59"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_5F3F9F5EC9E345198A7A78F025B4D4C0"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_5FCD819BF1C143D4A51A80FC3B6C5A40"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_600850FF375548E59929285A2CD10F8A"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_60BD751289174787B1DFBEE32C7F638F"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_60E4A522FBBA486CBD23E88709FF9BCA"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_60E69955EB2C4EFEA20AEA2EF8D8DD99"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_61C6DF1F57EF4589889DB57D4819609D"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_623E45C90EFB484A80923E6FB03E36A5"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_6293193395DF4E428907F6048CEB8508"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_62A61372C6B14E75BA0DFB0FCF26DEB4"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_62C51B0E29364489B61D541533522BFF"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_6317D925D5124AA69516F3372F9EB2FC"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_6502F74D62224D1091E97DBB4D4DB7F3"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_651EA4D45DBE44F8A4353C3B566EE0D0"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_6638716D2B7645849398CB2B3B95ACAF"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_67A1286E22474C829DD7128F29A2DAE8"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_67B781ECB57B480989C23B649BBE7B81"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_686260027D734216B12F15818B681CD9"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_68673136F1434293ACB7FA089E02075C"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_68A01C0E1033413396399CC3D59DA486"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_6A8E000D4A54478EA077416B8BE62558"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_6B84CCDD12A247058046AD82EB5DA1B0"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_6DC662D53C2D4FFBB6752F8094851814"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_6E808CE3864844FD93B0E19B53108B57"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_6E9C915080734881BFCD1C67035EF544"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_6F03DF358CB6413FAE648D13B98A7026"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_6FAEABF9ABAA4419ACAC75898FDEB188"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_6FD78BD7D6AA44DC84C4DC744FB068B1"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_718B39E2B2FA485F8007737E3C72E3EB"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_71BFD28EB6074B4F9CF54950759FCB15"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_734411021E924923946B91810A300441"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_74175C38E4A34927AC2953D961D34375"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_74A2B418C8114397BE00DAE04BB56C49"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_7521388520A3472AB4336827013399E6"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_753C3993CD634BFCAB1561AD728AEB60"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_75E411A9E9074083AD87245B1D91C452"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_75FA363C15514DA4A978E3E67F5F90F2"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_77F254EB73B34224848E42968C9054FF"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_7867F22BF81C4CB1B174E67C05B3708D"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_7953E1363C354686B861A8BD8816AD2A"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_79CF840294364773B892E9BC09F54796"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_7A0E3842FD2A4F7F952EDF5DBCAFE167"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_7A5E8E75F9AA41BFBEB4F68961C7402C"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_7AA534AFA32D4B849DED8DB933D84F92"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_7B7194F105DE4BBBBD379FD3905E7062"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_7B900E1E03A24B54BFD4BFF6598772E5"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_7BE4967D5D9E4A019D3601641F0B41ED"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_7C0CF57587014349B723ABBB89322079"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_7C1D52E313AE408CA5A1C3D1F4280F60"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_7C2A9111D7BB4D4985CF789FC4FD6D09"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_80765F7C81834C0E99D815122010CE71"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_809AE12D8D8045C28DE0199159234F2F"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_8190B162D14743349113F173B2E28A30"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_81FECD8B328C4F799ED4632A70FF90D2"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_82795C4150B1453991F0DC7CF63E4B29"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_82AC2C73A05E44C99E29D4933D80689B"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_82E849B3F2F041019988540FDBC374A6"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_84D1B1FDB0FF45E8AFF60BA9DCCFAFAE"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_857599F8BFFF44A48B6E1B9562B2F501"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_85BCA211065E43E586BB3B817A77E540"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_86B43259E908427081FC4BA97782A490"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_86B5B6195D5F49B9B6D0251A6B5F37AD"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_86F0BC5EAB3042D78EDD967B72D23886"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_876FCA68960B4E03BC91C157AE546758"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_88DB431D144D49AB8412EB36D9B7B70C"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_8929CE4E4F204707AD940A1194FF7994"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_896DC0451FB04CD5ACCA2B39C76D9ADA"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_89AEB061FAF34DF89E6B516338034E67"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_89C7FE7EC1D94870ACB1F85F7A2E2102"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_89DE43BD5D6944EB9EFC5087F0289FD9"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_8A500B06A1C54EFEAAB2326454077EFB"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_8AA2C6316D444FA2B3DC427065141EBB"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_8ADDEF5ED3B74E7E82B63BAA7941EF04"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_8BA95BC5C36C490EA7AEA9FAC0ADEEE1"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_8BF433C4425E49CF8A252D071993586E"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_8D27092D14AB4D499990619FCD67F929"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_8D602A14C835476798374B1E35297E63"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_8E766CBD6A9A4A0684AF6C248F285296"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_8E7F3DD11A364322A3FE832C2C31E4A6"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_8EB38C7466A04C0D838DAB24B8C3CEEF"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_8F323179AD86404386E530BF3617FD46"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_8FB4AC9C70AA4C29955EC623AD25E9B8"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_90505BC8D713427BA5A17D4075727AD3"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_912FEBB21F1A46C3BB4B8FF4E5A65583"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_929BCE0667CC44C789B97A2A70971AE8"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_93D4A95621F34F7AB893E1E2856CEFB2"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_94DCE39C3432414B8163BAB3BFA135ED"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_95AA2CA9DD32491684A9E4B2F0E6A54D"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_95C6E0F60124486AB2B13EC8BEDA64FA"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_95DF76E05C5B490497BF7FF331A9A1B5"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_97814EC67A64482292599932080921BE"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_99F967C1DE1F444A8EA8D98AEEF34873"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_9A22EAD4F8044BB7B978671578C5FEA5"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_9A68FA996E72477C9B25783B97E8F7F1"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_9A905A2F87C842A58BE64B1519696395"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_9AB7EEF228D040718A95EB7D6898E1D6"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_9AF60149CE6D4985B27E4456DE89BFBC"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_9B16D4902F1A48179CA267F0187BF43A"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_9B39C740C0BF4953BD6C774728E35888"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_9E15D015CC7C4C4A8C5683EE1E63557C"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_9E5508FA5DC84364B35BADDC1B5E3433"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_9E9A2F1CF6EA4DC59A7A023428309BEC"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_9E9E1B281F4E4901B050BB1495552DEE"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_9EB28F28B1A34638888A32B998102C80"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_9EB94221835D4E4E896538C5E468CD84"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_9F72E4EDE80E4E50847E9A27FE812C7F"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_9FB4D99BE6EC48F9BCCA62AD9AD02653"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_9FF32C453A6048D08DF4905B3DEB087C"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_A081D11787404E3EA2D310AB968137FB"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_A0833734E49C4CB1821E46947A6457AC"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_A0B47F6DB0DD4A6FB628FC8701899453"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_A345A47C6BE54BD19535735D76C45B78"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_A3FB928563BB44949D5D4DA5E05E1111"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_A56023BD55164160B40A54A08AB6D797"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_A5CD8DCABAE440B2B99858E47AB74761"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_A6518B4883204F96A1F09E96D65D126C"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_A67D014D41784182BFF5DE4663CBCF1B"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_A6BCAEC6F1A3484CA7DB8C32EA46567B"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_A9B329EDA36547B78E222D75C8E4EC10"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_AA036A112DB64F84BA202731D1E9F2FD"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_AA4FCE4C91ED415C9D93B32C3CBCE966"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_AACE36D3F24E4D9F9985DA240D37560D"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_AB362D9294F343208DC55AFA6CB69670"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_AD9C10E9AE3B44858A12EA7FC544A52A"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_ADB9D753678541529060957AB67C360B"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_B07221CDFC3E494CBC3C13B333618141"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_B0F93D3B2D9A466EBD43AC13FFC2073A"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_B20EB1AB704F488D80A6D5E4F285F122"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_B2EAF50253244A86B868C0AA7E784DEB"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_B33B98656F5F4C36A60DAAEA7FF92B17"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_B45286F290D34F97A35532E42E12D21C"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_B4AB3A772C014CF9B683FBC55EE3FFF8"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_B6178C776B2D433890E10883C6695035"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_B64299F75BB644BF85C219115230A506"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_B6DBE8A9F1024949A9FE0AE3D88A6F87"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_B6DD54B4957B4A43B78D3F7EE7444819"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_B74AB898B4824E5D8B9B1472DF203513"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_B94E63EB563341538BAEA9BACA1842E6"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BB087A4B223F4A76912CB23946AD511D"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BB3E1C447CD04CD8A7B364DFA80ADA4E"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BB6B93A829D547CCB982F70E21C55E5F"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BBF4F9669D1042F2B1B7BFC58FAC67D3"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BE228467CD194D3090BBF155B9A494D5"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BE24D8BFA21E43BE8618956CC790912D"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BE4090FE5D7D448FBA56B179223C83C0"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BFF32EA4A6A94BB4A4977BB92C20F943"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BFF5BA65BB6B412699166D0028CD3D54"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BFFC1BDF186244EF8A19D9A7FEC53619"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_C006B89E16BC44F1B96BED1EABA9AD20"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_C05E09BD0AB14389979402F9C34503AB"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_C1AAC990FD9D4D23A9D46F97FB153440"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_C22593E2415441ECB5AA10AFE2F0731E"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_C3D0B7599BA342C99342A92B64C7696C"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_C415E63110C0453797E6CE50520304B2"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_C5938223F854415C8CB1202CE0132655"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_C5FF7387FE2C45D5B3AA5112E6ED69EB"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_C64EF168433544CC956F836C6CB390B6"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_C6ABF73A983B473D94267A3AD26A4193"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_C6C6F8BE011349EB99BE9B36785B6AC4"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_C78136FB89C3410F9D8C38C5432FC14D"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_C78BE9BD1F3943F8A291F657D25A5838"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_C8E6CFFE0DBD4B398025F15136B6345B"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_CA51C34D9A1E49869F0BD134D96F81F4"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_CB3A99F60FB6448DA0AE74692B81B59B"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_CC1E9616992E4AE6A5BE16D48B630670"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_CCDD2CFAB4EB42F2B9D7EA5F936928D4"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_CD2A9B34E29743E8B5706825BB886FEB"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_CD2AD21364C146968D777DBBF22D5B2C"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_CE5C511B229C4F1396A6C2167C192630"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_CE76AE0F757542AC9A087169AF2EB18E"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_CEBAFB92C3F84859B19773D41E71FB26"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_D204ED98174A4115A22BDA6D76D299D2"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_D23982180E7546ACAF564997C1C9EC08"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_D29431FA3AB14C7F8389E9F1D9DE00F7"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_D362F58A95D242F8B7D4928784426038"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_D3A57263B32149BFBEF0B7FF8998EF72"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_D3CD4C8521C34E8B834A538C0AB1097D"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_D3D671A9E6FC4532AA4F7CD47C25F2F3"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_D457A3F557BB4A569329C9FEB6C51BA5"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_D4BC34E978364E0298B0BECA014966B2"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_D4E47F842EA44A61BC0F94FD81734578"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_D5328C3AF81748B08A7A530593923A40"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_D608446091F14B6EA84B8CE06B892B7E"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_D6729EBEF5AB40C7A00FEB39AE24E319"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_D690D06ED49240CE9267BC79E63C131A"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_D71D0B7F37024EDDA4A8A04277799189"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_D7A7556986634059904A02924765F253"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_D7C0EF8B15454C62920E982638DEAC19"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_D81917D52E844BE8B80B63E10897B188"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_D8A33CA3775D459692889E826DB15FF0"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_D8AD7749DC9F4995948792B0D2B62074"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_D9C233D3758A4398AC63365F8944F929"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_D9FC4E226EB742E48B12D24C851733D3"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_DAEC75A0BB604ED69BB0806409FF4EC6"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_DB0DE8DD5ABF4756BE0AB18A1318D2A5"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_DB4A604B4E57432FBB2EDF7B6C5FEE36"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_DC1A15C9C7894FBD896BE1F0BF5B059E"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_DD8852F610F34287A34A26B806615581"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_DDD33C2D8ED04CDDA424CD35E5036FA4"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_DDEA8A6F83E34CCEAF8A4887EDBEF192"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_DFC394EFFF8D4FBF84CAAB645767EC67"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_E0068D86C03A48D5918C5CBE4A0872BD"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_E0128B812CB84A2CB129F94EDB9D70B4"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_E0A8B858BC3F449DAD89CD78C2051E75"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_E20D297EA516458E9602A2099E7D583D"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_E20FDA171BED45DA9B3453CFE71FF408"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_E2106E566E8E453EAE2762733E393249"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_E30D402C6B2E445AABA0EFE234AE5D16"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_E4458F8555504C709BB313C63E54DAE6"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_E601513B0A864681804472F0A3DE3403"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_E61585EB30CC40139E127CEFBF311495"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_E727F566C8784A159D4BDD4059EB9295"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_E73DDB04FCCE4C949C5A6776C5A08154"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_E7CE3F90EA4C456CA0FE3D80F8F64EC4"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_E85512789D504E0AA68555BE644C7902"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_E8B37F9F986E442DB796C434C367C2FA"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_E907AF9000E04A549F59F7D62C340A1B"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_E933E73FEC9743EFA69F3AC3498195AE"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_EB26702DD7DD42DBB6F2B08EF4C36292"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_EB32FB8E7F28425D903AB6C35430B6A7"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_EB9FB97D11EE474EB0BF61B77CFC0969"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_EBCEA37C1960429EA3278C054757CD03"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_EC466FF0CCD64AEFBB0A62733CF23A8A"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_ECA3BBF606C04C4EA752236E63DC04C0"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_EF73B534B24E4006912E6D69CFF8DAED"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_F0AE6606082247A9A526242E50302213"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_F0BF0929FF5C4C00925E71701AE6E736"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_F1BFFC6825AE4948A86723F037B71ECA"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_F23ABDAB3991451F94C4E285934BA130"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_F2A0E89CC90C40BE8C04F11B58526449"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_F376875971C342BF9D82099635094712"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_F405EF1B0FCE4049A81597C797DB0B36"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_F44BAC2E4BBF4927AAF2EAF4E8A7F838"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_F5558F611C0146C0B6C38AA6108BBC5C"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_F558A09DBAB247A2B8DCD9A4A44B1514"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_F5619055FB3541859C00EAF4F7048FC9"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_F5BAD5D6AF4D4DC9AAE75A24501475CB"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_F67854EC9E794C3FB8579DB3A49282E9"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_F7285F9AFE5E4B75B0477E87A796B84F"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_F742C4913B8946F4B62D1862ADB66048"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_F77B337E442343E19609D87CC659DBC2"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_F96D81A5E93441B6851F45EF93610602"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_FB023741FF22499FA0D2B5429414C7DB"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_FB69D09AAAFF45FC9AFB6813BDCD69A4"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_FB98A1FA070D45DABE7A0B5F5C978082"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_FB9B23769EDF428EB73F24254297C8EC"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_FBA62EAFCC2E4032A108C9C7ECCE7A6D"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_FCB4344BDA96410591ECA33D04986B28"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_FCBA05279FCB48AEAFE4BEE9D29B9E52"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_FCD915473BCD4C2591FCE63D80D92B90"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_FD1059B22486410B9F32A0EC5362D34F"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_FD17EB7EB1C74290899878235B059A8A"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_FD2E1276818545348224254D31C5BABC"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_FE3A9C8D907743BE984C4B17998184B1"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_FEF0F98F09BB4A33A38C7C95CF2F11AA"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ }
+ "Configurations"
+ {
+ "Debug"
+ {
+ "DisplayName" = "8:Debug"
+ "IsDebugOnly" = "11:TRUE"
+ "IsReleaseOnly" = "11:FALSE"
+ "OutputFilename" = "8:Debug\\Setup.msi"
+ "PackageFilesAs" = "3:2"
+ "PackageFileSize" = "3:-2147483648"
+ "CabType" = "3:1"
+ "Compression" = "3:2"
+ "SignOutput" = "11:FALSE"
+ "CertificateFile" = "8:"
+ "PrivateKeyFile" = "8:"
+ "TimeStampServer" = "8:"
+ "InstallerBootstrapper" = "3:2"
+ "BootstrapperCfg:{63ACBE69-63AA-4F98-B2B6-99F9E24495F2}"
+ {
+ "Enabled" = "11:TRUE"
+ "PromptEnabled" = "11:TRUE"
+ "PrerequisitesLocation" = "2:2"
+ "Url" = "8:"
+ "ComponentsUrl" = "8:"
+ "Items"
+ {
+ "{EDC2488A-8267-493A-A98E-7D9C3B36CDF3}:Microsoft.Visual.C++.8.0.x86"
+ {
+ "Name" = "8:Visual C++ Runtime Libraries (x86)"
+ "ProductCode" = "8:Microsoft.Visual.C++.8.0.x86"
+ }
+ "{EDC2488A-8267-493A-A98E-7D9C3B36CDF3}:Microsoft.Windows.Installer.3.1"
+ {
+ "Name" = "8:Windows Installer 3.1"
+ "ProductCode" = "8:Microsoft.Windows.Installer.3.1"
+ }
+ }
+ }
+ }
+ "Release"
+ {
+ "DisplayName" = "8:Release"
+ "IsDebugOnly" = "11:FALSE"
+ "IsReleaseOnly" = "11:TRUE"
+ "OutputFilename" = "8:Release\\Setup.msi"
+ "PackageFilesAs" = "3:2"
+ "PackageFileSize" = "3:-2147483648"
+ "CabType" = "3:1"
+ "Compression" = "3:2"
+ "SignOutput" = "11:FALSE"
+ "CertificateFile" = "8:"
+ "PrivateKeyFile" = "8:"
+ "TimeStampServer" = "8:"
+ "InstallerBootstrapper" = "3:2"
+ "BootstrapperCfg:{63ACBE69-63AA-4F98-B2B6-99F9E24495F2}"
+ {
+ "Enabled" = "11:TRUE"
+ "PromptEnabled" = "11:TRUE"
+ "PrerequisitesLocation" = "2:2"
+ "Url" = "8:"
+ "ComponentsUrl" = "8:"
+ "Items"
+ {
+ "{EDC2488A-8267-493A-A98E-7D9C3B36CDF3}:Microsoft.Visual.C++.8.0.x86"
+ {
+ "Name" = "8:Visual C++ Runtime Libraries (x86)"
+ "ProductCode" = "8:Microsoft.Visual.C++.8.0.x86"
+ }
+ "{EDC2488A-8267-493A-A98E-7D9C3B36CDF3}:Microsoft.Windows.Installer.3.1"
+ {
+ "Name" = "8:Windows Installer 3.1"
+ "ProductCode" = "8:Microsoft.Windows.Installer.3.1"
+ }
+ }
+ }
+ }
+ }
+ "Deployable"
+ {
+ "CustomAction"
+ {
+ }
+ "DefaultFeature"
+ {
+ "Name" = "8:DefaultFeature"
+ "Title" = "8:"
+ "Description" = "8:"
+ }
+ "ExternalPersistence"
+ {
+ "LaunchCondition"
+ {
+ }
+ }
+ "File"
+ {
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_00B39FDAF8804AAAAA8CFE66265833B9"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\Bulgarian\\ERR_FTP_PUT_MODIFIED"
+ "TargetName" = "8:ERR_FTP_PUT_MODIFIED"
+ "Tag" = "8:"
+ "Folder" = "8:_9403DF83587146369055797FCA2B7518"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_017F58C46A454238905BD60099E70E30"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\Armenian\\ERR_NO_RELAY"
+ "TargetName" = "8:ERR_NO_RELAY"
+ "Tag" = "8:"
+ "Folder" = "8:_D1BD742A1B8F4137B32E4DED8EB6AFAD"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_018C85FF2BA24BAFAB6D0E63637E461B"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\Dutch\\ERR_WRITE_ERROR"
+ "TargetName" = "8:ERR_WRITE_ERROR"
+ "Tag" = "8:"
+ "Folder" = "8:_5DF6E49883B64D929F2BD14A92ED59EE"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_02BEA726672F47169B381802CB7FFF26"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\Italian\\ERR_FTP_PUT_CREATED"
+ "TargetName" = "8:ERR_FTP_PUT_CREATED"
+ "Tag" = "8:"
+ "Folder" = "8:_B88FFFC7A8474FCA8B4B1EA85D9C6049"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_02CC907151504068B492B87ADACCC1DC"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\Italian\\ERR_READ_TIMEOUT"
+ "TargetName" = "8:ERR_READ_TIMEOUT"
+ "Tag" = "8:"
+ "Folder" = "8:_B88FFFC7A8474FCA8B4B1EA85D9C6049"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_036394E4422645D893E884E0B95B2DCE"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\Catalan\\ERR_UNSUP_REQ"
+ "TargetName" = "8:ERR_UNSUP_REQ"
+ "Tag" = "8:"
+ "Folder" = "8:_AA7C53AAA6CC4AE899A47A18CCAD38C2"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_037DE327524C46EFA3B18E912C8C163A"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\Italian\\ERR_SOCKET_FAILURE"
+ "TargetName" = "8:ERR_SOCKET_FAILURE"
+ "Tag" = "8:"
+ "Folder" = "8:_B88FFFC7A8474FCA8B4B1EA85D9C6049"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_04BBFB8F2A7A4FFC96BA1D1687B33691"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\Bulgarian\\ERR_READ_TIMEOUT"
+ "TargetName" = "8:ERR_READ_TIMEOUT"
+ "Tag" = "8:"
+ "Folder" = "8:_9403DF83587146369055797FCA2B7518"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_04EB8EF872BC40E8953AC2A1B070FEB2"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\Dutch\\ERR_READ_ERROR"
+ "TargetName" = "8:ERR_READ_ERROR"
+ "Tag" = "8:"
+ "Folder" = "8:_5DF6E49883B64D929F2BD14A92ED59EE"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_050C7E9CBDD24D1B857EE0E0F4A49DFB"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\Bulgarian\\ERR_NO_RELAY"
+ "TargetName" = "8:ERR_NO_RELAY"
+ "Tag" = "8:"
+ "Folder" = "8:_9403DF83587146369055797FCA2B7518"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0530478AB8B1403DAB6BDBDB00962138"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\Dutch\\ERR_FTP_FAILURE"
+ "TargetName" = "8:ERR_FTP_FAILURE"
+ "Tag" = "8:"
+ "Folder" = "8:_5DF6E49883B64D929F2BD14A92ED59EE"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0558B9DF5CEC43958EF182A4E10D84DB"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\Spanish\\ERR_ESI"
+ "TargetName" = "8:ERR_ESI"
+ "Tag" = "8:"
+ "Folder" = "8:_7B0A3DD1FB6344A49FE2A3DE974B9B3F"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0577E4AD1EDF4147B49B011D3BED2589"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\Dutch\\ERR_ICAP_FAILURE"
+ "TargetName" = "8:ERR_ICAP_FAILURE"
+ "Tag" = "8:"
+ "Folder" = "8:_E91862A5626B43EE85CDC2B4283CB23F"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_05809AEA2C174CB18CDB0D2E60BF7D00"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\Armenian\\ERR_FTP_PUT_CREATED"
+ "TargetName" = "8:ERR_FTP_PUT_CREATED"
+ "Tag" = "8:"
+ "Folder" = "8:_D1BD742A1B8F4137B32E4DED8EB6AFAD"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_069269C987F24F648ACCBF3EE2241639"
+ {
+ "SourcePath" = "8:..\\..\\..\\icons\\anthony-dvi.gif"
+ "TargetName" = "8:anthony-dvi.gif"
+ "Tag" = "8:"
+ "Folder" = "8:_5B393BDCDF8E47E5B726C7D91FF723FD"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_06C7489E0155425AB10CB1CBAA0CA8C7"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\Italian\\ERR_FTP_UNAVAILABLE"
+ "TargetName" = "8:ERR_FTP_UNAVAILABLE"
+ "Tag" = "8:"
+ "Folder" = "8:_B88FFFC7A8474FCA8B4B1EA85D9C6049"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_07E6436E193D462086E90EC138256CEF"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\English\\ERR_FTP_NOT_FOUND"
+ "TargetName" = "8:ERR_FTP_NOT_FOUND"
+ "Tag" = "8:"
+ "Folder" = "8:_68F811A2A8314A5CBDE26930CCB191D1"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0891CB4A306243508D9FE6BA767E7A56"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\French\\ERR_NO_RELAY"
+ "TargetName" = "8:ERR_NO_RELAY"
+ "Tag" = "8:"
+ "Folder" = "8:_A27D0E79518A480686B1A46660631B9C"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_08957F88D95D49BF9EC38672D5810F8A"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\English\\ERR_LIFETIME_EXP"
+ "TargetName" = "8:ERR_LIFETIME_EXP"
+ "Tag" = "8:"
+ "Folder" = "8:_68F811A2A8314A5CBDE26930CCB191D1"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_09BEE976F51C4451A65A70AE3035234E"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\French\\ERR_FTP_NOT_FOUND"
+ "TargetName" = "8:ERR_FTP_NOT_FOUND"
+ "Tag" = "8:"
+ "Folder" = "8:_A27D0E79518A480686B1A46660631B9C"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0A6DEF006BF24EFEB396D047874B4D7A"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\French\\ERR_URN_RESOLVE"
+ "TargetName" = "8:ERR_URN_RESOLVE"
+ "Tag" = "8:"
+ "Folder" = "8:_A27D0E79518A480686B1A46660631B9C"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0AD482290D7545E5B22E5B33074A79E5"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\Catalan\\ERR_CACHE_MGR_ACCESS_DENIED"
+ "TargetName" = "8:ERR_CACHE_MGR_ACCESS_DENIED"
+ "Tag" = "8:"
+ "Folder" = "8:_AA7C53AAA6CC4AE899A47A18CCAD38C2"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0AFB16CC6BB94BEDBC992A616222DCBA"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\German\\ERR_ESI"
+ "TargetName" = "8:ERR_ESI"
+ "Tag" = "8:"
+ "Folder" = "8:_8085299684D946B7BB35C82A1A3E69B6"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0C9FB7D0E2DC41699777C4A867CE31C8"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\Italian\\ERR_ZERO_SIZE_OBJECT"
+ "TargetName" = "8:ERR_ZERO_SIZE_OBJECT"
+ "Tag" = "8:"
+ "Folder" = "8:_B88FFFC7A8474FCA8B4B1EA85D9C6049"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0F68D5B5881743B0AB36C300C775DF6B"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\Bulgarian\\ERR_INVALID_REQ"
+ "TargetName" = "8:ERR_INVALID_REQ"
+ "Tag" = "8:"
+ "Folder" = "8:_9403DF83587146369055797FCA2B7518"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0FD35EF75C454A3983C0C25D287D20CA"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\French\\ERR_FTP_DISABLED"
+ "TargetName" = "8:ERR_FTP_DISABLED"
+ "Tag" = "8:"
+ "Folder" = "8:_A27D0E79518A480686B1A46660631B9C"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_106B6A3AE99A41978147704660EABAD4"
+ {
+ "SourcePath" = "8:..\\..\\..\\icons\\anthony-image.gif"
+ "TargetName" = "8:anthony-image.gif"
+ "Tag" = "8:"
+ "Folder" = "8:_5B393BDCDF8E47E5B726C7D91FF723FD"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_10EBCED9D2F94CCB8A29247760F2D029"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\German\\ERR_UNSUP_REQ"
+ "TargetName" = "8:ERR_UNSUP_REQ"
+ "Tag" = "8:"
+ "Folder" = "8:_8085299684D946B7BB35C82A1A3E69B6"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_11057A08B295478DA4AAED862E948976"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\Armenian\\ERR_ONLY_IF_CACHED_MISS"
+ "TargetName" = "8:ERR_ONLY_IF_CACHED_MISS"
+ "Tag" = "8:"
+ "Folder" = "8:_D1BD742A1B8F4137B32E4DED8EB6AFAD"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_12364AAAEF074967A44E22A7DDF88175"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\English\\ERR_INVALID_REQ"
+ "TargetName" = "8:ERR_INVALID_REQ"
+ "Tag" = "8:"
+ "Folder" = "8:_68F811A2A8314A5CBDE26930CCB191D1"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_12FCC64795D9451D913196F4C01378DA"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\French\\ERR_FTP_PUT_CREATED"
+ "TargetName" = "8:ERR_FTP_PUT_CREATED"
+ "Tag" = "8:"
+ "Folder" = "8:_A27D0E79518A480686B1A46660631B9C"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_13D16070CAD54D5B9239C12FC7E3B0C7"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\French\\ERR_FTP_FAILURE"
+ "TargetName" = "8:ERR_FTP_FAILURE"
+ "Tag" = "8:"
+ "Folder" = "8:_A27D0E79518A480686B1A46660631B9C"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_15E9A28ABC9047AE943816D9C8D7CA10"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\Spanish\\ERR_LIFETIME_EXP"
+ "TargetName" = "8:ERR_LIFETIME_EXP"
+ "Tag" = "8:"
+ "Folder" = "8:_7B0A3DD1FB6344A49FE2A3DE974B9B3F"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_186D0E3591FE428BA5E6A90F80C92C18"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\Catalan\\ERR_ONLY_IF_CACHED_MISS"
+ "TargetName" = "8:ERR_ONLY_IF_CACHED_MISS"
+ "Tag" = "8:"
+ "Folder" = "8:_AA7C53AAA6CC4AE899A47A18CCAD38C2"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_190342BCE4BA462492D20CF222E10BAC"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\Catalan\\ERR_READ_TIMEOUT"
+ "TargetName" = "8:ERR_READ_TIMEOUT"
+ "Tag" = "8:"
+ "Folder" = "8:_AA7C53AAA6CC4AE899A47A18CCAD38C2"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1A162F0DDC594A409F594F4AE17F0E2C"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\Armenian\\ERR_FTP_PUT_MODIFIED"
+ "TargetName" = "8:ERR_FTP_PUT_MODIFIED"
+ "Tag" = "8:"
+ "Folder" = "8:_D1BD742A1B8F4137B32E4DED8EB6AFAD"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1B444EB9EA3E47CE8D501715906385F7"
+ {
+ "SourcePath" = "8:..\\..\\..\\CREDITS"
+ "TargetName" = "8:CREDITS"
+ "Tag" = "8:"
+ "Folder" = "8:_5D710B20B9804FE18E854349FE992364"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1BA19E2C4794463A891627969157A01B"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\English\\ERR_CONNECT_FAIL"
+ "TargetName" = "8:ERR_CONNECT_FAIL"
+ "Tag" = "8:"
+ "Folder" = "8:_68F811A2A8314A5CBDE26930CCB191D1"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1BF3629D7E2045E0908A2943D5AC300A"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\Catalan\\ERR_LIFETIME_EXP"
+ "TargetName" = "8:ERR_LIFETIME_EXP"
+ "Tag" = "8:"
+ "Folder" = "8:_AA7C53AAA6CC4AE899A47A18CCAD38C2"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1C1F676D2DFC40FB9DB63D231D966ACA"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\Spanish\\ERR_FTP_PUT_CREATED"
+ "TargetName" = "8:ERR_FTP_PUT_CREATED"
+ "Tag" = "8:"
+ "Folder" = "8:_7B0A3DD1FB6344A49FE2A3DE974B9B3F"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1C8396E13B4C4B0CA7D5755869127863"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\Catalan\\ERR_FTP_DISABLED"
+ "TargetName" = "8:ERR_FTP_DISABLED"
+ "Tag" = "8:"
+ "Folder" = "8:_AA7C53AAA6CC4AE899A47A18CCAD38C2"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1CE0388A4BD54B4AAE4C169A16E80538"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\Armenian\\ERR_FTP_FAILURE"
+ "TargetName" = "8:ERR_FTP_FAILURE"
+ "Tag" = "8:"
+ "Folder" = "8:_D1BD742A1B8F4137B32E4DED8EB6AFAD"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1D1770CCD704475A9ACB0DEF85AAFFDD"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\Catalan\\ERR_CONNECT_FAIL"
+ "TargetName" = "8:ERR_CONNECT_FAIL"
+ "Tag" = "8:"
+ "Folder" = "8:_AA7C53AAA6CC4AE899A47A18CCAD38C2"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1D2EFEDAD7DE4934BFA75D9C1F19AE48"
+ {
+ "SourcePath" = "8:..\\..\\..\\src\\mib.txt"
+ "TargetName" = "8:mib.txt"
+ "Tag" = "8:"
+ "Folder" = "8:_678259A74E2D47EAAFBBB4EF09E1713C"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1D409FA1D8C8474289E1E1C6894E23C3"
+ {
+ "SourcePath" = "8:..\\..\\..\\icons\\anthony-portal.gif"
+ "TargetName" = "8:anthony-portal.gif"
+ "Tag" = "8:"
+ "Folder" = "8:_5B393BDCDF8E47E5B726C7D91FF723FD"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1D927BFA8A954814B7A59A85A3E7E886"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\Armenian\\ERR_FTP_FORBIDDEN"
+ "TargetName" = "8:ERR_FTP_FORBIDDEN"
+ "Tag" = "8:"
+ "Folder" = "8:_D1BD742A1B8F4137B32E4DED8EB6AFAD"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1EB692D8F012475183AA542E5F3C793E"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\Dutch\\ERR_CACHE_ACCESS_DENIED"
+ "TargetName" = "8:ERR_CACHE_ACCESS_DENIED"
+ "Tag" = "8:"
+ "Folder" = "8:_5DF6E49883B64D929F2BD14A92ED59EE"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1EE7974FEE0A40B69E575116A0DBE1A5"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\Italian\\ERR_ESI"
+ "TargetName" = "8:ERR_ESI"
+ "Tag" = "8:"
+ "Folder" = "8:_B88FFFC7A8474FCA8B4B1EA85D9C6049"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1F4A70E92521458395D5DF2F5BEFE9B3"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\Bulgarian\\ERR_DNS_FAIL"
+ "TargetName" = "8:ERR_DNS_FAIL"
+ "Tag" = "8:"
+ "Folder" = "8:_9403DF83587146369055797FCA2B7518"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2008D68988B14F19B8A047231DDF7D22"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\Catalan\\ERR_FTP_FORBIDDEN"
+ "TargetName" = "8:ERR_FTP_FORBIDDEN"
+ "Tag" = "8:"
+ "Folder" = "8:_AA7C53AAA6CC4AE899A47A18CCAD38C2"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_211A9C5E14974692AA78FD43C0C1DF13"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\Spanish\\ERR_SOCKET_FAILURE"
+ "TargetName" = "8:ERR_SOCKET_FAILURE"
+ "Tag" = "8:"
+ "Folder" = "8:_7B0A3DD1FB6344A49FE2A3DE974B9B3F"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_226426F146014F66A8ADF8FDEE7500F4"
+ {
+ "SourcePath" = "8:..\\..\\..\\icons\\anthony-text.gif"
+ "TargetName" = "8:anthony-text.gif"
+ "Tag" = "8:"
+ "Folder" = "8:_5B393BDCDF8E47E5B726C7D91FF723FD"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2276B140B48F482995163E029D71BF62"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\Dutch\\ERR_SHUTTING_DOWN"
+ "TargetName" = "8:ERR_SHUTTING_DOWN"
+ "Tag" = "8:"
+ "Folder" = "8:_5DF6E49883B64D929F2BD14A92ED59EE"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_238E18B9DC0345EB9D3B2F8BE306A643"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\Dutch\\ERR_URN_RESOLVE"
+ "TargetName" = "8:ERR_URN_RESOLVE"
+ "Tag" = "8:"
+ "Folder" = "8:_E91862A5626B43EE85CDC2B4283CB23F"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2393382595324AEE9757C719C5888446"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\Dutch\\ERR_FTP_PUT_MODIFIED"
+ "TargetName" = "8:ERR_FTP_PUT_MODIFIED"
+ "Tag" = "8:"
+ "Folder" = "8:_E91862A5626B43EE85CDC2B4283CB23F"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_27543A2A0A0F4F6EA02DD8B69ADB53E3"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\French\\ERR_FTP_FORBIDDEN"
+ "TargetName" = "8:ERR_FTP_FORBIDDEN"
+ "Tag" = "8:"
+ "Folder" = "8:_A27D0E79518A480686B1A46660631B9C"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_27EC0E5B61DD4266B402FC4FF4F51B12"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\Dutch\\ERR_ZERO_SIZE_OBJECT"
+ "TargetName" = "8:ERR_ZERO_SIZE_OBJECT"
+ "Tag" = "8:"
+ "Folder" = "8:_5DF6E49883B64D929F2BD14A92ED59EE"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_28650DFB41234CBDBAA0EB3D433FB019"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\German\\ERR_FTP_DISABLED"
+ "TargetName" = "8:ERR_FTP_DISABLED"
+ "Tag" = "8:"
+ "Folder" = "8:_8085299684D946B7BB35C82A1A3E69B6"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_286666804B9C48A9ADFB41994E0B2D1F"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\Catalan\\ERR_ICAP_FAILURE"
+ "TargetName" = "8:ERR_ICAP_FAILURE"
+ "Tag" = "8:"
+ "Folder" = "8:_AA7C53AAA6CC4AE899A47A18CCAD38C2"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_28A43A935DA646C28FA8F2EA7EA69BE5"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\Italian\\ERR_INVALID_RESP"
+ "TargetName" = "8:ERR_INVALID_RESP"
+ "Tag" = "8:"
+ "Folder" = "8:_B88FFFC7A8474FCA8B4B1EA85D9C6049"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_290B5B9BF6EA4E189B5D7C078BC46925"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\German\\ERR_FTP_PUT_CREATED"
+ "TargetName" = "8:ERR_FTP_PUT_CREATED"
+ "Tag" = "8:"
+ "Folder" = "8:_8085299684D946B7BB35C82A1A3E69B6"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2985C12672E940F3B1B3B4EB6CFD9F21"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\Italian\\ERR_LIFETIME_EXP"
+ "TargetName" = "8:ERR_LIFETIME_EXP"
+ "Tag" = "8:"
+ "Folder" = "8:_B88FFFC7A8474FCA8B4B1EA85D9C6049"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2999FCBD56624FC1A8C3C56528DBBC85"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\Bulgarian\\ERR_FTP_FAILURE"
+ "TargetName" = "8:ERR_FTP_FAILURE"
+ "Tag" = "8:"
+ "Folder" = "8:_9403DF83587146369055797FCA2B7518"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_29D40F498BF64A40AA8432E9D4D54CF5"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\Dutch\\ERR_TOO_BIG"
+ "TargetName" = "8:ERR_TOO_BIG"
+ "Tag" = "8:"
+ "Folder" = "8:_5DF6E49883B64D929F2BD14A92ED59EE"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2A2960B9D6C64BAD9E3580DA175AA365"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\Spanish\\ERR_INVALID_URL"
+ "TargetName" = "8:ERR_INVALID_URL"
+ "Tag" = "8:"
+ "Folder" = "8:_7B0A3DD1FB6344A49FE2A3DE974B9B3F"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2AA5CA9FC0BA4AEE80ACEAF1B858F522"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\English\\ERR_DNS_FAIL"
+ "TargetName" = "8:ERR_DNS_FAIL"
+ "Tag" = "8:"
+ "Folder" = "8:_68F811A2A8314A5CBDE26930CCB191D1"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2B03110555B440AA98A503D08ED0E003"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\Armenian\\ERR_DNS_FAIL"
+ "TargetName" = "8:ERR_DNS_FAIL"
+ "Tag" = "8:"
+ "Folder" = "8:_D1BD742A1B8F4137B32E4DED8EB6AFAD"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2B7F047F5A5E4809A02621FFD619A5FD"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\French\\ERR_SHUTTING_DOWN"
+ "TargetName" = "8:ERR_SHUTTING_DOWN"
+ "Tag" = "8:"
+ "Folder" = "8:_A27D0E79518A480686B1A46660631B9C"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2B80CC33F7304BB0B313BD5CDCBB29E9"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\Italian\\ERR_NO_RELAY"
+ "TargetName" = "8:ERR_NO_RELAY"
+ "Tag" = "8:"
+ "Folder" = "8:_B88FFFC7A8474FCA8B4B1EA85D9C6049"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2C1FD320C4B14512A67614A10388F524"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\Bulgarian\\ERR_ACCESS_DENIED"
+ "TargetName" = "8:ERR_ACCESS_DENIED"
+ "Tag" = "8:"
+ "Folder" = "8:_9403DF83587146369055797FCA2B7518"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2C39EADCBAA246C6BABBE0D34AE13D15"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\Spanish\\ERR_READ_TIMEOUT"
+ "TargetName" = "8:ERR_READ_TIMEOUT"
+ "Tag" = "8:"
+ "Folder" = "8:_7B0A3DD1FB6344A49FE2A3DE974B9B3F"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2C70158C03FC4C6A8559BB31017B3130"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\Bulgarian\\ERR_CONNECT_FAIL"
+ "TargetName" = "8:ERR_CONNECT_FAIL"
+ "Tag" = "8:"
+ "Folder" = "8:_9403DF83587146369055797FCA2B7518"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2C72A2D57D944BB2909253324525339D"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\Dutch\\ERR_FTP_DISABLED"
+ "TargetName" = "8:ERR_FTP_DISABLED"
+ "Tag" = "8:"
+ "Folder" = "8:_E91862A5626B43EE85CDC2B4283CB23F"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2E5E34B80E2C4CC69B6ED5CEC68E6C06"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\Armenian\\ERR_FTP_UNAVAILABLE"
+ "TargetName" = "8:ERR_FTP_UNAVAILABLE"
+ "Tag" = "8:"
+ "Folder" = "8:_D1BD742A1B8F4137B32E4DED8EB6AFAD"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2EB3AC8E86E549DF95AF43DCF8F80F6C"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\German\\ERR_DNS_FAIL"
+ "TargetName" = "8:ERR_DNS_FAIL"
+ "Tag" = "8:"
+ "Folder" = "8:_8085299684D946B7BB35C82A1A3E69B6"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2ECE186228BC4E3DA4DBAA07F1307CA3"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\English\\ERR_READ_ERROR"
+ "TargetName" = "8:ERR_READ_ERROR"
+ "Tag" = "8:"
+ "Folder" = "8:_68F811A2A8314A5CBDE26930CCB191D1"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2FB15D592C774D83A78451E3EF6F8EE4"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\Bulgarian\\ERR_FTP_DISABLED"
+ "TargetName" = "8:ERR_FTP_DISABLED"
+ "Tag" = "8:"
+ "Folder" = "8:_9403DF83587146369055797FCA2B7518"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2FD9F78220CB54015100446FBC902A95"
+ {
+ "SourcePath" = "8:NETAPI32.dll"
+ "TargetName" = "8:NETAPI32.dll"
+ "Tag" = "8:"
+ "Folder" = "8:_5D710B20B9804FE18E854349FE992364"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:TRUE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_31E4D6BECDBE484FB26A71E67DC899B5"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\Italian\\ERR_CANNOT_FORWARD"
+ "TargetName" = "8:ERR_CANNOT_FORWARD"
+ "Tag" = "8:"
+ "Folder" = "8:_B88FFFC7A8474FCA8B4B1EA85D9C6049"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_31F3A572C42B4FB7AC91BA350D91CC64"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\Dutch\\ERR_LIFETIME_EXP"
+ "TargetName" = "8:ERR_LIFETIME_EXP"
+ "Tag" = "8:"
+ "Folder" = "8:_E91862A5626B43EE85CDC2B4283CB23F"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_31F439AAC4914BE2A398CF39FF66D862"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\English\\ERR_INVALID_RESP"
+ "TargetName" = "8:ERR_INVALID_RESP"
+ "Tag" = "8:"
+ "Folder" = "8:_68F811A2A8314A5CBDE26930CCB191D1"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_327F77164DC44377B32F54895F4DB6DE"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\Azerbaijani\\ERR_LIFETIME_EXP"
+ "TargetName" = "8:ERR_LIFETIME_EXP"
+ "Tag" = "8:"
+ "Folder" = "8:_5291CAE5C0474236B38845284673D553"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3296AF986E1843A18AB7914DDBDA5A52"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\Italian\\ERR_ICAP_FAILURE"
+ "TargetName" = "8:ERR_ICAP_FAILURE"
+ "Tag" = "8:"
+ "Folder" = "8:_B88FFFC7A8474FCA8B4B1EA85D9C6049"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_32EC5CAEABA9473C8D025753A0B00D9F"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\Dutch\\ERR_FTP_PUT_MODIFIED"
+ "TargetName" = "8:ERR_FTP_PUT_MODIFIED"
+ "Tag" = "8:"
+ "Folder" = "8:_5DF6E49883B64D929F2BD14A92ED59EE"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_336B034CE9434C7290CC095E1F93AB47"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\Dutch\\ERR_ESI"
+ "TargetName" = "8:ERR_ESI"
+ "Tag" = "8:"
+ "Folder" = "8:_E91862A5626B43EE85CDC2B4283CB23F"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_33CE8D2E0A1F4628B3B52440D050453E"
+ {
+ "SourcePath" = "8:..\\..\\..\\errors\\Spanish\\ERR_CACHE_MGR_ACCESS_DENIED"
+ "TargetName" = "8:ERR_CACHE_MGR_ACCESS_DENIED"
+ "Tag" = "8:"
+ "Folder" = "8:_7B0A3DD1FB6344A49FE2A3DE974B9B3F"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsD