From 028a4456152f3881f926d73586dedbf336a55ab5 Mon Sep 17 00:00:00 2001 From: kiblik Date: Wed, 17 Jan 2024 19:03:52 +0100 Subject: [PATCH 01/22] Support "_FILE" environmental variables (#9069) * Use environ.FileAwareEnv * Load _FILE in shell * Change error to warning --- Dockerfile.django-alpine | 1 + Dockerfile.django-debian | 1 + Dockerfile.integration-tests-debian | 1 + docker/entrypoint-celery-worker.sh | 2 ++ docker/entrypoint-initializer.sh | 2 ++ docker/entrypoint-integration-tests.sh | 2 ++ docker/entrypoint-unit-tests-devDocker.sh | 2 ++ docker/entrypoint-unit-tests.sh | 2 ++ docker/entrypoint-uwsgi-dev.sh | 2 ++ docker/entrypoint-uwsgi.sh | 2 ++ docker/entrypoint.sh | 2 ++ docker/secret-file-loader.sh | 16 ++++++++++++++++ dojo/settings/settings.dist.py | 2 +- 13 files changed, 36 insertions(+), 1 deletion(-) create mode 100644 docker/secret-file-loader.sh diff --git a/Dockerfile.django-alpine b/Dockerfile.django-alpine index f777e41722f..10b34a77f24 100644 --- a/Dockerfile.django-alpine +++ b/Dockerfile.django-alpine @@ -75,6 +75,7 @@ COPY \ docker/entrypoint-unit-tests.sh \ docker/entrypoint-unit-tests-devDocker.sh \ docker/wait-for-it.sh \ + docker/secret-file-loader.sh \ docker/certs/* \ / COPY wsgi.py manage.py docker/unit-tests.sh ./ diff --git a/Dockerfile.django-debian b/Dockerfile.django-debian index 3a245684aa6..f58f22b5be2 100644 --- a/Dockerfile.django-debian +++ b/Dockerfile.django-debian @@ -80,6 +80,7 @@ COPY \ docker/entrypoint-unit-tests.sh \ docker/entrypoint-unit-tests-devDocker.sh \ docker/wait-for-it.sh \ + docker/secret-file-loader.sh \ docker/certs/* \ / COPY wsgi.py manage.py docker/unit-tests.sh ./ diff --git a/Dockerfile.integration-tests-debian b/Dockerfile.integration-tests-debian index d47a4518f9f..04cb7eeaf85 100644 --- a/Dockerfile.integration-tests-debian +++ b/Dockerfile.integration-tests-debian @@ -61,6 +61,7 @@ WORKDIR /app COPY --from=openapitools /opt/openapi-generator/modules/openapi-generator-cli/target/openapi-generator-cli.jar /usr/local/bin/openapi-generator-cli.jar COPY docker/wait-for-it.sh \ + docker/secret-file-loader.sh \ docker/entrypoint-integration-tests.sh \ / diff --git a/docker/entrypoint-celery-worker.sh b/docker/entrypoint-celery-worker.sh index 20b439eb2e4..9df9b9815bc 100755 --- a/docker/entrypoint-celery-worker.sh +++ b/docker/entrypoint-celery-worker.sh @@ -3,6 +3,8 @@ umask 0002 id +. /secret-file-loader.sh + # Allow for bind-mount multiple settings.py overrides FILES=$(ls /app/docker/extra_settings/* 2>/dev/null) NUM_FILES=$(echo "$FILES" | wc -w) diff --git a/docker/entrypoint-initializer.sh b/docker/entrypoint-initializer.sh index e344fa29496..8246bb7ff18 100755 --- a/docker/entrypoint-initializer.sh +++ b/docker/entrypoint-initializer.sh @@ -1,5 +1,7 @@ #!/bin/sh +. /secret-file-loader.sh + initialize_data() { # Test types shall be initialized every time by the initializer, to make sure test types are complete diff --git a/docker/entrypoint-integration-tests.sh b/docker/entrypoint-integration-tests.sh index e76bcac998e..8f18973fa0f 100755 --- a/docker/entrypoint-integration-tests.sh +++ b/docker/entrypoint-integration-tests.sh @@ -1,5 +1,7 @@ #!/bin/bash +. /secret-file-loader.sh + echo "Testing DefectDojo Service" echo "Waiting max 60s for services to start" diff --git a/docker/entrypoint-unit-tests-devDocker.sh b/docker/entrypoint-unit-tests-devDocker.sh index 3a5b8b2004e..a922bbe8795 100755 --- a/docker/entrypoint-unit-tests-devDocker.sh +++ b/docker/entrypoint-unit-tests-devDocker.sh @@ -6,6 +6,8 @@ set -x set -e set -v +. /secret-file-loader.sh + cd /app # Unset the database URL so that we can force the DD_TEST_DATABASE_NAME (see django "DATABASES" configuration in settings.dist.py) unset DD_DATABASE_URL diff --git a/docker/entrypoint-unit-tests.sh b/docker/entrypoint-unit-tests.sh index 63008afcbb7..29a9bcfc960 100755 --- a/docker/entrypoint-unit-tests.sh +++ b/docker/entrypoint-unit-tests.sh @@ -6,6 +6,8 @@ # set -e # set -v +. /secret-file-loader.sh + cd /app # Unset the database URL so that we can force the DD_TEST_DATABASE_NAME (see django "DATABASES" configuration in settings.dist.py) unset DD_DATABASE_URL diff --git a/docker/entrypoint-uwsgi-dev.sh b/docker/entrypoint-uwsgi-dev.sh index 587452cd0f6..b8dd40cb1c4 100755 --- a/docker/entrypoint-uwsgi-dev.sh +++ b/docker/entrypoint-uwsgi-dev.sh @@ -1,5 +1,7 @@ #!/bin/sh +. /secret-file-loader.sh + cd /app diff --git a/docker/entrypoint-uwsgi.sh b/docker/entrypoint-uwsgi.sh index 7caaa912aa2..0645760bcf5 100755 --- a/docker/entrypoint-uwsgi.sh +++ b/docker/entrypoint-uwsgi.sh @@ -1,5 +1,7 @@ #!/bin/sh +. /secret-file-loader.sh + # Allow for bind-mount multiple settings.py overrides FILES=$(ls /app/docker/extra_settings/* 2>/dev/null) NUM_FILES=$(echo "$FILES" | wc -w) diff --git a/docker/entrypoint.sh b/docker/entrypoint.sh index acd1ff490ff..3f549abe3e9 100755 --- a/docker/entrypoint.sh +++ b/docker/entrypoint.sh @@ -1,5 +1,7 @@ #!/bin/sh +. /secret-file-loader.sh + # Waits for the database to come up. ./docker/wait-for-it.sh $DD_DATABASE_HOST:$DD_DATABASE_PORT diff --git a/docker/secret-file-loader.sh b/docker/secret-file-loader.sh new file mode 100644 index 00000000000..157b6512a40 --- /dev/null +++ b/docker/secret-file-loader.sh @@ -0,0 +1,16 @@ +#!/bin/sh + +# Convert all environment variables with names ending in _FILE into the content of +# the file that they point at and use the name without the trailing _FILE. +# This can be used to carry in Docker secrets. +# Inspired by https://github.com/grafana/grafana-docker/pull/166 +# But rewrote for /bin/sh +for VAR_NAME in $(env | grep '^DD_[^=]\+_FILE=.\+' | sed -r "s/([^=]*)_FILE=.*/\1/g"); do + VAR_NAME_FILE="$VAR_NAME"_FILE + if [ -n "$(eval echo "\$$VAR_NAME")" ]; then + echo >&2 "WARNING: Both $VAR_NAME and $VAR_NAME_FILE are set. Content of $VAR_NAME will be overridden." + fi + echo "Getting secret $VAR_NAME from $(eval echo "\$$VAR_NAME_FILE")" + export "$VAR_NAME"="$(cat "$(eval echo "\$$VAR_NAME_FILE")")" + unset "$VAR_NAME_FILE" +done \ No newline at end of file diff --git a/dojo/settings/settings.dist.py b/dojo/settings/settings.dist.py index ec105309fbb..5c275d2eb85 100644 --- a/dojo/settings/settings.dist.py +++ b/dojo/settings/settings.dist.py @@ -16,7 +16,7 @@ root = environ.Path(__file__) - 3 # Three folders back # reference: https://pypi.org/project/django-environ/ -env = environ.Env( +env = environ.FileAwareEnv( # Set casting and default values DD_SITE_URL=(str, 'http://localhost:8080'), DD_DEBUG=(bool, False), From 47f509f6ca98c8bcbd712232da1f81f1801a2671 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 17 Jan 2024 21:37:23 -0600 Subject: [PATCH 02/22] Update dependency autoprefixer from 10.4.16 to v10.4.17 (docs/package.json) (#9353) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- docs/package-lock.json | 114 ++++++++++++++++++++--------------------- docs/package.json | 2 +- 2 files changed, 58 insertions(+), 58 deletions(-) diff --git a/docs/package-lock.json b/docs/package-lock.json index 3da14d5d770..5decab97de0 100644 --- a/docs/package-lock.json +++ b/docs/package-lock.json @@ -5,7 +5,7 @@ "packages": { "": { "devDependencies": { - "autoprefixer": "10.4.16", + "autoprefixer": "10.4.17", "postcss": "8.4.33", "postcss-cli": "10.1.0" } @@ -83,9 +83,9 @@ } }, "node_modules/autoprefixer": { - "version": "10.4.16", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.16.tgz", - "integrity": "sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==", + "version": "10.4.17", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.17.tgz", + "integrity": "sha512-/cpVNRLSfhOtcGflT13P2794gVSgmPgTR+erw5ifnMLZb0UnSlkK4tquLmkd3BhA+nLo5tX8Cu0upUsGKvKbmg==", "dev": true, "funding": [ { @@ -102,9 +102,9 @@ } ], "dependencies": { - "browserslist": "^4.21.10", - "caniuse-lite": "^1.0.30001538", - "fraction.js": "^4.3.6", + "browserslist": "^4.22.2", + "caniuse-lite": "^1.0.30001578", + "fraction.js": "^4.3.7", "normalize-range": "^0.1.2", "picocolors": "^1.0.0", "postcss-value-parser": "^4.2.0" @@ -141,9 +141,9 @@ } }, "node_modules/browserslist": { - "version": "4.21.10", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.10.tgz", - "integrity": "sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==", + "version": "4.22.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.2.tgz", + "integrity": "sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==", "dev": true, "funding": [ { @@ -160,10 +160,10 @@ } ], "dependencies": { - "caniuse-lite": "^1.0.30001517", - "electron-to-chromium": "^1.4.477", - "node-releases": "^2.0.13", - "update-browserslist-db": "^1.0.11" + "caniuse-lite": "^1.0.30001565", + "electron-to-chromium": "^1.4.601", + "node-releases": "^2.0.14", + "update-browserslist-db": "^1.0.13" }, "bin": { "browserslist": "cli.js" @@ -173,9 +173,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001538", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001538.tgz", - "integrity": "sha512-HWJnhnID+0YMtGlzcp3T9drmBJUVDchPJ08tpUGFLs9CYlwWPH2uLgpHn8fND5pCgXVtnGS3H4QR9XLMHVNkHw==", + "version": "1.0.30001578", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001578.tgz", + "integrity": "sha512-J/jkFgsQ3NEl4w2lCoM9ZPxrD+FoBNJ7uJUpGVjIg/j0OwJosWM36EPDv+Yyi0V4twBk9pPmlFS+PLykgEvUmg==", "dev": true, "funding": [ { @@ -270,9 +270,9 @@ } }, "node_modules/electron-to-chromium": { - "version": "1.4.490", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.490.tgz", - "integrity": "sha512-6s7NVJz+sATdYnIwhdshx/N/9O6rvMxmhVoDSDFdj6iA45gHR8EQje70+RYsF4GeB+k0IeNSBnP7yG9ZXJFr7A==", + "version": "1.4.635", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.635.tgz", + "integrity": "sha512-iu/2D0zolKU3iDGXXxdOzNf72Jnokn+K1IN6Kk4iV6l1Tr2g/qy+mvmtfAiBwZe5S3aB5r92vp+zSZ69scYRrg==", "dev": true }, "node_modules/emoji-regex": { @@ -328,9 +328,9 @@ } }, "node_modules/fraction.js": { - "version": "4.3.6", - "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.6.tgz", - "integrity": "sha512-n2aZ9tNfYDwaHhvFTkhFErqOMIb8uyzSQ+vGJBjZyanAKZVbGUQ1sngfk9FdkBw7G26O7AgNjLcecLffD1c7eg==", + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", + "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", "dev": true, "engines": { "node": "*" @@ -548,9 +548,9 @@ } }, "node_modules/node-releases": { - "version": "2.0.13", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz", - "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==", + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", + "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==", "dev": true }, "node_modules/normalize-path": { @@ -898,9 +898,9 @@ } }, "node_modules/update-browserslist-db": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", - "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", + "version": "1.0.13", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", + "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", "dev": true, "funding": [ { @@ -1043,14 +1043,14 @@ } }, "autoprefixer": { - "version": "10.4.16", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.16.tgz", - "integrity": "sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==", + "version": "10.4.17", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.17.tgz", + "integrity": "sha512-/cpVNRLSfhOtcGflT13P2794gVSgmPgTR+erw5ifnMLZb0UnSlkK4tquLmkd3BhA+nLo5tX8Cu0upUsGKvKbmg==", "dev": true, "requires": { - "browserslist": "^4.21.10", - "caniuse-lite": "^1.0.30001538", - "fraction.js": "^4.3.6", + "browserslist": "^4.22.2", + "caniuse-lite": "^1.0.30001578", + "fraction.js": "^4.3.7", "normalize-range": "^0.1.2", "picocolors": "^1.0.0", "postcss-value-parser": "^4.2.0" @@ -1072,21 +1072,21 @@ } }, "browserslist": { - "version": "4.21.10", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.10.tgz", - "integrity": "sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==", + "version": "4.22.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.2.tgz", + "integrity": "sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==", "dev": true, "requires": { - "caniuse-lite": "^1.0.30001517", - "electron-to-chromium": "^1.4.477", - "node-releases": "^2.0.13", - "update-browserslist-db": "^1.0.11" + "caniuse-lite": "^1.0.30001565", + "electron-to-chromium": "^1.4.601", + "node-releases": "^2.0.14", + "update-browserslist-db": "^1.0.13" } }, "caniuse-lite": { - "version": "1.0.30001538", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001538.tgz", - "integrity": "sha512-HWJnhnID+0YMtGlzcp3T9drmBJUVDchPJ08tpUGFLs9CYlwWPH2uLgpHn8fND5pCgXVtnGS3H4QR9XLMHVNkHw==", + "version": "1.0.30001578", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001578.tgz", + "integrity": "sha512-J/jkFgsQ3NEl4w2lCoM9ZPxrD+FoBNJ7uJUpGVjIg/j0OwJosWM36EPDv+Yyi0V4twBk9pPmlFS+PLykgEvUmg==", "dev": true }, "chokidar": { @@ -1147,9 +1147,9 @@ } }, "electron-to-chromium": { - "version": "1.4.490", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.490.tgz", - "integrity": "sha512-6s7NVJz+sATdYnIwhdshx/N/9O6rvMxmhVoDSDFdj6iA45gHR8EQje70+RYsF4GeB+k0IeNSBnP7yG9ZXJFr7A==", + "version": "1.4.635", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.635.tgz", + "integrity": "sha512-iu/2D0zolKU3iDGXXxdOzNf72Jnokn+K1IN6Kk4iV6l1Tr2g/qy+mvmtfAiBwZe5S3aB5r92vp+zSZ69scYRrg==", "dev": true }, "emoji-regex": { @@ -1196,9 +1196,9 @@ } }, "fraction.js": { - "version": "4.3.6", - "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.6.tgz", - "integrity": "sha512-n2aZ9tNfYDwaHhvFTkhFErqOMIb8uyzSQ+vGJBjZyanAKZVbGUQ1sngfk9FdkBw7G26O7AgNjLcecLffD1c7eg==", + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", + "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", "dev": true }, "fs-extra": { @@ -1340,9 +1340,9 @@ "dev": true }, "node-releases": { - "version": "2.0.13", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz", - "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==", + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", + "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==", "dev": true }, "normalize-path": { @@ -1551,9 +1551,9 @@ "dev": true }, "update-browserslist-db": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", - "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", + "version": "1.0.13", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", + "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", "dev": true, "requires": { "escalade": "^3.1.1", diff --git a/docs/package.json b/docs/package.json index b457069379a..6237c9d8d47 100644 --- a/docs/package.json +++ b/docs/package.json @@ -1,7 +1,7 @@ { "devDependencies": { "postcss": "8.4.33", - "autoprefixer": "10.4.16", + "autoprefixer": "10.4.17", "postcss-cli": "10.1.0" } } From d8f12c2a485dbcf0b4fba75d06d64677f11410dd Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 17 Jan 2024 21:45:52 -0600 Subject: [PATCH 03/22] Update gcr.io/cloudsql-docker/gce-proxy Docker tag from 1.33.15 to v1.33.16 (helm/defectdojo/values.yaml) (#9354) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- helm/defectdojo/values.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helm/defectdojo/values.yaml b/helm/defectdojo/values.yaml index 99b648f6a8a..c6eddcba413 100644 --- a/helm/defectdojo/values.yaml +++ b/helm/defectdojo/values.yaml @@ -457,7 +457,7 @@ cloudsql: image: # set repo and image tag of gce-proxy repository: gcr.io/cloudsql-docker/gce-proxy - tag: 1.33.15 + tag: 1.33.16 pullPolicy: IfNotPresent # set CloudSQL instance: 'project:zone:instancename' instance: "" From 68d7e6ee46a8aec7245aa3960ef05d48abdee4ac Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 18 Jan 2024 13:41:19 -0600 Subject: [PATCH 04/22] Bump boto3 from 1.34.20 to 1.34.21 (#9357) Bumps [boto3](https://github.com/boto/boto3) from 1.34.20 to 1.34.21. - [Release notes](https://github.com/boto/boto3/releases) - [Changelog](https://github.com/boto/boto3/blob/develop/CHANGELOG.rst) - [Commits](https://github.com/boto/boto3/compare/1.34.20...1.34.21) --- updated-dependencies: - dependency-name: boto3 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 1f5777ce7c5..8d7c028e87f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -79,7 +79,7 @@ django-ratelimit==4.1.0 argon2-cffi==23.1.0 blackduck==1.1.0 pycurl==7.45.2 # Required for Celery Broker AWS (SQS) support -boto3==1.34.20 # Required for Celery Broker AWS (SQS) support +boto3==1.34.21 # Required for Celery Broker AWS (SQS) support netaddr==0.8.0 vulners==2.1.2 fontawesomefree==6.5.1 From 67c8f9f51b86086d4b090c566ed02557df95242c Mon Sep 17 00:00:00 2001 From: kiblik Date: Fri, 19 Jan 2024 03:06:51 +0100 Subject: [PATCH 05/22] Unittests for REMOTE_USER (#9021) * Basic tests for REMOTE_USER * Rewrite settings * Rename vars in test * Final fixes * Add multiple groups test --- dojo/remote_user.py | 3 + dojo/settings/settings.dist.py | 44 ++++---- unittests/test_remote_user.py | 195 +++++++++++++++++++++++++++++++++ 3 files changed, 220 insertions(+), 22 deletions(-) create mode 100644 unittests/test_remote_user.py diff --git a/dojo/remote_user.py b/dojo/remote_user.py index fab272bb8d3..875291c7ba2 100644 --- a/dojo/remote_user.py +++ b/dojo/remote_user.py @@ -28,6 +28,9 @@ def authenticate(self, request): class RemoteUserMiddleware(OriginalRemoteUserMiddleware): def process_request(self, request): + if not settings.AUTH_REMOTEUSER_ENABLED: + return + # process only if request is comming from the trusted proxy node if IPAddress(request.META['REMOTE_ADDR']) in settings.AUTH_REMOTEUSER_TRUSTED_PROXY: self.header = settings.AUTH_REMOTEUSER_USERNAME_HEADER diff --git a/dojo/settings/settings.dist.py b/dojo/settings/settings.dist.py index 5c275d2eb85..c39e3c44c04 100644 --- a/dojo/settings/settings.dist.py +++ b/dojo/settings/settings.dist.py @@ -174,7 +174,7 @@ DD_AUTH_REMOTEUSER_GROUPS_HEADER=(str, ''), DD_AUTH_REMOTEUSER_GROUPS_CLEANUP=(bool, True), # Comma separated list of IP ranges with trusted proxies - DD_AUTH_REMOTEUSER_TRUSTED_PROXY=(list, ['127.0.0.0/32']), + DD_AUTH_REMOTEUSER_TRUSTED_PROXY=(list, ['127.0.0.1/32']), # REMOTE_USER will be processed only on login page. Check https://docs.djangoproject.com/en/3.2/howto/auth-remote-user/#using-remote-user-on-login-pages-only DD_AUTH_REMOTEUSER_LOGIN_ONLY=(bool, False), # if somebody is using own documentation how to use DefectDojo in his own company @@ -1055,28 +1055,28 @@ def saml2_attrib_map_format(dict): # ------------------------------------------------------------------------------ AUTH_REMOTEUSER_ENABLED = env('DD_AUTH_REMOTEUSER_ENABLED') -if AUTH_REMOTEUSER_ENABLED: - AUTH_REMOTEUSER_USERNAME_HEADER = env('DD_AUTH_REMOTEUSER_USERNAME_HEADER') - AUTH_REMOTEUSER_EMAIL_HEADER = env('DD_AUTH_REMOTEUSER_EMAIL_HEADER') - AUTH_REMOTEUSER_FIRSTNAME_HEADER = env('DD_AUTH_REMOTEUSER_FIRSTNAME_HEADER') - AUTH_REMOTEUSER_LASTNAME_HEADER = env('DD_AUTH_REMOTEUSER_LASTNAME_HEADER') - AUTH_REMOTEUSER_GROUPS_HEADER = env('DD_AUTH_REMOTEUSER_GROUPS_HEADER') - AUTH_REMOTEUSER_GROUPS_CLEANUP = env('DD_AUTH_REMOTEUSER_GROUPS_CLEANUP') - - AUTH_REMOTEUSER_TRUSTED_PROXY = IPSet() - for ip_range in env('DD_AUTH_REMOTEUSER_TRUSTED_PROXY'): - AUTH_REMOTEUSER_TRUSTED_PROXY.add(IPNetwork(ip_range)) - - if env('DD_AUTH_REMOTEUSER_LOGIN_ONLY'): - RemoteUserMiddleware = 'dojo.remote_user.PersistentRemoteUserMiddleware' - else: - RemoteUserMiddleware = 'dojo.remote_user.RemoteUserMiddleware' - # we need to add middleware just behindAuthenticationMiddleware as described in https://docs.djangoproject.com/en/3.2/howto/auth-remote-user/#configuration - for i in range(len(MIDDLEWARE)): - if MIDDLEWARE[i] == 'django.contrib.auth.middleware.AuthenticationMiddleware': - MIDDLEWARE.insert(i + 1, RemoteUserMiddleware) - break +AUTH_REMOTEUSER_USERNAME_HEADER = env('DD_AUTH_REMOTEUSER_USERNAME_HEADER') +AUTH_REMOTEUSER_EMAIL_HEADER = env('DD_AUTH_REMOTEUSER_EMAIL_HEADER') +AUTH_REMOTEUSER_FIRSTNAME_HEADER = env('DD_AUTH_REMOTEUSER_FIRSTNAME_HEADER') +AUTH_REMOTEUSER_LASTNAME_HEADER = env('DD_AUTH_REMOTEUSER_LASTNAME_HEADER') +AUTH_REMOTEUSER_GROUPS_HEADER = env('DD_AUTH_REMOTEUSER_GROUPS_HEADER') +AUTH_REMOTEUSER_GROUPS_CLEANUP = env('DD_AUTH_REMOTEUSER_GROUPS_CLEANUP') + +AUTH_REMOTEUSER_TRUSTED_PROXY = IPSet() +for ip_range in env('DD_AUTH_REMOTEUSER_TRUSTED_PROXY'): + AUTH_REMOTEUSER_TRUSTED_PROXY.add(IPNetwork(ip_range)) + +if env('DD_AUTH_REMOTEUSER_LOGIN_ONLY'): + RemoteUserMiddleware = 'dojo.remote_user.PersistentRemoteUserMiddleware' +else: + RemoteUserMiddleware = 'dojo.remote_user.RemoteUserMiddleware' +# we need to add middleware just behindAuthenticationMiddleware as described in https://docs.djangoproject.com/en/3.2/howto/auth-remote-user/#configuration +for i in range(len(MIDDLEWARE)): + if MIDDLEWARE[i] == 'django.contrib.auth.middleware.AuthenticationMiddleware': + MIDDLEWARE.insert(i + 1, RemoteUserMiddleware) + break +if AUTH_REMOTEUSER_ENABLED: REST_FRAMEWORK['DEFAULT_AUTHENTICATION_CLASSES'] = \ ('dojo.remote_user.RemoteUserAuthentication',) + \ REST_FRAMEWORK['DEFAULT_AUTHENTICATION_CLASSES'] diff --git a/unittests/test_remote_user.py b/unittests/test_remote_user.py new file mode 100644 index 00000000000..384e4dda75b --- /dev/null +++ b/unittests/test_remote_user.py @@ -0,0 +1,195 @@ +from django.test import Client, override_settings +from netaddr import IPSet +from dojo.models import User, Dojo_Group, Dojo_Group_Member +from .dojo_test_case import DojoTestCase + + +class TestRemoteUser(DojoTestCase): + + client1 = Client() + client2 = Client() + + def setUp(self): + self.user, _ = User.objects.get_or_create( + username='test_remote_user', + first_name='original_first', + last_name='original_last', + email='original@mail.com', + ) + self.group1, _ = Dojo_Group.objects.get_or_create(name="group1", social_provider="Remote") + self.group2, _ = Dojo_Group.objects.get_or_create(name="group2", social_provider="Remote") + + @override_settings(AUTH_REMOTEUSER_ENABLED=False) + def test_disabled(self): + resp = self.client1.get('/profile') + self.assertEqual(resp.status_code, 302) + + @override_settings( + AUTH_REMOTEUSER_ENABLED=True, + AUTH_REMOTEUSER_USERNAME_HEADER="HTTP_REMOTE_USER", + ) + def test_basic(self): + resp = self.client1.get('/profile', + # TODO - This can be replaced by following lines in the future + # Using of "headers" is supported since Django 4.2 + HTTP_REMOTE_USER=self.user.username, + # headers={ + # "Remote-User": self.user.username + # } + ) + self.assertEqual(resp.status_code, 200) + + @override_settings( + AUTH_REMOTEUSER_ENABLED=True, + AUTH_REMOTEUSER_USERNAME_HEADER="HTTP_REMOTE_USER", + AUTH_REMOTEUSER_FIRSTNAME_HEADER="HTTP_REMOTE_FIRSTNAME", + AUTH_REMOTEUSER_LASTNAME_HEADER="HTTP_REMOTE_LASTNAME", + AUTH_REMOTEUSER_EMAIL_HEADER="HTTP_REMOTE_EMAIL", + ) + def test_update_user(self): + resp = self.client1.get('/profile', + # TODO - This can be replaced by following lines in the future + # Using of "headers" is supported since Django 4.2 + HTTP_REMOTE_USER=self.user.username, + HTTP_REMOTE_FIRSTNAME="new_first", + HTTP_REMOTE_LASTNAME="new_last", + HTTP_REMOTE_EMAIL="new@mail.com", + # headers = { + # "Remote-User": self.user.username, + # "Remote-Firstname": "new_first", + # "Remote-Lastname": "new_last", + # "Remote-Email": "new@mail.com", + # } + ) + self.assertEqual(resp.status_code, 200) + updated_user = User.objects.get(pk=self.user.pk) + self.assertEqual(updated_user.first_name, "new_first") + self.assertEqual(updated_user.last_name, "new_last") + self.assertEqual(updated_user.email, "new@mail.com") + + @override_settings( + AUTH_REMOTEUSER_ENABLED=True, + AUTH_REMOTEUSER_USERNAME_HEADER="HTTP_REMOTE_USER", + AUTH_REMOTEUSER_GROUPS_HEADER="HTTP_REMOTE_GROUPS", + AUTH_REMOTEUSER_GROUPS_CLEANUP=True, + ) + def test_update_groups_cleanup(self): + resp = self.client1.get('/profile', + # TODO - This can be replaced by following lines in the future + # Using of "headers" is supported since Django 4.2 + HTTP_REMOTE_USER=self.user.username, + HTTP_REMOTE_GROUPS=self.group1.name, + # headers = { + # "Remote-User": self.user.username, + # "Remote-Groups": self.group1.name, + # } + ) + self.assertEqual(resp.status_code, 200) + dgms = Dojo_Group_Member.objects.filter(user=self.user) + self.assertEqual(dgms.count(), 1) + self.assertEqual(dgms.first().group.name, self.group1.name) + + resp = self.client2.get('/profile', + # TODO - This can be replaced by following lines in the future + # Using of "headers" is supported since Django 4.2 + HTTP_REMOTE_USER=self.user.username, + HTTP_REMOTE_GROUPS=self.group2.name, + # headers = { + # "Remote-User": self.user.username, + # "Remote-Groups": self.group2.name, + # } + ) + self.assertEqual(resp.status_code, 200) + dgms = Dojo_Group_Member.objects.all().filter(user=self.user) + self.assertEqual(dgms.count(), 1) + self.assertEqual(dgms.first().group.name, self.group2.name) + + @override_settings( + AUTH_REMOTEUSER_ENABLED=True, + AUTH_REMOTEUSER_USERNAME_HEADER="HTTP_REMOTE_USER", + AUTH_REMOTEUSER_GROUPS_HEADER="HTTP_REMOTE_GROUPS", + AUTH_REMOTEUSER_GROUPS_CLEANUP=True, + ) + def test_update_multiple_groups_cleanup(self): + resp = self.client1.get('/profile', + # TODO - This can be replaced by following lines in the future + # Using of "headers" is supported since Django 4.2 + HTTP_REMOTE_USER=self.user.username, + HTTP_REMOTE_GROUPS=f"{self.group1.name},{self.group2.name}", + # headers = { + # "Remote-User": self.user.username, + # "Remote-Groups": f"{self.group1.name},{self.group2.name}", + # } + ) + self.assertEqual(resp.status_code, 200) + dgms = Dojo_Group_Member.objects.filter(user=self.user) + self.assertEqual(dgms.count(), 2) + + @override_settings( + AUTH_REMOTEUSER_ENABLED=True, + AUTH_REMOTEUSER_USERNAME_HEADER="HTTP_REMOTE_USER", + AUTH_REMOTEUSER_GROUPS_HEADER="HTTP_REMOTE_GROUPS", + AUTH_REMOTEUSER_GROUPS_CLEANUP=False, + ) + def test_update_groups_no_cleanup(self): + resp = self.client1.get('/profile', + # TODO - This can be replaced by following lines in the future + # Using of "headers" is supported since Django 4.2 + HTTP_REMOTE_USER=self.user.username, + HTTP_REMOTE_GROUPS=self.group1.name, + # headers = { + # "Remote-User": self.user.username, + # "Remote-Groups": self.group1.name, + # } + ) + self.assertEqual(resp.status_code, 200) + + resp = self.client2.get('/profile', + # TODO - This can be replaced by following lines in the future + # Using of "headers" is supported since Django 4.2 + HTTP_REMOTE_USER=self.user.username, + HTTP_REMOTE_GROUPS=self.group2.name, + # headers = { + # "Remote-User": self.user.username, + # "Remote-Groups": self.group2.name, + # } + ) + self.assertEqual(resp.status_code, 200) + dgms = Dojo_Group_Member.objects.filter(user=self.user) + self.assertEqual(dgms.count(), 2) + + @override_settings( + AUTH_REMOTEUSER_ENABLED=True, + AUTH_REMOTEUSER_USERNAME_HEADER="HTTP_REMOTE_USER", + AUTH_REMOTEUSER_TRUSTED_PROXY=IPSet(['192.168.0.0/24', '192.168.2.0/24']), + ) + def test_trusted_proxy(self): + resp = self.client1.get('/profile', + REMOTE_ADDR='192.168.0.42', + # TODO - This can be replaced by following lines in the future + # Using of "headers" is supported since Django 4.2 + HTTP_REMOTE_USER=self.user.username, + # headers = { + # "Remote-User": self.user.username, + # } + ) + self.assertEqual(resp.status_code, 200) + + @override_settings( + AUTH_REMOTEUSER_ENABLED=True, + AUTH_REMOTEUSER_USERNAME_HEADER="HTTP_REMOTE_USER", + AUTH_REMOTEUSER_TRUSTED_PROXY=IPSet(['192.168.0.0/24', '192.168.2.0/24']), + ) + def test_untrusted_proxy(self): + with self.assertLogs('dojo.remote_user', level='DEBUG') as cm: + resp = self.client1.get('/profile', + REMOTE_ADDR='192.168.1.42', + # TODO - This can be replaced by following lines in the future + # Using of "headers" is supported since Django 4.2 + HTTP_REMOTE_USER=self.user.username, + # headers = { + # "Remote-User": self.user.username, + # } + ) + self.assertEqual(resp.status_code, 302) + self.assertIn('Requested came from untrusted proxy', cm.output[0]) From ca23b91b8470353b5e35c3109f0d7fc9cd8cd180 Mon Sep 17 00:00:00 2001 From: manuelsommer <47991713+manuel-sommer@users.noreply.github.com> Date: Fri, 19 Jan 2024 03:11:00 +0100 Subject: [PATCH 06/22] :tada: merge OpenVAS XML and CSV parsers (#9322) * :tada: merge OpenVAS XML and CSV formats to have only one parser for OpenVAS * Update docs/content/en/integrations/parsers/file/openvas.md Co-authored-by: Charles Neill <1749665+cneill@users.noreply.github.com> --------- Co-authored-by: Charles Neill <1749665+cneill@users.noreply.github.com> --- .../en/integrations/parsers/file/openvas.md | 5 + .../integrations/parsers/file/openvas_csv.md | 5 - .../integrations/parsers/file/openvas_xml.md | 5 - .../{openvas_xml => openvas}/__init__.py | 0 dojo/tools/{openvas_csv => openvas}/parser.py | 159 ++++++++++++------ dojo/tools/openvas_csv/__init__.py | 0 dojo/tools/openvas_xml/parser.py | 68 -------- .../{openvas_csv => openvas}/many_vuln.csv | 0 .../{openvas_xml => openvas}/many_vuln.xml | 0 .../{openvas_xml => openvas}/no_vuln.xml | 0 .../{openvas_csv => openvas}/one_vuln.csv | 0 .../{openvas_xml => openvas}/one_vuln.xml | 0 ...s_csv_parser.py => test_openvas_parser.py} | 50 +++++- unittests/tools/test_openvas_xml_parser.py | 43 ----- 14 files changed, 154 insertions(+), 181 deletions(-) create mode 100644 docs/content/en/integrations/parsers/file/openvas.md delete mode 100644 docs/content/en/integrations/parsers/file/openvas_csv.md delete mode 100644 docs/content/en/integrations/parsers/file/openvas_xml.md rename dojo/tools/{openvas_xml => openvas}/__init__.py (100%) rename dojo/tools/{openvas_csv => openvas}/parser.py (67%) mode change 100644 => 100755 delete mode 100644 dojo/tools/openvas_csv/__init__.py delete mode 100755 dojo/tools/openvas_xml/parser.py rename unittests/scans/{openvas_csv => openvas}/many_vuln.csv (100%) rename unittests/scans/{openvas_xml => openvas}/many_vuln.xml (100%) rename unittests/scans/{openvas_xml => openvas}/no_vuln.xml (100%) rename unittests/scans/{openvas_csv => openvas}/one_vuln.csv (100%) rename unittests/scans/{openvas_xml => openvas}/one_vuln.xml (100%) rename unittests/tools/{test_openvas_csv_parser.py => test_openvas_parser.py} (50%) delete mode 100644 unittests/tools/test_openvas_xml_parser.py diff --git a/docs/content/en/integrations/parsers/file/openvas.md b/docs/content/en/integrations/parsers/file/openvas.md new file mode 100644 index 00000000000..ab93b2498f4 --- /dev/null +++ b/docs/content/en/integrations/parsers/file/openvas.md @@ -0,0 +1,5 @@ +--- +title: "OpenVAS Parser" +toc_hide: true +--- +You can either upload the exported results of an OpenVAS Scan in a .csv or .xml format. \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/openvas_csv.md b/docs/content/en/integrations/parsers/file/openvas_csv.md deleted file mode 100644 index 621f055a41d..00000000000 --- a/docs/content/en/integrations/parsers/file/openvas_csv.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -title: "OpenVAS CSV" -toc_hide: true ---- -Import OpenVAS Scan in CSV format. Export as CSV Results on OpenVAS. diff --git a/docs/content/en/integrations/parsers/file/openvas_xml.md b/docs/content/en/integrations/parsers/file/openvas_xml.md deleted file mode 100644 index c361a1c44b0..00000000000 --- a/docs/content/en/integrations/parsers/file/openvas_xml.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -title: "OpenVAS XML" -toc_hide: true ---- -Import Greenbone OpenVAS Scan in XML format. Export as XML Results on OpenVAS. diff --git a/dojo/tools/openvas_xml/__init__.py b/dojo/tools/openvas/__init__.py similarity index 100% rename from dojo/tools/openvas_xml/__init__.py rename to dojo/tools/openvas/__init__.py diff --git a/dojo/tools/openvas_csv/parser.py b/dojo/tools/openvas/parser.py old mode 100644 new mode 100755 similarity index 67% rename from dojo/tools/openvas_csv/parser.py rename to dojo/tools/openvas/parser.py index 04d6166b231..9a8c9b79ad4 --- a/dojo/tools/openvas_csv/parser.py +++ b/dojo/tools/openvas/parser.py @@ -1,10 +1,10 @@ import csv import hashlib import io - from dateutil.parser import parse - -from dojo.models import Endpoint, Finding +from xml.dom import NamespaceErr +from defusedxml import ElementTree as ET +from dojo.models import Finding, Endpoint class ColumnMappingStrategy(object): @@ -194,7 +194,7 @@ def map_column_value(self, finding, column_value): finding.duplicate = self.evaluate_bool_value(column_value) -class OpenVASCsvParser(object): +class OpenVASParser(object): def create_chain(self): date_column_strategy = DateColumnMappingStrategy() title_column_strategy = TitleColumnMappingStrategy() @@ -240,62 +240,115 @@ def read_column_names(self, row): return column_names def get_scan_types(self): - return ["OpenVAS CSV"] + return ["OpenVAS Parser"] def get_label_for_scan_types(self, scan_type): return scan_type # no custom label for now def get_description_for_scan_types(self, scan_type): - return "Import OpenVAS Scan in CSV format. Export as CSV Results on OpenVAS." + return "Import CSV or XML output of Greenbone OpenVAS report." + + def convert_cvss_score(self, raw_value): + val = float(raw_value) + if val == 0.0: + return "Info" + elif val < 4.0: + return "Low" + elif val < 7.0: + return "Medium" + elif val < 9.0: + return "High" + else: + return "Critical" def get_findings(self, filename, test): - column_names = dict() - dupes = dict() - chain = self.create_chain() + if str(filename.name).endswith('.csv'): + column_names = dict() + dupes = dict() + chain = self.create_chain() + + content = filename.read() + if isinstance(content, bytes): + content = content.decode("utf-8") + reader = csv.reader(io.StringIO(content), delimiter=",", quotechar='"') + + row_number = 0 + for row in reader: + finding = Finding(test=test) + finding.unsaved_endpoints = [Endpoint()] + + if row_number == 0: + column_names = self.read_column_names(row) + row_number += 1 + continue + + column_number = 0 + for column in row: + chain.process_column( + column_names[column_number], column, finding + ) + column_number += 1 + + if finding is not None and row_number > 0: + if finding.title is None: + finding.title = "" + if finding.description is None: + finding.description = "" + + key = hashlib.sha256( + ( + str(finding.unsaved_endpoints[0]) + + "|" + + finding.severity + + "|" + + finding.title + + "|" + + finding.description + ).encode("utf-8") + ).hexdigest() + + if key not in dupes: + dupes[key] = finding - content = filename.read() - if isinstance(content, bytes): - content = content.decode("utf-8") - reader = csv.reader(io.StringIO(content), delimiter=",", quotechar='"') - - row_number = 0 - for row in reader: - finding = Finding(test=test) - finding.unsaved_endpoints = [Endpoint()] - - if row_number == 0: - column_names = self.read_column_names(row) row_number += 1 - continue - - column_number = 0 - for column in row: - chain.process_column( - column_names[column_number], column, finding + return list(dupes.values()) + elif str(filename.name).endswith('.xml'): + findings = [] + tree = ET.parse(filename) + root = tree.getroot() + if "report" not in root.tag: + raise NamespaceErr( + "This doesn't seem to be a valid Greenbone OpenVAS XML file." + ) + report = root.find("report") + results = report.find("results") + for result in results: + for finding in result: + if finding.tag == "name": + title = finding.text + description = [f"**Name**: {finding.text}"] + if finding.tag == "host": + title = title + "_" + finding.text + description.append(f"**Host**: {finding.text}") + if finding.tag == "port": + title = title + "_" + finding.text + description.append(f"**Port**: {finding.text}") + if finding.tag == "nvt": + description.append(f"**NVT**: {finding.text}") + if finding.tag == "severity": + severity = self.convert_cvss_score(finding.text) + description.append(f"**Severity**: {finding.text}") + if finding.tag == "qod": + description.append(f"**QOD**: {finding.text}") + if finding.tag == "description": + description.append(f"**Description**: {finding.text}") + + finding = Finding( + title=str(title), + description="\n".join(description), + severity=severity, + dynamic_finding=True, + static_finding=False ) - column_number += 1 - - if finding is not None and row_number > 0: - if finding.title is None: - finding.title = "" - if finding.description is None: - finding.description = "" - - key = hashlib.sha256( - ( - str(finding.unsaved_endpoints[0]) - + "|" - + finding.severity - + "|" - + finding.title - + "|" - + finding.description - ).encode("utf-8") - ).hexdigest() - - if key not in dupes: - dupes[key] = finding - - row_number += 1 - - return list(dupes.values()) + findings.append(finding) + return findings diff --git a/dojo/tools/openvas_csv/__init__.py b/dojo/tools/openvas_csv/__init__.py deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/dojo/tools/openvas_xml/parser.py b/dojo/tools/openvas_xml/parser.py deleted file mode 100755 index 65449e8c812..00000000000 --- a/dojo/tools/openvas_xml/parser.py +++ /dev/null @@ -1,68 +0,0 @@ -from xml.dom import NamespaceErr -from defusedxml import ElementTree as ET -from dojo.models import Finding - - -class OpenVASXMLParser(object): - def get_scan_types(self): - return ["OpenVAS XML"] - - def get_label_for_scan_types(self, scan_type): - return scan_type # no custom label for now - - def get_description_for_scan_types(self, scan_type): - return "Import XML output of Greenbone OpenVAS XML report." - - def convert_cvss_score(self, raw_value): - val = float(raw_value) - if val == 0.0: - return "Info" - elif val < 4.0: - return "Low" - elif val < 7.0: - return "Medium" - elif val < 9.0: - return "High" - else: - return "Critical" - - def get_findings(self, file, test): - findings = [] - tree = ET.parse(file) - root = tree.getroot() - if "report" not in root.tag: - raise NamespaceErr( - "This doesn't seem to be a valid Greenbone OpenVAS xml file." - ) - report = root.find("report") - results = report.find("results") - for result in results: - for finding in result: - if finding.tag == "name": - title = finding.text - description = [f"**Name**: {finding.text}"] - if finding.tag == "host": - title = title + "_" + finding.text - description.append(f"**Host**: {finding.text}") - if finding.tag == "port": - title = title + "_" + finding.text - description.append(f"**Port**: {finding.text}") - if finding.tag == "nvt": - description.append(f"**NVT**: {finding.text}") - if finding.tag == "severity": - severity = self.convert_cvss_score(finding.text) - description.append(f"**Severity**: {finding.text}") - if finding.tag == "qod": - description.append(f"**QOD**: {finding.text}") - if finding.tag == "description": - description.append(f"**Description**: {finding.text}") - - finding = Finding( - title=str(title), - description="\n".join(description), - severity=severity, - dynamic_finding=True, - static_finding=False - ) - findings.append(finding) - return findings diff --git a/unittests/scans/openvas_csv/many_vuln.csv b/unittests/scans/openvas/many_vuln.csv similarity index 100% rename from unittests/scans/openvas_csv/many_vuln.csv rename to unittests/scans/openvas/many_vuln.csv diff --git a/unittests/scans/openvas_xml/many_vuln.xml b/unittests/scans/openvas/many_vuln.xml similarity index 100% rename from unittests/scans/openvas_xml/many_vuln.xml rename to unittests/scans/openvas/many_vuln.xml diff --git a/unittests/scans/openvas_xml/no_vuln.xml b/unittests/scans/openvas/no_vuln.xml similarity index 100% rename from unittests/scans/openvas_xml/no_vuln.xml rename to unittests/scans/openvas/no_vuln.xml diff --git a/unittests/scans/openvas_csv/one_vuln.csv b/unittests/scans/openvas/one_vuln.csv similarity index 100% rename from unittests/scans/openvas_csv/one_vuln.csv rename to unittests/scans/openvas/one_vuln.csv diff --git a/unittests/scans/openvas_xml/one_vuln.xml b/unittests/scans/openvas/one_vuln.xml similarity index 100% rename from unittests/scans/openvas_xml/one_vuln.xml rename to unittests/scans/openvas/one_vuln.xml diff --git a/unittests/tools/test_openvas_csv_parser.py b/unittests/tools/test_openvas_parser.py similarity index 50% rename from unittests/tools/test_openvas_csv_parser.py rename to unittests/tools/test_openvas_parser.py index 6931edaea65..a3fdf354534 100644 --- a/unittests/tools/test_openvas_csv_parser.py +++ b/unittests/tools/test_openvas_parser.py @@ -1,16 +1,15 @@ from ..dojo_test_case import DojoTestCase -from dojo.tools.openvas_csv.parser import OpenVASCsvParser +from dojo.tools.openvas.parser import OpenVASParser from dojo.models import Test, Engagement, Product -class TestOpenVASUploadCsvParser(DojoTestCase): - +class TestOpenVASParser(DojoTestCase): def test_openvas_csv_one_vuln(self): - with open("unittests/scans/openvas_csv/one_vuln.csv") as f: + with open("unittests/scans/openvas/one_vuln.csv") as f: test = Test() test.engagement = Engagement() test.engagement.product = Product() - parser = OpenVASCsvParser() + parser = OpenVASParser() findings = parser.get_findings(f, test) for finding in findings: for endpoint in finding.unsaved_endpoints: @@ -27,11 +26,11 @@ def test_openvas_csv_one_vuln(self): self.assertEqual(22, findings[0].unsaved_endpoints[0].port) def test_openvas_csv_many_vuln(self): - with open("unittests/scans/openvas_csv/many_vuln.csv") as f: + with open("unittests/scans/openvas/many_vuln.csv") as f: test = Test() test.engagement = Engagement() test.engagement.product = Product() - parser = OpenVASCsvParser() + parser = OpenVASParser() findings = parser.get_findings(f, test) for finding in findings: for endpoint in finding.unsaved_endpoints: @@ -48,3 +47,40 @@ def test_openvas_csv_many_vuln(self): self.assertEqual("LOGSRV", endpoint.host) self.assertEqual("tcp", endpoint.protocol) self.assertEqual(9200, endpoint.port) + + def test_openvas_xml_no_vuln(self): + with open("unittests/scans/openvas/no_vuln.xml") as f: + test = Test() + test.engagement = Engagement() + test.engagement.product = Product() + parser = OpenVASParser() + findings = parser.get_findings(f, test) + self.assertEqual(0, len(findings)) + + def test_openvas_xml_one_vuln(self): + with open("unittests/scans/openvas/one_vuln.xml") as f: + test = Test() + test.engagement = Engagement() + test.engagement.product = Product() + parser = OpenVASParser() + findings = parser.get_findings(f, test) + for finding in findings: + for endpoint in finding.unsaved_endpoints: + endpoint.clean() + self.assertEqual(1, len(findings)) + with self.subTest(i=0): + finding = findings[0] + self.assertEqual("Mozilla Firefox Security Update (mfsa_2023-32_2023-36) - Windows_10.0.101.2_general/tcp", finding.title) + self.assertEqual("Critical", finding.severity) + + def test_openvas_xml_many_vuln(self): + with open("unittests/scans/openvas/many_vuln.xml") as f: + test = Test() + test.engagement = Engagement() + test.engagement.product = Product() + parser = OpenVASParser() + findings = parser.get_findings(f, test) + for finding in findings: + for endpoint in finding.unsaved_endpoints: + endpoint.clean() + self.assertEqual(44, len(findings)) diff --git a/unittests/tools/test_openvas_xml_parser.py b/unittests/tools/test_openvas_xml_parser.py deleted file mode 100644 index 40004d6e0b2..00000000000 --- a/unittests/tools/test_openvas_xml_parser.py +++ /dev/null @@ -1,43 +0,0 @@ -from ..dojo_test_case import DojoTestCase -from dojo.tools.openvas_xml.parser import OpenVASXMLParser -from dojo.models import Test, Engagement, Product - - -class TestOpenVASUploadXMLParser(DojoTestCase): - - def test_openvas_xml_no_vuln(self): - with open("unittests/scans/openvas_xml/no_vuln.xml") as f: - test = Test() - test.engagement = Engagement() - test.engagement.product = Product() - parser = OpenVASXMLParser() - findings = parser.get_findings(f, test) - self.assertEqual(0, len(findings)) - - def test_openvas_xml_one_vuln(self): - with open("unittests/scans/openvas_xml/one_vuln.xml") as f: - test = Test() - test.engagement = Engagement() - test.engagement.product = Product() - parser = OpenVASXMLParser() - findings = parser.get_findings(f, test) - for finding in findings: - for endpoint in finding.unsaved_endpoints: - endpoint.clean() - self.assertEqual(1, len(findings)) - with self.subTest(i=0): - finding = findings[0] - self.assertEqual("Mozilla Firefox Security Update (mfsa_2023-32_2023-36) - Windows_10.0.101.2_general/tcp", finding.title) - self.assertEqual("Critical", finding.severity) - - def test_openvas_xml_many_vuln(self): - with open("unittests/scans/openvas_xml/many_vuln.xml") as f: - test = Test() - test.engagement = Engagement() - test.engagement.product = Product() - parser = OpenVASXMLParser() - findings = parser.get_findings(f, test) - for finding in findings: - for endpoint in finding.unsaved_endpoints: - endpoint.clean() - self.assertEqual(44, len(findings)) From db19c441b44719631e6463bc99def79146b45115 Mon Sep 17 00:00:00 2001 From: manuelsommer <47991713+manuel-sommer@users.noreply.github.com> Date: Fri, 19 Jan 2024 03:11:28 +0100 Subject: [PATCH 07/22] :bug: fix #8435, advance semgrep (#9323) --- dojo/tools/semgrep/parser.py | 6 ++- unittests/scans/semgrep/issue_8435.json | 69 +++++++++++++++++++++++++ unittests/tools/test_semgrep_parser.py | 7 +++ 3 files changed, 81 insertions(+), 1 deletion(-) create mode 100644 unittests/scans/semgrep/issue_8435.json diff --git a/dojo/tools/semgrep/parser.py b/dojo/tools/semgrep/parser.py index 1a39e42d9d0..f22364854ab 100644 --- a/dojo/tools/semgrep/parser.py +++ b/dojo/tools/semgrep/parser.py @@ -101,6 +101,10 @@ def get_description(self, item): snippet = item["extra"].get("lines") if snippet is not None: - description += "**Snippet:**\n```{}```\n".format(snippet) + if "", + "message": "Twitter OAuth detected", + "metadata": { + "category": "security", + "confidence": "LOW", + "cwe": [ + "CWE-798: Use of Hard-coded Credentials" + ], + "cwe2021-top25": true, + "cwe2022-top25": true, + "impact": "MEDIUM", + "license": "Commons Clause License Condition v1.0[LGPL-2.1-only]", + "likelihood": "LOW", + "owasp": [ + "A07:2021 - Identification and Authentication Failures" + ], + "references": [ + "https://owasp.org/Top10/A07_2021-Identification_and_Authentication_Failures" + ], + "semgrep.dev": { + "rule": { + "origin": "community", + "rule_id": "BYUNq8", + "url": "https://semgrep.dev/playground/r/A8TRG6/generic.secrets.security.detected-twitter-oauth.detected-twitter-oauth", + "version_id": "A8TRG6" + } + }, + "shortlink": "https://sg.run/Lwb7", + "source": "https://semgrep.dev/r/generic.secrets.security.detected-twitter-oauth.detected-twitter-oauth", + "source-rule-url": "https://github.com/dxa4481/truffleHogRegexes/blob/master/truffleHogRegexes/regexes.json", + "subcategory": [ + "audit" + ], + "technology": [ + "secrets", + "twitter" + ], + "vulnerability_class": [ + "Hard-coded Secrets" + ] + }, + "metavars": {}, + "severity": "ERROR" + }, + "path": "/somedir/somefile.js", + "start": { + "col": 37650, + "line": 1, + "offset": 37649 + } + } + ], + "version": "1.33.2" +} \ No newline at end of file diff --git a/unittests/tools/test_semgrep_parser.py b/unittests/tools/test_semgrep_parser.py index 074cb15e96f..bfa6c822716 100644 --- a/unittests/tools/test_semgrep_parser.py +++ b/unittests/tools/test_semgrep_parser.py @@ -121,3 +121,10 @@ def test_different_lines_same_fingerprint(self): self.assertEqual(len(findings_first), len(findings_second)) for first, second in zip(findings_first, findings_second): self.assertEqual(first.unique_id_from_tool, second.unique_id_from_tool) + + def test_parse_issue_8435(self): + testfile = open("unittests/scans/semgrep/issue_8435.json") + parser = SemgrepParser() + findings = parser.get_findings(testfile, Test()) + testfile.close() + self.assertEqual(1, len(findings)) From 7dc1f7be63920d145268b26672e9aba270675551 Mon Sep 17 00:00:00 2001 From: "F. Markus" <82434148+flmarkus@users.noreply.github.com> Date: Fri, 19 Jan 2024 03:12:45 +0100 Subject: [PATCH 08/22] Improve kiuwan import parser (#9316) * Update parser.py Fix missing findings in kiuwan import. Added the file to the description to have a unique hash for findings that are the same except the file name. * Updated unit test * Fix defects import --------- Co-authored-by: Florian Markus --- dojo/tools/kiuwan/parser.py | 5 ++++- unittests/scans/kiuwan/issue_9308.csv | 2 +- unittests/scans/kiuwan/kiuwan_defects.csv | 2 ++ unittests/tools/test_kiuwan_parser.py | 7 ++++++- 4 files changed, 13 insertions(+), 3 deletions(-) create mode 100644 unittests/scans/kiuwan/kiuwan_defects.csv diff --git a/dojo/tools/kiuwan/parser.py b/dojo/tools/kiuwan/parser.py index e1b7d540ec2..a79c828ecda 100644 --- a/dojo/tools/kiuwan/parser.py +++ b/dojo/tools/kiuwan/parser.py @@ -62,11 +62,14 @@ def get_findings(self, filename, test): + row["Software characteristic"] + "\n\n" + "**Vulnerability type** : " - + row["Vulnerability type"] + + (row["Vulnerability type"] if "Vulnerability type" in row else "") + "\n\n" + "**CWE Scope** : " + row["CWE Scope"] + "\n\n" + + "**File** : " + + row["File"] + + "\n\n" + "**Line number** : " + row["Line number"] + "\n\n" diff --git a/unittests/scans/kiuwan/issue_9308.csv b/unittests/scans/kiuwan/issue_9308.csv index f4326fcd287..6ff8c197e18 100644 --- a/unittests/scans/kiuwan/issue_9308.csv +++ b/unittests/scans/kiuwan/issue_9308.csv @@ -1,3 +1,3 @@ Rule code,Rule,Priority,CWE,Software characteristic,Vulnerability type,Language,Effort,File,Line number,Line text,Source file,Source line number,Source line text,Muted,Normative,Status,CWE Scope,Framework OPT.JAVASCRIPT.ERRORCOMUN.UnusedLocalVar,Avoid unused local variable,High,101,Maintainability,Other,Typescript,03m,file.js,12,self = this,,,,No,"Agile Alliance:Concise-CDED,CWE:563",none,, -OPT.JAVASCRIPT.ERRORCOMUN.UnusedLocalVar,Avoid unused local variable,High,102,Maintainability,Other,Typescript,03m,another-file.js,12,self = this,,,,No,"Agile Alliance:Concise-CDED,CWE:563",none,, +OPT.JAVASCRIPT.ERRORCOMUN.UnusedLocalVar,Avoid unused local variable,High,101,Maintainability,Other,Typescript,03m,another-file.js,12,self = this,,,,No,"Agile Alliance:Concise-CDED,CWE:563",none,, diff --git a/unittests/scans/kiuwan/kiuwan_defects.csv b/unittests/scans/kiuwan/kiuwan_defects.csv new file mode 100644 index 00000000000..87c6de3873c --- /dev/null +++ b/unittests/scans/kiuwan/kiuwan_defects.csv @@ -0,0 +1,2 @@ +Rule code,Rule,Priority,Software characteristic,Language,Effort,File,Line number,Line text,Source file,Source line number,Source line text,Muted,Normative,Status,CWE Scope,Framework +OPT.PLSQL.GEN_PLSQL.VAR2,"Define variables as VARCHAR2, nor as VARCHAR",Very High,Efficiency,PL-SQL,03m,file.sql,3," userid varchar(250),",,,,No,,none,, diff --git a/unittests/tools/test_kiuwan_parser.py b/unittests/tools/test_kiuwan_parser.py index 340868c0181..2f7a25e0331 100644 --- a/unittests/tools/test_kiuwan_parser.py +++ b/unittests/tools/test_kiuwan_parser.py @@ -6,7 +6,6 @@ class TestKiuwanParser(DojoTestCase): def test_parse_file_with_no_vuln_has_no_findings(self): - testfile = open("unittests/scans/kiuwan/kiuwan_no_vuln.csv") parser = KiuwanParser() findings = parser.get_findings(testfile, Test()) @@ -24,6 +23,12 @@ def test_parse_file_with_multiple_vuln_has_multiple_finding(self): findings = parser.get_findings(testfile, Test()) self.assertEqual(131, len(findings)) + def test_parse_file_with_defects(self): + testfile = open("unittests/scans/kiuwan/kiuwan_defects.csv") + parser = KiuwanParser() + findings = parser.get_findings(testfile, Test()) + self.assertEqual(1, len(findings)) + def test_parse_file_issue_9308(self): testfile = open("unittests/scans/kiuwan/issue_9308.csv") parser = KiuwanParser() From 6a267b5285e535ea49d31a37f9d5210753140afa Mon Sep 17 00:00:00 2001 From: manuelsommer <47991713+manuel-sommer@users.noreply.github.com> Date: Fri, 19 Jan 2024 03:13:37 +0100 Subject: [PATCH 09/22] :bug: fix #7690, microfocus webinspect NoneType Object (#9327) --- dojo/tools/microfocus_webinspect/parser.py | 20 +- .../microfocus_webinspect/issue_7690.xml | 38859 ++++++++++++++++ .../test_microfocus_webinspect_parser.py | 11 + 3 files changed, 38879 insertions(+), 11 deletions(-) create mode 100644 unittests/scans/microfocus_webinspect/issue_7690.xml diff --git a/dojo/tools/microfocus_webinspect/parser.py b/dojo/tools/microfocus_webinspect/parser.py index 114e11d59c4..1c12528ee14 100644 --- a/dojo/tools/microfocus_webinspect/parser.py +++ b/dojo/tools/microfocus_webinspect/parser.py @@ -55,17 +55,13 @@ def get_findings(self, file, test): cwe = 0 description = "" classifications = issue.find("Classifications") - for content in classifications.findall("Classification"): - # detect CWE number - # TODO support more than one CWE number - if ( - "kind" in content.attrib - and "CWE" == content.attrib["kind"] - ): - cwe = MicrofocusWebinspectParser.get_cwe( - content.attrib["identifier"] - ) - description += "\n\n" + content.text + "\n" + if classifications is not None: + for content in classifications.findall('Classification'): + # detect CWE number + # TODO support more than one CWE number + if "kind" in content.attrib and "CWE" == content.attrib["kind"]: + cwe = MicrofocusWebinspectParser.get_cwe(content.attrib['identifier']) + description += "\n\n" + content.text + "\n" finding = Finding( title=issue.findtext("Name"), @@ -114,6 +110,8 @@ def convert_severity(val): return "Medium" elif val == "3": return "High" + elif val == "4": + return "Critical" else: return "Info" diff --git a/unittests/scans/microfocus_webinspect/issue_7690.xml b/unittests/scans/microfocus_webinspect/issue_7690.xml new file mode 100644 index 00000000000..fc64093c0c9 --- /dev/null +++ b/unittests/scans/microfocus_webinspect/issue_7690.xml @@ -0,0 +1,38859 @@ +http://zero.webappsecurity.com:80/httpzero.webappsecurity.com80Best Practices1154655970Privacy Violation: AutocompleteCWE-525: Information Exposure Through Browser CachingSecurity FeaturesPrivacy Violation: AutocompleteSummaryImplicationExecutionFixReference InfoMicrosoft:
Autocomplete Security]]>
Vulnerability11551113091Web Server Misconfiguration: Insecure Content-Type SettingCWE-79: Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting')CWE-116: Improper Encoding or Escaping of OutputEnvironmentWeb Server Misconfiguration: Insecure Content-Type SettingSummaryContent-Type specified by the application in specific cases or ignoring the content when no mime type is specified. Inconsistencies introduced by the mime sniffing techniques could allow attackers to conduct Cross-Site Scripting attacks or steal sensitive user data. WebInspect has determined that the application fails to instruct the browser to strictly enforce the Content-Type specification supplied in the response.

+Web server misconfiguration can cause an application to send HTTP responses with the missing Content-Type header or specify a mime type that does not match up accurately with the response content. When a browser receives such a response, it attempts to programmatically determine the mime type based on the content returned in the response. The mime type derived by the browser, however, might not accurately match the one intended by the application developer. Such inconsistencies have historically allowed attackers to conduct Cross-Site Scripting or data theft using Cascading Style Sheets (CSS) by letting them bypass server-side filters using mime type checking and yet have the malicious payload with misleading mime type specification executed on the client-side due to the browser mime sniffing policies.

+Microsoft Internet Explorer (IE) introduced the X-Content-Type-Options: nosniff specification that application developers can include in all responses to ensure that mime sniffing does not occur on the client-side. This protection mechanism is limited to Microsoft Internet Explorer versions 9 and above.]]>
ImplicationExecution
    1. Build a test page that includes a reference to an external JavaScript or CSS resource
    2. Configure the server to return the external resource with an incorrect mime type specification
    3. Visit the test page using an old version of Microsoft’s Internet Explorer (version IE 8) browser
    4. Interpretation of the external content as JavaScript or CSS by the browser despite the misleading mime type specification indicates a potential for compromise.
]]>
FixX-Content-Type-Options: nosniff specification in the response headers. In addition, ensure that following safety precautions are also put in place: +
      1. Verify that the web server configuration will send the accurate mime type information in the Content-Type header of each HTTP response
      2. Configure the server to send a default Content-Type of text-plain or application/octet-stream to tackle failure scenarios
      3. Ensure that appropriate Character Set is specified in the Content-Type header
      4. Configure the server to send Content-Disposition: attachment; filename=name; for content without an explicit content type specification.
]]>
Reference InfoMicrosoft Internet Explorer:
MIME-Handling Change: X-Content-Type-Options: nosniff
MIME-Handling Changes in Internet Explorer

OWASP:
OWASP Testing Guide Appendix D: Encoded Injection
List of Useful HTTP Headers

CSS Data Theft:
CVE-2010-0654]]>
Info11674116760HLI: Detected LibrariesSummary Hacker Level Insights provides developers and security professionals with more context relating to the overall security posture of their application. The version was detected to be in use by during this scan. While these findings do not necessarily represent a security vulnerability, it is important to note that attackers commonly perform reconnaissance of their target in an attempt to identify known weaknesses or patterns. Knowing what the hacker can see provides context which can help teams better secure their applications.
]]>
ImplicationExecutionFixReference Info
Best PracticesCUSTOM55460Compliance Failure: Missing Privacy PolicySecurity FeaturesCompliance Failure: Missing Privacy PolicySummaryA privacy policy was not supplied by the web application within the scope of this audit. Many legislative initiatives require that organizations place a publicly accessible document within their web application that defines their website’s privacy policy. As a general rule, these privacy policies must detail what information an organization collects, the purpose for collecting it, potential avenues of disclosure, and methods for addressing potential grievances.

Various laws governing privacy policies include the Gramm-Leach-Bliley Act, Health Insurance Portability and Accountability Act (HIPAA), the California Online Privacy Protection Act of 2003, European Union's Data Protection Directive and others.

]]>
ImplicationExecutionAll of the web pages accessible within the scope of the scan are sampled for textual content that often constitutes a privacy policy statement. A violation is reported upon completion of the web application crawl without a successful match against any of the web pages.

Note that the privacy policy of your application could be located on another host or within a section of the site that was not configured as part of the scan. To validate, please try to access the privacy policy of your website and check to see if it was part of the scan.


]]>
Fix
Descriptions:
+Any standard web application privacy policy should include the following components: +
  • A description of the intended purpose for collecting the data.
  • A description of the use of the data.
  • Methods for limiting the use and disclosure of the information.
  • A list of the types of third parties to whom the information might be disclosed.
  • Contact information for inquires and complaints.
]]>
Reference InfoCalifornia Online Privacy Protection Act
http://oag.ca.gov/privacy/COPPA

National Conference of State Legislation
http://www.ncsl.org/issues-research/telecom/state-laws-related-to-internet-privacy.aspx

Gramm-Leach-Bliley Act
http://www.gpo.gov/fdsys/pkg/PLAW-106publ102/pdf/PLAW-106publ102.pdf

Health Insurance Portability and Accountability Act of 1996
https://www.cms.gov/Regulations-and-Guidance/HIPAA-Administrative-Simplification/HIPAAGenInfo/downloads/HIPAALaw.pdf

Health Insurance Portability and Accountability Act of 1996
http://ec.europa.eu/justice/policies/privacy/docs/guide/guide-ukingdom_en.pdf

]]>
+ + + + Zero - Personal Banking - Loans - Credit Cards + + + + + + + + + + + + + + + +
+ + + + +
+
+
+
+ +
+ + +
+ +
+
+ +
+
+ +
+ +
+
+

Online Banking

+

Click the button below to view online banking features.

+ More Services +
+
+
+

Checking Account Activity

+

Use Zero to view the most up-to-date listings of your deposits, withdrawals, interest payments, and a number of other useful transactions. +

+
+
+
+
+

Transfer Funds

+

Use Zero to safely and securely transfer funds between accounts. There is no hold placed on online money transfers, so your funds are available when you need them. +

+
+
+
+
+

My Money Map

+

Use Zero to set up and monitor your personalized money map. A money map is an easy-to-use online tool that helps you manage your finances efficiently. With Money Map, you can create a budget, sort your finances into spending and savings categories, check the interest your accounts are earning, and gain new understanding of your patterns with the help of Zero’s clear charts and graphs. +

+
+
+
+ + +
+
+ +
+
+ +
+
+
+
+
+
    +
  • Download WebInspect
  • +
+
+ +
+
    +
  • Terms of Use
  • +
+
+ +
+
    +
  • Contact Micro Focus
  • +
  • Privacy Statement
  • + +
+
+
+ +
+
+ The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating + the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting + Web application vulnerabilities. This site is not a real banking site and any similarities to third party products + and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, + either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. + Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at + https://www.microfocus.com/about/legal/#privacy + and Micro Focus Fortify’s Online Privacy Statement found at + https://www.microfocus.com/about/legal/#privacy. + +

+ + Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. +
+
+
+
+
+ + + + +]]>
GET/HTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0 +
Accept*/*
Accept-Encodinggzip, deflate
Pragmano-cache
User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
Hostzero.webappsecurity.com
ConnectionKeep-Alive
X-WIPPAscVersion=22.2.0.253
X-Scan-MemoCategory="Crawl";SID="306E42D0F653E7CFA6720D7F15AE506B";SessionType="ExternalAddedToCrawl";CrawlType="None";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";tht="31";
X-RequestManager-Memostid="11";stmi="0";sc="1";rid="d00ce063";
X-Request-Memorid="e76fec68";sc="1";thid="24";
CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0
HTTP/1.1200OK + + + + Zero - Personal Banking - Loans - Credit Cards + + + + + + + + + + + + + + + +
+ + + + +
+
+
+
+ +
+ + +
+ +
+
+ +
+
+ +
+ +
+
+

Online Banking

+

Click the button below to view online banking features.

+ More Services +
+
+
+

Checking Account Activity

+

Use Zero to view the most up-to-date listings of your deposits, withdrawals, interest payments, and a number of other useful transactions. +

+
+
+
+
+

Transfer Funds

+

Use Zero to safely and securely transfer funds between accounts. There is no hold placed on online money transfers, so your funds are available when you need them. +

+
+
+
+
+

My Money Map

+

Use Zero to set up and monitor your personalized money map. A money map is an easy-to-use online tool that helps you manage your finances efficiently. With Money Map, you can create a budget, sort your finances into spending and savings categories, check the interest your accounts are earning, and gain new understanding of your patterns with the help of Zero’s clear charts and graphs. +

+
+
+
+ + +
+
+ +
+
+ +
+
+
+
+
+
    +
  • Download WebInspect
  • +
+
+ +
+
    +
  • Terms of Use
  • +
+
+ +
+
    +
  • Contact Micro Focus
  • +
  • Privacy Statement
  • + +
+
+
+ +
+
+ The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating + the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting + Web application vulnerabilities. This site is not a real banking site and any similarities to third party products + and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, + either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. + Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at + https://www.microfocus.com/about/legal/#privacy + and Micro Focus Fortify’s Online Privacy Statement found at + https://www.microfocus.com/about/legal/#privacy. + +

+ + Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. +
+
+
+
+
+ + + + +]]>
DateFri, 24 Feb 2023 14:01:38 GMT
ServerApache-Coyote/1.1
Access-Control-Allow-Origin*
Cache-Controlno-cache, max-age=0, must-revalidate, no-store
Content-Typetext/html;charset=UTF-8
Content-Languageen-US
Keep-Alivetimeout=5, max=100
ConnectionKeep-Alive
Content-Length12471
/search.htmlsearchTermtextsearch-query
http://zero.webappsecurity.com:80/resources/css/font-awesome.csshttpzero.webappsecurity.com80 .active > a > [class^="icon-"], +.nav-pills > .active > a > [class*=" icon-"], +.nav-list > .active > a > [class^="icon-"], +.nav-list > .active > a > [class*=" icon-"], +.navbar-inverse .nav > .active > a > [class^="icon-"], +.navbar-inverse .nav > .active > a > [class*=" icon-"], +.dropdown-menu > li > a:hover > [class^="icon-"], +.dropdown-menu > li > a:hover > [class*=" icon-"], +.dropdown-menu > .active > a > [class^="icon-"], +.dropdown-menu > .active > a > [class*=" icon-"], +.dropdown-submenu:hover > a > [class^="icon-"], +.dropdown-submenu:hover > a > [class*=" icon-"] { + background-image: none; +} +[class^="icon-"]:before, +[class*=" icon-"]:before { + text-decoration: inherit; + display: inline-block; + speak: none; +} +/* makes sure icons active on rollover in links */ +a [class^="icon-"], +a [class*=" icon-"] { + display: inline-block; +} +/* makes the font 33% larger relative to the icon container */ +.icon-large:before { + vertical-align: -10%; + font-size: 1.3333333333333333em; +} +.btn [class^="icon-"], +.nav [class^="icon-"], +.btn [class*=" icon-"], +.nav [class*=" icon-"] { + display: inline; + /* keeps button heights with and without icons the same */ + +} +.btn [class^="icon-"].icon-large, +.nav [class^="icon-"].icon-large, +.btn [class*=" icon-"].icon-large, +.nav [class*=" icon-"].icon-large { + line-height: .9em; +} +.btn [class^="icon-"].icon-spin, +.nav [class^="icon-"].icon-spin, +.btn [class*=" icon-"].icon-spin, +.nav [class*=" icon-"].icon-spin { + display: inline-block; +} +.nav-tabs [class^="icon-"], +.nav-pills [class^="icon-"], +.nav-tabs [class*=" icon-"], +.nav-pills [class*=" icon-"] { + /* keeps button heights with and without icons the same */ + +} +.nav-tabs [class^="icon-"], +.nav-pills [class^="icon-"], +.nav-tabs [class*=" icon-"], +.nav-pills [class*=" icon-"], +.nav-tabs [class^="icon-"].icon-large, +.nav-pills [class^="icon-"].icon-large, +.nav-tabs [class*=" icon-"].icon-large, +.nav-pills [class*=" icon-"].icon-large { + line-height: .9em; +} +li [class^="icon-"], +.nav li [class^="icon-"], +li [class*=" icon-"], +.nav li [class*=" icon-"] { + display: inline-block; + width: 1.25em; + text-align: center; +} +li [class^="icon-"].icon-large, +.nav li [class^="icon-"].icon-large, +li [class*=" icon-"].icon-large, +.nav li [class*=" icon-"].icon-large { + /* increased font size for icon-large */ + + width: 1.5625em; +} +ul.icons { + list-style-type: none; + text-indent: -0.75em; +} +ul.icons li [class^="icon-"], +ul.icons li [class*=" icon-"] { + width: .75em; +} +.icon-muted { + color: #eeeeee; +} +.icon-border { + border: solid 1px #eeeeee; + padding: .2em .25em .15em; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; +} +.icon-2x { + font-size: 2em; +} +.icon-2x.icon-border { + border-width: 2px; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; +} +.icon-3x { + font-size: 3em; +} +.icon-3x.icon-border { + border-width: 3px; + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + border-radius: 5px; +} +.icon-4x { + font-size: 4em; +} +.icon-4x.icon-border { + border-width: 4px; + -webkit-border-radius: 6px; + -moz-border-radius: 6px; + border-radius: 6px; +} +.pull-right { + float: right; +} +.pull-left { + float: left; +} +[class^="icon-"].pull-left, +[class*=" icon-"].pull-left { + margin-right: .3em; +} +[class^="icon-"].pull-right, +[class*=" icon-"].pull-right { + margin-left: .3em; +} +.btn [class^="icon-"].pull-left.icon-2x, +.btn [class*=" icon-"].pull-left.icon-2x, +.btn [class^="icon-"].pull-right.icon-2x, +.btn [class*=" icon-"].pull-right.icon-2x { + margin-top: .18em; +} +.btn [class^="icon-"].icon-spin.icon-large, +.btn [class*=" icon-"].icon-spin.icon-large { + line-height: .8em; +} +.btn.btn-small [class^="icon-"].pull-left.icon-2x, +.btn.btn-small [class*=" icon-"].pull-left.icon-2x, +.btn.btn-small [class^="icon-"].pull-right.icon-2x, +.btn.btn-small [class*=" icon-"].pull-right.icon-2x { + margin-top: .25em; +} +.btn.btn-large [class^="icon-"], +.btn.btn-large [class*=" icon-"] { + margin-top: 0; +} +.btn.btn-large [class^="icon-"].pull-left.icon-2x, +.btn.btn-large [class*=" icon-"].pull-left.icon-2x, +.btn.btn-large [class^="icon-"].pull-right.icon-2x, +.btn.btn-large [class*=" icon-"].pull-right.icon-2x { + margin-top: .05em; +} +.btn.btn-large [class^="icon-"].pull-left.icon-2x, +.btn.btn-large [class*=" icon-"].pull-left.icon-2x { + margin-right: .2em; +} +.btn.btn-large [class^="icon-"].pull-right.icon-2x, +.btn.btn-large [class*=" icon-"].pull-right.icon-2x { + margin-left: .2em; +} +.icon-spin { + display: inline-block; + -moz-animation: spin 2s infinite linear; + -o-animation: spin 2s infinite linear; + -webkit-animation: spin 2s infinite linear; + animation: spin 2s infinite linear; +} +@-moz-keyframes spin { + 0% { -moz-transform: rotate(0deg); } + 100% { -moz-transform: rotate(359deg); } +} +@-webkit-keyframes spin { + 0% { -webkit-transform: rotate(0deg); } + 100% { -webkit-transform: rotate(359deg); } +} +@-o-keyframes spin { + 0% { -o-transform: rotate(0deg); } + 100% { -o-transform: rotate(359deg); } +} +@-ms-keyframes spin { + 0% { -ms-transform: rotate(0deg); } + 100% { -ms-transform: rotate(359deg); } +} +@keyframes spin { + 0% { transform: rotate(0deg); } + 100% { transform: rotate(359deg); } +} +@-moz-document url-prefix() { + .icon-spin { + height: .9em; + } + .btn .icon-spin { + height: auto; + } + .icon-spin.icon-large { + height: 1.25em; + } + .btn .icon-spin.icon-large { + height: .75em; + } +} +/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen + readers do not read off random characters that represent icons */ +.icon-glass:before { content: "\f000"; } +.icon-music:before { content: "\f001"; } +.icon-search:before { content: "\f002"; } +.icon-envelope:before { content: "\f003"; } +.icon-heart:before { content: "\f004"; } +.icon-star:before { content: "\f005"; } +.icon-star-empty:before { content: "\f006"; } +.icon-user:before { content: "\f007"; } +.icon-film:before { content: "\f008"; } +.icon-th-large:before { content: "\f009"; } +.icon-th:before { content: "\f00a"; } +.icon-th-list:before { content: "\f00b"; } +.icon-ok:before { content: "\f00c"; } +.icon-remove:before { content: "\f00d"; } +.icon-zoom-in:before { content: "\f00e"; } + +.icon-zoom-out:before { content: "\f010"; } +.icon-off:before { content: "\f011"; } +.icon-signal:before { content: "\f012"; } +.icon-cog:before { content: "\f013"; } +.icon-trash:before { content: "\f014"; } +.icon-home:before { content: "\f015"; } +.icon-file:before { content: "\f016"; } +.icon-time:before { content: "\f017"; } +.icon-road:before { content: "\f018"; } +.icon-download-alt:before { content: "\f019"; } +.icon-download:before { content: "\f01a"; } +.icon-upload:before { content: "\f01b"; } +.icon-inbox:before { content: "\f01c"; } +.icon-play-circle:before { content: "\f01d"; } +.icon-repeat:before { content: "\f01e"; } + +/* \f020 doesn't work in Safari. all shifted one down */ +.icon-refresh:before { content: "\f021"; } +.icon-list-alt:before { content: "\f022"; } +.icon-lock:before { content: "\f023"; } +.icon-flag:before { content: "\f024"; } +.icon-headphones:before { content: "\f025"; } +.icon-volume-off:before { content: "\f026"; } +.icon-volume-down:before { content: "\f027"; } +.icon-volume-up:before { content: "\f028"; } +.icon-qrcode:before { content: "\f029"; } +.icon-barcode:before { content: "\f02a"; } +.icon-tag:before { content: "\f02b"; } +.icon-tags:before { content: "\f02c"; } +.icon-book:before { content: "\f02d"; } +.icon-bookmark:before { content: "\f02e"; } +.icon-print:before { content: "\f02f"; } + +.icon-camera:before { content: "\f030"; } +.icon-font:before { content: "\f031"; } +.icon-bold:before { content: "\f032"; } +.icon-italic:before { content: "\f033"; } +.icon-text-height:before { content: "\f034"; } +.icon-text-width:before { content: "\f035"; } +.icon-align-left:before { content: "\f036"; } +.icon-align-center:before { content: "\f037"; } +.icon-align-right:before { content: "\f038"; } +.icon-align-justify:before { content: "\f039"; } +.icon-list:before { content: "\f03a"; } +.icon-indent-left:before { content: "\f03b"; } +.icon-indent-right:before { content: "\f03c"; } +.icon-facetime-video:before { content: "\f03d"; } +.icon-picture:before { content: "\f03e"; } + +.icon-pencil:before { content: "\f040"; } +.icon-map-marker:before { content: "\f041"; } +.icon-adjust:before { content: "\f042"; } +.icon-tint:before { content: "\f043"; } +.icon-edit:before { content: "\f044"; } +.icon-share:before { content: "\f045"; } +.icon-check:before { content: "\f046"; } +.icon-move:before { content: "\f047"; } +.icon-step-backward:before { content: "\f048"; } +.icon-fast-backward:before { content: "\f049"; } +.icon-backward:before { content: "\f04a"; } +.icon-play:before { content: "\f04b"; } +.icon-pause:before { content: "\f04c"; } +.icon-stop:before { content: "\f04d"; } +.icon-forward:before { content: "\f04e"; } + +.icon-fast-forward:before { content: "\f050"; } +.icon-step-forward:before { content: "\f051"; } +.icon-eject:before { content: "\f052"; } +.icon-chevron-left:before { content: "\f053"; } +.icon-chevron-right:before { content: "\f054"; } +.icon-plus-sign:before { content: "\f055"; } +.icon-minus-sign:before { content: "\f056"; } +.icon-remove-sign:before { content: "\f057"; } +.icon-ok-sign:before { content: "\f058"; } +.icon-question-sign:before { content: "\f059"; } +.icon-info-sign:before { content: "\f05a"; } +.icon-screenshot:before { content: "\f05b"; } +.icon-remove-circle:before { content: "\f05c"; } +.icon-ok-circle:before { content: "\f05d"; } +.icon-ban-circle:before { content: "\f05e"; } + +.icon-arrow-left:before { content: "\f060"; } +.icon-arrow-right:before { content: "\f061"; } +.icon-arrow-up:before { content: "\f062"; } +.icon-arrow-down:before { content: "\f063"; } +.icon-share-alt:before { content: "\f064"; } +.icon-resize-full:before { content: "\f065"; } +.icon-resize-small:before { content: "\f066"; } +.icon-plus:before { content: "\f067"; } +.icon-minus:before { content: "\f068"; } +.icon-asterisk:before { content: "\f069"; } +.icon-exclamation-sign:before { content: "\f06a"; } +.icon-gift:before { content: "\f06b"; } +.icon-leaf:before { content: "\f06c"; } +.icon-fire:before { content: "\f06d"; } +.icon-eye-open:before { content: "\f06e"; } + +.icon-eye-close:before { content: "\f070"; } +.icon-warning-sign:before { content: "\f071"; } +.icon-plane:before { content: "\f072"; } +.icon-calendar:before { content: "\f073"; } +.icon-random:before { content: "\f074"; } +.icon-comment:before { content: "\f075"; } +.icon-magnet:before { content: "\f076"; } +.icon-chevron-up:before { content: "\f077"; } +.icon-chevron-down:before { content: "\f078"; } +.icon-retweet:before { content: "\f079"; } +.icon-shopping-cart:before { content: "\f07a"; } +.icon-folder-close:before { content: "\f07b"; } +.icon-folder-open:before { content: "\f07c"; } +.icon-resize-vertical:before { content: "\f07d"; } +.icon-resize-horizontal:before { content: "\f07e"; } + +.icon-bar-chart:before { content: "\f080"; } +.icon-twitter-sign:before { content: "\f081"; } +.icon-facebook-sign:before { content: "\f082"; } +.icon-camera-retro:before { content: "\f083"; } +.icon-key:before { content: "\f084"; } +.icon-cogs:before { content: "\f085"; } +.icon-comments:before { content: "\f086"; } +.icon-thumbs-up:before { content: "\f087"; } +.icon-thumbs-down:before { content: "\f088"; } +.icon-star-half:before { content: "\f089"; } +.icon-heart-empty:before { content: "\f08a"; } +.icon-signout:before { content: "\f08b"; } +.icon-linkedin-sign:before { content: "\f08c"; } +.icon-pushpin:before { content: "\f08d"; } +.icon-external-link:before { content: "\f08e"; } + +.icon-signin:before { content: "\f090"; } +.icon-trophy:before { content: "\f091"; } +.icon-github-sign:before { content: "\f092"; } +.icon-upload-alt:before { content: "\f093"; } +.icon-lemon:before { content: "\f094"; } +.icon-phone:before { content: "\f095"; } +.icon-check-empty:before { content: "\f096"; } +.icon-bookmark-empty:before { content: "\f097"; } +.icon-phone-sign:before { content: "\f098"; } +.icon-twitter:before { content: "\f099"; } +.icon-facebook:before { content: "\f09a"; } +.icon-github:before { content: "\f09b"; } +.icon-unlock:before { content: "\f09c"; } +.icon-credit-card:before { content: "\f09d"; } +.icon-rss:before { content: "\f09e"; } + +.icon-hdd:before { content: "\f0a0"; } +.icon-bullhorn:before { content: "\f0a1"; } +.icon-bell:before { content: "\f0a2"; } +.icon-certificate:before { content: "\f0a3"; } +.icon-hand-right:before { content: "\f0a4"; } +.icon-hand-left:before { content: "\f0a5"; } +.icon-hand-up:before { content: "\f0a6"; } +.icon-hand-down:before { content: "\f0a7"; } +.icon-circle-arrow-left:before { content: "\f0a8"; } +.icon-circle-arrow-right:before { content: "\f0a9"; } +.icon-circle-arrow-up:before { content: "\f0aa"; } +.icon-circle-arrow-down:before { content: "\f0ab"; } +.icon-globe:before { content: "\f0ac"; } +.icon-wrench:before { content: "\f0ad"; } +.icon-tasks:before { content: "\f0ae"; } + +.icon-filter:before { content: "\f0b0"; } +.icon-briefcase:before { content: "\f0b1"; } +.icon-fullscreen:before { content: "\f0b2"; } + +.icon-group:before { content: "\f0c0"; } +.icon-link:before { content: "\f0c1"; } +.icon-cloud:before { content: "\f0c2"; } +.icon-beaker:before { content: "\f0c3"; } +.icon-cut:before { content: "\f0c4"; } +.icon-copy:before { content: "\f0c5"; } +.icon-paper-clip:before { content: "\f0c6"; } +.icon-save:before { content: "\f0c7"; } +.icon-sign-blank:before { content: "\f0c8"; } +.icon-reorder:before { content: "\f0c9"; } +.icon-list-ul:before { content: "\f0ca"; } +.icon-list-ol:before { content: "\f0cb"; } +.icon-strikethrough:before { content: "\f0cc"; } +.icon-underline:before { content: "\f0cd"; } +.icon-table:before { content: "\f0ce"; } + +.icon-magic:before { content: "\f0d0"; } +.icon-truck:before { content: "\f0d1"; } +.icon-pinterest:before { content: "\f0d2"; } +.icon-pinterest-sign:before { content: "\f0d3"; } +.icon-google-plus-sign:before { content: "\f0d4"; } +.icon-google-plus:before { content: "\f0d5"; } +.icon-money:before { content: "\f0d6"; } +.icon-caret-down:before { content: "\f0d7"; } +.icon-caret-up:before { content: "\f0d8"; } +.icon-caret-left:before { content: "\f0d9"; } +.icon-caret-right:before { content: "\f0da"; } +.icon-columns:before { content: "\f0db"; } +.icon-sort:before { content: "\f0dc"; } +.icon-sort-down:before { content: "\f0dd"; } +.icon-sort-up:before { content: "\f0de"; } + +.icon-envelope-alt:before { content: "\f0e0"; } +.icon-linkedin:before { content: "\f0e1"; } +.icon-undo:before { content: "\f0e2"; } +.icon-legal:before { content: "\f0e3"; } +.icon-dashboard:before { content: "\f0e4"; } +.icon-comment-alt:before { content: "\f0e5"; } +.icon-comments-alt:before { content: "\f0e6"; } +.icon-bolt:before { content: "\f0e7"; } +.icon-sitemap:before { content: "\f0e8"; } +.icon-umbrella:before { content: "\f0e9"; } +.icon-paste:before { content: "\f0ea"; } +.icon-lightbulb:before { content: "\f0eb"; } +.icon-exchange:before { content: "\f0ec"; } +.icon-cloud-download:before { content: "\f0ed"; } +.icon-cloud-upload:before { content: "\f0ee"; } + +.icon-user-md:before { content: "\f0f0"; } +.icon-stethoscope:before { content: "\f0f1"; } +.icon-suitcase:before { content: "\f0f2"; } +.icon-bell-alt:before { content: "\f0f3"; } +.icon-coffee:before { content: "\f0f4"; } +.icon-food:before { content: "\f0f5"; } +.icon-file-alt:before { content: "\f0f6"; } +.icon-building:before { content: "\f0f7"; } +.icon-hospital:before { content: "\f0f8"; } +.icon-ambulance:before { content: "\f0f9"; } +.icon-medkit:before { content: "\f0fa"; } +.icon-fighter-jet:before { content: "\f0fb"; } +.icon-beer:before { content: "\f0fc"; } +.icon-h-sign:before { content: "\f0fd"; } +.icon-plus-sign-alt:before { content: "\f0fe"; } + +.icon-double-angle-left:before { content: "\f100"; } +.icon-double-angle-right:before { content: "\f101"; } +.icon-double-angle-up:before { content: "\f102"; } +.icon-double-angle-down:before { content: "\f103"; } +.icon-angle-left:before { content: "\f104"; } +.icon-angle-right:before { content: "\f105"; } +.icon-angle-up:before { content: "\f106"; } +.icon-angle-down:before { content: "\f107"; } +.icon-desktop:before { content: "\f108"; } +.icon-laptop:before { content: "\f109"; } +.icon-tablet:before { content: "\f10a"; } +.icon-mobile-phone:before { content: "\f10b"; } +.icon-circle-blank:before { content: "\f10c"; } +.icon-quote-left:before { content: "\f10d"; } +.icon-quote-right:before { content: "\f10e"; } + +.icon-spinner:before { content: "\f110"; } +.icon-circle:before { content: "\f111"; } +.icon-reply:before { content: "\f112"; } +.icon-github-alt:before { content: "\f113"; } +.icon-folder-close-alt:before { content: "\f114"; } +.icon-folder-open-alt:before { content: "\f115"; } +]]>GET/resources/css/font-awesomecssHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0 +
Refererhttp://zero.webappsecurity.com/
Hostzero.webappsecurity.com
Accept*/*
Accept-Languageen-US,en;q=0.5
Accept-Encodinggzip, deflate
Pragmano-cache
User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
ConnectionKeep-Alive
X-WIPPAscVersion=22.2.0.253
X-Scan-MemoScriptEngine="Gecko";Category="Crawl";SID="C7E90FA2BCD774CB5B3F685F1C421321";PSID="306E42D0F653E7CFA6720D7F15AE506B";SessionType="Crawl";CrawlType="ScriptInclude";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";tht="21";
X-RequestManager-Memostid="11";stmi="0";sc="1";rid="b84d381c";
X-Request-Memorid="fa8ab90e";sc="1";thid="45";
CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0
HTTP/1.1200OK .active > a > [class^="icon-"], +.nav-pills > .active > a > [class*=" icon-"], +.nav-list > .active > a > [class^="icon-"], +.nav-list > .active > a > [class*=" icon-"], +.navbar-inverse .nav > .active > a > [class^="icon-"], +.navbar-inverse .nav > .active > a > [class*=" icon-"], +.dropdown-menu > li > a:hover > [class^="icon-"], +.dropdown-menu > li > a:hover > [class*=" icon-"], +.dropdown-menu > .active > a > [class^="icon-"], +.dropdown-menu > .active > a > [class*=" icon-"], +.dropdown-submenu:hover > a > [class^="icon-"], +.dropdown-submenu:hover > a > [class*=" icon-"] { + background-image: none; +} +[class^="icon-"]:before, +[class*=" icon-"]:before { + text-decoration: inherit; + display: inline-block; + speak: none; +} +/* makes sure icons active on rollover in links */ +a [class^="icon-"], +a [class*=" icon-"] { + display: inline-block; +} +/* makes the font 33% larger relative to the icon container */ +.icon-large:before { + vertical-align: -10%; + font-size: 1.3333333333333333em; +} +.btn [class^="icon-"], +.nav [class^="icon-"], +.btn [class*=" icon-"], +.nav [class*=" icon-"] { + display: inline; + /* keeps button heights with and without icons the same */ + +} +.btn [class^="icon-"].icon-large, +.nav [class^="icon-"].icon-large, +.btn [class*=" icon-"].icon-large, +.nav [class*=" icon-"].icon-large { + line-height: .9em; +} +.btn [class^="icon-"].icon-spin, +.nav [class^="icon-"].icon-spin, +.btn [class*=" icon-"].icon-spin, +.nav [class*=" icon-"].icon-spin { + display: inline-block; +} +.nav-tabs [class^="icon-"], +.nav-pills [class^="icon-"], +.nav-tabs [class*=" icon-"], +.nav-pills [class*=" icon-"] { + /* keeps button heights with and without icons the same */ + +} +.nav-tabs [class^="icon-"], +.nav-pills [class^="icon-"], +.nav-tabs [class*=" icon-"], +.nav-pills [class*=" icon-"], +.nav-tabs [class^="icon-"].icon-large, +.nav-pills [class^="icon-"].icon-large, +.nav-tabs [class*=" icon-"].icon-large, +.nav-pills [class*=" icon-"].icon-large { + line-height: .9em; +} +li [class^="icon-"], +.nav li [class^="icon-"], +li [class*=" icon-"], +.nav li [class*=" icon-"] { + display: inline-block; + width: 1.25em; + text-align: center; +} +li [class^="icon-"].icon-large, +.nav li [class^="icon-"].icon-large, +li [class*=" icon-"].icon-large, +.nav li [class*=" icon-"].icon-large { + /* increased font size for icon-large */ + + width: 1.5625em; +} +ul.icons { + list-style-type: none; + text-indent: -0.75em; +} +ul.icons li [class^="icon-"], +ul.icons li [class*=" icon-"] { + width: .75em; +} +.icon-muted { + color: #eeeeee; +} +.icon-border { + border: solid 1px #eeeeee; + padding: .2em .25em .15em; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; +} +.icon-2x { + font-size: 2em; +} +.icon-2x.icon-border { + border-width: 2px; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; +} +.icon-3x { + font-size: 3em; +} +.icon-3x.icon-border { + border-width: 3px; + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + border-radius: 5px; +} +.icon-4x { + font-size: 4em; +} +.icon-4x.icon-border { + border-width: 4px; + -webkit-border-radius: 6px; + -moz-border-radius: 6px; + border-radius: 6px; +} +.pull-right { + float: right; +} +.pull-left { + float: left; +} +[class^="icon-"].pull-left, +[class*=" icon-"].pull-left { + margin-right: .3em; +} +[class^="icon-"].pull-right, +[class*=" icon-"].pull-right { + margin-left: .3em; +} +.btn [class^="icon-"].pull-left.icon-2x, +.btn [class*=" icon-"].pull-left.icon-2x, +.btn [class^="icon-"].pull-right.icon-2x, +.btn [class*=" icon-"].pull-right.icon-2x { + margin-top: .18em; +} +.btn [class^="icon-"].icon-spin.icon-large, +.btn [class*=" icon-"].icon-spin.icon-large { + line-height: .8em; +} +.btn.btn-small [class^="icon-"].pull-left.icon-2x, +.btn.btn-small [class*=" icon-"].pull-left.icon-2x, +.btn.btn-small [class^="icon-"].pull-right.icon-2x, +.btn.btn-small [class*=" icon-"].pull-right.icon-2x { + margin-top: .25em; +} +.btn.btn-large [class^="icon-"], +.btn.btn-large [class*=" icon-"] { + margin-top: 0; +} +.btn.btn-large [class^="icon-"].pull-left.icon-2x, +.btn.btn-large [class*=" icon-"].pull-left.icon-2x, +.btn.btn-large [class^="icon-"].pull-right.icon-2x, +.btn.btn-large [class*=" icon-"].pull-right.icon-2x { + margin-top: .05em; +} +.btn.btn-large [class^="icon-"].pull-left.icon-2x, +.btn.btn-large [class*=" icon-"].pull-left.icon-2x { + margin-right: .2em; +} +.btn.btn-large [class^="icon-"].pull-right.icon-2x, +.btn.btn-large [class*=" icon-"].pull-right.icon-2x { + margin-left: .2em; +} +.icon-spin { + display: inline-block; + -moz-animation: spin 2s infinite linear; + -o-animation: spin 2s infinite linear; + -webkit-animation: spin 2s infinite linear; + animation: spin 2s infinite linear; +} +@-moz-keyframes spin { + 0% { -moz-transform: rotate(0deg); } + 100% { -moz-transform: rotate(359deg); } +} +@-webkit-keyframes spin { + 0% { -webkit-transform: rotate(0deg); } + 100% { -webkit-transform: rotate(359deg); } +} +@-o-keyframes spin { + 0% { -o-transform: rotate(0deg); } + 100% { -o-transform: rotate(359deg); } +} +@-ms-keyframes spin { + 0% { -ms-transform: rotate(0deg); } + 100% { -ms-transform: rotate(359deg); } +} +@keyframes spin { + 0% { transform: rotate(0deg); } + 100% { transform: rotate(359deg); } +} +@-moz-document url-prefix() { + .icon-spin { + height: .9em; + } + .btn .icon-spin { + height: auto; + } + .icon-spin.icon-large { + height: 1.25em; + } + .btn .icon-spin.icon-large { + height: .75em; + } +} +/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen + readers do not read off random characters that represent icons */ +.icon-glass:before { content: "\f000"; } +.icon-music:before { content: "\f001"; } +.icon-search:before { content: "\f002"; } +.icon-envelope:before { content: "\f003"; } +.icon-heart:before { content: "\f004"; } +.icon-star:before { content: "\f005"; } +.icon-star-empty:before { content: "\f006"; } +.icon-user:before { content: "\f007"; } +.icon-film:before { content: "\f008"; } +.icon-th-large:before { content: "\f009"; } +.icon-th:before { content: "\f00a"; } +.icon-th-list:before { content: "\f00b"; } +.icon-ok:before { content: "\f00c"; } +.icon-remove:before { content: "\f00d"; } +.icon-zoom-in:before { content: "\f00e"; } + +.icon-zoom-out:before { content: "\f010"; } +.icon-off:before { content: "\f011"; } +.icon-signal:before { content: "\f012"; } +.icon-cog:before { content: "\f013"; } +.icon-trash:before { content: "\f014"; } +.icon-home:before { content: "\f015"; } +.icon-file:before { content: "\f016"; } +.icon-time:before { content: "\f017"; } +.icon-road:before { content: "\f018"; } +.icon-download-alt:before { content: "\f019"; } +.icon-download:before { content: "\f01a"; } +.icon-upload:before { content: "\f01b"; } +.icon-inbox:before { content: "\f01c"; } +.icon-play-circle:before { content: "\f01d"; } +.icon-repeat:before { content: "\f01e"; } + +/* \f020 doesn't work in Safari. all shifted one down */ +.icon-refresh:before { content: "\f021"; } +.icon-list-alt:before { content: "\f022"; } +.icon-lock:before { content: "\f023"; } +.icon-flag:before { content: "\f024"; } +.icon-headphones:before { content: "\f025"; } +.icon-volume-off:before { content: "\f026"; } +.icon-volume-down:before { content: "\f027"; } +.icon-volume-up:before { content: "\f028"; } +.icon-qrcode:before { content: "\f029"; } +.icon-barcode:before { content: "\f02a"; } +.icon-tag:before { content: "\f02b"; } +.icon-tags:before { content: "\f02c"; } +.icon-book:before { content: "\f02d"; } +.icon-bookmark:before { content: "\f02e"; } +.icon-print:before { content: "\f02f"; } + +.icon-camera:before { content: "\f030"; } +.icon-font:before { content: "\f031"; } +.icon-bold:before { content: "\f032"; } +.icon-italic:before { content: "\f033"; } +.icon-text-height:before { content: "\f034"; } +.icon-text-width:before { content: "\f035"; } +.icon-align-left:before { content: "\f036"; } +.icon-align-center:before { content: "\f037"; } +.icon-align-right:before { content: "\f038"; } +.icon-align-justify:before { content: "\f039"; } +.icon-list:before { content: "\f03a"; } +.icon-indent-left:before { content: "\f03b"; } +.icon-indent-right:before { content: "\f03c"; } +.icon-facetime-video:before { content: "\f03d"; } +.icon-picture:before { content: "\f03e"; } + +.icon-pencil:before { content: "\f040"; } +.icon-map-marker:before { content: "\f041"; } +.icon-adjust:before { content: "\f042"; } +.icon-tint:before { content: "\f043"; } +.icon-edit:before { content: "\f044"; } +.icon-share:before { content: "\f045"; } +.icon-check:before { content: "\f046"; } +.icon-move:before { content: "\f047"; } +.icon-step-backward:before { content: "\f048"; } +.icon-fast-backward:before { content: "\f049"; } +.icon-backward:before { content: "\f04a"; } +.icon-play:before { content: "\f04b"; } +.icon-pause:before { content: "\f04c"; } +.icon-stop:before { content: "\f04d"; } +.icon-forward:before { content: "\f04e"; } + +.icon-fast-forward:before { content: "\f050"; } +.icon-step-forward:before { content: "\f051"; } +.icon-eject:before { content: "\f052"; } +.icon-chevron-left:before { content: "\f053"; } +.icon-chevron-right:before { content: "\f054"; } +.icon-plus-sign:before { content: "\f055"; } +.icon-minus-sign:before { content: "\f056"; } +.icon-remove-sign:before { content: "\f057"; } +.icon-ok-sign:before { content: "\f058"; } +.icon-question-sign:before { content: "\f059"; } +.icon-info-sign:before { content: "\f05a"; } +.icon-screenshot:before { content: "\f05b"; } +.icon-remove-circle:before { content: "\f05c"; } +.icon-ok-circle:before { content: "\f05d"; } +.icon-ban-circle:before { content: "\f05e"; } + +.icon-arrow-left:before { content: "\f060"; } +.icon-arrow-right:before { content: "\f061"; } +.icon-arrow-up:before { content: "\f062"; } +.icon-arrow-down:before { content: "\f063"; } +.icon-share-alt:before { content: "\f064"; } +.icon-resize-full:before { content: "\f065"; } +.icon-resize-small:before { content: "\f066"; } +.icon-plus:before { content: "\f067"; } +.icon-minus:before { content: "\f068"; } +.icon-asterisk:before { content: "\f069"; } +.icon-exclamation-sign:before { content: "\f06a"; } +.icon-gift:before { content: "\f06b"; } +.icon-leaf:before { content: "\f06c"; } +.icon-fire:before { content: "\f06d"; } +.icon-eye-open:before { content: "\f06e"; } + +.icon-eye-close:before { content: "\f070"; } +.icon-warning-sign:before { content: "\f071"; } +.icon-plane:before { content: "\f072"; } +.icon-calendar:before { content: "\f073"; } +.icon-random:before { content: "\f074"; } +.icon-comment:before { content: "\f075"; } +.icon-magnet:before { content: "\f076"; } +.icon-chevron-up:before { content: "\f077"; } +.icon-chevron-down:before { content: "\f078"; } +.icon-retweet:before { content: "\f079"; } +.icon-shopping-cart:before { content: "\f07a"; } +.icon-folder-close:before { content: "\f07b"; } +.icon-folder-open:before { content: "\f07c"; } +.icon-resize-vertical:before { content: "\f07d"; } +.icon-resize-horizontal:before { content: "\f07e"; } + +.icon-bar-chart:before { content: "\f080"; } +.icon-twitter-sign:before { content: "\f081"; } +.icon-facebook-sign:before { content: "\f082"; } +.icon-camera-retro:before { content: "\f083"; } +.icon-key:before { content: "\f084"; } +.icon-cogs:before { content: "\f085"; } +.icon-comments:before { content: "\f086"; } +.icon-thumbs-up:before { content: "\f087"; } +.icon-thumbs-down:before { content: "\f088"; } +.icon-star-half:before { content: "\f089"; } +.icon-heart-empty:before { content: "\f08a"; } +.icon-signout:before { content: "\f08b"; } +.icon-linkedin-sign:before { content: "\f08c"; } +.icon-pushpin:before { content: "\f08d"; } +.icon-external-link:before { content: "\f08e"; } + +.icon-signin:before { content: "\f090"; } +.icon-trophy:before { content: "\f091"; } +.icon-github-sign:before { content: "\f092"; } +.icon-upload-alt:before { content: "\f093"; } +.icon-lemon:before { content: "\f094"; } +.icon-phone:before { content: "\f095"; } +.icon-check-empty:before { content: "\f096"; } +.icon-bookmark-empty:before { content: "\f097"; } +.icon-phone-sign:before { content: "\f098"; } +.icon-twitter:before { content: "\f099"; } +.icon-facebook:before { content: "\f09a"; } +.icon-github:before { content: "\f09b"; } +.icon-unlock:before { content: "\f09c"; } +.icon-credit-card:before { content: "\f09d"; } +.icon-rss:before { content: "\f09e"; } + +.icon-hdd:before { content: "\f0a0"; } +.icon-bullhorn:before { content: "\f0a1"; } +.icon-bell:before { content: "\f0a2"; } +.icon-certificate:before { content: "\f0a3"; } +.icon-hand-right:before { content: "\f0a4"; } +.icon-hand-left:before { content: "\f0a5"; } +.icon-hand-up:before { content: "\f0a6"; } +.icon-hand-down:before { content: "\f0a7"; } +.icon-circle-arrow-left:before { content: "\f0a8"; } +.icon-circle-arrow-right:before { content: "\f0a9"; } +.icon-circle-arrow-up:before { content: "\f0aa"; } +.icon-circle-arrow-down:before { content: "\f0ab"; } +.icon-globe:before { content: "\f0ac"; } +.icon-wrench:before { content: "\f0ad"; } +.icon-tasks:before { content: "\f0ae"; } + +.icon-filter:before { content: "\f0b0"; } +.icon-briefcase:before { content: "\f0b1"; } +.icon-fullscreen:before { content: "\f0b2"; } + +.icon-group:before { content: "\f0c0"; } +.icon-link:before { content: "\f0c1"; } +.icon-cloud:before { content: "\f0c2"; } +.icon-beaker:before { content: "\f0c3"; } +.icon-cut:before { content: "\f0c4"; } +.icon-copy:before { content: "\f0c5"; } +.icon-paper-clip:before { content: "\f0c6"; } +.icon-save:before { content: "\f0c7"; } +.icon-sign-blank:before { content: "\f0c8"; } +.icon-reorder:before { content: "\f0c9"; } +.icon-list-ul:before { content: "\f0ca"; } +.icon-list-ol:before { content: "\f0cb"; } +.icon-strikethrough:before { content: "\f0cc"; } +.icon-underline:before { content: "\f0cd"; } +.icon-table:before { content: "\f0ce"; } + +.icon-magic:before { content: "\f0d0"; } +.icon-truck:before { content: "\f0d1"; } +.icon-pinterest:before { content: "\f0d2"; } +.icon-pinterest-sign:before { content: "\f0d3"; } +.icon-google-plus-sign:before { content: "\f0d4"; } +.icon-google-plus:before { content: "\f0d5"; } +.icon-money:before { content: "\f0d6"; } +.icon-caret-down:before { content: "\f0d7"; } +.icon-caret-up:before { content: "\f0d8"; } +.icon-caret-left:before { content: "\f0d9"; } +.icon-caret-right:before { content: "\f0da"; } +.icon-columns:before { content: "\f0db"; } +.icon-sort:before { content: "\f0dc"; } +.icon-sort-down:before { content: "\f0dd"; } +.icon-sort-up:before { content: "\f0de"; } + +.icon-envelope-alt:before { content: "\f0e0"; } +.icon-linkedin:before { content: "\f0e1"; } +.icon-undo:before { content: "\f0e2"; } +.icon-legal:before { content: "\f0e3"; } +.icon-dashboard:before { content: "\f0e4"; } +.icon-comment-alt:before { content: "\f0e5"; } +.icon-comments-alt:before { content: "\f0e6"; } +.icon-bolt:before { content: "\f0e7"; } +.icon-sitemap:before { content: "\f0e8"; } +.icon-umbrella:before { content: "\f0e9"; } +.icon-paste:before { content: "\f0ea"; } +.icon-lightbulb:before { content: "\f0eb"; } +.icon-exchange:before { content: "\f0ec"; } +.icon-cloud-download:before { content: "\f0ed"; } +.icon-cloud-upload:before { content: "\f0ee"; } + +.icon-user-md:before { content: "\f0f0"; } +.icon-stethoscope:before { content: "\f0f1"; } +.icon-suitcase:before { content: "\f0f2"; } +.icon-bell-alt:before { content: "\f0f3"; } +.icon-coffee:before { content: "\f0f4"; } +.icon-food:before { content: "\f0f5"; } +.icon-file-alt:before { content: "\f0f6"; } +.icon-building:before { content: "\f0f7"; } +.icon-hospital:before { content: "\f0f8"; } +.icon-ambulance:before { content: "\f0f9"; } +.icon-medkit:before { content: "\f0fa"; } +.icon-fighter-jet:before { content: "\f0fb"; } +.icon-beer:before { content: "\f0fc"; } +.icon-h-sign:before { content: "\f0fd"; } +.icon-plus-sign-alt:before { content: "\f0fe"; } + +.icon-double-angle-left:before { content: "\f100"; } +.icon-double-angle-right:before { content: "\f101"; } +.icon-double-angle-up:before { content: "\f102"; } +.icon-double-angle-down:before { content: "\f103"; } +.icon-angle-left:before { content: "\f104"; } +.icon-angle-right:before { content: "\f105"; } +.icon-angle-up:before { content: "\f106"; } +.icon-angle-down:before { content: "\f107"; } +.icon-desktop:before { content: "\f108"; } +.icon-laptop:before { content: "\f109"; } +.icon-tablet:before { content: "\f10a"; } +.icon-mobile-phone:before { content: "\f10b"; } +.icon-circle-blank:before { content: "\f10c"; } +.icon-quote-left:before { content: "\f10d"; } +.icon-quote-right:before { content: "\f10e"; } + +.icon-spinner:before { content: "\f110"; } +.icon-circle:before { content: "\f111"; } +.icon-reply:before { content: "\f112"; } +.icon-github-alt:before { content: "\f113"; } +.icon-folder-close-alt:before { content: "\f114"; } +.icon-folder-open-alt:before { content: "\f115"; } +]]>
DateFri, 24 Feb 2023 14:01:44 GMT
ServerApache-Coyote/1.1
Access-Control-Allow-Origin*
Accept-Rangesbytes
ETagW/"21752-1360580252000"
Last-ModifiedMon, 11 Feb 2013 10:57:32 GMT
Cache-Controlmax-age=2419200
ExpiresFri, 24 Mar 2023 14:01:44 GMT
Content-Typetext/css;charset=UTF-8
Content-Length21752
Keep-Alivetimeout=5, max=100
ConnectionKeep-Alive
http://zero.webappsecurity.com:80/resources/js/bootstrap.min.jshttpzero.webappsecurity.com80').appendTo(document.body),this.$backdrop.click(this.options.backdrop=="static"?a.proxy(this.$element[0].focus,this.$element[0]):a.proxy(this.hide,this)),e&&this.$backdrop[0].offsetWidth,this.$backdrop.addClass("in"),e?this.$backdrop.one(a.support.transition.end,b):b()}else!this.isShown&&this.$backdrop?(this.$backdrop.removeClass("in"),a.support.transition&&this.$element.hasClass("fade")?this.$backdrop.one(a.support.transition.end,a.proxy(this.removeBackdrop,this)):this.removeBackdrop()):b&&b()}};var c=a.fn.modal;a.fn.modal=function(c){return this.each(function(){var d=a(this),e=d.data("modal"),f=a.extend({},a.fn.modal.defaults,d.data(),typeof c=="object"&&c);e||d.data("modal",e=new b(this,f)),typeof c=="string"?e[c]():f.show&&e.show()})},a.fn.modal.defaults={backdrop:!0,keyboard:!0,show:!0},a.fn.modal.Constructor=b,a.fn.modal.noConflict=function(){return a.fn.modal=c,this},a(document).on("click.modal.data-api",'[data-toggle="modal"]',function(b){var c=a(this),d=c.attr("href"),e=a(c.attr("data-target")||d&&d.replace(/.*(?=#[^\s]+$)/,"")),f=e.data("modal")?"toggle":a.extend({remote:!/#/.test(d)&&d},e.data(),c.data());b.preventDefault(),e.modal(f).one("hide",function(){c.focus()})})}(window.jQuery),!function(a){function d(){a(b).each(function(){e(a(this)).removeClass("open")})}function e(b){var c=b.attr("data-target"),d;return c||(c=b.attr("href"),c=c&&/#/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,"")),d=a(c),d.length||(d=b.parent()),d}var b="[data-toggle=dropdown]",c=function(b){var c=a(b).on("click.dropdown.data-api",this.toggle);a("html").on("click.dropdown.data-api",function(){c.parent().removeClass("open")})};c.prototype={constructor:c,toggle:function(b){var c=a(this),f,g;if(c.is(".disabled, :disabled"))return;return f=e(c),g=f.hasClass("open"),d(),g||f.toggleClass("open"),c.focus(),!1},keydown:function(b){var c,d,f,g,h,i;if(!/(38|40|27)/.test(b.keyCode))return;c=a(this),b.preventDefault(),b.stopPropagation();if(c.is(".disabled, :disabled"))return;g=e(c),h=g.hasClass("open");if(!h||h&&b.keyCode==27)return c.click();d=a("[role=menu] li:not(.divider):visible a",g);if(!d.length)return;i=d.index(d.filter(":focus")),b.keyCode==38&&i>0&&i--,b.keyCode==40&&i a",this.$body=a("body"),this.refresh(),this.process()}b.prototype={constructor:b,refresh:function(){var b=this,c;this.offsets=a([]),this.targets=a([]),c=this.$body.find(this.selector).map(function(){var c=a(this),d=c.data("target")||c.attr("href"),e=/^#\w/.test(d)&&a(d);return e&&e.length&&[[e.position().top+b.$scrollElement.scrollTop(),d]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){b.offsets.push(this[0]),b.targets.push(this[1])})},process:function(){var a=this.$scrollElement.scrollTop()+this.options.offset,b=this.$scrollElement[0].scrollHeight||this.$body[0].scrollHeight,c=b-this.$scrollElement.height(),d=this.offsets,e=this.targets,f=this.activeTarget,g;if(a>=c)return f!=(g=e.last()[0])&&this.activate(g);for(g=d.length;g--;)f!=e[g]&&a>=d[g]&&(!d[g+1]||a<=d[g+1])&&this.activate(e[g])},activate:function(b){var c,d;this.activeTarget=b,a(this.selector).parent(".active").removeClass("active"),d=this.selector+'[data-target="'+b+'"],'+this.selector+'[href="'+b+'"]',c=a(d).parent("li").addClass("active"),c.parent(".dropdown-menu").length&&(c=c.closest("li.dropdown").addClass("active")),c.trigger("activate")}};var c=a.fn.scrollspy;a.fn.scrollspy=function(c){return this.each(function(){var d=a(this),e=d.data("scrollspy"),f=typeof c=="object"&&c;e||d.data("scrollspy",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.scrollspy.Constructor=b,a.fn.scrollspy.defaults={offset:10},a.fn.scrollspy.noConflict=function(){return a.fn.scrollspy=c,this},a(window).on("load",function(){a('[data-spy="scroll"]').each(function(){var b=a(this);b.scrollspy(b.data())})})}(window.jQuery),!function(a){var b=function(b){this.element=a(b)};b.prototype={constructor:b,show:function(){var b=this.element,c=b.closest("ul:not(.dropdown-menu)"),d=b.attr("data-target"),e,f,g;d||(d=b.attr("href"),d=d&&d.replace(/.*(?=#[^\s]*$)/,""));if(b.parent("li").hasClass("active"))return;e=c.find(".active:last a")[0],g=a.Event("show",{relatedTarget:e}),b.trigger(g);if(g.isDefaultPrevented())return;f=a(d),this.activate(b.parent("li"),c),this.activate(f,f.parent(),function(){b.trigger({type:"shown",relatedTarget:e})})},activate:function(b,c,d){function g(){e.removeClass("active").find("> .dropdown-menu > .active").removeClass("active"),b.addClass("active"),f?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu")&&b.closest("li.dropdown").addClass("active"),d&&d()}var e=c.find("> .active"),f=d&&a.support.transition&&e.hasClass("fade");f?e.one(a.support.transition.end,g):g(),e.removeClass("in")}};var c=a.fn.tab;a.fn.tab=function(c){return this.each(function(){var d=a(this),e=d.data("tab");e||d.data("tab",e=new b(this)),typeof c=="string"&&e[c]()})},a.fn.tab.Constructor=b,a.fn.tab.noConflict=function(){return a.fn.tab=c,this},a(document).on("click.tab.data-api",'[data-toggle="tab"], [data-toggle="pill"]',function(b){b.preventDefault(),a(this).tab("show")})}(window.jQuery),!function(a){var b=function(a,b){this.init("tooltip",a,b)};b.prototype={constructor:b,init:function(b,c,d){var e,f;this.type=b,this.$element=a(c),this.options=this.getOptions(d),this.enabled=!0,this.options.trigger=="click"?this.$element.on("click."+this.type,this.options.selector,a.proxy(this.toggle,this)):this.options.trigger!="manual"&&(e=this.options.trigger=="hover"?"mouseenter":"focus",f=this.options.trigger=="hover"?"mouseleave":"blur",this.$element.on(e+"."+this.type,this.options.selector,a.proxy(this.enter,this)),this.$element.on(f+"."+this.type,this.options.selector,a.proxy(this.leave,this))),this.options.selector?this._options=a.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},getOptions:function(b){return b=a.extend({},a.fn[this.type].defaults,b,this.$element.data()),b.delay&&typeof b.delay=="number"&&(b.delay={show:b.delay,hide:b.delay}),b},enter:function(b){var c=a(b.currentTarget)[this.type](this._options).data(this.type);if(!c.options.delay||!c.options.delay.show)return c.show();clearTimeout(this.timeout),c.hoverState="in",this.timeout=setTimeout(function(){c.hoverState=="in"&&c.show()},c.options.delay.show)},leave:function(b){var c=a(b.currentTarget)[this.type](this._options).data(this.type);this.timeout&&clearTimeout(this.timeout);if(!c.options.delay||!c.options.delay.hide)return c.hide();c.hoverState="out",this.timeout=setTimeout(function(){c.hoverState=="out"&&c.hide()},c.options.delay.hide)},show:function(){var a,b,c,d,e,f,g;if(this.hasContent()&&this.enabled){a=this.tip(),this.setContent(),this.options.animation&&a.addClass("fade"),f=typeof this.options.placement=="function"?this.options.placement.call(this,a[0],this.$element[0]):this.options.placement,b=/in/.test(f),a.detach().css({top:0,left:0,display:"block"}).insertAfter(this.$element),c=this.getPosition(b),d=a[0].offsetWidth,e=a[0].offsetHeight;switch(b?f.split(" ")[1]:f){case"bottom":g={top:c.top+c.height,left:c.left+c.width/2-d/2};break;case"top":g={top:c.top-e,left:c.left+c.width/2-d/2};break;case"left":g={top:c.top+c.height/2-e/2,left:c.left-d};break;case"right":g={top:c.top+c.height/2-e/2,left:c.left+c.width}}a.offset(g).addClass(f).addClass("in")}},setContent:function(){var a=this.tip(),b=this.getTitle();a.find(".tooltip-inner")[this.options.html?"html":"text"](b),a.removeClass("fade in top bottom left right")},hide:function(){function d(){var b=setTimeout(function(){c.off(a.support.transition.end).detach()},500);c.one(a.support.transition.end,function(){clearTimeout(b),c.detach()})}var b=this,c=this.tip();return c.removeClass("in"),a.support.transition&&this.$tip.hasClass("fade")?d():c.detach(),this},fixTitle:function(){var a=this.$element;(a.attr("title")||typeof a.attr("data-original-title")!="string")&&a.attr("data-original-title",a.attr("title")||"").removeAttr("title")},hasContent:function(){return this.getTitle()},getPosition:function(b){return a.extend({},b?{top:0,left:0}:this.$element.offset(),{width:this.$element[0].offsetWidth,height:this.$element[0].offsetHeight})},getTitle:function(){var a,b=this.$element,c=this.options;return a=b.attr("data-original-title")||(typeof c.title=="function"?c.title.call(b[0]):c.title),a},tip:function(){return this.$tip=this.$tip||a(this.options.template)},validate:function(){this.$element[0].parentNode||(this.hide(),this.$element=null,this.options=null)},enable:function(){this.enabled=!0},disable:function(){this.enabled=!1},toggleEnabled:function(){this.enabled=!this.enabled},toggle:function(b){var c=a(b.currentTarget)[this.type](this._options).data(this.type);c[c.tip().hasClass("in")?"hide":"show"]()},destroy:function(){this.hide().$element.off("."+this.type).removeData(this.type)}};var c=a.fn.tooltip;a.fn.tooltip=function(c){return this.each(function(){var d=a(this),e=d.data("tooltip"),f=typeof c=="object"&&c;e||d.data("tooltip",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.tooltip.Constructor=b,a.fn.tooltip.defaults={animation:!0,placement:"top",selector:!1,template:'
',trigger:"hover",title:"",delay:0,html:!1},a.fn.tooltip.noConflict=function(){return a.fn.tooltip=c,this}}(window.jQuery),!function(a){var b=function(a,b){this.init("popover",a,b)};b.prototype=a.extend({},a.fn.tooltip.Constructor.prototype,{constructor:b,setContent:function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content")[this.options.html?"html":"text"](c),a.removeClass("fade top bottom left right in")},hasContent:function(){return this.getTitle()||this.getContent()},getContent:function(){var a,b=this.$element,c=this.options;return a=b.attr("data-content")||(typeof c.content=="function"?c.content.call(b[0]):c.content),a},tip:function(){return this.$tip||(this.$tip=a(this.options.template)),this.$tip},destroy:function(){this.hide().$element.off("."+this.type).removeData(this.type)}});var c=a.fn.popover;a.fn.popover=function(c){return this.each(function(){var d=a(this),e=d.data("popover"),f=typeof c=="object"&&c;e||d.data("popover",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.popover.Constructor=b,a.fn.popover.defaults=a.extend({},a.fn.tooltip.defaults,{placement:"right",trigger:"click",content:"",template:'

'}),a.fn.popover.noConflict=function(){return a.fn.popover=c,this}}(window.jQuery),!function(a){var b=function(b,c){this.options=a.extend({},a.fn.affix.defaults,c),this.$window=a(window).on("scroll.affix.data-api",a.proxy(this.checkPosition,this)).on("click.affix.data-api",a.proxy(function(){setTimeout(a.proxy(this.checkPosition,this),1)},this)),this.$element=a(b),this.checkPosition()};b.prototype.checkPosition=function(){if(!this.$element.is(":visible"))return;var b=a(document).height(),c=this.$window.scrollTop(),d=this.$element.offset(),e=this.options.offset,f=e.bottom,g=e.top,h="affix affix-top affix-bottom",i;typeof e!="object"&&(f=g=e),typeof g=="function"&&(g=e.top()),typeof f=="function"&&(f=e.bottom()),i=this.unpin!=null&&c+this.unpin<=d.top?!1:f!=null&&d.top+this.$element.height()>=b-f?"bottom":g!=null&&c<=g?"top":!1;if(this.affixed===i)return;this.affixed=i,this.unpin=i=="bottom"?d.top-c:null,this.$element.removeClass(h).addClass("affix"+(i?"-"+i:""))};var c=a.fn.affix;a.fn.affix=function(c){return this.each(function(){var d=a(this),e=d.data("affix"),f=typeof c=="object"&&c;e||d.data("affix",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.affix.Constructor=b,a.fn.affix.defaults={offset:0},a.fn.affix.noConflict=function(){return a.fn.affix=c,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var b=a(this),c=b.data();c.offset=c.offset||{},c.offsetBottom&&(c.offset.bottom=c.offsetBottom),c.offsetTop&&(c.offset.top=c.offsetTop),b.affix(c)})})}(window.jQuery),!function(a){var b='[data-dismiss="alert"]',c=function(c){a(c).on("click",b,this.close)};c.prototype.close=function(b){function f(){e.trigger("closed").remove()}var c=a(this),d=c.attr("data-target"),e;d||(d=c.attr("href"),d=d&&d.replace(/.*(?=#[^\s]*$)/,"")),e=a(d),b&&b.preventDefault(),e.length||(e=c.hasClass("alert")?c:c.parent()),e.trigger(b=a.Event("close"));if(b.isDefaultPrevented())return;e.removeClass("in"),a.support.transition&&e.hasClass("fade")?e.on(a.support.transition.end,f):f()};var d=a.fn.alert;a.fn.alert=function(b){return this.each(function(){var d=a(this),e=d.data("alert");e||d.data("alert",e=new c(this)),typeof b=="string"&&e[b].call(d)})},a.fn.alert.Constructor=c,a.fn.alert.noConflict=function(){return a.fn.alert=d,this},a(document).on("click.alert.data-api",b,c.prototype.close)}(window.jQuery),!function(a){var b=function(b,c){this.$element=a(b),this.options=a.extend({},a.fn.button.defaults,c)};b.prototype.setState=function(a){var b="disabled",c=this.$element,d=c.data(),e=c.is("input")?"val":"html";a+="Text",d.resetText||c.data("resetText",c[e]()),c[e](d[a]||this.options[a]),setTimeout(function(){a=="loadingText"?c.addClass(b).attr(b,b):c.removeClass(b).removeAttr(b)},0)},b.prototype.toggle=function(){var a=this.$element.closest('[data-toggle="buttons-radio"]');a&&a.find(".active").removeClass("active"),this.$element.toggleClass("active")};var c=a.fn.button;a.fn.button=function(c){return this.each(function(){var d=a(this),e=d.data("button"),f=typeof c=="object"&&c;e||d.data("button",e=new b(this,f)),c=="toggle"?e.toggle():c&&e.setState(c)})},a.fn.button.defaults={loadingText:"loading..."},a.fn.button.Constructor=b,a.fn.button.noConflict=function(){return a.fn.button=c,this},a(document).on("click.button.data-api","[data-toggle^=button]",function(b){var c=a(b.target);c.hasClass("btn")||(c=c.closest(".btn")),c.button("toggle")})}(window.jQuery),!function(a){var b=function(b,c){this.$element=a(b),this.options=a.extend({},a.fn.collapse.defaults,c),this.options.parent&&(this.$parent=a(this.options.parent)),this.options.toggle&&this.toggle()};b.prototype={constructor:b,dimension:function(){var a=this.$element.hasClass("width");return a?"width":"height"},show:function(){var b,c,d,e;if(this.transitioning)return;b=this.dimension(),c=a.camelCase(["scroll",b].join("-")),d=this.$parent&&this.$parent.find("> .accordion-group > .in");if(d&&d.length){e=d.data("collapse");if(e&&e.transitioning)return;d.collapse("hide"),e||d.data("collapse",null)}this.$element[b](0),this.transition("addClass",a.Event("show"),"shown"),a.support.transition&&this.$element[b](this.$element[0][c])},hide:function(){var b;if(this.transitioning)return;b=this.dimension(),this.reset(this.$element[b]()),this.transition("removeClass",a.Event("hide"),"hidden"),this.$element[b](0)},reset:function(a){var b=this.dimension();return this.$element.removeClass("collapse")[b](a||"auto")[0].offsetWidth,this.$element[a!==null?"addClass":"removeClass"]("collapse"),this},transition:function(b,c,d){var e=this,f=function(){c.type=="show"&&e.reset(),e.transitioning=0,e.$element.trigger(d)};this.$element.trigger(c);if(c.isDefaultPrevented())return;this.transitioning=1,this.$element[b]("in"),a.support.transition&&this.$element.hasClass("collapse")?this.$element.one(a.support.transition.end,f):f()},toggle:function(){this[this.$element.hasClass("in")?"hide":"show"]()}};var c=a.fn.collapse;a.fn.collapse=function(c){return this.each(function(){var d=a(this),e=d.data("collapse"),f=typeof c=="object"&&c;e||d.data("collapse",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.collapse.defaults={toggle:!0},a.fn.collapse.Constructor=b,a.fn.collapse.noConflict=function(){return a.fn.collapse=c,this},a(document).on("click.collapse.data-api","[data-toggle=collapse]",function(b){var c=a(this),d,e=c.attr("data-target")||b.preventDefault()||(d=c.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,""),f=a(e).data("collapse")?"toggle":c.data();c[a(e).hasClass("in")?"addClass":"removeClass"]("collapsed"),a(e).collapse(f)})}(window.jQuery),!function(a){var b=function(b,c){this.$element=a(b),this.options=c,this.options.pause=="hover"&&this.$element.on("mouseenter",a.proxy(this.pause,this)).on("mouseleave",a.proxy(this.cycle,this))};b.prototype={cycle:function(b){return b||(this.paused=!1),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},to:function(b){var c=this.$element.find(".item.active"),d=c.parent().children(),e=d.index(c),f=this;if(b>d.length-1||b<0)return;return this.sliding?this.$element.one("slid",function(){f.to(b)}):e==b?this.pause().cycle():this.slide(b>e?"next":"prev",a(d[b]))},pause:function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition.end&&(this.$element.trigger(a.support.transition.end),this.cycle()),clearInterval(this.interval),this.interval=null,this},next:function(){if(this.sliding)return;return this.slide("next")},prev:function(){if(this.sliding)return;return this.slide("prev")},slide:function(b,c){var d=this.$element.find(".item.active"),e=c||d[b](),f=this.interval,g=b=="next"?"left":"right",h=b=="next"?"first":"last",i=this,j;this.sliding=!0,f&&this.pause(),e=e.length?e:this.$element.find(".item")[h](),j=a.Event("slide",{relatedTarget:e[0]});if(e.hasClass("active"))return;if(a.support.transition&&this.$element.hasClass("slide")){this.$element.trigger(j);if(j.isDefaultPrevented())return;e.addClass(b),e[0].offsetWidth,d.addClass(g),e.addClass(g),this.$element.one(a.support.transition.end,function(){e.removeClass([b,g].join(" ")).addClass("active"),d.removeClass(["active",g].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger("slid")},0)})}else{this.$element.trigger(j);if(j.isDefaultPrevented())return;d.removeClass("active"),e.addClass("active"),this.sliding=!1,this.$element.trigger("slid")}return f&&this.cycle(),this}};var c=a.fn.carousel;a.fn.carousel=function(c){return this.each(function(){var d=a(this),e=d.data("carousel"),f=a.extend({},a.fn.carousel.defaults,typeof c=="object"&&c),g=typeof c=="string"?c:f.slide;e||d.data("carousel",e=new b(this,f)),typeof c=="number"?e.to(c):g?e[g]():f.interval&&e.cycle()})},a.fn.carousel.defaults={interval:5e3,pause:"hover"},a.fn.carousel.Constructor=b,a.fn.carousel.noConflict=function(){return a.fn.carousel=c,this},a(document).on("click.carousel.data-api","[data-slide]",function(b){var c=a(this),d,e=a(c.attr("data-target")||(d=c.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,"")),f=a.extend({},e.data(),c.data());e.carousel(f),b.preventDefault()})}(window.jQuery),!function(a){var b=function(b,c){this.$element=a(b),this.options=a.extend({},a.fn.typeahead.defaults,c),this.matcher=this.options.matcher||this.matcher,this.sorter=this.options.sorter||this.sorter,this.highlighter=this.options.highlighter||this.highlighter,this.updater=this.options.updater||this.updater,this.source=this.options.source,this.$menu=a(this.options.menu),this.shown=!1,this.listen()};b.prototype={constructor:b,select:function(){var a=this.$menu.find(".active").attr("data-value");return this.$element.val(this.updater(a)).change(),this.hide()},updater:function(a){return a},show:function(){var b=a.extend({},this.$element.position(),{height:this.$element[0].offsetHeight});return this.$menu.insertAfter(this.$element).css({top:b.top+b.height,left:b.left}).show(),this.shown=!0,this},hide:function(){return this.$menu.hide(),this.shown=!1,this},lookup:function(b){var c;return this.query=this.$element.val(),!this.query||this.query.length"+b+""})},render:function(b){var c=this;return b=a(b).map(function(b,d){return b=a(c.options.item).attr("data-value",d),b.find("a").html(c.highlighter(d)),b[0]}),b.first().addClass("active"),this.$menu.html(b),this},next:function(b){var c=this.$menu.find(".active").removeClass("active"),d=c.next();d.length||(d=a(this.$menu.find("li")[0])),d.addClass("active")},prev:function(a){var b=this.$menu.find(".active").removeClass("active"),c=b.prev();c.length||(c=this.$menu.find("li").last()),c.addClass("active")},listen:function(){this.$element.on("blur",a.proxy(this.blur,this)).on("keypress",a.proxy(this.keypress,this)).on("keyup",a.proxy(this.keyup,this)),this.eventSupported("keydown")&&this.$element.on("keydown",a.proxy(this.keydown,this)),this.$menu.on("click",a.proxy(this.click,this)).on("mouseenter","li",a.proxy(this.mouseenter,this))},eventSupported:function(a){var b=a in this.$element;return b||(this.$element.setAttribute(a,"return;"),b=typeof this.$element[a]=="function"),b},move:function(a){if(!this.shown)return;switch(a.keyCode){case 9:case 13:case 27:a.preventDefault();break;case 38:a.preventDefault(),this.prev();break;case 40:a.preventDefault(),this.next()}a.stopPropagation()},keydown:function(b){this.suppressKeyPressRepeat=~a.inArray(b.keyCode,[40,38,9,13,27]),this.move(b)},keypress:function(a){if(this.suppressKeyPressRepeat)return;this.move(a)},keyup:function(a){switch(a.keyCode){case 40:case 38:case 16:case 17:case 18:break;case 9:case 13:if(!this.shown)return;this.select();break;case 27:if(!this.shown)return;this.hide();break;default:this.lookup()}a.stopPropagation(),a.preventDefault()},blur:function(a){var b=this;setTimeout(function(){b.hide()},150)},click:function(a){a.stopPropagation(),a.preventDefault(),this.select()},mouseenter:function(b){this.$menu.find(".active").removeClass("active"),a(b.currentTarget).addClass("active")}};var c=a.fn.typeahead;a.fn.typeahead=function(c){return this.each(function(){var d=a(this),e=d.data("typeahead"),f=typeof c=="object"&&c;e||d.data("typeahead",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.typeahead.defaults={source:[],items:8,menu:'',item:'
  • ',minLength:1},a.fn.typeahead.Constructor=b,a.fn.typeahead.noConflict=function(){return a.fn.typeahead=c,this},a(document).on("focus.typeahead.data-api",'[data-provide="typeahead"]',function(b){var c=a(this);if(c.data("typeahead"))return;b.preventDefault(),c.typeahead(c.data())})}(window.jQuery)]]>
    GET/resources/js/bootstrap.minjsHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0 +
    Refererhttp://zero.webappsecurity.com/
    Hostzero.webappsecurity.com
    Accept*/*
    Accept-Languageen-US,en;q=0.5
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoScriptEngine="Gecko";Category="Crawl";SID="C2E3EA7620F4A29F11DBAC2B877DD850";PSID="306E42D0F653E7CFA6720D7F15AE506B";SessionType="Crawl";CrawlType="ScriptInclude";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";tht="21";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="4d8737cf";
    X-Request-Memorid="7a8d099c";sc="1";thid="42";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0
    HTTP/1.1200OK').appendTo(document.body),this.$backdrop.click(this.options.backdrop=="static"?a.proxy(this.$element[0].focus,this.$element[0]):a.proxy(this.hide,this)),e&&this.$backdrop[0].offsetWidth,this.$backdrop.addClass("in"),e?this.$backdrop.one(a.support.transition.end,b):b()}else!this.isShown&&this.$backdrop?(this.$backdrop.removeClass("in"),a.support.transition&&this.$element.hasClass("fade")?this.$backdrop.one(a.support.transition.end,a.proxy(this.removeBackdrop,this)):this.removeBackdrop()):b&&b()}};var c=a.fn.modal;a.fn.modal=function(c){return this.each(function(){var d=a(this),e=d.data("modal"),f=a.extend({},a.fn.modal.defaults,d.data(),typeof c=="object"&&c);e||d.data("modal",e=new b(this,f)),typeof c=="string"?e[c]():f.show&&e.show()})},a.fn.modal.defaults={backdrop:!0,keyboard:!0,show:!0},a.fn.modal.Constructor=b,a.fn.modal.noConflict=function(){return a.fn.modal=c,this},a(document).on("click.modal.data-api",'[data-toggle="modal"]',function(b){var c=a(this),d=c.attr("href"),e=a(c.attr("data-target")||d&&d.replace(/.*(?=#[^\s]+$)/,"")),f=e.data("modal")?"toggle":a.extend({remote:!/#/.test(d)&&d},e.data(),c.data());b.preventDefault(),e.modal(f).one("hide",function(){c.focus()})})}(window.jQuery),!function(a){function d(){a(b).each(function(){e(a(this)).removeClass("open")})}function e(b){var c=b.attr("data-target"),d;return c||(c=b.attr("href"),c=c&&/#/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,"")),d=a(c),d.length||(d=b.parent()),d}var b="[data-toggle=dropdown]",c=function(b){var c=a(b).on("click.dropdown.data-api",this.toggle);a("html").on("click.dropdown.data-api",function(){c.parent().removeClass("open")})};c.prototype={constructor:c,toggle:function(b){var c=a(this),f,g;if(c.is(".disabled, :disabled"))return;return f=e(c),g=f.hasClass("open"),d(),g||f.toggleClass("open"),c.focus(),!1},keydown:function(b){var c,d,f,g,h,i;if(!/(38|40|27)/.test(b.keyCode))return;c=a(this),b.preventDefault(),b.stopPropagation();if(c.is(".disabled, :disabled"))return;g=e(c),h=g.hasClass("open");if(!h||h&&b.keyCode==27)return c.click();d=a("[role=menu] li:not(.divider):visible a",g);if(!d.length)return;i=d.index(d.filter(":focus")),b.keyCode==38&&i>0&&i--,b.keyCode==40&&i a",this.$body=a("body"),this.refresh(),this.process()}b.prototype={constructor:b,refresh:function(){var b=this,c;this.offsets=a([]),this.targets=a([]),c=this.$body.find(this.selector).map(function(){var c=a(this),d=c.data("target")||c.attr("href"),e=/^#\w/.test(d)&&a(d);return e&&e.length&&[[e.position().top+b.$scrollElement.scrollTop(),d]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){b.offsets.push(this[0]),b.targets.push(this[1])})},process:function(){var a=this.$scrollElement.scrollTop()+this.options.offset,b=this.$scrollElement[0].scrollHeight||this.$body[0].scrollHeight,c=b-this.$scrollElement.height(),d=this.offsets,e=this.targets,f=this.activeTarget,g;if(a>=c)return f!=(g=e.last()[0])&&this.activate(g);for(g=d.length;g--;)f!=e[g]&&a>=d[g]&&(!d[g+1]||a<=d[g+1])&&this.activate(e[g])},activate:function(b){var c,d;this.activeTarget=b,a(this.selector).parent(".active").removeClass("active"),d=this.selector+'[data-target="'+b+'"],'+this.selector+'[href="'+b+'"]',c=a(d).parent("li").addClass("active"),c.parent(".dropdown-menu").length&&(c=c.closest("li.dropdown").addClass("active")),c.trigger("activate")}};var c=a.fn.scrollspy;a.fn.scrollspy=function(c){return this.each(function(){var d=a(this),e=d.data("scrollspy"),f=typeof c=="object"&&c;e||d.data("scrollspy",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.scrollspy.Constructor=b,a.fn.scrollspy.defaults={offset:10},a.fn.scrollspy.noConflict=function(){return a.fn.scrollspy=c,this},a(window).on("load",function(){a('[data-spy="scroll"]').each(function(){var b=a(this);b.scrollspy(b.data())})})}(window.jQuery),!function(a){var b=function(b){this.element=a(b)};b.prototype={constructor:b,show:function(){var b=this.element,c=b.closest("ul:not(.dropdown-menu)"),d=b.attr("data-target"),e,f,g;d||(d=b.attr("href"),d=d&&d.replace(/.*(?=#[^\s]*$)/,""));if(b.parent("li").hasClass("active"))return;e=c.find(".active:last a")[0],g=a.Event("show",{relatedTarget:e}),b.trigger(g);if(g.isDefaultPrevented())return;f=a(d),this.activate(b.parent("li"),c),this.activate(f,f.parent(),function(){b.trigger({type:"shown",relatedTarget:e})})},activate:function(b,c,d){function g(){e.removeClass("active").find("> .dropdown-menu > .active").removeClass("active"),b.addClass("active"),f?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu")&&b.closest("li.dropdown").addClass("active"),d&&d()}var e=c.find("> .active"),f=d&&a.support.transition&&e.hasClass("fade");f?e.one(a.support.transition.end,g):g(),e.removeClass("in")}};var c=a.fn.tab;a.fn.tab=function(c){return this.each(function(){var d=a(this),e=d.data("tab");e||d.data("tab",e=new b(this)),typeof c=="string"&&e[c]()})},a.fn.tab.Constructor=b,a.fn.tab.noConflict=function(){return a.fn.tab=c,this},a(document).on("click.tab.data-api",'[data-toggle="tab"], [data-toggle="pill"]',function(b){b.preventDefault(),a(this).tab("show")})}(window.jQuery),!function(a){var b=function(a,b){this.init("tooltip",a,b)};b.prototype={constructor:b,init:function(b,c,d){var e,f;this.type=b,this.$element=a(c),this.options=this.getOptions(d),this.enabled=!0,this.options.trigger=="click"?this.$element.on("click."+this.type,this.options.selector,a.proxy(this.toggle,this)):this.options.trigger!="manual"&&(e=this.options.trigger=="hover"?"mouseenter":"focus",f=this.options.trigger=="hover"?"mouseleave":"blur",this.$element.on(e+"."+this.type,this.options.selector,a.proxy(this.enter,this)),this.$element.on(f+"."+this.type,this.options.selector,a.proxy(this.leave,this))),this.options.selector?this._options=a.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},getOptions:function(b){return b=a.extend({},a.fn[this.type].defaults,b,this.$element.data()),b.delay&&typeof b.delay=="number"&&(b.delay={show:b.delay,hide:b.delay}),b},enter:function(b){var c=a(b.currentTarget)[this.type](this._options).data(this.type);if(!c.options.delay||!c.options.delay.show)return c.show();clearTimeout(this.timeout),c.hoverState="in",this.timeout=setTimeout(function(){c.hoverState=="in"&&c.show()},c.options.delay.show)},leave:function(b){var c=a(b.currentTarget)[this.type](this._options).data(this.type);this.timeout&&clearTimeout(this.timeout);if(!c.options.delay||!c.options.delay.hide)return c.hide();c.hoverState="out",this.timeout=setTimeout(function(){c.hoverState=="out"&&c.hide()},c.options.delay.hide)},show:function(){var a,b,c,d,e,f,g;if(this.hasContent()&&this.enabled){a=this.tip(),this.setContent(),this.options.animation&&a.addClass("fade"),f=typeof this.options.placement=="function"?this.options.placement.call(this,a[0],this.$element[0]):this.options.placement,b=/in/.test(f),a.detach().css({top:0,left:0,display:"block"}).insertAfter(this.$element),c=this.getPosition(b),d=a[0].offsetWidth,e=a[0].offsetHeight;switch(b?f.split(" ")[1]:f){case"bottom":g={top:c.top+c.height,left:c.left+c.width/2-d/2};break;case"top":g={top:c.top-e,left:c.left+c.width/2-d/2};break;case"left":g={top:c.top+c.height/2-e/2,left:c.left-d};break;case"right":g={top:c.top+c.height/2-e/2,left:c.left+c.width}}a.offset(g).addClass(f).addClass("in")}},setContent:function(){var a=this.tip(),b=this.getTitle();a.find(".tooltip-inner")[this.options.html?"html":"text"](b),a.removeClass("fade in top bottom left right")},hide:function(){function d(){var b=setTimeout(function(){c.off(a.support.transition.end).detach()},500);c.one(a.support.transition.end,function(){clearTimeout(b),c.detach()})}var b=this,c=this.tip();return c.removeClass("in"),a.support.transition&&this.$tip.hasClass("fade")?d():c.detach(),this},fixTitle:function(){var a=this.$element;(a.attr("title")||typeof a.attr("data-original-title")!="string")&&a.attr("data-original-title",a.attr("title")||"").removeAttr("title")},hasContent:function(){return this.getTitle()},getPosition:function(b){return a.extend({},b?{top:0,left:0}:this.$element.offset(),{width:this.$element[0].offsetWidth,height:this.$element[0].offsetHeight})},getTitle:function(){var a,b=this.$element,c=this.options;return a=b.attr("data-original-title")||(typeof c.title=="function"?c.title.call(b[0]):c.title),a},tip:function(){return this.$tip=this.$tip||a(this.options.template)},validate:function(){this.$element[0].parentNode||(this.hide(),this.$element=null,this.options=null)},enable:function(){this.enabled=!0},disable:function(){this.enabled=!1},toggleEnabled:function(){this.enabled=!this.enabled},toggle:function(b){var c=a(b.currentTarget)[this.type](this._options).data(this.type);c[c.tip().hasClass("in")?"hide":"show"]()},destroy:function(){this.hide().$element.off("."+this.type).removeData(this.type)}};var c=a.fn.tooltip;a.fn.tooltip=function(c){return this.each(function(){var d=a(this),e=d.data("tooltip"),f=typeof c=="object"&&c;e||d.data("tooltip",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.tooltip.Constructor=b,a.fn.tooltip.defaults={animation:!0,placement:"top",selector:!1,template:'
    ',trigger:"hover",title:"",delay:0,html:!1},a.fn.tooltip.noConflict=function(){return a.fn.tooltip=c,this}}(window.jQuery),!function(a){var b=function(a,b){this.init("popover",a,b)};b.prototype=a.extend({},a.fn.tooltip.Constructor.prototype,{constructor:b,setContent:function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content")[this.options.html?"html":"text"](c),a.removeClass("fade top bottom left right in")},hasContent:function(){return this.getTitle()||this.getContent()},getContent:function(){var a,b=this.$element,c=this.options;return a=b.attr("data-content")||(typeof c.content=="function"?c.content.call(b[0]):c.content),a},tip:function(){return this.$tip||(this.$tip=a(this.options.template)),this.$tip},destroy:function(){this.hide().$element.off("."+this.type).removeData(this.type)}});var c=a.fn.popover;a.fn.popover=function(c){return this.each(function(){var d=a(this),e=d.data("popover"),f=typeof c=="object"&&c;e||d.data("popover",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.popover.Constructor=b,a.fn.popover.defaults=a.extend({},a.fn.tooltip.defaults,{placement:"right",trigger:"click",content:"",template:'

    '}),a.fn.popover.noConflict=function(){return a.fn.popover=c,this}}(window.jQuery),!function(a){var b=function(b,c){this.options=a.extend({},a.fn.affix.defaults,c),this.$window=a(window).on("scroll.affix.data-api",a.proxy(this.checkPosition,this)).on("click.affix.data-api",a.proxy(function(){setTimeout(a.proxy(this.checkPosition,this),1)},this)),this.$element=a(b),this.checkPosition()};b.prototype.checkPosition=function(){if(!this.$element.is(":visible"))return;var b=a(document).height(),c=this.$window.scrollTop(),d=this.$element.offset(),e=this.options.offset,f=e.bottom,g=e.top,h="affix affix-top affix-bottom",i;typeof e!="object"&&(f=g=e),typeof g=="function"&&(g=e.top()),typeof f=="function"&&(f=e.bottom()),i=this.unpin!=null&&c+this.unpin<=d.top?!1:f!=null&&d.top+this.$element.height()>=b-f?"bottom":g!=null&&c<=g?"top":!1;if(this.affixed===i)return;this.affixed=i,this.unpin=i=="bottom"?d.top-c:null,this.$element.removeClass(h).addClass("affix"+(i?"-"+i:""))};var c=a.fn.affix;a.fn.affix=function(c){return this.each(function(){var d=a(this),e=d.data("affix"),f=typeof c=="object"&&c;e||d.data("affix",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.affix.Constructor=b,a.fn.affix.defaults={offset:0},a.fn.affix.noConflict=function(){return a.fn.affix=c,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var b=a(this),c=b.data();c.offset=c.offset||{},c.offsetBottom&&(c.offset.bottom=c.offsetBottom),c.offsetTop&&(c.offset.top=c.offsetTop),b.affix(c)})})}(window.jQuery),!function(a){var b='[data-dismiss="alert"]',c=function(c){a(c).on("click",b,this.close)};c.prototype.close=function(b){function f(){e.trigger("closed").remove()}var c=a(this),d=c.attr("data-target"),e;d||(d=c.attr("href"),d=d&&d.replace(/.*(?=#[^\s]*$)/,"")),e=a(d),b&&b.preventDefault(),e.length||(e=c.hasClass("alert")?c:c.parent()),e.trigger(b=a.Event("close"));if(b.isDefaultPrevented())return;e.removeClass("in"),a.support.transition&&e.hasClass("fade")?e.on(a.support.transition.end,f):f()};var d=a.fn.alert;a.fn.alert=function(b){return this.each(function(){var d=a(this),e=d.data("alert");e||d.data("alert",e=new c(this)),typeof b=="string"&&e[b].call(d)})},a.fn.alert.Constructor=c,a.fn.alert.noConflict=function(){return a.fn.alert=d,this},a(document).on("click.alert.data-api",b,c.prototype.close)}(window.jQuery),!function(a){var b=function(b,c){this.$element=a(b),this.options=a.extend({},a.fn.button.defaults,c)};b.prototype.setState=function(a){var b="disabled",c=this.$element,d=c.data(),e=c.is("input")?"val":"html";a+="Text",d.resetText||c.data("resetText",c[e]()),c[e](d[a]||this.options[a]),setTimeout(function(){a=="loadingText"?c.addClass(b).attr(b,b):c.removeClass(b).removeAttr(b)},0)},b.prototype.toggle=function(){var a=this.$element.closest('[data-toggle="buttons-radio"]');a&&a.find(".active").removeClass("active"),this.$element.toggleClass("active")};var c=a.fn.button;a.fn.button=function(c){return this.each(function(){var d=a(this),e=d.data("button"),f=typeof c=="object"&&c;e||d.data("button",e=new b(this,f)),c=="toggle"?e.toggle():c&&e.setState(c)})},a.fn.button.defaults={loadingText:"loading..."},a.fn.button.Constructor=b,a.fn.button.noConflict=function(){return a.fn.button=c,this},a(document).on("click.button.data-api","[data-toggle^=button]",function(b){var c=a(b.target);c.hasClass("btn")||(c=c.closest(".btn")),c.button("toggle")})}(window.jQuery),!function(a){var b=function(b,c){this.$element=a(b),this.options=a.extend({},a.fn.collapse.defaults,c),this.options.parent&&(this.$parent=a(this.options.parent)),this.options.toggle&&this.toggle()};b.prototype={constructor:b,dimension:function(){var a=this.$element.hasClass("width");return a?"width":"height"},show:function(){var b,c,d,e;if(this.transitioning)return;b=this.dimension(),c=a.camelCase(["scroll",b].join("-")),d=this.$parent&&this.$parent.find("> .accordion-group > .in");if(d&&d.length){e=d.data("collapse");if(e&&e.transitioning)return;d.collapse("hide"),e||d.data("collapse",null)}this.$element[b](0),this.transition("addClass",a.Event("show"),"shown"),a.support.transition&&this.$element[b](this.$element[0][c])},hide:function(){var b;if(this.transitioning)return;b=this.dimension(),this.reset(this.$element[b]()),this.transition("removeClass",a.Event("hide"),"hidden"),this.$element[b](0)},reset:function(a){var b=this.dimension();return this.$element.removeClass("collapse")[b](a||"auto")[0].offsetWidth,this.$element[a!==null?"addClass":"removeClass"]("collapse"),this},transition:function(b,c,d){var e=this,f=function(){c.type=="show"&&e.reset(),e.transitioning=0,e.$element.trigger(d)};this.$element.trigger(c);if(c.isDefaultPrevented())return;this.transitioning=1,this.$element[b]("in"),a.support.transition&&this.$element.hasClass("collapse")?this.$element.one(a.support.transition.end,f):f()},toggle:function(){this[this.$element.hasClass("in")?"hide":"show"]()}};var c=a.fn.collapse;a.fn.collapse=function(c){return this.each(function(){var d=a(this),e=d.data("collapse"),f=typeof c=="object"&&c;e||d.data("collapse",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.collapse.defaults={toggle:!0},a.fn.collapse.Constructor=b,a.fn.collapse.noConflict=function(){return a.fn.collapse=c,this},a(document).on("click.collapse.data-api","[data-toggle=collapse]",function(b){var c=a(this),d,e=c.attr("data-target")||b.preventDefault()||(d=c.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,""),f=a(e).data("collapse")?"toggle":c.data();c[a(e).hasClass("in")?"addClass":"removeClass"]("collapsed"),a(e).collapse(f)})}(window.jQuery),!function(a){var b=function(b,c){this.$element=a(b),this.options=c,this.options.pause=="hover"&&this.$element.on("mouseenter",a.proxy(this.pause,this)).on("mouseleave",a.proxy(this.cycle,this))};b.prototype={cycle:function(b){return b||(this.paused=!1),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},to:function(b){var c=this.$element.find(".item.active"),d=c.parent().children(),e=d.index(c),f=this;if(b>d.length-1||b<0)return;return this.sliding?this.$element.one("slid",function(){f.to(b)}):e==b?this.pause().cycle():this.slide(b>e?"next":"prev",a(d[b]))},pause:function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition.end&&(this.$element.trigger(a.support.transition.end),this.cycle()),clearInterval(this.interval),this.interval=null,this},next:function(){if(this.sliding)return;return this.slide("next")},prev:function(){if(this.sliding)return;return this.slide("prev")},slide:function(b,c){var d=this.$element.find(".item.active"),e=c||d[b](),f=this.interval,g=b=="next"?"left":"right",h=b=="next"?"first":"last",i=this,j;this.sliding=!0,f&&this.pause(),e=e.length?e:this.$element.find(".item")[h](),j=a.Event("slide",{relatedTarget:e[0]});if(e.hasClass("active"))return;if(a.support.transition&&this.$element.hasClass("slide")){this.$element.trigger(j);if(j.isDefaultPrevented())return;e.addClass(b),e[0].offsetWidth,d.addClass(g),e.addClass(g),this.$element.one(a.support.transition.end,function(){e.removeClass([b,g].join(" ")).addClass("active"),d.removeClass(["active",g].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger("slid")},0)})}else{this.$element.trigger(j);if(j.isDefaultPrevented())return;d.removeClass("active"),e.addClass("active"),this.sliding=!1,this.$element.trigger("slid")}return f&&this.cycle(),this}};var c=a.fn.carousel;a.fn.carousel=function(c){return this.each(function(){var d=a(this),e=d.data("carousel"),f=a.extend({},a.fn.carousel.defaults,typeof c=="object"&&c),g=typeof c=="string"?c:f.slide;e||d.data("carousel",e=new b(this,f)),typeof c=="number"?e.to(c):g?e[g]():f.interval&&e.cycle()})},a.fn.carousel.defaults={interval:5e3,pause:"hover"},a.fn.carousel.Constructor=b,a.fn.carousel.noConflict=function(){return a.fn.carousel=c,this},a(document).on("click.carousel.data-api","[data-slide]",function(b){var c=a(this),d,e=a(c.attr("data-target")||(d=c.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,"")),f=a.extend({},e.data(),c.data());e.carousel(f),b.preventDefault()})}(window.jQuery),!function(a){var b=function(b,c){this.$element=a(b),this.options=a.extend({},a.fn.typeahead.defaults,c),this.matcher=this.options.matcher||this.matcher,this.sorter=this.options.sorter||this.sorter,this.highlighter=this.options.highlighter||this.highlighter,this.updater=this.options.updater||this.updater,this.source=this.options.source,this.$menu=a(this.options.menu),this.shown=!1,this.listen()};b.prototype={constructor:b,select:function(){var a=this.$menu.find(".active").attr("data-value");return this.$element.val(this.updater(a)).change(),this.hide()},updater:function(a){return a},show:function(){var b=a.extend({},this.$element.position(),{height:this.$element[0].offsetHeight});return this.$menu.insertAfter(this.$element).css({top:b.top+b.height,left:b.left}).show(),this.shown=!0,this},hide:function(){return this.$menu.hide(),this.shown=!1,this},lookup:function(b){var c;return this.query=this.$element.val(),!this.query||this.query.length"+b+""})},render:function(b){var c=this;return b=a(b).map(function(b,d){return b=a(c.options.item).attr("data-value",d),b.find("a").html(c.highlighter(d)),b[0]}),b.first().addClass("active"),this.$menu.html(b),this},next:function(b){var c=this.$menu.find(".active").removeClass("active"),d=c.next();d.length||(d=a(this.$menu.find("li")[0])),d.addClass("active")},prev:function(a){var b=this.$menu.find(".active").removeClass("active"),c=b.prev();c.length||(c=this.$menu.find("li").last()),c.addClass("active")},listen:function(){this.$element.on("blur",a.proxy(this.blur,this)).on("keypress",a.proxy(this.keypress,this)).on("keyup",a.proxy(this.keyup,this)),this.eventSupported("keydown")&&this.$element.on("keydown",a.proxy(this.keydown,this)),this.$menu.on("click",a.proxy(this.click,this)).on("mouseenter","li",a.proxy(this.mouseenter,this))},eventSupported:function(a){var b=a in this.$element;return b||(this.$element.setAttribute(a,"return;"),b=typeof this.$element[a]=="function"),b},move:function(a){if(!this.shown)return;switch(a.keyCode){case 9:case 13:case 27:a.preventDefault();break;case 38:a.preventDefault(),this.prev();break;case 40:a.preventDefault(),this.next()}a.stopPropagation()},keydown:function(b){this.suppressKeyPressRepeat=~a.inArray(b.keyCode,[40,38,9,13,27]),this.move(b)},keypress:function(a){if(this.suppressKeyPressRepeat)return;this.move(a)},keyup:function(a){switch(a.keyCode){case 40:case 38:case 16:case 17:case 18:break;case 9:case 13:if(!this.shown)return;this.select();break;case 27:if(!this.shown)return;this.hide();break;default:this.lookup()}a.stopPropagation(),a.preventDefault()},blur:function(a){var b=this;setTimeout(function(){b.hide()},150)},click:function(a){a.stopPropagation(),a.preventDefault(),this.select()},mouseenter:function(b){this.$menu.find(".active").removeClass("active"),a(b.currentTarget).addClass("active")}};var c=a.fn.typeahead;a.fn.typeahead=function(c){return this.each(function(){var d=a(this),e=d.data("typeahead"),f=typeof c=="object"&&c;e||d.data("typeahead",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.typeahead.defaults={source:[],items:8,menu:'',item:'
  • ',minLength:1},a.fn.typeahead.Constructor=b,a.fn.typeahead.noConflict=function(){return a.fn.typeahead=c,this},a(document).on("focus.typeahead.data-api",'[data-provide="typeahead"]',function(b){var c=a(this);if(c.data("typeahead"))return;b.preventDefault(),c.typeahead(c.data())})}(window.jQuery)]]>
    DateFri, 24 Feb 2023 14:01:44 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Accept-Rangesbytes
    ETagW/"26898-1358437290000"
    Last-ModifiedThu, 17 Jan 2013 15:41:30 GMT
    Cache-Controlmax-age=2419200
    ExpiresFri, 24 Mar 2023 14:01:44 GMT
    Content-Typeapplication/javascript;charset=UTF-8
    Content-Length26898
    Keep-Alivetimeout=5, max=100
    ConnectionKeep-Alive
    http://zero.webappsecurity.com:80/resources/js/placeholders.min.jshttpzero.webappsecurity.com80 +-1)}function keyupHandler(){var type;if(this.value!==valueKeyDown){this.className=this.className.replace(classNameRegExp,"");this.value=this.value.replace(this.getAttribute("placeholder"),"");type=this.getAttribute("data-placeholdertype");if(type)this.type=type}if(this.value===""){blurHandler.call(this);cursorToStart(this)}}function addEventListener(element,event,fn){if(element.addEventListener)return element.addEventListener(event,fn.bind(element),false);if(element.attachEvent)return element.attachEvent("on"+ +event,fn.bind(element))}function addEventListeners(element){if(!settings.hideOnFocus){addEventListener(element,"keydown",keydownHandler);addEventListener(element,"keyup",keyupHandler)}addEventListener(element,"focus",focusHandler);addEventListener(element,"blur",blurHandler)}function updatePlaceholders(){var inputs=document.getElementsByTagName("input"),textareas=document.getElementsByTagName("textarea"),numInputs=inputs.length,num=numInputs+textareas.length,i,form,element,oldPlaceholder,newPlaceholder; +for(i=0;i-1)if(newPlaceholder){oldPlaceholder=element.getAttribute("data-currentplaceholder");if(newPlaceholder!==oldPlaceholder){if(element.value===oldPlaceholder||element.value===newPlaceholder||!element.value){element.value=newPlaceholder;element.className=element.className+" "+settings.className}if(!oldPlaceholder){if(element.form){form=element.form; +if(!form.getAttribute("data-placeholdersubmit")){addEventListener(form,"submit",submitHandler);form.setAttribute("data-placeholdersubmit","true")}}addEventListeners(element)}element.setAttribute("data-currentplaceholder",newPlaceholder)}}}}function createPlaceholders(){var inputs=document.getElementsByTagName("input"),textareas=document.getElementsByTagName("textarea"),numInputs=inputs.length,num=numInputs+textareas.length,i,element,form,placeholder;for(i=0;i-1)if(placeholder){if(element.type==="password")try{element.type="text";element.setAttribute("data-placeholdertype","password")}catch(e){}element.setAttribute("data-currentplaceholder",placeholder);if(element.value===""||element.value===placeholder){element.className=element.className+" "+settings.className;element.value=placeholder}if(element.form){form=element.form;if(!form.getAttribute("data-placeholdersubmit")){addEventListener(form, +"submit",submitHandler);form.setAttribute("data-placeholdersubmit","true")}}addEventListeners(element)}}}function init(opts){var test=document.createElement("input"),opt,styleElem,styleRules,i,j;if(typeof test.placeholder==="undefined"){for(opt in opts)if(opts.hasOwnProperty(opt))settings[opt]=opts[opt];styleElem=document.createElement("style");styleElem.type="text/css";var importantValue=settings.styleImportant?"!important":"";styleRules=document.createTextNode("."+settings.className+" { color:"+ +settings.textColor+importantValue+"; }");if(styleElem.styleSheet)styleElem.styleSheet.cssText=styleRules.nodeValue;else styleElem.appendChild(styleRules);document.getElementsByTagName("head")[0].appendChild(styleElem);if(!Array.prototype.indexOf)Array.prototype.indexOf=function(obj,start){for(i=start||0,j=this.length;iGET/resources/js/placeholders.minjsHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0 +
    Refererhttp://zero.webappsecurity.com/
    Hostzero.webappsecurity.com
    Accept*/*
    Accept-Languageen-US,en;q=0.5
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoScriptEngine="Gecko";Category="Crawl";SID="511D6DB521E43A071D015EA7E62869D3";PSID="306E42D0F653E7CFA6720D7F15AE506B";SessionType="Crawl";CrawlType="ScriptInclude";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";tht="21";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="8eaa0f87";
    X-Request-Memorid="a69beee8";sc="1";thid="47";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0
    HTTP/1.1200OK +-1)}function keyupHandler(){var type;if(this.value!==valueKeyDown){this.className=this.className.replace(classNameRegExp,"");this.value=this.value.replace(this.getAttribute("placeholder"),"");type=this.getAttribute("data-placeholdertype");if(type)this.type=type}if(this.value===""){blurHandler.call(this);cursorToStart(this)}}function addEventListener(element,event,fn){if(element.addEventListener)return element.addEventListener(event,fn.bind(element),false);if(element.attachEvent)return element.attachEvent("on"+ +event,fn.bind(element))}function addEventListeners(element){if(!settings.hideOnFocus){addEventListener(element,"keydown",keydownHandler);addEventListener(element,"keyup",keyupHandler)}addEventListener(element,"focus",focusHandler);addEventListener(element,"blur",blurHandler)}function updatePlaceholders(){var inputs=document.getElementsByTagName("input"),textareas=document.getElementsByTagName("textarea"),numInputs=inputs.length,num=numInputs+textareas.length,i,form,element,oldPlaceholder,newPlaceholder; +for(i=0;i-1)if(newPlaceholder){oldPlaceholder=element.getAttribute("data-currentplaceholder");if(newPlaceholder!==oldPlaceholder){if(element.value===oldPlaceholder||element.value===newPlaceholder||!element.value){element.value=newPlaceholder;element.className=element.className+" "+settings.className}if(!oldPlaceholder){if(element.form){form=element.form; +if(!form.getAttribute("data-placeholdersubmit")){addEventListener(form,"submit",submitHandler);form.setAttribute("data-placeholdersubmit","true")}}addEventListeners(element)}element.setAttribute("data-currentplaceholder",newPlaceholder)}}}}function createPlaceholders(){var inputs=document.getElementsByTagName("input"),textareas=document.getElementsByTagName("textarea"),numInputs=inputs.length,num=numInputs+textareas.length,i,element,form,placeholder;for(i=0;i-1)if(placeholder){if(element.type==="password")try{element.type="text";element.setAttribute("data-placeholdertype","password")}catch(e){}element.setAttribute("data-currentplaceholder",placeholder);if(element.value===""||element.value===placeholder){element.className=element.className+" "+settings.className;element.value=placeholder}if(element.form){form=element.form;if(!form.getAttribute("data-placeholdersubmit")){addEventListener(form, +"submit",submitHandler);form.setAttribute("data-placeholdersubmit","true")}}addEventListeners(element)}}}function init(opts){var test=document.createElement("input"),opt,styleElem,styleRules,i,j;if(typeof test.placeholder==="undefined"){for(opt in opts)if(opts.hasOwnProperty(opt))settings[opt]=opts[opt];styleElem=document.createElement("style");styleElem.type="text/css";var importantValue=settings.styleImportant?"!important":"";styleRules=document.createTextNode("."+settings.className+" { color:"+ +settings.textColor+importantValue+"; }");if(styleElem.styleSheet)styleElem.styleSheet.cssText=styleRules.nodeValue;else styleElem.appendChild(styleRules);document.getElementsByTagName("head")[0].appendChild(styleElem);if(!Array.prototype.indexOf)Array.prototype.indexOf=function(obj,start){for(i=start||0,j=this.length;i
    DateFri, 24 Feb 2023 14:01:44 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Accept-Rangesbytes
    ETagW/"5615-1360116138000"
    Last-ModifiedWed, 06 Feb 2013 02:02:18 GMT
    Cache-Controlmax-age=2419200
    ExpiresFri, 24 Mar 2023 14:01:44 GMT
    Content-Typeapplication/javascript;charset=UTF-8
    Content-Length5615
    Keep-Alivetimeout=5, max=100
    ConnectionKeep-Alive
    http://zero.webappsecurity.com:80/resources/css/main.csshttpzero.webappsecurity.com80 li > a { + padding: 18px 10px; +} +.dropdown a.btn { + color: #ffffff; +} +.dropdown .modal-footer { + padding: 7px 15px; +} +.dropdown-menu .modal-body a { + padding: 3px 0px; + float: left; + clear: none; +} +.dropdown-menu a.link-modal { + padding: 3px 23px 3px 0; + float: left; + color: #4572a7; +} +.dropdown-menu a.link-modal:hover { + color: #4572a7; + text-decoration: none; +} +.navbar .bar-root { + margin-top: 10px; +} +.navbar .bar-root .dropdown-menu a { + color: #999; +} +.navbar .bar-root .dropdown-menu a:hover { + background: #222; +} +.navbar .bar-root .dropdown-menu img { + border: 1px solid #888; + margin-right: 4px; +} +.navbar .bar-root .label { + position: relative; + top: -9px; +} + +/*#####################################################################*/ + +body, html { + height: 100%; +} + +.wrapper { + min-height: 100%; + height: auto !important; + margin: 0 auto -121px; +} + +.push { + height: 147px; +} + +/*#####################################################################*/ + +div.item img { + width: 940px; + height: 401px; +} + +/*#####################################################################*/ +.content { + padding: 40px 60px 40px 60px; + min-height: 100%; +} +/*#####################################################################*/ + +.row.divider:last-child { + margin-bottom: 40px; + + border: none; +} + +.row-divider { + border: none; + margin: 10px 0 21px; + border-bottom: 1px dotted #0098D8; +} + +.content-divider { + margin-bottom : 10px; + margin-top : 10px; + + border: none; + border-bottom: 1px solid #0098D8; + + -webkit-box-shadow: inset 0 16px 8px -20px rgba(0, 0, 0, 0.4); + -moz-box-shadow: inset 0 15px 8px -20px rgba(0, 0, 0, 0.4); + -webkit-mask-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0), black 20%, black 80%, rgba(0, 0, 0, 0) 100%); + -moz-mask-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0), black 20%, black 80%, rgba(0, 0, 0, 0) 100%); + +} + +/*#####################################################################*/ + +#nav { + margin-bottom: .5em; +} + +#nav > #pages-nav { + padding: 0; + margin: 0; + + border-top: 1px solid #A1A1A1; +} + +#nav > #pages-nav > li { + position: relative; + top: -1px; + + float: left; + + padding: 0 40px 0 0; + margin: 0; + + list-style: none; + + border-top: 1px solid #A1A1A1; +} + +#nav > #pages-nav > li:last-child { + padding-right: 0; +} + +#nav > #pages-nav > li > a { + position: relative; + top: -1px; + display: block; + padding: 15px 5px 5px; + color: #888; + text-transform: uppercase; + border-top: 1px solid transparent; + cursor: pointer; +} + +#nav > #pages-nav > li > a:hover, +#nav > #pages-nav > li.dropdown.open > a { + color: #0098D8; + + text-decoration: none; + + border-top-color: #0098D8; + border-top-width: 1px; +} + +#nav > #pages-nav > li.active a { + padding-top: 12px; + top: -2px; + + color: #0098D8; + + border-top-color: #0098D8; + border-top-width: 4px; +} + +#nav > #pages-nav > li > a > .caret { + position: relative; + top: -2px; + + margin-left: .5em; +} + +#nav .dropdown-menu a:hover { + background-color: #0098D8; +} + +#nav .dropdown-menu > li > a { + padding: 6px 12px; +} + +#nav .dropdown-menu i { + margin-right: .5em; + + font-size: 14px; +} + +#nav .dropdown-menu::before { + content: ''; + display: inline-block; + border-left: 7px solid transparent; + border-right: 7px solid transparent; + border-bottom: 7px solid #CCC; + border-bottom-color: rgba(0, 0, 0, 0.2); + position: absolute; + top: -7px; + left: 9px; +} + +#nav .dropdown-menu::after { + content: ''; + display: inline-block; + border-left: 6px solid transparent; + border-right: 6px solid transparent; + border-bottom: 6px solid white; + position: absolute; + top: -6px; + left: 10px; +} + +/*#####################################################################*/ + +#welcome { + padding-left: 90px; + text-align: center; +} + +/*#####################################################################*/ + +i.icon, .slash, i.icon-middle { + margin-right: 5px; + color: #0098D8; + font-size: 18px; + line-height: 18px; +} + +i.icon-middle { + font-size: 20px; + margin-right: 10px; + line-height: 30px; +} + +/**************************************** + Footer +***************************************/ + +.footer { + margin-top: 0; + line-height: 12px; + border-top: 1px solid #292929; +} + +.footer-inner { + padding: 15px 0; + + font-size: 12px; + background: #111; + color: #999; +} + +.footer a { + color: #999; +} + +.footer a:hover { + color: #FFF; + text-decoration: none; +} + +.extra { + border-top: 1px solid #E5E5E5; + background-color: whiteSmoke; +} + +.extra-inner { + padding: 20px 0; + font-size: 11px; +} + +.extra span { + color: #666; + cursor: pointer; +} + +.extra h4 { + margin-bottom: 1em; + + font-weight: 400; +} + +.extra ul { + padding: 0; + margin: 0; +} + +.extra li { + margin-bottom: .6em; + list-style: none; +} + +/***********************************************************/ + +.hero-home { + background: url('../img/online_banking_hero.jpg') no-repeat; + color: #0082D8; + position: relative; +} + +.hero-home p { + color: #0082D8; +} + +.large-btn:hover, +.large-btn:active, +.large-btn.active { + background-color: #5BB900; +} + +.large-btn { + font-size: 24px; + padding: 12px 32px; + font-weight: bold; + margin-top: 15px; + + background: #65C31F; + color: white; + border-color: #57AF17; + font-weight: bold; +} + +.text-shadow { + text-shadow: 1px 2px 5px black; +} + +.btn.text-shadow { + text-shadow: 2px 1px 1px black; +} + +.feature-description { + border-radius: 15px; + padding: 15px; + position: relative; + + background: #383838; +} + + +.margin15 { + margin-bottom: 15px +} + +.margin7top { + margin-top: 7px +} + +.margin20top { + margin-top: 20px +} + +a.actions { + padding: 4px 9px!important; + + border: 2px solid #A1A1A1; + border-radius: 4px; + font-size: 11px; + line-height: 1; + margin-left: 20px; + text-transform: uppercase; + margin-top: 10px +} + +.accordion-heading { + background-color: whiteSmoke; +} + +.footer.fixed { + position: fixed; + bottom: 0; + right: 0; + left: 0; +} + +.carousel-caption.custom { + top: 0; + width: 200px; + + background-color: rgba(0, 0, 0, 0.8) +} + +.item > img { + margin-left: 230px; +} + +.carousel-control.custom.left,.carousel-control.custom.right { + font-family: 'Helvetica Neue', Helvetica,Arial, sans-serif; + background: white; + border: none; + color: #2F96B4; + top: 50%; +} + +.carousel-control.custom.left { + left: -50px; +} + +.carousel-control.custom.right { + right: -50px; +} + +.button-large { + font-size: 20px; + padding: 20px 50px 20px 50px; +} + +.carousel-btn,.hero-btn { + position: absolute; + border-radius: 15px +} + +.carousel-btn { + bottom: 80px; + left: 27px; +} + +.hero-btn { + right: 130px; + top:35%; +} + +.signin-controls input { + padding: 8px 15px 8px 50px; + background-color: #FDFDFD; + width: 255px; + display: block; + margin: 0; + box-shadow: inset 0 0 2px rgba(47, 150, 252, 0.8) +} + +input.login { + background: url(../img/user_login.png) no-repeat; +} + +input.password { + background: url(../img/password_login.png) no-repeat; +} + +.account_summary th { + color: #AFAFAF; +} + +.account_summary tbody tr:last-of-type{ + background-color: rgba(3, 152, 252, 0.1); +} + +.account_summary .activities { + text-decoration: underline; +} + +span.headers, span.link { + cursor: pointer; + color: #333; +} + +span.link { + color: #08C; + text-decoration: underline; +} + + +#account_summary .accordion-toggle { + text-decoration: none; +} + +.top_offset { + padding-top: 70px; + padding-bottom: 20px; +} + + +div.pictured { + position: relative; +} + +div.pictured i { + position: absolute; + top: 1px; + left: 1px; + font-size: 18px; + background-color: #E5F2FE; + padding-left: 13px; + padding-right: 13px; + box-shadow: inset 0 0 2px rgba(47, 150, 252, 0.8); + border-top-left-radius: 2px; + border-bottom-left-radius: 2px; + padding-bottom: 7px; + padding-top: 7px; + color: #2F96FC; + width: 16px; + height: 22px; +} + +div.pictured textarea { + box-shadow: inset 0 0 2px rgba(47, 150, 252, 0.8); +} + +hr.wide { + margin-bottom: 30px; + margin-top: 30px; +} + + +/* Sidenav for Docs +-------------------------------------------------- */ + +.bs-docs-sidenav { + width: 228px; + margin: 30px 0 0; + padding: 0; + background-color: #fff; + -webkit-border-radius: 6px; + -moz-border-radius: 6px; + border-radius: 6px; + -webkit-box-shadow: 0 1px 4px rgba(0,0,0,.065); + -moz-box-shadow: 0 1px 4px rgba(0,0,0,.065); + box-shadow: 0 1px 4px rgba(0,0,0,.065); +} +.bs-docs-sidenav > li > a { + display: block; + *width: 190px; + margin: 0 0 -1px; + padding: 8px 14px; + border: 1px solid #e5e5e5; +} +.bs-docs-sidenav > li:first-child > a { + -webkit-border-radius: 6px 6px 0 0; + -moz-border-radius: 6px 6px 0 0; + border-radius: 6px 6px 0 0; +} +.bs-docs-sidenav > li:last-child > a { + -webkit-border-radius: 0 0 6px 6px; + -moz-border-radius: 0 0 6px 6px; + border-radius: 0 0 6px 6px; +} +.bs-docs-sidenav > .active > a { + position: relative; + z-index: 2; + padding: 9px 15px; + border: 0; + text-shadow: 0 1px 0 rgba(0,0,0,.15); + -webkit-box-shadow: inset 1px 0 0 rgba(0,0,0,.1), inset -1px 0 0 rgba(0,0,0,.1); + -moz-box-shadow: inset 1px 0 0 rgba(0,0,0,.1), inset -1px 0 0 rgba(0,0,0,.1); + box-shadow: inset 1px 0 0 rgba(0,0,0,.1), inset -1px 0 0 rgba(0,0,0,.1); +} +/* Chevrons */ +.bs-docs-sidenav .icon-chevron-right { + float: right; + margin-top: 2px; + margin-right: -6px; + opacity: .25; +} +.bs-docs-sidenav > li > a:hover { + background-color: #f5f5f5; +} +.bs-docs-sidenav.affix { + top: 90px; +} +.bs-docs-sidenav.affix-bottom { + position: absolute; + top: auto; + bottom: 270px; +} + +/* Responsive +-------------------------------------------------- */ + +/* Desktop large +------------------------- */ +@media (min-width: 1200px) { + .bs-docs-container { + max-width: 970px; + } + .bs-docs-sidenav { + width: 258px; + } +} + + +hr.gray-dotted { + border-bottom: 1px dotted #D9D9D9; +} + +.blog { + padding-right: 30px; +} + +.blog > div { + padding-left: 10px; +} + +.blog p.date { + text-align: right; + padding-right: 10px; +} + +button.signin { + margin-right: 5px; + border-radius: 20px +} + +button.signin > i { + padding-right: 10px; +} + +.accordion-inner form { + margin-bottom: 0px; +} + + + +.board { + background: white; + padding: 3px; + box-shadow: rgba(0, 0, 0, 0.3) 0 1px 3px; + margin-bottom: 25px; + -webkit-border-top-right-radius: 4px; + -webkit-border-bottom-right-radius: 4px; + -webkit-border-bottom-left-radius: 4px; + -webkit-border-top-left-radius: 4px; + moz-border-radius-topright: 4px; + -moz-border-radius-bottomright: 4px; + -moz-border-radius-bottomleft: 4px; + -moz-border-radius-topleft: 4px; + border-radius: 4px 4px 4px 4px; + -moz-background-clip: padding; + -webkit-background-clip: padding-box; + background-clip: padding-box; +} + +.board-content { + display: block; + height: 100%; + -webkit-border-top-right-radius: 3px; + -webkit-border-bottom-right-radius: 3px; + -webkit-border-bottom-left-radius: 3px; + -webkit-border-top-left-radius: 3px; + moz-border-radius-topright: 3px; + -moz-border-radius-bottomright: 3px; + -moz-border-radius-bottomleft: 3px; + -moz-border-radius-topleft: 3px; + border-radius: 3px 3px 3px 3px; + -moz-background-clip: padding; + -webkit-background-clip: padding-box; + background-clip: padding-box; + background: #F3F3F3; + background: #F3F3F3; + background: -webkit-gradient(linear, left top, left bottom, from(#FBFBFB), to(#F3F3F3)); + background: -moz-linear-gradient(top, #FBFBFB, #F3F3F3); +} + +h2.board-header { + font-weight: normal; + letter-spacing: -1px; + padding: 5px 10px; + margin: 0; + text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.2); + + font-size: 24px; + line-height: 36px; +} + + +.board .table { + margin-bottom: 0; + border-collapse: collapse; + border-spacing: 0; +} + +.board .table th, +.board .table td { + font-size: 12px; + padding: 5px 20px; + font-weight: bold; + border-bottom: 1px solid #DEDEDE; +} + +.board .table thead th { + vertical-align: bottom; +} + +.board .table td { + border-bottom: 1px solid #DEDEDE; + border-top: 1px solid white; + padding: 5px 20px; + text-shadow: 0px 1px 1px white; +} + +.board-content .control-group { + margin: 0px; + padding-top: 10px; + padding-bottom: 10px; +} + +.board-content hr { + margin: 0; +} + +article form { + margin-bottom: 0 +} + +#nav > #pages-nav > li.active div { + padding-top: 12px; + top: -2px; + color: #0098D8; + border-top-color: #0098D8; + border-top-width: 4px; + text-decoration: none; +} + +#nav > #pages-nav > li > div { + position: relative; + top: -1px; + display: block; + padding: 15px 5px 5px; + color: #888; + text-transform: uppercase; + border-top: 1px solid transparent; + cursor: pointer; + text-decoration: none; +} + + +.number { + margin-top: 6px; + width: 40px; + height: 40px; + font-size: 28px; + font-weight: 600; + text-align: center; + line-height: 40px; + color: white; + background: #08C; + border: 3px solid white; + box-shadow: 1px 1px 3px rgba(0, 0, 0, .4); + border-radius: 40px; + text-shadow: 1px 1px 2px rgba(0, 0, 0, .4); +} + +ol.questions > li { + padding-bottom: 12px; + font-size: 15px +} + +div.disclaimer { + border: 1px dashed #0098D8; + margin-top: 10px; + padding: 10px; +} + +@media (max-width:979px) { + button.signin { + margin-left: 15px; + border-radius: 20px!important; + } +} + +@media (max-width: 260px) { + .nav.float-right { + float: left!important; + } +} + +@media (min-width: 261px) { + .nav.float-right { + float: right!important; + } +} +]]>GET/resources/css/maincssHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0 +
    Refererhttp://zero.webappsecurity.com/
    Hostzero.webappsecurity.com
    Accept*/*
    Accept-Languageen-US,en;q=0.5
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoScriptEngine="Gecko";Category="Crawl";SID="F66484E8ADA3B55E6CCA195D5EFD384D";PSID="306E42D0F653E7CFA6720D7F15AE506B";SessionType="Crawl";CrawlType="ScriptInclude";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";tht="21";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="174495b2";
    X-Request-Memorid="c680ab99";sc="1";thid="48";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0
    HTTP/1.1200OK li > a { + padding: 18px 10px; +} +.dropdown a.btn { + color: #ffffff; +} +.dropdown .modal-footer { + padding: 7px 15px; +} +.dropdown-menu .modal-body a { + padding: 3px 0px; + float: left; + clear: none; +} +.dropdown-menu a.link-modal { + padding: 3px 23px 3px 0; + float: left; + color: #4572a7; +} +.dropdown-menu a.link-modal:hover { + color: #4572a7; + text-decoration: none; +} +.navbar .bar-root { + margin-top: 10px; +} +.navbar .bar-root .dropdown-menu a { + color: #999; +} +.navbar .bar-root .dropdown-menu a:hover { + background: #222; +} +.navbar .bar-root .dropdown-menu img { + border: 1px solid #888; + margin-right: 4px; +} +.navbar .bar-root .label { + position: relative; + top: -9px; +} + +/*#####################################################################*/ + +body, html { + height: 100%; +} + +.wrapper { + min-height: 100%; + height: auto !important; + margin: 0 auto -121px; +} + +.push { + height: 147px; +} + +/*#####################################################################*/ + +div.item img { + width: 940px; + height: 401px; +} + +/*#####################################################################*/ +.content { + padding: 40px 60px 40px 60px; + min-height: 100%; +} +/*#####################################################################*/ + +.row.divider:last-child { + margin-bottom: 40px; + + border: none; +} + +.row-divider { + border: none; + margin: 10px 0 21px; + border-bottom: 1px dotted #0098D8; +} + +.content-divider { + margin-bottom : 10px; + margin-top : 10px; + + border: none; + border-bottom: 1px solid #0098D8; + + -webkit-box-shadow: inset 0 16px 8px -20px rgba(0, 0, 0, 0.4); + -moz-box-shadow: inset 0 15px 8px -20px rgba(0, 0, 0, 0.4); + -webkit-mask-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0), black 20%, black 80%, rgba(0, 0, 0, 0) 100%); + -moz-mask-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0), black 20%, black 80%, rgba(0, 0, 0, 0) 100%); + +} + +/*#####################################################################*/ + +#nav { + margin-bottom: .5em; +} + +#nav > #pages-nav { + padding: 0; + margin: 0; + + border-top: 1px solid #A1A1A1; +} + +#nav > #pages-nav > li { + position: relative; + top: -1px; + + float: left; + + padding: 0 40px 0 0; + margin: 0; + + list-style: none; + + border-top: 1px solid #A1A1A1; +} + +#nav > #pages-nav > li:last-child { + padding-right: 0; +} + +#nav > #pages-nav > li > a { + position: relative; + top: -1px; + display: block; + padding: 15px 5px 5px; + color: #888; + text-transform: uppercase; + border-top: 1px solid transparent; + cursor: pointer; +} + +#nav > #pages-nav > li > a:hover, +#nav > #pages-nav > li.dropdown.open > a { + color: #0098D8; + + text-decoration: none; + + border-top-color: #0098D8; + border-top-width: 1px; +} + +#nav > #pages-nav > li.active a { + padding-top: 12px; + top: -2px; + + color: #0098D8; + + border-top-color: #0098D8; + border-top-width: 4px; +} + +#nav > #pages-nav > li > a > .caret { + position: relative; + top: -2px; + + margin-left: .5em; +} + +#nav .dropdown-menu a:hover { + background-color: #0098D8; +} + +#nav .dropdown-menu > li > a { + padding: 6px 12px; +} + +#nav .dropdown-menu i { + margin-right: .5em; + + font-size: 14px; +} + +#nav .dropdown-menu::before { + content: ''; + display: inline-block; + border-left: 7px solid transparent; + border-right: 7px solid transparent; + border-bottom: 7px solid #CCC; + border-bottom-color: rgba(0, 0, 0, 0.2); + position: absolute; + top: -7px; + left: 9px; +} + +#nav .dropdown-menu::after { + content: ''; + display: inline-block; + border-left: 6px solid transparent; + border-right: 6px solid transparent; + border-bottom: 6px solid white; + position: absolute; + top: -6px; + left: 10px; +} + +/*#####################################################################*/ + +#welcome { + padding-left: 90px; + text-align: center; +} + +/*#####################################################################*/ + +i.icon, .slash, i.icon-middle { + margin-right: 5px; + color: #0098D8; + font-size: 18px; + line-height: 18px; +} + +i.icon-middle { + font-size: 20px; + margin-right: 10px; + line-height: 30px; +} + +/**************************************** + Footer +***************************************/ + +.footer { + margin-top: 0; + line-height: 12px; + border-top: 1px solid #292929; +} + +.footer-inner { + padding: 15px 0; + + font-size: 12px; + background: #111; + color: #999; +} + +.footer a { + color: #999; +} + +.footer a:hover { + color: #FFF; + text-decoration: none; +} + +.extra { + border-top: 1px solid #E5E5E5; + background-color: whiteSmoke; +} + +.extra-inner { + padding: 20px 0; + font-size: 11px; +} + +.extra span { + color: #666; + cursor: pointer; +} + +.extra h4 { + margin-bottom: 1em; + + font-weight: 400; +} + +.extra ul { + padding: 0; + margin: 0; +} + +.extra li { + margin-bottom: .6em; + list-style: none; +} + +/***********************************************************/ + +.hero-home { + background: url('../img/online_banking_hero.jpg') no-repeat; + color: #0082D8; + position: relative; +} + +.hero-home p { + color: #0082D8; +} + +.large-btn:hover, +.large-btn:active, +.large-btn.active { + background-color: #5BB900; +} + +.large-btn { + font-size: 24px; + padding: 12px 32px; + font-weight: bold; + margin-top: 15px; + + background: #65C31F; + color: white; + border-color: #57AF17; + font-weight: bold; +} + +.text-shadow { + text-shadow: 1px 2px 5px black; +} + +.btn.text-shadow { + text-shadow: 2px 1px 1px black; +} + +.feature-description { + border-radius: 15px; + padding: 15px; + position: relative; + + background: #383838; +} + + +.margin15 { + margin-bottom: 15px +} + +.margin7top { + margin-top: 7px +} + +.margin20top { + margin-top: 20px +} + +a.actions { + padding: 4px 9px!important; + + border: 2px solid #A1A1A1; + border-radius: 4px; + font-size: 11px; + line-height: 1; + margin-left: 20px; + text-transform: uppercase; + margin-top: 10px +} + +.accordion-heading { + background-color: whiteSmoke; +} + +.footer.fixed { + position: fixed; + bottom: 0; + right: 0; + left: 0; +} + +.carousel-caption.custom { + top: 0; + width: 200px; + + background-color: rgba(0, 0, 0, 0.8) +} + +.item > img { + margin-left: 230px; +} + +.carousel-control.custom.left,.carousel-control.custom.right { + font-family: 'Helvetica Neue', Helvetica,Arial, sans-serif; + background: white; + border: none; + color: #2F96B4; + top: 50%; +} + +.carousel-control.custom.left { + left: -50px; +} + +.carousel-control.custom.right { + right: -50px; +} + +.button-large { + font-size: 20px; + padding: 20px 50px 20px 50px; +} + +.carousel-btn,.hero-btn { + position: absolute; + border-radius: 15px +} + +.carousel-btn { + bottom: 80px; + left: 27px; +} + +.hero-btn { + right: 130px; + top:35%; +} + +.signin-controls input { + padding: 8px 15px 8px 50px; + background-color: #FDFDFD; + width: 255px; + display: block; + margin: 0; + box-shadow: inset 0 0 2px rgba(47, 150, 252, 0.8) +} + +input.login { + background: url(../img/user_login.png) no-repeat; +} + +input.password { + background: url(../img/password_login.png) no-repeat; +} + +.account_summary th { + color: #AFAFAF; +} + +.account_summary tbody tr:last-of-type{ + background-color: rgba(3, 152, 252, 0.1); +} + +.account_summary .activities { + text-decoration: underline; +} + +span.headers, span.link { + cursor: pointer; + color: #333; +} + +span.link { + color: #08C; + text-decoration: underline; +} + + +#account_summary .accordion-toggle { + text-decoration: none; +} + +.top_offset { + padding-top: 70px; + padding-bottom: 20px; +} + + +div.pictured { + position: relative; +} + +div.pictured i { + position: absolute; + top: 1px; + left: 1px; + font-size: 18px; + background-color: #E5F2FE; + padding-left: 13px; + padding-right: 13px; + box-shadow: inset 0 0 2px rgba(47, 150, 252, 0.8); + border-top-left-radius: 2px; + border-bottom-left-radius: 2px; + padding-bottom: 7px; + padding-top: 7px; + color: #2F96FC; + width: 16px; + height: 22px; +} + +div.pictured textarea { + box-shadow: inset 0 0 2px rgba(47, 150, 252, 0.8); +} + +hr.wide { + margin-bottom: 30px; + margin-top: 30px; +} + + +/* Sidenav for Docs +-------------------------------------------------- */ + +.bs-docs-sidenav { + width: 228px; + margin: 30px 0 0; + padding: 0; + background-color: #fff; + -webkit-border-radius: 6px; + -moz-border-radius: 6px; + border-radius: 6px; + -webkit-box-shadow: 0 1px 4px rgba(0,0,0,.065); + -moz-box-shadow: 0 1px 4px rgba(0,0,0,.065); + box-shadow: 0 1px 4px rgba(0,0,0,.065); +} +.bs-docs-sidenav > li > a { + display: block; + *width: 190px; + margin: 0 0 -1px; + padding: 8px 14px; + border: 1px solid #e5e5e5; +} +.bs-docs-sidenav > li:first-child > a { + -webkit-border-radius: 6px 6px 0 0; + -moz-border-radius: 6px 6px 0 0; + border-radius: 6px 6px 0 0; +} +.bs-docs-sidenav > li:last-child > a { + -webkit-border-radius: 0 0 6px 6px; + -moz-border-radius: 0 0 6px 6px; + border-radius: 0 0 6px 6px; +} +.bs-docs-sidenav > .active > a { + position: relative; + z-index: 2; + padding: 9px 15px; + border: 0; + text-shadow: 0 1px 0 rgba(0,0,0,.15); + -webkit-box-shadow: inset 1px 0 0 rgba(0,0,0,.1), inset -1px 0 0 rgba(0,0,0,.1); + -moz-box-shadow: inset 1px 0 0 rgba(0,0,0,.1), inset -1px 0 0 rgba(0,0,0,.1); + box-shadow: inset 1px 0 0 rgba(0,0,0,.1), inset -1px 0 0 rgba(0,0,0,.1); +} +/* Chevrons */ +.bs-docs-sidenav .icon-chevron-right { + float: right; + margin-top: 2px; + margin-right: -6px; + opacity: .25; +} +.bs-docs-sidenav > li > a:hover { + background-color: #f5f5f5; +} +.bs-docs-sidenav.affix { + top: 90px; +} +.bs-docs-sidenav.affix-bottom { + position: absolute; + top: auto; + bottom: 270px; +} + +/* Responsive +-------------------------------------------------- */ + +/* Desktop large +------------------------- */ +@media (min-width: 1200px) { + .bs-docs-container { + max-width: 970px; + } + .bs-docs-sidenav { + width: 258px; + } +} + + +hr.gray-dotted { + border-bottom: 1px dotted #D9D9D9; +} + +.blog { + padding-right: 30px; +} + +.blog > div { + padding-left: 10px; +} + +.blog p.date { + text-align: right; + padding-right: 10px; +} + +button.signin { + margin-right: 5px; + border-radius: 20px +} + +button.signin > i { + padding-right: 10px; +} + +.accordion-inner form { + margin-bottom: 0px; +} + + + +.board { + background: white; + padding: 3px; + box-shadow: rgba(0, 0, 0, 0.3) 0 1px 3px; + margin-bottom: 25px; + -webkit-border-top-right-radius: 4px; + -webkit-border-bottom-right-radius: 4px; + -webkit-border-bottom-left-radius: 4px; + -webkit-border-top-left-radius: 4px; + moz-border-radius-topright: 4px; + -moz-border-radius-bottomright: 4px; + -moz-border-radius-bottomleft: 4px; + -moz-border-radius-topleft: 4px; + border-radius: 4px 4px 4px 4px; + -moz-background-clip: padding; + -webkit-background-clip: padding-box; + background-clip: padding-box; +} + +.board-content { + display: block; + height: 100%; + -webkit-border-top-right-radius: 3px; + -webkit-border-bottom-right-radius: 3px; + -webkit-border-bottom-left-radius: 3px; + -webkit-border-top-left-radius: 3px; + moz-border-radius-topright: 3px; + -moz-border-radius-bottomright: 3px; + -moz-border-radius-bottomleft: 3px; + -moz-border-radius-topleft: 3px; + border-radius: 3px 3px 3px 3px; + -moz-background-clip: padding; + -webkit-background-clip: padding-box; + background-clip: padding-box; + background: #F3F3F3; + background: #F3F3F3; + background: -webkit-gradient(linear, left top, left bottom, from(#FBFBFB), to(#F3F3F3)); + background: -moz-linear-gradient(top, #FBFBFB, #F3F3F3); +} + +h2.board-header { + font-weight: normal; + letter-spacing: -1px; + padding: 5px 10px; + margin: 0; + text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.2); + + font-size: 24px; + line-height: 36px; +} + + +.board .table { + margin-bottom: 0; + border-collapse: collapse; + border-spacing: 0; +} + +.board .table th, +.board .table td { + font-size: 12px; + padding: 5px 20px; + font-weight: bold; + border-bottom: 1px solid #DEDEDE; +} + +.board .table thead th { + vertical-align: bottom; +} + +.board .table td { + border-bottom: 1px solid #DEDEDE; + border-top: 1px solid white; + padding: 5px 20px; + text-shadow: 0px 1px 1px white; +} + +.board-content .control-group { + margin: 0px; + padding-top: 10px; + padding-bottom: 10px; +} + +.board-content hr { + margin: 0; +} + +article form { + margin-bottom: 0 +} + +#nav > #pages-nav > li.active div { + padding-top: 12px; + top: -2px; + color: #0098D8; + border-top-color: #0098D8; + border-top-width: 4px; + text-decoration: none; +} + +#nav > #pages-nav > li > div { + position: relative; + top: -1px; + display: block; + padding: 15px 5px 5px; + color: #888; + text-transform: uppercase; + border-top: 1px solid transparent; + cursor: pointer; + text-decoration: none; +} + + +.number { + margin-top: 6px; + width: 40px; + height: 40px; + font-size: 28px; + font-weight: 600; + text-align: center; + line-height: 40px; + color: white; + background: #08C; + border: 3px solid white; + box-shadow: 1px 1px 3px rgba(0, 0, 0, .4); + border-radius: 40px; + text-shadow: 1px 1px 2px rgba(0, 0, 0, .4); +} + +ol.questions > li { + padding-bottom: 12px; + font-size: 15px +} + +div.disclaimer { + border: 1px dashed #0098D8; + margin-top: 10px; + padding: 10px; +} + +@media (max-width:979px) { + button.signin { + margin-left: 15px; + border-radius: 20px!important; + } +} + +@media (max-width: 260px) { + .nav.float-right { + float: left!important; + } +} + +@media (min-width: 261px) { + .nav.float-right { + float: right!important; + } +} +]]>
    DateFri, 24 Feb 2023 14:01:44 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Accept-Rangesbytes
    ETagW/"15037-1360116138000"
    Last-ModifiedWed, 06 Feb 2013 02:02:18 GMT
    Cache-Controlmax-age=2419200
    ExpiresFri, 24 Mar 2023 14:01:44 GMT
    Content-Typetext/css;charset=UTF-8
    Content-Length15037
    Keep-Alivetimeout=5, max=100
    ConnectionKeep-Alive
    http://zero.webappsecurity.com:80/resources/css/bootstrap.min.csshttpzero.webappsecurity.com80li,ol.inline >li{display:inline-block;padding-left:5px;padding-right:5px;} +dl{margin-bottom:20px;} +dt,dd{line-height:20px;} +dt{font-weight:bold;} +dd{margin-left:10px;} +.dl-horizontal{*zoom:1;}.dl-horizontal:before,.dl-horizontal:after{display:table;content:"";line-height:0;} +.dl-horizontal:after{clear:both;} +.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;} +.dl-horizontal dd{margin-left:180px;} +hr{margin:20px 0;border:0;border-top:1px solid #eeeeee;border-bottom:1px solid #ffffff;} +abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #999999;} +abbr.initialism{font-size:90%;text-transform:uppercase;} +blockquote{padding:0 0 0 15px;margin:0 0 20px;border-left:5px solid #eeeeee;}blockquote p{margin-bottom:0;font-size:16px;font-weight:300;line-height:25px;} +blockquote small{display:block;line-height:20px;color:#999999;}blockquote small:before{content:'\2014 \00A0';} +blockquote.pull-right{float:right;padding-right:15px;padding-left:0;border-right:5px solid #eeeeee;border-left:0;}blockquote.pull-right p,blockquote.pull-right small{text-align:right;} +blockquote.pull-right small:before{content:'';} +blockquote.pull-right small:after{content:'\00A0 \2014';} +q:before,q:after,blockquote:before,blockquote:after{content:"";} +address{display:block;margin-bottom:20px;font-style:normal;line-height:20px;} +code,pre{padding:0 3px 2px;font-family:Monaco,Menlo,Consolas,"Courier New",monospace;font-size:12px;color:#333333;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} +code{padding:2px 4px;color:#d14;background-color:#f7f7f9;border:1px solid #e1e1e8;white-space:nowrap;} +pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:20px;word-break:break-all;word-wrap:break-word;white-space:pre;white-space:pre-wrap;background-color:#f5f5f5;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.15);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}pre.prettyprint{margin-bottom:20px;} +pre code{padding:0;color:inherit;white-space:pre;white-space:pre-wrap;background-color:transparent;border:0;} +.pre-scrollable{max-height:340px;overflow-y:scroll;} +.label,.badge{display:inline-block;padding:2px 4px;font-size:11.844px;font-weight:bold;line-height:14px;color:#ffffff;vertical-align:baseline;white-space:nowrap;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#999999;} +.label{-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} +.badge{padding-left:9px;padding-right:9px;-webkit-border-radius:9px;-moz-border-radius:9px;border-radius:9px;} +.label:empty,.badge:empty{display:none;} +a.label:hover,a.badge:hover{color:#ffffff;text-decoration:none;cursor:pointer;} +.label-important,.badge-important{background-color:#b94a48;} +.label-important[href],.badge-important[href]{background-color:#953b39;} +.label-warning,.badge-warning{background-color:#f89406;} +.label-warning[href],.badge-warning[href]{background-color:#c67605;} +.label-success,.badge-success{background-color:#468847;} +.label-success[href],.badge-success[href]{background-color:#356635;} +.label-info,.badge-info{background-color:#3a87ad;} +.label-info[href],.badge-info[href]{background-color:#2d6987;} +.label-inverse,.badge-inverse{background-color:#333333;} +.label-inverse[href],.badge-inverse[href]{background-color:#1a1a1a;} +.btn .label,.btn .badge{position:relative;top:-1px;} +.btn-mini .label,.btn-mini .badge{top:0;} +table{max-width:100%;background-color:transparent;border-collapse:collapse;border-spacing:0;} +.table{width:100%;margin-bottom:20px;}.table th,.table td{padding:8px;line-height:20px;text-align:left;vertical-align:top;border-top:1px solid #dddddd;} +.table th{font-weight:bold;} +.table thead th{vertical-align:bottom;} +.table caption+thead tr:first-child th,.table caption+thead tr:first-child td,.table colgroup+thead tr:first-child th,.table colgroup+thead tr:first-child td,.table thead:first-child tr:first-child th,.table thead:first-child tr:first-child td{border-top:0;} +.table tbody+tbody{border-top:2px solid #dddddd;} +.table .table{background-color:#ffffff;} +.table-condensed th,.table-condensed td{padding:4px 5px;} +.table-bordered{border:1px solid #dddddd;border-collapse:separate;*border-collapse:collapse;border-left:0;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}.table-bordered th,.table-bordered td{border-left:1px solid #dddddd;} +.table-bordered caption+thead tr:first-child th,.table-bordered caption+tbody tr:first-child th,.table-bordered caption+tbody tr:first-child td,.table-bordered colgroup+thead tr:first-child th,.table-bordered colgroup+tbody tr:first-child th,.table-bordered colgroup+tbody tr:first-child td,.table-bordered thead:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child td{border-top:0;} +.table-bordered thead:first-child tr:first-child>th:first-child,.table-bordered tbody:first-child tr:first-child>td:first-child{-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;} +.table-bordered thead:first-child tr:first-child>th:last-child,.table-bordered tbody:first-child tr:first-child>td:last-child{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;} +.table-bordered thead:last-child tr:last-child>th:first-child,.table-bordered tbody:last-child tr:last-child>td:first-child,.table-bordered tfoot:last-child tr:last-child>td:first-child{-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px;} +.table-bordered thead:last-child tr:last-child>th:last-child,.table-bordered tbody:last-child tr:last-child>td:last-child,.table-bordered tfoot:last-child tr:last-child>td:last-child{-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;} +.table-bordered tfoot+tbody:last-child tr:last-child td:first-child{-webkit-border-bottom-left-radius:0;-moz-border-radius-bottomleft:0;border-bottom-left-radius:0;} +.table-bordered tfoot+tbody:last-child tr:last-child td:last-child{-webkit-border-bottom-right-radius:0;-moz-border-radius-bottomright:0;border-bottom-right-radius:0;} +.table-bordered caption+thead tr:first-child th:first-child,.table-bordered caption+tbody tr:first-child td:first-child,.table-bordered colgroup+thead tr:first-child th:first-child,.table-bordered colgroup+tbody tr:first-child td:first-child{-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;} +.table-bordered caption+thead tr:first-child th:last-child,.table-bordered caption+tbody tr:first-child td:last-child,.table-bordered colgroup+thead tr:first-child th:last-child,.table-bordered colgroup+tbody tr:first-child td:last-child{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;} +.table-striped tbody>tr:nth-child(odd)>td,.table-striped tbody>tr:nth-child(odd)>th{background-color:#f9f9f9;} +.table-hover tbody tr:hover td,.table-hover tbody tr:hover th{background-color:#f5f5f5;} +table td[class*="span"],table th[class*="span"],.row-fluid table td[class*="span"],.row-fluid table th[class*="span"]{display:table-cell;float:none;margin-left:0;} +.table td.span1,.table th.span1{float:none;width:44px;margin-left:0;} +.table td.span2,.table th.span2{float:none;width:124px;margin-left:0;} +.table td.span3,.table th.span3{float:none;width:204px;margin-left:0;} +.table td.span4,.table th.span4{float:none;width:284px;margin-left:0;} +.table td.span5,.table th.span5{float:none;width:364px;margin-left:0;} +.table td.span6,.table th.span6{float:none;width:444px;margin-left:0;} +.table td.span7,.table th.span7{float:none;width:524px;margin-left:0;} +.table td.span8,.table th.span8{float:none;width:604px;margin-left:0;} +.table td.span9,.table th.span9{float:none;width:684px;margin-left:0;} +.table td.span10,.table th.span10{float:none;width:764px;margin-left:0;} +.table td.span11,.table th.span11{float:none;width:844px;margin-left:0;} +.table td.span12,.table th.span12{float:none;width:924px;margin-left:0;} +.table tbody tr.success td{background-color:#dff0d8;} +.table tbody tr.error td{background-color:#f2dede;} +.table tbody tr.warning td{background-color:#fcf8e3;} +.table tbody tr.info td{background-color:#d9edf7;} +.table-hover tbody tr.success:hover td{background-color:#d0e9c6;} +.table-hover tbody tr.error:hover td{background-color:#ebcccc;} +.table-hover tbody tr.warning:hover td{background-color:#faf2cc;} +.table-hover tbody tr.info:hover td{background-color:#c4e3f3;} +form{margin:0 0 20px;} +fieldset{padding:0;margin:0;border:0;} +legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:40px;color:#333333;border:0;border-bottom:1px solid #e5e5e5;}legend small{font-size:15px;color:#999999;} +label,input,button,select,textarea{font-size:14px;font-weight:normal;line-height:20px;} +input,button,select,textarea{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;} +label{display:block;margin-bottom:5px;} +select,textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{display:inline-block;height:20px;padding:4px 6px;margin-bottom:10px;font-size:14px;line-height:20px;color:#555555;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;vertical-align:middle;} +input,textarea,.uneditable-input{width:206px;} +textarea{height:auto;} +textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{background-color:#ffffff;border:1px solid #cccccc;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-webkit-transition:border linear .2s, box-shadow linear .2s;-moz-transition:border linear .2s, box-shadow linear .2s;-o-transition:border linear .2s, box-shadow linear .2s;transition:border linear .2s, box-shadow linear .2s;}textarea:focus,input[type="text"]:focus,input[type="password"]:focus,input[type="datetime"]:focus,input[type="datetime-local"]:focus,input[type="date"]:focus,input[type="month"]:focus,input[type="time"]:focus,input[type="week"]:focus,input[type="number"]:focus,input[type="email"]:focus,input[type="url"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="color"]:focus,.uneditable-input:focus{border-color:rgba(82, 168, 236, 0.8);outline:0;outline:thin dotted \9;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);} +input[type="radio"],input[type="checkbox"]{margin:4px 0 0;*margin-top:0;margin-top:1px \9;line-height:normal;} +input[type="file"],input[type="image"],input[type="submit"],input[type="reset"],input[type="button"],input[type="radio"],input[type="checkbox"]{width:auto;} +select,input[type="file"]{height:30px;*margin-top:4px;line-height:30px;} +select{width:220px;border:1px solid #cccccc;background-color:#ffffff;} +select[multiple],select[size]{height:auto;} +select:focus,input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;} +.uneditable-input,.uneditable-textarea{color:#999999;background-color:#fcfcfc;border-color:#cccccc;-webkit-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);-moz-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);cursor:not-allowed;} +.uneditable-input{overflow:hidden;white-space:nowrap;} +.uneditable-textarea{width:auto;height:auto;} +input:-moz-placeholder,textarea:-moz-placeholder{color:#999999;} +input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#999999;} +input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#999999;} +.radio,.checkbox{min-height:20px;padding-left:20px;} +.radio input[type="radio"],.checkbox input[type="checkbox"]{float:left;margin-left:-20px;} +.controls>.radio:first-child,.controls>.checkbox:first-child{padding-top:5px;} +.radio.inline,.checkbox.inline{display:inline-block;padding-top:5px;margin-bottom:0;vertical-align:middle;} +.radio.inline+.radio.inline,.checkbox.inline+.checkbox.inline{margin-left:10px;} +.input-mini{width:60px;} +.input-small{width:90px;} +.input-medium{width:150px;} +.input-large{width:210px;} +.input-xlarge{width:270px;} +.input-xxlarge{width:530px;} +input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"]{float:none;margin-left:0;} +.input-append input[class*="span"],.input-append .uneditable-input[class*="span"],.input-prepend input[class*="span"],.input-prepend .uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"],.row-fluid .input-prepend [class*="span"],.row-fluid .input-append [class*="span"]{display:inline-block;} +input,textarea,.uneditable-input{margin-left:0;} +.controls-row [class*="span"]+[class*="span"]{margin-left:20px;} +input.span12, textarea.span12, .uneditable-input.span12{width:926px;} +input.span11, textarea.span11, .uneditable-input.span11{width:846px;} +input.span10, textarea.span10, .uneditable-input.span10{width:766px;} +input.span9, textarea.span9, .uneditable-input.span9{width:686px;} +input.span8, textarea.span8, .uneditable-input.span8{width:606px;} +input.span7, textarea.span7, .uneditable-input.span7{width:526px;} +input.span6, textarea.span6, .uneditable-input.span6{width:446px;} +input.span5, textarea.span5, .uneditable-input.span5{width:366px;} +input.span4, textarea.span4, .uneditable-input.span4{width:286px;} +input.span3, textarea.span3, .uneditable-input.span3{width:206px;} +input.span2, textarea.span2, .uneditable-input.span2{width:126px;} +input.span1, textarea.span1, .uneditable-input.span1{width:46px;} +.controls-row{*zoom:1;}.controls-row:before,.controls-row:after{display:table;content:"";line-height:0;} +.controls-row:after{clear:both;} +.controls-row [class*="span"],.row-fluid .controls-row [class*="span"]{float:left;} +.controls-row .checkbox[class*="span"],.controls-row .radio[class*="span"]{padding-top:5px;} +input[disabled],select[disabled],textarea[disabled],input[readonly],select[readonly],textarea[readonly]{cursor:not-allowed;background-color:#eeeeee;} +input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"][readonly],input[type="checkbox"][readonly]{background-color:transparent;} +.control-group.warning .control-label,.control-group.warning .help-block,.control-group.warning .help-inline{color:#c09853;} +.control-group.warning .checkbox,.control-group.warning .radio,.control-group.warning input,.control-group.warning select,.control-group.warning textarea{color:#c09853;} +.control-group.warning input,.control-group.warning select,.control-group.warning textarea{border-color:#c09853;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);}.control-group.warning input:focus,.control-group.warning select:focus,.control-group.warning textarea:focus{border-color:#a47e3c;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #dbc59e;-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #dbc59e;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #dbc59e;} +.control-group.warning .input-prepend .add-on,.control-group.warning .input-append .add-on{color:#c09853;background-color:#fcf8e3;border-color:#c09853;} +.control-group.error .control-label,.control-group.error .help-block,.control-group.error .help-inline{color:#b94a48;} +.control-group.error .checkbox,.control-group.error .radio,.control-group.error input,.control-group.error select,.control-group.error textarea{color:#b94a48;} +.control-group.error input,.control-group.error select,.control-group.error textarea{border-color:#b94a48;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);}.control-group.error input:focus,.control-group.error select:focus,.control-group.error textarea:focus{border-color:#953b39;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #d59392;-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #d59392;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #d59392;} +.control-group.error .input-prepend .add-on,.control-group.error .input-append .add-on{color:#b94a48;background-color:#f2dede;border-color:#b94a48;} +.control-group.success .control-label,.control-group.success .help-block,.control-group.success .help-inline{color:#468847;} +.control-group.success .checkbox,.control-group.success .radio,.control-group.success input,.control-group.success select,.control-group.success textarea{color:#468847;} +.control-group.success input,.control-group.success select,.control-group.success textarea{border-color:#468847;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);}.control-group.success input:focus,.control-group.success select:focus,.control-group.success textarea:focus{border-color:#356635;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7aba7b;-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7aba7b;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7aba7b;} +.control-group.success .input-prepend .add-on,.control-group.success .input-append .add-on{color:#468847;background-color:#dff0d8;border-color:#468847;} +.control-group.info .control-label,.control-group.info .help-block,.control-group.info .help-inline{color:#3a87ad;} +.control-group.info .checkbox,.control-group.info .radio,.control-group.info input,.control-group.info select,.control-group.info textarea{color:#3a87ad;} +.control-group.info input,.control-group.info select,.control-group.info textarea{border-color:#3a87ad;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);}.control-group.info input:focus,.control-group.info select:focus,.control-group.info textarea:focus{border-color:#2d6987;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7ab5d3;-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7ab5d3;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7ab5d3;} +.control-group.info .input-prepend .add-on,.control-group.info .input-append .add-on{color:#3a87ad;background-color:#d9edf7;border-color:#3a87ad;} +input:focus:invalid,textarea:focus:invalid,select:focus:invalid{color:#b94a48;border-color:#ee5f5b;}input:focus:invalid:focus,textarea:focus:invalid:focus,select:focus:invalid:focus{border-color:#e9322d;-webkit-box-shadow:0 0 6px #f8b9b7;-moz-box-shadow:0 0 6px #f8b9b7;box-shadow:0 0 6px #f8b9b7;} +.form-actions{padding:19px 20px 20px;margin-top:20px;margin-bottom:20px;background-color:#f5f5f5;border-top:1px solid #e5e5e5;*zoom:1;}.form-actions:before,.form-actions:after{display:table;content:"";line-height:0;} +.form-actions:after{clear:both;} +.help-block,.help-inline{color:#595959;} +.help-block{display:block;margin-bottom:10px;} +.help-inline{display:inline-block;*display:inline;*zoom:1;vertical-align:middle;padding-left:5px;} +.input-append,.input-prepend{margin-bottom:5px;font-size:0;white-space:nowrap;}.input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input,.input-append .dropdown-menu,.input-prepend .dropdown-menu{font-size:14px;} +.input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input{position:relative;margin-bottom:0;*margin-left:0;vertical-align:top;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;}.input-append input:focus,.input-prepend input:focus,.input-append select:focus,.input-prepend select:focus,.input-append .uneditable-input:focus,.input-prepend .uneditable-input:focus{z-index:2;} +.input-append .add-on,.input-prepend .add-on{display:inline-block;width:auto;height:20px;min-width:16px;padding:4px 5px;font-size:14px;font-weight:normal;line-height:20px;text-align:center;text-shadow:0 1px 0 #ffffff;background-color:#eeeeee;border:1px solid #ccc;} +.input-append .add-on,.input-prepend .add-on,.input-append .btn,.input-prepend .btn,.input-append .btn-group>.dropdown-toggle,.input-prepend .btn-group>.dropdown-toggle{vertical-align:top;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} +.input-append .active,.input-prepend .active{background-color:#a9dba9;border-color:#46a546;} +.input-prepend .add-on,.input-prepend .btn{margin-right:-1px;} +.input-prepend .add-on:first-child,.input-prepend .btn:first-child{-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;} +.input-append input,.input-append select,.input-append .uneditable-input{-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;}.input-append input+.btn-group .btn:last-child,.input-append select+.btn-group .btn:last-child,.input-append .uneditable-input+.btn-group .btn:last-child{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} +.input-append .add-on,.input-append .btn,.input-append .btn-group{margin-left:-1px;} +.input-append .add-on:last-child,.input-append .btn:last-child,.input-append .btn-group:last-child>.dropdown-toggle{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} +.input-prepend.input-append input,.input-prepend.input-append select,.input-prepend.input-append .uneditable-input{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}.input-prepend.input-append input+.btn-group .btn,.input-prepend.input-append select+.btn-group .btn,.input-prepend.input-append .uneditable-input+.btn-group .btn{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} +.input-prepend.input-append .add-on:first-child,.input-prepend.input-append .btn:first-child{margin-right:-1px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;} +.input-prepend.input-append .add-on:last-child,.input-prepend.input-append .btn:last-child{margin-left:-1px;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} +.input-prepend.input-append .btn-group:first-child{margin-left:0;} +input.search-query{padding-right:14px;padding-right:4px \9;padding-left:14px;padding-left:4px \9;margin-bottom:0;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px;} +.form-search .input-append .search-query,.form-search .input-prepend .search-query{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} +.form-search .input-append .search-query{-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px;} +.form-search .input-append .btn{-webkit-border-radius:0 14px 14px 0;-moz-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0;} +.form-search .input-prepend .search-query{-webkit-border-radius:0 14px 14px 0;-moz-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0;} +.form-search .input-prepend .btn{-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px;} +.form-search input,.form-inline input,.form-horizontal input,.form-search textarea,.form-inline textarea,.form-horizontal textarea,.form-search select,.form-inline select,.form-horizontal select,.form-search .help-inline,.form-inline .help-inline,.form-horizontal .help-inline,.form-search .uneditable-input,.form-inline .uneditable-input,.form-horizontal .uneditable-input,.form-search .input-prepend,.form-inline .input-prepend,.form-horizontal .input-prepend,.form-search .input-append,.form-inline .input-append,.form-horizontal .input-append{display:inline-block;*display:inline;*zoom:1;margin-bottom:0;vertical-align:middle;} +.form-search .hide,.form-inline .hide,.form-horizontal .hide{display:none;} +.form-search label,.form-inline label,.form-search .btn-group,.form-inline .btn-group{display:inline-block;} +.form-search .input-append,.form-inline .input-append,.form-search .input-prepend,.form-inline .input-prepend{margin-bottom:0;} +.form-search .radio,.form-search .checkbox,.form-inline .radio,.form-inline .checkbox{padding-left:0;margin-bottom:0;vertical-align:middle;} +.form-search .radio input[type="radio"],.form-search .checkbox input[type="checkbox"],.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{float:left;margin-right:3px;margin-left:0;} +.control-group{margin-bottom:10px;} +legend+.control-group{margin-top:20px;-webkit-margin-top-collapse:separate;} +.form-horizontal .control-group{margin-bottom:20px;*zoom:1;}.form-horizontal .control-group:before,.form-horizontal .control-group:after{display:table;content:"";line-height:0;} +.form-horizontal .control-group:after{clear:both;} +.form-horizontal .control-label{float:left;width:160px;padding-top:5px;text-align:right;} +.form-horizontal .controls{*display:inline-block;*padding-left:20px;margin-left:180px;*margin-left:0;}.form-horizontal .controls:first-child{*padding-left:180px;} +.form-horizontal .help-block{margin-bottom:0;} +.form-horizontal input+.help-block,.form-horizontal select+.help-block,.form-horizontal textarea+.help-block,.form-horizontal .uneditable-input+.help-block,.form-horizontal .input-prepend+.help-block,.form-horizontal .input-append+.help-block{margin-top:10px;} +.form-horizontal .form-actions{padding-left:180px;} +.btn{display:inline-block;*display:inline;*zoom:1;padding:4px 12px;margin-bottom:0;font-size:14px;line-height:20px;text-align:center;vertical-align:middle;cursor:pointer;color:#333333;text-shadow:0 1px 1px rgba(255, 255, 255, 0.75);background-color:#f5f5f5;background-image:-moz-linear-gradient(top, #ffffff, #e6e6e6);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));background-image:-webkit-linear-gradient(top, #ffffff, #e6e6e6);background-image:-o-linear-gradient(top, #ffffff, #e6e6e6);background-image:linear-gradient(to bottom, #ffffff, #e6e6e6);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#e6e6e6;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);border:1px solid #bbbbbb;*border:0;border-bottom-color:#a2a2a2;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;*margin-left:.3em;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);}.btn:hover,.btn:active,.btn.active,.btn.disabled,.btn[disabled]{color:#333333;background-color:#e6e6e6;*background-color:#d9d9d9;} +.btn:active,.btn.active{background-color:#cccccc \9;} +.btn:first-child{*margin-left:0;} +.btn:hover{color:#333333;text-decoration:none;background-position:0 -15px;-webkit-transition:background-position 0.1s linear;-moz-transition:background-position 0.1s linear;-o-transition:background-position 0.1s linear;transition:background-position 0.1s linear;} +.btn:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;} +.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);} +.btn.disabled,.btn[disabled]{cursor:default;background-image:none;opacity:0.65;filter:alpha(opacity=65);-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} +.btn-large{padding:11px 19px;font-size:17.5px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;} +.btn-large [class^="icon-"],.btn-large [class*=" icon-"]{margin-top:4px;} +.btn-small{padding:2px 10px;font-size:11.9px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} +.btn-small [class^="icon-"],.btn-small [class*=" icon-"]{margin-top:0;} +.btn-mini [class^="icon-"],.btn-mini [class*=" icon-"]{margin-top:-1px;} +.btn-mini{padding:0 6px;font-size:10.5px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} +.btn-block{display:block;width:100%;padding-left:0;padding-right:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} +.btn-block+.btn-block{margin-top:5px;} +input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%;} +.btn-primary.active,.btn-warning.active,.btn-danger.active,.btn-success.active,.btn-info.active,.btn-inverse.active{color:rgba(255, 255, 255, 0.75);} +.btn{border-color:#c5c5c5;border-color:rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.25);} +.btn-primary{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#006dcc;background-image:-moz-linear-gradient(top, #0088cc, #0044cc);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));background-image:-webkit-linear-gradient(top, #0088cc, #0044cc);background-image:-o-linear-gradient(top, #0088cc, #0044cc);background-image:linear-gradient(to bottom, #0088cc, #0044cc);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0);border-color:#0044cc #0044cc #002a80;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#0044cc;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-primary:hover,.btn-primary:active,.btn-primary.active,.btn-primary.disabled,.btn-primary[disabled]{color:#ffffff;background-color:#0044cc;*background-color:#003bb3;} +.btn-primary:active,.btn-primary.active{background-color:#003399 \9;} +.btn-warning{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#faa732;background-image:-moz-linear-gradient(top, #fbb450, #f89406);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));background-image:-webkit-linear-gradient(top, #fbb450, #f89406);background-image:-o-linear-gradient(top, #fbb450, #f89406);background-image:linear-gradient(to bottom, #fbb450, #f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);border-color:#f89406 #f89406 #ad6704;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#f89406;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-warning:hover,.btn-warning:active,.btn-warning.active,.btn-warning.disabled,.btn-warning[disabled]{color:#ffffff;background-color:#f89406;*background-color:#df8505;} +.btn-warning:active,.btn-warning.active{background-color:#c67605 \9;} +.btn-danger{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#da4f49;background-image:-moz-linear-gradient(top, #ee5f5b, #bd362f);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));background-image:-webkit-linear-gradient(top, #ee5f5b, #bd362f);background-image:-o-linear-gradient(top, #ee5f5b, #bd362f);background-image:linear-gradient(to bottom, #ee5f5b, #bd362f);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffbd362f', GradientType=0);border-color:#bd362f #bd362f #802420;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#bd362f;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-danger:hover,.btn-danger:active,.btn-danger.active,.btn-danger.disabled,.btn-danger[disabled]{color:#ffffff;background-color:#bd362f;*background-color:#a9302a;} +.btn-danger:active,.btn-danger.active{background-color:#942a25 \9;} +.btn-success{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#5bb75b;background-image:-moz-linear-gradient(top, #62c462, #51a351);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));background-image:-webkit-linear-gradient(top, #62c462, #51a351);background-image:-o-linear-gradient(top, #62c462, #51a351);background-image:linear-gradient(to bottom, #62c462, #51a351);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0);border-color:#51a351 #51a351 #387038;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#51a351;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-success:hover,.btn-success:active,.btn-success.active,.btn-success.disabled,.btn-success[disabled]{color:#ffffff;background-color:#51a351;*background-color:#499249;} +.btn-success:active,.btn-success.active{background-color:#408140 \9;} +.btn-info{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#49afcd;background-image:-moz-linear-gradient(top, #5bc0de, #2f96b4);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));background-image:-webkit-linear-gradient(top, #5bc0de, #2f96b4);background-image:-o-linear-gradient(top, #5bc0de, #2f96b4);background-image:linear-gradient(to bottom, #5bc0de, #2f96b4);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2f96b4', GradientType=0);border-color:#2f96b4 #2f96b4 #1f6377;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#2f96b4;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-info:hover,.btn-info:active,.btn-info.active,.btn-info.disabled,.btn-info[disabled]{color:#ffffff;background-color:#2f96b4;*background-color:#2a85a0;} +.btn-info:active,.btn-info.active{background-color:#24748c \9;} +.btn-inverse{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#363636;background-image:-moz-linear-gradient(top, #444444, #222222);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#444444), to(#222222));background-image:-webkit-linear-gradient(top, #444444, #222222);background-image:-o-linear-gradient(top, #444444, #222222);background-image:linear-gradient(to bottom, #444444, #222222);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff444444', endColorstr='#ff222222', GradientType=0);border-color:#222222 #222222 #000000;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#222222;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-inverse:hover,.btn-inverse:active,.btn-inverse.active,.btn-inverse.disabled,.btn-inverse[disabled]{color:#ffffff;background-color:#222222;*background-color:#151515;} +.btn-inverse:active,.btn-inverse.active{background-color:#080808 \9;} +button.btn,input[type="submit"].btn{*padding-top:3px;*padding-bottom:3px;}button.btn::-moz-focus-inner,input[type="submit"].btn::-moz-focus-inner{padding:0;border:0;} +button.btn.btn-large,input[type="submit"].btn.btn-large{*padding-top:7px;*padding-bottom:7px;} +button.btn.btn-small,input[type="submit"].btn.btn-small{*padding-top:3px;*padding-bottom:3px;} +button.btn.btn-mini,input[type="submit"].btn.btn-mini{*padding-top:1px;*padding-bottom:1px;} +.btn-link,.btn-link:active,.btn-link[disabled]{background-color:transparent;background-image:none;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} +.btn-link{border-color:transparent;cursor:pointer;color:#0088cc;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} +.btn-link:hover{color:#005580;text-decoration:underline;background-color:transparent;} +.btn-link[disabled]:hover{color:#333333;text-decoration:none;} +.btn-group{position:relative;display:inline-block;*display:inline;*zoom:1;font-size:0;vertical-align:middle;white-space:nowrap;*margin-left:.3em;}.btn-group:first-child{*margin-left:0;} +.btn-group+.btn-group{margin-left:5px;} +.btn-toolbar{font-size:0;margin-top:10px;margin-bottom:10px;}.btn-toolbar>.btn+.btn,.btn-toolbar>.btn-group+.btn,.btn-toolbar>.btn+.btn-group{margin-left:5px;} +.btn-group>.btn{position:relative;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} +.btn-group>.btn+.btn{margin-left:-1px;} +.btn-group>.btn,.btn-group>.dropdown-menu,.btn-group>.popover{font-size:14px;} +.btn-group>.btn-mini{font-size:10.5px;} +.btn-group>.btn-small{font-size:11.9px;} +.btn-group>.btn-large{font-size:17.5px;} +.btn-group>.btn:first-child{margin-left:0;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px;} +.btn-group>.btn:last-child,.btn-group>.dropdown-toggle{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;} +.btn-group>.btn.large:first-child{margin-left:0;-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px;} +.btn-group>.btn.large:last-child,.btn-group>.large.dropdown-toggle{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius:6px;} +.btn-group>.btn:hover,.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active{z-index:2;} +.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0;} +.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px;-webkit-box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);*padding-top:5px;*padding-bottom:5px;} +.btn-group>.btn-mini+.dropdown-toggle{padding-left:5px;padding-right:5px;*padding-top:2px;*padding-bottom:2px;} +.btn-group>.btn-small+.dropdown-toggle{*padding-top:5px;*padding-bottom:4px;} +.btn-group>.btn-large+.dropdown-toggle{padding-left:12px;padding-right:12px;*padding-top:7px;*padding-bottom:7px;} +.btn-group.open .dropdown-toggle{background-image:none;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);} +.btn-group.open .btn.dropdown-toggle{background-color:#e6e6e6;} +.btn-group.open .btn-primary.dropdown-toggle{background-color:#0044cc;} +.btn-group.open .btn-warning.dropdown-toggle{background-color:#f89406;} +.btn-group.open .btn-danger.dropdown-toggle{background-color:#bd362f;} +.btn-group.open .btn-success.dropdown-toggle{background-color:#51a351;} +.btn-group.open .btn-info.dropdown-toggle{background-color:#2f96b4;} +.btn-group.open .btn-inverse.dropdown-toggle{background-color:#222222;} +.btn .caret{margin-top:8px;margin-left:0;} +.btn-mini .caret,.btn-small .caret,.btn-large .caret{margin-top:6px;} +.btn-large .caret{border-left-width:5px;border-right-width:5px;border-top-width:5px;} +.dropup .btn-large .caret{border-bottom-width:5px;} +.btn-primary .caret,.btn-warning .caret,.btn-danger .caret,.btn-info .caret,.btn-success .caret,.btn-inverse .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;} +.btn-group-vertical{display:inline-block;*display:inline;*zoom:1;} +.btn-group-vertical>.btn{display:block;float:none;max-width:100%;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} +.btn-group-vertical>.btn+.btn{margin-left:0;margin-top:-1px;} +.btn-group-vertical>.btn:first-child{-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0;} +.btn-group-vertical>.btn:last-child{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px;} +.btn-group-vertical>.btn-large:first-child{-webkit-border-radius:6px 6px 0 0;-moz-border-radius:6px 6px 0 0;border-radius:6px 6px 0 0;} +.btn-group-vertical>.btn-large:last-child{-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;} +.nav{margin-left:0;margin-bottom:20px;list-style:none;} +.nav>li>a{display:block;} +.nav>li>a:hover{text-decoration:none;background-color:#eeeeee;} +.nav>li>a>img{max-width:none;} +.nav>.pull-right{float:right;} +.nav-header{display:block;padding:3px 15px;font-size:11px;font-weight:bold;line-height:20px;color:#999999;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);text-transform:uppercase;} +.nav li+.nav-header{margin-top:9px;} +.nav-list{padding-left:15px;padding-right:15px;margin-bottom:0;} +.nav-list>li>a,.nav-list .nav-header{margin-left:-15px;margin-right:-15px;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);} +.nav-list>li>a{padding:3px 15px;} +.nav-list>.active>a,.nav-list>.active>a:hover{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.2);background-color:#0088cc;} +.nav-list [class^="icon-"],.nav-list [class*=" icon-"]{margin-right:2px;} +.nav-list .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #ffffff;} +.nav-tabs,.nav-pills{*zoom:1;}.nav-tabs:before,.nav-pills:before,.nav-tabs:after,.nav-pills:after{display:table;content:"";line-height:0;} +.nav-tabs:after,.nav-pills:after{clear:both;} +.nav-tabs>li,.nav-pills>li{float:left;} +.nav-tabs>li>a,.nav-pills>li>a{padding-right:12px;padding-left:12px;margin-right:2px;line-height:14px;} +.nav-tabs{border-bottom:1px solid #ddd;} +.nav-tabs>li{margin-bottom:-1px;} +.nav-tabs>li>a{padding-top:8px;padding-bottom:8px;line-height:20px;border:1px solid transparent;-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0;}.nav-tabs>li>a:hover{border-color:#eeeeee #eeeeee #dddddd;} +.nav-tabs>.active>a,.nav-tabs>.active>a:hover{color:#555555;background-color:#ffffff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default;} +.nav-pills>li>a{padding-top:8px;padding-bottom:8px;margin-top:2px;margin-bottom:2px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;} +.nav-pills>.active>a,.nav-pills>.active>a:hover{color:#ffffff;background-color:#0088cc;} +.nav-stacked>li{float:none;} +.nav-stacked>li>a{margin-right:0;} +.nav-tabs.nav-stacked{border-bottom:0;} +.nav-tabs.nav-stacked>li>a{border:1px solid #ddd;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} +.nav-tabs.nav-stacked>li:first-child>a{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;} +.nav-tabs.nav-stacked>li:last-child>a{-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px;} +.nav-tabs.nav-stacked>li>a:hover{border-color:#ddd;z-index:2;} +.nav-pills.nav-stacked>li>a{margin-bottom:3px;} +.nav-pills.nav-stacked>li:last-child>a{margin-bottom:1px;} +.nav-tabs .dropdown-menu{-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;} +.nav-pills .dropdown-menu{-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;} +.nav .dropdown-toggle .caret{border-top-color:#0088cc;border-bottom-color:#0088cc;margin-top:6px;} +.nav .dropdown-toggle:hover .caret{border-top-color:#005580;border-bottom-color:#005580;} +.nav-tabs .dropdown-toggle .caret{margin-top:8px;} +.nav .active .dropdown-toggle .caret{border-top-color:#fff;border-bottom-color:#fff;} +.nav-tabs .active .dropdown-toggle .caret{border-top-color:#555555;border-bottom-color:#555555;} +.nav>.dropdown.active>a:hover{cursor:pointer;} +.nav-tabs .open .dropdown-toggle,.nav-pills .open .dropdown-toggle,.nav>li.dropdown.open.active>a:hover{color:#ffffff;background-color:#999999;border-color:#999999;} +.nav li.dropdown.open .caret,.nav li.dropdown.open.active .caret,.nav li.dropdown.open a:hover .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;opacity:1;filter:alpha(opacity=100);} +.tabs-stacked .open>a:hover{border-color:#999999;} +.tabbable{*zoom:1;}.tabbable:before,.tabbable:after{display:table;content:"";line-height:0;} +.tabbable:after{clear:both;} +.tab-content{overflow:auto;} +.tabs-below>.nav-tabs,.tabs-right>.nav-tabs,.tabs-left>.nav-tabs{border-bottom:0;} +.tab-content>.tab-pane,.pill-content>.pill-pane{display:none;} +.tab-content>.active,.pill-content>.active{display:block;} +.tabs-below>.nav-tabs{border-top:1px solid #ddd;} +.tabs-below>.nav-tabs>li{margin-top:-1px;margin-bottom:0;} +.tabs-below>.nav-tabs>li>a{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px;}.tabs-below>.nav-tabs>li>a:hover{border-bottom-color:transparent;border-top-color:#ddd;} +.tabs-below>.nav-tabs>.active>a,.tabs-below>.nav-tabs>.active>a:hover{border-color:transparent #ddd #ddd #ddd;} +.tabs-left>.nav-tabs>li,.tabs-right>.nav-tabs>li{float:none;} +.tabs-left>.nav-tabs>li>a,.tabs-right>.nav-tabs>li>a{min-width:74px;margin-right:0;margin-bottom:3px;} +.tabs-left>.nav-tabs{float:left;margin-right:19px;border-right:1px solid #ddd;} +.tabs-left>.nav-tabs>li>a{margin-right:-1px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;} +.tabs-left>.nav-tabs>li>a:hover{border-color:#eeeeee #dddddd #eeeeee #eeeeee;} +.tabs-left>.nav-tabs .active>a,.tabs-left>.nav-tabs .active>a:hover{border-color:#ddd transparent #ddd #ddd;*border-right-color:#ffffff;} +.tabs-right>.nav-tabs{float:right;margin-left:19px;border-left:1px solid #ddd;} +.tabs-right>.nav-tabs>li>a{margin-left:-1px;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} +.tabs-right>.nav-tabs>li>a:hover{border-color:#eeeeee #eeeeee #eeeeee #dddddd;} +.tabs-right>.nav-tabs .active>a,.tabs-right>.nav-tabs .active>a:hover{border-color:#ddd #ddd #ddd transparent;*border-left-color:#ffffff;} +.nav>.disabled>a{color:#999999;} +.nav>.disabled>a:hover{text-decoration:none;background-color:transparent;cursor:default;} +.navbar{overflow:visible;margin-bottom:20px;*position:relative;*z-index:2;} +.navbar-inner{min-height:50px;padding-left:20px;padding-right:20px;background-color:#fafafa;background-image:-moz-linear-gradient(top, #ffffff, #f2f2f2);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f2f2f2));background-image:-webkit-linear-gradient(top, #ffffff, #f2f2f2);background-image:-o-linear-gradient(top, #ffffff, #f2f2f2);background-image:linear-gradient(to bottom, #ffffff, #f2f2f2);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff2f2f2', GradientType=0);border:1px solid #d4d4d4;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.065);-moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.065);box-shadow:0 1px 4px rgba(0, 0, 0, 0.065);*zoom:1;}.navbar-inner:before,.navbar-inner:after{display:table;content:"";line-height:0;} +.navbar-inner:after{clear:both;} +.navbar .container{width:auto;} +.nav-collapse.collapse{height:auto;overflow:visible;} +.navbar .brand{float:left;display:block;padding:15px 20px 15px;margin-left:-20px;font-size:20px;font-weight:200;color:#777777;text-shadow:0 1px 0 #ffffff;}.navbar .brand:hover{text-decoration:none;} +.navbar-text{margin-bottom:0;line-height:50px;color:#777777;} +.navbar-link{color:#777777;}.navbar-link:hover{color:#333333;} +.navbar .divider-vertical{height:50px;margin:0 9px;border-left:1px solid #f2f2f2;border-right:1px solid #ffffff;} +.navbar .btn,.navbar .btn-group{margin-top:10px;} +.navbar .btn-group .btn,.navbar .input-prepend .btn,.navbar .input-append .btn{margin-top:0;} +.navbar-form{margin-bottom:0;*zoom:1;}.navbar-form:before,.navbar-form:after{display:table;content:"";line-height:0;} +.navbar-form:after{clear:both;} +.navbar-form input,.navbar-form select,.navbar-form .radio,.navbar-form .checkbox{margin-top:10px;} +.navbar-form input,.navbar-form select,.navbar-form .btn{display:inline-block;margin-bottom:0;} +.navbar-form input[type="image"],.navbar-form input[type="checkbox"],.navbar-form input[type="radio"]{margin-top:3px;} +.navbar-form .input-append,.navbar-form .input-prepend{margin-top:5px;white-space:nowrap;}.navbar-form .input-append input,.navbar-form .input-prepend input{margin-top:0;} +.navbar-search{position:relative;float:left;margin-top:10px;margin-bottom:0;}.navbar-search .search-query{margin-bottom:0;padding:4px 14px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;font-weight:normal;line-height:1;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px;} +.navbar-static-top{position:static;margin-bottom:0;}.navbar-static-top .navbar-inner{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} +.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030;margin-bottom:0;} +.navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{border-width:0 0 1px;} +.navbar-fixed-bottom .navbar-inner{border-width:1px 0 0;} +.navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding-left:0;padding-right:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} +.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px;} +.navbar-fixed-top{top:0;} +.navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{-webkit-box-shadow:0 1px 10px rgba(0,0,0,.1);-moz-box-shadow:0 1px 10px rgba(0,0,0,.1);box-shadow:0 1px 10px rgba(0,0,0,.1);} +.navbar-fixed-bottom{bottom:0;}.navbar-fixed-bottom .navbar-inner{-webkit-box-shadow:0 -1px 10px rgba(0,0,0,.1);-moz-box-shadow:0 -1px 10px rgba(0,0,0,.1);box-shadow:0 -1px 10px rgba(0,0,0,.1);} +.navbar .nav{position:relative;left:0;display:block;float:left;margin:0 10px 0 0;} +.navbar .nav.pull-right{float:right;margin-right:0;} +.navbar .nav>li{float:left;} +.navbar .nav>li>a{float:none;padding:15px 15px 15px;color:#777777;text-decoration:none;text-shadow:0 1px 0 #ffffff;} +.navbar .nav .dropdown-toggle .caret{margin-top:8px;} +.navbar .nav>li>a:focus,.navbar .nav>li>a:hover{background-color:transparent;color:#333333;text-decoration:none;} +.navbar .nav>.active>a,.navbar .nav>.active>a:hover,.navbar .nav>.active>a:focus{color:#555555;text-decoration:none;background-color:#e5e5e5;-webkit-box-shadow:inset 0 3px 8px rgba(0, 0, 0, 0.125);-moz-box-shadow:inset 0 3px 8px rgba(0, 0, 0, 0.125);box-shadow:inset 0 3px 8px rgba(0, 0, 0, 0.125);} +.navbar .btn-navbar{display:none;float:right;padding:7px 10px;margin-left:5px;margin-right:5px;color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#ededed;background-image:-moz-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#f2f2f2), to(#e5e5e5));background-image:-webkit-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:-o-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:linear-gradient(to bottom, #f2f2f2, #e5e5e5);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2f2f2', endColorstr='#ffe5e5e5', GradientType=0);border-color:#e5e5e5 #e5e5e5 #bfbfbf;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#e5e5e5;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);}.navbar .btn-navbar:hover,.navbar .btn-navbar:active,.navbar .btn-navbar.active,.navbar .btn-navbar.disabled,.navbar .btn-navbar[disabled]{color:#ffffff;background-color:#e5e5e5;*background-color:#d9d9d9;} +.navbar .btn-navbar:active,.navbar .btn-navbar.active{background-color:#cccccc \9;} +.navbar .btn-navbar .icon-bar{display:block;width:18px;height:2px;background-color:#f5f5f5;-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;-webkit-box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);-moz-box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);} +.btn-navbar .icon-bar+.icon-bar{margin-top:3px;} +.navbar .nav>li>.dropdown-menu:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0, 0, 0, 0.2);position:absolute;top:-7px;left:9px;} +.navbar .nav>li>.dropdown-menu:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #ffffff;position:absolute;top:-6px;left:10px;} +.navbar-fixed-bottom .nav>li>.dropdown-menu:before{border-top:7px solid #ccc;border-top-color:rgba(0, 0, 0, 0.2);border-bottom:0;bottom:-7px;top:auto;} +.navbar-fixed-bottom .nav>li>.dropdown-menu:after{border-top:6px solid #ffffff;border-bottom:0;bottom:-6px;top:auto;} +.navbar .nav li.dropdown>a:hover .caret{border-top-color:#555555;border-bottom-color:#555555;} +.navbar .nav li.dropdown.open>.dropdown-toggle,.navbar .nav li.dropdown.active>.dropdown-toggle,.navbar .nav li.dropdown.open.active>.dropdown-toggle{background-color:#e5e5e5;color:#555555;} +.navbar .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#777777;border-bottom-color:#777777;} +.navbar .nav li.dropdown.open>.dropdown-toggle .caret,.navbar .nav li.dropdown.active>.dropdown-toggle .caret,.navbar .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#555555;border-bottom-color:#555555;} +.navbar .pull-right>li>.dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right{left:auto;right:0;}.navbar .pull-right>li>.dropdown-menu:before,.navbar .nav>li>.dropdown-menu.pull-right:before{left:auto;right:12px;} +.navbar .pull-right>li>.dropdown-menu:after,.navbar .nav>li>.dropdown-menu.pull-right:after{left:auto;right:13px;} +.navbar .pull-right>li>.dropdown-menu .dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right .dropdown-menu{left:auto;right:100%;margin-left:0;margin-right:-1px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px;} +.navbar-inverse .navbar-inner{background-color:#1b1b1b;background-image:-moz-linear-gradient(top, #222222, #111111);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#222222), to(#111111));background-image:-webkit-linear-gradient(top, #222222, #111111);background-image:-o-linear-gradient(top, #222222, #111111);background-image:linear-gradient(to bottom, #222222, #111111);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff111111', GradientType=0);border-color:#252525;} +.navbar-inverse .brand,.navbar-inverse .nav>li>a{color:#999999;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);}.navbar-inverse .brand:hover,.navbar-inverse .nav>li>a:hover{color:#ffffff;} +.navbar-inverse .brand{color:#999999;} +.navbar-inverse .navbar-text{color:#999999;} +.navbar-inverse .nav>li>a:focus,.navbar-inverse .nav>li>a:hover{background-color:transparent;color:#ffffff;} +.navbar-inverse .nav .active>a,.navbar-inverse .nav .active>a:hover,.navbar-inverse .nav .active>a:focus{color:#ffffff;background-color:#111111;} +.navbar-inverse .navbar-link{color:#999999;}.navbar-inverse .navbar-link:hover{color:#ffffff;} +.navbar-inverse .divider-vertical{border-left-color:#111111;border-right-color:#222222;} +.navbar-inverse .nav li.dropdown.open>.dropdown-toggle,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle{background-color:#111111;color:#ffffff;} +.navbar-inverse .nav li.dropdown>a:hover .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;} +.navbar-inverse .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#999999;border-bottom-color:#999999;} +.navbar-inverse .nav li.dropdown.open>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;} +.navbar-inverse .navbar-search .search-query{color:#ffffff;background-color:#515151;border-color:#111111;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);-webkit-transition:none;-moz-transition:none;-o-transition:none;transition:none;}.navbar-inverse .navbar-search .search-query:-moz-placeholder{color:#cccccc;} +.navbar-inverse .navbar-search .search-query:-ms-input-placeholder{color:#cccccc;} +.navbar-inverse .navbar-search .search-query::-webkit-input-placeholder{color:#cccccc;} +.navbar-inverse .navbar-search .search-query:focus,.navbar-inverse .navbar-search .search-query.focused{padding:5px 15px;color:#333333;text-shadow:0 1px 0 #ffffff;background-color:#ffffff;border:0;-webkit-box-shadow:0 0 3px rgba(0, 0, 0, 0.15);-moz-box-shadow:0 0 3px rgba(0, 0, 0, 0.15);box-shadow:0 0 3px rgba(0, 0, 0, 0.15);outline:0;} +.navbar-inverse .btn-navbar{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#0e0e0e;background-image:-moz-linear-gradient(top, #151515, #040404);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#151515), to(#040404));background-image:-webkit-linear-gradient(top, #151515, #040404);background-image:-o-linear-gradient(top, #151515, #040404);background-image:linear-gradient(to bottom, #151515, #040404);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff151515', endColorstr='#ff040404', GradientType=0);border-color:#040404 #040404 #000000;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#040404;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.navbar-inverse .btn-navbar:hover,.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active,.navbar-inverse .btn-navbar.disabled,.navbar-inverse .btn-navbar[disabled]{color:#ffffff;background-color:#040404;*background-color:#000000;} +.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active{background-color:#000000 \9;} +.breadcrumb{padding:8px 15px;margin:0 0 20px;list-style:none;background-color:#f5f5f5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}.breadcrumb>li{display:inline-block;*display:inline;*zoom:1;text-shadow:0 1px 0 #ffffff;}.breadcrumb>li>.divider{padding:0 5px;color:#ccc;} +.breadcrumb>.active{color:#999999;} +.pagination{margin:20px 0;} +.pagination ul{display:inline-block;*display:inline;*zoom:1;margin-left:0;margin-bottom:0;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);-moz-box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);} +.pagination ul>li{display:inline;} +.pagination ul>li>a,.pagination ul>li>span{float:left;padding:4px 12px;line-height:20px;text-decoration:none;background-color:#ffffff;border:1px solid #dddddd;border-left-width:0;} +.pagination ul>li>a:hover,.pagination ul>.active>a,.pagination ul>.active>span{background-color:#f5f5f5;} +.pagination ul>.active>a,.pagination ul>.active>span{color:#999999;cursor:default;} +.pagination ul>.disabled>span,.pagination ul>.disabled>a,.pagination ul>.disabled>a:hover{color:#999999;background-color:transparent;cursor:default;} +.pagination ul>li:first-child>a,.pagination ul>li:first-child>span{border-left-width:1px;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px;} +.pagination ul>li:last-child>a,.pagination ul>li:last-child>span{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;} +.pagination-centered{text-align:center;} +.pagination-right{text-align:right;} +.pagination-large ul>li>a,.pagination-large ul>li>span{padding:11px 19px;font-size:17.5px;} +.pagination-large ul>li:first-child>a,.pagination-large ul>li:first-child>span{-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px;} +.pagination-large ul>li:last-child>a,.pagination-large ul>li:last-child>span{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius:6px;} +.pagination-mini ul>li:first-child>a,.pagination-small ul>li:first-child>a,.pagination-mini ul>li:first-child>span,.pagination-small ul>li:first-child>span{-webkit-border-top-left-radius:3px;-moz-border-radius-topleft:3px;border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;-moz-border-radius-bottomleft:3px;border-bottom-left-radius:3px;} +.pagination-mini ul>li:last-child>a,.pagination-small ul>li:last-child>a,.pagination-mini ul>li:last-child>span,.pagination-small ul>li:last-child>span{-webkit-border-top-right-radius:3px;-moz-border-radius-topright:3px;border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;-moz-border-radius-bottomright:3px;border-bottom-right-radius:3px;} +.pagination-small ul>li>a,.pagination-small ul>li>span{padding:2px 10px;font-size:11.9px;} +.pagination-mini ul>li>a,.pagination-mini ul>li>span{padding:0 6px;font-size:10.5px;} +.pager{margin:20px 0;list-style:none;text-align:center;*zoom:1;}.pager:before,.pager:after{display:table;content:"";line-height:0;} +.pager:after{clear:both;} +.pager li{display:inline;} +.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px;} +.pager li>a:hover{text-decoration:none;background-color:#f5f5f5;} +.pager .next>a,.pager .next>span{float:right;} +.pager .previous>a,.pager .previous>span{float:left;} +.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>span{color:#999999;background-color:#fff;cursor:default;} +.thumbnails{margin-left:-20px;list-style:none;*zoom:1;}.thumbnails:before,.thumbnails:after{display:table;content:"";line-height:0;} +.thumbnails:after{clear:both;} +.row-fluid .thumbnails{margin-left:0;} +.thumbnails>li{float:left;margin-bottom:20px;margin-left:20px;} +.thumbnail{display:block;padding:4px;line-height:20px;border:1px solid #ddd;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 3px rgba(0, 0, 0, 0.055);-moz-box-shadow:0 1px 3px rgba(0, 0, 0, 0.055);box-shadow:0 1px 3px rgba(0, 0, 0, 0.055);-webkit-transition:all 0.2s ease-in-out;-moz-transition:all 0.2s ease-in-out;-o-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out;} +a.thumbnail:hover{border-color:#0088cc;-webkit-box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);-moz-box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);} +.thumbnail>img{display:block;max-width:100%;margin-left:auto;margin-right:auto;} +.thumbnail .caption{padding:9px;color:#555555;} +.alert{padding:8px 35px 8px 14px;margin-bottom:20px;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);background-color:#fcf8e3;border:1px solid #fbeed5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} +.alert,.alert h4{color:#c09853;} +.alert h4{margin:0;} +.alert .close{position:relative;top:-2px;right:-21px;line-height:20px;} +.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#468847;} +.alert-success h4{color:#468847;} +.alert-danger,.alert-error{background-color:#f2dede;border-color:#eed3d7;color:#b94a48;} +.alert-danger h4,.alert-error h4{color:#b94a48;} +.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#3a87ad;} +.alert-info h4{color:#3a87ad;} +.alert-block{padding-top:14px;padding-bottom:14px;} +.alert-block>p,.alert-block>ul{margin-bottom:0;} +.alert-block p+p{margin-top:5px;} +@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0;} to{background-position:0 0;}}@-moz-keyframes progress-bar-stripes{from{background-position:40px 0;} to{background-position:0 0;}}@-ms-keyframes progress-bar-stripes{from{background-position:40px 0;} to{background-position:0 0;}}@-o-keyframes progress-bar-stripes{from{background-position:0 0;} to{background-position:40px 0;}}@keyframes progress-bar-stripes{from{background-position:40px 0;} to{background-position:0 0;}}.progress{overflow:hidden;height:20px;margin-bottom:20px;background-color:#f7f7f7;background-image:-moz-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));background-image:-webkit-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-o-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:linear-gradient(to bottom, #f5f5f5, #f9f9f9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);-webkit-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);-moz-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} +.progress .bar{width:0%;height:100%;color:#ffffff;float:left;font-size:12px;text-align:center;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#0e90d2;background-image:-moz-linear-gradient(top, #149bdf, #0480be);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));background-image:-webkit-linear-gradient(top, #149bdf, #0480be);background-image:-o-linear-gradient(top, #149bdf, #0480be);background-image:linear-gradient(to bottom, #149bdf, #0480be);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0);-webkit-box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);-moz-box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:width 0.6s ease;-moz-transition:width 0.6s ease;-o-transition:width 0.6s ease;transition:width 0.6s ease;} +.progress .bar+.bar{-webkit-box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);-moz-box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);} +.progress-striped .bar{background-color:#149bdf;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);-webkit-background-size:40px 40px;-moz-background-size:40px 40px;-o-background-size:40px 40px;background-size:40px 40px;} +.progress.active .bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-moz-animation:progress-bar-stripes 2s linear infinite;-ms-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite;} +.progress-danger .bar,.progress .bar-danger{background-color:#dd514c;background-image:-moz-linear-gradient(top, #ee5f5b, #c43c35);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35));background-image:-webkit-linear-gradient(top, #ee5f5b, #c43c35);background-image:-o-linear-gradient(top, #ee5f5b, #c43c35);background-image:linear-gradient(to bottom, #ee5f5b, #c43c35);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffc43c35', GradientType=0);} +.progress-danger.progress-striped .bar,.progress-striped .bar-danger{background-color:#ee5f5b;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);} +.progress-success .bar,.progress .bar-success{background-color:#5eb95e;background-image:-moz-linear-gradient(top, #62c462, #57a957);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957));background-image:-webkit-linear-gradient(top, #62c462, #57a957);background-image:-o-linear-gradient(top, #62c462, #57a957);background-image:linear-gradient(to bottom, #62c462, #57a957);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff57a957', GradientType=0);} +.progress-success.progress-striped .bar,.progress-striped .bar-success{background-color:#62c462;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);} +.progress-info .bar,.progress .bar-info{background-color:#4bb1cf;background-image:-moz-linear-gradient(top, #5bc0de, #339bb9);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9));background-image:-webkit-linear-gradient(top, #5bc0de, #339bb9);background-image:-o-linear-gradient(top, #5bc0de, #339bb9);background-image:linear-gradient(to bottom, #5bc0de, #339bb9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff339bb9', GradientType=0);} +.progress-info.progress-striped .bar,.progress-striped .bar-info{background-color:#5bc0de;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);} +.progress-warning .bar,.progress .bar-warning{background-color:#faa732;background-image:-moz-linear-gradient(top, #fbb450, #f89406);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));background-image:-webkit-linear-gradient(top, #fbb450, #f89406);background-image:-o-linear-gradient(top, #fbb450, #f89406);background-image:linear-gradient(to bottom, #fbb450, #f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);} +.progress-warning.progress-striped .bar,.progress-striped .bar-warning{background-color:#fbb450;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);} +.hero-unit{padding:60px;margin-bottom:30px;font-size:18px;font-weight:200;line-height:30px;color:inherit;background-color:#eeeeee;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;}.hero-unit h1{margin-bottom:0;font-size:60px;line-height:1;color:inherit;letter-spacing:-1px;} +.hero-unit li{line-height:30px;} +.media,.media-body{overflow:hidden;*overflow:visible;zoom:1;} +.media,.media .media{margin-top:15px;} +.media:first-child{margin-top:0;} +.media-object{display:block;} +.media-heading{margin:0 0 5px;} +.media .pull-left{margin-right:10px;} +.media .pull-right{margin-left:10px;} +.media-list{margin-left:0;list-style:none;} +.tooltip{position:absolute;z-index:1030;display:block;visibility:visible;padding:5px;font-size:11px;opacity:0;filter:alpha(opacity=0);}.tooltip.in{opacity:0.8;filter:alpha(opacity=80);} +.tooltip.top{margin-top:-3px;} +.tooltip.right{margin-left:3px;} +.tooltip.bottom{margin-top:3px;} +.tooltip.left{margin-left:-3px;} +.tooltip-inner{max-width:200px;padding:3px 8px;color:#ffffff;text-align:center;text-decoration:none;background-color:#000000;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} +.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid;} +.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000000;} +.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000000;} +.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000000;} +.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000000;} +.popover{position:absolute;top:0;left:0;z-index:1010;display:none;width:236px;padding:1px;text-align:left;background-color:#ffffff;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.2);-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-moz-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);white-space:normal;}.popover.top{margin-top:-10px;} +.popover.right{margin-left:10px;} +.popover.bottom{margin-top:10px;} +.popover.left{margin-left:-10px;} +.popover-title{margin:0;padding:8px 14px;font-size:14px;font-weight:normal;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;-webkit-border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0;} +.popover-content{padding:9px 14px;} +.popover .arrow,.popover .arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid;} +.popover .arrow{border-width:11px;} +.popover .arrow:after{border-width:10px;content:"";} +.popover.top .arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0, 0, 0, 0.25);bottom:-11px;}.popover.top .arrow:after{bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#ffffff;} +.popover.right .arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0, 0, 0, 0.25);}.popover.right .arrow:after{left:1px;bottom:-10px;border-left-width:0;border-right-color:#ffffff;} +.popover.bottom .arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0, 0, 0, 0.25);top:-11px;}.popover.bottom .arrow:after{top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#ffffff;} +.popover.left .arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0, 0, 0, 0.25);}.popover.left .arrow:after{right:1px;border-right-width:0;border-left-color:#ffffff;bottom:-10px;} +.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000000;}.modal-backdrop.fade{opacity:0;} +.modal-backdrop,.modal-backdrop.fade.in{opacity:0.8;filter:alpha(opacity=80);} +.modal{position:fixed;top:10%;left:50%;z-index:1050;width:560px;margin-left:-280px;background-color:#ffffff;border:1px solid #999;border:1px solid rgba(0, 0, 0, 0.3);*border:1px solid #999;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);-moz-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);-webkit-background-clip:padding-box;-moz-background-clip:padding-box;background-clip:padding-box;outline:none;}.modal.fade{-webkit-transition:opacity .3s linear, top .3s ease-out;-moz-transition:opacity .3s linear, top .3s ease-out;-o-transition:opacity .3s linear, top .3s ease-out;transition:opacity .3s linear, top .3s ease-out;top:-25%;} +.modal.fade.in{top:10%;} +.modal-header{padding:9px 15px;border-bottom:1px solid #eee;}.modal-header .close{margin-top:2px;} +.modal-header h3{margin:0;line-height:30px;} +.modal-body{position:relative;overflow-y:auto;max-height:400px;padding:15px;} +.modal-form{margin-bottom:0;} +.modal-footer{padding:14px 15px 15px;margin-bottom:0;text-align:right;background-color:#f5f5f5;border-top:1px solid #ddd;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;-webkit-box-shadow:inset 0 1px 0 #ffffff;-moz-box-shadow:inset 0 1px 0 #ffffff;box-shadow:inset 0 1px 0 #ffffff;*zoom:1;}.modal-footer:before,.modal-footer:after{display:table;content:"";line-height:0;} +.modal-footer:after{clear:both;} +.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0;} +.modal-footer .btn-group .btn+.btn{margin-left:-1px;} +.modal-footer .btn-block+.btn-block{margin-left:0;} +.dropup,.dropdown{position:relative;} +.dropdown-toggle{*margin-bottom:-3px;} +.dropdown-toggle:active,.open .dropdown-toggle{outline:0;} +.caret{display:inline-block;width:0;height:0;vertical-align:top;border-top:4px solid #000000;border-right:4px solid transparent;border-left:4px solid transparent;content:"";} +.dropdown .caret{margin-top:8px;margin-left:2px;} +.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;background-color:#ffffff;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.2);*border-right-width:2px;*border-bottom-width:2px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-moz-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;}.dropdown-menu.pull-right{right:0;left:auto;} +.dropdown-menu .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #ffffff;} +.dropdown-menu li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:20px;color:#333333;white-space:nowrap;} +.dropdown-menu li>a:hover,.dropdown-menu li>a:focus,.dropdown-submenu:hover>a{text-decoration:none;color:#ffffff;background-color:#0081c2;background-image:-moz-linear-gradient(top, #0088cc, #0077b3);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));background-image:-webkit-linear-gradient(top, #0088cc, #0077b3);background-image:-o-linear-gradient(top, #0088cc, #0077b3);background-image:linear-gradient(to bottom, #0088cc, #0077b3);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);} +.dropdown-menu .active>a,.dropdown-menu .active>a:hover{color:#ffffff;text-decoration:none;outline:0;background-color:#0081c2;background-image:-moz-linear-gradient(top, #0088cc, #0077b3);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));background-image:-webkit-linear-gradient(top, #0088cc, #0077b3);background-image:-o-linear-gradient(top, #0088cc, #0077b3);background-image:linear-gradient(to bottom, #0088cc, #0077b3);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);} +.dropdown-menu .disabled>a,.dropdown-menu .disabled>a:hover{color:#999999;} +.dropdown-menu .disabled>a:hover{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:default;} +.open{*z-index:1000;}.open >.dropdown-menu{display:block;} +.pull-right>.dropdown-menu{right:0;left:auto;} +.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid #000000;content:"";} +.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px;} +.dropdown-submenu{position:relative;} +.dropdown-submenu>.dropdown-menu{top:0;left:100%;margin-top:-6px;margin-left:-1px;-webkit-border-radius:0 6px 6px 6px;-moz-border-radius:0 6px 6px 6px;border-radius:0 6px 6px 6px;} +.dropdown-submenu:hover>.dropdown-menu{display:block;} +.dropup .dropdown-submenu>.dropdown-menu{top:auto;bottom:0;margin-top:0;margin-bottom:-2px;-webkit-border-radius:5px 5px 5px 0;-moz-border-radius:5px 5px 5px 0;border-radius:5px 5px 5px 0;} +.dropdown-submenu>a:after{display:block;content:" ";float:right;width:0;height:0;border-color:transparent;border-style:solid;border-width:5px 0 5px 5px;border-left-color:#cccccc;margin-top:5px;margin-right:-10px;} +.dropdown-submenu:hover>a:after{border-left-color:#ffffff;} +.dropdown-submenu.pull-left{float:none;}.dropdown-submenu.pull-left>.dropdown-menu{left:-100%;margin-left:10px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px;} +.dropdown .dropdown-menu .nav-header{padding-left:20px;padding-right:20px;} +.typeahead{z-index:1051;margin-top:2px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} +.accordion{margin-bottom:20px;} +.accordion-group{margin-bottom:2px;border:1px solid #e5e5e5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} +.accordion-heading{border-bottom:0;} +.accordion-heading .accordion-toggle{display:block;padding:8px 15px;} +.accordion-toggle{cursor:pointer;} +.accordion-inner{padding:9px 15px;border-top:1px solid #e5e5e5;} +.carousel{position:relative;margin-bottom:20px;line-height:1;} +.carousel-inner{overflow:hidden;width:100%;position:relative;} +.carousel-inner>.item{display:none;position:relative;-webkit-transition:0.6s ease-in-out left;-moz-transition:0.6s ease-in-out left;-o-transition:0.6s ease-in-out left;transition:0.6s ease-in-out left;} +.carousel-inner>.item>img{display:block;line-height:1;} +.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block;} +.carousel-inner>.active{left:0;} +.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%;} +.carousel-inner>.next{left:100%;} +.carousel-inner>.prev{left:-100%;} +.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0;} +.carousel-inner>.active.left{left:-100%;} +.carousel-inner>.active.right{left:100%;} +.carousel-control{position:absolute;top:40%;left:15px;width:40px;height:40px;margin-top:-20px;font-size:60px;font-weight:100;line-height:30px;color:#ffffff;text-align:center;background:#222222;border:3px solid #ffffff;-webkit-border-radius:23px;-moz-border-radius:23px;border-radius:23px;opacity:0.5;filter:alpha(opacity=50);}.carousel-control.right{left:auto;right:15px;} +.carousel-control:hover{color:#ffffff;text-decoration:none;opacity:0.9;filter:alpha(opacity=90);} +.carousel-caption{position:absolute;left:0;right:0;bottom:0;padding:15px;background:#333333;background:rgba(0, 0, 0, 0.75);} +.carousel-caption h4,.carousel-caption p{color:#ffffff;line-height:20px;} +.carousel-caption h4{margin:0 0 5px;} +.carousel-caption p{margin-bottom:0;} +.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);}.well blockquote{border-color:#ddd;border-color:rgba(0, 0, 0, 0.15);} +.well-large{padding:24px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;} +.well-small{padding:9px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} +.close{float:right;font-size:20px;font-weight:bold;line-height:20px;color:#000000;text-shadow:0 1px 0 #ffffff;opacity:0.2;filter:alpha(opacity=20);}.close:hover{color:#000000;text-decoration:none;cursor:pointer;opacity:0.4;filter:alpha(opacity=40);} +button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;} +.pull-right{float:right;} +.pull-left{float:left;} +.hide{display:none;} +.show{display:block;} +.invisible{visibility:hidden;} +.affix{position:fixed;} +.fade{opacity:0;-webkit-transition:opacity 0.15s linear;-moz-transition:opacity 0.15s linear;-o-transition:opacity 0.15s linear;transition:opacity 0.15s linear;}.fade.in{opacity:1;} +.collapse{position:relative;height:0;overflow:hidden;-webkit-transition:height 0.35s ease;-moz-transition:height 0.35s ease;-o-transition:height 0.35s ease;transition:height 0.35s ease;}.collapse.in{height:auto;} +.hidden{display:none;visibility:hidden;} +.visible-phone{display:none !important;} +.visible-tablet{display:none !important;} +.hidden-desktop{display:none !important;} +.visible-desktop{display:inherit !important;} +@media (min-width:768px) and (max-width:979px){.hidden-desktop{display:inherit !important;} .visible-desktop{display:none !important ;} .visible-tablet{display:inherit !important;} .hidden-tablet{display:none !important;}}@media (max-width:767px){.hidden-desktop{display:inherit !important;} .visible-desktop{display:none !important;} .visible-phone{display:inherit !important;} .hidden-phone{display:none !important;}}@media (max-width:767px){body{padding-left:20px;padding-right:20px;} .navbar-fixed-top,.navbar-fixed-bottom,.navbar-static-top{margin-left:-20px;margin-right:-20px;} .container-fluid{padding:0;} .dl-horizontal dt{float:none;clear:none;width:auto;text-align:left;} .dl-horizontal dd{margin-left:0;} .container{width:auto;} .row-fluid{width:100%;} .row,.thumbnails{margin-left:0;} .thumbnails>li{float:none;margin-left:0;} [class*="span"],.uneditable-input[class*="span"],.row-fluid [class*="span"]{float:none;display:block;width:100%;margin-left:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} .span12,.row-fluid .span12{width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} .row-fluid [class*="offset"]:first-child{margin-left:0;} .input-large,.input-xlarge,.input-xxlarge,input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} .input-prepend input,.input-append input,.input-prepend input[class*="span"],.input-append input[class*="span"]{display:inline-block;width:auto;} .controls-row [class*="span"]+[class*="span"]{margin-left:0;} .modal{position:fixed;top:20px;left:20px;right:20px;width:auto;margin:0;}.modal.fade{top:-100px;} .modal.fade.in{top:20px;}}@media (max-width:480px){.nav-collapse{-webkit-transform:translate3d(0, 0, 0);} .page-header h1 small{display:block;line-height:20px;} input[type="checkbox"],input[type="radio"]{border:1px solid #ccc;} .form-horizontal .control-label{float:none;width:auto;padding-top:0;text-align:left;} .form-horizontal .controls{margin-left:0;} .form-horizontal .control-list{padding-top:0;} .form-horizontal .form-actions{padding-left:10px;padding-right:10px;} .media .pull-left,.media .pull-right{float:none;display:block;margin-bottom:10px;} .media-object{margin-right:0;margin-left:0;} .modal{top:10px;left:10px;right:10px;} .modal-header .close{padding:10px;margin:-10px;} .carousel-caption{position:static;}}@media (min-width:768px) and (max-width:979px){.row{margin-left:-20px;*zoom:1;}.row:before,.row:after{display:table;content:"";line-height:0;} .row:after{clear:both;} [class*="span"]{float:left;min-height:1px;margin-left:20px;} .container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:724px;} .span12{width:724px;} .span11{width:662px;} .span10{width:600px;} .span9{width:538px;} .span8{width:476px;} .span7{width:414px;} .span6{width:352px;} .span5{width:290px;} .span4{width:228px;} .span3{width:166px;} .span2{width:104px;} .span1{width:42px;} .offset12{margin-left:764px;} .offset11{margin-left:702px;} .offset10{margin-left:640px;} .offset9{margin-left:578px;} .offset8{margin-left:516px;} .offset7{margin-left:454px;} .offset6{margin-left:392px;} .offset5{margin-left:330px;} .offset4{margin-left:268px;} .offset3{margin-left:206px;} .offset2{margin-left:144px;} .offset1{margin-left:82px;} .row-fluid{width:100%;*zoom:1;}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0;} .row-fluid:after{clear:both;} .row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.7624309392265194%;*margin-left:2.709239449864817%;} .row-fluid [class*="span"]:first-child{margin-left:0;} .row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.7624309392265194%;} .row-fluid .span12{width:100%;*width:99.94680851063829%;} .row-fluid .span11{width:91.43646408839778%;*width:91.38327259903608%;} .row-fluid .span10{width:82.87292817679558%;*width:82.81973668743387%;} .row-fluid .span9{width:74.30939226519337%;*width:74.25620077583166%;} .row-fluid .span8{width:65.74585635359117%;*width:65.69266486422946%;} .row-fluid .span7{width:57.18232044198895%;*width:57.12912895262725%;} .row-fluid .span6{width:48.61878453038674%;*width:48.56559304102504%;} .row-fluid .span5{width:40.05524861878453%;*width:40.00205712942283%;} .row-fluid .span4{width:31.491712707182323%;*width:31.43852121782062%;} .row-fluid .span3{width:22.92817679558011%;*width:22.87498530621841%;} .row-fluid .span2{width:14.3646408839779%;*width:14.311449394616199%;} .row-fluid .span1{width:5.801104972375691%;*width:5.747913483013988%;} .row-fluid .offset12{margin-left:105.52486187845304%;*margin-left:105.41847889972962%;} .row-fluid .offset12:first-child{margin-left:102.76243093922652%;*margin-left:102.6560479605031%;} .row-fluid .offset11{margin-left:96.96132596685082%;*margin-left:96.8549429881274%;} .row-fluid .offset11:first-child{margin-left:94.1988950276243%;*margin-left:94.09251204890089%;} .row-fluid .offset10{margin-left:88.39779005524862%;*margin-left:88.2914070765252%;} .row-fluid .offset10:first-child{margin-left:85.6353591160221%;*margin-left:85.52897613729868%;} .row-fluid .offset9{margin-left:79.8342541436464%;*margin-left:79.72787116492299%;} .row-fluid .offset9:first-child{margin-left:77.07182320441989%;*margin-left:76.96544022569647%;} .row-fluid .offset8{margin-left:71.2707182320442%;*margin-left:71.16433525332079%;} .row-fluid .offset8:first-child{margin-left:68.50828729281768%;*margin-left:68.40190431409427%;} .row-fluid .offset7{margin-left:62.70718232044199%;*margin-left:62.600799341718584%;} .row-fluid .offset7:first-child{margin-left:59.94475138121547%;*margin-left:59.838368402492065%;} .row-fluid .offset6{margin-left:54.14364640883978%;*margin-left:54.037263430116376%;} .row-fluid .offset6:first-child{margin-left:51.38121546961326%;*margin-left:51.27483249088986%;} .row-fluid .offset5{margin-left:45.58011049723757%;*margin-left:45.47372751851417%;} .row-fluid .offset5:first-child{margin-left:42.81767955801105%;*margin-left:42.71129657928765%;} .row-fluid .offset4{margin-left:37.01657458563536%;*margin-left:36.91019160691196%;} .row-fluid .offset4:first-child{margin-left:34.25414364640884%;*margin-left:34.14776066768544%;} .row-fluid .offset3{margin-left:28.45303867403315%;*margin-left:28.346655695309746%;} .row-fluid .offset3:first-child{margin-left:25.69060773480663%;*margin-left:25.584224756083227%;} .row-fluid .offset2{margin-left:19.88950276243094%;*margin-left:19.783119783707537%;} .row-fluid .offset2:first-child{margin-left:17.12707182320442%;*margin-left:17.02068884448102%;} .row-fluid .offset1{margin-left:11.32596685082873%;*margin-left:11.219583872105325%;} .row-fluid .offset1:first-child{margin-left:8.56353591160221%;*margin-left:8.457152932878806%;} input,textarea,.uneditable-input{margin-left:0;} .controls-row [class*="span"]+[class*="span"]{margin-left:20px;} input.span12, textarea.span12, .uneditable-input.span12{width:710px;} input.span11, textarea.span11, .uneditable-input.span11{width:648px;} input.span10, textarea.span10, .uneditable-input.span10{width:586px;} input.span9, textarea.span9, .uneditable-input.span9{width:524px;} input.span8, textarea.span8, .uneditable-input.span8{width:462px;} input.span7, textarea.span7, .uneditable-input.span7{width:400px;} input.span6, textarea.span6, .uneditable-input.span6{width:338px;} input.span5, textarea.span5, .uneditable-input.span5{width:276px;} input.span4, textarea.span4, .uneditable-input.span4{width:214px;} input.span3, textarea.span3, .uneditable-input.span3{width:152px;} input.span2, textarea.span2, .uneditable-input.span2{width:90px;} input.span1, textarea.span1, .uneditable-input.span1{width:28px;}}@media (min-width:1200px){.row{margin-left:-30px;*zoom:1;}.row:before,.row:after{display:table;content:"";line-height:0;} .row:after{clear:both;} [class*="span"]{float:left;min-height:1px;margin-left:30px;} .container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:1170px;} .span12{width:1170px;} .span11{width:1070px;} .span10{width:970px;} .span9{width:870px;} .span8{width:770px;} .span7{width:670px;} .span6{width:570px;} .span5{width:470px;} .span4{width:370px;} .span3{width:270px;} .span2{width:170px;} .span1{width:70px;} .offset12{margin-left:1230px;} .offset11{margin-left:1130px;} .offset10{margin-left:1030px;} .offset9{margin-left:930px;} .offset8{margin-left:830px;} .offset7{margin-left:730px;} .offset6{margin-left:630px;} .offset5{margin-left:530px;} .offset4{margin-left:430px;} .offset3{margin-left:330px;} .offset2{margin-left:230px;} .offset1{margin-left:130px;} .row-fluid{width:100%;*zoom:1;}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0;} .row-fluid:after{clear:both;} .row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.564102564102564%;*margin-left:2.5109110747408616%;} .row-fluid [class*="span"]:first-child{margin-left:0;} .row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.564102564102564%;} .row-fluid .span12{width:100%;*width:99.94680851063829%;} .row-fluid .span11{width:91.45299145299145%;*width:91.39979996362975%;} .row-fluid .span10{width:82.90598290598291%;*width:82.8527914166212%;} .row-fluid .span9{width:74.35897435897436%;*width:74.30578286961266%;} .row-fluid .span8{width:65.81196581196582%;*width:65.75877432260411%;} .row-fluid .span7{width:57.26495726495726%;*width:57.21176577559556%;} .row-fluid .span6{width:48.717948717948715%;*width:48.664757228587014%;} .row-fluid .span5{width:40.17094017094017%;*width:40.11774868157847%;} .row-fluid .span4{width:31.623931623931625%;*width:31.570740134569924%;} .row-fluid .span3{width:23.076923076923077%;*width:23.023731587561375%;} .row-fluid .span2{width:14.52991452991453%;*width:14.476723040552828%;} .row-fluid .span1{width:5.982905982905983%;*width:5.929714493544281%;} .row-fluid .offset12{margin-left:105.12820512820512%;*margin-left:105.02182214948171%;} .row-fluid .offset12:first-child{margin-left:102.56410256410257%;*margin-left:102.45771958537915%;} .row-fluid .offset11{margin-left:96.58119658119658%;*margin-left:96.47481360247316%;} .row-fluid .offset11:first-child{margin-left:94.01709401709402%;*margin-left:93.91071103837061%;} .row-fluid .offset10{margin-left:88.03418803418803%;*margin-left:87.92780505546462%;} .row-fluid .offset10:first-child{margin-left:85.47008547008548%;*margin-left:85.36370249136206%;} .row-fluid .offset9{margin-left:79.48717948717949%;*margin-left:79.38079650845607%;} .row-fluid .offset9:first-child{margin-left:76.92307692307693%;*margin-left:76.81669394435352%;} .row-fluid .offset8{margin-left:70.94017094017094%;*margin-left:70.83378796144753%;} .row-fluid .offset8:first-child{margin-left:68.37606837606839%;*margin-left:68.26968539734497%;} .row-fluid .offset7{margin-left:62.393162393162385%;*margin-left:62.28677941443899%;} .row-fluid .offset7:first-child{margin-left:59.82905982905982%;*margin-left:59.72267685033642%;} .row-fluid .offset6{margin-left:53.84615384615384%;*margin-left:53.739770867430444%;} .row-fluid .offset6:first-child{margin-left:51.28205128205128%;*margin-left:51.175668303327875%;} .row-fluid .offset5{margin-left:45.299145299145295%;*margin-left:45.1927623204219%;} .row-fluid .offset5:first-child{margin-left:42.73504273504273%;*margin-left:42.62865975631933%;} .row-fluid .offset4{margin-left:36.75213675213675%;*margin-left:36.645753773413354%;} .row-fluid .offset4:first-child{margin-left:34.18803418803419%;*margin-left:34.081651209310785%;} .row-fluid .offset3{margin-left:28.205128205128204%;*margin-left:28.0987452264048%;} .row-fluid .offset3:first-child{margin-left:25.641025641025642%;*margin-left:25.53464266230224%;} .row-fluid .offset2{margin-left:19.65811965811966%;*margin-left:19.551736679396257%;} .row-fluid .offset2:first-child{margin-left:17.094017094017094%;*margin-left:16.98763411529369%;} .row-fluid .offset1{margin-left:11.11111111111111%;*margin-left:11.004728132387708%;} .row-fluid .offset1:first-child{margin-left:8.547008547008547%;*margin-left:8.440625568285142%;} input,textarea,.uneditable-input{margin-left:0;} .controls-row [class*="span"]+[class*="span"]{margin-left:30px;} input.span12, textarea.span12, .uneditable-input.span12{width:1156px;} input.span11, textarea.span11, .uneditable-input.span11{width:1056px;} input.span10, textarea.span10, .uneditable-input.span10{width:956px;} input.span9, textarea.span9, .uneditable-input.span9{width:856px;} input.span8, textarea.span8, .uneditable-input.span8{width:756px;} input.span7, textarea.span7, .uneditable-input.span7{width:656px;} input.span6, textarea.span6, .uneditable-input.span6{width:556px;} input.span5, textarea.span5, .uneditable-input.span5{width:456px;} input.span4, textarea.span4, .uneditable-input.span4{width:356px;} input.span3, textarea.span3, .uneditable-input.span3{width:256px;} input.span2, textarea.span2, .uneditable-input.span2{width:156px;} input.span1, textarea.span1, .uneditable-input.span1{width:56px;} .thumbnails{margin-left:-30px;} .thumbnails>li{margin-left:30px;} .row-fluid .thumbnails{margin-left:0;}}@media (max-width:979px){body{padding-top:0;} .navbar-fixed-top,.navbar-fixed-bottom{position:static;} .navbar-fixed-top{margin-bottom:20px;} .navbar-fixed-bottom{margin-top:20px;} .navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding:5px;} .navbar .container{width:auto;padding:0;} .navbar .brand{padding-left:10px;padding-right:10px;margin:0 0 0 -5px;} .nav-collapse{clear:both;} .nav-collapse .nav{float:none;margin:0 0 10px;} .nav-collapse .nav>li{float:none;} .nav-collapse .nav>li>a{margin-bottom:2px;} .nav-collapse .nav>.divider-vertical{display:none;} .nav-collapse .nav .nav-header{color:#777777;text-shadow:none;} .nav-collapse .nav>li>a,.nav-collapse .dropdown-menu a{padding:9px 15px;font-weight:bold;color:#777777;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} .nav-collapse .btn{padding:4px 10px 4px;font-weight:normal;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} .nav-collapse .dropdown-menu li+li a{margin-bottom:2px;} .nav-collapse .nav>li>a:hover,.nav-collapse .dropdown-menu a:hover{background-color:#f2f2f2;} .navbar-inverse .nav-collapse .nav>li>a,.navbar-inverse .nav-collapse .dropdown-menu a{color:#999999;} .navbar-inverse .nav-collapse .nav>li>a:hover,.navbar-inverse .nav-collapse .dropdown-menu a:hover{background-color:#111111;} .nav-collapse.in .btn-group{margin-top:5px;padding:0;} .nav-collapse .dropdown-menu{position:static;top:auto;left:auto;float:none;display:none;max-width:none;margin:0 15px;padding:0;background-color:transparent;border:none;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} .nav-collapse .open>.dropdown-menu{display:block;} .nav-collapse .dropdown-menu:before,.nav-collapse .dropdown-menu:after{display:none;} .nav-collapse .dropdown-menu .divider{display:none;} .nav-collapse .nav>li>.dropdown-menu:before,.nav-collapse .nav>li>.dropdown-menu:after{display:none;} .nav-collapse .navbar-form,.nav-collapse .navbar-search{float:none;padding:10px 15px;margin:10px 0;border-top:1px solid #f2f2f2;border-bottom:1px solid #f2f2f2;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);} .navbar-inverse .nav-collapse .navbar-form,.navbar-inverse .nav-collapse .navbar-search{border-top-color:#111111;border-bottom-color:#111111;} .navbar .nav-collapse .nav.pull-right{float:none;margin-left:0;} .nav-collapse,.nav-collapse.collapse{overflow:hidden;height:0;} .navbar .btn-navbar{display:block;} .navbar-static .navbar-inner{padding-left:10px;padding-right:10px;}}@media (min-width:980px){.nav-collapse.collapse{height:auto !important;overflow:visible !important;}} +]]>GET/resources/css/bootstrap.mincssHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0 +
    Refererhttp://zero.webappsecurity.com/
    Hostzero.webappsecurity.com
    Accept*/*
    Accept-Languageen-US,en;q=0.5
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoScriptEngine="Gecko";Category="Crawl";SID="44E3412C3C3696A59B5B64AC4DBE596D";PSID="306E42D0F653E7CFA6720D7F15AE506B";SessionType="Crawl";CrawlType="ScriptInclude";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";tht="21";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="637f858a";
    X-Request-Memorid="115df203";sc="1";thid="49";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0
    HTTP/1.1200OKli,ol.inline >li{display:inline-block;padding-left:5px;padding-right:5px;} +dl{margin-bottom:20px;} +dt,dd{line-height:20px;} +dt{font-weight:bold;} +dd{margin-left:10px;} +.dl-horizontal{*zoom:1;}.dl-horizontal:before,.dl-horizontal:after{display:table;content:"";line-height:0;} +.dl-horizontal:after{clear:both;} +.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;} +.dl-horizontal dd{margin-left:180px;} +hr{margin:20px 0;border:0;border-top:1px solid #eeeeee;border-bottom:1px solid #ffffff;} +abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #999999;} +abbr.initialism{font-size:90%;text-transform:uppercase;} +blockquote{padding:0 0 0 15px;margin:0 0 20px;border-left:5px solid #eeeeee;}blockquote p{margin-bottom:0;font-size:16px;font-weight:300;line-height:25px;} +blockquote small{display:block;line-height:20px;color:#999999;}blockquote small:before{content:'\2014 \00A0';} +blockquote.pull-right{float:right;padding-right:15px;padding-left:0;border-right:5px solid #eeeeee;border-left:0;}blockquote.pull-right p,blockquote.pull-right small{text-align:right;} +blockquote.pull-right small:before{content:'';} +blockquote.pull-right small:after{content:'\00A0 \2014';} +q:before,q:after,blockquote:before,blockquote:after{content:"";} +address{display:block;margin-bottom:20px;font-style:normal;line-height:20px;} +code,pre{padding:0 3px 2px;font-family:Monaco,Menlo,Consolas,"Courier New",monospace;font-size:12px;color:#333333;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} +code{padding:2px 4px;color:#d14;background-color:#f7f7f9;border:1px solid #e1e1e8;white-space:nowrap;} +pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:20px;word-break:break-all;word-wrap:break-word;white-space:pre;white-space:pre-wrap;background-color:#f5f5f5;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.15);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}pre.prettyprint{margin-bottom:20px;} +pre code{padding:0;color:inherit;white-space:pre;white-space:pre-wrap;background-color:transparent;border:0;} +.pre-scrollable{max-height:340px;overflow-y:scroll;} +.label,.badge{display:inline-block;padding:2px 4px;font-size:11.844px;font-weight:bold;line-height:14px;color:#ffffff;vertical-align:baseline;white-space:nowrap;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#999999;} +.label{-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} +.badge{padding-left:9px;padding-right:9px;-webkit-border-radius:9px;-moz-border-radius:9px;border-radius:9px;} +.label:empty,.badge:empty{display:none;} +a.label:hover,a.badge:hover{color:#ffffff;text-decoration:none;cursor:pointer;} +.label-important,.badge-important{background-color:#b94a48;} +.label-important[href],.badge-important[href]{background-color:#953b39;} +.label-warning,.badge-warning{background-color:#f89406;} +.label-warning[href],.badge-warning[href]{background-color:#c67605;} +.label-success,.badge-success{background-color:#468847;} +.label-success[href],.badge-success[href]{background-color:#356635;} +.label-info,.badge-info{background-color:#3a87ad;} +.label-info[href],.badge-info[href]{background-color:#2d6987;} +.label-inverse,.badge-inverse{background-color:#333333;} +.label-inverse[href],.badge-inverse[href]{background-color:#1a1a1a;} +.btn .label,.btn .badge{position:relative;top:-1px;} +.btn-mini .label,.btn-mini .badge{top:0;} +table{max-width:100%;background-color:transparent;border-collapse:collapse;border-spacing:0;} +.table{width:100%;margin-bottom:20px;}.table th,.table td{padding:8px;line-height:20px;text-align:left;vertical-align:top;border-top:1px solid #dddddd;} +.table th{font-weight:bold;} +.table thead th{vertical-align:bottom;} +.table caption+thead tr:first-child th,.table caption+thead tr:first-child td,.table colgroup+thead tr:first-child th,.table colgroup+thead tr:first-child td,.table thead:first-child tr:first-child th,.table thead:first-child tr:first-child td{border-top:0;} +.table tbody+tbody{border-top:2px solid #dddddd;} +.table .table{background-color:#ffffff;} +.table-condensed th,.table-condensed td{padding:4px 5px;} +.table-bordered{border:1px solid #dddddd;border-collapse:separate;*border-collapse:collapse;border-left:0;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}.table-bordered th,.table-bordered td{border-left:1px solid #dddddd;} +.table-bordered caption+thead tr:first-child th,.table-bordered caption+tbody tr:first-child th,.table-bordered caption+tbody tr:first-child td,.table-bordered colgroup+thead tr:first-child th,.table-bordered colgroup+tbody tr:first-child th,.table-bordered colgroup+tbody tr:first-child td,.table-bordered thead:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child td{border-top:0;} +.table-bordered thead:first-child tr:first-child>th:first-child,.table-bordered tbody:first-child tr:first-child>td:first-child{-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;} +.table-bordered thead:first-child tr:first-child>th:last-child,.table-bordered tbody:first-child tr:first-child>td:last-child{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;} +.table-bordered thead:last-child tr:last-child>th:first-child,.table-bordered tbody:last-child tr:last-child>td:first-child,.table-bordered tfoot:last-child tr:last-child>td:first-child{-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px;} +.table-bordered thead:last-child tr:last-child>th:last-child,.table-bordered tbody:last-child tr:last-child>td:last-child,.table-bordered tfoot:last-child tr:last-child>td:last-child{-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;} +.table-bordered tfoot+tbody:last-child tr:last-child td:first-child{-webkit-border-bottom-left-radius:0;-moz-border-radius-bottomleft:0;border-bottom-left-radius:0;} +.table-bordered tfoot+tbody:last-child tr:last-child td:last-child{-webkit-border-bottom-right-radius:0;-moz-border-radius-bottomright:0;border-bottom-right-radius:0;} +.table-bordered caption+thead tr:first-child th:first-child,.table-bordered caption+tbody tr:first-child td:first-child,.table-bordered colgroup+thead tr:first-child th:first-child,.table-bordered colgroup+tbody tr:first-child td:first-child{-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;} +.table-bordered caption+thead tr:first-child th:last-child,.table-bordered caption+tbody tr:first-child td:last-child,.table-bordered colgroup+thead tr:first-child th:last-child,.table-bordered colgroup+tbody tr:first-child td:last-child{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;} +.table-striped tbody>tr:nth-child(odd)>td,.table-striped tbody>tr:nth-child(odd)>th{background-color:#f9f9f9;} +.table-hover tbody tr:hover td,.table-hover tbody tr:hover th{background-color:#f5f5f5;} +table td[class*="span"],table th[class*="span"],.row-fluid table td[class*="span"],.row-fluid table th[class*="span"]{display:table-cell;float:none;margin-left:0;} +.table td.span1,.table th.span1{float:none;width:44px;margin-left:0;} +.table td.span2,.table th.span2{float:none;width:124px;margin-left:0;} +.table td.span3,.table th.span3{float:none;width:204px;margin-left:0;} +.table td.span4,.table th.span4{float:none;width:284px;margin-left:0;} +.table td.span5,.table th.span5{float:none;width:364px;margin-left:0;} +.table td.span6,.table th.span6{float:none;width:444px;margin-left:0;} +.table td.span7,.table th.span7{float:none;width:524px;margin-left:0;} +.table td.span8,.table th.span8{float:none;width:604px;margin-left:0;} +.table td.span9,.table th.span9{float:none;width:684px;margin-left:0;} +.table td.span10,.table th.span10{float:none;width:764px;margin-left:0;} +.table td.span11,.table th.span11{float:none;width:844px;margin-left:0;} +.table td.span12,.table th.span12{float:none;width:924px;margin-left:0;} +.table tbody tr.success td{background-color:#dff0d8;} +.table tbody tr.error td{background-color:#f2dede;} +.table tbody tr.warning td{background-color:#fcf8e3;} +.table tbody tr.info td{background-color:#d9edf7;} +.table-hover tbody tr.success:hover td{background-color:#d0e9c6;} +.table-hover tbody tr.error:hover td{background-color:#ebcccc;} +.table-hover tbody tr.warning:hover td{background-color:#faf2cc;} +.table-hover tbody tr.info:hover td{background-color:#c4e3f3;} +form{margin:0 0 20px;} +fieldset{padding:0;margin:0;border:0;} +legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:40px;color:#333333;border:0;border-bottom:1px solid #e5e5e5;}legend small{font-size:15px;color:#999999;} +label,input,button,select,textarea{font-size:14px;font-weight:normal;line-height:20px;} +input,button,select,textarea{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;} +label{display:block;margin-bottom:5px;} +select,textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{display:inline-block;height:20px;padding:4px 6px;margin-bottom:10px;font-size:14px;line-height:20px;color:#555555;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;vertical-align:middle;} +input,textarea,.uneditable-input{width:206px;} +textarea{height:auto;} +textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{background-color:#ffffff;border:1px solid #cccccc;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-webkit-transition:border linear .2s, box-shadow linear .2s;-moz-transition:border linear .2s, box-shadow linear .2s;-o-transition:border linear .2s, box-shadow linear .2s;transition:border linear .2s, box-shadow linear .2s;}textarea:focus,input[type="text"]:focus,input[type="password"]:focus,input[type="datetime"]:focus,input[type="datetime-local"]:focus,input[type="date"]:focus,input[type="month"]:focus,input[type="time"]:focus,input[type="week"]:focus,input[type="number"]:focus,input[type="email"]:focus,input[type="url"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="color"]:focus,.uneditable-input:focus{border-color:rgba(82, 168, 236, 0.8);outline:0;outline:thin dotted \9;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);} +input[type="radio"],input[type="checkbox"]{margin:4px 0 0;*margin-top:0;margin-top:1px \9;line-height:normal;} +input[type="file"],input[type="image"],input[type="submit"],input[type="reset"],input[type="button"],input[type="radio"],input[type="checkbox"]{width:auto;} +select,input[type="file"]{height:30px;*margin-top:4px;line-height:30px;} +select{width:220px;border:1px solid #cccccc;background-color:#ffffff;} +select[multiple],select[size]{height:auto;} +select:focus,input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;} +.uneditable-input,.uneditable-textarea{color:#999999;background-color:#fcfcfc;border-color:#cccccc;-webkit-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);-moz-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);cursor:not-allowed;} +.uneditable-input{overflow:hidden;white-space:nowrap;} +.uneditable-textarea{width:auto;height:auto;} +input:-moz-placeholder,textarea:-moz-placeholder{color:#999999;} +input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#999999;} +input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#999999;} +.radio,.checkbox{min-height:20px;padding-left:20px;} +.radio input[type="radio"],.checkbox input[type="checkbox"]{float:left;margin-left:-20px;} +.controls>.radio:first-child,.controls>.checkbox:first-child{padding-top:5px;} +.radio.inline,.checkbox.inline{display:inline-block;padding-top:5px;margin-bottom:0;vertical-align:middle;} +.radio.inline+.radio.inline,.checkbox.inline+.checkbox.inline{margin-left:10px;} +.input-mini{width:60px;} +.input-small{width:90px;} +.input-medium{width:150px;} +.input-large{width:210px;} +.input-xlarge{width:270px;} +.input-xxlarge{width:530px;} +input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"]{float:none;margin-left:0;} +.input-append input[class*="span"],.input-append .uneditable-input[class*="span"],.input-prepend input[class*="span"],.input-prepend .uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"],.row-fluid .input-prepend [class*="span"],.row-fluid .input-append [class*="span"]{display:inline-block;} +input,textarea,.uneditable-input{margin-left:0;} +.controls-row [class*="span"]+[class*="span"]{margin-left:20px;} +input.span12, textarea.span12, .uneditable-input.span12{width:926px;} +input.span11, textarea.span11, .uneditable-input.span11{width:846px;} +input.span10, textarea.span10, .uneditable-input.span10{width:766px;} +input.span9, textarea.span9, .uneditable-input.span9{width:686px;} +input.span8, textarea.span8, .uneditable-input.span8{width:606px;} +input.span7, textarea.span7, .uneditable-input.span7{width:526px;} +input.span6, textarea.span6, .uneditable-input.span6{width:446px;} +input.span5, textarea.span5, .uneditable-input.span5{width:366px;} +input.span4, textarea.span4, .uneditable-input.span4{width:286px;} +input.span3, textarea.span3, .uneditable-input.span3{width:206px;} +input.span2, textarea.span2, .uneditable-input.span2{width:126px;} +input.span1, textarea.span1, .uneditable-input.span1{width:46px;} +.controls-row{*zoom:1;}.controls-row:before,.controls-row:after{display:table;content:"";line-height:0;} +.controls-row:after{clear:both;} +.controls-row [class*="span"],.row-fluid .controls-row [class*="span"]{float:left;} +.controls-row .checkbox[class*="span"],.controls-row .radio[class*="span"]{padding-top:5px;} +input[disabled],select[disabled],textarea[disabled],input[readonly],select[readonly],textarea[readonly]{cursor:not-allowed;background-color:#eeeeee;} +input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"][readonly],input[type="checkbox"][readonly]{background-color:transparent;} +.control-group.warning .control-label,.control-group.warning .help-block,.control-group.warning .help-inline{color:#c09853;} +.control-group.warning .checkbox,.control-group.warning .radio,.control-group.warning input,.control-group.warning select,.control-group.warning textarea{color:#c09853;} +.control-group.warning input,.control-group.warning select,.control-group.warning textarea{border-color:#c09853;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);}.control-group.warning input:focus,.control-group.warning select:focus,.control-group.warning textarea:focus{border-color:#a47e3c;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #dbc59e;-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #dbc59e;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #dbc59e;} +.control-group.warning .input-prepend .add-on,.control-group.warning .input-append .add-on{color:#c09853;background-color:#fcf8e3;border-color:#c09853;} +.control-group.error .control-label,.control-group.error .help-block,.control-group.error .help-inline{color:#b94a48;} +.control-group.error .checkbox,.control-group.error .radio,.control-group.error input,.control-group.error select,.control-group.error textarea{color:#b94a48;} +.control-group.error input,.control-group.error select,.control-group.error textarea{border-color:#b94a48;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);}.control-group.error input:focus,.control-group.error select:focus,.control-group.error textarea:focus{border-color:#953b39;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #d59392;-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #d59392;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #d59392;} +.control-group.error .input-prepend .add-on,.control-group.error .input-append .add-on{color:#b94a48;background-color:#f2dede;border-color:#b94a48;} +.control-group.success .control-label,.control-group.success .help-block,.control-group.success .help-inline{color:#468847;} +.control-group.success .checkbox,.control-group.success .radio,.control-group.success input,.control-group.success select,.control-group.success textarea{color:#468847;} +.control-group.success input,.control-group.success select,.control-group.success textarea{border-color:#468847;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);}.control-group.success input:focus,.control-group.success select:focus,.control-group.success textarea:focus{border-color:#356635;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7aba7b;-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7aba7b;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7aba7b;} +.control-group.success .input-prepend .add-on,.control-group.success .input-append .add-on{color:#468847;background-color:#dff0d8;border-color:#468847;} +.control-group.info .control-label,.control-group.info .help-block,.control-group.info .help-inline{color:#3a87ad;} +.control-group.info .checkbox,.control-group.info .radio,.control-group.info input,.control-group.info select,.control-group.info textarea{color:#3a87ad;} +.control-group.info input,.control-group.info select,.control-group.info textarea{border-color:#3a87ad;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);}.control-group.info input:focus,.control-group.info select:focus,.control-group.info textarea:focus{border-color:#2d6987;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7ab5d3;-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7ab5d3;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7ab5d3;} +.control-group.info .input-prepend .add-on,.control-group.info .input-append .add-on{color:#3a87ad;background-color:#d9edf7;border-color:#3a87ad;} +input:focus:invalid,textarea:focus:invalid,select:focus:invalid{color:#b94a48;border-color:#ee5f5b;}input:focus:invalid:focus,textarea:focus:invalid:focus,select:focus:invalid:focus{border-color:#e9322d;-webkit-box-shadow:0 0 6px #f8b9b7;-moz-box-shadow:0 0 6px #f8b9b7;box-shadow:0 0 6px #f8b9b7;} +.form-actions{padding:19px 20px 20px;margin-top:20px;margin-bottom:20px;background-color:#f5f5f5;border-top:1px solid #e5e5e5;*zoom:1;}.form-actions:before,.form-actions:after{display:table;content:"";line-height:0;} +.form-actions:after{clear:both;} +.help-block,.help-inline{color:#595959;} +.help-block{display:block;margin-bottom:10px;} +.help-inline{display:inline-block;*display:inline;*zoom:1;vertical-align:middle;padding-left:5px;} +.input-append,.input-prepend{margin-bottom:5px;font-size:0;white-space:nowrap;}.input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input,.input-append .dropdown-menu,.input-prepend .dropdown-menu{font-size:14px;} +.input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input{position:relative;margin-bottom:0;*margin-left:0;vertical-align:top;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;}.input-append input:focus,.input-prepend input:focus,.input-append select:focus,.input-prepend select:focus,.input-append .uneditable-input:focus,.input-prepend .uneditable-input:focus{z-index:2;} +.input-append .add-on,.input-prepend .add-on{display:inline-block;width:auto;height:20px;min-width:16px;padding:4px 5px;font-size:14px;font-weight:normal;line-height:20px;text-align:center;text-shadow:0 1px 0 #ffffff;background-color:#eeeeee;border:1px solid #ccc;} +.input-append .add-on,.input-prepend .add-on,.input-append .btn,.input-prepend .btn,.input-append .btn-group>.dropdown-toggle,.input-prepend .btn-group>.dropdown-toggle{vertical-align:top;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} +.input-append .active,.input-prepend .active{background-color:#a9dba9;border-color:#46a546;} +.input-prepend .add-on,.input-prepend .btn{margin-right:-1px;} +.input-prepend .add-on:first-child,.input-prepend .btn:first-child{-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;} +.input-append input,.input-append select,.input-append .uneditable-input{-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;}.input-append input+.btn-group .btn:last-child,.input-append select+.btn-group .btn:last-child,.input-append .uneditable-input+.btn-group .btn:last-child{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} +.input-append .add-on,.input-append .btn,.input-append .btn-group{margin-left:-1px;} +.input-append .add-on:last-child,.input-append .btn:last-child,.input-append .btn-group:last-child>.dropdown-toggle{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} +.input-prepend.input-append input,.input-prepend.input-append select,.input-prepend.input-append .uneditable-input{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}.input-prepend.input-append input+.btn-group .btn,.input-prepend.input-append select+.btn-group .btn,.input-prepend.input-append .uneditable-input+.btn-group .btn{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} +.input-prepend.input-append .add-on:first-child,.input-prepend.input-append .btn:first-child{margin-right:-1px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;} +.input-prepend.input-append .add-on:last-child,.input-prepend.input-append .btn:last-child{margin-left:-1px;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} +.input-prepend.input-append .btn-group:first-child{margin-left:0;} +input.search-query{padding-right:14px;padding-right:4px \9;padding-left:14px;padding-left:4px \9;margin-bottom:0;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px;} +.form-search .input-append .search-query,.form-search .input-prepend .search-query{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} +.form-search .input-append .search-query{-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px;} +.form-search .input-append .btn{-webkit-border-radius:0 14px 14px 0;-moz-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0;} +.form-search .input-prepend .search-query{-webkit-border-radius:0 14px 14px 0;-moz-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0;} +.form-search .input-prepend .btn{-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px;} +.form-search input,.form-inline input,.form-horizontal input,.form-search textarea,.form-inline textarea,.form-horizontal textarea,.form-search select,.form-inline select,.form-horizontal select,.form-search .help-inline,.form-inline .help-inline,.form-horizontal .help-inline,.form-search .uneditable-input,.form-inline .uneditable-input,.form-horizontal .uneditable-input,.form-search .input-prepend,.form-inline .input-prepend,.form-horizontal .input-prepend,.form-search .input-append,.form-inline .input-append,.form-horizontal .input-append{display:inline-block;*display:inline;*zoom:1;margin-bottom:0;vertical-align:middle;} +.form-search .hide,.form-inline .hide,.form-horizontal .hide{display:none;} +.form-search label,.form-inline label,.form-search .btn-group,.form-inline .btn-group{display:inline-block;} +.form-search .input-append,.form-inline .input-append,.form-search .input-prepend,.form-inline .input-prepend{margin-bottom:0;} +.form-search .radio,.form-search .checkbox,.form-inline .radio,.form-inline .checkbox{padding-left:0;margin-bottom:0;vertical-align:middle;} +.form-search .radio input[type="radio"],.form-search .checkbox input[type="checkbox"],.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{float:left;margin-right:3px;margin-left:0;} +.control-group{margin-bottom:10px;} +legend+.control-group{margin-top:20px;-webkit-margin-top-collapse:separate;} +.form-horizontal .control-group{margin-bottom:20px;*zoom:1;}.form-horizontal .control-group:before,.form-horizontal .control-group:after{display:table;content:"";line-height:0;} +.form-horizontal .control-group:after{clear:both;} +.form-horizontal .control-label{float:left;width:160px;padding-top:5px;text-align:right;} +.form-horizontal .controls{*display:inline-block;*padding-left:20px;margin-left:180px;*margin-left:0;}.form-horizontal .controls:first-child{*padding-left:180px;} +.form-horizontal .help-block{margin-bottom:0;} +.form-horizontal input+.help-block,.form-horizontal select+.help-block,.form-horizontal textarea+.help-block,.form-horizontal .uneditable-input+.help-block,.form-horizontal .input-prepend+.help-block,.form-horizontal .input-append+.help-block{margin-top:10px;} +.form-horizontal .form-actions{padding-left:180px;} +.btn{display:inline-block;*display:inline;*zoom:1;padding:4px 12px;margin-bottom:0;font-size:14px;line-height:20px;text-align:center;vertical-align:middle;cursor:pointer;color:#333333;text-shadow:0 1px 1px rgba(255, 255, 255, 0.75);background-color:#f5f5f5;background-image:-moz-linear-gradient(top, #ffffff, #e6e6e6);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));background-image:-webkit-linear-gradient(top, #ffffff, #e6e6e6);background-image:-o-linear-gradient(top, #ffffff, #e6e6e6);background-image:linear-gradient(to bottom, #ffffff, #e6e6e6);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#e6e6e6;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);border:1px solid #bbbbbb;*border:0;border-bottom-color:#a2a2a2;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;*margin-left:.3em;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);}.btn:hover,.btn:active,.btn.active,.btn.disabled,.btn[disabled]{color:#333333;background-color:#e6e6e6;*background-color:#d9d9d9;} +.btn:active,.btn.active{background-color:#cccccc \9;} +.btn:first-child{*margin-left:0;} +.btn:hover{color:#333333;text-decoration:none;background-position:0 -15px;-webkit-transition:background-position 0.1s linear;-moz-transition:background-position 0.1s linear;-o-transition:background-position 0.1s linear;transition:background-position 0.1s linear;} +.btn:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;} +.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);} +.btn.disabled,.btn[disabled]{cursor:default;background-image:none;opacity:0.65;filter:alpha(opacity=65);-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} +.btn-large{padding:11px 19px;font-size:17.5px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;} +.btn-large [class^="icon-"],.btn-large [class*=" icon-"]{margin-top:4px;} +.btn-small{padding:2px 10px;font-size:11.9px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} +.btn-small [class^="icon-"],.btn-small [class*=" icon-"]{margin-top:0;} +.btn-mini [class^="icon-"],.btn-mini [class*=" icon-"]{margin-top:-1px;} +.btn-mini{padding:0 6px;font-size:10.5px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} +.btn-block{display:block;width:100%;padding-left:0;padding-right:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} +.btn-block+.btn-block{margin-top:5px;} +input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%;} +.btn-primary.active,.btn-warning.active,.btn-danger.active,.btn-success.active,.btn-info.active,.btn-inverse.active{color:rgba(255, 255, 255, 0.75);} +.btn{border-color:#c5c5c5;border-color:rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.25);} +.btn-primary{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#006dcc;background-image:-moz-linear-gradient(top, #0088cc, #0044cc);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));background-image:-webkit-linear-gradient(top, #0088cc, #0044cc);background-image:-o-linear-gradient(top, #0088cc, #0044cc);background-image:linear-gradient(to bottom, #0088cc, #0044cc);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0);border-color:#0044cc #0044cc #002a80;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#0044cc;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-primary:hover,.btn-primary:active,.btn-primary.active,.btn-primary.disabled,.btn-primary[disabled]{color:#ffffff;background-color:#0044cc;*background-color:#003bb3;} +.btn-primary:active,.btn-primary.active{background-color:#003399 \9;} +.btn-warning{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#faa732;background-image:-moz-linear-gradient(top, #fbb450, #f89406);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));background-image:-webkit-linear-gradient(top, #fbb450, #f89406);background-image:-o-linear-gradient(top, #fbb450, #f89406);background-image:linear-gradient(to bottom, #fbb450, #f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);border-color:#f89406 #f89406 #ad6704;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#f89406;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-warning:hover,.btn-warning:active,.btn-warning.active,.btn-warning.disabled,.btn-warning[disabled]{color:#ffffff;background-color:#f89406;*background-color:#df8505;} +.btn-warning:active,.btn-warning.active{background-color:#c67605 \9;} +.btn-danger{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#da4f49;background-image:-moz-linear-gradient(top, #ee5f5b, #bd362f);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));background-image:-webkit-linear-gradient(top, #ee5f5b, #bd362f);background-image:-o-linear-gradient(top, #ee5f5b, #bd362f);background-image:linear-gradient(to bottom, #ee5f5b, #bd362f);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffbd362f', GradientType=0);border-color:#bd362f #bd362f #802420;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#bd362f;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-danger:hover,.btn-danger:active,.btn-danger.active,.btn-danger.disabled,.btn-danger[disabled]{color:#ffffff;background-color:#bd362f;*background-color:#a9302a;} +.btn-danger:active,.btn-danger.active{background-color:#942a25 \9;} +.btn-success{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#5bb75b;background-image:-moz-linear-gradient(top, #62c462, #51a351);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));background-image:-webkit-linear-gradient(top, #62c462, #51a351);background-image:-o-linear-gradient(top, #62c462, #51a351);background-image:linear-gradient(to bottom, #62c462, #51a351);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0);border-color:#51a351 #51a351 #387038;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#51a351;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-success:hover,.btn-success:active,.btn-success.active,.btn-success.disabled,.btn-success[disabled]{color:#ffffff;background-color:#51a351;*background-color:#499249;} +.btn-success:active,.btn-success.active{background-color:#408140 \9;} +.btn-info{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#49afcd;background-image:-moz-linear-gradient(top, #5bc0de, #2f96b4);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));background-image:-webkit-linear-gradient(top, #5bc0de, #2f96b4);background-image:-o-linear-gradient(top, #5bc0de, #2f96b4);background-image:linear-gradient(to bottom, #5bc0de, #2f96b4);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2f96b4', GradientType=0);border-color:#2f96b4 #2f96b4 #1f6377;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#2f96b4;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-info:hover,.btn-info:active,.btn-info.active,.btn-info.disabled,.btn-info[disabled]{color:#ffffff;background-color:#2f96b4;*background-color:#2a85a0;} +.btn-info:active,.btn-info.active{background-color:#24748c \9;} +.btn-inverse{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#363636;background-image:-moz-linear-gradient(top, #444444, #222222);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#444444), to(#222222));background-image:-webkit-linear-gradient(top, #444444, #222222);background-image:-o-linear-gradient(top, #444444, #222222);background-image:linear-gradient(to bottom, #444444, #222222);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff444444', endColorstr='#ff222222', GradientType=0);border-color:#222222 #222222 #000000;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#222222;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-inverse:hover,.btn-inverse:active,.btn-inverse.active,.btn-inverse.disabled,.btn-inverse[disabled]{color:#ffffff;background-color:#222222;*background-color:#151515;} +.btn-inverse:active,.btn-inverse.active{background-color:#080808 \9;} +button.btn,input[type="submit"].btn{*padding-top:3px;*padding-bottom:3px;}button.btn::-moz-focus-inner,input[type="submit"].btn::-moz-focus-inner{padding:0;border:0;} +button.btn.btn-large,input[type="submit"].btn.btn-large{*padding-top:7px;*padding-bottom:7px;} +button.btn.btn-small,input[type="submit"].btn.btn-small{*padding-top:3px;*padding-bottom:3px;} +button.btn.btn-mini,input[type="submit"].btn.btn-mini{*padding-top:1px;*padding-bottom:1px;} +.btn-link,.btn-link:active,.btn-link[disabled]{background-color:transparent;background-image:none;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} +.btn-link{border-color:transparent;cursor:pointer;color:#0088cc;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} +.btn-link:hover{color:#005580;text-decoration:underline;background-color:transparent;} +.btn-link[disabled]:hover{color:#333333;text-decoration:none;} +.btn-group{position:relative;display:inline-block;*display:inline;*zoom:1;font-size:0;vertical-align:middle;white-space:nowrap;*margin-left:.3em;}.btn-group:first-child{*margin-left:0;} +.btn-group+.btn-group{margin-left:5px;} +.btn-toolbar{font-size:0;margin-top:10px;margin-bottom:10px;}.btn-toolbar>.btn+.btn,.btn-toolbar>.btn-group+.btn,.btn-toolbar>.btn+.btn-group{margin-left:5px;} +.btn-group>.btn{position:relative;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} +.btn-group>.btn+.btn{margin-left:-1px;} +.btn-group>.btn,.btn-group>.dropdown-menu,.btn-group>.popover{font-size:14px;} +.btn-group>.btn-mini{font-size:10.5px;} +.btn-group>.btn-small{font-size:11.9px;} +.btn-group>.btn-large{font-size:17.5px;} +.btn-group>.btn:first-child{margin-left:0;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px;} +.btn-group>.btn:last-child,.btn-group>.dropdown-toggle{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;} +.btn-group>.btn.large:first-child{margin-left:0;-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px;} +.btn-group>.btn.large:last-child,.btn-group>.large.dropdown-toggle{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius:6px;} +.btn-group>.btn:hover,.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active{z-index:2;} +.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0;} +.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px;-webkit-box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);*padding-top:5px;*padding-bottom:5px;} +.btn-group>.btn-mini+.dropdown-toggle{padding-left:5px;padding-right:5px;*padding-top:2px;*padding-bottom:2px;} +.btn-group>.btn-small+.dropdown-toggle{*padding-top:5px;*padding-bottom:4px;} +.btn-group>.btn-large+.dropdown-toggle{padding-left:12px;padding-right:12px;*padding-top:7px;*padding-bottom:7px;} +.btn-group.open .dropdown-toggle{background-image:none;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);} +.btn-group.open .btn.dropdown-toggle{background-color:#e6e6e6;} +.btn-group.open .btn-primary.dropdown-toggle{background-color:#0044cc;} +.btn-group.open .btn-warning.dropdown-toggle{background-color:#f89406;} +.btn-group.open .btn-danger.dropdown-toggle{background-color:#bd362f;} +.btn-group.open .btn-success.dropdown-toggle{background-color:#51a351;} +.btn-group.open .btn-info.dropdown-toggle{background-color:#2f96b4;} +.btn-group.open .btn-inverse.dropdown-toggle{background-color:#222222;} +.btn .caret{margin-top:8px;margin-left:0;} +.btn-mini .caret,.btn-small .caret,.btn-large .caret{margin-top:6px;} +.btn-large .caret{border-left-width:5px;border-right-width:5px;border-top-width:5px;} +.dropup .btn-large .caret{border-bottom-width:5px;} +.btn-primary .caret,.btn-warning .caret,.btn-danger .caret,.btn-info .caret,.btn-success .caret,.btn-inverse .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;} +.btn-group-vertical{display:inline-block;*display:inline;*zoom:1;} +.btn-group-vertical>.btn{display:block;float:none;max-width:100%;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} +.btn-group-vertical>.btn+.btn{margin-left:0;margin-top:-1px;} +.btn-group-vertical>.btn:first-child{-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0;} +.btn-group-vertical>.btn:last-child{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px;} +.btn-group-vertical>.btn-large:first-child{-webkit-border-radius:6px 6px 0 0;-moz-border-radius:6px 6px 0 0;border-radius:6px 6px 0 0;} +.btn-group-vertical>.btn-large:last-child{-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;} +.nav{margin-left:0;margin-bottom:20px;list-style:none;} +.nav>li>a{display:block;} +.nav>li>a:hover{text-decoration:none;background-color:#eeeeee;} +.nav>li>a>img{max-width:none;} +.nav>.pull-right{float:right;} +.nav-header{display:block;padding:3px 15px;font-size:11px;font-weight:bold;line-height:20px;color:#999999;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);text-transform:uppercase;} +.nav li+.nav-header{margin-top:9px;} +.nav-list{padding-left:15px;padding-right:15px;margin-bottom:0;} +.nav-list>li>a,.nav-list .nav-header{margin-left:-15px;margin-right:-15px;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);} +.nav-list>li>a{padding:3px 15px;} +.nav-list>.active>a,.nav-list>.active>a:hover{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.2);background-color:#0088cc;} +.nav-list [class^="icon-"],.nav-list [class*=" icon-"]{margin-right:2px;} +.nav-list .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #ffffff;} +.nav-tabs,.nav-pills{*zoom:1;}.nav-tabs:before,.nav-pills:before,.nav-tabs:after,.nav-pills:after{display:table;content:"";line-height:0;} +.nav-tabs:after,.nav-pills:after{clear:both;} +.nav-tabs>li,.nav-pills>li{float:left;} +.nav-tabs>li>a,.nav-pills>li>a{padding-right:12px;padding-left:12px;margin-right:2px;line-height:14px;} +.nav-tabs{border-bottom:1px solid #ddd;} +.nav-tabs>li{margin-bottom:-1px;} +.nav-tabs>li>a{padding-top:8px;padding-bottom:8px;line-height:20px;border:1px solid transparent;-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0;}.nav-tabs>li>a:hover{border-color:#eeeeee #eeeeee #dddddd;} +.nav-tabs>.active>a,.nav-tabs>.active>a:hover{color:#555555;background-color:#ffffff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default;} +.nav-pills>li>a{padding-top:8px;padding-bottom:8px;margin-top:2px;margin-bottom:2px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;} +.nav-pills>.active>a,.nav-pills>.active>a:hover{color:#ffffff;background-color:#0088cc;} +.nav-stacked>li{float:none;} +.nav-stacked>li>a{margin-right:0;} +.nav-tabs.nav-stacked{border-bottom:0;} +.nav-tabs.nav-stacked>li>a{border:1px solid #ddd;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} +.nav-tabs.nav-stacked>li:first-child>a{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;} +.nav-tabs.nav-stacked>li:last-child>a{-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px;} +.nav-tabs.nav-stacked>li>a:hover{border-color:#ddd;z-index:2;} +.nav-pills.nav-stacked>li>a{margin-bottom:3px;} +.nav-pills.nav-stacked>li:last-child>a{margin-bottom:1px;} +.nav-tabs .dropdown-menu{-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;} +.nav-pills .dropdown-menu{-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;} +.nav .dropdown-toggle .caret{border-top-color:#0088cc;border-bottom-color:#0088cc;margin-top:6px;} +.nav .dropdown-toggle:hover .caret{border-top-color:#005580;border-bottom-color:#005580;} +.nav-tabs .dropdown-toggle .caret{margin-top:8px;} +.nav .active .dropdown-toggle .caret{border-top-color:#fff;border-bottom-color:#fff;} +.nav-tabs .active .dropdown-toggle .caret{border-top-color:#555555;border-bottom-color:#555555;} +.nav>.dropdown.active>a:hover{cursor:pointer;} +.nav-tabs .open .dropdown-toggle,.nav-pills .open .dropdown-toggle,.nav>li.dropdown.open.active>a:hover{color:#ffffff;background-color:#999999;border-color:#999999;} +.nav li.dropdown.open .caret,.nav li.dropdown.open.active .caret,.nav li.dropdown.open a:hover .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;opacity:1;filter:alpha(opacity=100);} +.tabs-stacked .open>a:hover{border-color:#999999;} +.tabbable{*zoom:1;}.tabbable:before,.tabbable:after{display:table;content:"";line-height:0;} +.tabbable:after{clear:both;} +.tab-content{overflow:auto;} +.tabs-below>.nav-tabs,.tabs-right>.nav-tabs,.tabs-left>.nav-tabs{border-bottom:0;} +.tab-content>.tab-pane,.pill-content>.pill-pane{display:none;} +.tab-content>.active,.pill-content>.active{display:block;} +.tabs-below>.nav-tabs{border-top:1px solid #ddd;} +.tabs-below>.nav-tabs>li{margin-top:-1px;margin-bottom:0;} +.tabs-below>.nav-tabs>li>a{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px;}.tabs-below>.nav-tabs>li>a:hover{border-bottom-color:transparent;border-top-color:#ddd;} +.tabs-below>.nav-tabs>.active>a,.tabs-below>.nav-tabs>.active>a:hover{border-color:transparent #ddd #ddd #ddd;} +.tabs-left>.nav-tabs>li,.tabs-right>.nav-tabs>li{float:none;} +.tabs-left>.nav-tabs>li>a,.tabs-right>.nav-tabs>li>a{min-width:74px;margin-right:0;margin-bottom:3px;} +.tabs-left>.nav-tabs{float:left;margin-right:19px;border-right:1px solid #ddd;} +.tabs-left>.nav-tabs>li>a{margin-right:-1px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;} +.tabs-left>.nav-tabs>li>a:hover{border-color:#eeeeee #dddddd #eeeeee #eeeeee;} +.tabs-left>.nav-tabs .active>a,.tabs-left>.nav-tabs .active>a:hover{border-color:#ddd transparent #ddd #ddd;*border-right-color:#ffffff;} +.tabs-right>.nav-tabs{float:right;margin-left:19px;border-left:1px solid #ddd;} +.tabs-right>.nav-tabs>li>a{margin-left:-1px;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} +.tabs-right>.nav-tabs>li>a:hover{border-color:#eeeeee #eeeeee #eeeeee #dddddd;} +.tabs-right>.nav-tabs .active>a,.tabs-right>.nav-tabs .active>a:hover{border-color:#ddd #ddd #ddd transparent;*border-left-color:#ffffff;} +.nav>.disabled>a{color:#999999;} +.nav>.disabled>a:hover{text-decoration:none;background-color:transparent;cursor:default;} +.navbar{overflow:visible;margin-bottom:20px;*position:relative;*z-index:2;} +.navbar-inner{min-height:50px;padding-left:20px;padding-right:20px;background-color:#fafafa;background-image:-moz-linear-gradient(top, #ffffff, #f2f2f2);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f2f2f2));background-image:-webkit-linear-gradient(top, #ffffff, #f2f2f2);background-image:-o-linear-gradient(top, #ffffff, #f2f2f2);background-image:linear-gradient(to bottom, #ffffff, #f2f2f2);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff2f2f2', GradientType=0);border:1px solid #d4d4d4;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.065);-moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.065);box-shadow:0 1px 4px rgba(0, 0, 0, 0.065);*zoom:1;}.navbar-inner:before,.navbar-inner:after{display:table;content:"";line-height:0;} +.navbar-inner:after{clear:both;} +.navbar .container{width:auto;} +.nav-collapse.collapse{height:auto;overflow:visible;} +.navbar .brand{float:left;display:block;padding:15px 20px 15px;margin-left:-20px;font-size:20px;font-weight:200;color:#777777;text-shadow:0 1px 0 #ffffff;}.navbar .brand:hover{text-decoration:none;} +.navbar-text{margin-bottom:0;line-height:50px;color:#777777;} +.navbar-link{color:#777777;}.navbar-link:hover{color:#333333;} +.navbar .divider-vertical{height:50px;margin:0 9px;border-left:1px solid #f2f2f2;border-right:1px solid #ffffff;} +.navbar .btn,.navbar .btn-group{margin-top:10px;} +.navbar .btn-group .btn,.navbar .input-prepend .btn,.navbar .input-append .btn{margin-top:0;} +.navbar-form{margin-bottom:0;*zoom:1;}.navbar-form:before,.navbar-form:after{display:table;content:"";line-height:0;} +.navbar-form:after{clear:both;} +.navbar-form input,.navbar-form select,.navbar-form .radio,.navbar-form .checkbox{margin-top:10px;} +.navbar-form input,.navbar-form select,.navbar-form .btn{display:inline-block;margin-bottom:0;} +.navbar-form input[type="image"],.navbar-form input[type="checkbox"],.navbar-form input[type="radio"]{margin-top:3px;} +.navbar-form .input-append,.navbar-form .input-prepend{margin-top:5px;white-space:nowrap;}.navbar-form .input-append input,.navbar-form .input-prepend input{margin-top:0;} +.navbar-search{position:relative;float:left;margin-top:10px;margin-bottom:0;}.navbar-search .search-query{margin-bottom:0;padding:4px 14px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;font-weight:normal;line-height:1;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px;} +.navbar-static-top{position:static;margin-bottom:0;}.navbar-static-top .navbar-inner{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} +.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030;margin-bottom:0;} +.navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{border-width:0 0 1px;} +.navbar-fixed-bottom .navbar-inner{border-width:1px 0 0;} +.navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding-left:0;padding-right:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} +.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px;} +.navbar-fixed-top{top:0;} +.navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{-webkit-box-shadow:0 1px 10px rgba(0,0,0,.1);-moz-box-shadow:0 1px 10px rgba(0,0,0,.1);box-shadow:0 1px 10px rgba(0,0,0,.1);} +.navbar-fixed-bottom{bottom:0;}.navbar-fixed-bottom .navbar-inner{-webkit-box-shadow:0 -1px 10px rgba(0,0,0,.1);-moz-box-shadow:0 -1px 10px rgba(0,0,0,.1);box-shadow:0 -1px 10px rgba(0,0,0,.1);} +.navbar .nav{position:relative;left:0;display:block;float:left;margin:0 10px 0 0;} +.navbar .nav.pull-right{float:right;margin-right:0;} +.navbar .nav>li{float:left;} +.navbar .nav>li>a{float:none;padding:15px 15px 15px;color:#777777;text-decoration:none;text-shadow:0 1px 0 #ffffff;} +.navbar .nav .dropdown-toggle .caret{margin-top:8px;} +.navbar .nav>li>a:focus,.navbar .nav>li>a:hover{background-color:transparent;color:#333333;text-decoration:none;} +.navbar .nav>.active>a,.navbar .nav>.active>a:hover,.navbar .nav>.active>a:focus{color:#555555;text-decoration:none;background-color:#e5e5e5;-webkit-box-shadow:inset 0 3px 8px rgba(0, 0, 0, 0.125);-moz-box-shadow:inset 0 3px 8px rgba(0, 0, 0, 0.125);box-shadow:inset 0 3px 8px rgba(0, 0, 0, 0.125);} +.navbar .btn-navbar{display:none;float:right;padding:7px 10px;margin-left:5px;margin-right:5px;color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#ededed;background-image:-moz-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#f2f2f2), to(#e5e5e5));background-image:-webkit-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:-o-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:linear-gradient(to bottom, #f2f2f2, #e5e5e5);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2f2f2', endColorstr='#ffe5e5e5', GradientType=0);border-color:#e5e5e5 #e5e5e5 #bfbfbf;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#e5e5e5;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);}.navbar .btn-navbar:hover,.navbar .btn-navbar:active,.navbar .btn-navbar.active,.navbar .btn-navbar.disabled,.navbar .btn-navbar[disabled]{color:#ffffff;background-color:#e5e5e5;*background-color:#d9d9d9;} +.navbar .btn-navbar:active,.navbar .btn-navbar.active{background-color:#cccccc \9;} +.navbar .btn-navbar .icon-bar{display:block;width:18px;height:2px;background-color:#f5f5f5;-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;-webkit-box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);-moz-box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);} +.btn-navbar .icon-bar+.icon-bar{margin-top:3px;} +.navbar .nav>li>.dropdown-menu:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0, 0, 0, 0.2);position:absolute;top:-7px;left:9px;} +.navbar .nav>li>.dropdown-menu:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #ffffff;position:absolute;top:-6px;left:10px;} +.navbar-fixed-bottom .nav>li>.dropdown-menu:before{border-top:7px solid #ccc;border-top-color:rgba(0, 0, 0, 0.2);border-bottom:0;bottom:-7px;top:auto;} +.navbar-fixed-bottom .nav>li>.dropdown-menu:after{border-top:6px solid #ffffff;border-bottom:0;bottom:-6px;top:auto;} +.navbar .nav li.dropdown>a:hover .caret{border-top-color:#555555;border-bottom-color:#555555;} +.navbar .nav li.dropdown.open>.dropdown-toggle,.navbar .nav li.dropdown.active>.dropdown-toggle,.navbar .nav li.dropdown.open.active>.dropdown-toggle{background-color:#e5e5e5;color:#555555;} +.navbar .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#777777;border-bottom-color:#777777;} +.navbar .nav li.dropdown.open>.dropdown-toggle .caret,.navbar .nav li.dropdown.active>.dropdown-toggle .caret,.navbar .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#555555;border-bottom-color:#555555;} +.navbar .pull-right>li>.dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right{left:auto;right:0;}.navbar .pull-right>li>.dropdown-menu:before,.navbar .nav>li>.dropdown-menu.pull-right:before{left:auto;right:12px;} +.navbar .pull-right>li>.dropdown-menu:after,.navbar .nav>li>.dropdown-menu.pull-right:after{left:auto;right:13px;} +.navbar .pull-right>li>.dropdown-menu .dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right .dropdown-menu{left:auto;right:100%;margin-left:0;margin-right:-1px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px;} +.navbar-inverse .navbar-inner{background-color:#1b1b1b;background-image:-moz-linear-gradient(top, #222222, #111111);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#222222), to(#111111));background-image:-webkit-linear-gradient(top, #222222, #111111);background-image:-o-linear-gradient(top, #222222, #111111);background-image:linear-gradient(to bottom, #222222, #111111);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff111111', GradientType=0);border-color:#252525;} +.navbar-inverse .brand,.navbar-inverse .nav>li>a{color:#999999;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);}.navbar-inverse .brand:hover,.navbar-inverse .nav>li>a:hover{color:#ffffff;} +.navbar-inverse .brand{color:#999999;} +.navbar-inverse .navbar-text{color:#999999;} +.navbar-inverse .nav>li>a:focus,.navbar-inverse .nav>li>a:hover{background-color:transparent;color:#ffffff;} +.navbar-inverse .nav .active>a,.navbar-inverse .nav .active>a:hover,.navbar-inverse .nav .active>a:focus{color:#ffffff;background-color:#111111;} +.navbar-inverse .navbar-link{color:#999999;}.navbar-inverse .navbar-link:hover{color:#ffffff;} +.navbar-inverse .divider-vertical{border-left-color:#111111;border-right-color:#222222;} +.navbar-inverse .nav li.dropdown.open>.dropdown-toggle,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle{background-color:#111111;color:#ffffff;} +.navbar-inverse .nav li.dropdown>a:hover .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;} +.navbar-inverse .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#999999;border-bottom-color:#999999;} +.navbar-inverse .nav li.dropdown.open>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;} +.navbar-inverse .navbar-search .search-query{color:#ffffff;background-color:#515151;border-color:#111111;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);-webkit-transition:none;-moz-transition:none;-o-transition:none;transition:none;}.navbar-inverse .navbar-search .search-query:-moz-placeholder{color:#cccccc;} +.navbar-inverse .navbar-search .search-query:-ms-input-placeholder{color:#cccccc;} +.navbar-inverse .navbar-search .search-query::-webkit-input-placeholder{color:#cccccc;} +.navbar-inverse .navbar-search .search-query:focus,.navbar-inverse .navbar-search .search-query.focused{padding:5px 15px;color:#333333;text-shadow:0 1px 0 #ffffff;background-color:#ffffff;border:0;-webkit-box-shadow:0 0 3px rgba(0, 0, 0, 0.15);-moz-box-shadow:0 0 3px rgba(0, 0, 0, 0.15);box-shadow:0 0 3px rgba(0, 0, 0, 0.15);outline:0;} +.navbar-inverse .btn-navbar{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#0e0e0e;background-image:-moz-linear-gradient(top, #151515, #040404);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#151515), to(#040404));background-image:-webkit-linear-gradient(top, #151515, #040404);background-image:-o-linear-gradient(top, #151515, #040404);background-image:linear-gradient(to bottom, #151515, #040404);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff151515', endColorstr='#ff040404', GradientType=0);border-color:#040404 #040404 #000000;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#040404;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.navbar-inverse .btn-navbar:hover,.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active,.navbar-inverse .btn-navbar.disabled,.navbar-inverse .btn-navbar[disabled]{color:#ffffff;background-color:#040404;*background-color:#000000;} +.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active{background-color:#000000 \9;} +.breadcrumb{padding:8px 15px;margin:0 0 20px;list-style:none;background-color:#f5f5f5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}.breadcrumb>li{display:inline-block;*display:inline;*zoom:1;text-shadow:0 1px 0 #ffffff;}.breadcrumb>li>.divider{padding:0 5px;color:#ccc;} +.breadcrumb>.active{color:#999999;} +.pagination{margin:20px 0;} +.pagination ul{display:inline-block;*display:inline;*zoom:1;margin-left:0;margin-bottom:0;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);-moz-box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);} +.pagination ul>li{display:inline;} +.pagination ul>li>a,.pagination ul>li>span{float:left;padding:4px 12px;line-height:20px;text-decoration:none;background-color:#ffffff;border:1px solid #dddddd;border-left-width:0;} +.pagination ul>li>a:hover,.pagination ul>.active>a,.pagination ul>.active>span{background-color:#f5f5f5;} +.pagination ul>.active>a,.pagination ul>.active>span{color:#999999;cursor:default;} +.pagination ul>.disabled>span,.pagination ul>.disabled>a,.pagination ul>.disabled>a:hover{color:#999999;background-color:transparent;cursor:default;} +.pagination ul>li:first-child>a,.pagination ul>li:first-child>span{border-left-width:1px;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px;} +.pagination ul>li:last-child>a,.pagination ul>li:last-child>span{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;} +.pagination-centered{text-align:center;} +.pagination-right{text-align:right;} +.pagination-large ul>li>a,.pagination-large ul>li>span{padding:11px 19px;font-size:17.5px;} +.pagination-large ul>li:first-child>a,.pagination-large ul>li:first-child>span{-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px;} +.pagination-large ul>li:last-child>a,.pagination-large ul>li:last-child>span{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius:6px;} +.pagination-mini ul>li:first-child>a,.pagination-small ul>li:first-child>a,.pagination-mini ul>li:first-child>span,.pagination-small ul>li:first-child>span{-webkit-border-top-left-radius:3px;-moz-border-radius-topleft:3px;border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;-moz-border-radius-bottomleft:3px;border-bottom-left-radius:3px;} +.pagination-mini ul>li:last-child>a,.pagination-small ul>li:last-child>a,.pagination-mini ul>li:last-child>span,.pagination-small ul>li:last-child>span{-webkit-border-top-right-radius:3px;-moz-border-radius-topright:3px;border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;-moz-border-radius-bottomright:3px;border-bottom-right-radius:3px;} +.pagination-small ul>li>a,.pagination-small ul>li>span{padding:2px 10px;font-size:11.9px;} +.pagination-mini ul>li>a,.pagination-mini ul>li>span{padding:0 6px;font-size:10.5px;} +.pager{margin:20px 0;list-style:none;text-align:center;*zoom:1;}.pager:before,.pager:after{display:table;content:"";line-height:0;} +.pager:after{clear:both;} +.pager li{display:inline;} +.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px;} +.pager li>a:hover{text-decoration:none;background-color:#f5f5f5;} +.pager .next>a,.pager .next>span{float:right;} +.pager .previous>a,.pager .previous>span{float:left;} +.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>span{color:#999999;background-color:#fff;cursor:default;} +.thumbnails{margin-left:-20px;list-style:none;*zoom:1;}.thumbnails:before,.thumbnails:after{display:table;content:"";line-height:0;} +.thumbnails:after{clear:both;} +.row-fluid .thumbnails{margin-left:0;} +.thumbnails>li{float:left;margin-bottom:20px;margin-left:20px;} +.thumbnail{display:block;padding:4px;line-height:20px;border:1px solid #ddd;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 3px rgba(0, 0, 0, 0.055);-moz-box-shadow:0 1px 3px rgba(0, 0, 0, 0.055);box-shadow:0 1px 3px rgba(0, 0, 0, 0.055);-webkit-transition:all 0.2s ease-in-out;-moz-transition:all 0.2s ease-in-out;-o-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out;} +a.thumbnail:hover{border-color:#0088cc;-webkit-box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);-moz-box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);} +.thumbnail>img{display:block;max-width:100%;margin-left:auto;margin-right:auto;} +.thumbnail .caption{padding:9px;color:#555555;} +.alert{padding:8px 35px 8px 14px;margin-bottom:20px;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);background-color:#fcf8e3;border:1px solid #fbeed5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} +.alert,.alert h4{color:#c09853;} +.alert h4{margin:0;} +.alert .close{position:relative;top:-2px;right:-21px;line-height:20px;} +.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#468847;} +.alert-success h4{color:#468847;} +.alert-danger,.alert-error{background-color:#f2dede;border-color:#eed3d7;color:#b94a48;} +.alert-danger h4,.alert-error h4{color:#b94a48;} +.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#3a87ad;} +.alert-info h4{color:#3a87ad;} +.alert-block{padding-top:14px;padding-bottom:14px;} +.alert-block>p,.alert-block>ul{margin-bottom:0;} +.alert-block p+p{margin-top:5px;} +@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0;} to{background-position:0 0;}}@-moz-keyframes progress-bar-stripes{from{background-position:40px 0;} to{background-position:0 0;}}@-ms-keyframes progress-bar-stripes{from{background-position:40px 0;} to{background-position:0 0;}}@-o-keyframes progress-bar-stripes{from{background-position:0 0;} to{background-position:40px 0;}}@keyframes progress-bar-stripes{from{background-position:40px 0;} to{background-position:0 0;}}.progress{overflow:hidden;height:20px;margin-bottom:20px;background-color:#f7f7f7;background-image:-moz-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));background-image:-webkit-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-o-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:linear-gradient(to bottom, #f5f5f5, #f9f9f9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);-webkit-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);-moz-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} +.progress .bar{width:0%;height:100%;color:#ffffff;float:left;font-size:12px;text-align:center;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#0e90d2;background-image:-moz-linear-gradient(top, #149bdf, #0480be);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));background-image:-webkit-linear-gradient(top, #149bdf, #0480be);background-image:-o-linear-gradient(top, #149bdf, #0480be);background-image:linear-gradient(to bottom, #149bdf, #0480be);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0);-webkit-box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);-moz-box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:width 0.6s ease;-moz-transition:width 0.6s ease;-o-transition:width 0.6s ease;transition:width 0.6s ease;} +.progress .bar+.bar{-webkit-box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);-moz-box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);} +.progress-striped .bar{background-color:#149bdf;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);-webkit-background-size:40px 40px;-moz-background-size:40px 40px;-o-background-size:40px 40px;background-size:40px 40px;} +.progress.active .bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-moz-animation:progress-bar-stripes 2s linear infinite;-ms-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite;} +.progress-danger .bar,.progress .bar-danger{background-color:#dd514c;background-image:-moz-linear-gradient(top, #ee5f5b, #c43c35);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35));background-image:-webkit-linear-gradient(top, #ee5f5b, #c43c35);background-image:-o-linear-gradient(top, #ee5f5b, #c43c35);background-image:linear-gradient(to bottom, #ee5f5b, #c43c35);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffc43c35', GradientType=0);} +.progress-danger.progress-striped .bar,.progress-striped .bar-danger{background-color:#ee5f5b;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);} +.progress-success .bar,.progress .bar-success{background-color:#5eb95e;background-image:-moz-linear-gradient(top, #62c462, #57a957);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957));background-image:-webkit-linear-gradient(top, #62c462, #57a957);background-image:-o-linear-gradient(top, #62c462, #57a957);background-image:linear-gradient(to bottom, #62c462, #57a957);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff57a957', GradientType=0);} +.progress-success.progress-striped .bar,.progress-striped .bar-success{background-color:#62c462;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);} +.progress-info .bar,.progress .bar-info{background-color:#4bb1cf;background-image:-moz-linear-gradient(top, #5bc0de, #339bb9);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9));background-image:-webkit-linear-gradient(top, #5bc0de, #339bb9);background-image:-o-linear-gradient(top, #5bc0de, #339bb9);background-image:linear-gradient(to bottom, #5bc0de, #339bb9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff339bb9', GradientType=0);} +.progress-info.progress-striped .bar,.progress-striped .bar-info{background-color:#5bc0de;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);} +.progress-warning .bar,.progress .bar-warning{background-color:#faa732;background-image:-moz-linear-gradient(top, #fbb450, #f89406);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));background-image:-webkit-linear-gradient(top, #fbb450, #f89406);background-image:-o-linear-gradient(top, #fbb450, #f89406);background-image:linear-gradient(to bottom, #fbb450, #f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);} +.progress-warning.progress-striped .bar,.progress-striped .bar-warning{background-color:#fbb450;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);} +.hero-unit{padding:60px;margin-bottom:30px;font-size:18px;font-weight:200;line-height:30px;color:inherit;background-color:#eeeeee;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;}.hero-unit h1{margin-bottom:0;font-size:60px;line-height:1;color:inherit;letter-spacing:-1px;} +.hero-unit li{line-height:30px;} +.media,.media-body{overflow:hidden;*overflow:visible;zoom:1;} +.media,.media .media{margin-top:15px;} +.media:first-child{margin-top:0;} +.media-object{display:block;} +.media-heading{margin:0 0 5px;} +.media .pull-left{margin-right:10px;} +.media .pull-right{margin-left:10px;} +.media-list{margin-left:0;list-style:none;} +.tooltip{position:absolute;z-index:1030;display:block;visibility:visible;padding:5px;font-size:11px;opacity:0;filter:alpha(opacity=0);}.tooltip.in{opacity:0.8;filter:alpha(opacity=80);} +.tooltip.top{margin-top:-3px;} +.tooltip.right{margin-left:3px;} +.tooltip.bottom{margin-top:3px;} +.tooltip.left{margin-left:-3px;} +.tooltip-inner{max-width:200px;padding:3px 8px;color:#ffffff;text-align:center;text-decoration:none;background-color:#000000;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} +.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid;} +.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000000;} +.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000000;} +.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000000;} +.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000000;} +.popover{position:absolute;top:0;left:0;z-index:1010;display:none;width:236px;padding:1px;text-align:left;background-color:#ffffff;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.2);-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-moz-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);white-space:normal;}.popover.top{margin-top:-10px;} +.popover.right{margin-left:10px;} +.popover.bottom{margin-top:10px;} +.popover.left{margin-left:-10px;} +.popover-title{margin:0;padding:8px 14px;font-size:14px;font-weight:normal;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;-webkit-border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0;} +.popover-content{padding:9px 14px;} +.popover .arrow,.popover .arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid;} +.popover .arrow{border-width:11px;} +.popover .arrow:after{border-width:10px;content:"";} +.popover.top .arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0, 0, 0, 0.25);bottom:-11px;}.popover.top .arrow:after{bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#ffffff;} +.popover.right .arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0, 0, 0, 0.25);}.popover.right .arrow:after{left:1px;bottom:-10px;border-left-width:0;border-right-color:#ffffff;} +.popover.bottom .arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0, 0, 0, 0.25);top:-11px;}.popover.bottom .arrow:after{top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#ffffff;} +.popover.left .arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0, 0, 0, 0.25);}.popover.left .arrow:after{right:1px;border-right-width:0;border-left-color:#ffffff;bottom:-10px;} +.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000000;}.modal-backdrop.fade{opacity:0;} +.modal-backdrop,.modal-backdrop.fade.in{opacity:0.8;filter:alpha(opacity=80);} +.modal{position:fixed;top:10%;left:50%;z-index:1050;width:560px;margin-left:-280px;background-color:#ffffff;border:1px solid #999;border:1px solid rgba(0, 0, 0, 0.3);*border:1px solid #999;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);-moz-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);-webkit-background-clip:padding-box;-moz-background-clip:padding-box;background-clip:padding-box;outline:none;}.modal.fade{-webkit-transition:opacity .3s linear, top .3s ease-out;-moz-transition:opacity .3s linear, top .3s ease-out;-o-transition:opacity .3s linear, top .3s ease-out;transition:opacity .3s linear, top .3s ease-out;top:-25%;} +.modal.fade.in{top:10%;} +.modal-header{padding:9px 15px;border-bottom:1px solid #eee;}.modal-header .close{margin-top:2px;} +.modal-header h3{margin:0;line-height:30px;} +.modal-body{position:relative;overflow-y:auto;max-height:400px;padding:15px;} +.modal-form{margin-bottom:0;} +.modal-footer{padding:14px 15px 15px;margin-bottom:0;text-align:right;background-color:#f5f5f5;border-top:1px solid #ddd;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;-webkit-box-shadow:inset 0 1px 0 #ffffff;-moz-box-shadow:inset 0 1px 0 #ffffff;box-shadow:inset 0 1px 0 #ffffff;*zoom:1;}.modal-footer:before,.modal-footer:after{display:table;content:"";line-height:0;} +.modal-footer:after{clear:both;} +.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0;} +.modal-footer .btn-group .btn+.btn{margin-left:-1px;} +.modal-footer .btn-block+.btn-block{margin-left:0;} +.dropup,.dropdown{position:relative;} +.dropdown-toggle{*margin-bottom:-3px;} +.dropdown-toggle:active,.open .dropdown-toggle{outline:0;} +.caret{display:inline-block;width:0;height:0;vertical-align:top;border-top:4px solid #000000;border-right:4px solid transparent;border-left:4px solid transparent;content:"";} +.dropdown .caret{margin-top:8px;margin-left:2px;} +.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;background-color:#ffffff;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.2);*border-right-width:2px;*border-bottom-width:2px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-moz-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;}.dropdown-menu.pull-right{right:0;left:auto;} +.dropdown-menu .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #ffffff;} +.dropdown-menu li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:20px;color:#333333;white-space:nowrap;} +.dropdown-menu li>a:hover,.dropdown-menu li>a:focus,.dropdown-submenu:hover>a{text-decoration:none;color:#ffffff;background-color:#0081c2;background-image:-moz-linear-gradient(top, #0088cc, #0077b3);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));background-image:-webkit-linear-gradient(top, #0088cc, #0077b3);background-image:-o-linear-gradient(top, #0088cc, #0077b3);background-image:linear-gradient(to bottom, #0088cc, #0077b3);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);} +.dropdown-menu .active>a,.dropdown-menu .active>a:hover{color:#ffffff;text-decoration:none;outline:0;background-color:#0081c2;background-image:-moz-linear-gradient(top, #0088cc, #0077b3);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));background-image:-webkit-linear-gradient(top, #0088cc, #0077b3);background-image:-o-linear-gradient(top, #0088cc, #0077b3);background-image:linear-gradient(to bottom, #0088cc, #0077b3);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);} +.dropdown-menu .disabled>a,.dropdown-menu .disabled>a:hover{color:#999999;} +.dropdown-menu .disabled>a:hover{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:default;} +.open{*z-index:1000;}.open >.dropdown-menu{display:block;} +.pull-right>.dropdown-menu{right:0;left:auto;} +.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid #000000;content:"";} +.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px;} +.dropdown-submenu{position:relative;} +.dropdown-submenu>.dropdown-menu{top:0;left:100%;margin-top:-6px;margin-left:-1px;-webkit-border-radius:0 6px 6px 6px;-moz-border-radius:0 6px 6px 6px;border-radius:0 6px 6px 6px;} +.dropdown-submenu:hover>.dropdown-menu{display:block;} +.dropup .dropdown-submenu>.dropdown-menu{top:auto;bottom:0;margin-top:0;margin-bottom:-2px;-webkit-border-radius:5px 5px 5px 0;-moz-border-radius:5px 5px 5px 0;border-radius:5px 5px 5px 0;} +.dropdown-submenu>a:after{display:block;content:" ";float:right;width:0;height:0;border-color:transparent;border-style:solid;border-width:5px 0 5px 5px;border-left-color:#cccccc;margin-top:5px;margin-right:-10px;} +.dropdown-submenu:hover>a:after{border-left-color:#ffffff;} +.dropdown-submenu.pull-left{float:none;}.dropdown-submenu.pull-left>.dropdown-menu{left:-100%;margin-left:10px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px;} +.dropdown .dropdown-menu .nav-header{padding-left:20px;padding-right:20px;} +.typeahead{z-index:1051;margin-top:2px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} +.accordion{margin-bottom:20px;} +.accordion-group{margin-bottom:2px;border:1px solid #e5e5e5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} +.accordion-heading{border-bottom:0;} +.accordion-heading .accordion-toggle{display:block;padding:8px 15px;} +.accordion-toggle{cursor:pointer;} +.accordion-inner{padding:9px 15px;border-top:1px solid #e5e5e5;} +.carousel{position:relative;margin-bottom:20px;line-height:1;} +.carousel-inner{overflow:hidden;width:100%;position:relative;} +.carousel-inner>.item{display:none;position:relative;-webkit-transition:0.6s ease-in-out left;-moz-transition:0.6s ease-in-out left;-o-transition:0.6s ease-in-out left;transition:0.6s ease-in-out left;} +.carousel-inner>.item>img{display:block;line-height:1;} +.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block;} +.carousel-inner>.active{left:0;} +.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%;} +.carousel-inner>.next{left:100%;} +.carousel-inner>.prev{left:-100%;} +.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0;} +.carousel-inner>.active.left{left:-100%;} +.carousel-inner>.active.right{left:100%;} +.carousel-control{position:absolute;top:40%;left:15px;width:40px;height:40px;margin-top:-20px;font-size:60px;font-weight:100;line-height:30px;color:#ffffff;text-align:center;background:#222222;border:3px solid #ffffff;-webkit-border-radius:23px;-moz-border-radius:23px;border-radius:23px;opacity:0.5;filter:alpha(opacity=50);}.carousel-control.right{left:auto;right:15px;} +.carousel-control:hover{color:#ffffff;text-decoration:none;opacity:0.9;filter:alpha(opacity=90);} +.carousel-caption{position:absolute;left:0;right:0;bottom:0;padding:15px;background:#333333;background:rgba(0, 0, 0, 0.75);} +.carousel-caption h4,.carousel-caption p{color:#ffffff;line-height:20px;} +.carousel-caption h4{margin:0 0 5px;} +.carousel-caption p{margin-bottom:0;} +.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);}.well blockquote{border-color:#ddd;border-color:rgba(0, 0, 0, 0.15);} +.well-large{padding:24px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;} +.well-small{padding:9px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} +.close{float:right;font-size:20px;font-weight:bold;line-height:20px;color:#000000;text-shadow:0 1px 0 #ffffff;opacity:0.2;filter:alpha(opacity=20);}.close:hover{color:#000000;text-decoration:none;cursor:pointer;opacity:0.4;filter:alpha(opacity=40);} +button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;} +.pull-right{float:right;} +.pull-left{float:left;} +.hide{display:none;} +.show{display:block;} +.invisible{visibility:hidden;} +.affix{position:fixed;} +.fade{opacity:0;-webkit-transition:opacity 0.15s linear;-moz-transition:opacity 0.15s linear;-o-transition:opacity 0.15s linear;transition:opacity 0.15s linear;}.fade.in{opacity:1;} +.collapse{position:relative;height:0;overflow:hidden;-webkit-transition:height 0.35s ease;-moz-transition:height 0.35s ease;-o-transition:height 0.35s ease;transition:height 0.35s ease;}.collapse.in{height:auto;} +.hidden{display:none;visibility:hidden;} +.visible-phone{display:none !important;} +.visible-tablet{display:none !important;} +.hidden-desktop{display:none !important;} +.visible-desktop{display:inherit !important;} +@media (min-width:768px) and (max-width:979px){.hidden-desktop{display:inherit !important;} .visible-desktop{display:none !important ;} .visible-tablet{display:inherit !important;} .hidden-tablet{display:none !important;}}@media (max-width:767px){.hidden-desktop{display:inherit !important;} .visible-desktop{display:none !important;} .visible-phone{display:inherit !important;} .hidden-phone{display:none !important;}}@media (max-width:767px){body{padding-left:20px;padding-right:20px;} .navbar-fixed-top,.navbar-fixed-bottom,.navbar-static-top{margin-left:-20px;margin-right:-20px;} .container-fluid{padding:0;} .dl-horizontal dt{float:none;clear:none;width:auto;text-align:left;} .dl-horizontal dd{margin-left:0;} .container{width:auto;} .row-fluid{width:100%;} .row,.thumbnails{margin-left:0;} .thumbnails>li{float:none;margin-left:0;} [class*="span"],.uneditable-input[class*="span"],.row-fluid [class*="span"]{float:none;display:block;width:100%;margin-left:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} .span12,.row-fluid .span12{width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} .row-fluid [class*="offset"]:first-child{margin-left:0;} .input-large,.input-xlarge,.input-xxlarge,input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} .input-prepend input,.input-append input,.input-prepend input[class*="span"],.input-append input[class*="span"]{display:inline-block;width:auto;} .controls-row [class*="span"]+[class*="span"]{margin-left:0;} .modal{position:fixed;top:20px;left:20px;right:20px;width:auto;margin:0;}.modal.fade{top:-100px;} .modal.fade.in{top:20px;}}@media (max-width:480px){.nav-collapse{-webkit-transform:translate3d(0, 0, 0);} .page-header h1 small{display:block;line-height:20px;} input[type="checkbox"],input[type="radio"]{border:1px solid #ccc;} .form-horizontal .control-label{float:none;width:auto;padding-top:0;text-align:left;} .form-horizontal .controls{margin-left:0;} .form-horizontal .control-list{padding-top:0;} .form-horizontal .form-actions{padding-left:10px;padding-right:10px;} .media .pull-left,.media .pull-right{float:none;display:block;margin-bottom:10px;} .media-object{margin-right:0;margin-left:0;} .modal{top:10px;left:10px;right:10px;} .modal-header .close{padding:10px;margin:-10px;} .carousel-caption{position:static;}}@media (min-width:768px) and (max-width:979px){.row{margin-left:-20px;*zoom:1;}.row:before,.row:after{display:table;content:"";line-height:0;} .row:after{clear:both;} [class*="span"]{float:left;min-height:1px;margin-left:20px;} .container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:724px;} .span12{width:724px;} .span11{width:662px;} .span10{width:600px;} .span9{width:538px;} .span8{width:476px;} .span7{width:414px;} .span6{width:352px;} .span5{width:290px;} .span4{width:228px;} .span3{width:166px;} .span2{width:104px;} .span1{width:42px;} .offset12{margin-left:764px;} .offset11{margin-left:702px;} .offset10{margin-left:640px;} .offset9{margin-left:578px;} .offset8{margin-left:516px;} .offset7{margin-left:454px;} .offset6{margin-left:392px;} .offset5{margin-left:330px;} .offset4{margin-left:268px;} .offset3{margin-left:206px;} .offset2{margin-left:144px;} .offset1{margin-left:82px;} .row-fluid{width:100%;*zoom:1;}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0;} .row-fluid:after{clear:both;} .row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.7624309392265194%;*margin-left:2.709239449864817%;} .row-fluid [class*="span"]:first-child{margin-left:0;} .row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.7624309392265194%;} .row-fluid .span12{width:100%;*width:99.94680851063829%;} .row-fluid .span11{width:91.43646408839778%;*width:91.38327259903608%;} .row-fluid .span10{width:82.87292817679558%;*width:82.81973668743387%;} .row-fluid .span9{width:74.30939226519337%;*width:74.25620077583166%;} .row-fluid .span8{width:65.74585635359117%;*width:65.69266486422946%;} .row-fluid .span7{width:57.18232044198895%;*width:57.12912895262725%;} .row-fluid .span6{width:48.61878453038674%;*width:48.56559304102504%;} .row-fluid .span5{width:40.05524861878453%;*width:40.00205712942283%;} .row-fluid .span4{width:31.491712707182323%;*width:31.43852121782062%;} .row-fluid .span3{width:22.92817679558011%;*width:22.87498530621841%;} .row-fluid .span2{width:14.3646408839779%;*width:14.311449394616199%;} .row-fluid .span1{width:5.801104972375691%;*width:5.747913483013988%;} .row-fluid .offset12{margin-left:105.52486187845304%;*margin-left:105.41847889972962%;} .row-fluid .offset12:first-child{margin-left:102.76243093922652%;*margin-left:102.6560479605031%;} .row-fluid .offset11{margin-left:96.96132596685082%;*margin-left:96.8549429881274%;} .row-fluid .offset11:first-child{margin-left:94.1988950276243%;*margin-left:94.09251204890089%;} .row-fluid .offset10{margin-left:88.39779005524862%;*margin-left:88.2914070765252%;} .row-fluid .offset10:first-child{margin-left:85.6353591160221%;*margin-left:85.52897613729868%;} .row-fluid .offset9{margin-left:79.8342541436464%;*margin-left:79.72787116492299%;} .row-fluid .offset9:first-child{margin-left:77.07182320441989%;*margin-left:76.96544022569647%;} .row-fluid .offset8{margin-left:71.2707182320442%;*margin-left:71.16433525332079%;} .row-fluid .offset8:first-child{margin-left:68.50828729281768%;*margin-left:68.40190431409427%;} .row-fluid .offset7{margin-left:62.70718232044199%;*margin-left:62.600799341718584%;} .row-fluid .offset7:first-child{margin-left:59.94475138121547%;*margin-left:59.838368402492065%;} .row-fluid .offset6{margin-left:54.14364640883978%;*margin-left:54.037263430116376%;} .row-fluid .offset6:first-child{margin-left:51.38121546961326%;*margin-left:51.27483249088986%;} .row-fluid .offset5{margin-left:45.58011049723757%;*margin-left:45.47372751851417%;} .row-fluid .offset5:first-child{margin-left:42.81767955801105%;*margin-left:42.71129657928765%;} .row-fluid .offset4{margin-left:37.01657458563536%;*margin-left:36.91019160691196%;} .row-fluid .offset4:first-child{margin-left:34.25414364640884%;*margin-left:34.14776066768544%;} .row-fluid .offset3{margin-left:28.45303867403315%;*margin-left:28.346655695309746%;} .row-fluid .offset3:first-child{margin-left:25.69060773480663%;*margin-left:25.584224756083227%;} .row-fluid .offset2{margin-left:19.88950276243094%;*margin-left:19.783119783707537%;} .row-fluid .offset2:first-child{margin-left:17.12707182320442%;*margin-left:17.02068884448102%;} .row-fluid .offset1{margin-left:11.32596685082873%;*margin-left:11.219583872105325%;} .row-fluid .offset1:first-child{margin-left:8.56353591160221%;*margin-left:8.457152932878806%;} input,textarea,.uneditable-input{margin-left:0;} .controls-row [class*="span"]+[class*="span"]{margin-left:20px;} input.span12, textarea.span12, .uneditable-input.span12{width:710px;} input.span11, textarea.span11, .uneditable-input.span11{width:648px;} input.span10, textarea.span10, .uneditable-input.span10{width:586px;} input.span9, textarea.span9, .uneditable-input.span9{width:524px;} input.span8, textarea.span8, .uneditable-input.span8{width:462px;} input.span7, textarea.span7, .uneditable-input.span7{width:400px;} input.span6, textarea.span6, .uneditable-input.span6{width:338px;} input.span5, textarea.span5, .uneditable-input.span5{width:276px;} input.span4, textarea.span4, .uneditable-input.span4{width:214px;} input.span3, textarea.span3, .uneditable-input.span3{width:152px;} input.span2, textarea.span2, .uneditable-input.span2{width:90px;} input.span1, textarea.span1, .uneditable-input.span1{width:28px;}}@media (min-width:1200px){.row{margin-left:-30px;*zoom:1;}.row:before,.row:after{display:table;content:"";line-height:0;} .row:after{clear:both;} [class*="span"]{float:left;min-height:1px;margin-left:30px;} .container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:1170px;} .span12{width:1170px;} .span11{width:1070px;} .span10{width:970px;} .span9{width:870px;} .span8{width:770px;} .span7{width:670px;} .span6{width:570px;} .span5{width:470px;} .span4{width:370px;} .span3{width:270px;} .span2{width:170px;} .span1{width:70px;} .offset12{margin-left:1230px;} .offset11{margin-left:1130px;} .offset10{margin-left:1030px;} .offset9{margin-left:930px;} .offset8{margin-left:830px;} .offset7{margin-left:730px;} .offset6{margin-left:630px;} .offset5{margin-left:530px;} .offset4{margin-left:430px;} .offset3{margin-left:330px;} .offset2{margin-left:230px;} .offset1{margin-left:130px;} .row-fluid{width:100%;*zoom:1;}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0;} .row-fluid:after{clear:both;} .row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.564102564102564%;*margin-left:2.5109110747408616%;} .row-fluid [class*="span"]:first-child{margin-left:0;} .row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.564102564102564%;} .row-fluid .span12{width:100%;*width:99.94680851063829%;} .row-fluid .span11{width:91.45299145299145%;*width:91.39979996362975%;} .row-fluid .span10{width:82.90598290598291%;*width:82.8527914166212%;} .row-fluid .span9{width:74.35897435897436%;*width:74.30578286961266%;} .row-fluid .span8{width:65.81196581196582%;*width:65.75877432260411%;} .row-fluid .span7{width:57.26495726495726%;*width:57.21176577559556%;} .row-fluid .span6{width:48.717948717948715%;*width:48.664757228587014%;} .row-fluid .span5{width:40.17094017094017%;*width:40.11774868157847%;} .row-fluid .span4{width:31.623931623931625%;*width:31.570740134569924%;} .row-fluid .span3{width:23.076923076923077%;*width:23.023731587561375%;} .row-fluid .span2{width:14.52991452991453%;*width:14.476723040552828%;} .row-fluid .span1{width:5.982905982905983%;*width:5.929714493544281%;} .row-fluid .offset12{margin-left:105.12820512820512%;*margin-left:105.02182214948171%;} .row-fluid .offset12:first-child{margin-left:102.56410256410257%;*margin-left:102.45771958537915%;} .row-fluid .offset11{margin-left:96.58119658119658%;*margin-left:96.47481360247316%;} .row-fluid .offset11:first-child{margin-left:94.01709401709402%;*margin-left:93.91071103837061%;} .row-fluid .offset10{margin-left:88.03418803418803%;*margin-left:87.92780505546462%;} .row-fluid .offset10:first-child{margin-left:85.47008547008548%;*margin-left:85.36370249136206%;} .row-fluid .offset9{margin-left:79.48717948717949%;*margin-left:79.38079650845607%;} .row-fluid .offset9:first-child{margin-left:76.92307692307693%;*margin-left:76.81669394435352%;} .row-fluid .offset8{margin-left:70.94017094017094%;*margin-left:70.83378796144753%;} .row-fluid .offset8:first-child{margin-left:68.37606837606839%;*margin-left:68.26968539734497%;} .row-fluid .offset7{margin-left:62.393162393162385%;*margin-left:62.28677941443899%;} .row-fluid .offset7:first-child{margin-left:59.82905982905982%;*margin-left:59.72267685033642%;} .row-fluid .offset6{margin-left:53.84615384615384%;*margin-left:53.739770867430444%;} .row-fluid .offset6:first-child{margin-left:51.28205128205128%;*margin-left:51.175668303327875%;} .row-fluid .offset5{margin-left:45.299145299145295%;*margin-left:45.1927623204219%;} .row-fluid .offset5:first-child{margin-left:42.73504273504273%;*margin-left:42.62865975631933%;} .row-fluid .offset4{margin-left:36.75213675213675%;*margin-left:36.645753773413354%;} .row-fluid .offset4:first-child{margin-left:34.18803418803419%;*margin-left:34.081651209310785%;} .row-fluid .offset3{margin-left:28.205128205128204%;*margin-left:28.0987452264048%;} .row-fluid .offset3:first-child{margin-left:25.641025641025642%;*margin-left:25.53464266230224%;} .row-fluid .offset2{margin-left:19.65811965811966%;*margin-left:19.551736679396257%;} .row-fluid .offset2:first-child{margin-left:17.094017094017094%;*margin-left:16.98763411529369%;} .row-fluid .offset1{margin-left:11.11111111111111%;*margin-left:11.004728132387708%;} .row-fluid .offset1:first-child{margin-left:8.547008547008547%;*margin-left:8.440625568285142%;} input,textarea,.uneditable-input{margin-left:0;} .controls-row [class*="span"]+[class*="span"]{margin-left:30px;} input.span12, textarea.span12, .uneditable-input.span12{width:1156px;} input.span11, textarea.span11, .uneditable-input.span11{width:1056px;} input.span10, textarea.span10, .uneditable-input.span10{width:956px;} input.span9, textarea.span9, .uneditable-input.span9{width:856px;} input.span8, textarea.span8, .uneditable-input.span8{width:756px;} input.span7, textarea.span7, .uneditable-input.span7{width:656px;} input.span6, textarea.span6, .uneditable-input.span6{width:556px;} input.span5, textarea.span5, .uneditable-input.span5{width:456px;} input.span4, textarea.span4, .uneditable-input.span4{width:356px;} input.span3, textarea.span3, .uneditable-input.span3{width:256px;} input.span2, textarea.span2, .uneditable-input.span2{width:156px;} input.span1, textarea.span1, .uneditable-input.span1{width:56px;} .thumbnails{margin-left:-30px;} .thumbnails>li{margin-left:30px;} .row-fluid .thumbnails{margin-left:0;}}@media (max-width:979px){body{padding-top:0;} .navbar-fixed-top,.navbar-fixed-bottom{position:static;} .navbar-fixed-top{margin-bottom:20px;} .navbar-fixed-bottom{margin-top:20px;} .navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding:5px;} .navbar .container{width:auto;padding:0;} .navbar .brand{padding-left:10px;padding-right:10px;margin:0 0 0 -5px;} .nav-collapse{clear:both;} .nav-collapse .nav{float:none;margin:0 0 10px;} .nav-collapse .nav>li{float:none;} .nav-collapse .nav>li>a{margin-bottom:2px;} .nav-collapse .nav>.divider-vertical{display:none;} .nav-collapse .nav .nav-header{color:#777777;text-shadow:none;} .nav-collapse .nav>li>a,.nav-collapse .dropdown-menu a{padding:9px 15px;font-weight:bold;color:#777777;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} .nav-collapse .btn{padding:4px 10px 4px;font-weight:normal;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} .nav-collapse .dropdown-menu li+li a{margin-bottom:2px;} .nav-collapse .nav>li>a:hover,.nav-collapse .dropdown-menu a:hover{background-color:#f2f2f2;} .navbar-inverse .nav-collapse .nav>li>a,.navbar-inverse .nav-collapse .dropdown-menu a{color:#999999;} .navbar-inverse .nav-collapse .nav>li>a:hover,.navbar-inverse .nav-collapse .dropdown-menu a:hover{background-color:#111111;} .nav-collapse.in .btn-group{margin-top:5px;padding:0;} .nav-collapse .dropdown-menu{position:static;top:auto;left:auto;float:none;display:none;max-width:none;margin:0 15px;padding:0;background-color:transparent;border:none;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} .nav-collapse .open>.dropdown-menu{display:block;} .nav-collapse .dropdown-menu:before,.nav-collapse .dropdown-menu:after{display:none;} .nav-collapse .dropdown-menu .divider{display:none;} .nav-collapse .nav>li>.dropdown-menu:before,.nav-collapse .nav>li>.dropdown-menu:after{display:none;} .nav-collapse .navbar-form,.nav-collapse .navbar-search{float:none;padding:10px 15px;margin:10px 0;border-top:1px solid #f2f2f2;border-bottom:1px solid #f2f2f2;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);} .navbar-inverse .nav-collapse .navbar-form,.navbar-inverse .nav-collapse .navbar-search{border-top-color:#111111;border-bottom-color:#111111;} .navbar .nav-collapse .nav.pull-right{float:none;margin-left:0;} .nav-collapse,.nav-collapse.collapse{overflow:hidden;height:0;} .navbar .btn-navbar{display:block;} .navbar-static .navbar-inner{padding-left:10px;padding-right:10px;}}@media (min-width:980px){.nav-collapse.collapse{height:auto !important;overflow:visible !important;}} +]]>
    DateFri, 24 Feb 2023 14:01:44 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Accept-Rangesbytes
    ETagW/"115795-1358437290000"
    Last-ModifiedThu, 17 Jan 2013 15:41:30 GMT
    Cache-Controlmax-age=2419200
    ExpiresFri, 24 Mar 2023 14:01:44 GMT
    Content-Typetext/css;charset=UTF-8
    Content-Length115795
    Keep-Alivetimeout=5, max=100
    ConnectionKeep-Alive
    http://zero.webappsecurity.com:80/resources/js/jquery-1.8.2.min.jshttpzero.webappsecurity.com80=0===c})}function bk(a){var b=bl.split("|"),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}function bC(a,b){return a.getElementsByTagName(b)[0]||a.appendChild(a.ownerDocument.createElement(b))}function bD(a,b){if(b.nodeType!==1||!p.hasData(a))return;var c,d,e,f=p._data(a),g=p._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;d").appendTo(e.body),c=b.css("display");b.remove();if(c==="none"||c===""){bI=e.body.appendChild(bI||p.extend(e.createElement("iframe"),{frameBorder:0,width:0,height:0}));if(!bJ||!bI.createElement)bJ=(bI.contentWindow||bI.contentDocument).document,bJ.write(""),bJ.close();b=bJ.body.appendChild(bJ.createElement(a)),c=bH(b,"display"),e.body.removeChild(bI)}return bS[a]=c,c}function ci(a,b,c,d){var e;if(p.isArray(b))p.each(b,function(b,e){c||ce.test(a)?d(a,e):ci(a+"["+(typeof e=="object"?b:"")+"]",e,c,d)});else if(!c&&p.type(b)==="object")for(e in b)ci(a+"["+e+"]",b[e],c,d);else d(a,b)}function cz(a){return function(b,c){typeof b!="string"&&(c=b,b="*");var d,e,f,g=b.toLowerCase().split(s),h=0,i=g.length;if(p.isFunction(c))for(;h)[^>]*$|#([\w\-]*)$)/,v=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,w=/^[\],:{}\s]*$/,x=/(?:^|:|,)(?:\s*\[)+/g,y=/\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,z=/"[^"\\\r\n]*"|true|false|null|-?(?:\d\d*\.|)\d+(?:[eE][\-+]?\d+|)/g,A=/^-ms-/,B=/-([\da-z])/gi,C=function(a,b){return(b+"").toUpperCase()},D=function(){e.addEventListener?(e.removeEventListener("DOMContentLoaded",D,!1),p.ready()):e.readyState==="complete"&&(e.detachEvent("onreadystatechange",D),p.ready())},E={};p.fn=p.prototype={constructor:p,init:function(a,c,d){var f,g,h,i;if(!a)return this;if(a.nodeType)return this.context=this[0]=a,this.length=1,this;if(typeof a=="string"){a.charAt(0)==="<"&&a.charAt(a.length-1)===">"&&a.length>=3?f=[null,a,null]:f=u.exec(a);if(f&&(f[1]||!c)){if(f[1])return c=c instanceof p?c[0]:c,i=c&&c.nodeType?c.ownerDocument||c:e,a=p.parseHTML(f[1],i,!0),v.test(f[1])&&p.isPlainObject(c)&&this.attr.call(a,c,!0),p.merge(this,a);g=e.getElementById(f[2]);if(g&&g.parentNode){if(g.id!==f[2])return d.find(a);this.length=1,this[0]=g}return this.context=e,this.selector=a,this}return!c||c.jquery?(c||d).find(a):this.constructor(c).find(a)}return p.isFunction(a)?d.ready(a):(a.selector!==b&&(this.selector=a.selector,this.context=a.context),p.makeArray(a,this))},selector:"",jquery:"1.8.2",length:0,size:function(){return this.length},toArray:function(){return k.call(this)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=p.merge(this.constructor(),a);return d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")"),d},each:function(a,b){return p.each(this,a,b)},ready:function(a){return p.ready.promise().done(a),this},eq:function(a){return a=+a,a===-1?this.slice(a):this.slice(a,a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(k.apply(this,arguments),"slice",k.call(arguments).join(","))},map:function(a){return this.pushStack(p.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:j,sort:[].sort,splice:[].splice},p.fn.init.prototype=p.fn,p.extend=p.fn.extend=function(){var a,c,d,e,f,g,h=arguments[0]||{},i=1,j=arguments.length,k=!1;typeof h=="boolean"&&(k=h,h=arguments[1]||{},i=2),typeof h!="object"&&!p.isFunction(h)&&(h={}),j===i&&(h=this,--i);for(;i0)return;d.resolveWith(e,[p]),p.fn.trigger&&p(e).trigger("ready").off("ready")},isFunction:function(a){return p.type(a)==="function"},isArray:Array.isArray||function(a){return p.type(a)==="array"},isWindow:function(a){return a!=null&&a==a.window},isNumeric:function(a){return!isNaN(parseFloat(a))&&isFinite(a)},type:function(a){return a==null?String(a):E[m.call(a)]||"object"},isPlainObject:function(a){if(!a||p.type(a)!=="object"||a.nodeType||p.isWindow(a))return!1;try{if(a.constructor&&!n.call(a,"constructor")&&!n.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||n.call(a,d)},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},error:function(a){throw new Error(a)},parseHTML:function(a,b,c){var d;return!a||typeof a!="string"?null:(typeof b=="boolean"&&(c=b,b=0),b=b||e,(d=v.exec(a))?[b.createElement(d[1])]:(d=p.buildFragment([a],b,c?null:[]),p.merge([],(d.cacheable?p.clone(d.fragment):d.fragment).childNodes)))},parseJSON:function(b){if(!b||typeof b!="string")return null;b=p.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(w.test(b.replace(y,"@").replace(z,"]").replace(x,"")))return(new Function("return "+b))();p.error("Invalid JSON: "+b)},parseXML:function(c){var d,e;if(!c||typeof c!="string")return null;try{a.DOMParser?(e=new DOMParser,d=e.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(f){d=b}return(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&p.error("Invalid XML: "+c),d},noop:function(){},globalEval:function(b){b&&r.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(A,"ms-").replace(B,C)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,c,d){var e,f=0,g=a.length,h=g===b||p.isFunction(a);if(d){if(h){for(e in a)if(c.apply(a[e],d)===!1)break}else for(;f0&&a[0]&&a[i-1]||i===0||p.isArray(a));if(j)for(;h-1)i.splice(c,1),e&&(c<=g&&g--,c<=h&&h--)}),this},has:function(a){return p.inArray(a,i)>-1},empty:function(){return i=[],this},disable:function(){return i=j=c=b,this},disabled:function(){return!i},lock:function(){return j=b,c||l.disable(),this},locked:function(){return!j},fireWith:function(a,b){return b=b||[],b=[a,b.slice?b.slice():b],i&&(!d||j)&&(e?j.push(b):k(b)),this},fire:function(){return l.fireWith(this,arguments),this},fired:function(){return!!d}};return l},p.extend({Deferred:function(a){var b=[["resolve","done",p.Callbacks("once memory"),"resolved"],["reject","fail",p.Callbacks("once memory"),"rejected"],["notify","progress",p.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return p.Deferred(function(c){p.each(b,function(b,d){var f=d[0],g=a[b];e[d[1]](p.isFunction(g)?function(){var a=g.apply(this,arguments);a&&p.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f+"With"](this===e?c:this,[a])}:c[f])}),a=null}).promise()},promise:function(a){return a!=null?p.extend(a,d):d}},e={};return d.pipe=d.then,p.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[a^1][2].disable,b[2][2].lock),e[f[0]]=g.fire,e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=k.call(arguments),d=c.length,e=d!==1||a&&p.isFunction(a.promise)?d:0,f=e===1?a:p.Deferred(),g=function(a,b,c){return function(d){b[a]=this,c[a]=arguments.length>1?k.call(arguments):d,c===h?f.notifyWith(b,c):--e||f.resolveWith(b,c)}},h,i,j;if(d>1){h=new Array(d),i=new Array(d),j=new Array(d);for(;b
    a",c=n.getElementsByTagName("*"),d=n.getElementsByTagName("a")[0],d.style.cssText="top:1px;float:left;opacity:.5";if(!c||!c.length)return{};f=e.createElement("select"),g=f.appendChild(e.createElement("option")),h=n.getElementsByTagName("input")[0],b={leadingWhitespace:n.firstChild.nodeType===3,tbody:!n.getElementsByTagName("tbody").length,htmlSerialize:!!n.getElementsByTagName("link").length,style:/top/.test(d.getAttribute("style")),hrefNormalized:d.getAttribute("href")==="/a",opacity:/^0.5/.test(d.style.opacity),cssFloat:!!d.style.cssFloat,checkOn:h.value==="on",optSelected:g.selected,getSetAttribute:n.className!=="t",enctype:!!e.createElement("form").enctype,html5Clone:e.createElement("nav").cloneNode(!0).outerHTML!=="<:nav>",boxModel:e.compatMode==="CSS1Compat",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0,boxSizingReliable:!0,pixelPosition:!1},h.checked=!0,b.noCloneChecked=h.cloneNode(!0).checked,f.disabled=!0,b.optDisabled=!g.disabled;try{delete n.test}catch(o){b.deleteExpando=!1}!n.addEventListener&&n.attachEvent&&n.fireEvent&&(n.attachEvent("onclick",m=function(){b.noCloneEvent=!1}),n.cloneNode(!0).fireEvent("onclick"),n.detachEvent("onclick",m)),h=e.createElement("input"),h.value="t",h.setAttribute("type","radio"),b.radioValue=h.value==="t",h.setAttribute("checked","checked"),h.setAttribute("name","t"),n.appendChild(h),i=e.createDocumentFragment(),i.appendChild(n.lastChild),b.checkClone=i.cloneNode(!0).cloneNode(!0).lastChild.checked,b.appendChecked=h.checked,i.removeChild(h),i.appendChild(n);if(n.attachEvent)for(k in{submit:!0,change:!0,focusin:!0})j="on"+k,l=j in n,l||(n.setAttribute(j,"return;"),l=typeof n[j]=="function"),b[k+"Bubbles"]=l;return p(function(){var c,d,f,g,h="padding:0;margin:0;border:0;display:block;overflow:hidden;",i=e.getElementsByTagName("body")[0];if(!i)return;c=e.createElement("div"),c.style.cssText="visibility:hidden;border:0;width:0;height:0;position:static;top:0;margin-top:1px",i.insertBefore(c,i.firstChild),d=e.createElement("div"),c.appendChild(d),d.innerHTML="
    t
    ",f=d.getElementsByTagName("td"),f[0].style.cssText="padding:0;margin:0;border:0;display:none",l=f[0].offsetHeight===0,f[0].style.display="",f[1].style.display="none",b.reliableHiddenOffsets=l&&f[0].offsetHeight===0,d.innerHTML="",d.style.cssText="box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;",b.boxSizing=d.offsetWidth===4,b.doesNotIncludeMarginInBodyOffset=i.offsetTop!==1,a.getComputedStyle&&(b.pixelPosition=(a.getComputedStyle(d,null)||{}).top!=="1%",b.boxSizingReliable=(a.getComputedStyle(d,null)||{width:"4px"}).width==="4px",g=e.createElement("div"),g.style.cssText=d.style.cssText=h,g.style.marginRight=g.style.width="0",d.style.width="1px",d.appendChild(g),b.reliableMarginRight=!parseFloat((a.getComputedStyle(g,null)||{}).marginRight)),typeof d.style.zoom!="undefined"&&(d.innerHTML="",d.style.cssText=h+"width:1px;padding:1px;display:inline;zoom:1",b.inlineBlockNeedsLayout=d.offsetWidth===3,d.style.display="block",d.style.overflow="visible",d.innerHTML="
    ",d.firstChild.style.width="5px",b.shrinkWrapBlocks=d.offsetWidth!==3,c.style.zoom=1),i.removeChild(c),c=d=f=g=null}),i.removeChild(n),c=d=f=g=h=i=n=null,b}();var H=/(?:\{[\s\S]*\}|\[[\s\S]*\])$/,I=/([A-Z])/g;p.extend({cache:{},deletedIds:[],uuid:0,expando:"jQuery"+(p.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){return a=a.nodeType?p.cache[a[p.expando]]:a[p.expando],!!a&&!K(a)},data:function(a,c,d,e){if(!p.acceptData(a))return;var f,g,h=p.expando,i=typeof c=="string",j=a.nodeType,k=j?p.cache:a,l=j?a[h]:a[h]&&h;if((!l||!k[l]||!e&&!k[l].data)&&i&&d===b)return;l||(j?a[h]=l=p.deletedIds.pop()||p.guid++:l=h),k[l]||(k[l]={},j||(k[l].toJSON=p.noop));if(typeof c=="object"||typeof c=="function")e?k[l]=p.extend(k[l],c):k[l].data=p.extend(k[l].data,c);return f=k[l],e||(f.data||(f.data={}),f=f.data),d!==b&&(f[p.camelCase(c)]=d),i?(g=f[c],g==null&&(g=f[p.camelCase(c)])):g=f,g},removeData:function(a,b,c){if(!p.acceptData(a))return;var d,e,f,g=a.nodeType,h=g?p.cache:a,i=g?a[p.expando]:p.expando;if(!h[i])return;if(b){d=c?h[i]:h[i].data;if(d){p.isArray(b)||(b in d?b=[b]:(b=p.camelCase(b),b in d?b=[b]:b=b.split(" ")));for(e=0,f=b.length;e1,null,!1))},removeData:function(a){return this.each(function(){p.removeData(this,a)})}}),p.extend({queue:function(a,b,c){var d;if(a)return b=(b||"fx")+"queue",d=p._data(a,b),c&&(!d||p.isArray(c)?d=p._data(a,b,p.makeArray(c)):d.push(c)),d||[]},dequeue:function(a,b){b=b||"fx";var c=p.queue(a,b),d=c.length,e=c.shift(),f=p._queueHooks(a,b),g=function(){p.dequeue(a,b)};e==="inprogress"&&(e=c.shift(),d--),e&&(b==="fx"&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return p._data(a,c)||p._data(a,c,{empty:p.Callbacks("once memory").add(function(){p.removeData(a,b+"queue",!0),p.removeData(a,c,!0)})})}}),p.fn.extend({queue:function(a,c){var d=2;return typeof a!="string"&&(c=a,a="fx",d--),arguments.length1)},removeAttr:function(a){return this.each(function(){p.removeAttr(this,a)})},prop:function(a,b){return p.access(this,p.prop,a,b,arguments.length>1)},removeProp:function(a){return a=p.propFix[a]||a,this.each(function(){try{this[a]=b,delete this[a]}catch(c){}})},addClass:function(a){var b,c,d,e,f,g,h;if(p.isFunction(a))return this.each(function(b){p(this).addClass(a.call(this,b,this.className))});if(a&&typeof a=="string"){b=a.split(s);for(c=0,d=this.length;c=0)d=d.replace(" "+c[f]+" "," ");e.className=a?p.trim(d):""}}}return this},toggleClass:function(a,b){var c=typeof a,d=typeof b=="boolean";return p.isFunction(a)?this.each(function(c){p(this).toggleClass(a.call(this,c,this.className,b),b)}):this.each(function(){if(c==="string"){var e,f=0,g=p(this),h=b,i=a.split(s);while(e=i[f++])h=d?h:!g.hasClass(e),g[h?"addClass":"removeClass"](e)}else if(c==="undefined"||c==="boolean")this.className&&p._data(this,"__className__",this.className),this.className=this.className||a===!1?"":p._data(this,"__className__")||""})},hasClass:function(a){var b=" "+a+" ",c=0,d=this.length;for(;c=0)return!0;return!1},val:function(a){var c,d,e,f=this[0];if(!arguments.length){if(f)return c=p.valHooks[f.type]||p.valHooks[f.nodeName.toLowerCase()],c&&"get"in c&&(d=c.get(f,"value"))!==b?d:(d=f.value,typeof d=="string"?d.replace(P,""):d==null?"":d);return}return e=p.isFunction(a),this.each(function(d){var f,g=p(this);if(this.nodeType!==1)return;e?f=a.call(this,d,g.val()):f=a,f==null?f="":typeof f=="number"?f+="":p.isArray(f)&&(f=p.map(f,function(a){return a==null?"":a+""})),c=p.valHooks[this.type]||p.valHooks[this.nodeName.toLowerCase()];if(!c||!("set"in c)||c.set(this,f,"value")===b)this.value=f})}}),p.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c,d,e,f=a.selectedIndex,g=[],h=a.options,i=a.type==="select-one";if(f<0)return null;c=i?f:0,d=i?f+1:h.length;for(;c=0}),c.length||(a.selectedIndex=-1),c}}},attrFn:{},attr:function(a,c,d,e){var f,g,h,i=a.nodeType;if(!a||i===3||i===8||i===2)return;if(e&&p.isFunction(p.fn[c]))return p(a)[c](d);if(typeof a.getAttribute=="undefined")return p.prop(a,c,d);h=i!==1||!p.isXMLDoc(a),h&&(c=c.toLowerCase(),g=p.attrHooks[c]||(T.test(c)?M:L));if(d!==b){if(d===null){p.removeAttr(a,c);return}return g&&"set"in g&&h&&(f=g.set(a,d,c))!==b?f:(a.setAttribute(c,d+""),d)}return g&&"get"in g&&h&&(f=g.get(a,c))!==null?f:(f=a.getAttribute(c),f===null?b:f)},removeAttr:function(a,b){var c,d,e,f,g=0;if(b&&a.nodeType===1){d=b.split(s);for(;g=0}})});var V=/^(?:textarea|input|select)$/i,W=/^([^\.]*|)(?:\.(.+)|)$/,X=/(?:^|\s)hover(\.\S+|)\b/,Y=/^key/,Z=/^(?:mouse|contextmenu)|click/,$=/^(?:focusinfocus|focusoutblur)$/,_=function(a){return p.event.special.hover?a:a.replace(X,"mouseenter$1 mouseleave$1")};p.event={add:function(a,c,d,e,f){var g,h,i,j,k,l,m,n,o,q,r;if(a.nodeType===3||a.nodeType===8||!c||!d||!(g=p._data(a)))return;d.handler&&(o=d,d=o.handler,f=o.selector),d.guid||(d.guid=p.guid++),i=g.events,i||(g.events=i={}),h=g.handle,h||(g.handle=h=function(a){return typeof p!="undefined"&&(!a||p.event.triggered!==a.type)?p.event.dispatch.apply(h.elem,arguments):b},h.elem=a),c=p.trim(_(c)).split(" ");for(j=0;j=0&&(s=s.slice(0,-1),i=!0),s.indexOf(".")>=0&&(t=s.split("."),s=t.shift(),t.sort());if((!f||p.event.customEvent[s])&&!p.event.global[s])return;c=typeof c=="object"?c[p.expando]?c:new p.Event(s,c):new p.Event(s),c.type=s,c.isTrigger=!0,c.exclusive=i,c.namespace=t.join("."),c.namespace_re=c.namespace?new RegExp("(^|\\.)"+t.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,m=s.indexOf(":")<0?"on"+s:"";if(!f){h=p.cache;for(j in h)h[j].events&&h[j].events[s]&&p.event.trigger(c,d,h[j].handle.elem,!0);return}c.result=b,c.target||(c.target=f),d=d!=null?p.makeArray(d):[],d.unshift(c),n=p.event.special[s]||{};if(n.trigger&&n.trigger.apply(f,d)===!1)return;q=[[f,n.bindType||s]];if(!g&&!n.noBubble&&!p.isWindow(f)){r=n.delegateType||s,k=$.test(r+s)?f:f.parentNode;for(l=f;k;k=k.parentNode)q.push([k,r]),l=k;l===(f.ownerDocument||e)&&q.push([l.defaultView||l.parentWindow||a,r])}for(j=0;j=0:p.find(m,this,null,[f]).length),h[m]&&j.push(l);j.length&&u.push({elem:f,matches:j})}o.length>q&&u.push({elem:this,matches:o.slice(q)});for(d=0;d0?this.on(b,null,a,c):this.trigger(b)},Y.test(b)&&(p.event.fixHooks[b]=p.event.keyHooks),Z.test(b)&&(p.event.fixHooks[b]=p.event.mouseHooks)}),function(a,b){function bc(a,b,c,d){c=c||[],b=b||r;var e,f,i,j,k=b.nodeType;if(!a||typeof a!="string")return c;if(k!==1&&k!==9)return[];i=g(b);if(!i&&!d)if(e=P.exec(a))if(j=e[1]){if(k===9){f=b.getElementById(j);if(!f||!f.parentNode)return c;if(f.id===j)return c.push(f),c}else if(b.ownerDocument&&(f=b.ownerDocument.getElementById(j))&&h(b,f)&&f.id===j)return c.push(f),c}else{if(e[2])return w.apply(c,x.call(b.getElementsByTagName(a),0)),c;if((j=e[3])&&_&&b.getElementsByClassName)return w.apply(c,x.call(b.getElementsByClassName(j),0)),c}return bp(a.replace(L,"$1"),b,c,d,i)}function bd(a){return function(b){var c=b.nodeName.toLowerCase();return c==="input"&&b.type===a}}function be(a){return function(b){var c=b.nodeName.toLowerCase();return(c==="input"||c==="button")&&b.type===a}}function bf(a){return z(function(b){return b=+b,z(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function bg(a,b,c){if(a===b)return c;var d=a.nextSibling;while(d){if(d===b)return-1;d=d.nextSibling}return 1}function bh(a,b){var c,d,f,g,h,i,j,k=C[o][a];if(k)return b?0:k.slice(0);h=a,i=[],j=e.preFilter;while(h){if(!c||(d=M.exec(h)))d&&(h=h.slice(d[0].length)),i.push(f=[]);c=!1;if(d=N.exec(h))f.push(c=new q(d.shift())),h=h.slice(c.length),c.type=d[0].replace(L," ");for(g in e.filter)(d=W[g].exec(h))&&(!j[g]||(d=j[g](d,r,!0)))&&(f.push(c=new q(d.shift())),h=h.slice(c.length),c.type=g,c.matches=d);if(!c)break}return b?h.length:h?bc.error(a):C(a,i).slice(0)}function bi(a,b,d){var e=b.dir,f=d&&b.dir==="parentNode",g=u++;return b.first?function(b,c,d){while(b=b[e])if(f||b.nodeType===1)return a(b,c,d)}:function(b,d,h){if(!h){var i,j=t+" "+g+" ",k=j+c;while(b=b[e])if(f||b.nodeType===1){if((i=b[o])===k)return b.sizset;if(typeof i=="string"&&i.indexOf(j)===0){if(b.sizset)return b}else{b[o]=k;if(a(b,d,h))return b.sizset=!0,b;b.sizset=!1}}}else while(b=b[e])if(f||b.nodeType===1)if(a(b,d,h))return b}}function bj(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function bk(a,b,c,d,e){var f,g=[],h=0,i=a.length,j=b!=null;for(;h-1},h,!0),m=[function(a,c,d){return!g&&(d||c!==l)||((b=c).nodeType?j(a,c,d):k(a,c,d))}];for(;i1&&bj(m),i>1&&a.slice(0,i-1).join("").replace(L,"$1"),c,i0,f=a.length>0,g=function(h,i,j,k,m){var n,o,p,q=[],s=0,u="0",x=h&&[],y=m!=null,z=l,A=h||f&&e.find.TAG("*",m&&i.parentNode||i),B=t+=z==null?1:Math.E;y&&(l=i!==r&&i,c=g.el);for(;(n=A[u])!=null;u++){if(f&&n){for(o=0;p=a[o];o++)if(p(n,i,j)){k.push(n);break}y&&(t=B,c=++g.el)}d&&((n=!p&&n)&&s--,h&&x.push(n))}s+=u;if(d&&u!==s){for(o=0;p=b[o];o++)p(x,q,i,j);if(h){if(s>0)while(u--)!x[u]&&!q[u]&&(q[u]=v.call(k));q=bk(q)}w.apply(k,q),y&&!h&&q.length>0&&s+b.length>1&&bc.uniqueSort(k)}return y&&(t=B,l=z),x};return g.el=0,d?z(g):g}function bo(a,b,c,d){var e=0,f=b.length;for(;e2&&(j=h[0]).type==="ID"&&b.nodeType===9&&!f&&e.relative[h[1].type]){b=e.find.ID(j.matches[0].replace(V,""),b,f)[0];if(!b)return c;a=a.slice(h.shift().length)}for(g=W.POS.test(a)?-1:h.length-1;g>=0;g--){j=h[g];if(e.relative[k=j.type])break;if(l=e.find[k])if(d=l(j.matches[0].replace(V,""),R.test(h[0].type)&&b.parentNode||b,f)){h.splice(g,1),a=d.length&&h.join("");if(!a)return w.apply(c,x.call(d,0)),c;break}}}return i(a,m)(d,b,f,c,R.test(a)),c}function bq(){}var c,d,e,f,g,h,i,j,k,l,m=!0,n="undefined",o=("sizcache"+Math.random()).replace(".",""),q=String,r=a.document,s=r.documentElement,t=0,u=0,v=[].pop,w=[].push,x=[].slice,y=[].indexOf||function(a){var b=0,c=this.length;for(;be.cacheLength&&delete a[b.shift()],a[c]=d},a)},B=A(),C=A(),D=A(),E="[\\x20\\t\\r\\n\\f]",F="(?:\\\\.|[-\\w]|[^\\x00-\\xa0])+",G=F.replace("w","w#"),H="([*^$|!~]?=)",I="\\["+E+"*("+F+")"+E+"*(?:"+H+E+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+G+")|)|)"+E+"*\\]",J=":("+F+")(?:\\((?:(['\"])((?:\\\\.|[^\\\\])*?)\\2|([^()[\\]]*|(?:(?:"+I+")|[^:]|\\\\.)*|.*))\\)|)",K=":(even|odd|eq|gt|lt|nth|first|last)(?:\\("+E+"*((?:-\\d)?\\d*)"+E+"*\\)|)(?=[^-]|$)",L=new RegExp("^"+E+"+|((?:^|[^\\\\])(?:\\\\.)*)"+E+"+$","g"),M=new RegExp("^"+E+"*,"+E+"*"),N=new RegExp("^"+E+"*([\\x20\\t\\r\\n\\f>+~])"+E+"*"),O=new RegExp(J),P=/^(?:#([\w\-]+)|(\w+)|\.([\w\-]+))$/,Q=/^:not/,R=/[\x20\t\r\n\f]*[+~]/,S=/:not\($/,T=/h\d/i,U=/input|select|textarea|button/i,V=/\\(?!\\)/g,W={ID:new RegExp("^#("+F+")"),CLASS:new RegExp("^\\.("+F+")"),NAME:new RegExp("^\\[name=['\"]?("+F+")['\"]?\\]"),TAG:new RegExp("^("+F.replace("w","w*")+")"),ATTR:new RegExp("^"+I),PSEUDO:new RegExp("^"+J),POS:new RegExp(K,"i"),CHILD:new RegExp("^:(only|nth|first|last)-child(?:\\("+E+"*(even|odd|(([+-]|)(\\d*)n|)"+E+"*(?:([+-]|)"+E+"*(\\d+)|))"+E+"*\\)|)","i"),needsContext:new RegExp("^"+E+"*[>+~]|"+K,"i")},X=function(a){var b=r.createElement("div");try{return a(b)}catch(c){return!1}finally{b=null}},Y=X(function(a){return a.appendChild(r.createComment("")),!a.getElementsByTagName("*").length}),Z=X(function(a){return a.innerHTML="",a.firstChild&&typeof a.firstChild.getAttribute!==n&&a.firstChild.getAttribute("href")==="#"}),$=X(function(a){a.innerHTML="";var b=typeof a.lastChild.getAttribute("multiple");return b!=="boolean"&&b!=="string"}),_=X(function(a){return a.innerHTML="",!a.getElementsByClassName||!a.getElementsByClassName("e").length?!1:(a.lastChild.className="e",a.getElementsByClassName("e").length===2)}),ba=X(function(a){a.id=o+0,a.innerHTML="
    ",s.insertBefore(a,s.firstChild);var b=r.getElementsByName&&r.getElementsByName(o).length===2+r.getElementsByName(o+0).length;return d=!r.getElementById(o),s.removeChild(a),b});try{x.call(s.childNodes,0)[0].nodeType}catch(bb){x=function(a){var b,c=[];for(;b=this[a];a++)c.push(b);return c}}bc.matches=function(a,b){return bc(a,null,null,b)},bc.matchesSelector=function(a,b){return bc(b,null,null,[a]).length>0},f=bc.getText=function(a){var b,c="",d=0,e=a.nodeType;if(e){if(e===1||e===9||e===11){if(typeof a.textContent=="string")return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=f(a)}else if(e===3||e===4)return a.nodeValue}else for(;b=a[d];d++)c+=f(b);return c},g=bc.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?b.nodeName!=="HTML":!1},h=bc.contains=s.contains?function(a,b){var c=a.nodeType===9?a.documentElement:a,d=b&&b.parentNode;return a===d||!!(d&&d.nodeType===1&&c.contains&&c.contains(d))}:s.compareDocumentPosition?function(a,b){return b&&!!(a.compareDocumentPosition(b)&16)}:function(a,b){while(b=b.parentNode)if(b===a)return!0;return!1},bc.attr=function(a,b){var c,d=g(a);return d||(b=b.toLowerCase()),(c=e.attrHandle[b])?c(a):d||$?a.getAttribute(b):(c=a.getAttributeNode(b),c?typeof a[b]=="boolean"?a[b]?b:null:c.specified?c.value:null:null)},e=bc.selectors={cacheLength:50,createPseudo:z,match:W,attrHandle:Z?{}:{href:function(a){return a.getAttribute("href",2)},type:function(a){return a.getAttribute("type")}},find:{ID:d?function(a,b,c){if(typeof b.getElementById!==n&&!c){var d=b.getElementById(a);return d&&d.parentNode?[d]:[]}}:function(a,c,d){if(typeof c.getElementById!==n&&!d){var e=c.getElementById(a);return e?e.id===a||typeof e.getAttributeNode!==n&&e.getAttributeNode("id").value===a?[e]:b:[]}},TAG:Y?function(a,b){if(typeof b.getElementsByTagName!==n)return b.getElementsByTagName(a)}:function(a,b){var c=b.getElementsByTagName(a);if(a==="*"){var d,e=[],f=0;for(;d=c[f];f++)d.nodeType===1&&e.push(d);return e}return c},NAME:ba&&function(a,b){if(typeof b.getElementsByName!==n)return b.getElementsByName(name)},CLASS:_&&function(a,b,c){if(typeof b.getElementsByClassName!==n&&!c)return b.getElementsByClassName(a)}},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(V,""),a[3]=(a[4]||a[5]||"").replace(V,""),a[2]==="~="&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),a[1]==="nth"?(a[2]||bc.error(a[0]),a[3]=+(a[3]?a[4]+(a[5]||1):2*(a[2]==="even"||a[2]==="odd")),a[4]=+(a[6]+a[7]||a[2]==="odd")):a[2]&&bc.error(a[0]),a},PSEUDO:function(a){var b,c;if(W.CHILD.test(a[0]))return null;if(a[3])a[2]=a[3];else if(b=a[4])O.test(b)&&(c=bh(b,!0))&&(c=b.indexOf(")",b.length-c)-b.length)&&(b=b.slice(0,c),a[0]=a[0].slice(0,c)),a[2]=b;return a.slice(0,3)}},filter:{ID:d?function(a){return a=a.replace(V,""),function(b){return b.getAttribute("id")===a}}:function(a){return a=a.replace(V,""),function(b){var c=typeof b.getAttributeNode!==n&&b.getAttributeNode("id");return c&&c.value===a}},TAG:function(a){return a==="*"?function(){return!0}:(a=a.replace(V,"").toLowerCase(),function(b){return b.nodeName&&b.nodeName.toLowerCase()===a})},CLASS:function(a){var b=B[o][a];return b||(b=B(a,new RegExp("(^|"+E+")"+a+"("+E+"|$)"))),function(a){return b.test(a.className||typeof a.getAttribute!==n&&a.getAttribute("class")||"")}},ATTR:function(a,b,c){return function(d,e){var f=bc.attr(d,a);return f==null?b==="!=":b?(f+="",b==="="?f===c:b==="!="?f!==c:b==="^="?c&&f.indexOf(c)===0:b==="*="?c&&f.indexOf(c)>-1:b==="$="?c&&f.substr(f.length-c.length)===c:b==="~="?(" "+f+" ").indexOf(c)>-1:b==="|="?f===c||f.substr(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d){return a==="nth"?function(a){var b,e,f=a.parentNode;if(c===1&&d===0)return!0;if(f){e=0;for(b=f.firstChild;b;b=b.nextSibling)if(b.nodeType===1){e++;if(a===b)break}}return e-=d,e===c||e%c===0&&e/c>=0}:function(b){var c=b;switch(a){case"only":case"first":while(c=c.previousSibling)if(c.nodeType===1)return!1;if(a==="first")return!0;c=b;case"last":while(c=c.nextSibling)if(c.nodeType===1)return!1;return!0}}},PSEUDO:function(a,b){var c,d=e.pseudos[a]||e.setFilters[a.toLowerCase()]||bc.error("unsupported pseudo: "+a);return d[o]?d(b):d.length>1?(c=[a,a,"",b],e.setFilters.hasOwnProperty(a.toLowerCase())?z(function(a,c){var e,f=d(a,b),g=f.length;while(g--)e=y.call(a,f[g]),a[e]=!(c[e]=f[g])}):function(a){return d(a,0,c)}):d}},pseudos:{not:z(function(a){var b=[],c=[],d=i(a.replace(L,"$1"));return d[o]?z(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)if(f=g[h])a[h]=!(b[h]=f)}):function(a,e,f){return b[0]=a,d(b,null,f,c),!c.pop()}}),has:z(function(a){return function(b){return bc(a,b).length>0}}),contains:z(function(a){return function(b){return(b.textContent||b.innerText||f(b)).indexOf(a)>-1}}),enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&!!a.checked||b==="option"&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},parent:function(a){return!e.pseudos.empty(a)},empty:function(a){var b;a=a.firstChild;while(a){if(a.nodeName>"@"||(b=a.nodeType)===3||b===4)return!1;a=a.nextSibling}return!0},header:function(a){return T.test(a.nodeName)},text:function(a){var b,c;return a.nodeName.toLowerCase()==="input"&&(b=a.type)==="text"&&((c=a.getAttribute("type"))==null||c.toLowerCase()===b)},radio:bd("radio"),checkbox:bd("checkbox"),file:bd("file"),password:bd("password"),image:bd("image"),submit:be("submit"),reset:be("reset"),button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&a.type==="button"||b==="button"},input:function(a){return U.test(a.nodeName)},focus:function(a){var b=a.ownerDocument;return a===b.activeElement&&(!b.hasFocus||b.hasFocus())&&(!!a.type||!!a.href)},active:function(a){return a===a.ownerDocument.activeElement},first:bf(function(a,b,c){return[0]}),last:bf(function(a,b,c){return[b-1]}),eq:bf(function(a,b,c){return[c<0?c+b:c]}),even:bf(function(a,b,c){for(var d=0;d=0;)a.push(d);return a}),gt:bf(function(a,b,c){for(var d=c<0?c+b:c;++d",a.querySelectorAll("[selected]").length||e.push("\\["+E+"*(?:checked|disabled|ismap|multiple|readonly|selected|value)"),a.querySelectorAll(":checked").length||e.push(":checked")}),X(function(a){a.innerHTML="

    ",a.querySelectorAll("[test^='']").length&&e.push("[*^$]="+E+"*(?:\"\"|'')"),a.innerHTML="",a.querySelectorAll(":enabled").length||e.push(":enabled",":disabled")}),e=new RegExp(e.join("|")),bp=function(a,d,f,g,h){if(!g&&!h&&(!e||!e.test(a))){var i,j,k=!0,l=o,m=d,n=d.nodeType===9&&a;if(d.nodeType===1&&d.nodeName.toLowerCase()!=="object"){i=bh(a),(k=d.getAttribute("id"))?l=k.replace(c,"\\$&"):d.setAttribute("id",l),l="[id='"+l+"'] ",j=i.length;while(j--)i[j]=l+i[j].join("");m=R.test(a)&&d.parentNode||d,n=i.join(",")}if(n)try{return w.apply(f,x.call(m.querySelectorAll(n),0)),f}catch(p){}finally{k||d.removeAttribute("id")}}return b(a,d,f,g,h)},h&&(X(function(b){a=h.call(b,"div");try{h.call(b,"[test!='']:sizzle"),f.push("!=",J)}catch(c){}}),f=new RegExp(f.join("|")),bc.matchesSelector=function(b,c){c=c.replace(d,"='$1']");if(!g(b)&&!f.test(c)&&(!e||!e.test(c)))try{var i=h.call(b,c);if(i||a||b.document&&b.document.nodeType!==11)return i}catch(j){}return bc(c,null,null,[b]).length>0})}(),e.pseudos.nth=e.pseudos.eq,e.filters=bq.prototype=e.pseudos,e.setFilters=new bq,bc.attr=p.attr,p.find=bc,p.expr=bc.selectors,p.expr[":"]=p.expr.pseudos,p.unique=bc.uniqueSort,p.text=bc.getText,p.isXMLDoc=bc.isXML,p.contains=bc.contains}(a);var bc=/Until$/,bd=/^(?:parents|prev(?:Until|All))/,be=/^.[^:#\[\.,]*$/,bf=p.expr.match.needsContext,bg={children:!0,contents:!0,next:!0,prev:!0};p.fn.extend({find:function(a){var b,c,d,e,f,g,h=this;if(typeof a!="string")return p(a).filter(function(){for(b=0,c=h.length;b0)for(e=d;e=0:p.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c,d=0,e=this.length,f=[],g=bf.test(a)||typeof a!="string"?p(a,b||this.context):0;for(;d-1:p.find.matchesSelector(c,a)){f.push(c);break}c=c.parentNode}}return f=f.length>1?p.unique(f):f,this.pushStack(f,"closest",a)},index:function(a){return a?typeof a=="string"?p.inArray(this[0],p(a)):p.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.prevAll().length:-1},add:function(a,b){var c=typeof a=="string"?p(a,b):p.makeArray(a&&a.nodeType?[a]:a),d=p.merge(this.get(),c);return this.pushStack(bh(c[0])||bh(d[0])?d:p.unique(d))},addBack:function(a){return this.add(a==null?this.prevObject:this.prevObject.filter(a))}}),p.fn.andSelf=p.fn.addBack,p.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return p.dir(a,"parentNode")},parentsUntil:function(a,b,c){return p.dir(a,"parentNode",c)},next:function(a){return bi(a,"nextSibling")},prev:function(a){return bi(a,"previousSibling")},nextAll:function(a){return p.dir(a,"nextSibling")},prevAll:function(a){return p.dir(a,"previousSibling")},nextUntil:function(a,b,c){return p.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return p.dir(a,"previousSibling",c)},siblings:function(a){return p.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return p.sibling(a.firstChild)},contents:function(a){return p.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:p.merge([],a.childNodes)}},function(a,b){p.fn[a]=function(c,d){var e=p.map(this,b,c);return bc.test(a)||(d=c),d&&typeof d=="string"&&(e=p.filter(d,e)),e=this.length>1&&!bg[a]?p.unique(e):e,this.length>1&&bd.test(a)&&(e=e.reverse()),this.pushStack(e,a,k.call(arguments).join(","))}}),p.extend({filter:function(a,b,c){return c&&(a=":not("+a+")"),b.length===1?p.find.matchesSelector(b[0],a)?[b[0]]:[]:p.find.matches(a,b)},dir:function(a,c,d){var e=[],f=a[c];while(f&&f.nodeType!==9&&(d===b||f.nodeType!==1||!p(f).is(d)))f.nodeType===1&&e.push(f),f=f[c];return e},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var bl="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",bm=/ jQuery\d+="(?:null|\d+)"/g,bn=/^\s+/,bo=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,bp=/<([\w:]+)/,bq=/]","i"),bv=/^(?:checkbox|radio)$/,bw=/checked\s*(?:[^=]|=\s*.checked.)/i,bx=/\/(java|ecma)script/i,by=/^\s*\s*$/g,bz={option:[1,""],legend:[1,"
    ","
    "],thead:[1,"","
    "],tr:[2,"","
    "],td:[3,"","
    "],col:[2,"","
    "],area:[1,"",""],_default:[0,"",""]},bA=bk(e),bB=bA.appendChild(e.createElement("div"));bz.optgroup=bz.option,bz.tbody=bz.tfoot=bz.colgroup=bz.caption=bz.thead,bz.th=bz.td,p.support.htmlSerialize||(bz._default=[1,"X
    ","
    "]),p.fn.extend({text:function(a){return p.access(this,function(a){return a===b?p.text(this):this.empty().append((this[0]&&this[0].ownerDocument||e).createTextNode(a))},null,a,arguments.length)},wrapAll:function(a){if(p.isFunction(a))return this.each(function(b){p(this).wrapAll(a.call(this,b))});if(this[0]){var b=p(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){return p.isFunction(a)?this.each(function(b){p(this).wrapInner(a.call(this,b))}):this.each(function(){var b=p(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=p.isFunction(a);return this.each(function(c){p(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){p.nodeName(this,"body")||p(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){(this.nodeType===1||this.nodeType===11)&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){(this.nodeType===1||this.nodeType===11)&&this.insertBefore(a,this.firstChild)})},before:function(){if(!bh(this[0]))return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=p.clean(arguments);return this.pushStack(p.merge(a,this),"before",this.selector)}},after:function(){if(!bh(this[0]))return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=p.clean(arguments);return this.pushStack(p.merge(this,a),"after",this.selector)}},remove:function(a,b){var c,d=0;for(;(c=this[d])!=null;d++)if(!a||p.filter(a,[c]).length)!b&&c.nodeType===1&&(p.cleanData(c.getElementsByTagName("*")),p.cleanData([c])),c.parentNode&&c.parentNode.removeChild(c);return this},empty:function(){var a,b=0;for(;(a=this[b])!=null;b++){a.nodeType===1&&p.cleanData(a.getElementsByTagName("*"));while(a.firstChild)a.removeChild(a.firstChild)}return this},clone:function(a,b){return a=a==null?!1:a,b=b==null?a:b,this.map(function(){return p.clone(this,a,b)})},html:function(a){return p.access(this,function(a){var c=this[0]||{},d=0,e=this.length;if(a===b)return c.nodeType===1?c.innerHTML.replace(bm,""):b;if(typeof a=="string"&&!bs.test(a)&&(p.support.htmlSerialize||!bu.test(a))&&(p.support.leadingWhitespace||!bn.test(a))&&!bz[(bp.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(bo,"<$1>");try{for(;d1&&typeof j=="string"&&bw.test(j))return this.each(function(){p(this).domManip(a,c,d)});if(p.isFunction(j))return this.each(function(e){var f=p(this);a[0]=j.call(this,e,c?f.html():b),f.domManip(a,c,d)});if(this[0]){e=p.buildFragment(a,this,k),g=e.fragment,f=g.firstChild,g.childNodes.length===1&&(g=f);if(f){c=c&&p.nodeName(f,"tr");for(h=e.cacheable||l-1;i0?this.clone(!0):this).get(),p(g[e])[b](d),f=f.concat(d);return this.pushStack(f,a,g.selector)}}),p.extend({clone:function(a,b,c){var d,e,f,g;p.support.html5Clone||p.isXMLDoc(a)||!bu.test("<"+a.nodeName+">")?g=a.cloneNode(!0):(bB.innerHTML=a.outerHTML,bB.removeChild(g=bB.firstChild));if((!p.support.noCloneEvent||!p.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!p.isXMLDoc(a)){bE(a,g),d=bF(a),e=bF(g);for(f=0;d[f];++f)e[f]&&bE(d[f],e[f])}if(b){bD(a,g);if(c){d=bF(a),e=bF(g);for(f=0;d[f];++f)bD(d[f],e[f])}}return d=e=null,g},clean:function(a,b,c,d){var f,g,h,i,j,k,l,m,n,o,q,r,s=b===e&&bA,t=[];if(!b||typeof b.createDocumentFragment=="undefined")b=e;for(f=0;(h=a[f])!=null;f++){typeof h=="number"&&(h+="");if(!h)continue;if(typeof h=="string")if(!br.test(h))h=b.createTextNode(h);else{s=s||bk(b),l=b.createElement("div"),s.appendChild(l),h=h.replace(bo,"<$1>"),i=(bp.exec(h)||["",""])[1].toLowerCase(),j=bz[i]||bz._default,k=j[0],l.innerHTML=j[1]+h+j[2];while(k--)l=l.lastChild;if(!p.support.tbody){m=bq.test(h),n=i==="table"&&!m?l.firstChild&&l.firstChild.childNodes:j[1]===""&&!m?l.childNodes:[];for(g=n.length-1;g>=0;--g)p.nodeName(n[g],"tbody")&&!n[g].childNodes.length&&n[g].parentNode.removeChild(n[g])}!p.support.leadingWhitespace&&bn.test(h)&&l.insertBefore(b.createTextNode(bn.exec(h)[0]),l.firstChild),h=l.childNodes,l.parentNode.removeChild(l)}h.nodeType?t.push(h):p.merge(t,h)}l&&(h=l=s=null);if(!p.support.appendChecked)for(f=0;(h=t[f])!=null;f++)p.nodeName(h,"input")?bG(h):typeof h.getElementsByTagName!="undefined"&&p.grep(h.getElementsByTagName("input"),bG);if(c){q=function(a){if(!a.type||bx.test(a.type))return d?d.push(a.parentNode?a.parentNode.removeChild(a):a):c.appendChild(a)};for(f=0;(h=t[f])!=null;f++)if(!p.nodeName(h,"script")||!q(h))c.appendChild(h),typeof h.getElementsByTagName!="undefined"&&(r=p.grep(p.merge([],h.getElementsByTagName("script")),q),t.splice.apply(t,[f+1,0].concat(r)),f+=r.length)}return t},cleanData:function(a,b){var c,d,e,f,g=0,h=p.expando,i=p.cache,j=p.support.deleteExpando,k=p.event.special;for(;(e=a[g])!=null;g++)if(b||p.acceptData(e)){d=e[h],c=d&&i[d];if(c){if(c.events)for(f in c.events)k[f]?p.event.remove(e,f):p.removeEvent(e,f,c.handle);i[d]&&(delete i[d],j?delete e[h]:e.removeAttribute?e.removeAttribute(h):e[h]=null,p.deletedIds.push(d))}}}}),function(){var a,b;p.uaMatch=function(a){a=a.toLowerCase();var b=/(chrome)[ \/]([\w.]+)/.exec(a)||/(webkit)[ \/]([\w.]+)/.exec(a)||/(opera)(?:.*version|)[ \/]([\w.]+)/.exec(a)||/(msie) ([\w.]+)/.exec(a)||a.indexOf("compatible")<0&&/(mozilla)(?:.*? rv:([\w.]+)|)/.exec(a)||[];return{browser:b[1]||"",version:b[2]||"0"}},a=p.uaMatch(g.userAgent),b={},a.browser&&(b[a.browser]=!0,b.version=a.version),b.chrome?b.webkit=!0:b.webkit&&(b.safari=!0),p.browser=b,p.sub=function(){function a(b,c){return new a.fn.init(b,c)}p.extend(!0,a,this),a.superclass=this,a.fn=a.prototype=this(),a.fn.constructor=a,a.sub=this.sub,a.fn.init=function c(c,d){return d&&d instanceof p&&!(d instanceof a)&&(d=a(d)),p.fn.init.call(this,c,d,b)},a.fn.init.prototype=a.fn;var b=a(e);return a}}();var bH,bI,bJ,bK=/alpha\([^)]*\)/i,bL=/opacity=([^)]*)/,bM=/^(top|right|bottom|left)$/,bN=/^(none|table(?!-c[ea]).+)/,bO=/^margin/,bP=new RegExp("^("+q+")(.*)$","i"),bQ=new RegExp("^("+q+")(?!px)[a-z%]+$","i"),bR=new RegExp("^([-+])=("+q+")","i"),bS={},bT={position:"absolute",visibility:"hidden",display:"block"},bU={letterSpacing:0,fontWeight:400},bV=["Top","Right","Bottom","Left"],bW=["Webkit","O","Moz","ms"],bX=p.fn.toggle;p.fn.extend({css:function(a,c){return p.access(this,function(a,c,d){return d!==b?p.style(a,c,d):p.css(a,c)},a,c,arguments.length>1)},show:function(){return b$(this,!0)},hide:function(){return b$(this)},toggle:function(a,b){var c=typeof a=="boolean";return p.isFunction(a)&&p.isFunction(b)?bX.apply(this,arguments):this.each(function(){(c?a:bZ(this))?p(this).show():p(this).hide()})}}),p.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=bH(a,"opacity");return c===""?"1":c}}}},cssNumber:{fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":p.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,d,e){if(!a||a.nodeType===3||a.nodeType===8||!a.style)return;var f,g,h,i=p.camelCase(c),j=a.style;c=p.cssProps[i]||(p.cssProps[i]=bY(j,i)),h=p.cssHooks[c]||p.cssHooks[i];if(d===b)return h&&"get"in h&&(f=h.get(a,!1,e))!==b?f:j[c];g=typeof d,g==="string"&&(f=bR.exec(d))&&(d=(f[1]+1)*f[2]+parseFloat(p.css(a,c)),g="number");if(d==null||g==="number"&&isNaN(d))return;g==="number"&&!p.cssNumber[i]&&(d+="px");if(!h||!("set"in h)||(d=h.set(a,d,e))!==b)try{j[c]=d}catch(k){}},css:function(a,c,d,e){var f,g,h,i=p.camelCase(c);return c=p.cssProps[i]||(p.cssProps[i]=bY(a.style,i)),h=p.cssHooks[c]||p.cssHooks[i],h&&"get"in h&&(f=h.get(a,!0,e)),f===b&&(f=bH(a,c)),f==="normal"&&c in bU&&(f=bU[c]),d||e!==b?(g=parseFloat(f),d||p.isNumeric(g)?g||0:f):f},swap:function(a,b,c){var d,e,f={};for(e in b)f[e]=a.style[e],a.style[e]=b[e];d=c.call(a);for(e in b)a.style[e]=f[e];return d}}),a.getComputedStyle?bH=function(b,c){var d,e,f,g,h=a.getComputedStyle(b,null),i=b.style;return h&&(d=h[c],d===""&&!p.contains(b.ownerDocument,b)&&(d=p.style(b,c)),bQ.test(d)&&bO.test(c)&&(e=i.width,f=i.minWidth,g=i.maxWidth,i.minWidth=i.maxWidth=i.width=d,d=h.width,i.width=e,i.minWidth=f,i.maxWidth=g)),d}:e.documentElement.currentStyle&&(bH=function(a,b){var c,d,e=a.currentStyle&&a.currentStyle[b],f=a.style;return e==null&&f&&f[b]&&(e=f[b]),bQ.test(e)&&!bM.test(b)&&(c=f.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),f.left=b==="fontSize"?"1em":e,e=f.pixelLeft+"px",f.left=c,d&&(a.runtimeStyle.left=d)),e===""?"auto":e}),p.each(["height","width"],function(a,b){p.cssHooks[b]={get:function(a,c,d){if(c)return a.offsetWidth===0&&bN.test(bH(a,"display"))?p.swap(a,bT,function(){return cb(a,b,d)}):cb(a,b,d)},set:function(a,c,d){return b_(a,c,d?ca(a,b,d,p.support.boxSizing&&p.css(a,"boxSizing")==="border-box"):0)}}}),p.support.opacity||(p.cssHooks.opacity={get:function(a,b){return bL.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=p.isNumeric(b)?"alpha(opacity="+b*100+")":"",f=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&p.trim(f.replace(bK,""))===""&&c.removeAttribute){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bK.test(f)?f.replace(bK,e):f+" "+e}}),p(function(){p.support.reliableMarginRight||(p.cssHooks.marginRight={get:function(a,b){return p.swap(a,{display:"inline-block"},function(){if(b)return bH(a,"marginRight")})}}),!p.support.pixelPosition&&p.fn.position&&p.each(["top","left"],function(a,b){p.cssHooks[b]={get:function(a,c){if(c){var d=bH(a,b);return bQ.test(d)?p(a).position()[b]+"px":d}}}})}),p.expr&&p.expr.filters&&(p.expr.filters.hidden=function(a){return a.offsetWidth===0&&a.offsetHeight===0||!p.support.reliableHiddenOffsets&&(a.style&&a.style.display||bH(a,"display"))==="none"},p.expr.filters.visible=function(a){return!p.expr.filters.hidden(a)}),p.each({margin:"",padding:"",border:"Width"},function(a,b){p.cssHooks[a+b]={expand:function(c){var d,e=typeof c=="string"?c.split(" "):[c],f={};for(d=0;d<4;d++)f[a+bV[d]+b]=e[d]||e[d-2]||e[0];return f}},bO.test(a)||(p.cssHooks[a+b].set=b_)});var cd=/%20/g,ce=/\[\]$/,cf=/\r?\n/g,cg=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,ch=/^(?:select|textarea)/i;p.fn.extend({serialize:function(){return p.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?p.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||ch.test(this.nodeName)||cg.test(this.type))}).map(function(a,b){var c=p(this).val();return c==null?null:p.isArray(c)?p.map(c,function(a,c){return{name:b.name,value:a.replace(cf,"\r\n")}}):{name:b.name,value:c.replace(cf,"\r\n")}}).get()}}),p.param=function(a,c){var d,e=[],f=function(a,b){b=p.isFunction(b)?b():b==null?"":b,e[e.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=p.ajaxSettings&&p.ajaxSettings.traditional);if(p.isArray(a)||a.jquery&&!p.isPlainObject(a))p.each(a,function(){f(this.name,this.value)});else for(d in a)ci(d,a[d],c,f);return e.join("&").replace(cd,"+")};var cj,ck,cl=/#.*$/,cm=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,cn=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,co=/^(?:GET|HEAD)$/,cp=/^\/\//,cq=/\?/,cr=/)<[^<]*)*<\/script>/gi,cs=/([?&])_=[^&]*/,ct=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+)|)|)/,cu=p.fn.load,cv={},cw={},cx=["*/"]+["*"];try{ck=f.href}catch(cy){ck=e.createElement("a"),ck.href="",ck=ck.href}cj=ct.exec(ck.toLowerCase())||[],p.fn.load=function(a,c,d){if(typeof a!="string"&&cu)return cu.apply(this,arguments);if(!this.length)return this;var e,f,g,h=this,i=a.indexOf(" ");return i>=0&&(e=a.slice(i,a.length),a=a.slice(0,i)),p.isFunction(c)?(d=c,c=b):c&&typeof c=="object"&&(f="POST"),p.ajax({url:a,type:f,dataType:"html",data:c,complete:function(a,b){d&&h.each(d,g||[a.responseText,b,a])}}).done(function(a){g=arguments,h.html(e?p("
    ").append(a.replace(cr,"")).find(e):a)}),this},p.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){p.fn[b]=function(a){return this.on(b,a)}}),p.each(["get","post"],function(a,c){p[c]=function(a,d,e,f){return p.isFunction(d)&&(f=f||e,e=d,d=b),p.ajax({type:c,url:a,data:d,success:e,dataType:f})}}),p.extend({getScript:function(a,c){return p.get(a,b,c,"script")},getJSON:function(a,b,c){return p.get(a,b,c,"json")},ajaxSetup:function(a,b){return b?cB(a,p.ajaxSettings):(b=a,a=p.ajaxSettings),cB(a,b),a},ajaxSettings:{url:ck,isLocal:cn.test(cj[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded; charset=UTF-8",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":cx},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":p.parseJSON,"text xml":p.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:cz(cv),ajaxTransport:cz(cw),ajax:function(a,c){function y(a,c,f,i){var k,s,t,u,w,y=c;if(v===2)return;v=2,h&&clearTimeout(h),g=b,e=i||"",x.readyState=a>0?4:0,f&&(u=cC(l,x,f));if(a>=200&&a<300||a===304)l.ifModified&&(w=x.getResponseHeader("Last-Modified"),w&&(p.lastModified[d]=w),w=x.getResponseHeader("Etag"),w&&(p.etag[d]=w)),a===304?(y="notmodified",k=!0):(k=cD(l,u),y=k.state,s=k.data,t=k.error,k=!t);else{t=y;if(!y||a)y="error",a<0&&(a=0)}x.status=a,x.statusText=(c||y)+"",k?o.resolveWith(m,[s,y,x]):o.rejectWith(m,[x,y,t]),x.statusCode(r),r=b,j&&n.trigger("ajax"+(k?"Success":"Error"),[x,l,k?s:t]),q.fireWith(m,[x,y]),j&&(n.trigger("ajaxComplete",[x,l]),--p.active||p.event.trigger("ajaxStop"))}typeof a=="object"&&(c=a,a=b),c=c||{};var d,e,f,g,h,i,j,k,l=p.ajaxSetup({},c),m=l.context||l,n=m!==l&&(m.nodeType||m instanceof p)?p(m):p.event,o=p.Deferred(),q=p.Callbacks("once memory"),r=l.statusCode||{},t={},u={},v=0,w="canceled",x={readyState:0,setRequestHeader:function(a,b){if(!v){var c=a.toLowerCase();a=u[c]=u[c]||a,t[a]=b}return this},getAllResponseHeaders:function(){return v===2?e:null},getResponseHeader:function(a){var c;if(v===2){if(!f){f={};while(c=cm.exec(e))f[c[1].toLowerCase()]=c[2]}c=f[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){return v||(l.mimeType=a),this},abort:function(a){return a=a||w,g&&g.abort(a),y(0,a),this}};o.promise(x),x.success=x.done,x.error=x.fail,x.complete=q.add,x.statusCode=function(a){if(a){var b;if(v<2)for(b in a)r[b]=[r[b],a[b]];else b=a[x.status],x.always(b)}return this},l.url=((a||l.url)+"").replace(cl,"").replace(cp,cj[1]+"//"),l.dataTypes=p.trim(l.dataType||"*").toLowerCase().split(s),l.crossDomain==null&&(i=ct.exec(l.url.toLowerCase())||!1,l.crossDomain=i&&i.join(":")+(i[3]?"":i[1]==="http:"?80:443)!==cj.join(":")+(cj[3]?"":cj[1]==="http:"?80:443)),l.data&&l.processData&&typeof l.data!="string"&&(l.data=p.param(l.data,l.traditional)),cA(cv,l,c,x);if(v===2)return x;j=l.global,l.type=l.type.toUpperCase(),l.hasContent=!co.test(l.type),j&&p.active++===0&&p.event.trigger("ajaxStart");if(!l.hasContent){l.data&&(l.url+=(cq.test(l.url)?"&":"?")+l.data,delete l.data),d=l.url;if(l.cache===!1){var z=p.now(),A=l.url.replace(cs,"$1_="+z);l.url=A+(A===l.url?(cq.test(l.url)?"&":"?")+"_="+z:"")}}(l.data&&l.hasContent&&l.contentType!==!1||c.contentType)&&x.setRequestHeader("Content-Type",l.contentType),l.ifModified&&(d=d||l.url,p.lastModified[d]&&x.setRequestHeader("If-Modified-Since",p.lastModified[d]),p.etag[d]&&x.setRequestHeader("If-None-Match",p.etag[d])),x.setRequestHeader("Accept",l.dataTypes[0]&&l.accepts[l.dataTypes[0]]?l.accepts[l.dataTypes[0]]+(l.dataTypes[0]!=="*"?", "+cx+"; q=0.01":""):l.accepts["*"]);for(k in l.headers)x.setRequestHeader(k,l.headers[k]);if(!l.beforeSend||l.beforeSend.call(m,x,l)!==!1&&v!==2){w="abort";for(k in{success:1,error:1,complete:1})x[k](l[k]);g=cA(cw,l,c,x);if(!g)y(-1,"No Transport");else{x.readyState=1,j&&n.trigger("ajaxSend",[x,l]),l.async&&l.timeout>0&&(h=setTimeout(function(){x.abort("timeout")},l.timeout));try{v=1,g.send(t,y)}catch(B){if(v<2)y(-1,B);else throw B}}return x}return x.abort()},active:0,lastModified:{},etag:{}});var cE=[],cF=/\?/,cG=/(=)\?(?=&|$)|\?\?/,cH=p.now();p.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var a=cE.pop()||p.expando+"_"+cH++;return this[a]=!0,a}}),p.ajaxPrefilter("json jsonp",function(c,d,e){var f,g,h,i=c.data,j=c.url,k=c.jsonp!==!1,l=k&&cG.test(j),m=k&&!l&&typeof i=="string"&&!(c.contentType||"").indexOf("application/x-www-form-urlencoded")&&cG.test(i);if(c.dataTypes[0]==="jsonp"||l||m)return f=c.jsonpCallback=p.isFunction(c.jsonpCallback)?c.jsonpCallback():c.jsonpCallback,g=a[f],l?c.url=j.replace(cG,"$1"+f):m?c.data=i.replace(cG,"$1"+f):k&&(c.url+=(cF.test(j)?"&":"?")+c.jsonp+"="+f),c.converters["script json"]=function(){return h||p.error(f+" was not called"),h[0]},c.dataTypes[0]="json",a[f]=function(){h=arguments},e.always(function(){a[f]=g,c[f]&&(c.jsonpCallback=d.jsonpCallback,cE.push(f)),h&&p.isFunction(g)&&g(h[0]),h=g=b}),"script"}),p.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){return p.globalEval(a),a}}}),p.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),p.ajaxTransport("script",function(a){if(a.crossDomain){var c,d=e.head||e.getElementsByTagName("head")[0]||e.documentElement;return{send:function(f,g){c=e.createElement("script"),c.async="async",a.scriptCharset&&(c.charset=a.scriptCharset),c.src=a.url,c.onload=c.onreadystatechange=function(a,e){if(e||!c.readyState||/loaded|complete/.test(c.readyState))c.onload=c.onreadystatechange=null,d&&c.parentNode&&d.removeChild(c),c=b,e||g(200,"success")},d.insertBefore(c,d.firstChild)},abort:function(){c&&c.onload(0,1)}}}});var cI,cJ=a.ActiveXObject?function(){for(var a in cI)cI[a](0,1)}:!1,cK=0;p.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&cL()||cM()}:cL,function(a){p.extend(p.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(p.ajaxSettings.xhr()),p.support.ajax&&p.ajaxTransport(function(c){if(!c.crossDomain||p.support.cors){var d;return{send:function(e,f){var g,h,i=c.xhr();c.username?i.open(c.type,c.url,c.async,c.username,c.password):i.open(c.type,c.url,c.async);if(c.xhrFields)for(h in c.xhrFields)i[h]=c.xhrFields[h];c.mimeType&&i.overrideMimeType&&i.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(h in e)i.setRequestHeader(h,e[h])}catch(j){}i.send(c.hasContent&&c.data||null),d=function(a,e){var h,j,k,l,m;try{if(d&&(e||i.readyState===4)){d=b,g&&(i.onreadystatechange=p.noop,cJ&&delete cI[g]);if(e)i.readyState!==4&&i.abort();else{h=i.status,k=i.getAllResponseHeaders(),l={},m=i.responseXML,m&&m.documentElement&&(l.xml=m);try{l.text=i.responseText}catch(a){}try{j=i.statusText}catch(n){j=""}!h&&c.isLocal&&!c.crossDomain?h=l.text?200:404:h===1223&&(h=204)}}}catch(o){e||f(-1,o)}l&&f(h,j,l,k)},c.async?i.readyState===4?setTimeout(d,0):(g=++cK,cJ&&(cI||(cI={},p(a).unload(cJ)),cI[g]=d),i.onreadystatechange=d):d()},abort:function(){d&&d(0,1)}}}});var cN,cO,cP=/^(?:toggle|show|hide)$/,cQ=new RegExp("^(?:([-+])=|)("+q+")([a-z%]*)$","i"),cR=/queueHooks$/,cS=[cY],cT={"*":[function(a,b){var c,d,e=this.createTween(a,b),f=cQ.exec(b),g=e.cur(),h=+g||0,i=1,j=20;if(f){c=+f[2],d=f[3]||(p.cssNumber[a]?"":"px");if(d!=="px"&&h){h=p.css(e.elem,a,!0)||c||1;do i=i||".5",h=h/i,p.style(e.elem,a,h+d);while(i!==(i=e.cur()/g)&&i!==1&&--j)}e.unit=d,e.start=h,e.end=f[1]?h+(f[1]+1)*c:c}return e}]};p.Animation=p.extend(cW,{tweener:function(a,b){p.isFunction(a)?(b=a,a=["*"]):a=a.split(" ");var c,d=0,e=a.length;for(;d-1,j={},k={},l,m;i?(k=e.position(),l=k.top,m=k.left):(l=parseFloat(g)||0,m=parseFloat(h)||0),p.isFunction(b)&&(b=b.call(a,c,f)),b.top!=null&&(j.top=b.top-f.top+l),b.left!=null&&(j.left=b.left-f.left+m),"using"in b?b.using.call(a,j):e.css(j)}},p.fn.extend({position:function(){if(!this[0])return;var a=this[0],b=this.offsetParent(),c=this.offset(),d=c_.test(b[0].nodeName)?{top:0,left:0}:b.offset();return c.top-=parseFloat(p.css(a,"marginTop"))||0,c.left-=parseFloat(p.css(a,"marginLeft"))||0,d.top+=parseFloat(p.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(p.css(b[0],"borderLeftWidth"))||0,{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||e.body;while(a&&!c_.test(a.nodeName)&&p.css(a,"position")==="static")a=a.offsetParent;return a||e.body})}}),p.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(a,c){var d=/Y/.test(c);p.fn[a]=function(e){return p.access(this,function(a,e,f){var g=da(a);if(f===b)return g?c in g?g[c]:g.document.documentElement[e]:a[e];g?g.scrollTo(d?p(g).scrollLeft():f,d?f:p(g).scrollTop()):a[e]=f},a,e,arguments.length,null)}}),p.each({Height:"height",Width:"width"},function(a,c){p.each({padding:"inner"+a,content:c,"":"outer"+a},function(d,e){p.fn[e]=function(e,f){var g=arguments.length&&(d||typeof e!="boolean"),h=d||(e===!0||f===!0?"margin":"border");return p.access(this,function(c,d,e){var f;return p.isWindow(c)?c.document.documentElement["client"+a]:c.nodeType===9?(f=c.documentElement,Math.max(c.body["scroll"+a],f["scroll"+a],c.body["offset"+a],f["offset"+a],f["client"+a])):e===b?p.css(c,d,e,h):p.style(c,d,e,h)},c,g?e:b,g,null)}})}),a.jQuery=a.$=p,typeof define=="function"&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return p})})(window);]]>GET/resources/js/jquery-1.8.2.minjsHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0 +
    Refererhttp://zero.webappsecurity.com/
    Hostzero.webappsecurity.com
    Accept*/*
    Accept-Languageen-US,en;q=0.5
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoScriptEngine="Gecko";Category="Crawl";SID="7D050DCF24C1B6465D35B8F6C68E1288";PSID="306E42D0F653E7CFA6720D7F15AE506B";SessionType="Crawl";CrawlType="ScriptInclude";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";tht="21";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="2d436af1";
    X-Request-Memorid="eb6cfcc0";sc="1";thid="44";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0
    HTTP/1.1200OK=0===c})}function bk(a){var b=bl.split("|"),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}function bC(a,b){return a.getElementsByTagName(b)[0]||a.appendChild(a.ownerDocument.createElement(b))}function bD(a,b){if(b.nodeType!==1||!p.hasData(a))return;var c,d,e,f=p._data(a),g=p._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;d").appendTo(e.body),c=b.css("display");b.remove();if(c==="none"||c===""){bI=e.body.appendChild(bI||p.extend(e.createElement("iframe"),{frameBorder:0,width:0,height:0}));if(!bJ||!bI.createElement)bJ=(bI.contentWindow||bI.contentDocument).document,bJ.write(""),bJ.close();b=bJ.body.appendChild(bJ.createElement(a)),c=bH(b,"display"),e.body.removeChild(bI)}return bS[a]=c,c}function ci(a,b,c,d){var e;if(p.isArray(b))p.each(b,function(b,e){c||ce.test(a)?d(a,e):ci(a+"["+(typeof e=="object"?b:"")+"]",e,c,d)});else if(!c&&p.type(b)==="object")for(e in b)ci(a+"["+e+"]",b[e],c,d);else d(a,b)}function cz(a){return function(b,c){typeof b!="string"&&(c=b,b="*");var d,e,f,g=b.toLowerCase().split(s),h=0,i=g.length;if(p.isFunction(c))for(;h)[^>]*$|#([\w\-]*)$)/,v=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,w=/^[\],:{}\s]*$/,x=/(?:^|:|,)(?:\s*\[)+/g,y=/\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,z=/"[^"\\\r\n]*"|true|false|null|-?(?:\d\d*\.|)\d+(?:[eE][\-+]?\d+|)/g,A=/^-ms-/,B=/-([\da-z])/gi,C=function(a,b){return(b+"").toUpperCase()},D=function(){e.addEventListener?(e.removeEventListener("DOMContentLoaded",D,!1),p.ready()):e.readyState==="complete"&&(e.detachEvent("onreadystatechange",D),p.ready())},E={};p.fn=p.prototype={constructor:p,init:function(a,c,d){var f,g,h,i;if(!a)return this;if(a.nodeType)return this.context=this[0]=a,this.length=1,this;if(typeof a=="string"){a.charAt(0)==="<"&&a.charAt(a.length-1)===">"&&a.length>=3?f=[null,a,null]:f=u.exec(a);if(f&&(f[1]||!c)){if(f[1])return c=c instanceof p?c[0]:c,i=c&&c.nodeType?c.ownerDocument||c:e,a=p.parseHTML(f[1],i,!0),v.test(f[1])&&p.isPlainObject(c)&&this.attr.call(a,c,!0),p.merge(this,a);g=e.getElementById(f[2]);if(g&&g.parentNode){if(g.id!==f[2])return d.find(a);this.length=1,this[0]=g}return this.context=e,this.selector=a,this}return!c||c.jquery?(c||d).find(a):this.constructor(c).find(a)}return p.isFunction(a)?d.ready(a):(a.selector!==b&&(this.selector=a.selector,this.context=a.context),p.makeArray(a,this))},selector:"",jquery:"1.8.2",length:0,size:function(){return this.length},toArray:function(){return k.call(this)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=p.merge(this.constructor(),a);return d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")"),d},each:function(a,b){return p.each(this,a,b)},ready:function(a){return p.ready.promise().done(a),this},eq:function(a){return a=+a,a===-1?this.slice(a):this.slice(a,a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(k.apply(this,arguments),"slice",k.call(arguments).join(","))},map:function(a){return this.pushStack(p.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:j,sort:[].sort,splice:[].splice},p.fn.init.prototype=p.fn,p.extend=p.fn.extend=function(){var a,c,d,e,f,g,h=arguments[0]||{},i=1,j=arguments.length,k=!1;typeof h=="boolean"&&(k=h,h=arguments[1]||{},i=2),typeof h!="object"&&!p.isFunction(h)&&(h={}),j===i&&(h=this,--i);for(;i0)return;d.resolveWith(e,[p]),p.fn.trigger&&p(e).trigger("ready").off("ready")},isFunction:function(a){return p.type(a)==="function"},isArray:Array.isArray||function(a){return p.type(a)==="array"},isWindow:function(a){return a!=null&&a==a.window},isNumeric:function(a){return!isNaN(parseFloat(a))&&isFinite(a)},type:function(a){return a==null?String(a):E[m.call(a)]||"object"},isPlainObject:function(a){if(!a||p.type(a)!=="object"||a.nodeType||p.isWindow(a))return!1;try{if(a.constructor&&!n.call(a,"constructor")&&!n.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||n.call(a,d)},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},error:function(a){throw new Error(a)},parseHTML:function(a,b,c){var d;return!a||typeof a!="string"?null:(typeof b=="boolean"&&(c=b,b=0),b=b||e,(d=v.exec(a))?[b.createElement(d[1])]:(d=p.buildFragment([a],b,c?null:[]),p.merge([],(d.cacheable?p.clone(d.fragment):d.fragment).childNodes)))},parseJSON:function(b){if(!b||typeof b!="string")return null;b=p.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(w.test(b.replace(y,"@").replace(z,"]").replace(x,"")))return(new Function("return "+b))();p.error("Invalid JSON: "+b)},parseXML:function(c){var d,e;if(!c||typeof c!="string")return null;try{a.DOMParser?(e=new DOMParser,d=e.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(f){d=b}return(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&p.error("Invalid XML: "+c),d},noop:function(){},globalEval:function(b){b&&r.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(A,"ms-").replace(B,C)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,c,d){var e,f=0,g=a.length,h=g===b||p.isFunction(a);if(d){if(h){for(e in a)if(c.apply(a[e],d)===!1)break}else for(;f0&&a[0]&&a[i-1]||i===0||p.isArray(a));if(j)for(;h-1)i.splice(c,1),e&&(c<=g&&g--,c<=h&&h--)}),this},has:function(a){return p.inArray(a,i)>-1},empty:function(){return i=[],this},disable:function(){return i=j=c=b,this},disabled:function(){return!i},lock:function(){return j=b,c||l.disable(),this},locked:function(){return!j},fireWith:function(a,b){return b=b||[],b=[a,b.slice?b.slice():b],i&&(!d||j)&&(e?j.push(b):k(b)),this},fire:function(){return l.fireWith(this,arguments),this},fired:function(){return!!d}};return l},p.extend({Deferred:function(a){var b=[["resolve","done",p.Callbacks("once memory"),"resolved"],["reject","fail",p.Callbacks("once memory"),"rejected"],["notify","progress",p.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return p.Deferred(function(c){p.each(b,function(b,d){var f=d[0],g=a[b];e[d[1]](p.isFunction(g)?function(){var a=g.apply(this,arguments);a&&p.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f+"With"](this===e?c:this,[a])}:c[f])}),a=null}).promise()},promise:function(a){return a!=null?p.extend(a,d):d}},e={};return d.pipe=d.then,p.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[a^1][2].disable,b[2][2].lock),e[f[0]]=g.fire,e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=k.call(arguments),d=c.length,e=d!==1||a&&p.isFunction(a.promise)?d:0,f=e===1?a:p.Deferred(),g=function(a,b,c){return function(d){b[a]=this,c[a]=arguments.length>1?k.call(arguments):d,c===h?f.notifyWith(b,c):--e||f.resolveWith(b,c)}},h,i,j;if(d>1){h=new Array(d),i=new Array(d),j=new Array(d);for(;b
    a",c=n.getElementsByTagName("*"),d=n.getElementsByTagName("a")[0],d.style.cssText="top:1px;float:left;opacity:.5";if(!c||!c.length)return{};f=e.createElement("select"),g=f.appendChild(e.createElement("option")),h=n.getElementsByTagName("input")[0],b={leadingWhitespace:n.firstChild.nodeType===3,tbody:!n.getElementsByTagName("tbody").length,htmlSerialize:!!n.getElementsByTagName("link").length,style:/top/.test(d.getAttribute("style")),hrefNormalized:d.getAttribute("href")==="/a",opacity:/^0.5/.test(d.style.opacity),cssFloat:!!d.style.cssFloat,checkOn:h.value==="on",optSelected:g.selected,getSetAttribute:n.className!=="t",enctype:!!e.createElement("form").enctype,html5Clone:e.createElement("nav").cloneNode(!0).outerHTML!=="<:nav>",boxModel:e.compatMode==="CSS1Compat",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0,boxSizingReliable:!0,pixelPosition:!1},h.checked=!0,b.noCloneChecked=h.cloneNode(!0).checked,f.disabled=!0,b.optDisabled=!g.disabled;try{delete n.test}catch(o){b.deleteExpando=!1}!n.addEventListener&&n.attachEvent&&n.fireEvent&&(n.attachEvent("onclick",m=function(){b.noCloneEvent=!1}),n.cloneNode(!0).fireEvent("onclick"),n.detachEvent("onclick",m)),h=e.createElement("input"),h.value="t",h.setAttribute("type","radio"),b.radioValue=h.value==="t",h.setAttribute("checked","checked"),h.setAttribute("name","t"),n.appendChild(h),i=e.createDocumentFragment(),i.appendChild(n.lastChild),b.checkClone=i.cloneNode(!0).cloneNode(!0).lastChild.checked,b.appendChecked=h.checked,i.removeChild(h),i.appendChild(n);if(n.attachEvent)for(k in{submit:!0,change:!0,focusin:!0})j="on"+k,l=j in n,l||(n.setAttribute(j,"return;"),l=typeof n[j]=="function"),b[k+"Bubbles"]=l;return p(function(){var c,d,f,g,h="padding:0;margin:0;border:0;display:block;overflow:hidden;",i=e.getElementsByTagName("body")[0];if(!i)return;c=e.createElement("div"),c.style.cssText="visibility:hidden;border:0;width:0;height:0;position:static;top:0;margin-top:1px",i.insertBefore(c,i.firstChild),d=e.createElement("div"),c.appendChild(d),d.innerHTML="
    t
    ",f=d.getElementsByTagName("td"),f[0].style.cssText="padding:0;margin:0;border:0;display:none",l=f[0].offsetHeight===0,f[0].style.display="",f[1].style.display="none",b.reliableHiddenOffsets=l&&f[0].offsetHeight===0,d.innerHTML="",d.style.cssText="box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;",b.boxSizing=d.offsetWidth===4,b.doesNotIncludeMarginInBodyOffset=i.offsetTop!==1,a.getComputedStyle&&(b.pixelPosition=(a.getComputedStyle(d,null)||{}).top!=="1%",b.boxSizingReliable=(a.getComputedStyle(d,null)||{width:"4px"}).width==="4px",g=e.createElement("div"),g.style.cssText=d.style.cssText=h,g.style.marginRight=g.style.width="0",d.style.width="1px",d.appendChild(g),b.reliableMarginRight=!parseFloat((a.getComputedStyle(g,null)||{}).marginRight)),typeof d.style.zoom!="undefined"&&(d.innerHTML="",d.style.cssText=h+"width:1px;padding:1px;display:inline;zoom:1",b.inlineBlockNeedsLayout=d.offsetWidth===3,d.style.display="block",d.style.overflow="visible",d.innerHTML="
    ",d.firstChild.style.width="5px",b.shrinkWrapBlocks=d.offsetWidth!==3,c.style.zoom=1),i.removeChild(c),c=d=f=g=null}),i.removeChild(n),c=d=f=g=h=i=n=null,b}();var H=/(?:\{[\s\S]*\}|\[[\s\S]*\])$/,I=/([A-Z])/g;p.extend({cache:{},deletedIds:[],uuid:0,expando:"jQuery"+(p.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){return a=a.nodeType?p.cache[a[p.expando]]:a[p.expando],!!a&&!K(a)},data:function(a,c,d,e){if(!p.acceptData(a))return;var f,g,h=p.expando,i=typeof c=="string",j=a.nodeType,k=j?p.cache:a,l=j?a[h]:a[h]&&h;if((!l||!k[l]||!e&&!k[l].data)&&i&&d===b)return;l||(j?a[h]=l=p.deletedIds.pop()||p.guid++:l=h),k[l]||(k[l]={},j||(k[l].toJSON=p.noop));if(typeof c=="object"||typeof c=="function")e?k[l]=p.extend(k[l],c):k[l].data=p.extend(k[l].data,c);return f=k[l],e||(f.data||(f.data={}),f=f.data),d!==b&&(f[p.camelCase(c)]=d),i?(g=f[c],g==null&&(g=f[p.camelCase(c)])):g=f,g},removeData:function(a,b,c){if(!p.acceptData(a))return;var d,e,f,g=a.nodeType,h=g?p.cache:a,i=g?a[p.expando]:p.expando;if(!h[i])return;if(b){d=c?h[i]:h[i].data;if(d){p.isArray(b)||(b in d?b=[b]:(b=p.camelCase(b),b in d?b=[b]:b=b.split(" ")));for(e=0,f=b.length;e1,null,!1))},removeData:function(a){return this.each(function(){p.removeData(this,a)})}}),p.extend({queue:function(a,b,c){var d;if(a)return b=(b||"fx")+"queue",d=p._data(a,b),c&&(!d||p.isArray(c)?d=p._data(a,b,p.makeArray(c)):d.push(c)),d||[]},dequeue:function(a,b){b=b||"fx";var c=p.queue(a,b),d=c.length,e=c.shift(),f=p._queueHooks(a,b),g=function(){p.dequeue(a,b)};e==="inprogress"&&(e=c.shift(),d--),e&&(b==="fx"&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return p._data(a,c)||p._data(a,c,{empty:p.Callbacks("once memory").add(function(){p.removeData(a,b+"queue",!0),p.removeData(a,c,!0)})})}}),p.fn.extend({queue:function(a,c){var d=2;return typeof a!="string"&&(c=a,a="fx",d--),arguments.length1)},removeAttr:function(a){return this.each(function(){p.removeAttr(this,a)})},prop:function(a,b){return p.access(this,p.prop,a,b,arguments.length>1)},removeProp:function(a){return a=p.propFix[a]||a,this.each(function(){try{this[a]=b,delete this[a]}catch(c){}})},addClass:function(a){var b,c,d,e,f,g,h;if(p.isFunction(a))return this.each(function(b){p(this).addClass(a.call(this,b,this.className))});if(a&&typeof a=="string"){b=a.split(s);for(c=0,d=this.length;c=0)d=d.replace(" "+c[f]+" "," ");e.className=a?p.trim(d):""}}}return this},toggleClass:function(a,b){var c=typeof a,d=typeof b=="boolean";return p.isFunction(a)?this.each(function(c){p(this).toggleClass(a.call(this,c,this.className,b),b)}):this.each(function(){if(c==="string"){var e,f=0,g=p(this),h=b,i=a.split(s);while(e=i[f++])h=d?h:!g.hasClass(e),g[h?"addClass":"removeClass"](e)}else if(c==="undefined"||c==="boolean")this.className&&p._data(this,"__className__",this.className),this.className=this.className||a===!1?"":p._data(this,"__className__")||""})},hasClass:function(a){var b=" "+a+" ",c=0,d=this.length;for(;c=0)return!0;return!1},val:function(a){var c,d,e,f=this[0];if(!arguments.length){if(f)return c=p.valHooks[f.type]||p.valHooks[f.nodeName.toLowerCase()],c&&"get"in c&&(d=c.get(f,"value"))!==b?d:(d=f.value,typeof d=="string"?d.replace(P,""):d==null?"":d);return}return e=p.isFunction(a),this.each(function(d){var f,g=p(this);if(this.nodeType!==1)return;e?f=a.call(this,d,g.val()):f=a,f==null?f="":typeof f=="number"?f+="":p.isArray(f)&&(f=p.map(f,function(a){return a==null?"":a+""})),c=p.valHooks[this.type]||p.valHooks[this.nodeName.toLowerCase()];if(!c||!("set"in c)||c.set(this,f,"value")===b)this.value=f})}}),p.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c,d,e,f=a.selectedIndex,g=[],h=a.options,i=a.type==="select-one";if(f<0)return null;c=i?f:0,d=i?f+1:h.length;for(;c=0}),c.length||(a.selectedIndex=-1),c}}},attrFn:{},attr:function(a,c,d,e){var f,g,h,i=a.nodeType;if(!a||i===3||i===8||i===2)return;if(e&&p.isFunction(p.fn[c]))return p(a)[c](d);if(typeof a.getAttribute=="undefined")return p.prop(a,c,d);h=i!==1||!p.isXMLDoc(a),h&&(c=c.toLowerCase(),g=p.attrHooks[c]||(T.test(c)?M:L));if(d!==b){if(d===null){p.removeAttr(a,c);return}return g&&"set"in g&&h&&(f=g.set(a,d,c))!==b?f:(a.setAttribute(c,d+""),d)}return g&&"get"in g&&h&&(f=g.get(a,c))!==null?f:(f=a.getAttribute(c),f===null?b:f)},removeAttr:function(a,b){var c,d,e,f,g=0;if(b&&a.nodeType===1){d=b.split(s);for(;g=0}})});var V=/^(?:textarea|input|select)$/i,W=/^([^\.]*|)(?:\.(.+)|)$/,X=/(?:^|\s)hover(\.\S+|)\b/,Y=/^key/,Z=/^(?:mouse|contextmenu)|click/,$=/^(?:focusinfocus|focusoutblur)$/,_=function(a){return p.event.special.hover?a:a.replace(X,"mouseenter$1 mouseleave$1")};p.event={add:function(a,c,d,e,f){var g,h,i,j,k,l,m,n,o,q,r;if(a.nodeType===3||a.nodeType===8||!c||!d||!(g=p._data(a)))return;d.handler&&(o=d,d=o.handler,f=o.selector),d.guid||(d.guid=p.guid++),i=g.events,i||(g.events=i={}),h=g.handle,h||(g.handle=h=function(a){return typeof p!="undefined"&&(!a||p.event.triggered!==a.type)?p.event.dispatch.apply(h.elem,arguments):b},h.elem=a),c=p.trim(_(c)).split(" ");for(j=0;j=0&&(s=s.slice(0,-1),i=!0),s.indexOf(".")>=0&&(t=s.split("."),s=t.shift(),t.sort());if((!f||p.event.customEvent[s])&&!p.event.global[s])return;c=typeof c=="object"?c[p.expando]?c:new p.Event(s,c):new p.Event(s),c.type=s,c.isTrigger=!0,c.exclusive=i,c.namespace=t.join("."),c.namespace_re=c.namespace?new RegExp("(^|\\.)"+t.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,m=s.indexOf(":")<0?"on"+s:"";if(!f){h=p.cache;for(j in h)h[j].events&&h[j].events[s]&&p.event.trigger(c,d,h[j].handle.elem,!0);return}c.result=b,c.target||(c.target=f),d=d!=null?p.makeArray(d):[],d.unshift(c),n=p.event.special[s]||{};if(n.trigger&&n.trigger.apply(f,d)===!1)return;q=[[f,n.bindType||s]];if(!g&&!n.noBubble&&!p.isWindow(f)){r=n.delegateType||s,k=$.test(r+s)?f:f.parentNode;for(l=f;k;k=k.parentNode)q.push([k,r]),l=k;l===(f.ownerDocument||e)&&q.push([l.defaultView||l.parentWindow||a,r])}for(j=0;j=0:p.find(m,this,null,[f]).length),h[m]&&j.push(l);j.length&&u.push({elem:f,matches:j})}o.length>q&&u.push({elem:this,matches:o.slice(q)});for(d=0;d0?this.on(b,null,a,c):this.trigger(b)},Y.test(b)&&(p.event.fixHooks[b]=p.event.keyHooks),Z.test(b)&&(p.event.fixHooks[b]=p.event.mouseHooks)}),function(a,b){function bc(a,b,c,d){c=c||[],b=b||r;var e,f,i,j,k=b.nodeType;if(!a||typeof a!="string")return c;if(k!==1&&k!==9)return[];i=g(b);if(!i&&!d)if(e=P.exec(a))if(j=e[1]){if(k===9){f=b.getElementById(j);if(!f||!f.parentNode)return c;if(f.id===j)return c.push(f),c}else if(b.ownerDocument&&(f=b.ownerDocument.getElementById(j))&&h(b,f)&&f.id===j)return c.push(f),c}else{if(e[2])return w.apply(c,x.call(b.getElementsByTagName(a),0)),c;if((j=e[3])&&_&&b.getElementsByClassName)return w.apply(c,x.call(b.getElementsByClassName(j),0)),c}return bp(a.replace(L,"$1"),b,c,d,i)}function bd(a){return function(b){var c=b.nodeName.toLowerCase();return c==="input"&&b.type===a}}function be(a){return function(b){var c=b.nodeName.toLowerCase();return(c==="input"||c==="button")&&b.type===a}}function bf(a){return z(function(b){return b=+b,z(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function bg(a,b,c){if(a===b)return c;var d=a.nextSibling;while(d){if(d===b)return-1;d=d.nextSibling}return 1}function bh(a,b){var c,d,f,g,h,i,j,k=C[o][a];if(k)return b?0:k.slice(0);h=a,i=[],j=e.preFilter;while(h){if(!c||(d=M.exec(h)))d&&(h=h.slice(d[0].length)),i.push(f=[]);c=!1;if(d=N.exec(h))f.push(c=new q(d.shift())),h=h.slice(c.length),c.type=d[0].replace(L," ");for(g in e.filter)(d=W[g].exec(h))&&(!j[g]||(d=j[g](d,r,!0)))&&(f.push(c=new q(d.shift())),h=h.slice(c.length),c.type=g,c.matches=d);if(!c)break}return b?h.length:h?bc.error(a):C(a,i).slice(0)}function bi(a,b,d){var e=b.dir,f=d&&b.dir==="parentNode",g=u++;return b.first?function(b,c,d){while(b=b[e])if(f||b.nodeType===1)return a(b,c,d)}:function(b,d,h){if(!h){var i,j=t+" "+g+" ",k=j+c;while(b=b[e])if(f||b.nodeType===1){if((i=b[o])===k)return b.sizset;if(typeof i=="string"&&i.indexOf(j)===0){if(b.sizset)return b}else{b[o]=k;if(a(b,d,h))return b.sizset=!0,b;b.sizset=!1}}}else while(b=b[e])if(f||b.nodeType===1)if(a(b,d,h))return b}}function bj(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function bk(a,b,c,d,e){var f,g=[],h=0,i=a.length,j=b!=null;for(;h-1},h,!0),m=[function(a,c,d){return!g&&(d||c!==l)||((b=c).nodeType?j(a,c,d):k(a,c,d))}];for(;i1&&bj(m),i>1&&a.slice(0,i-1).join("").replace(L,"$1"),c,i0,f=a.length>0,g=function(h,i,j,k,m){var n,o,p,q=[],s=0,u="0",x=h&&[],y=m!=null,z=l,A=h||f&&e.find.TAG("*",m&&i.parentNode||i),B=t+=z==null?1:Math.E;y&&(l=i!==r&&i,c=g.el);for(;(n=A[u])!=null;u++){if(f&&n){for(o=0;p=a[o];o++)if(p(n,i,j)){k.push(n);break}y&&(t=B,c=++g.el)}d&&((n=!p&&n)&&s--,h&&x.push(n))}s+=u;if(d&&u!==s){for(o=0;p=b[o];o++)p(x,q,i,j);if(h){if(s>0)while(u--)!x[u]&&!q[u]&&(q[u]=v.call(k));q=bk(q)}w.apply(k,q),y&&!h&&q.length>0&&s+b.length>1&&bc.uniqueSort(k)}return y&&(t=B,l=z),x};return g.el=0,d?z(g):g}function bo(a,b,c,d){var e=0,f=b.length;for(;e2&&(j=h[0]).type==="ID"&&b.nodeType===9&&!f&&e.relative[h[1].type]){b=e.find.ID(j.matches[0].replace(V,""),b,f)[0];if(!b)return c;a=a.slice(h.shift().length)}for(g=W.POS.test(a)?-1:h.length-1;g>=0;g--){j=h[g];if(e.relative[k=j.type])break;if(l=e.find[k])if(d=l(j.matches[0].replace(V,""),R.test(h[0].type)&&b.parentNode||b,f)){h.splice(g,1),a=d.length&&h.join("");if(!a)return w.apply(c,x.call(d,0)),c;break}}}return i(a,m)(d,b,f,c,R.test(a)),c}function bq(){}var c,d,e,f,g,h,i,j,k,l,m=!0,n="undefined",o=("sizcache"+Math.random()).replace(".",""),q=String,r=a.document,s=r.documentElement,t=0,u=0,v=[].pop,w=[].push,x=[].slice,y=[].indexOf||function(a){var b=0,c=this.length;for(;be.cacheLength&&delete a[b.shift()],a[c]=d},a)},B=A(),C=A(),D=A(),E="[\\x20\\t\\r\\n\\f]",F="(?:\\\\.|[-\\w]|[^\\x00-\\xa0])+",G=F.replace("w","w#"),H="([*^$|!~]?=)",I="\\["+E+"*("+F+")"+E+"*(?:"+H+E+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+G+")|)|)"+E+"*\\]",J=":("+F+")(?:\\((?:(['\"])((?:\\\\.|[^\\\\])*?)\\2|([^()[\\]]*|(?:(?:"+I+")|[^:]|\\\\.)*|.*))\\)|)",K=":(even|odd|eq|gt|lt|nth|first|last)(?:\\("+E+"*((?:-\\d)?\\d*)"+E+"*\\)|)(?=[^-]|$)",L=new RegExp("^"+E+"+|((?:^|[^\\\\])(?:\\\\.)*)"+E+"+$","g"),M=new RegExp("^"+E+"*,"+E+"*"),N=new RegExp("^"+E+"*([\\x20\\t\\r\\n\\f>+~])"+E+"*"),O=new RegExp(J),P=/^(?:#([\w\-]+)|(\w+)|\.([\w\-]+))$/,Q=/^:not/,R=/[\x20\t\r\n\f]*[+~]/,S=/:not\($/,T=/h\d/i,U=/input|select|textarea|button/i,V=/\\(?!\\)/g,W={ID:new RegExp("^#("+F+")"),CLASS:new RegExp("^\\.("+F+")"),NAME:new RegExp("^\\[name=['\"]?("+F+")['\"]?\\]"),TAG:new RegExp("^("+F.replace("w","w*")+")"),ATTR:new RegExp("^"+I),PSEUDO:new RegExp("^"+J),POS:new RegExp(K,"i"),CHILD:new RegExp("^:(only|nth|first|last)-child(?:\\("+E+"*(even|odd|(([+-]|)(\\d*)n|)"+E+"*(?:([+-]|)"+E+"*(\\d+)|))"+E+"*\\)|)","i"),needsContext:new RegExp("^"+E+"*[>+~]|"+K,"i")},X=function(a){var b=r.createElement("div");try{return a(b)}catch(c){return!1}finally{b=null}},Y=X(function(a){return a.appendChild(r.createComment("")),!a.getElementsByTagName("*").length}),Z=X(function(a){return a.innerHTML="",a.firstChild&&typeof a.firstChild.getAttribute!==n&&a.firstChild.getAttribute("href")==="#"}),$=X(function(a){a.innerHTML="";var b=typeof a.lastChild.getAttribute("multiple");return b!=="boolean"&&b!=="string"}),_=X(function(a){return a.innerHTML="",!a.getElementsByClassName||!a.getElementsByClassName("e").length?!1:(a.lastChild.className="e",a.getElementsByClassName("e").length===2)}),ba=X(function(a){a.id=o+0,a.innerHTML="
    ",s.insertBefore(a,s.firstChild);var b=r.getElementsByName&&r.getElementsByName(o).length===2+r.getElementsByName(o+0).length;return d=!r.getElementById(o),s.removeChild(a),b});try{x.call(s.childNodes,0)[0].nodeType}catch(bb){x=function(a){var b,c=[];for(;b=this[a];a++)c.push(b);return c}}bc.matches=function(a,b){return bc(a,null,null,b)},bc.matchesSelector=function(a,b){return bc(b,null,null,[a]).length>0},f=bc.getText=function(a){var b,c="",d=0,e=a.nodeType;if(e){if(e===1||e===9||e===11){if(typeof a.textContent=="string")return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=f(a)}else if(e===3||e===4)return a.nodeValue}else for(;b=a[d];d++)c+=f(b);return c},g=bc.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?b.nodeName!=="HTML":!1},h=bc.contains=s.contains?function(a,b){var c=a.nodeType===9?a.documentElement:a,d=b&&b.parentNode;return a===d||!!(d&&d.nodeType===1&&c.contains&&c.contains(d))}:s.compareDocumentPosition?function(a,b){return b&&!!(a.compareDocumentPosition(b)&16)}:function(a,b){while(b=b.parentNode)if(b===a)return!0;return!1},bc.attr=function(a,b){var c,d=g(a);return d||(b=b.toLowerCase()),(c=e.attrHandle[b])?c(a):d||$?a.getAttribute(b):(c=a.getAttributeNode(b),c?typeof a[b]=="boolean"?a[b]?b:null:c.specified?c.value:null:null)},e=bc.selectors={cacheLength:50,createPseudo:z,match:W,attrHandle:Z?{}:{href:function(a){return a.getAttribute("href",2)},type:function(a){return a.getAttribute("type")}},find:{ID:d?function(a,b,c){if(typeof b.getElementById!==n&&!c){var d=b.getElementById(a);return d&&d.parentNode?[d]:[]}}:function(a,c,d){if(typeof c.getElementById!==n&&!d){var e=c.getElementById(a);return e?e.id===a||typeof e.getAttributeNode!==n&&e.getAttributeNode("id").value===a?[e]:b:[]}},TAG:Y?function(a,b){if(typeof b.getElementsByTagName!==n)return b.getElementsByTagName(a)}:function(a,b){var c=b.getElementsByTagName(a);if(a==="*"){var d,e=[],f=0;for(;d=c[f];f++)d.nodeType===1&&e.push(d);return e}return c},NAME:ba&&function(a,b){if(typeof b.getElementsByName!==n)return b.getElementsByName(name)},CLASS:_&&function(a,b,c){if(typeof b.getElementsByClassName!==n&&!c)return b.getElementsByClassName(a)}},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(V,""),a[3]=(a[4]||a[5]||"").replace(V,""),a[2]==="~="&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),a[1]==="nth"?(a[2]||bc.error(a[0]),a[3]=+(a[3]?a[4]+(a[5]||1):2*(a[2]==="even"||a[2]==="odd")),a[4]=+(a[6]+a[7]||a[2]==="odd")):a[2]&&bc.error(a[0]),a},PSEUDO:function(a){var b,c;if(W.CHILD.test(a[0]))return null;if(a[3])a[2]=a[3];else if(b=a[4])O.test(b)&&(c=bh(b,!0))&&(c=b.indexOf(")",b.length-c)-b.length)&&(b=b.slice(0,c),a[0]=a[0].slice(0,c)),a[2]=b;return a.slice(0,3)}},filter:{ID:d?function(a){return a=a.replace(V,""),function(b){return b.getAttribute("id")===a}}:function(a){return a=a.replace(V,""),function(b){var c=typeof b.getAttributeNode!==n&&b.getAttributeNode("id");return c&&c.value===a}},TAG:function(a){return a==="*"?function(){return!0}:(a=a.replace(V,"").toLowerCase(),function(b){return b.nodeName&&b.nodeName.toLowerCase()===a})},CLASS:function(a){var b=B[o][a];return b||(b=B(a,new RegExp("(^|"+E+")"+a+"("+E+"|$)"))),function(a){return b.test(a.className||typeof a.getAttribute!==n&&a.getAttribute("class")||"")}},ATTR:function(a,b,c){return function(d,e){var f=bc.attr(d,a);return f==null?b==="!=":b?(f+="",b==="="?f===c:b==="!="?f!==c:b==="^="?c&&f.indexOf(c)===0:b==="*="?c&&f.indexOf(c)>-1:b==="$="?c&&f.substr(f.length-c.length)===c:b==="~="?(" "+f+" ").indexOf(c)>-1:b==="|="?f===c||f.substr(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d){return a==="nth"?function(a){var b,e,f=a.parentNode;if(c===1&&d===0)return!0;if(f){e=0;for(b=f.firstChild;b;b=b.nextSibling)if(b.nodeType===1){e++;if(a===b)break}}return e-=d,e===c||e%c===0&&e/c>=0}:function(b){var c=b;switch(a){case"only":case"first":while(c=c.previousSibling)if(c.nodeType===1)return!1;if(a==="first")return!0;c=b;case"last":while(c=c.nextSibling)if(c.nodeType===1)return!1;return!0}}},PSEUDO:function(a,b){var c,d=e.pseudos[a]||e.setFilters[a.toLowerCase()]||bc.error("unsupported pseudo: "+a);return d[o]?d(b):d.length>1?(c=[a,a,"",b],e.setFilters.hasOwnProperty(a.toLowerCase())?z(function(a,c){var e,f=d(a,b),g=f.length;while(g--)e=y.call(a,f[g]),a[e]=!(c[e]=f[g])}):function(a){return d(a,0,c)}):d}},pseudos:{not:z(function(a){var b=[],c=[],d=i(a.replace(L,"$1"));return d[o]?z(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)if(f=g[h])a[h]=!(b[h]=f)}):function(a,e,f){return b[0]=a,d(b,null,f,c),!c.pop()}}),has:z(function(a){return function(b){return bc(a,b).length>0}}),contains:z(function(a){return function(b){return(b.textContent||b.innerText||f(b)).indexOf(a)>-1}}),enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&!!a.checked||b==="option"&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},parent:function(a){return!e.pseudos.empty(a)},empty:function(a){var b;a=a.firstChild;while(a){if(a.nodeName>"@"||(b=a.nodeType)===3||b===4)return!1;a=a.nextSibling}return!0},header:function(a){return T.test(a.nodeName)},text:function(a){var b,c;return a.nodeName.toLowerCase()==="input"&&(b=a.type)==="text"&&((c=a.getAttribute("type"))==null||c.toLowerCase()===b)},radio:bd("radio"),checkbox:bd("checkbox"),file:bd("file"),password:bd("password"),image:bd("image"),submit:be("submit"),reset:be("reset"),button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&a.type==="button"||b==="button"},input:function(a){return U.test(a.nodeName)},focus:function(a){var b=a.ownerDocument;return a===b.activeElement&&(!b.hasFocus||b.hasFocus())&&(!!a.type||!!a.href)},active:function(a){return a===a.ownerDocument.activeElement},first:bf(function(a,b,c){return[0]}),last:bf(function(a,b,c){return[b-1]}),eq:bf(function(a,b,c){return[c<0?c+b:c]}),even:bf(function(a,b,c){for(var d=0;d=0;)a.push(d);return a}),gt:bf(function(a,b,c){for(var d=c<0?c+b:c;++d",a.querySelectorAll("[selected]").length||e.push("\\["+E+"*(?:checked|disabled|ismap|multiple|readonly|selected|value)"),a.querySelectorAll(":checked").length||e.push(":checked")}),X(function(a){a.innerHTML="

    ",a.querySelectorAll("[test^='']").length&&e.push("[*^$]="+E+"*(?:\"\"|'')"),a.innerHTML="",a.querySelectorAll(":enabled").length||e.push(":enabled",":disabled")}),e=new RegExp(e.join("|")),bp=function(a,d,f,g,h){if(!g&&!h&&(!e||!e.test(a))){var i,j,k=!0,l=o,m=d,n=d.nodeType===9&&a;if(d.nodeType===1&&d.nodeName.toLowerCase()!=="object"){i=bh(a),(k=d.getAttribute("id"))?l=k.replace(c,"\\$&"):d.setAttribute("id",l),l="[id='"+l+"'] ",j=i.length;while(j--)i[j]=l+i[j].join("");m=R.test(a)&&d.parentNode||d,n=i.join(",")}if(n)try{return w.apply(f,x.call(m.querySelectorAll(n),0)),f}catch(p){}finally{k||d.removeAttribute("id")}}return b(a,d,f,g,h)},h&&(X(function(b){a=h.call(b,"div");try{h.call(b,"[test!='']:sizzle"),f.push("!=",J)}catch(c){}}),f=new RegExp(f.join("|")),bc.matchesSelector=function(b,c){c=c.replace(d,"='$1']");if(!g(b)&&!f.test(c)&&(!e||!e.test(c)))try{var i=h.call(b,c);if(i||a||b.document&&b.document.nodeType!==11)return i}catch(j){}return bc(c,null,null,[b]).length>0})}(),e.pseudos.nth=e.pseudos.eq,e.filters=bq.prototype=e.pseudos,e.setFilters=new bq,bc.attr=p.attr,p.find=bc,p.expr=bc.selectors,p.expr[":"]=p.expr.pseudos,p.unique=bc.uniqueSort,p.text=bc.getText,p.isXMLDoc=bc.isXML,p.contains=bc.contains}(a);var bc=/Until$/,bd=/^(?:parents|prev(?:Until|All))/,be=/^.[^:#\[\.,]*$/,bf=p.expr.match.needsContext,bg={children:!0,contents:!0,next:!0,prev:!0};p.fn.extend({find:function(a){var b,c,d,e,f,g,h=this;if(typeof a!="string")return p(a).filter(function(){for(b=0,c=h.length;b0)for(e=d;e=0:p.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c,d=0,e=this.length,f=[],g=bf.test(a)||typeof a!="string"?p(a,b||this.context):0;for(;d-1:p.find.matchesSelector(c,a)){f.push(c);break}c=c.parentNode}}return f=f.length>1?p.unique(f):f,this.pushStack(f,"closest",a)},index:function(a){return a?typeof a=="string"?p.inArray(this[0],p(a)):p.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.prevAll().length:-1},add:function(a,b){var c=typeof a=="string"?p(a,b):p.makeArray(a&&a.nodeType?[a]:a),d=p.merge(this.get(),c);return this.pushStack(bh(c[0])||bh(d[0])?d:p.unique(d))},addBack:function(a){return this.add(a==null?this.prevObject:this.prevObject.filter(a))}}),p.fn.andSelf=p.fn.addBack,p.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return p.dir(a,"parentNode")},parentsUntil:function(a,b,c){return p.dir(a,"parentNode",c)},next:function(a){return bi(a,"nextSibling")},prev:function(a){return bi(a,"previousSibling")},nextAll:function(a){return p.dir(a,"nextSibling")},prevAll:function(a){return p.dir(a,"previousSibling")},nextUntil:function(a,b,c){return p.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return p.dir(a,"previousSibling",c)},siblings:function(a){return p.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return p.sibling(a.firstChild)},contents:function(a){return p.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:p.merge([],a.childNodes)}},function(a,b){p.fn[a]=function(c,d){var e=p.map(this,b,c);return bc.test(a)||(d=c),d&&typeof d=="string"&&(e=p.filter(d,e)),e=this.length>1&&!bg[a]?p.unique(e):e,this.length>1&&bd.test(a)&&(e=e.reverse()),this.pushStack(e,a,k.call(arguments).join(","))}}),p.extend({filter:function(a,b,c){return c&&(a=":not("+a+")"),b.length===1?p.find.matchesSelector(b[0],a)?[b[0]]:[]:p.find.matches(a,b)},dir:function(a,c,d){var e=[],f=a[c];while(f&&f.nodeType!==9&&(d===b||f.nodeType!==1||!p(f).is(d)))f.nodeType===1&&e.push(f),f=f[c];return e},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var bl="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",bm=/ jQuery\d+="(?:null|\d+)"/g,bn=/^\s+/,bo=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,bp=/<([\w:]+)/,bq=/]","i"),bv=/^(?:checkbox|radio)$/,bw=/checked\s*(?:[^=]|=\s*.checked.)/i,bx=/\/(java|ecma)script/i,by=/^\s*\s*$/g,bz={option:[1,""],legend:[1,"
    ","
    "],thead:[1,"","
    "],tr:[2,"","
    "],td:[3,"","
    "],col:[2,"","
    "],area:[1,"",""],_default:[0,"",""]},bA=bk(e),bB=bA.appendChild(e.createElement("div"));bz.optgroup=bz.option,bz.tbody=bz.tfoot=bz.colgroup=bz.caption=bz.thead,bz.th=bz.td,p.support.htmlSerialize||(bz._default=[1,"X
    ","
    "]),p.fn.extend({text:function(a){return p.access(this,function(a){return a===b?p.text(this):this.empty().append((this[0]&&this[0].ownerDocument||e).createTextNode(a))},null,a,arguments.length)},wrapAll:function(a){if(p.isFunction(a))return this.each(function(b){p(this).wrapAll(a.call(this,b))});if(this[0]){var b=p(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){return p.isFunction(a)?this.each(function(b){p(this).wrapInner(a.call(this,b))}):this.each(function(){var b=p(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=p.isFunction(a);return this.each(function(c){p(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){p.nodeName(this,"body")||p(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){(this.nodeType===1||this.nodeType===11)&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){(this.nodeType===1||this.nodeType===11)&&this.insertBefore(a,this.firstChild)})},before:function(){if(!bh(this[0]))return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=p.clean(arguments);return this.pushStack(p.merge(a,this),"before",this.selector)}},after:function(){if(!bh(this[0]))return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=p.clean(arguments);return this.pushStack(p.merge(this,a),"after",this.selector)}},remove:function(a,b){var c,d=0;for(;(c=this[d])!=null;d++)if(!a||p.filter(a,[c]).length)!b&&c.nodeType===1&&(p.cleanData(c.getElementsByTagName("*")),p.cleanData([c])),c.parentNode&&c.parentNode.removeChild(c);return this},empty:function(){var a,b=0;for(;(a=this[b])!=null;b++){a.nodeType===1&&p.cleanData(a.getElementsByTagName("*"));while(a.firstChild)a.removeChild(a.firstChild)}return this},clone:function(a,b){return a=a==null?!1:a,b=b==null?a:b,this.map(function(){return p.clone(this,a,b)})},html:function(a){return p.access(this,function(a){var c=this[0]||{},d=0,e=this.length;if(a===b)return c.nodeType===1?c.innerHTML.replace(bm,""):b;if(typeof a=="string"&&!bs.test(a)&&(p.support.htmlSerialize||!bu.test(a))&&(p.support.leadingWhitespace||!bn.test(a))&&!bz[(bp.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(bo,"<$1>");try{for(;d1&&typeof j=="string"&&bw.test(j))return this.each(function(){p(this).domManip(a,c,d)});if(p.isFunction(j))return this.each(function(e){var f=p(this);a[0]=j.call(this,e,c?f.html():b),f.domManip(a,c,d)});if(this[0]){e=p.buildFragment(a,this,k),g=e.fragment,f=g.firstChild,g.childNodes.length===1&&(g=f);if(f){c=c&&p.nodeName(f,"tr");for(h=e.cacheable||l-1;i0?this.clone(!0):this).get(),p(g[e])[b](d),f=f.concat(d);return this.pushStack(f,a,g.selector)}}),p.extend({clone:function(a,b,c){var d,e,f,g;p.support.html5Clone||p.isXMLDoc(a)||!bu.test("<"+a.nodeName+">")?g=a.cloneNode(!0):(bB.innerHTML=a.outerHTML,bB.removeChild(g=bB.firstChild));if((!p.support.noCloneEvent||!p.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!p.isXMLDoc(a)){bE(a,g),d=bF(a),e=bF(g);for(f=0;d[f];++f)e[f]&&bE(d[f],e[f])}if(b){bD(a,g);if(c){d=bF(a),e=bF(g);for(f=0;d[f];++f)bD(d[f],e[f])}}return d=e=null,g},clean:function(a,b,c,d){var f,g,h,i,j,k,l,m,n,o,q,r,s=b===e&&bA,t=[];if(!b||typeof b.createDocumentFragment=="undefined")b=e;for(f=0;(h=a[f])!=null;f++){typeof h=="number"&&(h+="");if(!h)continue;if(typeof h=="string")if(!br.test(h))h=b.createTextNode(h);else{s=s||bk(b),l=b.createElement("div"),s.appendChild(l),h=h.replace(bo,"<$1>"),i=(bp.exec(h)||["",""])[1].toLowerCase(),j=bz[i]||bz._default,k=j[0],l.innerHTML=j[1]+h+j[2];while(k--)l=l.lastChild;if(!p.support.tbody){m=bq.test(h),n=i==="table"&&!m?l.firstChild&&l.firstChild.childNodes:j[1]===""&&!m?l.childNodes:[];for(g=n.length-1;g>=0;--g)p.nodeName(n[g],"tbody")&&!n[g].childNodes.length&&n[g].parentNode.removeChild(n[g])}!p.support.leadingWhitespace&&bn.test(h)&&l.insertBefore(b.createTextNode(bn.exec(h)[0]),l.firstChild),h=l.childNodes,l.parentNode.removeChild(l)}h.nodeType?t.push(h):p.merge(t,h)}l&&(h=l=s=null);if(!p.support.appendChecked)for(f=0;(h=t[f])!=null;f++)p.nodeName(h,"input")?bG(h):typeof h.getElementsByTagName!="undefined"&&p.grep(h.getElementsByTagName("input"),bG);if(c){q=function(a){if(!a.type||bx.test(a.type))return d?d.push(a.parentNode?a.parentNode.removeChild(a):a):c.appendChild(a)};for(f=0;(h=t[f])!=null;f++)if(!p.nodeName(h,"script")||!q(h))c.appendChild(h),typeof h.getElementsByTagName!="undefined"&&(r=p.grep(p.merge([],h.getElementsByTagName("script")),q),t.splice.apply(t,[f+1,0].concat(r)),f+=r.length)}return t},cleanData:function(a,b){var c,d,e,f,g=0,h=p.expando,i=p.cache,j=p.support.deleteExpando,k=p.event.special;for(;(e=a[g])!=null;g++)if(b||p.acceptData(e)){d=e[h],c=d&&i[d];if(c){if(c.events)for(f in c.events)k[f]?p.event.remove(e,f):p.removeEvent(e,f,c.handle);i[d]&&(delete i[d],j?delete e[h]:e.removeAttribute?e.removeAttribute(h):e[h]=null,p.deletedIds.push(d))}}}}),function(){var a,b;p.uaMatch=function(a){a=a.toLowerCase();var b=/(chrome)[ \/]([\w.]+)/.exec(a)||/(webkit)[ \/]([\w.]+)/.exec(a)||/(opera)(?:.*version|)[ \/]([\w.]+)/.exec(a)||/(msie) ([\w.]+)/.exec(a)||a.indexOf("compatible")<0&&/(mozilla)(?:.*? rv:([\w.]+)|)/.exec(a)||[];return{browser:b[1]||"",version:b[2]||"0"}},a=p.uaMatch(g.userAgent),b={},a.browser&&(b[a.browser]=!0,b.version=a.version),b.chrome?b.webkit=!0:b.webkit&&(b.safari=!0),p.browser=b,p.sub=function(){function a(b,c){return new a.fn.init(b,c)}p.extend(!0,a,this),a.superclass=this,a.fn=a.prototype=this(),a.fn.constructor=a,a.sub=this.sub,a.fn.init=function c(c,d){return d&&d instanceof p&&!(d instanceof a)&&(d=a(d)),p.fn.init.call(this,c,d,b)},a.fn.init.prototype=a.fn;var b=a(e);return a}}();var bH,bI,bJ,bK=/alpha\([^)]*\)/i,bL=/opacity=([^)]*)/,bM=/^(top|right|bottom|left)$/,bN=/^(none|table(?!-c[ea]).+)/,bO=/^margin/,bP=new RegExp("^("+q+")(.*)$","i"),bQ=new RegExp("^("+q+")(?!px)[a-z%]+$","i"),bR=new RegExp("^([-+])=("+q+")","i"),bS={},bT={position:"absolute",visibility:"hidden",display:"block"},bU={letterSpacing:0,fontWeight:400},bV=["Top","Right","Bottom","Left"],bW=["Webkit","O","Moz","ms"],bX=p.fn.toggle;p.fn.extend({css:function(a,c){return p.access(this,function(a,c,d){return d!==b?p.style(a,c,d):p.css(a,c)},a,c,arguments.length>1)},show:function(){return b$(this,!0)},hide:function(){return b$(this)},toggle:function(a,b){var c=typeof a=="boolean";return p.isFunction(a)&&p.isFunction(b)?bX.apply(this,arguments):this.each(function(){(c?a:bZ(this))?p(this).show():p(this).hide()})}}),p.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=bH(a,"opacity");return c===""?"1":c}}}},cssNumber:{fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":p.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,d,e){if(!a||a.nodeType===3||a.nodeType===8||!a.style)return;var f,g,h,i=p.camelCase(c),j=a.style;c=p.cssProps[i]||(p.cssProps[i]=bY(j,i)),h=p.cssHooks[c]||p.cssHooks[i];if(d===b)return h&&"get"in h&&(f=h.get(a,!1,e))!==b?f:j[c];g=typeof d,g==="string"&&(f=bR.exec(d))&&(d=(f[1]+1)*f[2]+parseFloat(p.css(a,c)),g="number");if(d==null||g==="number"&&isNaN(d))return;g==="number"&&!p.cssNumber[i]&&(d+="px");if(!h||!("set"in h)||(d=h.set(a,d,e))!==b)try{j[c]=d}catch(k){}},css:function(a,c,d,e){var f,g,h,i=p.camelCase(c);return c=p.cssProps[i]||(p.cssProps[i]=bY(a.style,i)),h=p.cssHooks[c]||p.cssHooks[i],h&&"get"in h&&(f=h.get(a,!0,e)),f===b&&(f=bH(a,c)),f==="normal"&&c in bU&&(f=bU[c]),d||e!==b?(g=parseFloat(f),d||p.isNumeric(g)?g||0:f):f},swap:function(a,b,c){var d,e,f={};for(e in b)f[e]=a.style[e],a.style[e]=b[e];d=c.call(a);for(e in b)a.style[e]=f[e];return d}}),a.getComputedStyle?bH=function(b,c){var d,e,f,g,h=a.getComputedStyle(b,null),i=b.style;return h&&(d=h[c],d===""&&!p.contains(b.ownerDocument,b)&&(d=p.style(b,c)),bQ.test(d)&&bO.test(c)&&(e=i.width,f=i.minWidth,g=i.maxWidth,i.minWidth=i.maxWidth=i.width=d,d=h.width,i.width=e,i.minWidth=f,i.maxWidth=g)),d}:e.documentElement.currentStyle&&(bH=function(a,b){var c,d,e=a.currentStyle&&a.currentStyle[b],f=a.style;return e==null&&f&&f[b]&&(e=f[b]),bQ.test(e)&&!bM.test(b)&&(c=f.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),f.left=b==="fontSize"?"1em":e,e=f.pixelLeft+"px",f.left=c,d&&(a.runtimeStyle.left=d)),e===""?"auto":e}),p.each(["height","width"],function(a,b){p.cssHooks[b]={get:function(a,c,d){if(c)return a.offsetWidth===0&&bN.test(bH(a,"display"))?p.swap(a,bT,function(){return cb(a,b,d)}):cb(a,b,d)},set:function(a,c,d){return b_(a,c,d?ca(a,b,d,p.support.boxSizing&&p.css(a,"boxSizing")==="border-box"):0)}}}),p.support.opacity||(p.cssHooks.opacity={get:function(a,b){return bL.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=p.isNumeric(b)?"alpha(opacity="+b*100+")":"",f=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&p.trim(f.replace(bK,""))===""&&c.removeAttribute){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bK.test(f)?f.replace(bK,e):f+" "+e}}),p(function(){p.support.reliableMarginRight||(p.cssHooks.marginRight={get:function(a,b){return p.swap(a,{display:"inline-block"},function(){if(b)return bH(a,"marginRight")})}}),!p.support.pixelPosition&&p.fn.position&&p.each(["top","left"],function(a,b){p.cssHooks[b]={get:function(a,c){if(c){var d=bH(a,b);return bQ.test(d)?p(a).position()[b]+"px":d}}}})}),p.expr&&p.expr.filters&&(p.expr.filters.hidden=function(a){return a.offsetWidth===0&&a.offsetHeight===0||!p.support.reliableHiddenOffsets&&(a.style&&a.style.display||bH(a,"display"))==="none"},p.expr.filters.visible=function(a){return!p.expr.filters.hidden(a)}),p.each({margin:"",padding:"",border:"Width"},function(a,b){p.cssHooks[a+b]={expand:function(c){var d,e=typeof c=="string"?c.split(" "):[c],f={};for(d=0;d<4;d++)f[a+bV[d]+b]=e[d]||e[d-2]||e[0];return f}},bO.test(a)||(p.cssHooks[a+b].set=b_)});var cd=/%20/g,ce=/\[\]$/,cf=/\r?\n/g,cg=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,ch=/^(?:select|textarea)/i;p.fn.extend({serialize:function(){return p.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?p.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||ch.test(this.nodeName)||cg.test(this.type))}).map(function(a,b){var c=p(this).val();return c==null?null:p.isArray(c)?p.map(c,function(a,c){return{name:b.name,value:a.replace(cf,"\r\n")}}):{name:b.name,value:c.replace(cf,"\r\n")}}).get()}}),p.param=function(a,c){var d,e=[],f=function(a,b){b=p.isFunction(b)?b():b==null?"":b,e[e.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=p.ajaxSettings&&p.ajaxSettings.traditional);if(p.isArray(a)||a.jquery&&!p.isPlainObject(a))p.each(a,function(){f(this.name,this.value)});else for(d in a)ci(d,a[d],c,f);return e.join("&").replace(cd,"+")};var cj,ck,cl=/#.*$/,cm=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,cn=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,co=/^(?:GET|HEAD)$/,cp=/^\/\//,cq=/\?/,cr=/)<[^<]*)*<\/script>/gi,cs=/([?&])_=[^&]*/,ct=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+)|)|)/,cu=p.fn.load,cv={},cw={},cx=["*/"]+["*"];try{ck=f.href}catch(cy){ck=e.createElement("a"),ck.href="",ck=ck.href}cj=ct.exec(ck.toLowerCase())||[],p.fn.load=function(a,c,d){if(typeof a!="string"&&cu)return cu.apply(this,arguments);if(!this.length)return this;var e,f,g,h=this,i=a.indexOf(" ");return i>=0&&(e=a.slice(i,a.length),a=a.slice(0,i)),p.isFunction(c)?(d=c,c=b):c&&typeof c=="object"&&(f="POST"),p.ajax({url:a,type:f,dataType:"html",data:c,complete:function(a,b){d&&h.each(d,g||[a.responseText,b,a])}}).done(function(a){g=arguments,h.html(e?p("
    ").append(a.replace(cr,"")).find(e):a)}),this},p.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){p.fn[b]=function(a){return this.on(b,a)}}),p.each(["get","post"],function(a,c){p[c]=function(a,d,e,f){return p.isFunction(d)&&(f=f||e,e=d,d=b),p.ajax({type:c,url:a,data:d,success:e,dataType:f})}}),p.extend({getScript:function(a,c){return p.get(a,b,c,"script")},getJSON:function(a,b,c){return p.get(a,b,c,"json")},ajaxSetup:function(a,b){return b?cB(a,p.ajaxSettings):(b=a,a=p.ajaxSettings),cB(a,b),a},ajaxSettings:{url:ck,isLocal:cn.test(cj[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded; charset=UTF-8",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":cx},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":p.parseJSON,"text xml":p.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:cz(cv),ajaxTransport:cz(cw),ajax:function(a,c){function y(a,c,f,i){var k,s,t,u,w,y=c;if(v===2)return;v=2,h&&clearTimeout(h),g=b,e=i||"",x.readyState=a>0?4:0,f&&(u=cC(l,x,f));if(a>=200&&a<300||a===304)l.ifModified&&(w=x.getResponseHeader("Last-Modified"),w&&(p.lastModified[d]=w),w=x.getResponseHeader("Etag"),w&&(p.etag[d]=w)),a===304?(y="notmodified",k=!0):(k=cD(l,u),y=k.state,s=k.data,t=k.error,k=!t);else{t=y;if(!y||a)y="error",a<0&&(a=0)}x.status=a,x.statusText=(c||y)+"",k?o.resolveWith(m,[s,y,x]):o.rejectWith(m,[x,y,t]),x.statusCode(r),r=b,j&&n.trigger("ajax"+(k?"Success":"Error"),[x,l,k?s:t]),q.fireWith(m,[x,y]),j&&(n.trigger("ajaxComplete",[x,l]),--p.active||p.event.trigger("ajaxStop"))}typeof a=="object"&&(c=a,a=b),c=c||{};var d,e,f,g,h,i,j,k,l=p.ajaxSetup({},c),m=l.context||l,n=m!==l&&(m.nodeType||m instanceof p)?p(m):p.event,o=p.Deferred(),q=p.Callbacks("once memory"),r=l.statusCode||{},t={},u={},v=0,w="canceled",x={readyState:0,setRequestHeader:function(a,b){if(!v){var c=a.toLowerCase();a=u[c]=u[c]||a,t[a]=b}return this},getAllResponseHeaders:function(){return v===2?e:null},getResponseHeader:function(a){var c;if(v===2){if(!f){f={};while(c=cm.exec(e))f[c[1].toLowerCase()]=c[2]}c=f[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){return v||(l.mimeType=a),this},abort:function(a){return a=a||w,g&&g.abort(a),y(0,a),this}};o.promise(x),x.success=x.done,x.error=x.fail,x.complete=q.add,x.statusCode=function(a){if(a){var b;if(v<2)for(b in a)r[b]=[r[b],a[b]];else b=a[x.status],x.always(b)}return this},l.url=((a||l.url)+"").replace(cl,"").replace(cp,cj[1]+"//"),l.dataTypes=p.trim(l.dataType||"*").toLowerCase().split(s),l.crossDomain==null&&(i=ct.exec(l.url.toLowerCase())||!1,l.crossDomain=i&&i.join(":")+(i[3]?"":i[1]==="http:"?80:443)!==cj.join(":")+(cj[3]?"":cj[1]==="http:"?80:443)),l.data&&l.processData&&typeof l.data!="string"&&(l.data=p.param(l.data,l.traditional)),cA(cv,l,c,x);if(v===2)return x;j=l.global,l.type=l.type.toUpperCase(),l.hasContent=!co.test(l.type),j&&p.active++===0&&p.event.trigger("ajaxStart");if(!l.hasContent){l.data&&(l.url+=(cq.test(l.url)?"&":"?")+l.data,delete l.data),d=l.url;if(l.cache===!1){var z=p.now(),A=l.url.replace(cs,"$1_="+z);l.url=A+(A===l.url?(cq.test(l.url)?"&":"?")+"_="+z:"")}}(l.data&&l.hasContent&&l.contentType!==!1||c.contentType)&&x.setRequestHeader("Content-Type",l.contentType),l.ifModified&&(d=d||l.url,p.lastModified[d]&&x.setRequestHeader("If-Modified-Since",p.lastModified[d]),p.etag[d]&&x.setRequestHeader("If-None-Match",p.etag[d])),x.setRequestHeader("Accept",l.dataTypes[0]&&l.accepts[l.dataTypes[0]]?l.accepts[l.dataTypes[0]]+(l.dataTypes[0]!=="*"?", "+cx+"; q=0.01":""):l.accepts["*"]);for(k in l.headers)x.setRequestHeader(k,l.headers[k]);if(!l.beforeSend||l.beforeSend.call(m,x,l)!==!1&&v!==2){w="abort";for(k in{success:1,error:1,complete:1})x[k](l[k]);g=cA(cw,l,c,x);if(!g)y(-1,"No Transport");else{x.readyState=1,j&&n.trigger("ajaxSend",[x,l]),l.async&&l.timeout>0&&(h=setTimeout(function(){x.abort("timeout")},l.timeout));try{v=1,g.send(t,y)}catch(B){if(v<2)y(-1,B);else throw B}}return x}return x.abort()},active:0,lastModified:{},etag:{}});var cE=[],cF=/\?/,cG=/(=)\?(?=&|$)|\?\?/,cH=p.now();p.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var a=cE.pop()||p.expando+"_"+cH++;return this[a]=!0,a}}),p.ajaxPrefilter("json jsonp",function(c,d,e){var f,g,h,i=c.data,j=c.url,k=c.jsonp!==!1,l=k&&cG.test(j),m=k&&!l&&typeof i=="string"&&!(c.contentType||"").indexOf("application/x-www-form-urlencoded")&&cG.test(i);if(c.dataTypes[0]==="jsonp"||l||m)return f=c.jsonpCallback=p.isFunction(c.jsonpCallback)?c.jsonpCallback():c.jsonpCallback,g=a[f],l?c.url=j.replace(cG,"$1"+f):m?c.data=i.replace(cG,"$1"+f):k&&(c.url+=(cF.test(j)?"&":"?")+c.jsonp+"="+f),c.converters["script json"]=function(){return h||p.error(f+" was not called"),h[0]},c.dataTypes[0]="json",a[f]=function(){h=arguments},e.always(function(){a[f]=g,c[f]&&(c.jsonpCallback=d.jsonpCallback,cE.push(f)),h&&p.isFunction(g)&&g(h[0]),h=g=b}),"script"}),p.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){return p.globalEval(a),a}}}),p.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),p.ajaxTransport("script",function(a){if(a.crossDomain){var c,d=e.head||e.getElementsByTagName("head")[0]||e.documentElement;return{send:function(f,g){c=e.createElement("script"),c.async="async",a.scriptCharset&&(c.charset=a.scriptCharset),c.src=a.url,c.onload=c.onreadystatechange=function(a,e){if(e||!c.readyState||/loaded|complete/.test(c.readyState))c.onload=c.onreadystatechange=null,d&&c.parentNode&&d.removeChild(c),c=b,e||g(200,"success")},d.insertBefore(c,d.firstChild)},abort:function(){c&&c.onload(0,1)}}}});var cI,cJ=a.ActiveXObject?function(){for(var a in cI)cI[a](0,1)}:!1,cK=0;p.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&cL()||cM()}:cL,function(a){p.extend(p.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(p.ajaxSettings.xhr()),p.support.ajax&&p.ajaxTransport(function(c){if(!c.crossDomain||p.support.cors){var d;return{send:function(e,f){var g,h,i=c.xhr();c.username?i.open(c.type,c.url,c.async,c.username,c.password):i.open(c.type,c.url,c.async);if(c.xhrFields)for(h in c.xhrFields)i[h]=c.xhrFields[h];c.mimeType&&i.overrideMimeType&&i.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(h in e)i.setRequestHeader(h,e[h])}catch(j){}i.send(c.hasContent&&c.data||null),d=function(a,e){var h,j,k,l,m;try{if(d&&(e||i.readyState===4)){d=b,g&&(i.onreadystatechange=p.noop,cJ&&delete cI[g]);if(e)i.readyState!==4&&i.abort();else{h=i.status,k=i.getAllResponseHeaders(),l={},m=i.responseXML,m&&m.documentElement&&(l.xml=m);try{l.text=i.responseText}catch(a){}try{j=i.statusText}catch(n){j=""}!h&&c.isLocal&&!c.crossDomain?h=l.text?200:404:h===1223&&(h=204)}}}catch(o){e||f(-1,o)}l&&f(h,j,l,k)},c.async?i.readyState===4?setTimeout(d,0):(g=++cK,cJ&&(cI||(cI={},p(a).unload(cJ)),cI[g]=d),i.onreadystatechange=d):d()},abort:function(){d&&d(0,1)}}}});var cN,cO,cP=/^(?:toggle|show|hide)$/,cQ=new RegExp("^(?:([-+])=|)("+q+")([a-z%]*)$","i"),cR=/queueHooks$/,cS=[cY],cT={"*":[function(a,b){var c,d,e=this.createTween(a,b),f=cQ.exec(b),g=e.cur(),h=+g||0,i=1,j=20;if(f){c=+f[2],d=f[3]||(p.cssNumber[a]?"":"px");if(d!=="px"&&h){h=p.css(e.elem,a,!0)||c||1;do i=i||".5",h=h/i,p.style(e.elem,a,h+d);while(i!==(i=e.cur()/g)&&i!==1&&--j)}e.unit=d,e.start=h,e.end=f[1]?h+(f[1]+1)*c:c}return e}]};p.Animation=p.extend(cW,{tweener:function(a,b){p.isFunction(a)?(b=a,a=["*"]):a=a.split(" ");var c,d=0,e=a.length;for(;d-1,j={},k={},l,m;i?(k=e.position(),l=k.top,m=k.left):(l=parseFloat(g)||0,m=parseFloat(h)||0),p.isFunction(b)&&(b=b.call(a,c,f)),b.top!=null&&(j.top=b.top-f.top+l),b.left!=null&&(j.left=b.left-f.left+m),"using"in b?b.using.call(a,j):e.css(j)}},p.fn.extend({position:function(){if(!this[0])return;var a=this[0],b=this.offsetParent(),c=this.offset(),d=c_.test(b[0].nodeName)?{top:0,left:0}:b.offset();return c.top-=parseFloat(p.css(a,"marginTop"))||0,c.left-=parseFloat(p.css(a,"marginLeft"))||0,d.top+=parseFloat(p.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(p.css(b[0],"borderLeftWidth"))||0,{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||e.body;while(a&&!c_.test(a.nodeName)&&p.css(a,"position")==="static")a=a.offsetParent;return a||e.body})}}),p.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(a,c){var d=/Y/.test(c);p.fn[a]=function(e){return p.access(this,function(a,e,f){var g=da(a);if(f===b)return g?c in g?g[c]:g.document.documentElement[e]:a[e];g?g.scrollTo(d?p(g).scrollLeft():f,d?f:p(g).scrollTop()):a[e]=f},a,e,arguments.length,null)}}),p.each({Height:"height",Width:"width"},function(a,c){p.each({padding:"inner"+a,content:c,"":"outer"+a},function(d,e){p.fn[e]=function(e,f){var g=arguments.length&&(d||typeof e!="boolean"),h=d||(e===!0||f===!0?"margin":"border");return p.access(this,function(c,d,e){var f;return p.isWindow(c)?c.document.documentElement["client"+a]:c.nodeType===9?(f=c.documentElement,Math.max(c.body["scroll"+a],f["scroll"+a],c.body["offset"+a],f["offset"+a],f["client"+a])):e===b?p.css(c,d,e,h):p.style(c,d,e,h)},c,g?e:b,g,null)}})}),a.jQuery=a.$=p,typeof define=="function"&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return p})})(window);]]>
    DateFri, 24 Feb 2023 14:01:44 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Accept-Rangesbytes
    ETagW/"93436-1358437290000"
    Last-ModifiedThu, 17 Jan 2013 15:41:30 GMT
    Cache-Controlmax-age=2419200
    ExpiresFri, 24 Mar 2023 14:01:44 GMT
    Content-Typeapplication/javascript;charset=UTF-8
    Content-Length93436
    Keep-Alivetimeout=5, max=100
    ConnectionKeep-Alive
    http://zero.webappsecurity.com:80/index.htmlhttpzero.webappsecurity.com80Best Practices1154655970Privacy Violation: AutocompleteCWE-525: Information Exposure Through Browser CachingSecurity FeaturesPrivacy Violation: AutocompleteSummaryImplicationExecutionFixReference InfoMicrosoft:
    Autocomplete Security]]>
    Info11608116060HTML5: Missing Content Security PolicyEncapsulationHTML5: Missing Content Security PolicyCWE-1173: Improper Use of Validation FrameworkSummaryImplicationExecution
    +Perform the following steps to flag all instances of this issue:
    • Create a new policy with the selection of checks that you want to include in a rescan. We recommend using the Blank or Passive policy as a base.
    • Select this check and uncheck the “FlagAtHost” check input from standard description.
    • Save the policy.
    • Rescan with this new custom policy.
    ]]>
    Fix
    +For example:
    Content-Security-Policy: default-src https://example.net; child-src 'none';
    +Or
    <meta http-equiv="Content-Security-Policy" content="default-src https://cdn.example.net; child-src 'none'; object-src 'none'">

    +Content-Security-Policy 2 is the recommended standard. Content-Security-Policy 3 is in draft. The following is a snapshot of modern browser support for the CSP header:
    • Edge: Versions 15-18; supported with a nonce bug. Version 75 and later; fully supported.
    • Chrome: Versions 36-38; missing the plugin-types, child-src, frame-ancestors, base-uri, and form-action directives. Version 39; missing the plugin-types, child-src, base-uri, and form-action directives. Version 40 and later; fully supported.
    • Firefox: Versions 31-34; missing the plugin-types, child-src, frame-ancestors, base-uri, and form-action directives. Version 35; missing the plugin-types, child-src, frame-ancestors, and form-action directives. Versions 36-44; missing the plugin-types and child-src directives. Version 45 and later; missing the plugin-types directive.
    +Furthermore, the report-uri directive can be configured to receive reports of attempts to violate the policy. These reports can be used as an early indication of security issues in the site as well as to optimize the policy.]]>
    Reference InfoContent Security Policy Level 3
    OWASP Content Security Policy
    MDN web docs
    Content Security Policy (CSP) Quick Reference Guide
    ]]>
    Info11674116760HLI: Detected LibrariesSummary Hacker Level Insights provides developers and security professionals with more context relating to the overall security posture of their application. The version was detected to be in use by during this scan. While these findings do not necessarily represent a security vulnerability, it is important to note that attackers commonly perform reconnaissance of their target in an attempt to identify known weaknesses or patterns. Knowing what the hacker can see provides context which can help teams better secure their applications.
    ]]>
    ImplicationExecutionFixReference Info
    Vulnerability11548112942Cross-Frame ScriptingSecurity FeaturesCross-Frame ScriptingCWE-1021: Improper Restriction of Rendered UI Layers or FramesSummaryA Cross-Frame Scripting (XFS) vulnerability can allow an attacker to load the vulnerable application inside an HTML iframe tag on a malicious page. The attacker could use this weakness to devise a Clickjacking attack to conduct phishing, frame sniffing, social engineering or Cross-Site Request Forgery attacks. +

    Clickjacking
    +The goal of a Clickjacking attack is to deceive the victim (user) into interacting with UI elements of the attacker’s choice on the target web site without their knowledge and then executing privileged functionality on the victim’s behalf. To achieve this goal, the attacker must exploit the XFS vulnerability to load the attack target inside an iframe tag, hide it using Cascading Style Sheets (CSS) and overlay the phishing content on the malicious page. By placing the UI elements on the phishing page so they overlap with those on the page targeted in the attack, the attacker can ensure that the victim must interact with the UI elements on the target page not visible to the victim.

    +WebInspect has detected a response containing one or more forms that accept user input but is missing XFS protection.
    ]]>
    Implicationiframe. Exploitation of this weakness could result in:
    1. Hijacking of user events such as keystrokes
    2. Theft of sensitive information
    3. Execution of privileged functionality through combination with Cross-Site Request Forgery attacks
    ]]>
    ExecutionCreate a test page containing an HTML iframe tag whose src attribute is set to ~FullURL~. Successful framing of the target page indicates that the application is susceptibile to XFS.

    Note that WebInspect will report only one instance of this check across each host within the scope of the scan. The other visible pages on the site may, however, be vulnerable to XFS as well and therefore should be protected against it with an appropriate fix.]]>
    FixThe Content Security Policy (CSP) frame-ancestors directive obsoletes the X-Frame-Options header. Both provide for a policy-based mitigation technique against cross-frame scripting vulnerabilities. The difference is that while the X-Frame-Options technique only checks against the top-level document’s location, the CSP frame-ancestors header checks for conformity from all ancestors.

    +If both CSP frame-ancestors and X-Frame-Options headers are present and supported, the CSP directive will prevail. WebInspect recommends using both CSP frame-ancestors and X-Frame-Options headers as CSP is not supported by Internet Explorer and many older versions of other browsers.

    +In addition, developers must also use client-side frame busting JavaScript as a protection against XFS. This will enable users of older browsers that do not support the X-Frame-Options header to also be protected from Clickjacking attacks.

    X-Frame-Options
    Developers can use this header to instruct the browser about appropriate actions to perform if their site is included inside an iframe. +Developers must set the X-Frame-Options header to one of the following permitted values: +
    • DENY
      +Deny all attempts to frame the page
    • SAMEORIGIN
      +The page can be framed by another page only if it belongs to the same origin as the page being framed
    • ALLOW-FROM origin
      +Developers can specify a list of trusted origins in the origin attribute. Only pages on origin are permitted to load this page inside an iframe

    Content-Security-Policy: frame-ancestors
    Developers can use the CSP header with the frame-ancestors directive, which replaces the X-Frame-Options header, to instruct the browser about appropriate actions to perform if their site is included inside an iframe. Developers can set the frame-ancestors attribute to one of the following permitted values: +
    • +‘none’
      Equivalent to “DENY” - deny all attempts to frame the page
    • ‘self’
      Equivalent to “SAMEORIGIN” - the page can be framed by another page only if it belongs to the same origin as the page being framed
    • <host-source>
      Equivalent to “ALLOW-FROM” - developers can specify a list of trusted origins which maybe host name or IP address or URL scheme. Only pages on this list of trusted origin are permitted to load this page inside an iframe
    • <scheme-source>
      Developers can also specify a schema such as http: or https: that can frame the page.
    ]]>
    Reference InfoFrame Busting:
    Busting Frame Busting: A Study of Clickjacking Vulnerabilities on Popular Sites
    OWASP: Busting Frame Busting

    OWASP:
    Clickjacking

    Content-Security-Policy (CSP)
    CSP: frame-ancestors

    Specification:
    Content Security Policy Level 2
    X-Frame-Options IETF Draft

    Server Configuration:
    IIS
    Apache, nginx

    HP 2012 Cyber Security Report
    The X-Frame-Options header - a failure to launch]]>
    + + + + Zero - Personal Banking - Loans - Credit Cards + + + + + + + + + + + + + + + +
    + + + + +
    +
    +
    +
    + +
    + + +
    + +
    +
    + +
    +
    + +
    + +
    +
    +

    Online Banking

    +

    Click the button below to view online banking features.

    + More Services +
    +
    +
    +

    Checking Account Activity

    +

    Use Zero to view the most up-to-date listings of your deposits, withdrawals, interest payments, and a number of other useful transactions. +

    +
    +
    +
    +
    +

    Transfer Funds

    +

    Use Zero to safely and securely transfer funds between accounts. There is no hold placed on online money transfers, so your funds are available when you need them. +

    +
    +
    +
    +
    +

    My Money Map

    +

    Use Zero to set up and monitor your personalized money map. A money map is an easy-to-use online tool that helps you manage your finances efficiently. With Money Map, you can create a budget, sort your finances into spending and savings categories, check the interest your accounts are earning, and gain new understanding of your patterns with the help of Zero’s clear charts and graphs. +

    +
    +
    +
    + + +
    +
    + +
    +
    + +
    +
    +
    +
    +
    +
      +
    • Download WebInspect
    • +
    +
    + +
    +
      +
    • Terms of Use
    • +
    +
    + +
    +
      +
    • Contact Micro Focus
    • +
    • Privacy Statement
    • + +
    +
    +
    + +
    +
    + The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating + the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting + Web application vulnerabilities. This site is not a real banking site and any similarities to third party products + and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, + either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. + Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at + https://www.microfocus.com/about/legal/#privacy + and Micro Focus Fortify’s Online Privacy Statement found at + https://www.microfocus.com/about/legal/#privacy. + +

    + + Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. +
    +
    +
    +
    +
    + + + + +]]>
    GET/indexhtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0 +
    Refererhttp://zero.webappsecurity.com/
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="8E73B3A63EFE2AADE20745A947151EB3";PSID="306E42D0F653E7CFA6720D7F15AE506B";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="Relative";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="0b20a9b8";
    X-Request-Memorid="36c736fb";sc="1";thid="26";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0
    HTTP/1.1200OK + + + + Zero - Personal Banking - Loans - Credit Cards + + + + + + + + + + + + + + + +
    + + + + +
    +
    +
    +
    + +
    + + +
    + +
    +
    + +
    +
    + +
    + +
    +
    +

    Online Banking

    +

    Click the button below to view online banking features.

    + More Services +
    +
    +
    +

    Checking Account Activity

    +

    Use Zero to view the most up-to-date listings of your deposits, withdrawals, interest payments, and a number of other useful transactions. +

    +
    +
    +
    +
    +

    Transfer Funds

    +

    Use Zero to safely and securely transfer funds between accounts. There is no hold placed on online money transfers, so your funds are available when you need them. +

    +
    +
    +
    +
    +

    My Money Map

    +

    Use Zero to set up and monitor your personalized money map. A money map is an easy-to-use online tool that helps you manage your finances efficiently. With Money Map, you can create a budget, sort your finances into spending and savings categories, check the interest your accounts are earning, and gain new understanding of your patterns with the help of Zero’s clear charts and graphs. +

    +
    +
    +
    + + +
    +
    + +
    +
    + +
    +
    +
    +
    +
    +
      +
    • Download WebInspect
    • +
    +
    + +
    +
      +
    • Terms of Use
    • +
    +
    + +
    +
      +
    • Contact Micro Focus
    • +
    • Privacy Statement
    • + +
    +
    +
    + +
    +
    + The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating + the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting + Web application vulnerabilities. This site is not a real banking site and any similarities to third party products + and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, + either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. + Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at + https://www.microfocus.com/about/legal/#privacy + and Micro Focus Fortify’s Online Privacy Statement found at + https://www.microfocus.com/about/legal/#privacy. + +

    + + Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. +
    +
    +
    +
    +
    + + + + +]]>
    DateFri, 24 Feb 2023 14:01:47 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Cache-Controlno-cache, max-age=0, must-revalidate, no-store
    Content-Typetext/html;charset=UTF-8
    Content-Languageen-US
    Keep-Alivetimeout=5, max=100
    ConnectionKeep-Alive
    Content-Length12471
    /search.htmlsearchTermtextsearch-query
    http://zero.webappsecurity.com:80/search.html?searchTerm=httpzero.webappsecurity.com80Best Practices1154655970Privacy Violation: AutocompleteCWE-525: Information Exposure Through Browser CachingSecurity FeaturesPrivacy Violation: AutocompleteSummaryImplicationExecutionFixReference InfoMicrosoft:
    Autocomplete Security]]>
    + + + + Zero - Search Tips + + + + + + + + + + + + + + + +
    + + + + +
    +
    +
    +
    + +
    + + +
    + +
    + +

    Search Results:

    + The following pages were found for the query: + +
    +
    + +
    +
    + +
    +
    +
    +
    +
    +
      +
    • Download WebInspect
    • +
    +
    + +
    +
      +
    • Terms of Use
    • +
    +
    + +
    +
      +
    • Contact Micro Focus
    • +
    • Privacy Statement
    • + +
    +
    +
    + +
    +
    + The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating + the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting + Web application vulnerabilities. This site is not a real banking site and any similarities to third party products + and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, + either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. + Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at + https://www.microfocus.com/about/legal/#privacy + and Micro Focus Fortify’s Online Privacy Statement found at + https://www.microfocus.com/about/legal/#privacy. + +

    + + Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. +
    +
    +
    +
    +
    + + + + +]]>
    GET/searchhtmlHTTP/1.1searchTerm=Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0 +searchTerm
    Refererhttp://zero.webappsecurity.com/
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="DB032FFFCF5DEA9F74F4C783FBF606D7";PSID="306E42D0F653E7CFA6720D7F15AE506B";SessionType="Crawl";CrawlType="Form";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="action";Format="Relative";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="f6741530";
    X-Request-Memorid="8c587b23";sc="1";thid="25";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0
    HTTP/1.1200OK + + + + Zero - Search Tips + + + + + + + + + + + + + + + +
    + + + + +
    +
    +
    +
    + +
    + + +
    + +
    + +

    Search Results:

    + The following pages were found for the query: + +
    +
    + +
    +
    + +
    +
    +
    +
    +
    +
      +
    • Download WebInspect
    • +
    +
    + +
    +
      +
    • Terms of Use
    • +
    +
    + +
    +
      +
    • Contact Micro Focus
    • +
    • Privacy Statement
    • + +
    +
    +
    + +
    +
    + The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating + the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting + Web application vulnerabilities. This site is not a real banking site and any similarities to third party products + and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, + either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. + Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at + https://www.microfocus.com/about/legal/#privacy + and Micro Focus Fortify’s Online Privacy Statement found at + https://www.microfocus.com/about/legal/#privacy. + +

    + + Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. +
    +
    +
    +
    +
    + + + + +]]>
    DateFri, 24 Feb 2023 14:01:47 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Cache-Controlno-cache, max-age=0, must-revalidate, no-store
    Content-Typetext/html;charset=UTF-8
    Content-Languageen-US
    Keep-Alivetimeout=5, max=100
    ConnectionKeep-Alive
    Content-Length8714
    /search.htmlsearchTermtextsearch-query
    http://zero.webappsecurity.com:80/login.htmlhttpzero.webappsecurity.com80Vulnerability11542105953Often Misused: LoginAPI AbuseOften Misused: LoginCWE-311: Missing Encryption of Sensitive DataSummaryImplicationAn attacker who exploited this design vulnerability would be able to utilize the information to escalate their method of attack, possibly leading to impersonation of a legitimate user, the theft of proprietary data, or execution of actions not intended by the application developers.]]>ExecutionFixEnsure that sensitive areas of your web application have proper encryption protocols in place to prevent login information and other data that could be helpful to an attacker from being intercepted.]]>Reference InfoAdvisory:http://www.kb.cert.org/vuls/id/466433
    ]]>
    Vulnerability1154247223Insecure TransportCWE-319: Cleartext Transmission of Sensitive InformationSecurity FeaturesInsecure TransportSummaryImplicationAn attacker who exploited this design vulnerability would be able to utilize the information to escalate their method of attack, possibly leading to impersonation of a legitimate user, the theft of proprietary data, or execution of actions not intended by the application developers.]]>ExecutionFixFor Security Operations:
    Ensure that sensitive areas of your web application have proper encryption protocols in place to prevent login information and other data that could be helpful to an attacker from being intercepted. +

    For Development:
    Ensure that sensitive areas of your web application have proper encryption protocols in place to prevent login information and other data that could be helpful to an attacker from being intercepted. +

    For QA:
    Test the application not only from the perspective of a normal user, but also from the perspective of a malicious one.]]>
    Reference Info
    Vulnerability11548112933Cross-Frame ScriptingSecurity FeaturesCross-Frame ScriptingCWE-1021: Improper Restriction of Rendered UI Layers or FramesSummaryA Cross-Frame Scripting (XFS) vulnerability can allow an attacker to load the vulnerable application inside an HTML iframe tag on a malicious page. The attacker could use this weakness to devise a Clickjacking attack to conduct phishing, frame sniffing, social engineering or Cross-Site Request Forgery attacks. +

    Clickjacking
    +The goal of a Clickjacking attack is to deceive the victim (user) into interacting with UI elements of the attacker’s choice on the target web site without their knowledge and then executing privileged functionality on the victim’s behalf. To achieve this goal, the attacker must exploit the XFS vulnerability to load the attack target inside an iframe tag, hide it using Cascading Style Sheets (CSS) and overlay the phishing content on the malicious page. By placing the UI elements on the phishing page so they overlap with those on the page targeted in the attack, the attacker can ensure that the victim must interact with the UI elements on the target page not visible to the victim.

    +WebInspect has detected a page which potentially handles sensitive information using an HTML form with a password input field and is missing XFS protection.
    ]]>
    ImplicationA Cross-Frame Scripting weakness could allow an attacker to embed the vulnerable application inside an iframe. Exploitation of this weakness could result in:
    1. Hijacking of user events such as keystrokes
    2. Theft of sensitive information
    3. Execution of privileged functionality through combination with Cross-Site Request Forgery attacks
    ]]>
    ExecutionCreate a test page containing an HTML iframe tag whose src attribute is set to ~FullURL~. Successful framing of the target page indicates that the application is susceptibile to XFS.

    Note that WebInspect will report only one instance of this check across each host within the scope of the scan. The other visible pages on the site may, however, be vulnerable to XFS as well and therefore should be protected against it with an appropriate fix.]]>
    FixThe Content Security Policy (CSP) frame-ancestors directive obsoletes the X-Frame-Options header. Both provide for a policy-based mitigation technique against cross-frame scripting vulnerabilities. The difference is that while the X-Frame-Options technique only checks against the top-level document’s location, the CSP frame-ancestors header checks for conformity from all ancestors.

    +If both CSP frame-ancestors and X-Frame-Options headers are present and supported, the CSP directive will prevail. WebInspect recommends using both CSP frame-ancestors and X-Frame-Options headers as CSP is not supported by Internet Explorer and many older versions of other browsers.

    +In addition, developers must also use client-side frame busting JavaScript as a protection against XFS. This will enable users of older browsers that do not support the X-Frame-Options header to also be protected from Clickjacking attacks.

    X-Frame-Options
    Developers can use this header to instruct the browser about appropriate actions to perform if their site is included inside an iframe. +Developers must set the X-Frame-Options header to one of the following permitted values: +
    • DENY
      +Deny all attempts to frame the page
    • SAMEORIGIN
      +The page can be framed by another page only if it belongs to the same origin as the page being framed
    • ALLOW-FROM origin
      +Developers can specify a list of trusted origins in the origin attribute. Only pages on origin are permitted to load this page inside an iframe

    Content-Security-Policy: frame-ancestors
    Developers can use the CSP header with the frame-ancestors directive, which replaces the X-Frame-Options header, to instruct the browser about appropriate actions to perform if their site is included inside an iframe. Developers can set the frame-ancestors attribute to one of the following permitted values: +
    • +‘none’
      Equivalent to “DENY” - deny all attempts to frame the page
    • ‘self’
      Equivalent to “SAMEORIGIN” - the page can be framed by another page only if it belongs to the same origin as the page being framed
    • <host-source>
      Equivalent to “ALLOW-FROM” - developers can specify a list of trusted origins which maybe host name or IP address or URL scheme. Only pages on this list of trusted origin are permitted to load this page inside an iframe
    • <scheme-source>
      Developers can also specify a schema such as http: or https: that can frame the page.
    ]]>
    Reference InfoFrame Busting:
    Busting Frame Busting: A Study of Clickjacking Vulnerabilities on Popular Sites
    OWASP: Busting Frame Busting

    OWASP:
    Clickjacking

    Content-Security-Policy (CSP)
    CSP: frame-ancestors

    Specification:
    Content Security Policy Level 2
    X-Frame-Options IETF Draft

    Server Configuration:
    IIS
    Apache, nginx

    HP 2012 Cyber Security Report
    The X-Frame-Options header - a failure to launch]]>
    + + + + Zero - Log in + + + + + + + + + + + + + + + +
    + + +
    +
    + + +
    +
    + + +
    + +
    +
    + +
    + + +
    +
    + +
    + +
    + +
    +
    + +
    + +
    + +
    +
    +
    + +
    + +
    + + + Forgot your password ? +
    +
    + + +
    +
    + +
    +
    + +
    +
    +
    +
    +
    +
      +
    • Download WebInspect
    • +
    +
    + +
    +
      +
    • Terms of Use
    • +
    +
    + +
    +
      +
    • Contact Micro Focus
    • +
    • Privacy Statement
    • + +
    +
    +
    + +
    +
    + The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating + the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting + Web application vulnerabilities. This site is not a real banking site and any similarities to third party products + and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, + either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. + Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at + https://www.microfocus.com/about/legal/#privacy + and Micro Focus Fortify’s Online Privacy Statement found at + https://www.microfocus.com/about/legal/#privacy. + +

    + + Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. +
    +
    +
    +
    +
    + + + + +]]>
    GET/loginhtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0 +
    Refererhttp://zero.webappsecurity.com/
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="37A656705626B4D1D64F6BFA191C2A08";PSID="306E42D0F653E7CFA6720D7F15AE506B";SessionType="Crawl";CrawlType="ScriptWindowInclude";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="";Format="Relative";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="a81fe73f";
    X-Request-Memorid="fe20221c";sc="2";thid="24";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0
    HTTP/1.1200OK + + + + Zero - Log in + + + + + + + + + + + + + + + +
    + + +
    +
    + + +
    +
    + + +
    + +
    +
    + +
    + + +
    +
    + +
    + +
    + +
    +
    + +
    + +
    + +
    +
    +
    + +
    + +
    + + + Forgot your password ? +
    +
    + + +
    +
    + +
    +
    + +
    +
    +
    +
    +
    +
      +
    • Download WebInspect
    • +
    +
    + +
    +
      +
    • Terms of Use
    • +
    +
    + +
    +
      +
    • Contact Micro Focus
    • +
    • Privacy Statement
    • + +
    +
    +
    + +
    +
    + The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating + the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting + Web application vulnerabilities. This site is not a real banking site and any similarities to third party products + and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, + either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. + Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at + https://www.microfocus.com/about/legal/#privacy + and Micro Focus Fortify’s Online Privacy Statement found at + https://www.microfocus.com/about/legal/#privacy. + +

    + + Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. +
    +
    +
    +
    +
    + + + + +]]>
    DateFri, 24 Feb 2023 14:01:47 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Cache-Controlno-cache, max-age=0, must-revalidate, no-store
    Content-Typetext/html;charset=UTF-8
    Content-Languageen-US
    Keep-Alivetimeout=5, max=100
    ConnectionKeep-Alive
    Content-Length7318
    /signin.htmlpostuser_logintextuser_passwordpassworduser_remember_mecheckboxsubmitSign insubmitbtn btn-primary
    http://zero.webappsecurity.com:80/online-banking.htmlhttpzero.webappsecurity.com80Best Practices1154655970Privacy Violation: AutocompleteCWE-525: Information Exposure Through Browser CachingSecurity FeaturesPrivacy Violation: AutocompleteSummaryImplicationExecutionFixReference InfoMicrosoft:
    Autocomplete Security]]>
    Info11674116760HLI: Detected LibrariesSummary Hacker Level Insights provides developers and security professionals with more context relating to the overall security posture of their application. The version was detected to be in use by during this scan. While these findings do not necessarily represent a security vulnerability, it is important to note that attackers commonly perform reconnaissance of their target in an attempt to identify known weaknesses or patterns. Knowing what the hacker can see provides context which can help teams better secure their applications.
    ]]>
    ImplicationExecutionFixReference Info
    + + + + Zero - Free Access to Online Banking + + + + + + + + + + + + + + + +
    + + + + +
    +
    +
    +
    + +
    + + +
    + +
    +
    +
    +
    +
    +
    +

    Online Banking

    +

    + Pay bills easily +

    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Our Bank is trusted by over 1,000,000 customers world wide. + Sign in now! +

    +
    +
    + +
    +
    +
    +

    + + Account Summary +

    +
    +

    See all of your account balances at a glance.

    +
    + +
    +

    + + Account Activity +

    +
    +

    View the most up-to-date listings of your deposits, withdrawals, interest payments, and other transactions.

    +
    + +
    +

    Transfer Funds

    +
    +

    Safely and securely transfer funds between accounts.

    +
    +
    + +
    +
    +

    Pay Bills

    +
    +

    Pay your bills quickly and securely online.

    +
    + +
    +

    My Money Map

    +
    +

    Use Zero to set up and monitor your personalized money map. A money map is an easy-to-use online tool that helps you manage your finances efficiently.

    +
    + +
    +

    Online Statements

    +
    +

    View the statement history of all your accounts.

    +
    +
    +
    + +
    +
    + +
    +
    + +
    +
    +
    +
    +
    +
      +
    • Download WebInspect
    • +
    +
    + +
    +
      +
    • Terms of Use
    • +
    +
    + +
    +
      +
    • Contact Micro Focus
    • +
    • Privacy Statement
    • + +
    +
    +
    + +
    +
    + The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating + the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting + Web application vulnerabilities. This site is not a real banking site and any similarities to third party products + and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, + either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. + Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at + https://www.microfocus.com/about/legal/#privacy + and Micro Focus Fortify’s Online Privacy Statement found at + https://www.microfocus.com/about/legal/#privacy. + +

    + + Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. +
    +
    +
    +
    +
    + + + + +]]>
    GET/online-bankinghtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0 +
    Refererhttp://zero.webappsecurity.com/
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="0961B4C9AB7ECE8F80F1EFC03677941C";PSID="306E42D0F653E7CFA6720D7F15AE506B";SessionType="Crawl";CrawlType="ScriptWindowInclude";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="";Format="Relative";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="23674a92";
    X-Request-Memorid="7727a077";sc="1";thid="26";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0
    HTTP/1.1200OK + + + + Zero - Free Access to Online Banking + + + + + + + + + + + + + + + +
    + + + + +
    +
    +
    +
    + +
    + + +
    + +
    +
    +
    +
    +
    +
    +

    Online Banking

    +

    + Pay bills easily +

    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Our Bank is trusted by over 1,000,000 customers world wide. + Sign in now! +

    +
    +
    + +
    +
    +
    +

    + + Account Summary +

    +
    +

    See all of your account balances at a glance.

    +
    + +
    +

    + + Account Activity +

    +
    +

    View the most up-to-date listings of your deposits, withdrawals, interest payments, and other transactions.

    +
    + +
    +

    Transfer Funds

    +
    +

    Safely and securely transfer funds between accounts.

    +
    +
    + +
    +
    +

    Pay Bills

    +
    +

    Pay your bills quickly and securely online.

    +
    + +
    +

    My Money Map

    +
    +

    Use Zero to set up and monitor your personalized money map. A money map is an easy-to-use online tool that helps you manage your finances efficiently.

    +
    + +
    +

    Online Statements

    +
    +

    View the statement history of all your accounts.

    +
    +
    +
    + +
    +
    + +
    +
    + +
    +
    +
    +
    +
    +
      +
    • Download WebInspect
    • +
    +
    + +
    +
      +
    • Terms of Use
    • +
    +
    + +
    +
      +
    • Contact Micro Focus
    • +
    • Privacy Statement
    • + +
    +
    +
    + +
    +
    + The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating + the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting + Web application vulnerabilities. This site is not a real banking site and any similarities to third party products + and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, + either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. + Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at + https://www.microfocus.com/about/legal/#privacy + and Micro Focus Fortify’s Online Privacy Statement found at + https://www.microfocus.com/about/legal/#privacy. + +

    + + Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. +
    +
    +
    +
    +
    + + + + +]]>
    DateFri, 24 Feb 2023 14:01:48 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Cache-Controlno-cache, max-age=0, must-revalidate, no-store
    Content-Typetext/html;charset=UTF-8
    Content-Languageen-US
    Keep-Alivetimeout=5, max=99
    ConnectionKeep-Alive
    Content-Length11353
    /search.htmlsearchTermtextsearch-query
    http://zero.webappsecurity.com:80/feedback.htmlhttpzero.webappsecurity.com80Best Practices1154655970Privacy Violation: AutocompleteCWE-525: Information Exposure Through Browser CachingSecurity FeaturesPrivacy Violation: AutocompleteSummaryImplicationExecutionFixReference InfoMicrosoft:
    Autocomplete Security]]>
    Info11674116760HLI: Detected LibrariesSummary Hacker Level Insights provides developers and security professionals with more context relating to the overall security posture of their application. The version was detected to be in use by during this scan. While these findings do not necessarily represent a security vulnerability, it is important to note that attackers commonly perform reconnaissance of their target in an attempt to identify known weaknesses or patterns. Knowing what the hacker can see provides context which can help teams better secure their applications.
    ]]>
    ImplicationExecutionFixReference Info
    + + + + Zero - Contact Us + + + + + + + + + + + + + + +
    + + + + +
    +
    + +
    +
    + + +
    +

    + Our Frequently Asked Questions area will help you with many + of your inquiries. +
    + If you can't find your question, return to this page and use the e-mail form below. +

    +
    +

    + IMPORTANT! This feedback facility is not secure. Please do not send any +
    + account information in a message sent from here. +

    + +
    + +
    + + + +
    + + +
    + +
    +
    + + +
    +
    + +
    +
    + +
    +
    +
    +
    +
    +
      +
    • Download WebInspect
    • +
    +
    + +
    +
      +
    • Terms of Use
    • +
    +
    + +
    +
      +
    • Contact Micro Focus
    • +
    • Privacy Statement
    • + +
    +
    +
    + +
    +
    + The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating + the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting + Web application vulnerabilities. This site is not a real banking site and any similarities to third party products + and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, + either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. + Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at + https://www.microfocus.com/about/legal/#privacy + and Micro Focus Fortify’s Online Privacy Statement found at + https://www.microfocus.com/about/legal/#privacy. + +

    + + Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. +
    +
    +
    +
    +
    + + + + +]]>
    GET/feedbackhtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0 +
    Refererhttp://zero.webappsecurity.com/
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="EA0F5B4A7B2D5822D3AE6FEB6AC0B160";PSID="306E42D0F653E7CFA6720D7F15AE506B";SessionType="Crawl";CrawlType="ScriptWindowInclude";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="";Format="Relative";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="ad789882";
    X-Request-Memorid="2dba37e9";sc="1";thid="26";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0
    HTTP/1.1200OK + + + + Zero - Contact Us + + + + + + + + + + + + + + +
    + + + + +
    +
    + +
    +
    + + +
    +

    + Our Frequently Asked Questions area will help you with many + of your inquiries. +
    + If you can't find your question, return to this page and use the e-mail form below. +

    +
    +

    + IMPORTANT! This feedback facility is not secure. Please do not send any +
    + account information in a message sent from here. +

    + +
    + +
    + + + +
    + + +
    + +
    +
    + + +
    +
    + +
    +
    + +
    +
    +
    +
    +
    +
      +
    • Download WebInspect
    • +
    +
    + +
    +
      +
    • Terms of Use
    • +
    +
    + +
    +
      +
    • Contact Micro Focus
    • +
    • Privacy Statement
    • + +
    +
    +
    + +
    +
    + The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating + the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting + Web application vulnerabilities. This site is not a real banking site and any similarities to third party products + and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, + either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. + Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at + https://www.microfocus.com/about/legal/#privacy + and Micro Focus Fortify’s Online Privacy Statement found at + https://www.microfocus.com/about/legal/#privacy. + +

    + + Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. +
    +
    +
    +
    +
    + + + + +]]>
    DateFri, 24 Feb 2023 14:01:50 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Cache-Controlno-cache, max-age=0, must-revalidate, no-store
    Content-Typetext/html;charset=UTF-8
    Content-Languageen-US
    Keep-Alivetimeout=5, max=98
    ConnectionKeep-Alive
    Content-Length9258
    /search.htmlsearchTermtextsearch-query
    /sendFeedback.htmlpostnametextemailtextsubjecttextsubmitSend Messagesubmitbtn-signin btn btn-primary
    http://zero.webappsecurity.com:80/bank/account-activity.htmlhttpzero.webappsecurity.com80GET/bank/account-activityhtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0 +
    Refererhttp://zero.webappsecurity.com/
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="572440DF9821707E127D137806557948";PSID="306E42D0F653E7CFA6720D7F15AE506B";SessionType="Crawl";CrawlType="ScriptWindowInclude";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="";Format="Relative";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="a58bc509";
    X-Request-Memorid="8a80acdd";sc="2";thid="25";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0
    HTTP/1.1302FoundSet-Cookie: JSESSIONID=266ED445; Path=/; HttpOnly +
    DateFri, 24 Feb 2023 14:01:52 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Cache-Controlno-cache, max-age=0, must-revalidate, no-store
    Locationhttp://zero.webappsecurity.com/login.html
    Content-Length0
    Set-CookieJSESSIONID=266ED445; Path=/; HttpOnly
    Keep-Alivetimeout=5, max=100
    ConnectionKeep-Alive
    Content-Typetext/html
    JSESSIONID266ED445/False
    http://zero.webappsecurity.com:80/bank/transfer-funds.htmlhttpzero.webappsecurity.com80GET/bank/transfer-fundshtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="2B209BFC89996A2F0AE9ED7C1F450D6E";PSID="306E42D0F653E7CFA6720D7F15AE506B";SessionType="Crawl";CrawlType="ScriptWindowInclude";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="";Format="Relative";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="5644aa4a";
    X-Request-Memorid="e375e2ad";sc="1";thid="25";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1302Found
    DateFri, 24 Feb 2023 14:01:53 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Cache-Controlno-cache, max-age=0, must-revalidate, no-store
    Locationhttp://zero.webappsecurity.com/login.html
    Content-Length0
    Keep-Alivetimeout=5, max=96
    ConnectionKeep-Alive
    Content-Typetext/html
    http://zero.webappsecurity.com:80/bank/money-map.htmlhttpzero.webappsecurity.com80GET/bank/money-maphtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="90912931396CA6B973BE587C0ECB68E3";PSID="306E42D0F653E7CFA6720D7F15AE506B";SessionType="Crawl";CrawlType="ScriptWindowInclude";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="";Format="Relative";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="d5059993";
    X-Request-Memorid="37a9ecc6";sc="1";thid="25";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1302Found
    DateFri, 24 Feb 2023 14:01:53 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Cache-Controlno-cache, max-age=0, must-revalidate, no-store
    Locationhttp://zero.webappsecurity.com/login.html
    Content-Length0
    Keep-Alivetimeout=5, max=93
    ConnectionKeep-Alive
    Content-Typetext/html
    http://zero.webappsecurity.com:80/search.htmlhttpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

    HTTP Status 400 - Required String parameter 'searchTerm' is not present


    type Status report

    message Required String parameter 'searchTerm' is not present

    description The request sent by the client was syntactically incorrect.


    Apache Tomcat/7.0.70

    ]]>
    GET/searchhtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="E44F892A7930F4A1406A96562981B338";PSID="306E42D0F653E7CFA6720D7F15AE506B";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="action";Format="Relative";LinkKind="FormAction";Locations="HtmlNode";NodeName="form";Source="StaticParser";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="b0fb7c49";
    X-Request-Memorid="1015b67e";sc="1";thid="25";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1400Bad RequestApache Tomcat/7.0.70 - Error report

    HTTP Status 400 - Required String parameter 'searchTerm' is not present


    type Status report

    message Required String parameter 'searchTerm' is not present

    description The request sent by the client was syntactically incorrect.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:01:53 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Cache-Controlno-cache, max-age=0, must-revalidate, no-store
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length1074
    Connectionclose
    http://zero.webappsecurity.com:80/resources/js/jquery-1.7.2.min.jshttpzero.webappsecurity.com80").appendTo(b),e=d.css("display");d.remove();if(e==="none"||e===""){ck||(ck=c.createElement("iframe"),ck.frameBorder=ck.width=ck.height=0),b.appendChild(ck);if(!cl||!ck.createElement)cl=(ck.contentWindow||ck.contentDocument).document,cl.write((f.support.boxModel?"":"")+""),cl.close();d=cl.createElement(a),cl.body.appendChild(d),e=f.css(d,"display"),b.removeChild(ck)}cj[a]=e}return cj[a]}function ct(a,b){var c={};f.each(cp.concat.apply([],cp.slice(0,b)),function(){c[this]=a});return c}function cs(){cq=b}function cr(){setTimeout(cs,0);return cq=f.now()}function ci(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function ch(){try{return new a.XMLHttpRequest}catch(b){}}function cb(a,c){a.dataFilter&&(c=a.dataFilter(c,a.dataType));var d=a.dataTypes,e={},g,h,i=d.length,j,k=d[0],l,m,n,o,p;for(g=1;g0){if(c!=="border")for(;e=0===c})}function S(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function K(){return!0}function J(){return!1}function n(a,b,c){var d=b+"defer",e=b+"queue",g=b+"mark",h=f._data(a,d);h&&(c==="queue"||!f._data(a,e))&&(c==="mark"||!f._data(a,g))&&setTimeout(function(){!f._data(a,e)&&!f._data(a,g)&&(f.removeData(a,d,!0),h.fire())},0)}function m(a){for(var b in a){if(b==="data"&&f.isEmptyObject(a[b]))continue;if(b!=="toJSON")return!1}return!0}function l(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(k,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:f.isNumeric(d)?+d:j.test(d)?f.parseJSON(d):d}catch(g){}f.data(a,c,d)}else d=b}return d}function h(a){var b=g[a]={},c,d;a=a.split(/\s+/);for(c=0,d=a.length;c)[^>]*$|#([\w\-]*)$)/,j=/\S/,k=/^\s+/,l=/\s+$/,m=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,n=/^[\],:{}\s]*$/,o=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,p=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,q=/(?:^|:|,)(?:\s*\[)+/g,r=/(webkit)[ \/]([\w.]+)/,s=/(opera)(?:.*version)?[ \/]([\w.]+)/,t=/(msie) ([\w.]+)/,u=/(mozilla)(?:.*? rv:([\w.]+))?/,v=/-([a-z]|[0-9])/ig,w=/^-ms-/,x=function(a,b){return(b+"").toUpperCase()},y=d.userAgent,z,A,B,C=Object.prototype.toString,D=Object.prototype.hasOwnProperty,E=Array.prototype.push,F=Array.prototype.slice,G=String.prototype.trim,H=Array.prototype.indexOf,I={};e.fn=e.prototype={constructor:e,init:function(a,d,f){var g,h,j,k;if(!a)return this;if(a.nodeType){this.context=this[0]=a,this.length=1;return this}if(a==="body"&&!d&&c.body){this.context=c,this[0]=c.body,this.selector=a,this.length=1;return this}if(typeof a=="string"){a.charAt(0)!=="<"||a.charAt(a.length-1)!==">"||a.length<3?g=i.exec(a):g=[null,a,null];if(g&&(g[1]||!d)){if(g[1]){d=d instanceof e?d[0]:d,k=d?d.ownerDocument||d:c,j=m.exec(a),j?e.isPlainObject(d)?(a=[c.createElement(j[1])],e.fn.attr.call(a,d,!0)):a=[k.createElement(j[1])]:(j=e.buildFragment([g[1]],[k]),a=(j.cacheable?e.clone(j.fragment):j.fragment).childNodes);return e.merge(this,a)}h=c.getElementById(g[2]);if(h&&h.parentNode){if(h.id!==g[2])return f.find(a);this.length=1,this[0]=h}this.context=c,this.selector=a;return this}return!d||d.jquery?(d||f).find(a):this.constructor(d).find(a)}if(e.isFunction(a))return f.ready(a);a.selector!==b&&(this.selector=a.selector,this.context=a.context);return e.makeArray(a,this)},selector:"",jquery:"1.7.2",length:0,size:function(){return this.length},toArray:function(){return F.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=this.constructor();e.isArray(a)?E.apply(d,a):e.merge(d,a),d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")");return d},each:function(a,b){return e.each(this,a,b)},ready:function(a){e.bindReady(),A.add(a);return this},eq:function(a){a=+a;return a===-1?this.slice(a):this.slice(a,a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(F.apply(this,arguments),"slice",F.call(arguments).join(","))},map:function(a){return this.pushStack(e.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:E,sort:[].sort,splice:[].splice},e.fn.init.prototype=e.fn,e.extend=e.fn.extend=function(){var a,c,d,f,g,h,i=arguments[0]||{},j=1,k=arguments.length,l=!1;typeof i=="boolean"&&(l=i,i=arguments[1]||{},j=2),typeof i!="object"&&!e.isFunction(i)&&(i={}),k===j&&(i=this,--j);for(;j0)return;A.fireWith(c,[e]),e.fn.trigger&&e(c).trigger("ready").off("ready")}},bindReady:function(){if(!A){A=e.Callbacks("once memory");if(c.readyState==="complete")return setTimeout(e.ready,1);if(c.addEventListener)c.addEventListener("DOMContentLoaded",B,!1),a.addEventListener("load",e.ready,!1);else if(c.attachEvent){c.attachEvent("onreadystatechange",B),a.attachEvent("onload",e.ready);var b=!1;try{b=a.frameElement==null}catch(d){}c.documentElement.doScroll&&b&&J()}}},isFunction:function(a){return e.type(a)==="function"},isArray:Array.isArray||function(a){return e.type(a)==="array"},isWindow:function(a){return a!=null&&a==a.window},isNumeric:function(a){return!isNaN(parseFloat(a))&&isFinite(a)},type:function(a){return a==null?String(a):I[C.call(a)]||"object"},isPlainObject:function(a){if(!a||e.type(a)!=="object"||a.nodeType||e.isWindow(a))return!1;try{if(a.constructor&&!D.call(a,"constructor")&&!D.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||D.call(a,d)},isEmptyObject:function(a){for(var b in a)return!1;return!0},error:function(a){throw new Error(a)},parseJSON:function(b){if(typeof b!="string"||!b)return null;b=e.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(n.test(b.replace(o,"@").replace(p,"]").replace(q,"")))return(new Function("return "+b))();e.error("Invalid JSON: "+b)},parseXML:function(c){if(typeof c!="string"||!c)return null;var d,f;try{a.DOMParser?(f=new DOMParser,d=f.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(g){d=b}(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&e.error("Invalid XML: "+c);return d},noop:function(){},globalEval:function(b){b&&j.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(w,"ms-").replace(v,x)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,c,d){var f,g=0,h=a.length,i=h===b||e.isFunction(a);if(d){if(i){for(f in a)if(c.apply(a[f],d)===!1)break}else for(;g0&&a[0]&&a[j-1]||j===0||e.isArray(a));if(k)for(;i1?i.call(arguments,0):b,j.notifyWith(k,e)}}function l(a){return function(c){b[a]=arguments.length>1?i.call(arguments,0):c,--g||j.resolveWith(j,b)}}var b=i.call(arguments,0),c=0,d=b.length,e=Array(d),g=d,h=d,j=d<=1&&a&&f.isFunction(a.promise)?a:f.Deferred(),k=j.promise();if(d>1){for(;c
    a",d=p.getElementsByTagName("*"),e=p.getElementsByTagName("a")[0];if(!d||!d.length||!e)return{};g=c.createElement("select"),h=g.appendChild(c.createElement("option")),i=p.getElementsByTagName("input")[0],b={leadingWhitespace:p.firstChild.nodeType===3,tbody:!p.getElementsByTagName("tbody").length,htmlSerialize:!!p.getElementsByTagName("link").length,style:/top/.test(e.getAttribute("style")),hrefNormalized:e.getAttribute("href")==="/a",opacity:/^0.55/.test(e.style.opacity),cssFloat:!!e.style.cssFloat,checkOn:i.value==="on",optSelected:h.selected,getSetAttribute:p.className!=="t",enctype:!!c.createElement("form").enctype,html5Clone:c.createElement("nav").cloneNode(!0).outerHTML!=="<:nav>",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0,pixelMargin:!0},f.boxModel=b.boxModel=c.compatMode==="CSS1Compat",i.checked=!0,b.noCloneChecked=i.cloneNode(!0).checked,g.disabled=!0,b.optDisabled=!h.disabled;try{delete p.test}catch(r){b.deleteExpando=!1}!p.addEventListener&&p.attachEvent&&p.fireEvent&&(p.attachEvent("onclick",function(){b.noCloneEvent=!1}),p.cloneNode(!0).fireEvent("onclick")),i=c.createElement("input"),i.value="t",i.setAttribute("type","radio"),b.radioValue=i.value==="t",i.setAttribute("checked","checked"),i.setAttribute("name","t"),p.appendChild(i),j=c.createDocumentFragment(),j.appendChild(p.lastChild),b.checkClone=j.cloneNode(!0).cloneNode(!0).lastChild.checked,b.appendChecked=i.checked,j.removeChild(i),j.appendChild(p);if(p.attachEvent)for(n in{submit:1,change:1,focusin:1})m="on"+n,o=m in p,o||(p.setAttribute(m,"return;"),o=typeof p[m]=="function"),b[n+"Bubbles"]=o;j.removeChild(p),j=g=h=p=i=null,f(function(){var d,e,g,h,i,j,l,m,n,q,r,s,t,u=c.getElementsByTagName("body")[0];!u||(m=1,t="padding:0;margin:0;border:",r="position:absolute;top:0;left:0;width:1px;height:1px;",s=t+"0;visibility:hidden;",n="style='"+r+t+"5px solid #000;",q="
    "+""+"
    ",d=c.createElement("div"),d.style.cssText=s+"width:0;height:0;position:static;top:0;margin-top:"+m+"px",u.insertBefore(d,u.firstChild),p=c.createElement("div"),d.appendChild(p),p.innerHTML="
    t
    ",k=p.getElementsByTagName("td"),o=k[0].offsetHeight===0,k[0].style.display="",k[1].style.display="none",b.reliableHiddenOffsets=o&&k[0].offsetHeight===0,a.getComputedStyle&&(p.innerHTML="",l=c.createElement("div"),l.style.width="0",l.style.marginRight="0",p.style.width="2px",p.appendChild(l),b.reliableMarginRight=(parseInt((a.getComputedStyle(l,null)||{marginRight:0}).marginRight,10)||0)===0),typeof p.style.zoom!="undefined"&&(p.innerHTML="",p.style.width=p.style.padding="1px",p.style.border=0,p.style.overflow="hidden",p.style.display="inline",p.style.zoom=1,b.inlineBlockNeedsLayout=p.offsetWidth===3,p.style.display="block",p.style.overflow="visible",p.innerHTML="
    ",b.shrinkWrapBlocks=p.offsetWidth!==3),p.style.cssText=r+s,p.innerHTML=q,e=p.firstChild,g=e.firstChild,i=e.nextSibling.firstChild.firstChild,j={doesNotAddBorder:g.offsetTop!==5,doesAddBorderForTableAndCells:i.offsetTop===5},g.style.position="fixed",g.style.top="20px",j.fixedPosition=g.offsetTop===20||g.offsetTop===15,g.style.position=g.style.top="",e.style.overflow="hidden",e.style.position="relative",j.subtractsBorderForOverflowNotVisible=g.offsetTop===-5,j.doesNotIncludeMarginInBodyOffset=u.offsetTop!==m,a.getComputedStyle&&(p.style.marginTop="1%",b.pixelMargin=(a.getComputedStyle(p,null)||{marginTop:0}).marginTop!=="1%"),typeof d.style.zoom!="undefined"&&(d.style.zoom=1),u.removeChild(d),l=p=d=null,f.extend(b,j))});return b}();var j=/^(?:\{.*\}|\[.*\])$/,k=/([A-Z])/g;f.extend({cache:{},uuid:0,expando:"jQuery"+(f.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){a=a.nodeType?f.cache[a[f.expando]]:a[f.expando];return!!a&&!m(a)},data:function(a,c,d,e){if(!!f.acceptData(a)){var g,h,i,j=f.expando,k=typeof c=="string",l=a.nodeType,m=l?f.cache:a,n=l?a[j]:a[j]&&j,o=c==="events";if((!n||!m[n]||!o&&!e&&!m[n].data)&&k&&d===b)return;n||(l?a[j]=n=++f.uuid:n=j),m[n]||(m[n]={},l||(m[n].toJSON=f.noop));if(typeof c=="object"||typeof c=="function")e?m[n]=f.extend(m[n],c):m[n].data=f.extend(m[n].data,c);g=h=m[n],e||(h.data||(h.data={}),h=h.data),d!==b&&(h[f.camelCase(c)]=d);if(o&&!h[c])return g.events;k?(i=h[c],i==null&&(i=h[f.camelCase(c)])):i=h;return i}},removeData:function(a,b,c){if(!!f.acceptData(a)){var d,e,g,h=f.expando,i=a.nodeType,j=i?f.cache:a,k=i?a[h]:h;if(!j[k])return;if(b){d=c?j[k]:j[k].data;if(d){f.isArray(b)||(b in d?b=[b]:(b=f.camelCase(b),b in d?b=[b]:b=b.split(" ")));for(e=0,g=b.length;e1,null,!1)},removeData:function(a){return this.each(function(){f.removeData(this,a)})}}),f.extend({_mark:function(a,b){a&&(b=(b||"fx")+"mark",f._data(a,b,(f._data(a,b)||0)+1))},_unmark:function(a,b,c){a!==!0&&(c=b,b=a,a=!1);if(b){c=c||"fx";var d=c+"mark",e=a?0:(f._data(b,d)||1)-1;e?f._data(b,d,e):(f.removeData(b,d,!0),n(b,c,"mark"))}},queue:function(a,b,c){var d;if(a){b=(b||"fx")+"queue",d=f._data(a,b),c&&(!d||f.isArray(c)?d=f._data(a,b,f.makeArray(c)):d.push(c));return d||[]}},dequeue:function(a,b){b=b||"fx";var c=f.queue(a,b),d=c.shift(),e={};d==="inprogress"&&(d=c.shift()),d&&(b==="fx"&&c.unshift("inprogress"),f._data(a,b+".run",e),d.call(a,function(){f.dequeue(a,b)},e)),c.length||(f.removeData(a,b+"queue "+b+".run",!0),n(a,b,"queue"))}}),f.fn.extend({queue:function(a,c){var d=2;typeof a!="string"&&(c=a,a="fx",d--);if(arguments.length1)},removeAttr:function(a){return this.each(function(){f.removeAttr(this,a)})},prop:function(a,b){return f.access(this,f.prop,a,b,arguments.length>1)},removeProp:function(a){a=f.propFix[a]||a;return this.each(function(){try{this[a]=b,delete this[a]}catch(c){}})},addClass:function(a){var b,c,d,e,g,h,i;if(f.isFunction(a))return this.each(function(b){f(this).addClass(a.call(this,b,this.className))});if(a&&typeof a=="string"){b=a.split(p);for(c=0,d=this.length;c-1)return!0;return!1},val:function(a){var c,d,e,g=this[0];{if(!!arguments.length){e=f.isFunction(a);return this.each(function(d){var g=f(this),h;if(this.nodeType===1){e?h=a.call(this,d,g.val()):h=a,h==null?h="":typeof h=="number"?h+="":f.isArray(h)&&(h=f.map(h,function(a){return a==null?"":a+""})),c=f.valHooks[this.type]||f.valHooks[this.nodeName.toLowerCase()];if(!c||!("set"in c)||c.set(this,h,"value")===b)this.value=h}})}if(g){c=f.valHooks[g.type]||f.valHooks[g.nodeName.toLowerCase()];if(c&&"get"in c&&(d=c.get(g,"value"))!==b)return d;d=g.value;return typeof d=="string"?d.replace(q,""):d==null?"":d}}}}),f.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c,d,e,g=a.selectedIndex,h=[],i=a.options,j=a.type==="select-one";if(g<0)return null;c=j?g:0,d=j?g+1:i.length;for(;c=0}),c.length||(a.selectedIndex=-1);return c}}},attrFn:{val:!0,css:!0,html:!0,text:!0,data:!0,width:!0,height:!0,offset:!0},attr:function(a,c,d,e){var g,h,i,j=a.nodeType;if(!!a&&j!==3&&j!==8&&j!==2){if(e&&c in f.attrFn)return f(a)[c](d);if(typeof a.getAttribute=="undefined")return f.prop(a,c,d);i=j!==1||!f.isXMLDoc(a),i&&(c=c.toLowerCase(),h=f.attrHooks[c]||(u.test(c)?x:w));if(d!==b){if(d===null){f.removeAttr(a,c);return}if(h&&"set"in h&&i&&(g=h.set(a,d,c))!==b)return g;a.setAttribute(c,""+d);return d}if(h&&"get"in h&&i&&(g=h.get(a,c))!==null)return g;g=a.getAttribute(c);return g===null?b:g}},removeAttr:function(a,b){var c,d,e,g,h,i=0;if(b&&a.nodeType===1){d=b.toLowerCase().split(p),g=d.length;for(;i=0}})});var z=/^(?:textarea|input|select)$/i,A=/^([^\.]*)?(?:\.(.+))?$/,B=/(?:^|\s)hover(\.\S+)?\b/,C=/^key/,D=/^(?:mouse|contextmenu)|click/,E=/^(?:focusinfocus|focusoutblur)$/,F=/^(\w*)(?:#([\w\-]+))?(?:\.([\w\-]+))?$/,G=function( + a){var b=F.exec(a);b&&(b[1]=(b[1]||"").toLowerCase(),b[3]=b[3]&&new RegExp("(?:^|\\s)"+b[3]+"(?:\\s|$)"));return b},H=function(a,b){var c=a.attributes||{};return(!b[1]||a.nodeName.toLowerCase()===b[1])&&(!b[2]||(c.id||{}).value===b[2])&&(!b[3]||b[3].test((c["class"]||{}).value))},I=function(a){return f.event.special.hover?a:a.replace(B,"mouseenter$1 mouseleave$1")};f.event={add:function(a,c,d,e,g){var h,i,j,k,l,m,n,o,p,q,r,s;if(!(a.nodeType===3||a.nodeType===8||!c||!d||!(h=f._data(a)))){d.handler&&(p=d,d=p.handler,g=p.selector),d.guid||(d.guid=f.guid++),j=h.events,j||(h.events=j={}),i=h.handle,i||(h.handle=i=function(a){return typeof f!="undefined"&&(!a||f.event.triggered!==a.type)?f.event.dispatch.apply(i.elem,arguments):b},i.elem=a),c=f.trim(I(c)).split(" ");for(k=0;k=0&&(h=h.slice(0,-1),k=!0),h.indexOf(".")>=0&&(i=h.split("."),h=i.shift(),i.sort());if((!e||f.event.customEvent[h])&&!f.event.global[h])return;c=typeof c=="object"?c[f.expando]?c:new f.Event(h,c):new f.Event(h),c.type=h,c.isTrigger=!0,c.exclusive=k,c.namespace=i.join("."),c.namespace_re=c.namespace?new RegExp("(^|\\.)"+i.join("\\.(?:.*\\.)?")+"(\\.|$)"):null,o=h.indexOf(":")<0?"on"+h:"";if(!e){j=f.cache;for(l in j)j[l].events&&j[l].events[h]&&f.event.trigger(c,d,j[l].handle.elem,!0);return}c.result=b,c.target||(c.target=e),d=d!=null?f.makeArray(d):[],d.unshift(c),p=f.event.special[h]||{};if(p.trigger&&p.trigger.apply(e,d)===!1)return;r=[[e,p.bindType||h]];if(!g&&!p.noBubble&&!f.isWindow(e)){s=p.delegateType||h,m=E.test(s+h)?e:e.parentNode,n=null;for(;m;m=m.parentNode)r.push([m,s]),n=m;n&&n===e.ownerDocument&&r.push([n.defaultView||n.parentWindow||a,s])}for(l=0;le&&j.push({elem:this,matches:d.slice(e)});for(k=0;k0?this.on(b,null,a,c):this.trigger(b)},f.attrFn&&(f.attrFn[b]=!0),C.test(b)&&(f.event.fixHooks[b]=f.event.keyHooks),D.test(b)&&(f.event.fixHooks[b]=f.event.mouseHooks)}),function(){function x(a,b,c,e,f,g){for(var h=0,i=e.length;h0){k=j;break}}j=j[a]}e[h]=k}}}function w(a,b,c,e,f,g){for(var h=0,i=e.length;h+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,d="sizcache"+(Math.random()+"").replace(".",""),e=0,g=Object.prototype.toString,h=!1,i=!0,j=/\\/g,k=/\r\n/g,l=/\W/;[0,0].sort(function(){i=!1;return 0});var m=function(b,d,e,f){e=e||[],d=d||c;var h=d;if(d.nodeType!==1&&d.nodeType!==9)return[];if(!b||typeof b!="string")return e;var i,j,k,l,n,q,r,t,u=!0,v=m.isXML(d),w=[],x=b;do{a.exec(""),i=a.exec(x);if(i){x=i[3],w.push(i[1]);if(i[2]){l=i[3];break}}}while(i);if(w.length>1&&p.exec(b))if(w.length===2&&o.relative[w[0]])j=y(w[0]+w[1],d,f);else{j=o.relative[w[0]]?[d]:m(w.shift(),d);while(w.length)b=w.shift(),o.relative[b]&&(b+=w.shift()),j=y(b,j,f)}else{!f&&w.length>1&&d.nodeType===9&&!v&&o.match.ID.test(w[0])&&!o.match.ID.test(w[w.length-1])&&(n=m.find(w.shift(),d,v),d=n.expr?m.filter(n.expr,n.set)[0]:n.set[0]);if(d){n=f?{expr:w.pop(),set:s(f)}:m.find(w.pop(),w.length===1&&(w[0]==="~"||w[0]==="+")&&d.parentNode?d.parentNode:d,v),j=n.expr?m.filter(n.expr,n.set):n.set,w.length>0?k=s(j):u=!1;while(w.length)q=w.pop(),r=q,o.relative[q]?r=w.pop():q="",r==null&&(r=d),o.relative[q](k,r,v)}else k=w=[]}k||(k=j),k||m.error(q||b);if(g.call(k)==="[object Array]")if(!u)e.push.apply(e,k);else if(d&&d.nodeType===1)for(t=0;k[t]!=null;t++)k[t]&&(k[t]===!0||k[t].nodeType===1&&m.contains(d,k[t]))&&e.push(j[t]);else for(t=0;k[t]!=null;t++)k[t]&&k[t].nodeType===1&&e.push(j[t]);else s(k,e);l&&(m(l,h,e,f),m.uniqueSort(e));return e};m.uniqueSort=function(a){if(u){h=i,a.sort(u);if(h)for(var b=1;b0},m.find=function(a,b,c){var d,e,f,g,h,i;if(!a)return[];for(e=0,f=o.order.length;e":function(a,b){var c,d=typeof b=="string",e=0,f=a.length;if(d&&!l.test(b)){b=b.toLowerCase();for(;e=0)?c||d.push(h):c&&(b[g]=!1));return!1},ID:function(a){return a[1].replace(j,"")},TAG:function(a,b){return a[1].replace(j,"").toLowerCase()},CHILD:function(a){if(a[1]==="nth"){a[2]||m.error(a[0]),a[2]=a[2].replace(/^\+|\s*/g,"");var b=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(a[2]==="even"&&"2n"||a[2]==="odd"&&"2n+1"||!/\D/.test(a[2])&&"0n+"+a[2]||a[2]);a[2]=b[1]+(b[2]||1)-0,a[3]=b[3]-0}else a[2]&&m.error(a[0]);a[0]=e++;return a},ATTR:function(a,b,c,d,e,f){var g=a[1]=a[1].replace(j,"");!f&&o.attrMap[g]&&(a[1]=o.attrMap[g]),a[4]=(a[4]||a[5]||"").replace(j,""),a[2]==="~="&&(a[4]=" "+a[4]+" ");return a},PSEUDO:function(b,c,d,e,f){if(b[1]==="not")if((a.exec(b[3])||"").length>1||/^\w/.test(b[3]))b[3]=m(b[3],null,null,c);else{var g=m.filter(b[3],c,d,!0^f);d||e.push.apply(e,g);return!1}else if(o.match.POS.test(b[0])||o.match.CHILD.test(b[0]))return!0;return b},POS:function(a){a.unshift(!0);return a}},filters:{enabled:function(a){return a.disabled===!1&&a.type!=="hidden"},disabled:function(a){return a.disabled===!0},checked:function(a){return a.checked===!0},selected:function(a){a.parentNode&&a.parentNode.selectedIndex;return a.selected===!0},parent:function(a){return!!a.firstChild},empty:function(a){return!a.firstChild},has:function(a,b,c){return!!m(c[3],a).length},header:function(a){return/h\d/i.test(a.nodeName)},text:function(a){var b=a.getAttribute("type"),c=a.type;return a.nodeName.toLowerCase()==="input"&&"text"===c&&(b===c||b===null)},radio:function(a){return a.nodeName.toLowerCase()==="input"&&"radio"===a.type},checkbox:function(a){return a.nodeName.toLowerCase()==="input"&&"checkbox"===a.type},file:function(a){return a.nodeName.toLowerCase()==="input"&&"file"===a.type},password:function(a){return a.nodeName.toLowerCase()==="input"&&"password"===a.type},submit:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"submit"===a.type},image:function(a){return a.nodeName.toLowerCase()==="input"&&"image"===a.type},reset:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"reset"===a.type},button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&"button"===a.type||b==="button"},input:function(a){return/input|select|textarea|button/i.test(a.nodeName)},focus:function(a){return a===a.ownerDocument.activeElement}},setFilters:{first:function(a,b){return b===0},last:function(a,b,c,d){return b===d.length-1},even:function(a,b){return b%2===0},odd:function(a,b){return b%2===1},lt:function(a,b,c){return bc[3]-0},nth:function(a,b,c){return c[3]-0===b},eq:function(a,b,c){return c[3]-0===b}},filter:{PSEUDO:function(a,b,c,d){var e=b[1],f=o.filters[e];if(f)return f(a,c,b,d);if(e==="contains")return(a.textContent||a.innerText||n([a])||"").indexOf(b[3])>=0;if(e==="not"){var g=b[3];for(var h=0,i=g.length;h=0}},ID:function(a,b){return a.nodeType===1&&a.getAttribute("id")===b},TAG:function(a,b){return b==="*"&&a.nodeType===1||!!a.nodeName&&a.nodeName.toLowerCase()===b},CLASS:function(a,b){return(" "+(a.className||a.getAttribute("class"))+" ").indexOf(b)>-1},ATTR:function(a,b){var c=b[1],d=m.attr?m.attr(a,c):o.attrHandle[c]?o.attrHandle[c](a):a[c]!=null?a[c]:a.getAttribute(c),e=d+"",f=b[2],g=b[4];return d==null?f==="!=":!f&&m.attr?d!=null:f==="="?e===g:f==="*="?e.indexOf(g)>=0:f==="~="?(" "+e+" ").indexOf(g)>=0:g?f==="!="?e!==g:f==="^="?e.indexOf(g)===0:f==="$="?e.substr(e.length-g.length)===g:f==="|="?e===g||e.substr(0,g.length+1)===g+"-":!1:e&&d!==!1},POS:function(a,b,c,d){var e=b[2],f=o.setFilters[e];if(f)return f(a,c,b,d)}}},p=o.match.POS,q=function(a,b){return"\\"+(b-0+1)};for(var r in o.match)o.match[r]=new RegExp(o.match[r].source+/(?![^\[]*\])(?![^\(]*\))/.source),o.leftMatch[r]=new RegExp(/(^(?:.|\r|\n)*?)/.source+o.match[r].source.replace(/\\(\d+)/g,q));o.match.globalPOS=p;var s=function(a,b){a=Array.prototype.slice.call(a,0);if(b){b.push.apply(b,a);return b}return a};try{Array.prototype.slice.call(c.documentElement.childNodes,0)[0].nodeType}catch(t){s=function(a,b){var c=0,d=b||[];if(g.call(a)==="[object Array]")Array.prototype.push.apply(d,a);else if(typeof a.length=="number")for(var e=a.length;c",e.insertBefore(a,e.firstChild),c.getElementById(d)&&(o.find.ID=function(a,c,d){if(typeof c.getElementById!="undefined"&&!d){var e=c.getElementById(a[1]);return e?e.id===a[1]||typeof e.getAttributeNode!="undefined"&&e.getAttributeNode("id").nodeValue===a[1]?[e]:b:[]}},o.filter.ID=function(a,b){var c=typeof a.getAttributeNode!="undefined"&&a.getAttributeNode("id");return a.nodeType===1&&c&&c.nodeValue===b}),e.removeChild(a),e=a=null}(),function(){var a=c.createElement("div");a.appendChild(c.createComment("")),a.getElementsByTagName("*").length>0&&(o.find.TAG=function(a,b){var c=b.getElementsByTagName(a[1]);if(a[1]==="*"){var d=[];for(var e=0;c[e];e++)c[e].nodeType===1&&d.push(c[e]);c=d}return c}),a.innerHTML="",a.firstChild&&typeof a.firstChild.getAttribute!="undefined"&&a.firstChild.getAttribute("href")!=="#"&&(o.attrHandle.href=function(a){return a.getAttribute("href",2)}),a=null}(),c.querySelectorAll&&function(){var a=m,b=c.createElement("div"),d="__sizzle__";b.innerHTML="

    ";if(!b.querySelectorAll||b.querySelectorAll(".TEST").length!==0){m=function(b,e,f,g){e=e||c;if(!g&&!m.isXML(e)){var h=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(b);if(h&&(e.nodeType===1||e.nodeType===9)){if(h[1])return s(e.getElementsByTagName(b),f);if(h[2]&&o.find.CLASS&&e.getElementsByClassName)return s(e.getElementsByClassName(h[2]),f)}if(e.nodeType===9){if(b==="body"&&e.body)return s([e.body],f);if(h&&h[3]){var i=e.getElementById(h[3]);if(!i||!i.parentNode)return s([],f);if(i.id===h[3])return s([i],f)}try{return s(e.querySelectorAll(b),f)}catch(j){}}else if(e.nodeType===1&&e.nodeName.toLowerCase()!=="object"){var k=e,l=e.getAttribute("id"),n=l||d,p=e.parentNode,q=/^\s*[+~]/.test(b);l?n=n.replace(/'/g,"\\$&"):e.setAttribute("id",n),q&&p&&(e=e.parentNode);try{if(!q||p)return s(e.querySelectorAll("[id='"+n+"'] "+b),f)}catch(r){}finally{l||k.removeAttribute("id")}}}return a(b,e,f,g)};for(var e in a)m[e]=a[e];b=null}}(),function(){var a=c.documentElement,b=a.matchesSelector||a.mozMatchesSelector||a.webkitMatchesSelector||a.msMatchesSelector;if(b){var d=!b.call(c.createElement("div"),"div"),e=!1;try{b.call(c.documentElement,"[test!='']:sizzle")}catch(f){e=!0}m.matchesSelector=function(a,c){c=c.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!m.isXML(a))try{if(e||!o.match.PSEUDO.test(c)&&!/!=/.test(c)){var f=b.call(a,c);if(f||!d||a.document&&a.document.nodeType!==11)return f}}catch(g){}return m(c,null,null,[a]).length>0}}}(),function(){var a=c.createElement("div");a.innerHTML="
    ";if(!!a.getElementsByClassName&&a.getElementsByClassName("e").length!==0){a.lastChild.className="e";if(a.getElementsByClassName("e").length===1)return;o.order.splice(1,0,"CLASS"),o.find.CLASS=function(a,b,c){if(typeof b.getElementsByClassName!="undefined"&&!c)return b.getElementsByClassName(a[1])},a=null}}(),c.documentElement.contains?m.contains=function(a,b){return a!==b&&(a.contains?a.contains(b):!0)}:c.documentElement.compareDocumentPosition?m.contains=function(a,b){return!!(a.compareDocumentPosition(b)&16)}:m.contains=function(){return!1},m.isXML=function(a){var b=(a?a.ownerDocument||a:0).documentElement;return b?b.nodeName!=="HTML":!1};var y=function(a,b,c){var d,e=[],f="",g=b.nodeType?[b]:b;while(d=o.match.PSEUDO.exec(a))f+=d[0],a=a.replace(o.match.PSEUDO,"");a=o.relative[a]?a+"*":a;for(var h=0,i=g.length;h0)for(h=g;h=0:f.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c=[],d,e,g=this[0];if(f.isArray(a)){var h=1;while(g&&g.ownerDocument&&g!==b){for(d=0;d-1:f.find.matchesSelector(g,a)){c.push(g);break}g=g.parentNode;if(!g||!g.ownerDocument||g===b||g.nodeType===11)break}}c=c.length>1?f.unique(c):c;return this.pushStack(c,"closest",a)},index:function(a){if(!a)return this[0]&&this[0].parentNode?this.prevAll().length:-1;if(typeof a=="string")return f.inArray(this[0],f(a));return f.inArray(a.jquery?a[0]:a,this)},add:function(a,b){var c=typeof a=="string"?f(a,b):f.makeArray(a&&a.nodeType?[a]:a),d=f.merge(this.get(),c);return this.pushStack(S(c[0])||S(d[0])?d:f.unique(d))},andSelf:function(){return this.add(this.prevObject)}}),f.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return f.dir(a,"parentNode")},parentsUntil:function(a,b,c){return f.dir(a,"parentNode",c)},next:function(a){return f.nth(a,2,"nextSibling")},prev:function(a){return f.nth(a,2,"previousSibling")},nextAll:function(a){return f.dir(a,"nextSibling")},prevAll:function(a){return f.dir(a,"previousSibling")},nextUntil:function(a,b,c){return f.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return f.dir(a,"previousSibling",c)},siblings:function(a){return f.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return f.sibling(a.firstChild)},contents:function(a){return f.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:f.makeArray(a.childNodes)}},function(a,b){f.fn[a]=function(c,d){var e=f.map(this,b,c);L.test(a)||(d=c),d&&typeof d=="string"&&(e=f.filter(d,e)),e=this.length>1&&!R[a]?f.unique(e):e,(this.length>1||N.test(d))&&M.test(a)&&(e=e.reverse());return this.pushStack(e,a,P.call(arguments).join(","))}}),f.extend({filter:function(a,b,c){c&&(a=":not("+a+")");return b.length===1?f.find.matchesSelector(b[0],a)?[b[0]]:[]:f.find.matches(a,b)},dir:function(a,c,d){var e=[],g=a[c];while(g&&g.nodeType!==9&&(d===b||g.nodeType!==1||!f(g).is(d)))g.nodeType===1&&e.push(g),g=g[c];return e},nth:function(a,b,c,d){b=b||1;var e=0;for(;a;a=a[c])if(a.nodeType===1&&++e===b)break;return a},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var V="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",W=/ jQuery\d+="(?:\d+|null)"/g,X=/^\s+/,Y=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,Z=/<([\w:]+)/,$=/]","i"),bd=/checked\s*(?:[^=]|=\s*.checked.)/i,be=/\/(java|ecma)script/i,bf=/^\s*",""],legend:[1,"
    ","
    "],thead:[1,"","
    "],tr:[2,"","
    "],td:[3,"","
    "],col:[2,"","
    "],area:[1,"",""],_default:[0,"",""]},bh=U(c);bg.optgroup=bg.option,bg.tbody=bg.tfoot=bg.colgroup=bg.caption=bg.thead,bg.th=bg.td,f.support.htmlSerialize||(bg._default=[1,"div
    ","
    "]),f.fn.extend({text:function(a){return f.access(this,function(a){return a===b?f.text(this):this.empty().append((this[0]&&this[0].ownerDocument||c).createTextNode(a))},null,a,arguments.length)},wrapAll:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapAll(a.call(this,b))});if(this[0]){var b=f(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapInner(a.call(this,b))});return this.each(function(){var b=f(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=f.isFunction(a);return this.each(function(c){f(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){f.nodeName(this,"body")||f(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=f + .clean(arguments);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,f.clean(arguments));return a}},remove:function(a,b){for(var c=0,d;(d=this[c])!=null;c++)if(!a||f.filter(a,[d]).length)!b&&d.nodeType===1&&(f.cleanData(d.getElementsByTagName("*")),f.cleanData([d])),d.parentNode&&d.parentNode.removeChild(d);return this},empty:function(){for(var a=0,b;(b=this[a])!=null;a++){b.nodeType===1&&f.cleanData(b.getElementsByTagName("*"));while(b.firstChild)b.removeChild(b.firstChild)}return this},clone:function(a,b){a=a==null?!1:a,b=b==null?a:b;return this.map(function(){return f.clone(this,a,b)})},html:function(a){return f.access(this,function(a){var c=this[0]||{},d=0,e=this.length;if(a===b)return c.nodeType===1?c.innerHTML.replace(W,""):null;if(typeof a=="string"&&!ba.test(a)&&(f.support.leadingWhitespace||!X.test(a))&&!bg[(Z.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Y,"<$1>");try{for(;d1&&l0?this.clone(!0):this).get();f(e[h])[b](j),d=d.concat(j)}return this.pushStack(d,a,e.selector)}}),f.extend({clone:function(a,b,c){var d,e,g,h=f.support.html5Clone||f.isXMLDoc(a)||!bc.test("<"+a.nodeName+">")?a.cloneNode(!0):bo(a);if((!f.support.noCloneEvent||!f.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!f.isXMLDoc(a)){bk(a,h),d=bl(a),e=bl(h);for(g=0;d[g];++g)e[g]&&bk(d[g],e[g])}if(b){bj(a,h);if(c){d=bl(a),e=bl(h);for(g=0;d[g];++g)bj(d[g],e[g])}}d=e=null;return h},clean:function(a,b,d,e){var g,h,i,j=[];b=b||c,typeof b.createElement=="undefined"&&(b=b.ownerDocument||b[0]&&b[0].ownerDocument||c);for(var k=0,l;(l=a[k])!=null;k++){typeof l=="number"&&(l+="");if(!l)continue;if(typeof l=="string")if(!_.test(l))l=b.createTextNode(l);else{l=l.replace(Y,"<$1>");var m=(Z.exec(l)||["",""])[1].toLowerCase(),n=bg[m]||bg._default,o=n[0],p=b.createElement("div"),q=bh.childNodes,r;b===c?bh.appendChild(p):U(b).appendChild(p),p.innerHTML=n[1]+l+n[2];while(o--)p=p.lastChild;if(!f.support.tbody){var s=$.test(l),t=m==="table"&&!s?p.firstChild&&p.firstChild.childNodes:n[1]===""&&!s?p.childNodes:[];for(i=t.length-1;i>=0;--i)f.nodeName(t[i],"tbody")&&!t[i].childNodes.length&&t[i].parentNode.removeChild(t[i])}!f.support.leadingWhitespace&&X.test(l)&&p.insertBefore(b.createTextNode(X.exec(l)[0]),p.firstChild),l=p.childNodes,p&&(p.parentNode.removeChild(p),q.length>0&&(r=q[q.length-1],r&&r.parentNode&&r.parentNode.removeChild(r)))}var u;if(!f.support.appendChecked)if(l[0]&&typeof (u=l.length)=="number")for(i=0;i1)},f.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=by(a,"opacity");return c===""?"1":c}return a.style.opacity}}},cssNumber:{fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":f.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,d,e){if(!!a&&a.nodeType!==3&&a.nodeType!==8&&!!a.style){var g,h,i=f.camelCase(c),j=a.style,k=f.cssHooks[i];c=f.cssProps[i]||i;if(d===b){if(k&&"get"in k&&(g=k.get(a,!1,e))!==b)return g;return j[c]}h=typeof d,h==="string"&&(g=bu.exec(d))&&(d=+(g[1]+1)*+g[2]+parseFloat(f.css(a,c)),h="number");if(d==null||h==="number"&&isNaN(d))return;h==="number"&&!f.cssNumber[i]&&(d+="px");if(!k||!("set"in k)||(d=k.set(a,d))!==b)try{j[c]=d}catch(l){}}},css:function(a,c,d){var e,g;c=f.camelCase(c),g=f.cssHooks[c],c=f.cssProps[c]||c,c==="cssFloat"&&(c="float");if(g&&"get"in g&&(e=g.get(a,!0,d))!==b)return e;if(by)return by(a,c)},swap:function(a,b,c){var d={},e,f;for(f in b)d[f]=a.style[f],a.style[f]=b[f];e=c.call(a);for(f in b)a.style[f]=d[f];return e}}),f.curCSS=f.css,c.defaultView&&c.defaultView.getComputedStyle&&(bz=function(a,b){var c,d,e,g,h=a.style;b=b.replace(br,"-$1").toLowerCase(),(d=a.ownerDocument.defaultView)&&(e=d.getComputedStyle(a,null))&&(c=e.getPropertyValue(b),c===""&&!f.contains(a.ownerDocument.documentElement,a)&&(c=f.style(a,b))),!f.support.pixelMargin&&e&&bv.test(b)&&bt.test(c)&&(g=h.width,h.width=c,c=e.width,h.width=g);return c}),c.documentElement.currentStyle&&(bA=function(a,b){var c,d,e,f=a.currentStyle&&a.currentStyle[b],g=a.style;f==null&&g&&(e=g[b])&&(f=e),bt.test(f)&&(c=g.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),g.left=b==="fontSize"?"1em":f,f=g.pixelLeft+"px",g.left=c,d&&(a.runtimeStyle.left=d));return f===""?"auto":f}),by=bz||bA,f.each(["height","width"],function(a,b){f.cssHooks[b]={get:function(a,c,d){if(c)return a.offsetWidth!==0?bB(a,b,d):f.swap(a,bw,function(){return bB(a,b,d)})},set:function(a,b){return bs.test(b)?b+"px":b}}}),f.support.opacity||(f.cssHooks.opacity={get:function(a,b){return bq.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=f.isNumeric(b)?"alpha(opacity="+b*100+")":"",g=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&f.trim(g.replace(bp,""))===""){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bp.test(g)?g.replace(bp,e):g+" "+e}}),f(function(){f.support.reliableMarginRight||(f.cssHooks.marginRight={get:function(a,b){return f.swap(a,{display:"inline-block"},function(){return b?by(a,"margin-right"):a.style.marginRight})}})}),f.expr&&f.expr.filters&&(f.expr.filters.hidden=function(a){var b=a.offsetWidth,c=a.offsetHeight;return b===0&&c===0||!f.support.reliableHiddenOffsets&&(a.style&&a.style.display||f.css(a,"display"))==="none"},f.expr.filters.visible=function(a){return!f.expr.filters.hidden(a)}),f.each({margin:"",padding:"",border:"Width"},function(a,b){f.cssHooks[a+b]={expand:function(c){var d,e=typeof c=="string"?c.split(" "):[c],f={};for(d=0;d<4;d++)f[a+bx[d]+b]=e[d]||e[d-2]||e[0];return f}}});var bC=/%20/g,bD=/\[\]$/,bE=/\r?\n/g,bF=/#.*$/,bG=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,bH=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,bI=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,bJ=/^(?:GET|HEAD)$/,bK=/^\/\//,bL=/\?/,bM=/)<[^<]*)*<\/script>/gi,bN=/^(?:select|textarea)/i,bO=/\s+/,bP=/([?&])_=[^&]*/,bQ=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/,bR=f.fn.load,bS={},bT={},bU,bV,bW=["*/"]+["*"];try{bU=e.href}catch(bX){bU=c.createElement("a"),bU.href="",bU=bU.href}bV=bQ.exec(bU.toLowerCase())||[],f.fn.extend({load:function(a,c,d){if(typeof a!="string"&&bR)return bR.apply(this,arguments);if(!this.length)return this;var e=a.indexOf(" ");if(e>=0){var g=a.slice(e,a.length);a=a.slice(0,e)}var h="GET";c&&(f.isFunction(c)?(d=c,c=b):typeof c=="object"&&(c=f.param(c,f.ajaxSettings.traditional),h="POST"));var i=this;f.ajax({url:a,type:h,dataType:"html",data:c,complete:function(a,b,c){c=a.responseText,a.isResolved()&&(a.done(function(a){c=a}),i.html(g?f("
    ").append(c.replace(bM,"")).find(g):c)),d&&i.each(d,[c,b,a])}});return this},serialize:function(){return f.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?f.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||bN.test(this.nodeName)||bH.test(this.type))}).map(function(a,b){var c=f(this).val();return c==null?null:f.isArray(c)?f.map(c,function(a,c){return{name:b.name,value:a.replace(bE,"\r\n")}}):{name:b.name,value:c.replace(bE,"\r\n")}}).get()}}),f.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){f.fn[b]=function(a){return this.on(b,a)}}),f.each(["get","post"],function(a,c){f[c]=function(a,d,e,g){f.isFunction(d)&&(g=g||e,e=d,d=b);return f.ajax({type:c,url:a,data:d,success:e,dataType:g})}}),f.extend({getScript:function(a,c){return f.get(a,b,c,"script")},getJSON:function(a,b,c){return f.get(a,b,c,"json")},ajaxSetup:function(a,b){b?b$(a,f.ajaxSettings):(b=a,a=f.ajaxSettings),b$(a,b);return a},ajaxSettings:{url:bU,isLocal:bI.test(bV[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded; charset=UTF-8",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":bW},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":f.parseJSON,"text xml":f.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:bY(bS),ajaxTransport:bY(bT),ajax:function(a,c){function w(a,c,l,m){if(s!==2){s=2,q&&clearTimeout(q),p=b,n=m||"",v.readyState=a>0?4:0;var o,r,u,w=c,x=l?ca(d,v,l):b,y,z;if(a>=200&&a<300||a===304){if(d.ifModified){if(y=v.getResponseHeader("Last-Modified"))f.lastModified[k]=y;if(z=v.getResponseHeader("Etag"))f.etag[k]=z}if(a===304)w="notmodified",o=!0;else try{r=cb(d,x),w="success",o=!0}catch(A){w="parsererror",u=A}}else{u=w;if(!w||a)w="error",a<0&&(a=0)}v.status=a,v.statusText=""+(c||w),o?h.resolveWith(e,[r,w,v]):h.rejectWith(e,[v,w,u]),v.statusCode(j),j=b,t&&g.trigger("ajax"+(o?"Success":"Error"),[v,d,o?r:u]),i.fireWith(e,[v,w]),t&&(g.trigger("ajaxComplete",[v,d]),--f.active||f.event.trigger("ajaxStop"))}}typeof a=="object"&&(c=a,a=b),c=c||{};var d=f.ajaxSetup({},c),e=d.context||d,g=e!==d&&(e.nodeType||e instanceof f)?f(e):f.event,h=f.Deferred(),i=f.Callbacks("once memory"),j=d.statusCode||{},k,l={},m={},n,o,p,q,r,s=0,t,u,v={readyState:0,setRequestHeader:function(a,b){if(!s){var c=a.toLowerCase();a=m[c]=m[c]||a,l[a]=b}return this},getAllResponseHeaders:function(){return s===2?n:null},getResponseHeader:function(a){var c;if(s===2){if(!o){o={};while(c=bG.exec(n))o[c[1].toLowerCase()]=c[2]}c=o[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){s||(d.mimeType=a);return this},abort:function(a){a=a||"abort",p&&p.abort(a),w(0,a);return this}};h.promise(v),v.success=v.done,v.error=v.fail,v.complete=i.add,v.statusCode=function(a){if(a){var b;if(s<2)for(b in a)j[b]=[j[b],a[b]];else b=a[v.status],v.then(b,b)}return this},d.url=((a||d.url)+"").replace(bF,"").replace(bK,bV[1]+"//"),d.dataTypes=f.trim(d.dataType||"*").toLowerCase().split(bO),d.crossDomain==null&&(r=bQ.exec(d.url.toLowerCase()),d.crossDomain=!(!r||r[1]==bV[1]&&r[2]==bV[2]&&(r[3]||(r[1]==="http:"?80:443))==(bV[3]||(bV[1]==="http:"?80:443)))),d.data&&d.processData&&typeof d.data!="string"&&(d.data=f.param(d.data,d.traditional)),bZ(bS,d,c,v);if(s===2)return!1;t=d.global,d.type=d.type.toUpperCase(),d.hasContent=!bJ.test(d.type),t&&f.active++===0&&f.event.trigger("ajaxStart");if(!d.hasContent){d.data&&(d.url+=(bL.test(d.url)?"&":"?")+d.data,delete d.data),k=d.url;if(d.cache===!1){var x=f.now(),y=d.url.replace(bP,"$1_="+x);d.url=y+(y===d.url?(bL.test(d.url)?"&":"?")+"_="+x:"")}}(d.data&&d.hasContent&&d.contentType!==!1||c.contentType)&&v.setRequestHeader("Content-Type",d.contentType),d.ifModified&&(k=k||d.url,f.lastModified[k]&&v.setRequestHeader("If-Modified-Since",f.lastModified[k]),f.etag[k]&&v.setRequestHeader("If-None-Match",f.etag[k])),v.setRequestHeader("Accept",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+(d.dataTypes[0]!=="*"?", "+bW+"; q=0.01":""):d.accepts["*"]);for(u in d.headers)v.setRequestHeader(u,d.headers[u]);if(d.beforeSend&&(d.beforeSend.call(e,v,d)===!1||s===2)){v.abort();return!1}for(u in{success:1,error:1,complete:1})v[u](d[u]);p=bZ(bT,d,c,v);if(!p)w(-1,"No Transport");else{v.readyState=1,t&&g.trigger("ajaxSend",[v,d]),d.async&&d.timeout>0&&(q=setTimeout(function(){v.abort("timeout")},d.timeout));try{s=1,p.send(l,w)}catch(z){if(s<2)w(-1,z);else throw z}}return v},param:function(a,c){var d=[],e=function(a,b){b=f.isFunction(b)?b():b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=f.ajaxSettings.traditional);if(f.isArray(a)||a.jquery&&!f.isPlainObject(a))f.each(a,function(){e(this.name,this.value)});else for(var g in a)b_(g,a[g],c,e);return d.join("&").replace(bC,"+")}}),f.extend({active:0,lastModified:{},etag:{}});var cc=f.now(),cd=/(\=)\?(&|$)|\?\?/i;f.ajaxSetup({jsonp:"callback",jsonpCallback:function(){return f.expando+"_"+cc++}}),f.ajaxPrefilter("json jsonp",function(b,c,d){var e=typeof b.data=="string"&&/^application\/x\-www\-form\-urlencoded/.test(b.contentType);if(b.dataTypes[0]==="jsonp"||b.jsonp!==!1&&(cd.test(b.url)||e&&cd.test(b.data))){var g,h=b.jsonpCallback=f.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,i=a[h],j=b.url,k=b.data,l="$1"+h+"$2";b.jsonp!==!1&&(j=j.replace(cd,l),b.url===j&&(e&&(k=k.replace(cd,l)),b.data===k&&(j+=(/\?/.test(j)?"&":"?")+b.jsonp+"="+h))),b.url=j,b.data=k,a[h]=function(a){g=[a]},d.always(function(){a[h]=i,g&&f.isFunction(i)&&a[h](g[0])}),b.converters["script json"]=function(){g||f.error(h+" was not called");return g[0]},b.dataTypes[0]="json";return"script"}}),f.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){f.globalEval(a);return a}}}),f.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),f.ajaxTransport("script",function(a){if(a.crossDomain){var d,e=c.head||c.getElementsByTagName("head")[0]||c.documentElement;return{send:function(f,g){d=c.createElement("script"),d.async="async",a.scriptCharset&&(d.charset=a.scriptCharset),d.src=a.url,d.onload=d.onreadystatechange=function(a,c){if(c||!d.readyState||/loaded|complete/.test(d.readyState))d.onload=d.onreadystatechange=null,e&&d.parentNode&&e.removeChild(d),d=b,c||g(200,"success")},e.insertBefore(d,e.firstChild)},abort:function(){d&&d.onload(0,1)}}}});var ce=a.ActiveXObject?function(){for(var a in cg)cg[a](0,1)}:!1,cf=0,cg;f.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&ch()||ci()}:ch,function(a){f.extend(f.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(f.ajaxSettings.xhr()),f.support.ajax&&f.ajaxTransport(function(c){if(!c.crossDomain||f.support.cors){var d;return{send:function(e,g){var h=c.xhr(),i,j;c.username?h.open(c.type,c.url,c.async,c.username,c.password):h.open(c.type,c.url,c.async);if(c.xhrFields)for(j in c.xhrFields)h[j]=c.xhrFields[j];c.mimeType&&h.overrideMimeType&&h.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(j in e)h.setRequestHeader(j,e[j])}catch(k){}h.send(c.hasContent&&c.data||null),d=function(a,e){var j,k,l,m,n;try{if(d&&(e||h.readyState===4)){d=b,i&&(h.onreadystatechange=f.noop,ce&&delete cg[i]);if(e)h.readyState!==4&&h.abort();else{j=h.status,l=h.getAllResponseHeaders(),m={},n=h.responseXML,n&&n.documentElement&&(m.xml=n);try{m.text=h.responseText}catch(a){}try{k=h.statusText}catch(o){k=""}!j&&c.isLocal&&!c.crossDomain?j=m.text?200:404:j===1223&&(j=204)}}}catch(p){e||g(-1,p)}m&&g(j,k,m,l)},!c.async||h.readyState===4?d():(i=++cf,ce&&(cg||(cg={},f(a).unload(ce)),cg[i]=d),h.onreadystatechange=d)},abort:function(){d&&d(0,1)}}}});var cj={},ck,cl,cm=/^(?:toggle|show|hide)$/,cn=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,co,cp=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]],cq;f.fn.extend({show:function(a,b,c){var d,e;if(a||a===0)return this.animate(ct("show",3),a,b,c);for(var g=0,h=this.length;g=i.duration+this.startTime){this.now=this.end,this.pos=this.state=1,this.update(),i.animatedProperties[this.prop]=!0;for(b in i.animatedProperties)i.animatedProperties[b]!==!0&&(g=!1);if(g){i.overflow!=null&&!f.support.shrinkWrapBlocks&&f.each(["","X","Y"],function(a,b){h.style["overflow"+b]=i.overflow[a]}),i.hide&&f(h).hide();if(i.hide||i.show)for(b in i.animatedProperties)f.style(h,b,i.orig[b]),f.removeData(h,"fxshow"+b,!0),f.removeData(h,"toggle"+b,!0);d=i.complete,d&&(i.complete=!1,d.call(h))}return!1}i.duration==Infinity?this.now=e:(c=e-this.startTime,this.state=c/i.duration,this.pos=f.easing[i.animatedProperties[this.prop]](this.state,c,0,1,i.duration),this.now=this.start+(this.end-this.start)*this.pos),this.update();return!0}},f.extend(f.fx,{tick:function(){var a,b=f.timers,c=0;for(;c-1,k={},l={},m,n;j?(l=e.position(),m=l.top,n=l.left):(m=parseFloat(h)||0,n=parseFloat(i)||0),f.isFunction(b)&&(b=b.call(a,c,g)),b.top!=null&&(k.top=b.top-g.top+m),b.left!=null&&(k.left=b.left-g.left+n),"using"in b?b.using.call(a,k):e.css(k)}},f.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),c=this.offset(),d=cx.test(b[0].nodeName)?{top:0,left:0}:b.offset();c.top-=parseFloat(f.css(a,"marginTop"))||0,c.left-=parseFloat(f.css(a,"marginLeft"))||0,d.top+=parseFloat(f.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(f.css(b[0],"borderLeftWidth"))||0;return{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||c.body;while(a&&!cx.test(a.nodeName)&&f.css(a,"position")==="static")a=a.offsetParent;return a})}}),f.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(a,c){var d=/Y/.test(c);f.fn[a]=function(e){return f.access(this,function(a,e,g){var h=cy(a);if(g===b)return h?c in h?h[c]:f.support.boxModel&&h.document.documentElement[e]||h.document.body[e]:a[e];h?h.scrollTo(d?f(h).scrollLeft():g,d?g:f(h).scrollTop()):a[e]=g},a,e,arguments.length,null)}}),f.each({Height:"height",Width:"width"},function(a,c){var d="client"+a,e="scroll"+a,g="offset"+a;f.fn["inner"+a]=function(){var a=this[0];return a?a.style?parseFloat(f.css(a,c,"padding")):this[c]():null},f.fn["outer"+a]=function(a){var b=this[0];return b?b.style?parseFloat(f.css(b,c,a?"margin":"border")):this[c]():null},f.fn[c]=function(a){return f.access(this,function(a,c,h){var i,j,k,l;if(f.isWindow(a)){i=a.document,j=i.documentElement[d];return f.support.boxModel&&j||i.body&&i.body[d]||j}if(a.nodeType===9){i=a.documentElement;if(i[d]>=i[e])return i[d];return Math.max(a.body[e],i[e],a.body[g],i[g])}if(h===b){k=f.css(a,c),l=parseFloat(k);return f.isNumeric(l)?l:k}f(a).css(c,h)},c,a,arguments.length,null)}}),a.jQuery=a.$=f,typeof define=="function"&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return f})})(window);]]>GET/resources/js/jquery-1.7.2.minjsHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0 +
    Refererhttp://zero.webappsecurity.com/online-banking.html
    Hostzero.webappsecurity.com
    Accept*/*
    Accept-Languageen-US,en;q=0.5
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoScriptEngine="Gecko";Category="Crawl";SID="C7508402E98C2D8E08BE651045D1B755";PSID="0961B4C9AB7ECE8F80F1EFC03677941C";SessionType="Crawl";CrawlType="ScriptInclude";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";tht="21";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="23960f9d";
    X-Request-Memorid="4c768a9e";sc="1";thid="44";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0
    HTTP/1.1200OK").appendTo(b),e=d.css("display");d.remove();if(e==="none"||e===""){ck||(ck=c.createElement("iframe"),ck.frameBorder=ck.width=ck.height=0),b.appendChild(ck);if(!cl||!ck.createElement)cl=(ck.contentWindow||ck.contentDocument).document,cl.write((f.support.boxModel?"":"")+""),cl.close();d=cl.createElement(a),cl.body.appendChild(d),e=f.css(d,"display"),b.removeChild(ck)}cj[a]=e}return cj[a]}function ct(a,b){var c={};f.each(cp.concat.apply([],cp.slice(0,b)),function(){c[this]=a});return c}function cs(){cq=b}function cr(){setTimeout(cs,0);return cq=f.now()}function ci(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function ch(){try{return new a.XMLHttpRequest}catch(b){}}function cb(a,c){a.dataFilter&&(c=a.dataFilter(c,a.dataType));var d=a.dataTypes,e={},g,h,i=d.length,j,k=d[0],l,m,n,o,p;for(g=1;g0){if(c!=="border")for(;e=0===c})}function S(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function K(){return!0}function J(){return!1}function n(a,b,c){var d=b+"defer",e=b+"queue",g=b+"mark",h=f._data(a,d);h&&(c==="queue"||!f._data(a,e))&&(c==="mark"||!f._data(a,g))&&setTimeout(function(){!f._data(a,e)&&!f._data(a,g)&&(f.removeData(a,d,!0),h.fire())},0)}function m(a){for(var b in a){if(b==="data"&&f.isEmptyObject(a[b]))continue;if(b!=="toJSON")return!1}return!0}function l(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(k,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:f.isNumeric(d)?+d:j.test(d)?f.parseJSON(d):d}catch(g){}f.data(a,c,d)}else d=b}return d}function h(a){var b=g[a]={},c,d;a=a.split(/\s+/);for(c=0,d=a.length;c)[^>]*$|#([\w\-]*)$)/,j=/\S/,k=/^\s+/,l=/\s+$/,m=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,n=/^[\],:{}\s]*$/,o=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,p=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,q=/(?:^|:|,)(?:\s*\[)+/g,r=/(webkit)[ \/]([\w.]+)/,s=/(opera)(?:.*version)?[ \/]([\w.]+)/,t=/(msie) ([\w.]+)/,u=/(mozilla)(?:.*? rv:([\w.]+))?/,v=/-([a-z]|[0-9])/ig,w=/^-ms-/,x=function(a,b){return(b+"").toUpperCase()},y=d.userAgent,z,A,B,C=Object.prototype.toString,D=Object.prototype.hasOwnProperty,E=Array.prototype.push,F=Array.prototype.slice,G=String.prototype.trim,H=Array.prototype.indexOf,I={};e.fn=e.prototype={constructor:e,init:function(a,d,f){var g,h,j,k;if(!a)return this;if(a.nodeType){this.context=this[0]=a,this.length=1;return this}if(a==="body"&&!d&&c.body){this.context=c,this[0]=c.body,this.selector=a,this.length=1;return this}if(typeof a=="string"){a.charAt(0)!=="<"||a.charAt(a.length-1)!==">"||a.length<3?g=i.exec(a):g=[null,a,null];if(g&&(g[1]||!d)){if(g[1]){d=d instanceof e?d[0]:d,k=d?d.ownerDocument||d:c,j=m.exec(a),j?e.isPlainObject(d)?(a=[c.createElement(j[1])],e.fn.attr.call(a,d,!0)):a=[k.createElement(j[1])]:(j=e.buildFragment([g[1]],[k]),a=(j.cacheable?e.clone(j.fragment):j.fragment).childNodes);return e.merge(this,a)}h=c.getElementById(g[2]);if(h&&h.parentNode){if(h.id!==g[2])return f.find(a);this.length=1,this[0]=h}this.context=c,this.selector=a;return this}return!d||d.jquery?(d||f).find(a):this.constructor(d).find(a)}if(e.isFunction(a))return f.ready(a);a.selector!==b&&(this.selector=a.selector,this.context=a.context);return e.makeArray(a,this)},selector:"",jquery:"1.7.2",length:0,size:function(){return this.length},toArray:function(){return F.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=this.constructor();e.isArray(a)?E.apply(d,a):e.merge(d,a),d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")");return d},each:function(a,b){return e.each(this,a,b)},ready:function(a){e.bindReady(),A.add(a);return this},eq:function(a){a=+a;return a===-1?this.slice(a):this.slice(a,a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(F.apply(this,arguments),"slice",F.call(arguments).join(","))},map:function(a){return this.pushStack(e.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:E,sort:[].sort,splice:[].splice},e.fn.init.prototype=e.fn,e.extend=e.fn.extend=function(){var a,c,d,f,g,h,i=arguments[0]||{},j=1,k=arguments.length,l=!1;typeof i=="boolean"&&(l=i,i=arguments[1]||{},j=2),typeof i!="object"&&!e.isFunction(i)&&(i={}),k===j&&(i=this,--j);for(;j0)return;A.fireWith(c,[e]),e.fn.trigger&&e(c).trigger("ready").off("ready")}},bindReady:function(){if(!A){A=e.Callbacks("once memory");if(c.readyState==="complete")return setTimeout(e.ready,1);if(c.addEventListener)c.addEventListener("DOMContentLoaded",B,!1),a.addEventListener("load",e.ready,!1);else if(c.attachEvent){c.attachEvent("onreadystatechange",B),a.attachEvent("onload",e.ready);var b=!1;try{b=a.frameElement==null}catch(d){}c.documentElement.doScroll&&b&&J()}}},isFunction:function(a){return e.type(a)==="function"},isArray:Array.isArray||function(a){return e.type(a)==="array"},isWindow:function(a){return a!=null&&a==a.window},isNumeric:function(a){return!isNaN(parseFloat(a))&&isFinite(a)},type:function(a){return a==null?String(a):I[C.call(a)]||"object"},isPlainObject:function(a){if(!a||e.type(a)!=="object"||a.nodeType||e.isWindow(a))return!1;try{if(a.constructor&&!D.call(a,"constructor")&&!D.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||D.call(a,d)},isEmptyObject:function(a){for(var b in a)return!1;return!0},error:function(a){throw new Error(a)},parseJSON:function(b){if(typeof b!="string"||!b)return null;b=e.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(n.test(b.replace(o,"@").replace(p,"]").replace(q,"")))return(new Function("return "+b))();e.error("Invalid JSON: "+b)},parseXML:function(c){if(typeof c!="string"||!c)return null;var d,f;try{a.DOMParser?(f=new DOMParser,d=f.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(g){d=b}(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&e.error("Invalid XML: "+c);return d},noop:function(){},globalEval:function(b){b&&j.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(w,"ms-").replace(v,x)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,c,d){var f,g=0,h=a.length,i=h===b||e.isFunction(a);if(d){if(i){for(f in a)if(c.apply(a[f],d)===!1)break}else for(;g0&&a[0]&&a[j-1]||j===0||e.isArray(a));if(k)for(;i1?i.call(arguments,0):b,j.notifyWith(k,e)}}function l(a){return function(c){b[a]=arguments.length>1?i.call(arguments,0):c,--g||j.resolveWith(j,b)}}var b=i.call(arguments,0),c=0,d=b.length,e=Array(d),g=d,h=d,j=d<=1&&a&&f.isFunction(a.promise)?a:f.Deferred(),k=j.promise();if(d>1){for(;c
    a",d=p.getElementsByTagName("*"),e=p.getElementsByTagName("a")[0];if(!d||!d.length||!e)return{};g=c.createElement("select"),h=g.appendChild(c.createElement("option")),i=p.getElementsByTagName("input")[0],b={leadingWhitespace:p.firstChild.nodeType===3,tbody:!p.getElementsByTagName("tbody").length,htmlSerialize:!!p.getElementsByTagName("link").length,style:/top/.test(e.getAttribute("style")),hrefNormalized:e.getAttribute("href")==="/a",opacity:/^0.55/.test(e.style.opacity),cssFloat:!!e.style.cssFloat,checkOn:i.value==="on",optSelected:h.selected,getSetAttribute:p.className!=="t",enctype:!!c.createElement("form").enctype,html5Clone:c.createElement("nav").cloneNode(!0).outerHTML!=="<:nav>",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0,pixelMargin:!0},f.boxModel=b.boxModel=c.compatMode==="CSS1Compat",i.checked=!0,b.noCloneChecked=i.cloneNode(!0).checked,g.disabled=!0,b.optDisabled=!h.disabled;try{delete p.test}catch(r){b.deleteExpando=!1}!p.addEventListener&&p.attachEvent&&p.fireEvent&&(p.attachEvent("onclick",function(){b.noCloneEvent=!1}),p.cloneNode(!0).fireEvent("onclick")),i=c.createElement("input"),i.value="t",i.setAttribute("type","radio"),b.radioValue=i.value==="t",i.setAttribute("checked","checked"),i.setAttribute("name","t"),p.appendChild(i),j=c.createDocumentFragment(),j.appendChild(p.lastChild),b.checkClone=j.cloneNode(!0).cloneNode(!0).lastChild.checked,b.appendChecked=i.checked,j.removeChild(i),j.appendChild(p);if(p.attachEvent)for(n in{submit:1,change:1,focusin:1})m="on"+n,o=m in p,o||(p.setAttribute(m,"return;"),o=typeof p[m]=="function"),b[n+"Bubbles"]=o;j.removeChild(p),j=g=h=p=i=null,f(function(){var d,e,g,h,i,j,l,m,n,q,r,s,t,u=c.getElementsByTagName("body")[0];!u||(m=1,t="padding:0;margin:0;border:",r="position:absolute;top:0;left:0;width:1px;height:1px;",s=t+"0;visibility:hidden;",n="style='"+r+t+"5px solid #000;",q="
    "+""+"
    ",d=c.createElement("div"),d.style.cssText=s+"width:0;height:0;position:static;top:0;margin-top:"+m+"px",u.insertBefore(d,u.firstChild),p=c.createElement("div"),d.appendChild(p),p.innerHTML="
    t
    ",k=p.getElementsByTagName("td"),o=k[0].offsetHeight===0,k[0].style.display="",k[1].style.display="none",b.reliableHiddenOffsets=o&&k[0].offsetHeight===0,a.getComputedStyle&&(p.innerHTML="",l=c.createElement("div"),l.style.width="0",l.style.marginRight="0",p.style.width="2px",p.appendChild(l),b.reliableMarginRight=(parseInt((a.getComputedStyle(l,null)||{marginRight:0}).marginRight,10)||0)===0),typeof p.style.zoom!="undefined"&&(p.innerHTML="",p.style.width=p.style.padding="1px",p.style.border=0,p.style.overflow="hidden",p.style.display="inline",p.style.zoom=1,b.inlineBlockNeedsLayout=p.offsetWidth===3,p.style.display="block",p.style.overflow="visible",p.innerHTML="
    ",b.shrinkWrapBlocks=p.offsetWidth!==3),p.style.cssText=r+s,p.innerHTML=q,e=p.firstChild,g=e.firstChild,i=e.nextSibling.firstChild.firstChild,j={doesNotAddBorder:g.offsetTop!==5,doesAddBorderForTableAndCells:i.offsetTop===5},g.style.position="fixed",g.style.top="20px",j.fixedPosition=g.offsetTop===20||g.offsetTop===15,g.style.position=g.style.top="",e.style.overflow="hidden",e.style.position="relative",j.subtractsBorderForOverflowNotVisible=g.offsetTop===-5,j.doesNotIncludeMarginInBodyOffset=u.offsetTop!==m,a.getComputedStyle&&(p.style.marginTop="1%",b.pixelMargin=(a.getComputedStyle(p,null)||{marginTop:0}).marginTop!=="1%"),typeof d.style.zoom!="undefined"&&(d.style.zoom=1),u.removeChild(d),l=p=d=null,f.extend(b,j))});return b}();var j=/^(?:\{.*\}|\[.*\])$/,k=/([A-Z])/g;f.extend({cache:{},uuid:0,expando:"jQuery"+(f.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){a=a.nodeType?f.cache[a[f.expando]]:a[f.expando];return!!a&&!m(a)},data:function(a,c,d,e){if(!!f.acceptData(a)){var g,h,i,j=f.expando,k=typeof c=="string",l=a.nodeType,m=l?f.cache:a,n=l?a[j]:a[j]&&j,o=c==="events";if((!n||!m[n]||!o&&!e&&!m[n].data)&&k&&d===b)return;n||(l?a[j]=n=++f.uuid:n=j),m[n]||(m[n]={},l||(m[n].toJSON=f.noop));if(typeof c=="object"||typeof c=="function")e?m[n]=f.extend(m[n],c):m[n].data=f.extend(m[n].data,c);g=h=m[n],e||(h.data||(h.data={}),h=h.data),d!==b&&(h[f.camelCase(c)]=d);if(o&&!h[c])return g.events;k?(i=h[c],i==null&&(i=h[f.camelCase(c)])):i=h;return i}},removeData:function(a,b,c){if(!!f.acceptData(a)){var d,e,g,h=f.expando,i=a.nodeType,j=i?f.cache:a,k=i?a[h]:h;if(!j[k])return;if(b){d=c?j[k]:j[k].data;if(d){f.isArray(b)||(b in d?b=[b]:(b=f.camelCase(b),b in d?b=[b]:b=b.split(" ")));for(e=0,g=b.length;e1,null,!1)},removeData:function(a){return this.each(function(){f.removeData(this,a)})}}),f.extend({_mark:function(a,b){a&&(b=(b||"fx")+"mark",f._data(a,b,(f._data(a,b)||0)+1))},_unmark:function(a,b,c){a!==!0&&(c=b,b=a,a=!1);if(b){c=c||"fx";var d=c+"mark",e=a?0:(f._data(b,d)||1)-1;e?f._data(b,d,e):(f.removeData(b,d,!0),n(b,c,"mark"))}},queue:function(a,b,c){var d;if(a){b=(b||"fx")+"queue",d=f._data(a,b),c&&(!d||f.isArray(c)?d=f._data(a,b,f.makeArray(c)):d.push(c));return d||[]}},dequeue:function(a,b){b=b||"fx";var c=f.queue(a,b),d=c.shift(),e={};d==="inprogress"&&(d=c.shift()),d&&(b==="fx"&&c.unshift("inprogress"),f._data(a,b+".run",e),d.call(a,function(){f.dequeue(a,b)},e)),c.length||(f.removeData(a,b+"queue "+b+".run",!0),n(a,b,"queue"))}}),f.fn.extend({queue:function(a,c){var d=2;typeof a!="string"&&(c=a,a="fx",d--);if(arguments.length1)},removeAttr:function(a){return this.each(function(){f.removeAttr(this,a)})},prop:function(a,b){return f.access(this,f.prop,a,b,arguments.length>1)},removeProp:function(a){a=f.propFix[a]||a;return this.each(function(){try{this[a]=b,delete this[a]}catch(c){}})},addClass:function(a){var b,c,d,e,g,h,i;if(f.isFunction(a))return this.each(function(b){f(this).addClass(a.call(this,b,this.className))});if(a&&typeof a=="string"){b=a.split(p);for(c=0,d=this.length;c-1)return!0;return!1},val:function(a){var c,d,e,g=this[0];{if(!!arguments.length){e=f.isFunction(a);return this.each(function(d){var g=f(this),h;if(this.nodeType===1){e?h=a.call(this,d,g.val()):h=a,h==null?h="":typeof h=="number"?h+="":f.isArray(h)&&(h=f.map(h,function(a){return a==null?"":a+""})),c=f.valHooks[this.type]||f.valHooks[this.nodeName.toLowerCase()];if(!c||!("set"in c)||c.set(this,h,"value")===b)this.value=h}})}if(g){c=f.valHooks[g.type]||f.valHooks[g.nodeName.toLowerCase()];if(c&&"get"in c&&(d=c.get(g,"value"))!==b)return d;d=g.value;return typeof d=="string"?d.replace(q,""):d==null?"":d}}}}),f.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c,d,e,g=a.selectedIndex,h=[],i=a.options,j=a.type==="select-one";if(g<0)return null;c=j?g:0,d=j?g+1:i.length;for(;c=0}),c.length||(a.selectedIndex=-1);return c}}},attrFn:{val:!0,css:!0,html:!0,text:!0,data:!0,width:!0,height:!0,offset:!0},attr:function(a,c,d,e){var g,h,i,j=a.nodeType;if(!!a&&j!==3&&j!==8&&j!==2){if(e&&c in f.attrFn)return f(a)[c](d);if(typeof a.getAttribute=="undefined")return f.prop(a,c,d);i=j!==1||!f.isXMLDoc(a),i&&(c=c.toLowerCase(),h=f.attrHooks[c]||(u.test(c)?x:w));if(d!==b){if(d===null){f.removeAttr(a,c);return}if(h&&"set"in h&&i&&(g=h.set(a,d,c))!==b)return g;a.setAttribute(c,""+d);return d}if(h&&"get"in h&&i&&(g=h.get(a,c))!==null)return g;g=a.getAttribute(c);return g===null?b:g}},removeAttr:function(a,b){var c,d,e,g,h,i=0;if(b&&a.nodeType===1){d=b.toLowerCase().split(p),g=d.length;for(;i=0}})});var z=/^(?:textarea|input|select)$/i,A=/^([^\.]*)?(?:\.(.+))?$/,B=/(?:^|\s)hover(\.\S+)?\b/,C=/^key/,D=/^(?:mouse|contextmenu)|click/,E=/^(?:focusinfocus|focusoutblur)$/,F=/^(\w*)(?:#([\w\-]+))?(?:\.([\w\-]+))?$/,G=function( + a){var b=F.exec(a);b&&(b[1]=(b[1]||"").toLowerCase(),b[3]=b[3]&&new RegExp("(?:^|\\s)"+b[3]+"(?:\\s|$)"));return b},H=function(a,b){var c=a.attributes||{};return(!b[1]||a.nodeName.toLowerCase()===b[1])&&(!b[2]||(c.id||{}).value===b[2])&&(!b[3]||b[3].test((c["class"]||{}).value))},I=function(a){return f.event.special.hover?a:a.replace(B,"mouseenter$1 mouseleave$1")};f.event={add:function(a,c,d,e,g){var h,i,j,k,l,m,n,o,p,q,r,s;if(!(a.nodeType===3||a.nodeType===8||!c||!d||!(h=f._data(a)))){d.handler&&(p=d,d=p.handler,g=p.selector),d.guid||(d.guid=f.guid++),j=h.events,j||(h.events=j={}),i=h.handle,i||(h.handle=i=function(a){return typeof f!="undefined"&&(!a||f.event.triggered!==a.type)?f.event.dispatch.apply(i.elem,arguments):b},i.elem=a),c=f.trim(I(c)).split(" ");for(k=0;k=0&&(h=h.slice(0,-1),k=!0),h.indexOf(".")>=0&&(i=h.split("."),h=i.shift(),i.sort());if((!e||f.event.customEvent[h])&&!f.event.global[h])return;c=typeof c=="object"?c[f.expando]?c:new f.Event(h,c):new f.Event(h),c.type=h,c.isTrigger=!0,c.exclusive=k,c.namespace=i.join("."),c.namespace_re=c.namespace?new RegExp("(^|\\.)"+i.join("\\.(?:.*\\.)?")+"(\\.|$)"):null,o=h.indexOf(":")<0?"on"+h:"";if(!e){j=f.cache;for(l in j)j[l].events&&j[l].events[h]&&f.event.trigger(c,d,j[l].handle.elem,!0);return}c.result=b,c.target||(c.target=e),d=d!=null?f.makeArray(d):[],d.unshift(c),p=f.event.special[h]||{};if(p.trigger&&p.trigger.apply(e,d)===!1)return;r=[[e,p.bindType||h]];if(!g&&!p.noBubble&&!f.isWindow(e)){s=p.delegateType||h,m=E.test(s+h)?e:e.parentNode,n=null;for(;m;m=m.parentNode)r.push([m,s]),n=m;n&&n===e.ownerDocument&&r.push([n.defaultView||n.parentWindow||a,s])}for(l=0;le&&j.push({elem:this,matches:d.slice(e)});for(k=0;k0?this.on(b,null,a,c):this.trigger(b)},f.attrFn&&(f.attrFn[b]=!0),C.test(b)&&(f.event.fixHooks[b]=f.event.keyHooks),D.test(b)&&(f.event.fixHooks[b]=f.event.mouseHooks)}),function(){function x(a,b,c,e,f,g){for(var h=0,i=e.length;h0){k=j;break}}j=j[a]}e[h]=k}}}function w(a,b,c,e,f,g){for(var h=0,i=e.length;h+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,d="sizcache"+(Math.random()+"").replace(".",""),e=0,g=Object.prototype.toString,h=!1,i=!0,j=/\\/g,k=/\r\n/g,l=/\W/;[0,0].sort(function(){i=!1;return 0});var m=function(b,d,e,f){e=e||[],d=d||c;var h=d;if(d.nodeType!==1&&d.nodeType!==9)return[];if(!b||typeof b!="string")return e;var i,j,k,l,n,q,r,t,u=!0,v=m.isXML(d),w=[],x=b;do{a.exec(""),i=a.exec(x);if(i){x=i[3],w.push(i[1]);if(i[2]){l=i[3];break}}}while(i);if(w.length>1&&p.exec(b))if(w.length===2&&o.relative[w[0]])j=y(w[0]+w[1],d,f);else{j=o.relative[w[0]]?[d]:m(w.shift(),d);while(w.length)b=w.shift(),o.relative[b]&&(b+=w.shift()),j=y(b,j,f)}else{!f&&w.length>1&&d.nodeType===9&&!v&&o.match.ID.test(w[0])&&!o.match.ID.test(w[w.length-1])&&(n=m.find(w.shift(),d,v),d=n.expr?m.filter(n.expr,n.set)[0]:n.set[0]);if(d){n=f?{expr:w.pop(),set:s(f)}:m.find(w.pop(),w.length===1&&(w[0]==="~"||w[0]==="+")&&d.parentNode?d.parentNode:d,v),j=n.expr?m.filter(n.expr,n.set):n.set,w.length>0?k=s(j):u=!1;while(w.length)q=w.pop(),r=q,o.relative[q]?r=w.pop():q="",r==null&&(r=d),o.relative[q](k,r,v)}else k=w=[]}k||(k=j),k||m.error(q||b);if(g.call(k)==="[object Array]")if(!u)e.push.apply(e,k);else if(d&&d.nodeType===1)for(t=0;k[t]!=null;t++)k[t]&&(k[t]===!0||k[t].nodeType===1&&m.contains(d,k[t]))&&e.push(j[t]);else for(t=0;k[t]!=null;t++)k[t]&&k[t].nodeType===1&&e.push(j[t]);else s(k,e);l&&(m(l,h,e,f),m.uniqueSort(e));return e};m.uniqueSort=function(a){if(u){h=i,a.sort(u);if(h)for(var b=1;b0},m.find=function(a,b,c){var d,e,f,g,h,i;if(!a)return[];for(e=0,f=o.order.length;e":function(a,b){var c,d=typeof b=="string",e=0,f=a.length;if(d&&!l.test(b)){b=b.toLowerCase();for(;e=0)?c||d.push(h):c&&(b[g]=!1));return!1},ID:function(a){return a[1].replace(j,"")},TAG:function(a,b){return a[1].replace(j,"").toLowerCase()},CHILD:function(a){if(a[1]==="nth"){a[2]||m.error(a[0]),a[2]=a[2].replace(/^\+|\s*/g,"");var b=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(a[2]==="even"&&"2n"||a[2]==="odd"&&"2n+1"||!/\D/.test(a[2])&&"0n+"+a[2]||a[2]);a[2]=b[1]+(b[2]||1)-0,a[3]=b[3]-0}else a[2]&&m.error(a[0]);a[0]=e++;return a},ATTR:function(a,b,c,d,e,f){var g=a[1]=a[1].replace(j,"");!f&&o.attrMap[g]&&(a[1]=o.attrMap[g]),a[4]=(a[4]||a[5]||"").replace(j,""),a[2]==="~="&&(a[4]=" "+a[4]+" ");return a},PSEUDO:function(b,c,d,e,f){if(b[1]==="not")if((a.exec(b[3])||"").length>1||/^\w/.test(b[3]))b[3]=m(b[3],null,null,c);else{var g=m.filter(b[3],c,d,!0^f);d||e.push.apply(e,g);return!1}else if(o.match.POS.test(b[0])||o.match.CHILD.test(b[0]))return!0;return b},POS:function(a){a.unshift(!0);return a}},filters:{enabled:function(a){return a.disabled===!1&&a.type!=="hidden"},disabled:function(a){return a.disabled===!0},checked:function(a){return a.checked===!0},selected:function(a){a.parentNode&&a.parentNode.selectedIndex;return a.selected===!0},parent:function(a){return!!a.firstChild},empty:function(a){return!a.firstChild},has:function(a,b,c){return!!m(c[3],a).length},header:function(a){return/h\d/i.test(a.nodeName)},text:function(a){var b=a.getAttribute("type"),c=a.type;return a.nodeName.toLowerCase()==="input"&&"text"===c&&(b===c||b===null)},radio:function(a){return a.nodeName.toLowerCase()==="input"&&"radio"===a.type},checkbox:function(a){return a.nodeName.toLowerCase()==="input"&&"checkbox"===a.type},file:function(a){return a.nodeName.toLowerCase()==="input"&&"file"===a.type},password:function(a){return a.nodeName.toLowerCase()==="input"&&"password"===a.type},submit:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"submit"===a.type},image:function(a){return a.nodeName.toLowerCase()==="input"&&"image"===a.type},reset:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"reset"===a.type},button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&"button"===a.type||b==="button"},input:function(a){return/input|select|textarea|button/i.test(a.nodeName)},focus:function(a){return a===a.ownerDocument.activeElement}},setFilters:{first:function(a,b){return b===0},last:function(a,b,c,d){return b===d.length-1},even:function(a,b){return b%2===0},odd:function(a,b){return b%2===1},lt:function(a,b,c){return bc[3]-0},nth:function(a,b,c){return c[3]-0===b},eq:function(a,b,c){return c[3]-0===b}},filter:{PSEUDO:function(a,b,c,d){var e=b[1],f=o.filters[e];if(f)return f(a,c,b,d);if(e==="contains")return(a.textContent||a.innerText||n([a])||"").indexOf(b[3])>=0;if(e==="not"){var g=b[3];for(var h=0,i=g.length;h=0}},ID:function(a,b){return a.nodeType===1&&a.getAttribute("id")===b},TAG:function(a,b){return b==="*"&&a.nodeType===1||!!a.nodeName&&a.nodeName.toLowerCase()===b},CLASS:function(a,b){return(" "+(a.className||a.getAttribute("class"))+" ").indexOf(b)>-1},ATTR:function(a,b){var c=b[1],d=m.attr?m.attr(a,c):o.attrHandle[c]?o.attrHandle[c](a):a[c]!=null?a[c]:a.getAttribute(c),e=d+"",f=b[2],g=b[4];return d==null?f==="!=":!f&&m.attr?d!=null:f==="="?e===g:f==="*="?e.indexOf(g)>=0:f==="~="?(" "+e+" ").indexOf(g)>=0:g?f==="!="?e!==g:f==="^="?e.indexOf(g)===0:f==="$="?e.substr(e.length-g.length)===g:f==="|="?e===g||e.substr(0,g.length+1)===g+"-":!1:e&&d!==!1},POS:function(a,b,c,d){var e=b[2],f=o.setFilters[e];if(f)return f(a,c,b,d)}}},p=o.match.POS,q=function(a,b){return"\\"+(b-0+1)};for(var r in o.match)o.match[r]=new RegExp(o.match[r].source+/(?![^\[]*\])(?![^\(]*\))/.source),o.leftMatch[r]=new RegExp(/(^(?:.|\r|\n)*?)/.source+o.match[r].source.replace(/\\(\d+)/g,q));o.match.globalPOS=p;var s=function(a,b){a=Array.prototype.slice.call(a,0);if(b){b.push.apply(b,a);return b}return a};try{Array.prototype.slice.call(c.documentElement.childNodes,0)[0].nodeType}catch(t){s=function(a,b){var c=0,d=b||[];if(g.call(a)==="[object Array]")Array.prototype.push.apply(d,a);else if(typeof a.length=="number")for(var e=a.length;c",e.insertBefore(a,e.firstChild),c.getElementById(d)&&(o.find.ID=function(a,c,d){if(typeof c.getElementById!="undefined"&&!d){var e=c.getElementById(a[1]);return e?e.id===a[1]||typeof e.getAttributeNode!="undefined"&&e.getAttributeNode("id").nodeValue===a[1]?[e]:b:[]}},o.filter.ID=function(a,b){var c=typeof a.getAttributeNode!="undefined"&&a.getAttributeNode("id");return a.nodeType===1&&c&&c.nodeValue===b}),e.removeChild(a),e=a=null}(),function(){var a=c.createElement("div");a.appendChild(c.createComment("")),a.getElementsByTagName("*").length>0&&(o.find.TAG=function(a,b){var c=b.getElementsByTagName(a[1]);if(a[1]==="*"){var d=[];for(var e=0;c[e];e++)c[e].nodeType===1&&d.push(c[e]);c=d}return c}),a.innerHTML="",a.firstChild&&typeof a.firstChild.getAttribute!="undefined"&&a.firstChild.getAttribute("href")!=="#"&&(o.attrHandle.href=function(a){return a.getAttribute("href",2)}),a=null}(),c.querySelectorAll&&function(){var a=m,b=c.createElement("div"),d="__sizzle__";b.innerHTML="

    ";if(!b.querySelectorAll||b.querySelectorAll(".TEST").length!==0){m=function(b,e,f,g){e=e||c;if(!g&&!m.isXML(e)){var h=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(b);if(h&&(e.nodeType===1||e.nodeType===9)){if(h[1])return s(e.getElementsByTagName(b),f);if(h[2]&&o.find.CLASS&&e.getElementsByClassName)return s(e.getElementsByClassName(h[2]),f)}if(e.nodeType===9){if(b==="body"&&e.body)return s([e.body],f);if(h&&h[3]){var i=e.getElementById(h[3]);if(!i||!i.parentNode)return s([],f);if(i.id===h[3])return s([i],f)}try{return s(e.querySelectorAll(b),f)}catch(j){}}else if(e.nodeType===1&&e.nodeName.toLowerCase()!=="object"){var k=e,l=e.getAttribute("id"),n=l||d,p=e.parentNode,q=/^\s*[+~]/.test(b);l?n=n.replace(/'/g,"\\$&"):e.setAttribute("id",n),q&&p&&(e=e.parentNode);try{if(!q||p)return s(e.querySelectorAll("[id='"+n+"'] "+b),f)}catch(r){}finally{l||k.removeAttribute("id")}}}return a(b,e,f,g)};for(var e in a)m[e]=a[e];b=null}}(),function(){var a=c.documentElement,b=a.matchesSelector||a.mozMatchesSelector||a.webkitMatchesSelector||a.msMatchesSelector;if(b){var d=!b.call(c.createElement("div"),"div"),e=!1;try{b.call(c.documentElement,"[test!='']:sizzle")}catch(f){e=!0}m.matchesSelector=function(a,c){c=c.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!m.isXML(a))try{if(e||!o.match.PSEUDO.test(c)&&!/!=/.test(c)){var f=b.call(a,c);if(f||!d||a.document&&a.document.nodeType!==11)return f}}catch(g){}return m(c,null,null,[a]).length>0}}}(),function(){var a=c.createElement("div");a.innerHTML="
    ";if(!!a.getElementsByClassName&&a.getElementsByClassName("e").length!==0){a.lastChild.className="e";if(a.getElementsByClassName("e").length===1)return;o.order.splice(1,0,"CLASS"),o.find.CLASS=function(a,b,c){if(typeof b.getElementsByClassName!="undefined"&&!c)return b.getElementsByClassName(a[1])},a=null}}(),c.documentElement.contains?m.contains=function(a,b){return a!==b&&(a.contains?a.contains(b):!0)}:c.documentElement.compareDocumentPosition?m.contains=function(a,b){return!!(a.compareDocumentPosition(b)&16)}:m.contains=function(){return!1},m.isXML=function(a){var b=(a?a.ownerDocument||a:0).documentElement;return b?b.nodeName!=="HTML":!1};var y=function(a,b,c){var d,e=[],f="",g=b.nodeType?[b]:b;while(d=o.match.PSEUDO.exec(a))f+=d[0],a=a.replace(o.match.PSEUDO,"");a=o.relative[a]?a+"*":a;for(var h=0,i=g.length;h0)for(h=g;h=0:f.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c=[],d,e,g=this[0];if(f.isArray(a)){var h=1;while(g&&g.ownerDocument&&g!==b){for(d=0;d-1:f.find.matchesSelector(g,a)){c.push(g);break}g=g.parentNode;if(!g||!g.ownerDocument||g===b||g.nodeType===11)break}}c=c.length>1?f.unique(c):c;return this.pushStack(c,"closest",a)},index:function(a){if(!a)return this[0]&&this[0].parentNode?this.prevAll().length:-1;if(typeof a=="string")return f.inArray(this[0],f(a));return f.inArray(a.jquery?a[0]:a,this)},add:function(a,b){var c=typeof a=="string"?f(a,b):f.makeArray(a&&a.nodeType?[a]:a),d=f.merge(this.get(),c);return this.pushStack(S(c[0])||S(d[0])?d:f.unique(d))},andSelf:function(){return this.add(this.prevObject)}}),f.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return f.dir(a,"parentNode")},parentsUntil:function(a,b,c){return f.dir(a,"parentNode",c)},next:function(a){return f.nth(a,2,"nextSibling")},prev:function(a){return f.nth(a,2,"previousSibling")},nextAll:function(a){return f.dir(a,"nextSibling")},prevAll:function(a){return f.dir(a,"previousSibling")},nextUntil:function(a,b,c){return f.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return f.dir(a,"previousSibling",c)},siblings:function(a){return f.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return f.sibling(a.firstChild)},contents:function(a){return f.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:f.makeArray(a.childNodes)}},function(a,b){f.fn[a]=function(c,d){var e=f.map(this,b,c);L.test(a)||(d=c),d&&typeof d=="string"&&(e=f.filter(d,e)),e=this.length>1&&!R[a]?f.unique(e):e,(this.length>1||N.test(d))&&M.test(a)&&(e=e.reverse());return this.pushStack(e,a,P.call(arguments).join(","))}}),f.extend({filter:function(a,b,c){c&&(a=":not("+a+")");return b.length===1?f.find.matchesSelector(b[0],a)?[b[0]]:[]:f.find.matches(a,b)},dir:function(a,c,d){var e=[],g=a[c];while(g&&g.nodeType!==9&&(d===b||g.nodeType!==1||!f(g).is(d)))g.nodeType===1&&e.push(g),g=g[c];return e},nth:function(a,b,c,d){b=b||1;var e=0;for(;a;a=a[c])if(a.nodeType===1&&++e===b)break;return a},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var V="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",W=/ jQuery\d+="(?:\d+|null)"/g,X=/^\s+/,Y=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,Z=/<([\w:]+)/,$=/]","i"),bd=/checked\s*(?:[^=]|=\s*.checked.)/i,be=/\/(java|ecma)script/i,bf=/^\s*",""],legend:[1,"
    ","
    "],thead:[1,"","
    "],tr:[2,"","
    "],td:[3,"","
    "],col:[2,"","
    "],area:[1,"",""],_default:[0,"",""]},bh=U(c);bg.optgroup=bg.option,bg.tbody=bg.tfoot=bg.colgroup=bg.caption=bg.thead,bg.th=bg.td,f.support.htmlSerialize||(bg._default=[1,"div
    ","
    "]),f.fn.extend({text:function(a){return f.access(this,function(a){return a===b?f.text(this):this.empty().append((this[0]&&this[0].ownerDocument||c).createTextNode(a))},null,a,arguments.length)},wrapAll:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapAll(a.call(this,b))});if(this[0]){var b=f(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapInner(a.call(this,b))});return this.each(function(){var b=f(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=f.isFunction(a);return this.each(function(c){f(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){f.nodeName(this,"body")||f(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=f + .clean(arguments);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,f.clean(arguments));return a}},remove:function(a,b){for(var c=0,d;(d=this[c])!=null;c++)if(!a||f.filter(a,[d]).length)!b&&d.nodeType===1&&(f.cleanData(d.getElementsByTagName("*")),f.cleanData([d])),d.parentNode&&d.parentNode.removeChild(d);return this},empty:function(){for(var a=0,b;(b=this[a])!=null;a++){b.nodeType===1&&f.cleanData(b.getElementsByTagName("*"));while(b.firstChild)b.removeChild(b.firstChild)}return this},clone:function(a,b){a=a==null?!1:a,b=b==null?a:b;return this.map(function(){return f.clone(this,a,b)})},html:function(a){return f.access(this,function(a){var c=this[0]||{},d=0,e=this.length;if(a===b)return c.nodeType===1?c.innerHTML.replace(W,""):null;if(typeof a=="string"&&!ba.test(a)&&(f.support.leadingWhitespace||!X.test(a))&&!bg[(Z.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Y,"<$1>");try{for(;d1&&l0?this.clone(!0):this).get();f(e[h])[b](j),d=d.concat(j)}return this.pushStack(d,a,e.selector)}}),f.extend({clone:function(a,b,c){var d,e,g,h=f.support.html5Clone||f.isXMLDoc(a)||!bc.test("<"+a.nodeName+">")?a.cloneNode(!0):bo(a);if((!f.support.noCloneEvent||!f.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!f.isXMLDoc(a)){bk(a,h),d=bl(a),e=bl(h);for(g=0;d[g];++g)e[g]&&bk(d[g],e[g])}if(b){bj(a,h);if(c){d=bl(a),e=bl(h);for(g=0;d[g];++g)bj(d[g],e[g])}}d=e=null;return h},clean:function(a,b,d,e){var g,h,i,j=[];b=b||c,typeof b.createElement=="undefined"&&(b=b.ownerDocument||b[0]&&b[0].ownerDocument||c);for(var k=0,l;(l=a[k])!=null;k++){typeof l=="number"&&(l+="");if(!l)continue;if(typeof l=="string")if(!_.test(l))l=b.createTextNode(l);else{l=l.replace(Y,"<$1>");var m=(Z.exec(l)||["",""])[1].toLowerCase(),n=bg[m]||bg._default,o=n[0],p=b.createElement("div"),q=bh.childNodes,r;b===c?bh.appendChild(p):U(b).appendChild(p),p.innerHTML=n[1]+l+n[2];while(o--)p=p.lastChild;if(!f.support.tbody){var s=$.test(l),t=m==="table"&&!s?p.firstChild&&p.firstChild.childNodes:n[1]===""&&!s?p.childNodes:[];for(i=t.length-1;i>=0;--i)f.nodeName(t[i],"tbody")&&!t[i].childNodes.length&&t[i].parentNode.removeChild(t[i])}!f.support.leadingWhitespace&&X.test(l)&&p.insertBefore(b.createTextNode(X.exec(l)[0]),p.firstChild),l=p.childNodes,p&&(p.parentNode.removeChild(p),q.length>0&&(r=q[q.length-1],r&&r.parentNode&&r.parentNode.removeChild(r)))}var u;if(!f.support.appendChecked)if(l[0]&&typeof (u=l.length)=="number")for(i=0;i1)},f.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=by(a,"opacity");return c===""?"1":c}return a.style.opacity}}},cssNumber:{fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":f.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,d,e){if(!!a&&a.nodeType!==3&&a.nodeType!==8&&!!a.style){var g,h,i=f.camelCase(c),j=a.style,k=f.cssHooks[i];c=f.cssProps[i]||i;if(d===b){if(k&&"get"in k&&(g=k.get(a,!1,e))!==b)return g;return j[c]}h=typeof d,h==="string"&&(g=bu.exec(d))&&(d=+(g[1]+1)*+g[2]+parseFloat(f.css(a,c)),h="number");if(d==null||h==="number"&&isNaN(d))return;h==="number"&&!f.cssNumber[i]&&(d+="px");if(!k||!("set"in k)||(d=k.set(a,d))!==b)try{j[c]=d}catch(l){}}},css:function(a,c,d){var e,g;c=f.camelCase(c),g=f.cssHooks[c],c=f.cssProps[c]||c,c==="cssFloat"&&(c="float");if(g&&"get"in g&&(e=g.get(a,!0,d))!==b)return e;if(by)return by(a,c)},swap:function(a,b,c){var d={},e,f;for(f in b)d[f]=a.style[f],a.style[f]=b[f];e=c.call(a);for(f in b)a.style[f]=d[f];return e}}),f.curCSS=f.css,c.defaultView&&c.defaultView.getComputedStyle&&(bz=function(a,b){var c,d,e,g,h=a.style;b=b.replace(br,"-$1").toLowerCase(),(d=a.ownerDocument.defaultView)&&(e=d.getComputedStyle(a,null))&&(c=e.getPropertyValue(b),c===""&&!f.contains(a.ownerDocument.documentElement,a)&&(c=f.style(a,b))),!f.support.pixelMargin&&e&&bv.test(b)&&bt.test(c)&&(g=h.width,h.width=c,c=e.width,h.width=g);return c}),c.documentElement.currentStyle&&(bA=function(a,b){var c,d,e,f=a.currentStyle&&a.currentStyle[b],g=a.style;f==null&&g&&(e=g[b])&&(f=e),bt.test(f)&&(c=g.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),g.left=b==="fontSize"?"1em":f,f=g.pixelLeft+"px",g.left=c,d&&(a.runtimeStyle.left=d));return f===""?"auto":f}),by=bz||bA,f.each(["height","width"],function(a,b){f.cssHooks[b]={get:function(a,c,d){if(c)return a.offsetWidth!==0?bB(a,b,d):f.swap(a,bw,function(){return bB(a,b,d)})},set:function(a,b){return bs.test(b)?b+"px":b}}}),f.support.opacity||(f.cssHooks.opacity={get:function(a,b){return bq.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=f.isNumeric(b)?"alpha(opacity="+b*100+")":"",g=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&f.trim(g.replace(bp,""))===""){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bp.test(g)?g.replace(bp,e):g+" "+e}}),f(function(){f.support.reliableMarginRight||(f.cssHooks.marginRight={get:function(a,b){return f.swap(a,{display:"inline-block"},function(){return b?by(a,"margin-right"):a.style.marginRight})}})}),f.expr&&f.expr.filters&&(f.expr.filters.hidden=function(a){var b=a.offsetWidth,c=a.offsetHeight;return b===0&&c===0||!f.support.reliableHiddenOffsets&&(a.style&&a.style.display||f.css(a,"display"))==="none"},f.expr.filters.visible=function(a){return!f.expr.filters.hidden(a)}),f.each({margin:"",padding:"",border:"Width"},function(a,b){f.cssHooks[a+b]={expand:function(c){var d,e=typeof c=="string"?c.split(" "):[c],f={};for(d=0;d<4;d++)f[a+bx[d]+b]=e[d]||e[d-2]||e[0];return f}}});var bC=/%20/g,bD=/\[\]$/,bE=/\r?\n/g,bF=/#.*$/,bG=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,bH=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,bI=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,bJ=/^(?:GET|HEAD)$/,bK=/^\/\//,bL=/\?/,bM=/)<[^<]*)*<\/script>/gi,bN=/^(?:select|textarea)/i,bO=/\s+/,bP=/([?&])_=[^&]*/,bQ=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/,bR=f.fn.load,bS={},bT={},bU,bV,bW=["*/"]+["*"];try{bU=e.href}catch(bX){bU=c.createElement("a"),bU.href="",bU=bU.href}bV=bQ.exec(bU.toLowerCase())||[],f.fn.extend({load:function(a,c,d){if(typeof a!="string"&&bR)return bR.apply(this,arguments);if(!this.length)return this;var e=a.indexOf(" ");if(e>=0){var g=a.slice(e,a.length);a=a.slice(0,e)}var h="GET";c&&(f.isFunction(c)?(d=c,c=b):typeof c=="object"&&(c=f.param(c,f.ajaxSettings.traditional),h="POST"));var i=this;f.ajax({url:a,type:h,dataType:"html",data:c,complete:function(a,b,c){c=a.responseText,a.isResolved()&&(a.done(function(a){c=a}),i.html(g?f("
    ").append(c.replace(bM,"")).find(g):c)),d&&i.each(d,[c,b,a])}});return this},serialize:function(){return f.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?f.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||bN.test(this.nodeName)||bH.test(this.type))}).map(function(a,b){var c=f(this).val();return c==null?null:f.isArray(c)?f.map(c,function(a,c){return{name:b.name,value:a.replace(bE,"\r\n")}}):{name:b.name,value:c.replace(bE,"\r\n")}}).get()}}),f.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){f.fn[b]=function(a){return this.on(b,a)}}),f.each(["get","post"],function(a,c){f[c]=function(a,d,e,g){f.isFunction(d)&&(g=g||e,e=d,d=b);return f.ajax({type:c,url:a,data:d,success:e,dataType:g})}}),f.extend({getScript:function(a,c){return f.get(a,b,c,"script")},getJSON:function(a,b,c){return f.get(a,b,c,"json")},ajaxSetup:function(a,b){b?b$(a,f.ajaxSettings):(b=a,a=f.ajaxSettings),b$(a,b);return a},ajaxSettings:{url:bU,isLocal:bI.test(bV[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded; charset=UTF-8",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":bW},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":f.parseJSON,"text xml":f.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:bY(bS),ajaxTransport:bY(bT),ajax:function(a,c){function w(a,c,l,m){if(s!==2){s=2,q&&clearTimeout(q),p=b,n=m||"",v.readyState=a>0?4:0;var o,r,u,w=c,x=l?ca(d,v,l):b,y,z;if(a>=200&&a<300||a===304){if(d.ifModified){if(y=v.getResponseHeader("Last-Modified"))f.lastModified[k]=y;if(z=v.getResponseHeader("Etag"))f.etag[k]=z}if(a===304)w="notmodified",o=!0;else try{r=cb(d,x),w="success",o=!0}catch(A){w="parsererror",u=A}}else{u=w;if(!w||a)w="error",a<0&&(a=0)}v.status=a,v.statusText=""+(c||w),o?h.resolveWith(e,[r,w,v]):h.rejectWith(e,[v,w,u]),v.statusCode(j),j=b,t&&g.trigger("ajax"+(o?"Success":"Error"),[v,d,o?r:u]),i.fireWith(e,[v,w]),t&&(g.trigger("ajaxComplete",[v,d]),--f.active||f.event.trigger("ajaxStop"))}}typeof a=="object"&&(c=a,a=b),c=c||{};var d=f.ajaxSetup({},c),e=d.context||d,g=e!==d&&(e.nodeType||e instanceof f)?f(e):f.event,h=f.Deferred(),i=f.Callbacks("once memory"),j=d.statusCode||{},k,l={},m={},n,o,p,q,r,s=0,t,u,v={readyState:0,setRequestHeader:function(a,b){if(!s){var c=a.toLowerCase();a=m[c]=m[c]||a,l[a]=b}return this},getAllResponseHeaders:function(){return s===2?n:null},getResponseHeader:function(a){var c;if(s===2){if(!o){o={};while(c=bG.exec(n))o[c[1].toLowerCase()]=c[2]}c=o[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){s||(d.mimeType=a);return this},abort:function(a){a=a||"abort",p&&p.abort(a),w(0,a);return this}};h.promise(v),v.success=v.done,v.error=v.fail,v.complete=i.add,v.statusCode=function(a){if(a){var b;if(s<2)for(b in a)j[b]=[j[b],a[b]];else b=a[v.status],v.then(b,b)}return this},d.url=((a||d.url)+"").replace(bF,"").replace(bK,bV[1]+"//"),d.dataTypes=f.trim(d.dataType||"*").toLowerCase().split(bO),d.crossDomain==null&&(r=bQ.exec(d.url.toLowerCase()),d.crossDomain=!(!r||r[1]==bV[1]&&r[2]==bV[2]&&(r[3]||(r[1]==="http:"?80:443))==(bV[3]||(bV[1]==="http:"?80:443)))),d.data&&d.processData&&typeof d.data!="string"&&(d.data=f.param(d.data,d.traditional)),bZ(bS,d,c,v);if(s===2)return!1;t=d.global,d.type=d.type.toUpperCase(),d.hasContent=!bJ.test(d.type),t&&f.active++===0&&f.event.trigger("ajaxStart");if(!d.hasContent){d.data&&(d.url+=(bL.test(d.url)?"&":"?")+d.data,delete d.data),k=d.url;if(d.cache===!1){var x=f.now(),y=d.url.replace(bP,"$1_="+x);d.url=y+(y===d.url?(bL.test(d.url)?"&":"?")+"_="+x:"")}}(d.data&&d.hasContent&&d.contentType!==!1||c.contentType)&&v.setRequestHeader("Content-Type",d.contentType),d.ifModified&&(k=k||d.url,f.lastModified[k]&&v.setRequestHeader("If-Modified-Since",f.lastModified[k]),f.etag[k]&&v.setRequestHeader("If-None-Match",f.etag[k])),v.setRequestHeader("Accept",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+(d.dataTypes[0]!=="*"?", "+bW+"; q=0.01":""):d.accepts["*"]);for(u in d.headers)v.setRequestHeader(u,d.headers[u]);if(d.beforeSend&&(d.beforeSend.call(e,v,d)===!1||s===2)){v.abort();return!1}for(u in{success:1,error:1,complete:1})v[u](d[u]);p=bZ(bT,d,c,v);if(!p)w(-1,"No Transport");else{v.readyState=1,t&&g.trigger("ajaxSend",[v,d]),d.async&&d.timeout>0&&(q=setTimeout(function(){v.abort("timeout")},d.timeout));try{s=1,p.send(l,w)}catch(z){if(s<2)w(-1,z);else throw z}}return v},param:function(a,c){var d=[],e=function(a,b){b=f.isFunction(b)?b():b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=f.ajaxSettings.traditional);if(f.isArray(a)||a.jquery&&!f.isPlainObject(a))f.each(a,function(){e(this.name,this.value)});else for(var g in a)b_(g,a[g],c,e);return d.join("&").replace(bC,"+")}}),f.extend({active:0,lastModified:{},etag:{}});var cc=f.now(),cd=/(\=)\?(&|$)|\?\?/i;f.ajaxSetup({jsonp:"callback",jsonpCallback:function(){return f.expando+"_"+cc++}}),f.ajaxPrefilter("json jsonp",function(b,c,d){var e=typeof b.data=="string"&&/^application\/x\-www\-form\-urlencoded/.test(b.contentType);if(b.dataTypes[0]==="jsonp"||b.jsonp!==!1&&(cd.test(b.url)||e&&cd.test(b.data))){var g,h=b.jsonpCallback=f.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,i=a[h],j=b.url,k=b.data,l="$1"+h+"$2";b.jsonp!==!1&&(j=j.replace(cd,l),b.url===j&&(e&&(k=k.replace(cd,l)),b.data===k&&(j+=(/\?/.test(j)?"&":"?")+b.jsonp+"="+h))),b.url=j,b.data=k,a[h]=function(a){g=[a]},d.always(function(){a[h]=i,g&&f.isFunction(i)&&a[h](g[0])}),b.converters["script json"]=function(){g||f.error(h+" was not called");return g[0]},b.dataTypes[0]="json";return"script"}}),f.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){f.globalEval(a);return a}}}),f.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),f.ajaxTransport("script",function(a){if(a.crossDomain){var d,e=c.head||c.getElementsByTagName("head")[0]||c.documentElement;return{send:function(f,g){d=c.createElement("script"),d.async="async",a.scriptCharset&&(d.charset=a.scriptCharset),d.src=a.url,d.onload=d.onreadystatechange=function(a,c){if(c||!d.readyState||/loaded|complete/.test(d.readyState))d.onload=d.onreadystatechange=null,e&&d.parentNode&&e.removeChild(d),d=b,c||g(200,"success")},e.insertBefore(d,e.firstChild)},abort:function(){d&&d.onload(0,1)}}}});var ce=a.ActiveXObject?function(){for(var a in cg)cg[a](0,1)}:!1,cf=0,cg;f.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&ch()||ci()}:ch,function(a){f.extend(f.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(f.ajaxSettings.xhr()),f.support.ajax&&f.ajaxTransport(function(c){if(!c.crossDomain||f.support.cors){var d;return{send:function(e,g){var h=c.xhr(),i,j;c.username?h.open(c.type,c.url,c.async,c.username,c.password):h.open(c.type,c.url,c.async);if(c.xhrFields)for(j in c.xhrFields)h[j]=c.xhrFields[j];c.mimeType&&h.overrideMimeType&&h.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(j in e)h.setRequestHeader(j,e[j])}catch(k){}h.send(c.hasContent&&c.data||null),d=function(a,e){var j,k,l,m,n;try{if(d&&(e||h.readyState===4)){d=b,i&&(h.onreadystatechange=f.noop,ce&&delete cg[i]);if(e)h.readyState!==4&&h.abort();else{j=h.status,l=h.getAllResponseHeaders(),m={},n=h.responseXML,n&&n.documentElement&&(m.xml=n);try{m.text=h.responseText}catch(a){}try{k=h.statusText}catch(o){k=""}!j&&c.isLocal&&!c.crossDomain?j=m.text?200:404:j===1223&&(j=204)}}}catch(p){e||g(-1,p)}m&&g(j,k,m,l)},!c.async||h.readyState===4?d():(i=++cf,ce&&(cg||(cg={},f(a).unload(ce)),cg[i]=d),h.onreadystatechange=d)},abort:function(){d&&d(0,1)}}}});var cj={},ck,cl,cm=/^(?:toggle|show|hide)$/,cn=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,co,cp=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]],cq;f.fn.extend({show:function(a,b,c){var d,e;if(a||a===0)return this.animate(ct("show",3),a,b,c);for(var g=0,h=this.length;g=i.duration+this.startTime){this.now=this.end,this.pos=this.state=1,this.update(),i.animatedProperties[this.prop]=!0;for(b in i.animatedProperties)i.animatedProperties[b]!==!0&&(g=!1);if(g){i.overflow!=null&&!f.support.shrinkWrapBlocks&&f.each(["","X","Y"],function(a,b){h.style["overflow"+b]=i.overflow[a]}),i.hide&&f(h).hide();if(i.hide||i.show)for(b in i.animatedProperties)f.style(h,b,i.orig[b]),f.removeData(h,"fxshow"+b,!0),f.removeData(h,"toggle"+b,!0);d=i.complete,d&&(i.complete=!1,d.call(h))}return!1}i.duration==Infinity?this.now=e:(c=e-this.startTime,this.state=c/i.duration,this.pos=f.easing[i.animatedProperties[this.prop]](this.state,c,0,1,i.duration),this.now=this.start+(this.end-this.start)*this.pos),this.update();return!0}},f.extend(f.fx,{tick:function(){var a,b=f.timers,c=0;for(;c-1,k={},l={},m,n;j?(l=e.position(),m=l.top,n=l.left):(m=parseFloat(h)||0,n=parseFloat(i)||0),f.isFunction(b)&&(b=b.call(a,c,g)),b.top!=null&&(k.top=b.top-g.top+m),b.left!=null&&(k.left=b.left-g.left+n),"using"in b?b.using.call(a,k):e.css(k)}},f.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),c=this.offset(),d=cx.test(b[0].nodeName)?{top:0,left:0}:b.offset();c.top-=parseFloat(f.css(a,"marginTop"))||0,c.left-=parseFloat(f.css(a,"marginLeft"))||0,d.top+=parseFloat(f.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(f.css(b[0],"borderLeftWidth"))||0;return{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||c.body;while(a&&!cx.test(a.nodeName)&&f.css(a,"position")==="static")a=a.offsetParent;return a})}}),f.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(a,c){var d=/Y/.test(c);f.fn[a]=function(e){return f.access(this,function(a,e,g){var h=cy(a);if(g===b)return h?c in h?h[c]:f.support.boxModel&&h.document.documentElement[e]||h.document.body[e]:a[e];h?h.scrollTo(d?f(h).scrollLeft():g,d?g:f(h).scrollTop()):a[e]=g},a,e,arguments.length,null)}}),f.each({Height:"height",Width:"width"},function(a,c){var d="client"+a,e="scroll"+a,g="offset"+a;f.fn["inner"+a]=function(){var a=this[0];return a?a.style?parseFloat(f.css(a,c,"padding")):this[c]():null},f.fn["outer"+a]=function(a){var b=this[0];return b?b.style?parseFloat(f.css(b,c,a?"margin":"border")):this[c]():null},f.fn[c]=function(a){return f.access(this,function(a,c,h){var i,j,k,l;if(f.isWindow(a)){i=a.document,j=i.documentElement[d];return f.support.boxModel&&j||i.body&&i.body[d]||j}if(a.nodeType===9){i=a.documentElement;if(i[d]>=i[e])return i[d];return Math.max(a.body[e],i[e],a.body[g],i[g])}if(h===b){k=f.css(a,c),l=parseFloat(k);return f.isNumeric(l)?l:k}f(a).css(c,h)},c,a,arguments.length,null)}}),a.jQuery=a.$=f,typeof define=="function"&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return f})})(window);]]>
    DateFri, 24 Feb 2023 14:01:48 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Accept-Rangesbytes
    ETagW/"94850-1358437290000"
    Last-ModifiedThu, 17 Jan 2013 15:41:30 GMT
    Cache-Controlmax-age=2419200
    ExpiresFri, 24 Mar 2023 14:01:48 GMT
    Content-Typeapplication/javascript;charset=UTF-8
    Content-Length94850
    Keep-Alivetimeout=5, max=99
    ConnectionKeep-Alive
    http://zero.webappsecurity.com:80/bank/account-summary.htmlhttpzero.webappsecurity.com80GET/bank/account-summaryhtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/online-banking.html
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="835758F4A1B2E12FED05E9F2630D0B7C";PSID="0961B4C9AB7ECE8F80F1EFC03677941C";SessionType="Crawl";CrawlType="ScriptWindowInclude";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="";Format="Relative";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="f339a723";
    X-Request-Memorid="c7a829a3";sc="1";thid="25";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1302Found
    DateFri, 24 Feb 2023 14:01:54 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Cache-Controlno-cache, max-age=0, must-revalidate, no-store
    Locationhttp://zero.webappsecurity.com/login.html
    Content-Length0
    Keep-Alivetimeout=5, max=100
    ConnectionKeep-Alive
    Content-Typetext/html
    http://zero.webappsecurity.com:80/bank/pay-bills.htmlhttpzero.webappsecurity.com80GET/bank/pay-billshtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/online-banking.html
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="6F2723FE7C386DE06B46E4BC6F7523CF";PSID="0961B4C9AB7ECE8F80F1EFC03677941C";SessionType="Crawl";CrawlType="ScriptWindowInclude";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="";Format="Relative";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="9e8c36a9";
    X-Request-Memorid="d8a8d6c7";sc="1";thid="25";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1302Found
    DateFri, 24 Feb 2023 14:01:54 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Cache-Controlno-cache, max-age=0, must-revalidate, no-store
    Locationhttp://zero.webappsecurity.com/login.html
    Content-Length0
    Keep-Alivetimeout=5, max=99
    ConnectionKeep-Alive
    Content-Typetext/html
    http://zero.webappsecurity.com:80/manager/httpzero.webappsecurity.com80Vulnerability10102101Web Server Misconfiguration: Unprotected DirectoryEnvironmentWeb Server Misconfiguration: Unprotected DirectoryCWE-552: Files or Directories Accessible to External PartiesSummaryImplication +The primary danger from an attacker finding a publicly available directory on your web application server depends on what type of directory it is, and what files it contains. Administrative directories typically contain applications capable of changing the configuration of the running software; an attacker who gains access to an administrative application can drastically affect the operation of the web site.]]>ExecutionFixFor Security Operations:
    +You should evaluate the production requirements for the found directory. If the directory is not required for production operation, then the directory and its contents should be removed or restricted by a server access control mechanism. More information about implementing access control schemes can be found in the References. Automatic directory indexing should also be disabled, if applicable. + +

    For Development:
    +This problem will be resolved by the web application server administrator. In general, do not rely on 'hidden' directories within the web root that can contain sensitive resources or web applications. Assume an attacker knows about the existence of all directories and files on your web site, and protect them with proper access controls. + +

    For QA:
    +This problem will be resolved by the web application server administrator.]]>
    Reference InfoImplementing Basic Authentication in IIS
    http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/a + +bbca505-6f63-4267-aac1-1ea89d861eb4.mspx

    Implementing Basic Authentication in Apache
    http://httpd.apache.org/docs/howto/auth.html#intro]]>
    GET/manager/HTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=A9EF43AC +
    Refererhttp://zero.webappsecurity.com/resources/js/bootstrap.min.js
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Audit.Attack";SID="FA6292457839E465B06937048753C425";PSID="C2E3EA7620F4A29F11DBAC2B877DD850";SessionType="AuditAttack";CrawlType="None";AttackType="Search";OriginatingEngineID="ae34b422-6357-4aca-8fe7-7e449e14c9b7";AttackSequence="0";AttackParamDesc="";AttackParamIndex="0";AttackParamSubIndex="0";CheckId="10210";Engine="Directory+Enumeration";SmartMode="4";tht="11";
    X-RequestManager-Memostid="17";stmi="0";sc="1";rid="b246b425";
    X-Request-Memorid="2a86bd30";sc="1";thid="28";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONIDA9EF43AC
    HTTP/1.1302Found
    DateFri, 24 Feb 2023 14:02:29 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Location/manager/html
    Content-Typetext/html
    Content-Length0
    Keep-Alivetimeout=5, max=93
    ConnectionKeep-Alive
    http://zero.webappsecurity.com:80/bank/online-statements.htmlhttpzero.webappsecurity.com80GET/bank/online-statementshtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/online-banking.html
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="DBDBD518961D133D424A0981EF7DC2AB";PSID="0961B4C9AB7ECE8F80F1EFC03677941C";SessionType="Crawl";CrawlType="ScriptWindowInclude";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="";Format="Relative";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="89c327b2";
    X-Request-Memorid="44acc83a";sc="1";thid="25";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1302Found
    DateFri, 24 Feb 2023 14:01:54 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Cache-Controlno-cache, max-age=0, must-revalidate, no-store
    Locationhttp://zero.webappsecurity.com/login.html
    Content-Length0
    Keep-Alivetimeout=5, max=98
    ConnectionKeep-Alive
    Content-Typetext/html
    http://zero.webappsecurity.com:80/manager/httpzero.webappsecurity.com80GET/manager/HTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0 +
    Refererhttp://zero.webappsecurity.com/resources/js/bootstrap.min.js
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0
    HTTP/1.1302Found
    DateFri, 24 Feb 2023 14:01:49 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Location/manager/html
    Content-Typetext/html
    Content-Length0
    Keep-Alivetimeout=5, max=57
    ConnectionKeep-Alive
    http://zero.webappsecurity.com:80/admin/httpzero.webappsecurity.com80Vulnerability10028116031HTML5: Cross-Site Scripting ProtectionEncapsulationCWE-554: ASP.NET Misconfiguration: Not Using Input Validation FrameworkHTML5: Cross-Site Scripting ProtectionCWE-1173: Improper Use of Validation FrameworkSummary
    +This header can be set to one of three possible values: 0, 1, or 1; mode=block . A value of 0 disables the protection. A value of 1 is the default behaviour in modern browsers that enables the protection in filter or replacement mode. For example, IE replaces JavaScript keywords such as <script> with <scr#pt> to render injected string ineffective. The value of 1; mode=block instructs browsers to block the response from rendering in the browser. Reports of multiple exploits that leverage false positives from default behaviour that filters or replaces JavaScript injection string within the response r eturned from server. Therefore, the current recommendation is to set the header in block mode.]]>
    ImplicationExecution1.

    +By default, WebInspect flags only one instance of this vulnerability per host because it is typical to set this header at the host level in a server configuration.

    +Perform the following steps to flag all instances of this issue:
    • Create a new policy with the selection of checks that you want to include in a rescan. We recommend using the Blank or Passive policy as a base.

    • Select this check and unselect the check input, “FlagAtHost”,from standard description window.

    • Save the policy.

    • Rescan with this new custom policy.

    ]]>
    Fix tag to set X-XSS-Protection with the value ‘1; mode=block’]]>Reference InfoFortify Taxonomy: Software Security Errors
    OWASP Secure Headers Project
    CWE ID 554
    Chromium Bugs]]>
    Vulnerability10102101Web Server Misconfiguration: Unprotected DirectoryEnvironmentWeb Server Misconfiguration: Unprotected DirectoryCWE-552: Files or Directories Accessible to External PartiesSummaryImplication +The primary danger from an attacker finding a publicly available directory on your web application server depends on what type of directory it is, and what files it contains. Administrative directories typically contain applications capable of changing the configuration of the running software; an attacker who gains access to an administrative application can drastically affect the operation of the web site.]]>ExecutionFixFor Security Operations:
    +You should evaluate the production requirements for the found directory. If the directory is not required for production operation, then the directory and its contents should be removed or restricted by a server access control mechanism. More information about implementing access control schemes can be found in the References. Automatic directory indexing should also be disabled, if applicable. + +

    For Development:
    +This problem will be resolved by the web application server administrator. In general, do not rely on 'hidden' directories within the web root that can contain sensitive resources or web applications. Assume an attacker knows about the existence of all directories and files on your web site, and protect them with proper access controls. + +

    For QA:
    +This problem will be resolved by the web application server administrator.]]>
    Reference InfoImplementing Basic Authentication in IIS
    http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/a + +bbca505-6f63-4267-aac1-1ea89d861eb4.mspx

    Implementing Basic Authentication in Apache
    http://httpd.apache.org/docs/howto/auth.html#intro]]>
    Best Practices1154655970Privacy Violation: AutocompleteCWE-525: Information Exposure Through Browser CachingSecurity FeaturesPrivacy Violation: AutocompleteSummaryImplicationExecutionFixReference InfoMicrosoft:
    Autocomplete Security]]>
    + + + + Zero - Admin - Home + + + + + + + + + + + + + + + +
    + + + + +
    +
    + +
    +
    +

    Admin Home

    +
    +
    + +
    +
    + +
    + +
    +
    +
    +
    + +
    +
    + +
    +
    +
    +
    +
    +
      +
    • Download WebInspect
    • +
    +
    + +
    +
      +
    • Terms of Use
    • +
    +
    + +
    +
      +
    • Contact Micro Focus
    • +
    • Privacy Statement
    • + +
    +
    +
    + +
    +
    + The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating + the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting + Web application vulnerabilities. This site is not a real banking site and any similarities to third party products + and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, + either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. + Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at + https://www.microfocus.com/about/legal/#privacy + and Micro Focus Fortify’s Online Privacy Statement found at + https://www.microfocus.com/about/legal/#privacy. + +

    + + Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. +
    +
    +
    +
    +
    + + + + +]]>
    GET/admin/HTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0 +
    Refererhttp://zero.webappsecurity.com/resources/js/bootstrap.min.js
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Audit.Attack";SID="34A0263BDAF1097FE98AABBF96C88CB2";PSID="C2E3EA7620F4A29F11DBAC2B877DD850";SessionType="AuditAttack";CrawlType="None";AttackType="Search";OriginatingEngineID="ae34b422-6357-4aca-8fe7-7e449e14c9b7";AttackSequence="0";AttackParamDesc="";AttackParamIndex="0";AttackParamSubIndex="0";CheckId="10210";Engine="Directory+Enumeration";SmartMode="4";tht="11";
    X-RequestManager-Memostid="15";stmi="0";sc="1";rid="9969c433";
    X-Request-Memorid="ee7b7c1b";sc="1";thid="27";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0
    HTTP/1.1200OK + + + + Zero - Admin - Home + + + + + + + + + + + + + + + +
    + + + + +
    +
    + +
    +
    +

    Admin Home

    +
    +
    + +
    +
    + +
    + +
    +
    +
    +
    + +
    +
    + +
    +
    +
    +
    +
    +
      +
    • Download WebInspect
    • +
    +
    + +
    +
      +
    • Terms of Use
    • +
    +
    + +
    +
      +
    • Contact Micro Focus
    • +
    • Privacy Statement
    • + +
    +
    +
    + +
    +
    + The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating + the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting + Web application vulnerabilities. This site is not a real banking site and any similarities to third party products + and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, + either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. + Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at + https://www.microfocus.com/about/legal/#privacy + and Micro Focus Fortify’s Online Privacy Statement found at + https://www.microfocus.com/about/legal/#privacy. + +

    + + Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. +
    +
    +
    +
    +
    + + + + +]]>
    DateFri, 24 Feb 2023 14:02:30 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Cache-Controlno-cache, max-age=0, must-revalidate, no-store
    Content-Typetext/html;charset=UTF-8
    Content-Languageen-US
    Keep-Alivetimeout=5, max=90
    ConnectionKeep-Alive
    Content-Length6617
    /search.htmlsearchTermtextsearch-query
    http://zero.webappsecurity.com:80/manager/htmlhttpzero.webappsecurity.com80GET/manager/htmlHTTP/1.1
    Refererhttp://zero.webappsecurity.com/manager/
    http://zero.webappsecurity.com:80/backup/httpzero.webappsecurity.com80Vulnerability10102111Web Server Misconfiguration: Unprotected DirectoryEnvironmentWeb Server Misconfiguration: Unprotected DirectoryCWE-552: Files or Directories Accessible to External PartiesSummaryImplication +The primary danger from an attacker finding a publicly available directory on your web application server depends on what type of directory it is, and what files it contains.]]>ExecutionFixFor Security Operations:
    +You should evaluate the production requirements for the found directory. If the directory is not required for production operation, then the directory and its contents should be removed or restricted by a server access control mechanism. More information about implementing access control schemes can be found in the References. Automatic directory indexing should also be disabled, if applicable. + +

    For Development:
    +This problem will be resolved by the web application server administrator. In general, do not rely on 'hidden' directories within the web root that can contain sensitive resources or web applications. Assume an attacker knows about the existence of all directories and files on your web site, and protect them with proper access controls. + +

    For QA:
    +This problem will be resolved by the web application server administrator.]]>
    Reference InfoImplementing Basic Authentication in IIS
    http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/a + +bbca505-6f63-4267-aac1-1ea89d861eb4.mspx

    Implementing Basic Authentication in Apache
    http://httpd.apache.org/docs/howto/auth.html#intro]]>
    Apache Tomcat/7.0.70 - Error report

    HTTP Status 403 -


    type Status report

    message

    description Access to the specified resource has been forbidden.


    Apache Tomcat/7.0.70

    ]]>
    GET/backup/HTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0 +
    Refererhttp://zero.webappsecurity.com/resources/js/bootstrap.min.js
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Audit.Attack";SID="B778AC58BA8FBDC0AF6F47CFA7980E12";PSID="C2E3EA7620F4A29F11DBAC2B877DD850";SessionType="AuditAttack";CrawlType="None";AttackType="Search";OriginatingEngineID="ae34b422-6357-4aca-8fe7-7e449e14c9b7";AttackSequence="0";AttackParamDesc="";AttackParamIndex="0";AttackParamSubIndex="0";CheckId="10211";Engine="Directory+Enumeration";SmartMode="4";tht="11";
    X-RequestManager-Memostid="17";stmi="0";sc="1";rid="87707ee9";
    X-Request-Memorid="a9f9ca6e";sc="1";thid="28";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0
    HTTP/1.1403ForbiddenApache Tomcat/7.0.70 - Error report

    HTTP Status 403 -


    type Status report

    message

    description Access to the specified resource has been forbidden.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:02:30 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length961
    Keep-Alivetimeout=5, max=92
    ConnectionKeep-Alive
    X-Padavoid browser bug
    http://zero.webappsecurity.com:80/admin/index.htmlhttpzero.webappsecurity.com80Best Practices1154655970Privacy Violation: AutocompleteCWE-525: Information Exposure Through Browser CachingSecurity FeaturesPrivacy Violation: AutocompleteSummaryImplicationExecutionFixReference InfoMicrosoft:
    Autocomplete Security]]>
    + + + + Zero - Admin - Home + + + + + + + + + + + + + + + +
    + + + + +
    +
    + +
    +
    +

    Admin Home

    +
    +
    + +
    +
    + +
    + +
    +
    +
    +
    + +
    +
    + +
    +
    +
    +
    +
    +
      +
    • Download WebInspect
    • +
    +
    + +
    +
      +
    • Terms of Use
    • +
    +
    + +
    +
      +
    • Contact Micro Focus
    • +
    • Privacy Statement
    • + +
    +
    +
    + +
    +
    + The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating + the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting + Web application vulnerabilities. This site is not a real banking site and any similarities to third party products + and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, + either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. + Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at + https://www.microfocus.com/about/legal/#privacy + and Micro Focus Fortify’s Online Privacy Statement found at + https://www.microfocus.com/about/legal/#privacy. + +

    + + Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. +
    +
    +
    +
    +
    + + + + +]]>
    GET/admin/indexhtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/admin/
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="0CF01A02A1917FDBDF9FF1C597F1495C";PSID="34A0263BDAF1097FE98AABBF96C88CB2";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="Relative";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="f0df732f";
    X-Request-Memorid="6a50c266";sc="1";thid="25";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1200OK + + + + Zero - Admin - Home + + + + + + + + + + + + + + + +
    + + + + +
    +
    + +
    +
    +

    Admin Home

    +
    +
    + +
    +
    + +
    + +
    +
    +
    +
    + +
    +
    + +
    +
    +
    +
    +
    +
      +
    • Download WebInspect
    • +
    +
    + +
    +
      +
    • Terms of Use
    • +
    +
    + +
    +
      +
    • Contact Micro Focus
    • +
    • Privacy Statement
    • + +
    +
    +
    + +
    +
    + The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating + the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting + Web application vulnerabilities. This site is not a real banking site and any similarities to third party products + and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, + either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. + Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at + https://www.microfocus.com/about/legal/#privacy + and Micro Focus Fortify’s Online Privacy Statement found at + https://www.microfocus.com/about/legal/#privacy. + +

    + + Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. +
    +
    +
    +
    +
    + + + + +]]>
    DateFri, 24 Feb 2023 14:01:55 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Cache-Controlno-cache, max-age=0, must-revalidate, no-store
    Content-Typetext/html;charset=UTF-8
    Content-Languageen-US
    Keep-Alivetimeout=5, max=97
    ConnectionKeep-Alive
    Content-Length6617
    /search.htmlsearchTermtextsearch-query
    http://zero.webappsecurity.com:80/admin/users.htmlhttpzero.webappsecurity.com80VulnerabilityCUSTOM108344Privacy Violation: Social Security NumberCWE-359: Privacy ViolationSecurity FeaturesPrivacy Violation: Social Security NumberSummary]]>ImplicationSocial Security Numbers are a highly sought out prize for attackers, and an item to which a large percentage of time would be dedicated in an effort to find. At a minimum, this can lead to theft of the victim's identity.
    ]]>
    ExecutionFix
    • When sensitive data needs to be available on your web application, mask part of the data so this information is not fully disclosed.

      +Here are a few examples: +

      Social Security Numbers:
      +***-**-1234
      +123-**-**** +

    • +If presence of social security number is being reported in a JWT, please note that unless encrypted JWT tokens do not provide privacy protection. Please do include private information in JWT unless it is securely encrypted.
    ]]>
    Reference Info
    Best Practices1154655970Privacy Violation: AutocompleteCWE-525: Information Exposure Through Browser CachingSecurity FeaturesPrivacy Violation: AutocompleteSummaryImplicationExecutionFixReference InfoMicrosoft:
    Autocomplete Security]]>
    + + + + Zero - Admin - Users + + + + + + + + + + + + + + + +
    + + + + +
    +
    + +
    +
    +

    Users

    +
    +
    + +
    +
    + +
    + +
    +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    NamePasswordSSN
    + Leeroy Jenkins + + VIZ10AWT8VL + + 536-48-3769 +
    + Stephen Bowen + + OTZ07BXM0BE + + 607-58-7435 +
    + Linus Moran + + FKO04SXA7TI + + 247-54-1719 +
    + Nero Chan + + TXJ77CQO5EI + + 578-13-3713 +
    + Kadeem Higgins + + MFC50OQE7VO + + 449-20-3206 +
    + Quinn Burks + + HWZ97ZUM3NK + + 008-70-6738 +
    + Davis Thompson + + RGD78SHB0TG + + 574-56-1932 +
    + Lester Keller + + EIJ79NLT0TP + + 330-58-4012 +
    + + + + + + + +
    + + +
    +
    +
    +
    +
    +
      +
    • Download WebInspect
    • +
    +
    + +
    +
      +
    • Terms of Use
    • +
    +
    + +
    +
      +
    • Contact Micro Focus
    • +
    • Privacy Statement
    • + +
    +
    +
    + +
    +
    + The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating + the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting + Web application vulnerabilities. This site is not a real banking site and any similarities to third party products + and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, + either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. + Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at + https://www.microfocus.com/about/legal/#privacy + and Micro Focus Fortify’s Online Privacy Statement found at + https://www.microfocus.com/about/legal/#privacy. + +

    + + Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. +
    +
    +
    +
    +
    + + + + +]]>
    GET/admin/usershtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/admin/
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="810BCB46E8C09C737ECDC561083681F4";PSID="34A0263BDAF1097FE98AABBF96C88CB2";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="Relative";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="2c3b90f8";
    X-Request-Memorid="21c4776b";sc="1";thid="25";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1200OK + + + + Zero - Admin - Users + + + + + + + + + + + + + + + +
    + + + + +
    +
    + +
    +
    +

    Users

    +
    +
    + +
    +
    + +
    + +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    NamePasswordSSN
    + Leeroy Jenkins + + VIZ10AWT8VL + + 536-48-3769 +
    + Stephen Bowen + + OTZ07BXM0BE + + 607-58-7435 +
    + Linus Moran + + FKO04SXA7TI + + 247-54-1719 +
    + Nero Chan + + TXJ77CQO5EI + + 578-13-3713 +
    + Kadeem Higgins + + MFC50OQE7VO + + 449-20-3206 +
    + Quinn Burks + + HWZ97ZUM3NK + + 008-70-6738 +
    + Davis Thompson + + RGD78SHB0TG + + 574-56-1932 +
    + Lester Keller + + EIJ79NLT0TP + + 330-58-4012 +
    +
    +
    +
    +
    +
    +
    + +
    +
    + +
    +
    +
    +
    +
    +
      +
    • Download WebInspect
    • +
    +
    + +
    +
      +
    • Terms of Use
    • +
    +
    + +
    +
      +
    • Contact Micro Focus
    • +
    • Privacy Statement
    • + +
    +
    +
    + +
    +
    + The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating + the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting + Web application vulnerabilities. This site is not a real banking site and any similarities to third party products + and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, + either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. + Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at + https://www.microfocus.com/about/legal/#privacy + and Micro Focus Fortify’s Online Privacy Statement found at + https://www.microfocus.com/about/legal/#privacy. + +

    + + Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. +
    +
    +
    +
    +
    + + + + +]]>
    DateFri, 24 Feb 2023 14:01:56 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Cache-Controlno-cache, max-age=0, must-revalidate, no-store
    Content-Typetext/html;charset=UTF-8
    Content-Languageen-US
    Keep-Alivetimeout=5, max=95
    ConnectionKeep-Alive
    Content-Length10808
    /search.htmlsearchTermtextsearch-query
    http://zero.webappsecurity.com:80/cgi-bin/httpzero.webappsecurity.com80Vulnerability10102121Web Server Misconfiguration: Unprotected DirectoryEnvironmentWeb Server Misconfiguration: Unprotected DirectoryCWE-552: Files or Directories Accessible to External PartiesSummaryImplicationExecutionFixFor Security Operations:
    +You should evaluate the production requirements for the found directory. If the directory is not required for production operation, then the directory and its contents should be removed or restricted by a server access control mechanism. More information about implementing access control schemes can be found in the References. Automatic directory indexing should also be disabled, if applicable. + +

    For Development:
    +This problem will be resolved by the web application server administrator. In general, do not rely on 'hidden' directories within the web root that can contain sensitive resources or web applications. Assume an attacker knows about the existence of all directories and files on your web site, and protect them with proper access controls. + +

    For QA:
    +This problem will be resolved by the web application server administrator.]]>
    Reference InfoImplementing Basic Authentication in IIS
    http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/a + +bbca505-6f63-4267-aac1-1ea89d861eb4.mspx

    Implementing Basic Authentication in Apache
    http://httpd.apache.org/docs/howto/auth.html#intro]]>
    Apache Tomcat/7.0.70 - Error report

    HTTP Status 403 -


    type Status report

    message

    description Access to the specified resource has been forbidden.


    Apache Tomcat/7.0.70

    ]]>
    GET/cgi-bin/HTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0 +
    Refererhttp://zero.webappsecurity.com/resources/js/bootstrap.min.js
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Audit.Attack";SID="9022211B0954D86BB053476EED51C521";PSID="C2E3EA7620F4A29F11DBAC2B877DD850";SessionType="AuditAttack";CrawlType="None";AttackType="Search";OriginatingEngineID="ae34b422-6357-4aca-8fe7-7e449e14c9b7";AttackSequence="0";AttackParamDesc="";AttackParamIndex="0";AttackParamSubIndex="0";CheckId="10212";Engine="Directory+Enumeration";SmartMode="4";tht="11";
    X-RequestManager-Memostid="15";stmi="0";sc="1";rid="e32af630";
    X-Request-Memorid="6101a75b";sc="1";thid="27";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0
    HTTP/1.1403ForbiddenApache Tomcat/7.0.70 - Error report

    HTTP Status 403 -


    type Status report

    message

    description Access to the specified resource has been forbidden.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:02:31 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length961
    Keep-Alivetimeout=5, max=85
    ConnectionKeep-Alive
    X-Padavoid browser bug
    http://zero.webappsecurity.com:80/admin/currencies.htmlhttpzero.webappsecurity.com80Best Practices1154655970Privacy Violation: AutocompleteCWE-525: Information Exposure Through Browser CachingSecurity FeaturesPrivacy Violation: AutocompleteSummaryImplicationExecutionFixReference InfoMicrosoft:
    Autocomplete Security]]>
    + + + + Zero - Admin - Currencies + + + + + + + + + + + + + + + +
    + + + + +
    +
    + +
    +
    +

    Currencies

    +
    +
    + +
    +
    + +
    + +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    IDCountryName
    AUDAustraliadollar
    CADCanadadollar
    CHFSwitzerlandfranc
    CNYChinayuan
    DKKDenmarkkrone
    EUREurozoneeuro
    GBPGreat Britainpound
    HKDHong Kongdollar
    JPYJapanyen
    MXNMexicopeso
    NOKNorwaykrone
    NZDNew Zealanddollar
    SEKSwedenkrona
    SGDSingaporedollar
    THBThailandbaht
    +
    +
    + +
    +
    +
    +
    + +
    +
    + +
    +
    +
    +
    +
    +
      +
    • Download WebInspect
    • +
    +
    + +
    +
      +
    • Terms of Use
    • +
    +
    + +
    +
      +
    • Contact Micro Focus
    • +
    • Privacy Statement
    • + +
    +
    +
    + +
    +
    + The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating + the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting + Web application vulnerabilities. This site is not a real banking site and any similarities to third party products + and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, + either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. + Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at + https://www.microfocus.com/about/legal/#privacy + and Micro Focus Fortify’s Online Privacy Statement found at + https://www.microfocus.com/about/legal/#privacy. + +

    + + Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. +
    +
    +
    +
    +
    + + + + +]]>
    GET/admin/currencieshtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/admin/
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="0CE5ABD84AD968C95357799ACE262859";PSID="34A0263BDAF1097FE98AABBF96C88CB2";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="Relative";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="7cfbe8f3";
    X-Request-Memorid="951479e9";sc="2";thid="24";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1200OK + + + + Zero - Admin - Currencies + + + + + + + + + + + + + + + +
    + + + + +
    +
    + +
    +
    +

    Currencies

    +
    +
    + +
    +
    + +
    + +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    IDCountryName
    AUDAustraliadollar
    CADCanadadollar
    CHFSwitzerlandfranc
    CNYChinayuan
    DKKDenmarkkrone
    EUREurozoneeuro
    GBPGreat Britainpound
    HKDHong Kongdollar
    JPYJapanyen
    MXNMexicopeso
    NOKNorwaykrone
    NZDNew Zealanddollar
    SEKSwedenkrona
    SGDSingaporedollar
    THBThailandbaht
    +
    +
    + +
    +
    +
    +
    + +
    +
    + +
    +
    +
    +
    +
    +
      +
    • Download WebInspect
    • +
    +
    + +
    +
      +
    • Terms of Use
    • +
    +
    + +
    +
      +
    • Contact Micro Focus
    • +
    • Privacy Statement
    • + +
    +
    +
    + +
    +
    + The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating + the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting + Web application vulnerabilities. This site is not a real banking site and any similarities to third party products + and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, + either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. + Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at + https://www.microfocus.com/about/legal/#privacy + and Micro Focus Fortify’s Online Privacy Statement found at + https://www.microfocus.com/about/legal/#privacy. + +

    + + Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. +
    +
    +
    +
    +
    + + + + +]]>
    DateFri, 24 Feb 2023 14:01:56 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Cache-Controlno-cache, max-age=0, must-revalidate, no-store
    Content-Typetext/html;charset=UTF-8
    Content-Languageen-US
    Keep-Alivetimeout=5, max=100
    ConnectionKeep-Alive
    Content-Length10584
    /search.htmlsearchTermtextsearch-query
    http://zero.webappsecurity.com:80/faq.htmlhttpzero.webappsecurity.com80 + + + + Zero - FAQ - Frequently Asked Questions + + + + + + + + + + + + + + + +
    + + +
    +
    + +
    +
    +
    + +
    + + + +
    +
    +
    1
    +
    +
    +

    How can I edit my profile?

    +
    +
    +
    +
    +

    +

      +
    1. From any page, click your user name which appears at the top right corner of the site.
    2. +
    3. From the dropdown menu that displays, click My Profile.
    4. +
    5. Edit your profile.
    6. +
    +

    +
    +
    + +
    +
    +
    2
    +
    +
    +

    How can I review my transaction history?

    +
    +
    +
    +
    +

    +

      +
    1. Click Account Activity.
    2. +
    3. Click the Show Transactions tab to view your most recent transactions.
    4. +
    5. Click the Find Transactions tab to show transactions by a date range.
    6. +
    +

    +
    +
    +
    +
    + + + + +
    +
    + +
    +
    + +
    +
    +
    +
    +
    +
      +
    • Download WebInspect
    • +
    +
    + +
    +
      +
    • Terms of Use
    • +
    +
    + +
    +
      +
    • Contact Micro Focus
    • +
    • Privacy Statement
    • + +
    +
    +
    + +
    +
    + The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating + the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting + Web application vulnerabilities. This site is not a real banking site and any similarities to third party products + and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, + either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. + Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at + https://www.microfocus.com/about/legal/#privacy + and Micro Focus Fortify’s Online Privacy Statement found at + https://www.microfocus.com/about/legal/#privacy. + +

    + + Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. +
    +
    +
    +
    +
    + + + + +]]>
    GET/faqhtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/search.html?searchTerm=
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="4CAE3BF452C6150F60166D67DC3B7477";PSID="DB032FFFCF5DEA9F74F4C783FBF606D7";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="Relative";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="31c0d73f";
    X-Request-Memorid="5f5141aa";sc="1";thid="25";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1200OK + + + + Zero - FAQ - Frequently Asked Questions + + + + + + + + + + + + + + + +
    + + +
    +
    + +
    +
    +
    + +
    + + + +
    +
    +
    1
    +
    +
    +

    How can I edit my profile?

    +
    +
    +
    +
    +

    +

      +
    1. From any page, click your user name which appears at the top right corner of the site.
    2. +
    3. From the dropdown menu that displays, click My Profile.
    4. +
    5. Edit your profile.
    6. +
    +

    +
    +
    + +
    +
    +
    2
    +
    +
    +

    How can I review my transaction history?

    +
    +
    +
    +
    +

    +

      +
    1. Click Account Activity.
    2. +
    3. Click the Show Transactions tab to view your most recent transactions.
    4. +
    5. Click the Find Transactions tab to show transactions by a date range.
    6. +
    +

    +
    +
    +
    +
    + + + + +
    +
    + +
    +
    + +
    +
    +
    +
    +
    +
      +
    • Download WebInspect
    • +
    +
    + +
    +
      +
    • Terms of Use
    • +
    +
    + +
    +
      +
    • Contact Micro Focus
    • +
    • Privacy Statement
    • + +
    +
    +
    + +
    +
    + The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating + the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting + Web application vulnerabilities. This site is not a real banking site and any similarities to third party products + and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, + either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. + Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at + https://www.microfocus.com/about/legal/#privacy + and Micro Focus Fortify’s Online Privacy Statement found at + https://www.microfocus.com/about/legal/#privacy. + +

    + + Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. +
    +
    +
    +
    +
    + + + + +]]>
    DateFri, 24 Feb 2023 14:01:58 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Cache-Controlno-cache, max-age=0, must-revalidate, no-store
    Content-Typetext/html;charset=UTF-8
    Content-Languageen-US
    Keep-Alivetimeout=5, max=94
    ConnectionKeep-Alive
    Content-Length7794
    http://zero.webappsecurity.com:80/help.htmlhttpzero.webappsecurity.com80 + + + + Zero - Help + + + + + + + + + + + + + + + +
    + + +
    +
    + +
    +
    +
    + +
    + +
    + +
    +

    How do I log into my account?

    + +
      +
    1. From the top of the home page, click the Signin button.
    2. +
    3. Then login using your username and password.
    4. +
    +
    +
    +
    +
    +
    +
    + +
    +
    + +
    +
    +
    +
    +
    +
      +
    • Download WebInspect
    • +
    +
    + +
    +
      +
    • Terms of Use
    • +
    +
    + +
    +
      +
    • Contact Micro Focus
    • +
    • Privacy Statement
    • + +
    +
    +
    + +
    +
    + The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating + the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting + Web application vulnerabilities. This site is not a real banking site and any similarities to third party products + and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, + either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. + Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at + https://www.microfocus.com/about/legal/#privacy + and Micro Focus Fortify’s Online Privacy Statement found at + https://www.microfocus.com/about/legal/#privacy. + +

    + + Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. +
    +
    +
    +
    +
    + + + + +]]>
    GET/helphtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/search.html?searchTerm=
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="F748FC285B59794DBA86EDC6EE6DD62F";PSID="DB032FFFCF5DEA9F74F4C783FBF606D7";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="Relative";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="6fbad671";
    X-Request-Memorid="a5b5f4d4";sc="1";thid="24";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1200OK + + + + Zero - Help + + + + + + + + + + + + + + + +
    + + +
    +
    + +
    +
    +
    + +
    + +
    + +
    +

    How do I log into my account?

    + +
      +
    1. From the top of the home page, click the Signin button.
    2. +
    3. Then login using your username and password.
    4. +
    +
    +
    +
    +
    +
    +
    + +
    +
    + +
    +
    +
    +
    +
    +
      +
    • Download WebInspect
    • +
    +
    + +
    +
      +
    • Terms of Use
    • +
    +
    + +
    +
      +
    • Contact Micro Focus
    • +
    • Privacy Statement
    • + +
    +
    +
    + +
    +
    + The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating + the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting + Web application vulnerabilities. This site is not a real banking site and any similarities to third party products + and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, + either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. + Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at + https://www.microfocus.com/about/legal/#privacy + and Micro Focus Fortify’s Online Privacy Statement found at + https://www.microfocus.com/about/legal/#privacy. + +

    + + Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. +
    +
    +
    +
    +
    + + + + +]]>
    DateFri, 24 Feb 2023 14:01:58 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Cache-Controlno-cache, max-age=0, must-revalidate, no-store
    Content-Typetext/html;charset=UTF-8
    Content-Languageen-US
    Keep-Alivetimeout=5, max=99
    ConnectionKeep-Alive
    Content-Length6225
    http://zero.webappsecurity.com:80/htbin/httpzero.webappsecurity.com80Vulnerability10102121Web Server Misconfiguration: Unprotected DirectoryEnvironmentWeb Server Misconfiguration: Unprotected DirectoryCWE-552: Files or Directories Accessible to External PartiesSummaryImplicationExecutionFixFor Security Operations:
    +You should evaluate the production requirements for the found directory. If the directory is not required for production operation, then the directory and its contents should be removed or restricted by a server access control mechanism. More information about implementing access control schemes can be found in the References. Automatic directory indexing should also be disabled, if applicable. + +

    For Development:
    +This problem will be resolved by the web application server administrator. In general, do not rely on 'hidden' directories within the web root that can contain sensitive resources or web applications. Assume an attacker knows about the existence of all directories and files on your web site, and protect them with proper access controls. + +

    For QA:
    +This problem will be resolved by the web application server administrator.]]>
    Reference InfoImplementing Basic Authentication in IIS
    http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/a + +bbca505-6f63-4267-aac1-1ea89d861eb4.mspx

    Implementing Basic Authentication in Apache
    http://httpd.apache.org/docs/howto/auth.html#intro]]>
    Apache Tomcat/7.0.70 - Error report

    HTTP Status 403 -


    type Status report

    message

    description Access to the specified resource has been forbidden.


    Apache Tomcat/7.0.70

    ]]>
    GET/htbin/HTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0 +
    Refererhttp://zero.webappsecurity.com/resources/js/bootstrap.min.js
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Audit.Attack";SID="1323F88C4BC93247184F67ACD7643184";PSID="C2E3EA7620F4A29F11DBAC2B877DD850";SessionType="AuditAttack";CrawlType="None";AttackType="Search";OriginatingEngineID="ae34b422-6357-4aca-8fe7-7e449e14c9b7";AttackSequence="0";AttackParamDesc="";AttackParamIndex="0";AttackParamSubIndex="0";CheckId="10212";Engine="Directory+Enumeration";SmartMode="4";tht="11";
    X-RequestManager-Memostid="17";stmi="0";sc="1";rid="8903eb68";
    X-Request-Memorid="39560009";sc="1";thid="28";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0
    HTTP/1.1403ForbiddenApache Tomcat/7.0.70 - Error report

    HTTP Status 403 -


    type Status report

    message

    description Access to the specified resource has been forbidden.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:02:31 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length961
    Keep-Alivetimeout=5, max=68
    ConnectionKeep-Alive
    X-Padavoid browser bug
    http://zero.webappsecurity.com:80/scripts/httpzero.webappsecurity.com80Vulnerability10102121Web Server Misconfiguration: Unprotected DirectoryEnvironmentWeb Server Misconfiguration: Unprotected DirectoryCWE-552: Files or Directories Accessible to External PartiesSummaryImplicationExecutionFixFor Security Operations:
    +You should evaluate the production requirements for the found directory. If the directory is not required for production operation, then the directory and its contents should be removed or restricted by a server access control mechanism. More information about implementing access control schemes can be found in the References. Automatic directory indexing should also be disabled, if applicable. + +

    For Development:
    +This problem will be resolved by the web application server administrator. In general, do not rely on 'hidden' directories within the web root that can contain sensitive resources or web applications. Assume an attacker knows about the existence of all directories and files on your web site, and protect them with proper access controls. + +

    For QA:
    +This problem will be resolved by the web application server administrator.]]>
    Reference InfoImplementing Basic Authentication in IIS
    http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/a + +bbca505-6f63-4267-aac1-1ea89d861eb4.mspx

    Implementing Basic Authentication in Apache
    http://httpd.apache.org/docs/howto/auth.html#intro]]>
    Apache Tomcat/7.0.70 - Error report

    HTTP Status 403 -


    type Status report

    message

    description Access to the specified resource has been forbidden.


    Apache Tomcat/7.0.70

    ]]>
    GET/scripts/HTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0 +
    Refererhttp://zero.webappsecurity.com/resources/js/bootstrap.min.js
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Audit.Attack";SID="33854513922D307E0FCE829804E7ADBD";PSID="C2E3EA7620F4A29F11DBAC2B877DD850";SessionType="AuditAttack";CrawlType="None";AttackType="Search";OriginatingEngineID="ae34b422-6357-4aca-8fe7-7e449e14c9b7";AttackSequence="0";AttackParamDesc="";AttackParamIndex="0";AttackParamSubIndex="0";CheckId="10212";Engine="Directory+Enumeration";SmartMode="4";tht="11";
    X-RequestManager-Memostid="17";stmi="0";sc="1";rid="f2348ac8";
    X-Request-Memorid="9a29ca48";sc="1";thid="28";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0
    HTTP/1.1403ForbiddenApache Tomcat/7.0.70 - Error report

    HTTP Status 403 -


    type Status report

    message

    description Access to the specified resource has been forbidden.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:02:32 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length961
    Keep-Alivetimeout=5, max=62
    ConnectionKeep-Alive
    X-Padavoid browser bug
    http://zero.webappsecurity.com:80/errors/httpzero.webappsecurity.com80Vulnerability100267462Web Server Misconfiguration: Directory ListingCWE-548: Information Leak Through Directory ListingEnvironmentWeb Server Misconfiguration: Directory ListingSummaryImplicationRisks associated with an attacker discovering a Directory Listing on your application server depend upon what type of directory is discovered, and what types of files are contained within it. The primary threat from an accessible Directory Listing is that hidden files such as data files, source code, or applications under development will then be visible to a potential attacker. In addition to accessing files containing sensitive information, other risks include an attacker utilizing the information discovered in that directory to perform other types of attacks.]]>Execution~FullURL~]]>FixFor Development:

    + +Unless you are actively involved with implementing the web application server, there is not a wide range of available solutions to prevent problems that can occur from an attacker finding a Directory Listing. Primarily, this problem will be resolved by the web application server administrator. However, there are certain actions you can take that will help to secure your web application. + +

    • Restrict access to important files or directories only to those who actually need it.
    • Ensure that files containing sensitive information are not left publicly accessible, or that comments left inside files do not reveal the locations of directories best left confidential.
    For Security Operations:

    + +One of the most important aspects of web application security is to restrict access to important files or directories only to those individuals who actually need to access them. Ensure that the private architectural structure of your web application is not exposed to anyone who wishes to view it as even seemingly innocuous directories can provide important information to a potential attacker. + +

    + +The following recommendations can help to ensure that you are not unintentionally allowing access to either information that could be utilized in conducting an attack or propriety data stored in publicly accessible directories. + +

    • Turn off the Automatic Directory Listing feature in whatever application server package that you utilize.
    • Restrict access to important files or directories only to those who actually need it.
    • Ensure that files containing sensitive information are not left publicly accessible.
    • Don't follow standard naming procedures for hidden directories. For example, don't create a hidden directory called "cgi" that contains cgi scripts. Obvious directory names are just that...readily guessed by an attacker.
    + + +Remember, the harder you make it for an attacker to access information about your web application, the more likely it is that he will simply find an easier target. + +

    For QA:

    + +For reasons of security, it is important to test the web application not only from the perspective of a normal user, but also from that of a malicious one. Whenever possible, adopt the mindset of an attacker when testing your web application for security defects. Access your web application from outside your firewall or IDS. Utilize Google or another search engine to ensure that searches for vulnerable files do not return information from regarding your web application. For example, an attacker will utilize a search engine, and search for directory listings such as the following: "index of / cgi-bin". Make sure that your directory structure is not obvious, and that only files that are necessary are capable of being accessed.]]>
    Reference InfoApache:
    Security Tips for Server Configuration
    Protecting Confidential Documents at Your Site
    Securing Apache - Access Control

    IIS:
    Implementing NTFS Standard Permissions on Your Web Site

    Netscape:
    Controlling Access to Your Server

    General:
    Password-protecting web pages
    Web Security]]>
    Vulnerability10102141Web Server Misconfiguration: Unprotected DirectoryEnvironmentWeb Server Misconfiguration: Unprotected DirectoryCWE-552: Files or Directories Accessible to External PartiesSummaryImplicationExecutionFixFor Security Operations:
    +You should evaluate the production requirements for the found directory. If the directory is not required for production operation, then the directory and its contents should be removed or restricted by a server access control mechanism. More information about implementing access control schemes can be found in the References. Automatic directory indexing should also be disabled, if applicable. + +

    For Development:
    +This problem will be resolved by the web application server administrator. In general, do not rely on 'hidden' directories within the web root that can contain sensitive resources or web applications. Assume an attacker knows about the existence of all directories and files on your web site, and protect them with proper access controls. + +

    For QA:
    +This problem will be resolved by the web application server administrator.]]>
    Reference InfoImplementing Basic Authentication in IIS
    http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/a + +bbca505-6f63-4267-aac1-1ea89d861eb4.mspx

    Implementing Basic Authentication in Apache
    http://httpd.apache.org/docs/howto/auth.html#intro]]>
    + +Directory Listing For /errors/ + +

    Directory Listing For /errors/ - Up To /


    + + + + + + + + + +
    FilenameSizeLast Modified
       +errors.log21.1 kbSun, 19 May 2013 02:05:02 GMT
    +

    Apache Tomcat/7.0.70

    + +]]>
    GET/errors/HTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0 +
    Refererhttp://zero.webappsecurity.com/resources/js/bootstrap.min.js
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Audit.Attack";SID="A5B558851726B7ABEA68BDD94B7C3FFC";PSID="C2E3EA7620F4A29F11DBAC2B877DD850";SessionType="AuditAttack";CrawlType="None";AttackType="Search";OriginatingEngineID="ae34b422-6357-4aca-8fe7-7e449e14c9b7";AttackSequence="0";AttackParamDesc="";AttackParamIndex="0";AttackParamSubIndex="0";CheckId="10214";Engine="Directory+Enumeration";SmartMode="4";tht="11";
    X-RequestManager-Memostid="15";stmi="0";sc="1";rid="51b7a1af";
    X-Request-Memorid="e4b8639f";sc="1";thid="27";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0
    HTTP/1.1200OK + +Directory Listing For /errors/ + +

    Directory Listing For /errors/ - Up To /


    + + + + + + + + + +
    FilenameSizeLast Modified
       +errors.log21.1 kbSun, 19 May 2013 02:05:02 GMT
    +

    Apache Tomcat/7.0.70

    + +]]>
    DateFri, 24 Feb 2023 14:02:33 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Content-Typetext/html;charset=UTF-8
    Content-Length1384
    Keep-Alivetimeout=5, max=53
    ConnectionKeep-Alive
    http://zero.webappsecurity.com:80/errors/errors.loghttpzero.webappsecurity.com80VulnerabilityCUSTOM35081System Information Leak: Internal IPEncapsulationSystem Information Leak: Internal IPCWE-212: Improper Cross-boundary Removal of Sensitive DataSummary10.x.x.x
    172.16.x.x through 172.31.x.x
    192.168.x.x
    fd00::x
    If not a part of techical documentation, recommendations include removing the string from the production server.]]>
    ImplicationExecutionFix +This issue can appear for several reasons. The most common is that the application or webserver error message discloses the IP address. This can be solved by determining where to turn off detailed error messages in the application or webserver. Another common reason is due to a comment located in the source of the webpage. This can easily be removed from the source of the page.]]>Reference Info
    GET/errors/errorslogHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/errors/
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="C32128A8498A56E4E6435B6994687E3A";PSID="A5B558851726B7ABEA68BDD94B7C3FFC";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="Relative";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="aa52f10f";
    X-Request-Memorid="cc0bba75";sc="1";thid="25";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1200OK
    DateFri, 24 Feb 2023 14:02:00 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Accept-Rangesbytes
    ETagW/"21684-1368929102000"
    Last-ModifiedSun, 19 May 2013 02:05:02 GMT
    Content-Typetext/plain;charset=UTF-8
    Content-Length21684
    Keep-Alivetimeout=5, max=93
    ConnectionKeep-Alive
    http://zero.webappsecurity.com:80/include/httpzero.webappsecurity.com80Vulnerability10102141Web Server Misconfiguration: Unprotected DirectoryEnvironmentWeb Server Misconfiguration: Unprotected DirectoryCWE-552: Files or Directories Accessible to External PartiesSummaryImplicationExecutionFixFor Security Operations:
    +You should evaluate the production requirements for the found directory. If the directory is not required for production operation, then the directory and its contents should be removed or restricted by a server access control mechanism. More information about implementing access control schemes can be found in the References. Automatic directory indexing should also be disabled, if applicable. + +

    For Development:
    +This problem will be resolved by the web application server administrator. In general, do not rely on 'hidden' directories within the web root that can contain sensitive resources or web applications. Assume an attacker knows about the existence of all directories and files on your web site, and protect them with proper access controls. + +

    For QA:
    +This problem will be resolved by the web application server administrator.]]>
    Reference InfoImplementing Basic Authentication in IIS
    http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/a + +bbca505-6f63-4267-aac1-1ea89d861eb4.mspx

    Implementing Basic Authentication in Apache
    http://httpd.apache.org/docs/howto/auth.html#intro]]>
    Apache Tomcat/7.0.70 - Error report

    HTTP Status 403 -


    type Status report

    message

    description Access to the specified resource has been forbidden.


    Apache Tomcat/7.0.70

    ]]>
    GET/include/HTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0 +
    Refererhttp://zero.webappsecurity.com/resources/js/bootstrap.min.js
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Audit.Attack";SID="21A7FC29C31A2750DA2159C014F50A10";PSID="C2E3EA7620F4A29F11DBAC2B877DD850";SessionType="AuditAttack";CrawlType="None";AttackType="Search";OriginatingEngineID="ae34b422-6357-4aca-8fe7-7e449e14c9b7";AttackSequence="0";AttackParamDesc="";AttackParamIndex="0";AttackParamSubIndex="0";CheckId="10214";Engine="Directory+Enumeration";SmartMode="4";tht="11";
    X-RequestManager-Memostid="17";stmi="0";sc="1";rid="4ea8bf85";
    X-Request-Memorid="2c669cfb";sc="1";thid="28";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0
    HTTP/1.1403ForbiddenApache Tomcat/7.0.70 - Error report

    HTTP Status 403 -


    type Status report

    message

    description Access to the specified resource has been forbidden.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:02:33 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length961
    Keep-Alivetimeout=5, max=48
    ConnectionKeep-Alive
    X-Padavoid browser bug
    http://zero.webappsecurity.com:80/forgot-password.htmlhttpzero.webappsecurity.com80Vulnerability11542105953Often Misused: LoginAPI AbuseOften Misused: LoginCWE-311: Missing Encryption of Sensitive DataSummaryImplicationAn attacker who exploited this design vulnerability would be able to utilize the information to escalate their method of attack, possibly leading to impersonation of a legitimate user, the theft of proprietary data, or execution of actions not intended by the application developers.]]>ExecutionFixEnsure that sensitive areas of your web application have proper encryption protocols in place to prevent login information and other data that could be helpful to an attacker from being intercepted.]]>Reference InfoAdvisory:http://www.kb.cert.org/vuls/id/466433
    ]]>
    Vulnerability1154247223Insecure TransportCWE-319: Cleartext Transmission of Sensitive InformationSecurity FeaturesInsecure TransportSummaryImplicationAn attacker who exploited this design vulnerability would be able to utilize the information to escalate their method of attack, possibly leading to impersonation of a legitimate user, the theft of proprietary data, or execution of actions not intended by the application developers.]]>ExecutionFixFor Security Operations:
    Ensure that sensitive areas of your web application have proper encryption protocols in place to prevent login information and other data that could be helpful to an attacker from being intercepted. +

    For Development:
    Ensure that sensitive areas of your web application have proper encryption protocols in place to prevent login information and other data that could be helpful to an attacker from being intercepted. +

    For QA:
    Test the application not only from the perspective of a normal user, but also from the perspective of a malicious one.]]>
    Reference Info
    + + + + Zero - Forgotten Password + + + + + + + + + + + + + + + +
    + + +
    +
    + +
    +
    + + +

    + So you forgot your password? Give us your email address and we will email it to you. +

    + +
    + +
    +
    +
    + +
    + +
    +
    +
    + +
    + +
    +
    +
    +
    +
    +
    + +
    +
    + +
    +
    +
    +
    +
    +
      +
    • Download WebInspect
    • +
    +
    + +
    +
      +
    • Terms of Use
    • +
    +
    + +
    +
      +
    • Contact Micro Focus
    • +
    • Privacy Statement
    • + +
    +
    +
    + +
    +
    + The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating + the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting + Web application vulnerabilities. This site is not a real banking site and any similarities to third party products + and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, + either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. + Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at + https://www.microfocus.com/about/legal/#privacy + and Micro Focus Fortify’s Online Privacy Statement found at + https://www.microfocus.com/about/legal/#privacy. + +

    + + Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. +
    +
    +
    +
    +
    + + + + +]]>
    GET/forgot-passwordhtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/login.html
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="35CF74765A8B6CFE70D16739EA0E6BFF";PSID="37A656705626B4D1D64F6BFA191C2A08";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="Relative";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="2d7b4f75";
    X-Request-Memorid="c3f6d990";sc="1";thid="24";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1200OK + + + + Zero - Forgotten Password + + + + + + + + + + + + + + + +
    + + +
    +
    + +
    +
    + + +

    + So you forgot your password? Give us your email address and we will email it to you. +

    + +
    + +
    +
    +
    + +
    + +
    +
    +
    + +
    + +
    +
    +
    +
    +
    +
    + +
    +
    + +
    +
    +
    +
    +
    +
      +
    • Download WebInspect
    • +
    +
    + +
    +
      +
    • Terms of Use
    • +
    +
    + +
    +
      +
    • Contact Micro Focus
    • +
    • Privacy Statement
    • + +
    +
    +
    + +
    +
    + The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating + the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting + Web application vulnerabilities. This site is not a real banking site and any similarities to third party products + and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, + either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. + Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at + https://www.microfocus.com/about/legal/#privacy + and Micro Focus Fortify’s Online Privacy Statement found at + https://www.microfocus.com/about/legal/#privacy. + +

    + + Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. +
    +
    +
    +
    +
    + + + + +]]>
    DateFri, 24 Feb 2023 14:02:00 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Cache-Controlno-cache, max-age=0, must-revalidate, no-store
    Content-Typetext/html;charset=UTF-8
    Content-Languageen-US
    Keep-Alivetimeout=5, max=98
    ConnectionKeep-Alive
    Content-Length6261
    /forgotten-password-send.htmlpostemailtextsubmitSend Passwordsubmitbtn btn-primary
    http://zero.webappsecurity.com:80/admin/currencies-add.htmlhttpzero.webappsecurity.com80Best Practices1154655970Privacy Violation: AutocompleteCWE-525: Information Exposure Through Browser CachingSecurity FeaturesPrivacy Violation: AutocompleteSummaryImplicationExecutionFixReference InfoMicrosoft:
    Autocomplete Security]]>
    + + + + Zero - Admin - Currencies + + + + + + + + + + + + + + + +
    + + + + +
    +
    + +
    +
    +

    Add Currency

    +
    +
    + +
    +
    + +
    + +
    +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    + + +
    + +
    +
    + +
    + + +
    + +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    +
    + +
    +
    +
    +
    +
    +
      +
    • Download WebInspect
    • +
    +
    + +
    +
      +
    • Terms of Use
    • +
    +
    + +
    +
      +
    • Contact Micro Focus
    • +
    • Privacy Statement
    • + +
    +
    +
    + +
    +
    + The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating + the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting + Web application vulnerabilities. This site is not a real banking site and any similarities to third party products + and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, + either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. + Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at + https://www.microfocus.com/about/legal/#privacy + and Micro Focus Fortify’s Online Privacy Statement found at + https://www.microfocus.com/about/legal/#privacy. + +

    + + Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. +
    +
    +
    +
    +
    + + + + +]]>
    GET/admin/currencies-addhtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/admin/currencies.html
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="1196B0700885BAA2AD346331C45F4326";PSID="0CE5ABD84AD968C95357799ACE262859";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="Relative";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="dbff149d";
    X-Request-Memorid="757d93f5";sc="1";thid="25";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1200OK + + + + Zero - Admin - Currencies + + + + + + + + + + + + + + + +
    + + + + +
    +
    + +
    +
    +

    Add Currency

    +
    +
    + +
    +
    + +
    + +
    +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    + + +
    + +
    +
    + +
    + + +
    + +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    +
    + +
    +
    +
    +
    +
    +
      +
    • Download WebInspect
    • +
    +
    + +
    +
      +
    • Terms of Use
    • +
    +
    + +
    +
      +
    • Contact Micro Focus
    • +
    • Privacy Statement
    • + +
    +
    +
    + +
    +
    + The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating + the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting + Web application vulnerabilities. This site is not a real banking site and any similarities to third party products + and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, + either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. + Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at + https://www.microfocus.com/about/legal/#privacy + and Micro Focus Fortify’s Online Privacy Statement found at + https://www.microfocus.com/about/legal/#privacy. + +

    + + Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. +
    +
    +
    +
    +
    + + + + +]]>
    DateFri, 24 Feb 2023 14:02:00 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Cache-Controlno-cache, max-age=0, must-revalidate, no-store
    Content-Typetext/html;charset=UTF-8
    Content-Languageen-US
    Keep-Alivetimeout=5, max=91
    ConnectionKeep-Alive
    Content-Length8576
    /search.htmlsearchTermtextsearch-query
    /admin/currencies-add.htmlpostidtextspan1countrytextspan3nametextspan3buttonelementbtn btn-primary
    http://zero.webappsecurity.com:80/faq.html?question=1httpzero.webappsecurity.com80 + + + + Zero - FAQ - Frequently Asked Questions + + + + + + + + + + + + + + + +
    + + +
    +
    + +
    +
    +
    + +
    + + + +
    +
    +
    1
    +
    +
    +

    How can I edit my profile?

    +
    +
    +
    +
    +

    +

      +
    1. From any page, click your user name which appears at the top right corner of the site.
    2. +
    3. From the dropdown menu that displays, click My Profile.
    4. +
    5. Edit your profile.
    6. +
    +

    +
    +
    + +
    +
    +
    2
    +
    +
    +

    How can I review my transaction history?

    +
    +
    +
    +
    +

    +

      +
    1. Click Account Activity.
    2. +
    3. Click the Show Transactions tab to view your most recent transactions.
    4. +
    5. Click the Find Transactions tab to show transactions by a date range.
    6. +
    +

    +
    +
    +
    +
    + + + + +
    +
    + +
    +
    + +
    +
    +
    +
    +
    +
      +
    • Download WebInspect
    • +
    +
    + +
    +
      +
    • Terms of Use
    • +
    +
    + +
    +
      +
    • Contact Micro Focus
    • +
    • Privacy Statement
    • + +
    +
    +
    + +
    +
    + The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating + the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting + Web application vulnerabilities. This site is not a real banking site and any similarities to third party products + and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, + either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. + Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at + https://www.microfocus.com/about/legal/#privacy + and Micro Focus Fortify’s Online Privacy Statement found at + https://www.microfocus.com/about/legal/#privacy. + +

    + + Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. +
    +
    +
    +
    +
    + + + + +]]>
    GET/faqhtmlHTTP/1.1question=1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +question1
    Refererhttp://zero.webappsecurity.com/faq.html
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="BA7F9A211020B77EBF4F706FEDC87676";PSID="4CAE3BF452C6150F60166D67DC3B7477";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="Relative";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="f9ca5043";
    X-Request-Memorid="fa25dfb5";sc="1";thid="24";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1200OK + + + + Zero - FAQ - Frequently Asked Questions + + + + + + + + + + + + + + + +
    + + +
    +
    + +
    +
    +
    + +
    + + + +
    +
    +
    1
    +
    +
    +

    How can I edit my profile?

    +
    +
    +
    +
    +

    +

      +
    1. From any page, click your user name which appears at the top right corner of the site.
    2. +
    3. From the dropdown menu that displays, click My Profile.
    4. +
    5. Edit your profile.
    6. +
    +

    +
    +
    + +
    +
    +
    2
    +
    +
    +

    How can I review my transaction history?

    +
    +
    +
    +
    +

    +

      +
    1. Click Account Activity.
    2. +
    3. Click the Show Transactions tab to view your most recent transactions.
    4. +
    5. Click the Find Transactions tab to show transactions by a date range.
    6. +
    +

    +
    +
    +
    +
    + + + + +
    +
    + +
    +
    + +
    +
    +
    +
    +
    +
      +
    • Download WebInspect
    • +
    +
    + +
    +
      +
    • Terms of Use
    • +
    +
    + +
    +
      +
    • Contact Micro Focus
    • +
    • Privacy Statement
    • + +
    +
    +
    + +
    +
    + The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating + the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting + Web application vulnerabilities. This site is not a real banking site and any similarities to third party products + and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, + either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. + Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at + https://www.microfocus.com/about/legal/#privacy + and Micro Focus Fortify’s Online Privacy Statement found at + https://www.microfocus.com/about/legal/#privacy. + +

    + + Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. +
    +
    +
    +
    +
    + + + + +]]>
    DateFri, 24 Feb 2023 14:02:01 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Cache-Controlno-cache, max-age=0, must-revalidate, no-store
    Content-Typetext/html;charset=UTF-8
    Content-Languageen-US
    Keep-Alivetimeout=5, max=97
    ConnectionKeep-Alive
    Content-Length7794
    http://zero.webappsecurity.com:80/help.html?topic=/help/topic1.htmlhttpzero.webappsecurity.com80 + + + + Zero - Help + + + + + + + + + + + + + + + +
    + + +
    +
    + +
    +
    +
    + +
    + +
    + +
    +

    How do I log into my account?

    + +
      +
    1. From the top of the home page, click the Signin button.
    2. +
    3. Then login using your username and password.
    4. +
    +
    +
    +
    +
    +
    +
    + +
    +
    + +
    +
    +
    +
    +
    +
      +
    • Download WebInspect
    • +
    +
    + +
    +
      +
    • Terms of Use
    • +
    +
    + +
    +
      +
    • Contact Micro Focus
    • +
    • Privacy Statement
    • + +
    +
    +
    + +
    +
    + The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating + the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting + Web application vulnerabilities. This site is not a real banking site and any similarities to third party products + and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, + either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. + Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at + https://www.microfocus.com/about/legal/#privacy + and Micro Focus Fortify’s Online Privacy Statement found at + https://www.microfocus.com/about/legal/#privacy. + +

    + + Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. +
    +
    +
    +
    +
    + + + + +]]>
    GET/helphtmlHTTP/1.1topic=/help/topic1.htmlCookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +topic/help/topic1.html
    Refererhttp://zero.webappsecurity.com/help.html
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="1CAC743626D86577D2B520A57E5A2DEB";PSID="F748FC285B59794DBA86EDC6EE6DD62F";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="Relative";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="643f5601";
    X-Request-Memorid="71c5fdca";sc="2";thid="26";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1200OK + + + + Zero - Help + + + + + + + + + + + + + + + +
    + + +
    +
    + +
    +
    +
    + +
    + +
    + +
    +

    How do I log into my account?

    + +
      +
    1. From the top of the home page, click the Signin button.
    2. +
    3. Then login using your username and password.
    4. +
    +
    +
    +
    +
    +
    +
    + +
    +
    + +
    +
    +
    +
    +
    +
      +
    • Download WebInspect
    • +
    +
    + +
    +
      +
    • Terms of Use
    • +
    +
    + +
    +
      +
    • Contact Micro Focus
    • +
    • Privacy Statement
    • + +
    +
    +
    + +
    +
    + The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating + the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting + Web application vulnerabilities. This site is not a real banking site and any similarities to third party products + and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, + either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. + Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at + https://www.microfocus.com/about/legal/#privacy + and Micro Focus Fortify’s Online Privacy Statement found at + https://www.microfocus.com/about/legal/#privacy. + +

    + + Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. +
    +
    +
    +
    +
    + + + + +]]>
    DateFri, 24 Feb 2023 14:02:01 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Cache-Controlno-cache, max-age=0, must-revalidate, no-store
    Content-Typetext/html;charset=UTF-8
    Content-Languageen-US
    Keep-Alivetimeout=5, max=100
    ConnectionKeep-Alive
    Content-Length6225
    http://zero.webappsecurity.com:80/faq.html?question=2httpzero.webappsecurity.com80 + + + + Zero - FAQ - Frequently Asked Questions + + + + + + + + + + + + + + + +
    + + +
    +
    + +
    +
    +
    + +
    + + + +
    +
    +
    1
    +
    +
    +

    How can I edit my profile?

    +
    +
    +
    +
    +

    +

      +
    1. From any page, click your user name which appears at the top right corner of the site.
    2. +
    3. From the dropdown menu that displays, click My Profile.
    4. +
    5. Edit your profile.
    6. +
    +

    +
    +
    + +
    +
    +
    2
    +
    +
    +

    How can I review my transaction history?

    +
    +
    +
    +
    +

    +

      +
    1. Click Account Activity.
    2. +
    3. Click the Show Transactions tab to view your most recent transactions.
    4. +
    5. Click the Find Transactions tab to show transactions by a date range.
    6. +
    +

    +
    +
    +
    +
    + + + + +
    +
    + +
    +
    + +
    +
    +
    +
    +
    +
      +
    • Download WebInspect
    • +
    +
    + +
    +
      +
    • Terms of Use
    • +
    +
    + +
    +
      +
    • Contact Micro Focus
    • +
    • Privacy Statement
    • + +
    +
    +
    + +
    +
    + The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating + the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting + Web application vulnerabilities. This site is not a real banking site and any similarities to third party products + and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, + either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. + Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at + https://www.microfocus.com/about/legal/#privacy + and Micro Focus Fortify’s Online Privacy Statement found at + https://www.microfocus.com/about/legal/#privacy. + +

    + + Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. +
    +
    +
    +
    +
    + + + + +]]>
    GET/faqhtmlHTTP/1.1question=2Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +question2
    Refererhttp://zero.webappsecurity.com/faq.html
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="DF88FB1BEECE3A4EC82F90F30D77694B";PSID="4CAE3BF452C6150F60166D67DC3B7477";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="Relative";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="34bf5118";
    X-Request-Memorid="7fbfcf10";sc="1";thid="25";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1200OK + + + + Zero - FAQ - Frequently Asked Questions + + + + + + + + + + + + + + + +
    + + +
    +
    + +
    +
    +
    + +
    + + + +
    +
    +
    1
    +
    +
    +

    How can I edit my profile?

    +
    +
    +
    +
    +

    +

      +
    1. From any page, click your user name which appears at the top right corner of the site.
    2. +
    3. From the dropdown menu that displays, click My Profile.
    4. +
    5. Edit your profile.
    6. +
    +

    +
    +
    + +
    +
    +
    2
    +
    +
    +

    How can I review my transaction history?

    +
    +
    +
    +
    +

    +

      +
    1. Click Account Activity.
    2. +
    3. Click the Show Transactions tab to view your most recent transactions.
    4. +
    5. Click the Find Transactions tab to show transactions by a date range.
    6. +
    +

    +
    +
    +
    +
    + + + + +
    +
    + +
    +
    + +
    +
    +
    +
    +
    +
      +
    • Download WebInspect
    • +
    +
    + +
    +
      +
    • Terms of Use
    • +
    +
    + +
    +
      +
    • Contact Micro Focus
    • +
    • Privacy Statement
    • + +
    +
    +
    + +
    +
    + The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating + the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting + Web application vulnerabilities. This site is not a real banking site and any similarities to third party products + and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, + either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. + Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at + https://www.microfocus.com/about/legal/#privacy + and Micro Focus Fortify’s Online Privacy Statement found at + https://www.microfocus.com/about/legal/#privacy. + +

    + + Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. +
    +
    +
    +
    +
    + + + + +]]>
    DateFri, 24 Feb 2023 14:02:01 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Cache-Controlno-cache, max-age=0, must-revalidate, no-store
    Content-Typetext/html;charset=UTF-8
    Content-Languageen-US
    Keep-Alivetimeout=5, max=90
    ConnectionKeep-Alive
    Content-Length7794
    http://zero.webappsecurity.com:80/help.html?topic=/help/topic2.htmlhttpzero.webappsecurity.com80 + + + + Zero - Help + + + + + + + + + + + + + + + +
    + + +
    +
    + +
    +
    +
    + +
    + +
    + +
    +

    How do I transfer funds?

    + +
      +
    1. From the bank home page, click Transfer Funds.
    2. +
    3. Select the account from which you want to transfer money.
    4. +
    5. Select the account to which you want transfer money.
    6. +
    7. Enter the amount and an optional description of the transaction.
    8. +
    9. Click Continue.
    10. +
    +
    +
    +
    +
    +
    +
    + +
    +
    + +
    +
    +
    +
    +
    +
      +
    • Download WebInspect
    • +
    +
    + +
    +
      +
    • Terms of Use
    • +
    +
    + +
    +
      +
    • Contact Micro Focus
    • +
    • Privacy Statement
    • + +
    +
    +
    + +
    +
    + The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating + the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting + Web application vulnerabilities. This site is not a real banking site and any similarities to third party products + and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, + either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. + Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at + https://www.microfocus.com/about/legal/#privacy + and Micro Focus Fortify’s Online Privacy Statement found at + https://www.microfocus.com/about/legal/#privacy. + +

    + + Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. +
    +
    +
    +
    +
    + + + + +]]>
    GET/helphtmlHTTP/1.1topic=/help/topic2.htmlCookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +topic/help/topic2.html
    Refererhttp://zero.webappsecurity.com/help.html
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="C40B25C609070F52ADA7D215EC5634E2";PSID="F748FC285B59794DBA86EDC6EE6DD62F";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="Relative";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="15e90b4f";
    X-Request-Memorid="b4f4499d";sc="1";thid="24";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1200OK + + + + Zero - Help + + + + + + + + + + + + + + + +
    + + +
    +
    + +
    +
    +
    + +
    + +
    + +
    +

    How do I transfer funds?

    + +
      +
    1. From the bank home page, click Transfer Funds.
    2. +
    3. Select the account from which you want to transfer money.
    4. +
    5. Select the account to which you want transfer money.
    6. +
    7. Enter the amount and an optional description of the transaction.
    8. +
    9. Click Continue.
    10. +
    +
    +
    +
    +
    +
    +
    + +
    +
    + +
    +
    +
    +
    +
    +
      +
    • Download WebInspect
    • +
    +
    + +
    +
      +
    • Terms of Use
    • +
    +
    + +
    +
      +
    • Contact Micro Focus
    • +
    • Privacy Statement
    • + +
    +
    +
    + +
    +
    + The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating + the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting + Web application vulnerabilities. This site is not a real banking site and any similarities to third party products + and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, + either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. + Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at + https://www.microfocus.com/about/legal/#privacy + and Micro Focus Fortify’s Online Privacy Statement found at + https://www.microfocus.com/about/legal/#privacy. + +

    + + Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. +
    +
    +
    +
    +
    + + + + +]]>
    DateFri, 24 Feb 2023 14:02:03 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Cache-Controlno-cache, max-age=0, must-revalidate, no-store
    Content-Typetext/html;charset=UTF-8
    Content-Languageen-US
    Keep-Alivetimeout=5, max=96
    ConnectionKeep-Alive
    Content-Length6400
    http://zero.webappsecurity.com:80/db/httpzero.webappsecurity.com80Vulnerability10102161Web Server Misconfiguration: Unprotected DirectoryEnvironmentWeb Server Misconfiguration: Unprotected DirectoryCWE-552: Files or Directories Accessible to External PartiesSummaryImplicationExecutionFixFor Security Operations:
    +You should evaluate the production requirements for the found directory. If the directory is not required for production operation, then the directory and its contents should be removed or restricted by a server access control mechanism. More information about implementing access control schemes can be found in the References. Automatic directory indexing should also be disabled, if applicable. + +

    For Development:
    +This problem will be resolved by the web application server administrator. In general, do not rely on 'hidden' directories within the web root that can contain sensitive resources or web applications. Assume an attacker knows about the existence of all directories and files on your web site, and protect them with proper access controls. + +

    For QA:
    +This problem will be resolved by the web application server administrator.]]>
    Reference InfoImplementing Basic Authentication in IIS
    http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/a + +bbca505-6f63-4267-aac1-1ea89d861eb4.mspx

    Implementing Basic Authentication in Apache
    http://httpd.apache.org/docs/howto/auth.html#intro]]>
    Apache Tomcat/7.0.70 - Error report

    HTTP Status 403 -


    type Status report

    message

    description Access to the specified resource has been forbidden.


    Apache Tomcat/7.0.70

    ]]>
    GET/db/HTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0 +
    Refererhttp://zero.webappsecurity.com/resources/js/bootstrap.min.js
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Audit.Attack";SID="614F6FD2A3C7CDDAB64245DD5637367D";PSID="C2E3EA7620F4A29F11DBAC2B877DD850";SessionType="AuditAttack";CrawlType="None";AttackType="Search";OriginatingEngineID="ae34b422-6357-4aca-8fe7-7e449e14c9b7";AttackSequence="0";AttackParamDesc="";AttackParamIndex="0";AttackParamSubIndex="0";CheckId="10216";Engine="Directory+Enumeration";SmartMode="4";tht="11";
    X-RequestManager-Memostid="17";stmi="0";sc="1";rid="ffbff9d0";
    X-Request-Memorid="0826164d";sc="1";thid="28";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0
    HTTP/1.1403ForbiddenApache Tomcat/7.0.70 - Error report

    HTTP Status 403 -


    type Status report

    message

    description Access to the specified resource has been forbidden.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:02:36 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length961
    Keep-Alivetimeout=5, max=7
    ConnectionKeep-Alive
    X-Padavoid browser bug
    http://zero.webappsecurity.com:80/help.html?topic=/help/topic3.htmlhttpzero.webappsecurity.com80 + + + + Zero - Help + + + + + + + + + + + + + + + +
    + + +
    +
    + +
    +
    +
    + +
    + +
    + +
    +

    How do I pay bills?

    + +
      +
    1. From the bank home page, click Pay Bills.
    2. +
    3. Select an existing payee from the first dropdown menu.
    4. +
    5. Select the account from which you want to pull funds.
    6. +
    7. Enter the amount and click the Pay button.
    8. +
    9. Add a new payee to pay the bill.
    10. +
    +
    +
    +
    +
    +
    +
    + +
    +
    + +
    +
    +
    +
    +
    +
      +
    • Download WebInspect
    • +
    +
    + +
    +
      +
    • Terms of Use
    • +
    +
    + +
    +
      +
    • Contact Micro Focus
    • +
    • Privacy Statement
    • + +
    +
    +
    + +
    +
    + The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating + the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting + Web application vulnerabilities. This site is not a real banking site and any similarities to third party products + and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, + either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. + Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at + https://www.microfocus.com/about/legal/#privacy + and Micro Focus Fortify’s Online Privacy Statement found at + https://www.microfocus.com/about/legal/#privacy. + +

    + + Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. +
    +
    +
    +
    +
    + + + + +]]>
    GET/helphtmlHTTP/1.1topic=/help/topic3.htmlCookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +topic/help/topic3.html
    Refererhttp://zero.webappsecurity.com/help.html
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="30D83AD431798BFB2FC60F60280D4E62";PSID="F748FC285B59794DBA86EDC6EE6DD62F";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="Relative";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="ebdebe46";
    X-Request-Memorid="c9b14494";sc="1";thid="25";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1200OK + + + + Zero - Help + + + + + + + + + + + + + + + +
    + + +
    +
    + +
    +
    +
    + +
    + +
    + +
    +

    How do I pay bills?

    + +
      +
    1. From the bank home page, click Pay Bills.
    2. +
    3. Select an existing payee from the first dropdown menu.
    4. +
    5. Select the account from which you want to pull funds.
    6. +
    7. Enter the amount and click the Pay button.
    8. +
    9. Add a new payee to pay the bill.
    10. +
    +
    +
    +
    +
    +
    +
    + +
    +
    + +
    +
    +
    +
    +
    +
      +
    • Download WebInspect
    • +
    +
    + +
    +
      +
    • Terms of Use
    • +
    +
    + +
    +
      +
    • Contact Micro Focus
    • +
    • Privacy Statement
    • + +
    +
    +
    + +
    +
    + The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating + the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting + Web application vulnerabilities. This site is not a real banking site and any similarities to third party products + and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, + either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. + Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at + https://www.microfocus.com/about/legal/#privacy + and Micro Focus Fortify’s Online Privacy Statement found at + https://www.microfocus.com/about/legal/#privacy. + +

    + + Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. +
    +
    +
    +
    +
    + + + + +]]>
    DateFri, 24 Feb 2023 14:02:03 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Cache-Controlno-cache, max-age=0, must-revalidate, no-store
    Content-Typetext/html;charset=UTF-8
    Content-Languageen-US
    Keep-Alivetimeout=5, max=89
    ConnectionKeep-Alive
    Content-Length6383
    http://zero.webappsecurity.com:80/help/topic1.htmlhttpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

    HTTP Status 404 -


    type Status report

    message

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    GET/help/topic1htmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/help.html
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="76C05FF2850163DF8A030C8FCA407955";PSID="F748FC285B59794DBA86EDC6EE6DD62F";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";Format="Relative";LinkKind="HyperLink";Locations="Url";Source="StaticParser";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="bef5ad01";
    X-Request-Memorid="df9675e1";sc="1";thid="26";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1404Not FoundApache Tomcat/7.0.70 - Error report

    HTTP Status 404 -


    type Status report

    message

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:02:03 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Cache-Controlno-cache, max-age=0, must-revalidate, no-store
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length949
    Keep-Alivetimeout=5, max=99
    ConnectionKeep-Alive
    http://zero.webappsecurity.com:80/help/topic2.htmlhttpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

    HTTP Status 404 -


    type Status report

    message

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    GET/help/topic2htmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/help.html
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="4A37D1425DEC8479045AEA68D05A0151";PSID="F748FC285B59794DBA86EDC6EE6DD62F";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";Format="Relative";LinkKind="HyperLink";Locations="Url";Source="StaticParser";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="eee62afb";
    X-Request-Memorid="10cffff9";sc="1";thid="26";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1404Not FoundApache Tomcat/7.0.70 - Error report

    HTTP Status 404 -


    type Status report

    message

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:02:03 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Cache-Controlno-cache, max-age=0, must-revalidate, no-store
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length949
    Keep-Alivetimeout=5, max=98
    ConnectionKeep-Alive
    http://zero.webappsecurity.com:80/help/topic3.htmlhttpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

    HTTP Status 404 -


    type Status report

    message

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    GET/help/topic3htmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/help.html
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="74261380C63EF9725705B45CF66DBCBE";PSID="F748FC285B59794DBA86EDC6EE6DD62F";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";Format="Relative";LinkKind="HyperLink";Locations="Url";Source="StaticParser";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="4071de18";
    X-Request-Memorid="d550321d";sc="1";thid="26";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1404Not FoundApache Tomcat/7.0.70 - Error report

    HTTP Status 404 -


    type Status report

    message

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:02:04 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Cache-Controlno-cache, max-age=0, must-revalidate, no-store
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length949
    Keep-Alivetimeout=5, max=97
    ConnectionKeep-Alive
    http://zero.webappsecurity.com:80/resources/js/jquery-1.6.4.min.jshttpzero.webappsecurity.com80").appendTo(b),e=d.css("display");d.remove();if(e==="none"||e===""){ch||(ch=c.createElement("iframe"),ch.frameBorder=ch.width=ch.height=0),b.appendChild(ch);if(!ci||!ch.createElement)ci=(ch.contentWindow||ch.contentDocument).document,ci.write((c.compatMode==="CSS1Compat"?"":"")+""),ci.close();d=ci.createElement(a),ci.body.appendChild(d),e=f.css(d,"display"),b.removeChild(ch)}cg[a]=e}return cg[a]}function cq(a,b){var c={};f.each(cm.concat.apply([],cm.slice(0,b)),function(){c[this]=a});return c}function cp(){cn=b}function co(){setTimeout(cp,0);return cn=f.now()}function cf(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function ce(){try{return new a.XMLHttpRequest}catch(b){}}function b$(a,c){a.dataFilter&&(c=a.dataFilter(c,a.dataType));var d=a.dataTypes,e={},g,h,i=d.length,j,k=d[0],l,m,n,o,p;for(g=1;g0){c!=="border"&&f.each(e,function(){c||(d-=parseFloat(f.css(a,"padding"+this))||0),c==="margin"?d+=parseFloat(f.css(a,c+this))||0:d-=parseFloat(f.css(a,"border"+this+"Width"))||0});return d+"px"}d=bv(a,b,b);if(d<0||d==null)d=a.style[b]||0;d=parseFloat(d)||0,c&&f.each(e,function(){d+=parseFloat(f.css(a,"padding"+this))||0,c!=="padding"&&(d+=parseFloat(f.css(a,"border"+this+"Width"))||0),c==="margin"&&(d+=parseFloat(f.css(a,c+this))||0)});return d+"px"}function bl(a,b){b.src?f.ajax({url:b.src,async:!1,dataType:"script"}):f.globalEval((b.text||b.textContent||b.innerHTML||"").replace(bd,"/*$0*/")),b.parentNode&&b.parentNode.removeChild(b)}function bk(a){f.nodeName(a,"input")?bj(a):"getElementsByTagName"in a&&f.grep(a.getElementsByTagName("input"),bj)}function bj(a){if(a.type==="checkbox"||a.type==="radio")a.defaultChecked=a.checked}function bi(a){return"getElementsByTagName"in a?a.getElementsByTagName("*"):"querySelectorAll"in a?a.querySelectorAll("*"):[]}function bh(a,b){var c;if(b.nodeType===1){b.clearAttributes&&b.clearAttributes(),b.mergeAttributes&&b.mergeAttributes(a),c=b.nodeName.toLowerCase();if(c==="object")b.outerHTML=a.outerHTML;else if(c!=="input"||a.type!=="checkbox"&&a.type!=="radio"){if(c==="option")b.selected=a.defaultSelected;else if(c==="input"||c==="textarea")b.defaultValue=a.defaultValue}else a.checked&&(b.defaultChecked=b.checked=a.checked),b.value!==a.value&&(b.value=a.value);b.removeAttribute(f.expando)}}function bg(a,b){if(b.nodeType===1&&!!f.hasData(a)){var c=f.expando,d=f.data(a),e=f.data(b,d);if(d=d[c]){var g=d.events;e=e[c]=f.extend({},d);if(g){delete e.handle,e.events={};for(var h in g)for(var i=0,j=g[h].length;i=0===c})}function U(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function M(a,b){return(a&&a!=="*"?a+".":"")+b.replace(y,"`").replace(z,"&")}function L(a){var b,c,d,e,g,h,i,j,k,l,m,n,o,p=[],q=[],r=f._data(this,"events");if(!(a.liveFired===this||!r||!r.live||a.target.disabled||a.button&&a.type==="click")){a.namespace&&(n=new RegExp("(^|\\.)"+a.namespace.split(".").join("\\.(?:.*\\.)?")+"(\\.|$)")),a.liveFired=this;var s=r.live.slice(0);for(i=0;ic)break;a.currentTarget=e.elem,a.data=e.handleObj.data,a.handleObj=e.handleObj,o=e.handleObj.origHandler.apply(e.elem,arguments);if(o===!1||a.isPropagationStopped()){c=e.level,o===!1&&(b=!1);if(a.isImmediatePropagationStopped())break}}return b}}function J(a,c,d){var e=f.extend({},d[0]);e.type=a,e.originalEvent={},e.liveFired=b,f.event.handle.call(c,e),e.isDefaultPrevented()&&d[0].preventDefault()}function D(){return!0}function C(){return!1}function m(a,c,d){var e=c+"defer",g=c+"queue",h=c+"mark",i=f.data(a,e,b,!0);i&&(d==="queue"||!f.data(a,g,b,!0))&&(d==="mark"||!f.data(a,h,b,!0))&&setTimeout(function(){!f.data(a,g,b,!0)&&!f.data(a,h,b,!0)&&(f.removeData(a,e,!0),i.resolve())},0)}function l(a){for(var b in a)if(b!=="toJSON")return!1;return!0}function k(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(j,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:f.isNaN(d)?i.test(d)?f.parseJSON(d):d:parseFloat(d)}catch(g){}f.data(a,c,d)}else d=b}return d}var c=a.document,d=a.navigator,e=a.location,f=function(){function K(){if(!e.isReady){try{c.documentElement.doScroll("left")}catch(a){setTimeout(K,1);return}e.ready()}}var e=function(a,b){return new e.fn.init(a,b,h)},f=a.jQuery,g=a.$,h,i=/^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,j=/\S/,k=/^\s+/,l=/\s+$/,m=/\d/,n=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,o=/^[\],:{}\s]*$/,p=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,q=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,r=/(?:^|:|,)(?:\s*\[)+/g,s=/(webkit)[ \/]([\w.]+)/,t=/(opera)(?:.*version)?[ \/]([\w.]+)/,u=/(msie) ([\w.]+)/,v=/(mozilla)(?:.*? rv:([\w.]+))?/,w=/-([a-z]|[0-9])/ig,x=/^-ms-/,y=function(a,b){return(b+"").toUpperCase()},z=d.userAgent,A,B,C,D=Object.prototype.toString,E=Object.prototype.hasOwnProperty,F=Array.prototype.push,G=Array.prototype.slice,H=String.prototype.trim,I=Array.prototype.indexOf,J={};e.fn=e.prototype={constructor:e,init:function(a,d,f){var g,h,j,k;if(!a)return this;if(a.nodeType){this.context=this[0]=a,this.length=1;return this}if(a==="body"&&!d&&c.body){this.context=c,this[0]=c.body,this.selector=a,this.length=1;return this}if(typeof a=="string"){a.charAt(0)!=="<"||a.charAt(a.length-1)!==">"||a.length<3?g=i.exec(a):g=[null,a,null];if(g&&(g[1]||!d)){if(g[1]){d=d instanceof e?d[0]:d,k=d?d.ownerDocument||d:c,j=n.exec(a),j?e.isPlainObject(d)?(a=[c.createElement(j[1])],e.fn.attr.call(a,d,!0)):a=[k.createElement(j[1])]:(j=e.buildFragment([g[1]],[k]),a=(j.cacheable?e.clone(j.fragment):j.fragment).childNodes);return e.merge(this,a)}h=c.getElementById(g[2]);if(h&&h.parentNode){if(h.id!==g[2])return f.find(a);this.length=1,this[0]=h}this.context=c,this.selector=a;return this}return!d||d.jquery?(d||f).find(a):this.constructor(d).find(a)}if(e.isFunction(a))return f.ready(a);a.selector!==b&&(this.selector=a.selector,this.context=a.context);return e.makeArray(a,this)},selector:"",jquery:"1.6.4",length:0,size:function(){return this.length},toArray:function(){return G.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=this.constructor();e.isArray(a)?F.apply(d,a):e.merge(d,a),d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")");return d},each:function(a,b){return e.each(this,a,b)},ready:function(a){e.bindReady(),B.done(a);return this},eq:function(a){return a===-1?this.slice(a):this.slice(a,+a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(G.apply(this,arguments),"slice",G.call(arguments).join(","))},map:function(a){return this.pushStack(e.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:F,sort:[].sort,splice:[].splice},e.fn.init.prototype=e.fn,e.extend=e.fn.extend=function(){var a,c,d,f,g,h,i=arguments[0]||{},j=1,k=arguments.length,l=!1;typeof i=="boolean"&&(l=i,i=arguments[1]||{},j=2),typeof i!="object"&&!e.isFunction(i)&&(i={}),k===j&&(i=this,--j);for(;j0)return;B.resolveWith(c,[e]),e.fn.trigger&&e(c).trigger("ready").unbind("ready")}},bindReady:function(){if(!B){B=e._Deferred();if(c.readyState==="complete")return setTimeout(e.ready,1);if(c.addEventListener)c.addEventListener("DOMContentLoaded",C,!1),a.addEventListener("load",e.ready,!1);else if(c.attachEvent){c.attachEvent("onreadystatechange",C),a.attachEvent("onload",e.ready);var b=!1;try{b=a.frameElement==null}catch(d){}c.documentElement.doScroll&&b&&K()}}},isFunction:function(a){return e.type(a)==="function"},isArray:Array.isArray||function(a){return e.type(a)==="array"},isWindow:function(a){return a&&typeof a=="object"&&"setInterval"in a},isNaN:function(a){return a==null||!m.test(a)||isNaN(a)},type:function(a){return a==null?String(a):J[D.call(a)]||"object"},isPlainObject:function(a){if(!a||e.type(a)!=="object"||a.nodeType||e.isWindow(a))return!1;try{if(a.constructor&&!E.call(a,"constructor")&&!E.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||E.call(a,d)},isEmptyObject:function(a){for(var b in a)return!1;return!0},error:function(a){throw a},parseJSON:function(b){if(typeof b!="string"||!b)return null;b=e.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(o.test(b.replace(p,"@").replace(q,"]").replace(r,"")))return(new Function("return "+b))();e.error("Invalid JSON: "+b)},parseXML:function(c){var d,f;try{a.DOMParser?(f=new DOMParser,d=f.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(g){d=b}(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&e.error("Invalid XML: "+c);return d},noop:function(){},globalEval:function(b){b&&j.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(x,"ms-").replace(w,y)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,c,d){var f,g=0,h=a.length,i=h===b||e.isFunction(a);if(d){if(i){for(f in a)if(c.apply(a[f],d)===!1)break}else for(;g0&&a[0]&&a[j-1]||j===0||e.isArray(a));if(k)for(;i1?h.call(arguments,0):c,--e||g.resolveWith(g,h.call(b,0))}}var b=arguments,c=0,d=b.length,e=d,g=d<=1&&a&&f.isFunction(a.promise)?a:f.Deferred();if(d>1){for(;c
    a",d=a.getElementsByTagName("*"),e=a.getElementsByTagName("a")[0];if(!d||!d.length||!e)return{};g=c.createElement("select"),h=g.appendChild(c.createElement("option")),i=a.getElementsByTagName("input")[0],k={leadingWhitespace:a.firstChild.nodeType===3,tbody:!a.getElementsByTagName("tbody").length,htmlSerialize:!!a.getElementsByTagName("link").length,style:/top/.test(e.getAttribute("style")),hrefNormalized:e.getAttribute("href")==="/a",opacity:/^0.55$/.test(e.style.opacity),cssFloat:!!e.style.cssFloat,checkOn:i.value==="on",optSelected:h.selected,getSetAttribute:a.className!=="t",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0},i.checked=!0,k.noCloneChecked=i.cloneNode(!0).checked,g.disabled=!0,k.optDisabled=!h.disabled;try{delete a.test}catch(v){k.deleteExpando=!1}!a.addEventListener&&a.attachEvent&&a.fireEvent&&(a.attachEvent("onclick",function(){k.noCloneEvent=!1}),a.cloneNode(!0).fireEvent("onclick")),i=c.createElement("input"),i.value="t",i.setAttribute("type","radio"),k.radioValue=i.value==="t",i.setAttribute("checked","checked"),a.appendChild(i),l=c.createDocumentFragment(),l.appendChild(a.firstChild),k.checkClone=l.cloneNode(!0).cloneNode(!0).lastChild.checked,a.innerHTML="",a.style.width=a.style.paddingLeft="1px",m=c.getElementsByTagName("body")[0],o=c.createElement(m?"div":"body"),p={visibility:"hidden",width:0,height:0,border:0,margin:0,background:"none"},m&&f.extend(p,{position:"absolute",left:"-1000px",top:"-1000px"});for(t in p)o.style[t]=p[t];o.appendChild(a),n=m||b,n.insertBefore(o,n.firstChild),k.appendChecked=i.checked,k.boxModel=a.offsetWidth===2,"zoom"in a.style&&(a.style.display="inline",a.style.zoom=1,k.inlineBlockNeedsLayout=a.offsetWidth===2,a.style.display="",a.innerHTML="
    ",k.shrinkWrapBlocks=a.offsetWidth!==2),a.innerHTML="
    t
    ",q=a.getElementsByTagName("td"),u=q[0].offsetHeight===0,q[0].style.display="",q[1].style.display="none",k.reliableHiddenOffsets=u&&q[0].offsetHeight===0,a.innerHTML="",c.defaultView&&c.defaultView.getComputedStyle&&(j=c.createElement("div"),j.style.width="0",j.style.marginRight="0",a.appendChild(j),k.reliableMarginRight=(parseInt((c.defaultView.getComputedStyle(j,null)||{marginRight:0}).marginRight,10)||0)===0),o.innerHTML="",n.removeChild(o);if(a.attachEvent)for(t in{submit:1,change:1,focusin:1})s="on"+t,u=s in a,u||(a.setAttribute(s,"return;"),u=typeof a[s]=="function"),k[t+"Bubbles"]=u;o=l=g=h=m=j=a=i=null;return k}(),f.boxModel=f.support.boxModel;var i=/^(?:\{.*\}|\[.*\])$/,j=/([A-Z])/g;f.extend({cache:{},uuid:0,expando:"jQuery"+(f.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){a=a.nodeType?f.cache[a[f.expando]]:a[f.expando];return!!a&&!l(a)},data:function(a,c,d,e){if(!!f.acceptData(a)){var g,h,i=f.expando,j=typeof c=="string",k=a.nodeType,l=k?f.cache:a,m=k?a[f.expando]:a[f.expando]&&f.expando;if((!m||e&&m&&l[m]&&!l[m][i])&&j&&d===b)return;m||(k?a[f.expando]=m=++f.uuid:m=f.expando),l[m]||(l[m]={},k||(l[m].toJSON=f.noop));if(typeof c=="object"||typeof c=="function")e?l[m][i]=f.extend(l[m][i],c):l[m]=f.extend(l[m],c);g=l[m],e&&(g[i]||(g[i]={}),g=g[i]),d!==b&&(g[f.camelCase(c)]=d);if(c==="events"&&!g[c])return g[i]&&g[i].events;j?(h=g[c],h==null&&(h=g[f.camelCase(c)])):h=g;return h}},removeData:function(a,b,c){if(!!f.acceptData(a)){var d,e=f.expando,g=a.nodeType,h=g?f.cache:a,i=g?a[f.expando]:f.expando;if(!h[i])return;if(b){d=c?h[i][e]:h[i];if(d){d[b]||(b=f.camelCase(b)),delete d[b];if(!l(d))return}}if(c){delete h[i][e];if(!l(h[i]))return}var j=h[i][e];f.support.deleteExpando||!h.setInterval?delete h[i]:h[i]=null,j?(h[i]={},g||(h[i].toJSON=f.noop),h[i][e]=j):g&&(f.support.deleteExpando?delete a[f.expando]:a.removeAttribute?a.removeAttribute(f.expando):a[f.expando]=null)}},_data:function(a,b,c){return f.data(a,b,c,!0)},acceptData:function(a){if(a.nodeName){var b=f.noData[a.nodeName.toLowerCase()];if(b)return b!==!0&&a.getAttribute("classid")===b}return!0}}),f.fn.extend({data:function(a,c){var d=null;if(typeof a=="undefined"){if(this.length){d=f.data(this[0]);if(this[0].nodeType===1){var e=this[0].attributes,g;for(var h=0,i=e.length;h-1)return!0;return!1},val:function(a){var c,d,e=this[0];if(!arguments.length){if(e){c=f.valHooks[e.nodeName.toLowerCase()]||f.valHooks[e.type];if(c&&"get"in c&&(d=c.get(e,"value"))!==b)return d;d=e.value;return typeof d=="string"?d.replace(p,""):d==null?"":d}return b}var g=f.isFunction(a);return this.each(function(d){var e=f(this),h;if(this.nodeType===1){g?h=a.call(this,d,e.val()):h=a,h==null?h="":typeof h=="number"?h+="":f.isArray(h)&&(h=f.map(h,function(a){return a==null?"":a+""})),c=f.valHooks[this.nodeName.toLowerCase()]||f.valHooks[this.type];if(!c||!("set"in c)||c.set(this,h,"value")===b)this.value=h}})}}),f.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c=a.selectedIndex,d=[],e=a.options,g=a.type==="select-one";if(c<0)return null;for(var h=g?c:0,i=g?c+1:e.length;h=0}),c.length||(a.selectedIndex=-1);return c}}},attrFn:{val:!0,css:!0,html:!0,text:!0,data:!0,width:!0,height:!0,offset:!0},attrFix:{tabindex:"tabIndex"},attr:function(a,c,d,e){var g=a.nodeType;if(!a||g===3||g===8||g===2)return b;if(e&&c in f.attrFn)return f(a)[c](d);if(!("getAttribute"in a))return f.prop(a,c,d);var h,i,j=g!==1||!f.isXMLDoc(a);j&&(c=f.attrFix[c]||c,i=f.attrHooks[c],i||(t.test(c)?i=v:u&&(i=u)));if(d!==b){if(d===null){f.removeAttr(a,c);return b}if(i&&"set"in i&&j&&(h=i.set(a,d,c))!==b)return h;a.setAttribute(c,""+d);return d}if(i&&"get"in i&&j&&(h=i.get(a,c))!==null)return h;h=a.getAttribute(c);return h===null?b:h},removeAttr:function(a,b){var c;a.nodeType===1&&(b=f.attrFix[b]||b,f.attr(a,b,""),a.removeAttribute(b),t.test(b)&&(c=f.propFix[b]||b)in a&&(a[c]=!1))},attrHooks:{type:{set:function(a,b){if(q.test(a.nodeName)&&a.parentNode)f.error("type property can't be changed");else if(!f.support.radioValue&&b==="radio"&&f.nodeName(a,"input")){var c=a.value;a.setAttribute("type",b),c&&(a.value=c);return b}}},value:{get:function(a,b){if(u&&f.nodeName(a,"button"))return u.get(a,b);return b in a?a.value:null},set:function(a,b,c){if(u&&f.nodeName(a,"button"))return u.set(a,b,c);a.value=b}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(a,c,d){var e=a.nodeType;if(!a||e===3||e===8||e===2)return b;var g,h,i=e!==1||!f.isXMLDoc(a);i&&(c=f.propFix[c]||c,h=f.propHooks[c]);return d!==b?h&&"set"in h&&(g=h.set(a,d,c))!==b?g:a[c]=d:h&&"get"in h&&(g=h.get(a,c))!==null?g:a[c]},propHooks:{tabIndex:{get:function(a){var c=a.getAttributeNode("tabindex");return c&&c.specified?parseInt(c.value,10):r.test(a.nodeName)||s.test(a.nodeName)&&a.href?0:b}}}}),f.attrHooks.tabIndex=f.propHooks.tabIndex,v={get:function(a,c){var d;return f.prop(a,c)===!0||(d=a.getAttributeNode(c))&&d.nodeValue!==!1?c.toLowerCase():b},set:function(a,b,c){var d;b===!1?f.removeAttr(a,c):(d=f.propFix[c]||c,d in a&&(a[d]=!0),a.setAttribute(c,c.toLowerCase()));return c}},f.support.getSetAttribute||(u=f.valHooks.button={get:function(a,c){var d;d=a.getAttributeNode(c);return d&&d.nodeValue!==""?d.nodeValue:b},set:function(a,b,d){var e=a.getAttributeNode(d);e||(e=c.createAttribute(d),a.setAttributeNode(e));return e.nodeValue=b+""}},f.each(["width","height"],function(a,b){f.attrHooks[b]=f.extend(f.attrHooks[b],{set:function(a,c){if(c===""){a.setAttribute(b,"auto");return c}}})})),f.support.hrefNormalized||f.each(["href","src","width","height"],function(a,c){f.attrHooks[c]=f.extend(f.attrHooks[c],{get:function(a){var d=a.getAttribute(c,2);return d===null?b:d}})}),f.support.style||(f.attrHooks.style={get:function(a){return a.style.cssText.toLowerCase()||b},set:function(a,b){return a.style.cssText=""+b}}),f.support.optSelected||(f.propHooks.selected=f.extend(f.propHooks.selected,{get:function(a){var b=a.parentNode;b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex);return null}})),f.support.checkOn||f.each(["radio","checkbox"],function(){f.valHooks[this]={get:function(a){return a.getAttribute("value")===null?"on":a.value}}}),f.each(["radio","checkbox"],function(){f.valHooks[this]=f.extend(f.valHooks[this],{set:function(a,b){if(f.isArray(b))return a.checked=f.inArray(f(a).val(),b)>=0}})});var w=/\.(.*)$/,x=/^(?:textarea|input|select)$/i,y=/\./g,z=/ /g,A=/[^\w\s.|`]/g,B=function(a){return a.replace(A,"\\$&")};f.event={add:function(a,c,d,e){if(a.nodeType!==3&&a.nodeType!==8){if(d===!1)d=C;else if(!d)return;var g,h;d.handler&&(g=d,d=g.handler),d.guid||(d.guid=f.guid++);var i=f._data(a);if(!i)return;var j=i.events,k=i.handle;j||(i.events=j={}),k||(i.handle=k=function(a){return typeof f!="undefined"&&(!a||f.event.triggered!==a.type)?f.event.handle.apply(k.elem,arguments):b}),k.elem=a,c=c.split(" ");var l,m=0,n;while(l=c[m++]){h=g?f.extend({},g):{handler:d,data:e},l.indexOf(".")>-1?(n=l.split("."),l=n.shift(),h.namespace=n.slice(0).sort().join(".")):(n=[],h.namespace=""),h.type=l,h.guid||(h.guid=d.guid);var o=j[l],p=f.event.special[l]||{};if(!o){o=j[l]=[];if(!p.setup||p.setup.call(a,e,n,k)===!1)a.addEventListener?a.addEventListener(l,k,!1):a.attachEvent&&a.attachEvent("on"+l,k)}p.add&&(p.add.call(a,h),h.handler.guid||(h.handler.guid=d.guid)),o.push(h),f.event.global[l]=!0}a=null}},global:{},remove:function(a,c,d,e){if(a.nodeType!==3&&a.nodeType!==8){d===!1&&(d=C);var g,h,i,j,k=0,l,m,n,o,p,q,r,s=f.hasData(a)&&f._data(a),t=s&&s.events;if(!s||!t)return;c&&c.type&&(d=c.handler,c=c.type);if(!c||typeof c=="string"&&c.charAt(0)==="."){c=c||"";for(h in t)f.event.remove(a,h+c);return}c=c.split(" ");while(h=c[k++]){r=h,q=null,l=h.indexOf(".")<0,m=[],l||(m=h.split("."),h=m.shift(),n=new RegExp("(^|\\.)"+f.map(m.slice(0).sort(),B).join("\\.(?:.*\\.)?")+"(\\.|$)")),p=t[h];if(!p)continue;if(!d){for(j=0;j=0&&(h=h.slice(0,-1),j=!0),h.indexOf(".")>=0&&(i=h.split("."),h=i.shift(),i.sort());if(!!e&&!f.event.customEvent[h]||!!f.event.global[h]){c=typeof c=="object"?c[f.expando]?c:new f.Event(h,c):new f.Event(h),c.type=h,c.exclusive=j,c.namespace=i.join("."),c.namespace_re=new RegExp("(^|\\.)"+i.join("\\.(?:.*\\.)?")+"(\\.|$)");if(g||!e)c.preventDefault(),c.stopPropagation();if(!e){f.each(f.cache,function(){var a=f.expando,b=this[a];b&&b.events&&b.events[h]&&f.event.trigger(c,d,b.handle.elem)});return}if(e.nodeType===3||e.nodeType===8)return;c.result=b,c.target=e,d=d!=null?f.makeArray(d):[],d.unshift(c);var k=e,l=h.indexOf(":")<0?"on"+h:"";do{var m=f._data(k,"handle");c.currentTarget=k,m&&m.apply(k,d),l&&f.acceptData(k)&&k[l]&&k[l].apply(k,d)===!1&&(c.result=!1,c.preventDefault()),k=k.parentNode||k.ownerDocument||k===c.target.ownerDocument&&a}while(k&&!c.isPropagationStopped());if(!c.isDefaultPrevented()){var n,o=f.event.special[h]||{};if((!o._default||o._default.call(e.ownerDocument,c)===!1)&&(h!=="click"||!f.nodeName(e,"a"))&&f.acceptData(e)){try{l&&e[h]&&(n=e[l],n&&(e[l]=null),f.event.triggered=h,e[h]())}catch(p){}n&&(e[l]=n),f.event.triggered=b}}return c.result}},handle:function(c){c=f.event.fix(c||a.event);var d=((f._data(this,"events")||{})[c.type]||[]).slice(0),e=!c.exclusive&&!c.namespace,g=Array.prototype.slice.call(arguments,0);g[0]=c,c.currentTarget=this;for(var h=0,i=d.length;h-1?f.map(a.options,function(a){return a.selected}).join("-"):"":f.nodeName(a,"select")&&(c=a.selectedIndex);return c},I=function(c){var d=c.target,e,g;if(!!x.test(d.nodeName)&&!d.readOnly){e=f._data(d,"_change_data"),g=H(d),(c.type!=="focusout"||d.type!=="radio")&&f._data(d,"_change_data",g);if(e===b||g===e)return;if(e!=null||g)c.type="change",c.liveFired=b,f.event.trigger(c,arguments[1],d)}};f.event.special.change={filters:{focusout:I,beforedeactivate:I,click:function(a){var b=a.target,c=f.nodeName(b,"input")?b.type:"";(c==="radio"||c==="checkbox"||f.nodeName(b,"select"))&&I.call(this,a)},keydown:function(a){var b=a.target,c=f.nodeName(b,"input")?b.type:"";(a.keyCode===13&&!f.nodeName(b,"textarea")||a.keyCode===32&&(c==="checkbox"||c==="radio")||c==="select-multiple")&&I.call(this,a)},beforeactivate:function(a){var b=a.target;f._data(b,"_change_data",H(b))}},setup:function(a,b){if(this.type==="file")return!1;for(var c in G)f.event.add(this,c+".specialChange",G[c]);return x.test(this.nodeName)},teardown:function(a){f.event.remove(this,".specialChange");return x.test(this.nodeName)}},G=f.event.special.change.filters,G.focus=G.beforeactivate}f.support.focusinBubbles||f.each({focus:"focusin",blur:"focusout"},function(a,b){function e(a){var c=f.event.fix(a);c.type=b,c.originalEvent={},f.event.trigger(c,null,c.target),c.isDefaultPrevented()&&a.preventDefault()}var d=0;f.event.special[b]={setup:function(){d++===0&&c.addEventListener(a,e,!0)},teardown:function(){--d===0&&c.removeEventListener(a,e,!0)}}}),f.each(["bind","one"],function(a,c){f.fn[c]=function(a,d,e){var g;if(typeof a=="object"){for(var h in a)this[c](h,d,a[h],e);return this}if(arguments.length===2||d===!1)e=d,d=b;c==="one"?(g=function(a){f(this).unbind(a,g);return e.apply(this,arguments)},g.guid=e.guid||f.guid++):g=e;if(a==="unload"&&c!=="one")this.one(a,d,e);else for(var i=0,j=this.length;i0?this.bind(b,a,c):this.trigger(b)},f.attrFn&&(f.attrFn[b]=!0)}),function(){function u(a,b,c,d,e,f){for(var g=0,h=d.length;g0){j=i;break}}i=i[a]}d[g]=j}}}function t(a,b,c,d,e,f){for(var g=0,h=d.length;g+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,d=0,e=Object.prototype.toString,g=!1,h=!0,i=/\\/g,j=/\W/;[0,0].sort(function(){h=!1;return 0});var k=function(b,d,f,g){f=f||[],d=d||c;var h=d;if(d.nodeType!==1&&d.nodeType!==9)return[];if(!b||typeof b!="string")return f;var i,j,n,o,q,r,s,t,u=!0,w=k.isXML(d),x=[],y=b;do{a.exec(""),i=a.exec(y);if(i){y=i[3],x.push(i[1]);if(i[2]){o=i[3];break}}}while(i);if(x.length>1&&m.exec(b))if(x.length===2&&l.relative[x[0]])j=v(x[0]+x[1],d);else{j=l.relative[x[0]]?[d]:k(x.shift(),d);while(x.length)b=x.shift(),l.relative[b]&&(b+=x.shift()),j=v(b,j)}else{!g&&x.length>1&&d.nodeType===9&&!w&&l.match.ID.test(x[0])&&!l.match.ID.test(x[x.length-1])&&(q=k.find(x.shift(),d,w),d=q.expr?k.filter(q.expr,q.set)[0]:q.set[0]);if(d){q=g?{expr:x.pop(),set:p(g)}:k.find(x.pop(),x.length===1&&(x[0]==="~"||x[0]==="+")&&d.parentNode?d.parentNode:d,w),j=q.expr?k.filter(q.expr,q.set):q.set,x.length>0?n=p(j):u=!1;while(x.length)r=x.pop(),s=r,l.relative[r]?s=x.pop():r="",s==null&&(s=d),l.relative[r](n,s,w)}else n=x=[]}n||(n=j),n||k.error(r||b);if(e.call(n)==="[object Array]")if(!u)f.push.apply(f,n);else if(d&&d.nodeType===1)for(t=0;n[t]!=null;t++)n[t]&&(n[t]===!0||n[t].nodeType===1&&k.contains(d,n[t]))&&f.push(j[t]);else for(t=0;n[t]!=null;t++)n[t]&&n[t].nodeType===1&&f.push(j[t]);else p(n,f);o&&(k(o,h,f,g),k.uniqueSort(f));return f};k.uniqueSort=function(a){if(r){g=h,a.sort(r);if(g)for(var b=1;b0},k.find=function(a,b,c){var d;if(!a)return[];for(var e=0,f=l.order.length;e":function(a,b){var c,d=typeof b=="string",e=0,f=a.length;if(d&&!j.test(b)){b=b.toLowerCase();for(;e=0)?c||d.push(h):c&&(b[g]=!1));return!1},ID:function(a){return a[1].replace(i,"")},TAG:function(a,b){return a[1].replace(i,"").toLowerCase()},CHILD:function(a){if(a[1]==="nth"){a[2]||k.error(a[0]),a[2]=a[2].replace(/^\+|\s*/g,"");var b=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(a[2]==="even"&&"2n"||a[2]==="odd"&&"2n+1"||!/\D/.test(a[2])&&"0n+"+a[2]||a[2]);a[2]=b[1]+(b[2]||1)-0,a[3]=b[3]-0}else a[2]&&k.error(a[0]);a[0]=d++;return a},ATTR:function(a,b,c,d,e,f){var g=a[1]=a[1].replace(i,"");!f&&l.attrMap[g]&&(a[1]=l.attrMap[g]),a[4]=(a[4]||a[5]||"").replace(i,""),a[2]==="~="&&(a[4]=" "+a[4]+" ");return a},PSEUDO:function(b,c,d,e,f){if(b[1]==="not")if((a.exec(b[3])||"").length>1||/^\w/.test(b[3]))b[3]=k(b[3],null,null,c);else{var g=k.filter(b[3],c,d,!0^f);d||e.push.apply(e,g);return!1}else if(l.match.POS.test(b[0])||l.match.CHILD.test(b[0]))return!0;return b},POS:function(a){a.unshift(!0);return a}},filters:{enabled:function(a){return a.disabled===!1&&a.type!=="hidden"},disabled:function(a){return a.disabled===!0},checked:function(a){return a.checked===!0},selected:function(a){a.parentNode&&a.parentNode.selectedIndex;return a.selected===!0},parent:function(a){return!!a.firstChild},empty:function(a){return!a.firstChild},has:function(a,b,c){return!!k(c[3],a).length},header:function(a){return/h\d/i.test(a.nodeName)},text:function(a){var b=a.getAttribute("type"),c=a.type;return a.nodeName.toLowerCase()==="input"&&"text"===c&&(b===c||b===null)},radio:function(a){return a.nodeName.toLowerCase()==="input"&&"radio"===a.type},checkbox:function(a){return a.nodeName.toLowerCase()==="input"&&"checkbox"===a.type},file:function(a){return a.nodeName.toLowerCase()==="input"&&"file"===a.type},password:function(a){return a.nodeName.toLowerCase()==="input"&&"password"===a.type},submit:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"submit"===a.type},image:function(a){return a.nodeName.toLowerCase()==="input"&&"image"===a.type},reset:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"reset"===a.type},button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&"button"===a.type||b==="button"},input:function(a){return/input|select|textarea|button/i.test(a.nodeName)},focus:function(a){return a===a.ownerDocument.activeElement}},setFilters:{first:function(a,b){return b===0},last:function(a,b,c,d){return b===d.length-1},even:function(a,b){return b%2===0},odd:function(a,b){return b%2===1},lt:function(a,b,c){return bc[3]-0},nth:function(a,b,c){return c[3]-0===b},eq:function(a,b,c){return c[3]-0===b}},filter:{PSEUDO:function(a,b,c,d){var e=b[1],f=l.filters[e];if(f)return f(a,c,b,d);if(e==="contains")return(a.textContent||a.innerText||k.getText([a])||"").indexOf(b[3])>=0;if(e==="not"){var g=b[3];for(var h=0,i=g.length;h=0}},ID:function(a,b){return a.nodeType===1&&a.getAttribute("id")===b},TAG:function(a,b){return b==="*"&&a.nodeType===1||a.nodeName.toLowerCase()===b},CLASS:function(a,b){return(" "+(a.className||a.getAttribute("class"))+" ").indexOf(b)>-1},ATTR:function(a,b){var c=b[1],d=l.attrHandle[c]?l.attrHandle[c](a):a[c]!=null?a[c]:a.getAttribute(c),e=d+"",f=b[2],g=b[4];return d==null?f==="!=":f==="="?e===g:f==="*="?e.indexOf(g)>=0:f==="~="?(" "+e+" ").indexOf(g)>=0:g?f==="!="?e!==g:f==="^="?e.indexOf(g)===0:f==="$="?e.substr(e.length-g.length)===g:f==="|="?e===g||e.substr(0,g.length+1)===g+"-":!1:e&&d!==!1},POS:function(a,b,c,d){var e=b[2],f=l.setFilters[e];if(f)return f(a,c,b,d)}}},m=l.match.POS,n=function(a,b){return"\\"+(b-0+1)};for(var o in l.match)l.match[o]=new RegExp(l.match[o].source+/(?![^\[]*\])(?![^\(]*\))/.source),l.leftMatch[o]=new RegExp(/(^(?:.|\r|\n)*?)/.source+l.match[o].source.replace(/\\(\d+)/g,n));var p=function(a,b){a=Array.prototype.slice.call(a,0);if(b){b.push.apply(b,a);return b}return a};try{Array.prototype.slice.call(c.documentElement.childNodes,0)[0].nodeType}catch(q){p=function(a,b){var c=0,d=b||[];if(e.call(a)==="[object Array]")Array.prototype.push.apply(d,a);else if(typeof a.length=="number")for(var f=a.length;c",e.insertBefore(a,e.firstChild),c.getElementById(d)&&(l.find.ID=function(a,c,d){if(typeof c.getElementById!="undefined"&&!d){var e=c.getElementById(a[1]);return e?e.id===a[1]||typeof e.getAttributeNode!="undefined"&&e.getAttributeNode("id").nodeValue===a[1]?[e]:b:[]}},l.filter.ID=function(a,b){var c=typeof a.getAttributeNode!="undefined"&&a.getAttributeNode("id");return a.nodeType===1&&c&&c.nodeValue===b}),e.removeChild(a),e=a=null}(),function(){var a=c.createElement("div");a.appendChild(c.createComment("")),a.getElementsByTagName("*").length>0&&(l.find.TAG=function(a,b){var c=b.getElementsByTagName(a[1]);if(a[1]==="*"){var d=[];for(var e=0;c[e];e++)c[e].nodeType===1&&d.push(c[e]);c=d}return c}),a.innerHTML="",a.firstChild&&typeof a.firstChild.getAttribute!="undefined"&&a.firstChild.getAttribute("href")!=="#"&&(l.attrHandle.href=function(a){return a.getAttribute("href",2)}),a=null}(),c.querySelectorAll&&function(){var a=k,b=c.createElement("div"),d="__sizzle__";b.innerHTML="

    ";if(!b.querySelectorAll||b.querySelectorAll(".TEST").length!==0){k=function(b,e,f,g){e=e||c;if(!g&&!k.isXML(e)){var h=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(b);if(h&&(e.nodeType===1||e.nodeType===9)){if(h[1])return p(e.getElementsByTagName(b),f);if(h[2]&&l.find.CLASS&&e.getElementsByClassName)return p(e.getElementsByClassName(h[2]),f)}if(e.nodeType===9){if(b==="body"&&e.body)return p([e.body],f);if(h&&h[3]){var i=e.getElementById(h[3]);if(!i||!i.parentNode)return p([],f);if(i.id===h[3])return p([i],f)}try{return p(e.querySelectorAll(b),f)}catch(j){}}else if(e.nodeType===1&&e.nodeName.toLowerCase()!=="object"){var m=e,n=e.getAttribute("id"),o=n||d,q=e.parentNode,r=/^\s*[+~]/.test(b);n?o=o.replace(/'/g,"\\$&"):e.setAttribute("id",o),r&&q&&(e=e.parentNode);try{if(!r||q)return p(e.querySelectorAll("[id='"+o+"'] "+b),f)}catch(s){}finally{n||m.removeAttribute("id")}}}return a(b,e,f,g)};for(var e in a)k[e]=a[e];b=null}}(),function(){var a=c.documentElement,b=a.matchesSelector||a.mozMatchesSelector||a.webkitMatchesSelector||a.msMatchesSelector;if(b){var d=!b.call(c.createElement("div"),"div"),e=!1;try{b.call(c.documentElement,"[test!='']:sizzle")}catch(f){e=!0}k.matchesSelector=function(a,c){c=c.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!k.isXML(a))try{if(e||!l.match.PSEUDO.test(c)&&!/!=/.test(c)){var f=b.call(a,c);if(f||!d||a.document&&a.document.nodeType!==11)return f}}catch(g){}return k(c,null,null,[a]).length>0}}}(),function(){var a=c.createElement("div");a.innerHTML="
    ";if(!!a.getElementsByClassName&&a.getElementsByClassName("e").length!==0){a.lastChild.className="e";if(a.getElementsByClassName("e").length===1)return;l.order.splice(1,0,"CLASS"),l.find.CLASS=function(a,b,c){if(typeof b.getElementsByClassName!="undefined"&&!c)return b.getElementsByClassName(a[1])},a=null}}(),c.documentElement.contains?k.contains=function(a,b){return a!==b&&(a.contains?a.contains(b):!0)}:c.documentElement.compareDocumentPosition?k.contains=function(a,b){return!!(a.compareDocumentPosition(b)&16)}:k.contains=function(){return!1},k.isXML=function(a){var b=(a?a.ownerDocument||a:0).documentElement;return b?b.nodeName!=="HTML":!1};var v=function(a,b){var c,d=[],e="",f=b.nodeType?[b]:b;while(c=l.match.PSEUDO.exec(a))e+=c[0],a=a.replace(l.match.PSEUDO,"");a=l.relative[a]?a+"*":a;for(var g=0,h=f.length;g0)for(h=g;h0:this.filter(a).length>0)},closest:function(a,b){var c=[],d,e,g=this[0];if(f.isArray(a)){var h,i,j={},k=1;if(g&&a.length){for(d=0,e=a.length;d-1:f(g).is(h))&&c.push({selector:i,elem:g,level:k});g=g.parentNode,k++}}return c}var l=S.test(a)||typeof a!="string"?f(a,b||this.context):0;for(d=0,e=this.length;d-1:f.find.matchesSelector(g,a)){c.push(g);break}g=g.parentNode;if(!g||!g.ownerDocument||g===b||g.nodeType===11)break}}c=c.length>1?f.unique(c):c;return this.pushStack(c,"closest",a)},index:function(a){if(!a)return this[0]&&this[0].parentNode?this.prevAll().length:-1;if(typeof a=="string")return f.inArray(this[0],f(a));return f.inArray(a.jquery?a[0]:a,this)},add:function(a,b){var c=typeof a=="string"?f(a,b):f.makeArray(a&&a.nodeType?[a]:a),d=f.merge(this.get(),c);return this.pushStack(U(c[0])||U(d[0])?d:f.unique(d))},andSelf:function(){return this.add(this.prevObject)}}),f.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return f.dir(a,"parentNode")},parentsUntil:function(a,b,c){return f.dir(a,"parentNode",c)},next:function(a){return f.nth(a,2,"nextSibling")},prev:function(a){return f.nth(a,2,"previousSibling")},nextAll:function(a){return f.dir(a,"nextSibling")},prevAll:function(a){return f.dir(a,"previousSibling")},nextUntil:function(a,b,c){return f.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return f.dir(a,"previousSibling",c)},siblings:function(a){return f.sibling(a.parentNode.firstChild,a)},children:function(a){return f.sibling(a.firstChild)},contents:function(a){return f.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:f.makeArray(a.childNodes)}},function(a,b){f.fn[a]=function(c,d){var e=f.map(this,b,c),g=R.call(arguments);N.test(a)||(d=c),d&&typeof d=="string"&&(e=f.filter(d,e)),e=this.length>1&&!T[a]?f.unique(e):e,(this.length>1||P.test(d))&&O.test(a)&&(e=e.reverse());return this.pushStack(e,a,g.join(","))}}),f.extend({filter:function(a,b,c){c&&(a=":not("+a+")");return b.length===1?f.find.matchesSelector(b[0],a)?[b[0]]:[]:f.find.matches(a,b)},dir:function(a,c,d){var e=[],g=a[c];while(g&&g.nodeType!==9&&(d===b||g.nodeType!==1||!f(g).is(d)))g.nodeType===1&&e.push(g),g=g[c];return e},nth:function(a,b,c,d){b=b||1;var e=0;for(;a;a=a[c])if(a.nodeType===1&&++e===b)break;return a},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var W=/ jQuery\d+="(?:\d+|null)"/g,X=/^\s+/,Y=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,Z=/<([\w:]+)/,$=/",""],legend:[1,"
    ","
    "],thead:[1,"","
    "],tr:[2,"","
    "],td:[3,"","
    "],col:[2,"","
    "],area:[1,"",""],_default:[0,"",""]};be.optgroup=be.option,be.tbody=be.tfoot=be.colgroup=be.caption=be.thead,be.th=be.td,f.support.htmlSerialize||(be._default=[1,"div
    ","
    "]),f.fn.extend({text:function(a){if(f.isFunction(a))return this.each(function(b){var c=f(this);c.text(a.call(this,b,c.text()))});if(typeof a!="object"&&a!==b)return this.empty().append((this[0]&&this[0].ownerDocument||c).createTextNode(a));return f.text(this)},wrapAll:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapAll(a.call(this,b))});if(this[0]){var b=f(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapInner(a.call(this,b))});return this.each(function(){var b=f(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){return this.each(function(){f(this).wrapAll(a)})},unwrap:function(){return this.parent().each(function(){f.nodeName(this,"body")||f(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=f(arguments[0]);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,f(arguments[0]).toArray());return a}},remove:function(a,b){for(var c=0,d;(d=this[c])!=null;c++)if(!a||f.filter(a,[d]).length)!b&&d.nodeType===1&&(f.cleanData(d.getElementsByTagName("*")),f.cleanData([d])),d.parentNode&&d.parentNode.removeChild(d);return this},empty:function(){for(var a=0,b;(b=this[a])!=null;a++){b.nodeType===1&&f.cleanData(b.getElementsByTagName("*"));while(b.firstChild)b.removeChild(b.firstChild)}return this},clone:function(a,b){a=a==null?!1:a,b=b==null?a:b;return this.map(function(){return f.clone(this,a,b)})},html:function(a){if(a===b)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(W,""):null;if(typeof a=="string"&&!ba.test(a)&&(f.support.leadingWhitespace||!X.test(a))&&!be[(Z.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Y,"<$1>");try{for(var c=0,d=this.length;c1&&l0?this.clone(!0):this).get();f(e[h])[b](j),d=d.concat(j)}return this.pushStack(d,a,e.selector)}}),f.extend({clone:function(a,b,c){var d=a.cloneNode(!0),e,g,h;if((!f.support.noCloneEvent||!f.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!f.isXMLDoc(a)){bh(a,d),e=bi(a),g=bi(d);for(h=0;e[h];++h)g[h]&&bh(e[h],g[h])}if(b){bg(a,d);if(c){e=bi(a),g=bi(d);for(h=0;e[h];++h)bg(e[h],g[h])}}e=g=null;return d},clean:function(a,b,d,e){var g;b=b||c,typeof b.createElement=="undefined"&&(b=b.ownerDocument||b[0]&&b[0].ownerDocument||c);var h=[],i;for(var j=0,k;(k=a[j])!=null;j++){typeof k=="number"&&(k+="");if(!k)continue;if(typeof k=="string")if(!_.test(k))k=b.createTextNode(k);else{k=k.replace(Y,"<$1>");var l=(Z.exec(k)||["",""])[1].toLowerCase(),m=be[l]||be._default,n=m[0],o=b.createElement("div");o.innerHTML=m[1]+k+m[2];while(n--)o=o.lastChild;if(!f.support.tbody){var p=$.test(k),q=l==="table"&&!p?o.firstChild&&o.firstChild.childNodes:m[1]===""&&!p?o.childNodes:[];for(i=q.length-1;i>=0;--i)f.nodeName(q[i],"tbody")&&!q[i].childNodes.length&&q[i].parentNode.removeChild(q[i])}!f.support.leadingWhitespace&&X.test(k)&&o.insertBefore(b.createTextNode(X.exec(k)[0]),o.firstChild),k=o.childNodes}var r;if(!f.support.appendChecked)if(k[0]&&typeof (r=k.length)=="number")for(i=0;i=0)return b+"px"}}}),f.support.opacity||(f.cssHooks.opacity={get:function(a,b){return bn.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=f.isNaN(b)?"":"alpha(opacity="+b*100+")",g=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&f.trim(g.replace(bm,""))===""){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bm.test(g)?g.replace(bm,e):g+" "+e}}),f(function(){f.support.reliableMarginRight||(f.cssHooks.marginRight={get:function(a,b){var c;f.swap(a,{display:"inline-block"},function(){b?c=bv(a,"margin-right","marginRight"):c=a.style.marginRight});return c}})}),c.defaultView&&c.defaultView.getComputedStyle&&(bw=function(a,c){var d,e,g;c=c.replace(bo,"-$1").toLowerCase();if(!(e=a.ownerDocument.defaultView))return b;if(g=e.getComputedStyle(a,null))d=g.getPropertyValue(c),d===""&&!f.contains(a.ownerDocument.documentElement,a)&&(d=f.style(a,c));return d}),c.documentElement.currentStyle&&(bx=function(a,b){var c,d=a.currentStyle&&a.currentStyle[b],e=a.runtimeStyle&&a.runtimeStyle[b],f=a.style;!bp.test(d)&&bq.test(d)&&(c=f.left,e&&(a.runtimeStyle.left=a.currentStyle.left),f.left=b==="fontSize"?"1em":d||0,d=f.pixelLeft+"px",f.left=c,e&&(a.runtimeStyle.left=e));return d===""?"auto":d}),bv=bw||bx,f.expr&&f.expr.filters&&(f.expr.filters.hidden=function(a){var b=a.offsetWidth,c=a.offsetHeight;return b===0&&c===0||!f.support.reliableHiddenOffsets&&(a.style.display||f.css(a,"display"))==="none"},f.expr.filters.visible=function(a){return!f.expr.filters.hidden(a)});var bz=/%20/g,bA=/\[\]$/,bB=/\r?\n/g,bC=/#.*$/,bD=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,bE=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,bF=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,bG=/^(?:GET|HEAD)$/,bH=/^\/\//,bI=/\?/,bJ=/)<[^<]*)*<\/script>/gi,bK=/^(?:select|textarea)/i,bL=/\s+/,bM=/([?&])_=[^&]*/,bN=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/,bO=f.fn.load,bP={},bQ={},bR,bS,bT=["*/"]+["*"];try{bR=e.href}catch(bU){bR=c.createElement("a"),bR.href="",bR=bR.href}bS=bN.exec(bR.toLowerCase())||[],f.fn.extend({load:function(a,c,d){if(typeof a!="string"&&bO)return bO.apply(this,arguments);if(!this.length)return this;var e=a.indexOf(" ");if(e>=0){var g=a.slice(e,a.length);a=a.slice(0,e)}var h="GET";c&&(f.isFunction(c)?(d=c,c=b):typeof c=="object"&&(c=f.param(c,f.ajaxSettings.traditional),h="POST"));var i=this;f.ajax({url:a,type:h,dataType:"html",data:c,complete:function(a,b,c){c=a.responseText,a.isResolved()&&(a.done(function(a){c=a}),i.html(g?f("
    ").append(c.replace(bJ,"")).find(g):c)),d&&i.each(d,[c,b,a])}});return this},serialize:function(){return f.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?f.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||bK.test(this.nodeName)||bE.test(this.type))}).map(function(a,b){var c=f(this).val();return c==null?null:f.isArray(c)?f.map(c,function(a,c){return{name:b.name,value:a.replace(bB,"\r\n")}}):{name:b.name,value:c.replace(bB,"\r\n")}}).get()}}),f.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){f.fn[b]=function(a){return this.bind(b,a)}}),f.each(["get","post"],function(a,c){f[c]=function(a,d,e,g){f.isFunction(d)&&(g=g||e,e=d,d=b);return f.ajax({type:c,url:a,data:d,success:e,dataType:g})}}),f.extend({getScript:function(a,c){return f.get(a,b,c,"script")},getJSON:function(a,b,c){return f.get(a,b,c,"json")},ajaxSetup:function(a,b){b?bX(a,f.ajaxSettings):(b=a,a=f.ajaxSettings),bX(a,b);return a},ajaxSettings:{url:bR,isLocal:bF.test(bS[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":bT},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":f.parseJSON,"text xml":f.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:bV(bP),ajaxTransport:bV(bQ),ajax:function(a,c){function w(a,c,l,m){if(s!==2){s=2,q&&clearTimeout(q),p=b,n=m||"",v.readyState=a>0?4:0;var o,r,u,w=c,x=l?bZ(d,v,l):b,y,z;if(a>=200&&a<300||a===304){if(d.ifModified){if(y=v.getResponseHeader("Last-Modified"))f.lastModified[k]=y;if(z=v.getResponseHeader("Etag"))f.etag[k]=z}if(a===304)w="notmodified",o=!0;else try{r=b$(d,x),w="success",o=!0}catch(A){w="parsererror",u=A}}else{u=w;if(!w||a)w="error",a<0&&(a=0)}v.status=a,v.statusText=""+(c||w),o?h.resolveWith(e,[r,w,v]):h.rejectWith(e,[v,w,u]),v.statusCode(j),j=b,t&&g.trigger("ajax"+(o?"Success":"Error"),[v,d,o?r:u]),i.resolveWith(e,[v,w]),t&&(g.trigger("ajaxComplete",[v,d]),--f.active||f.event.trigger("ajaxStop"))}}typeof a=="object"&&(c=a,a=b),c=c||{};var d=f.ajaxSetup({},c),e=d.context||d,g=e!==d&&(e.nodeType||e instanceof f)?f(e):f.event,h=f.Deferred(),i=f._Deferred(),j=d.statusCode||{},k,l={},m={},n,o,p,q,r,s=0,t,u,v={readyState:0,setRequestHeader:function(a,b){if(!s){var c=a.toLowerCase();a=m[c]=m[c]||a,l[a]=b}return this},getAllResponseHeaders:function(){return s===2?n:null},getResponseHeader:function(a){var c;if(s===2){if(!o){o={};while(c=bD.exec(n))o[c[1].toLowerCase()]=c[2]}c=o[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){s||(d.mimeType=a);return this},abort:function(a){a=a||"abort",p&&p.abort(a),w(0,a);return this}};h.promise(v),v.success=v.done,v.error=v.fail,v.complete=i.done,v.statusCode=function(a){if(a){var b;if(s<2)for(b in a)j[b]=[j[b],a[b]];else b=a[v.status],v.then(b,b)}return this},d.url=((a||d.url)+"").replace(bC,"").replace(bH,bS[1]+"//"),d.dataTypes=f.trim(d.dataType||"*").toLowerCase().split(bL),d.crossDomain==null&&(r=bN.exec(d.url.toLowerCase()),d.crossDomain=!(!r||r[1]==bS[1]&&r[2]==bS[2]&&(r[3]||(r[1]==="http:"?80:443))==(bS[3]||(bS[1]==="http:"?80:443)))),d.data&&d.processData&&typeof d.data!="string"&&(d.data=f.param(d.data,d.traditional)),bW(bP,d,c,v);if(s===2)return!1;t=d.global,d.type=d.type.toUpperCase(),d.hasContent=!bG.test(d.type),t&&f.active++===0&&f.event.trigger("ajaxStart");if(!d.hasContent){d.data&&(d.url+=(bI.test(d.url)?"&":"?")+d.data,delete d.data),k=d.url;if(d.cache===!1){var x=f.now(),y=d.url.replace(bM,"$1_="+x);d.url=y+(y===d.url?(bI.test(d.url)?"&":"?")+"_="+x:"")}}(d.data&&d.hasContent&&d.contentType!==!1||c.contentType)&&v.setRequestHeader("Content-Type",d.contentType),d.ifModified&&(k=k||d.url,f.lastModified[k]&&v.setRequestHeader("If-Modified-Since",f.lastModified[k]),f.etag[k]&&v.setRequestHeader("If-None-Match",f.etag[k])),v.setRequestHeader("Accept",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+(d.dataTypes[0]!=="*"?", "+bT+"; q=0.01":""):d.accepts["*"]);for(u in d.headers)v.setRequestHeader(u,d.headers[u]);if(d.beforeSend&&(d.beforeSend.call(e,v,d)===!1||s===2)){v.abort();return!1}for(u in{success:1,error:1,complete:1})v[u](d[u]);p=bW(bQ,d,c,v);if(!p)w(-1,"No Transport");else{v.readyState=1,t&&g.trigger("ajaxSend",[v,d]),d.async&&d.timeout>0&&(q=setTimeout(function(){v.abort("timeout")},d.timeout));try{s=1,p.send(l,w)}catch(z){s<2?w(-1,z):f.error(z)}}return v},param:function(a,c){var d=[],e=function(a,b){b=f.isFunction(b)?b():b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=f.ajaxSettings.traditional);if(f.isArray(a)||a.jquery&&!f.isPlainObject(a))f.each(a,function(){e(this.name,this.value)});else for(var g in a)bY(g,a[g],c,e);return d.join("&").replace(bz,"+")}}),f.extend({active:0,lastModified:{},etag:{}});var b_=f.now(),ca=/(\=)\?(&|$)|\?\?/i;f.ajaxSetup({jsonp:"callback",jsonpCallback:function(){return f.expando+"_"+b_++}}),f.ajaxPrefilter("json jsonp",function(b,c,d){var e=b.contentType==="application/x-www-form-urlencoded"&&typeof b.data=="string";if(b.dataTypes[0]==="jsonp"||b.jsonp!==!1&&(ca.test(b.url)||e&&ca.test(b.data))){var g,h=b.jsonpCallback=f.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,i=a[h],j=b.url,k=b.data,l="$1"+h+"$2";b.jsonp!==!1&&(j=j.replace(ca,l),b.url===j&&(e&&(k=k.replace(ca,l)),b.data===k&&(j+=(/\?/.test(j)?"&":"?")+b.jsonp+"="+h))),b.url=j,b.data=k,a[h]=function(a){g=[a]},d.always(function(){a[h]=i,g&&f.isFunction(i)&&a[h](g[0])}),b.converters["script json"]=function(){g||f.error(h+" was not called");return g[0]},b.dataTypes[0]="json";return"script"}}),f.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){f.globalEval(a);return a}}}),f.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),f.ajaxTransport("script",function(a){if(a.crossDomain){var d,e=c.head||c.getElementsByTagName("head")[0]||c.documentElement;return{send:function(f,g){d=c.createElement("script"),d.async="async",a.scriptCharset&&(d.charset=a.scriptCharset),d.src=a.url,d.onload=d.onreadystatechange=function(a,c){if(c||!d.readyState||/loaded|complete/.test(d.readyState))d.onload=d.onreadystatechange=null,e&&d.parentNode&&e.removeChild(d),d=b,c||g(200,"success")},e.insertBefore(d,e.firstChild)},abort:function(){d&&d.onload(0,1)}}}});var cb=a.ActiveXObject?function(){for(var a in cd)cd[a](0,1)}:!1,cc=0,cd;f.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&ce()||cf()}:ce,function(a){f.extend(f.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(f.ajaxSettings.xhr()),f.support.ajax&&f.ajaxTransport(function(c){if(!c.crossDomain||f.support.cors){var d;return{send:function(e,g){var h=c.xhr(),i,j;c.username?h.open(c.type,c.url,c.async,c.username,c.password):h.open(c.type,c.url,c.async);if(c.xhrFields)for(j in c.xhrFields)h[j]=c.xhrFields[j];c.mimeType&&h.overrideMimeType&&h.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(j in e)h.setRequestHeader(j,e[j])}catch(k){}h.send(c.hasContent&&c.data||null),d=function(a,e){var j,k,l,m,n;try{if(d&&(e||h.readyState===4)){d=b,i&&(h.onreadystatechange=f.noop,cb&&delete cd[i]);if(e)h.readyState!==4&&h.abort();else{j=h.status,l=h.getAllResponseHeaders(),m={},n=h.responseXML,n&&n.documentElement&&(m.xml=n),m.text=h.responseText;try{k=h.statusText}catch(o){k=""}!j&&c.isLocal&&!c.crossDomain?j=m.text?200:404:j===1223&&(j=204)}}}catch(p){e||g(-1,p)}m&&g(j,k,m,l)},!c.async||h.readyState===4?d():(i=++cc,cb&&(cd||(cd={},f(a).unload(cb)),cd[i]=d),h.onreadystatechange=d)},abort:function(){d&&d(0,1)}}}});var cg={},ch,ci,cj=/^(?:toggle|show|hide)$/,ck=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,cl,cm=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]],cn;f.fn.extend({show:function(a,b,c){var d,e;if(a||a===0)return this.animate(cq("show",3),a,b,c);for(var g=0,h=this.length;g=e.duration+this.startTime){this.now=this.end,this.pos=this.state=1,this.update(),e.animatedProperties[this.prop]=!0;for(g in e.animatedProperties)e.animatedProperties[g]!==!0&&(c=!1);if(c){e.overflow!=null&&!f.support.shrinkWrapBlocks&&f.each(["","X","Y"],function(a,b){d.style["overflow"+b]=e.overflow[a]}),e.hide&&f(d).hide();if(e.hide||e.show)for(var i in e.animatedProperties)f.style(d,i,e.orig[i]);e.complete.call(d)}return!1}e.duration==Infinity?this.now=b:(h=b-this.startTime,this.state=h/e.duration,this.pos=f.easing[e.animatedProperties[this.prop]](this.state,h,0,1,e.duration),this.now=this.start+(this.end-this.start)*this.pos),this.update();return!0}},f.extend(f.fx,{tick:function(){for(var a=f.timers,b=0;b
    ";f.extend(b.style,{position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"}),b.innerHTML=j,a.insertBefore(b,a.firstChild),d=b.firstChild,e=d.firstChild,h=d.nextSibling.firstChild.firstChild,this.doesNotAddBorder=e.offsetTop!==5,this.doesAddBorderForTableAndCells=h.offsetTop===5,e.style.position="fixed",e.style.top="20px",this.supportsFixedPosition=e.offsetTop===20||e.offsetTop===15,e.style.position=e.style.top="",d.style.overflow="hidden",d.style.position="relative",this.subtractsBorderForOverflowNotVisible=e.offsetTop===-5,this.doesNotIncludeMarginInBodyOffset=a.offsetTop!==i,a.removeChild(b),f.offset.initialize=f.noop},bodyOffset:function(a){var b=a.offsetTop,c=a.offsetLeft;f.offset.initialize(),f.offset.doesNotIncludeMarginInBodyOffset&&(b+=parseFloat(f.css(a,"marginTop"))||0,c+=parseFloat(f.css(a,"marginLeft"))||0);return{top:b,left:c}},setOffset:function(a,b,c){var d=f.css(a,"position");d==="static"&&(a.style.position="relative");var e=f(a),g=e.offset(),h=f.css(a,"top"),i=f.css(a,"left"),j=(d==="absolute"||d==="fixed")&&f.inArray("auto",[h,i])>-1,k={},l={},m,n;j?(l=e.position(),m=l.top,n=l.left):(m=parseFloat(h)||0,n=parseFloat(i)||0),f.isFunction(b)&&(b=b.call(a,c,g)),b.top!=null&&(k.top=b.top-g.top+m),b.left!=null&&(k.left=b.left-g.left+n),"using"in b?b.using.call(a,k):e.css(k)}},f.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),c=this.offset(),d=ct.test(b[0].nodeName)?{top:0,left:0}:b.offset();c.top-=parseFloat(f.css(a,"marginTop"))||0,c.left-=parseFloat(f.css(a,"marginLeft"))||0,d.top+=parseFloat(f.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(f.css(b[0],"borderLeftWidth"))||0;return{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||c.body;while(a&&!ct.test(a.nodeName)&&f.css(a,"position")==="static")a=a.offsetParent;return a})}}),f.each(["Left","Top"],function(a,c){var d="scroll"+c;f.fn[d]=function(c){var e,g;if(c===b){e=this[0];if(!e)return null;g=cu(e);return g?"pageXOffset"in g?g[a?"pageYOffset":"pageXOffset"]:f.support.boxModel&&g.document.documentElement[d]||g.document.body[d]:e[d]}return this.each(function(){g=cu(this),g?g.scrollTo(a?f(g).scrollLeft():c,a?c:f(g).scrollTop()):this[d]=c})}}),f.each(["Height","Width"],function(a,c){var d=c.toLowerCase();f.fn["inner"+c]=function(){var a=this[0];return a&&a.style?parseFloat(f.css(a,d,"padding")):null},f.fn["outer"+c]=function(a){var b=this[0];return b&&b.style?parseFloat(f.css(b,d,a?"margin":"border")):null},f.fn[d]=function(a){var e=this[0];if(!e)return a==null?null:this;if(f.isFunction(a))return this.each(function(b){var c=f(this);c[d](a.call(this,b,c[d]()))});if(f.isWindow(e)){var g=e.document.documentElement["client"+c],h=e.document.body;return e.document.compatMode==="CSS1Compat"&&g||h&&h["client"+c]||g}if(e.nodeType===9)return Math.max(e.documentElement["client"+c],e.body["scroll"+c],e.documentElement["scroll"+c],e.body["offset"+c],e.documentElement["offset"+c]);if(a===b){var i=f.css(e,d),j=parseFloat(i);return f.isNaN(j)?i:j}return this.css(d,typeof a=="string"?a:a+"px")}}),a.jQuery=a.$=f})(window);]]>
    GET/resources/js/jquery-1.6.4.minjsHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/feedback.html
    Hostzero.webappsecurity.com
    Accept*/*
    Accept-Languageen-US,en;q=0.5
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoScriptEngine="Gecko";Category="Crawl";SID="991B71BDF13A5A3607070F31401F18FA";PSID="EA0F5B4A7B2D5822D3AE6FEB6AC0B160";SessionType="Crawl";CrawlType="ScriptInclude";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";tht="21";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="8e3a7a08";
    X-Request-Memorid="97178094";sc="1";thid="116";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1200OK").appendTo(b),e=d.css("display");d.remove();if(e==="none"||e===""){ch||(ch=c.createElement("iframe"),ch.frameBorder=ch.width=ch.height=0),b.appendChild(ch);if(!ci||!ch.createElement)ci=(ch.contentWindow||ch.contentDocument).document,ci.write((c.compatMode==="CSS1Compat"?"":"")+""),ci.close();d=ci.createElement(a),ci.body.appendChild(d),e=f.css(d,"display"),b.removeChild(ch)}cg[a]=e}return cg[a]}function cq(a,b){var c={};f.each(cm.concat.apply([],cm.slice(0,b)),function(){c[this]=a});return c}function cp(){cn=b}function co(){setTimeout(cp,0);return cn=f.now()}function cf(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function ce(){try{return new a.XMLHttpRequest}catch(b){}}function b$(a,c){a.dataFilter&&(c=a.dataFilter(c,a.dataType));var d=a.dataTypes,e={},g,h,i=d.length,j,k=d[0],l,m,n,o,p;for(g=1;g0){c!=="border"&&f.each(e,function(){c||(d-=parseFloat(f.css(a,"padding"+this))||0),c==="margin"?d+=parseFloat(f.css(a,c+this))||0:d-=parseFloat(f.css(a,"border"+this+"Width"))||0});return d+"px"}d=bv(a,b,b);if(d<0||d==null)d=a.style[b]||0;d=parseFloat(d)||0,c&&f.each(e,function(){d+=parseFloat(f.css(a,"padding"+this))||0,c!=="padding"&&(d+=parseFloat(f.css(a,"border"+this+"Width"))||0),c==="margin"&&(d+=parseFloat(f.css(a,c+this))||0)});return d+"px"}function bl(a,b){b.src?f.ajax({url:b.src,async:!1,dataType:"script"}):f.globalEval((b.text||b.textContent||b.innerHTML||"").replace(bd,"/*$0*/")),b.parentNode&&b.parentNode.removeChild(b)}function bk(a){f.nodeName(a,"input")?bj(a):"getElementsByTagName"in a&&f.grep(a.getElementsByTagName("input"),bj)}function bj(a){if(a.type==="checkbox"||a.type==="radio")a.defaultChecked=a.checked}function bi(a){return"getElementsByTagName"in a?a.getElementsByTagName("*"):"querySelectorAll"in a?a.querySelectorAll("*"):[]}function bh(a,b){var c;if(b.nodeType===1){b.clearAttributes&&b.clearAttributes(),b.mergeAttributes&&b.mergeAttributes(a),c=b.nodeName.toLowerCase();if(c==="object")b.outerHTML=a.outerHTML;else if(c!=="input"||a.type!=="checkbox"&&a.type!=="radio"){if(c==="option")b.selected=a.defaultSelected;else if(c==="input"||c==="textarea")b.defaultValue=a.defaultValue}else a.checked&&(b.defaultChecked=b.checked=a.checked),b.value!==a.value&&(b.value=a.value);b.removeAttribute(f.expando)}}function bg(a,b){if(b.nodeType===1&&!!f.hasData(a)){var c=f.expando,d=f.data(a),e=f.data(b,d);if(d=d[c]){var g=d.events;e=e[c]=f.extend({},d);if(g){delete e.handle,e.events={};for(var h in g)for(var i=0,j=g[h].length;i=0===c})}function U(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function M(a,b){return(a&&a!=="*"?a+".":"")+b.replace(y,"`").replace(z,"&")}function L(a){var b,c,d,e,g,h,i,j,k,l,m,n,o,p=[],q=[],r=f._data(this,"events");if(!(a.liveFired===this||!r||!r.live||a.target.disabled||a.button&&a.type==="click")){a.namespace&&(n=new RegExp("(^|\\.)"+a.namespace.split(".").join("\\.(?:.*\\.)?")+"(\\.|$)")),a.liveFired=this;var s=r.live.slice(0);for(i=0;ic)break;a.currentTarget=e.elem,a.data=e.handleObj.data,a.handleObj=e.handleObj,o=e.handleObj.origHandler.apply(e.elem,arguments);if(o===!1||a.isPropagationStopped()){c=e.level,o===!1&&(b=!1);if(a.isImmediatePropagationStopped())break}}return b}}function J(a,c,d){var e=f.extend({},d[0]);e.type=a,e.originalEvent={},e.liveFired=b,f.event.handle.call(c,e),e.isDefaultPrevented()&&d[0].preventDefault()}function D(){return!0}function C(){return!1}function m(a,c,d){var e=c+"defer",g=c+"queue",h=c+"mark",i=f.data(a,e,b,!0);i&&(d==="queue"||!f.data(a,g,b,!0))&&(d==="mark"||!f.data(a,h,b,!0))&&setTimeout(function(){!f.data(a,g,b,!0)&&!f.data(a,h,b,!0)&&(f.removeData(a,e,!0),i.resolve())},0)}function l(a){for(var b in a)if(b!=="toJSON")return!1;return!0}function k(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(j,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:f.isNaN(d)?i.test(d)?f.parseJSON(d):d:parseFloat(d)}catch(g){}f.data(a,c,d)}else d=b}return d}var c=a.document,d=a.navigator,e=a.location,f=function(){function K(){if(!e.isReady){try{c.documentElement.doScroll("left")}catch(a){setTimeout(K,1);return}e.ready()}}var e=function(a,b){return new e.fn.init(a,b,h)},f=a.jQuery,g=a.$,h,i=/^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,j=/\S/,k=/^\s+/,l=/\s+$/,m=/\d/,n=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,o=/^[\],:{}\s]*$/,p=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,q=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,r=/(?:^|:|,)(?:\s*\[)+/g,s=/(webkit)[ \/]([\w.]+)/,t=/(opera)(?:.*version)?[ \/]([\w.]+)/,u=/(msie) ([\w.]+)/,v=/(mozilla)(?:.*? rv:([\w.]+))?/,w=/-([a-z]|[0-9])/ig,x=/^-ms-/,y=function(a,b){return(b+"").toUpperCase()},z=d.userAgent,A,B,C,D=Object.prototype.toString,E=Object.prototype.hasOwnProperty,F=Array.prototype.push,G=Array.prototype.slice,H=String.prototype.trim,I=Array.prototype.indexOf,J={};e.fn=e.prototype={constructor:e,init:function(a,d,f){var g,h,j,k;if(!a)return this;if(a.nodeType){this.context=this[0]=a,this.length=1;return this}if(a==="body"&&!d&&c.body){this.context=c,this[0]=c.body,this.selector=a,this.length=1;return this}if(typeof a=="string"){a.charAt(0)!=="<"||a.charAt(a.length-1)!==">"||a.length<3?g=i.exec(a):g=[null,a,null];if(g&&(g[1]||!d)){if(g[1]){d=d instanceof e?d[0]:d,k=d?d.ownerDocument||d:c,j=n.exec(a),j?e.isPlainObject(d)?(a=[c.createElement(j[1])],e.fn.attr.call(a,d,!0)):a=[k.createElement(j[1])]:(j=e.buildFragment([g[1]],[k]),a=(j.cacheable?e.clone(j.fragment):j.fragment).childNodes);return e.merge(this,a)}h=c.getElementById(g[2]);if(h&&h.parentNode){if(h.id!==g[2])return f.find(a);this.length=1,this[0]=h}this.context=c,this.selector=a;return this}return!d||d.jquery?(d||f).find(a):this.constructor(d).find(a)}if(e.isFunction(a))return f.ready(a);a.selector!==b&&(this.selector=a.selector,this.context=a.context);return e.makeArray(a,this)},selector:"",jquery:"1.6.4",length:0,size:function(){return this.length},toArray:function(){return G.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=this.constructor();e.isArray(a)?F.apply(d,a):e.merge(d,a),d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")");return d},each:function(a,b){return e.each(this,a,b)},ready:function(a){e.bindReady(),B.done(a);return this},eq:function(a){return a===-1?this.slice(a):this.slice(a,+a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(G.apply(this,arguments),"slice",G.call(arguments).join(","))},map:function(a){return this.pushStack(e.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:F,sort:[].sort,splice:[].splice},e.fn.init.prototype=e.fn,e.extend=e.fn.extend=function(){var a,c,d,f,g,h,i=arguments[0]||{},j=1,k=arguments.length,l=!1;typeof i=="boolean"&&(l=i,i=arguments[1]||{},j=2),typeof i!="object"&&!e.isFunction(i)&&(i={}),k===j&&(i=this,--j);for(;j0)return;B.resolveWith(c,[e]),e.fn.trigger&&e(c).trigger("ready").unbind("ready")}},bindReady:function(){if(!B){B=e._Deferred();if(c.readyState==="complete")return setTimeout(e.ready,1);if(c.addEventListener)c.addEventListener("DOMContentLoaded",C,!1),a.addEventListener("load",e.ready,!1);else if(c.attachEvent){c.attachEvent("onreadystatechange",C),a.attachEvent("onload",e.ready);var b=!1;try{b=a.frameElement==null}catch(d){}c.documentElement.doScroll&&b&&K()}}},isFunction:function(a){return e.type(a)==="function"},isArray:Array.isArray||function(a){return e.type(a)==="array"},isWindow:function(a){return a&&typeof a=="object"&&"setInterval"in a},isNaN:function(a){return a==null||!m.test(a)||isNaN(a)},type:function(a){return a==null?String(a):J[D.call(a)]||"object"},isPlainObject:function(a){if(!a||e.type(a)!=="object"||a.nodeType||e.isWindow(a))return!1;try{if(a.constructor&&!E.call(a,"constructor")&&!E.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||E.call(a,d)},isEmptyObject:function(a){for(var b in a)return!1;return!0},error:function(a){throw a},parseJSON:function(b){if(typeof b!="string"||!b)return null;b=e.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(o.test(b.replace(p,"@").replace(q,"]").replace(r,"")))return(new Function("return "+b))();e.error("Invalid JSON: "+b)},parseXML:function(c){var d,f;try{a.DOMParser?(f=new DOMParser,d=f.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(g){d=b}(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&e.error("Invalid XML: "+c);return d},noop:function(){},globalEval:function(b){b&&j.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(x,"ms-").replace(w,y)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,c,d){var f,g=0,h=a.length,i=h===b||e.isFunction(a);if(d){if(i){for(f in a)if(c.apply(a[f],d)===!1)break}else for(;g0&&a[0]&&a[j-1]||j===0||e.isArray(a));if(k)for(;i1?h.call(arguments,0):c,--e||g.resolveWith(g,h.call(b,0))}}var b=arguments,c=0,d=b.length,e=d,g=d<=1&&a&&f.isFunction(a.promise)?a:f.Deferred();if(d>1){for(;c
    a",d=a.getElementsByTagName("*"),e=a.getElementsByTagName("a")[0];if(!d||!d.length||!e)return{};g=c.createElement("select"),h=g.appendChild(c.createElement("option")),i=a.getElementsByTagName("input")[0],k={leadingWhitespace:a.firstChild.nodeType===3,tbody:!a.getElementsByTagName("tbody").length,htmlSerialize:!!a.getElementsByTagName("link").length,style:/top/.test(e.getAttribute("style")),hrefNormalized:e.getAttribute("href")==="/a",opacity:/^0.55$/.test(e.style.opacity),cssFloat:!!e.style.cssFloat,checkOn:i.value==="on",optSelected:h.selected,getSetAttribute:a.className!=="t",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0},i.checked=!0,k.noCloneChecked=i.cloneNode(!0).checked,g.disabled=!0,k.optDisabled=!h.disabled;try{delete a.test}catch(v){k.deleteExpando=!1}!a.addEventListener&&a.attachEvent&&a.fireEvent&&(a.attachEvent("onclick",function(){k.noCloneEvent=!1}),a.cloneNode(!0).fireEvent("onclick")),i=c.createElement("input"),i.value="t",i.setAttribute("type","radio"),k.radioValue=i.value==="t",i.setAttribute("checked","checked"),a.appendChild(i),l=c.createDocumentFragment(),l.appendChild(a.firstChild),k.checkClone=l.cloneNode(!0).cloneNode(!0).lastChild.checked,a.innerHTML="",a.style.width=a.style.paddingLeft="1px",m=c.getElementsByTagName("body")[0],o=c.createElement(m?"div":"body"),p={visibility:"hidden",width:0,height:0,border:0,margin:0,background:"none"},m&&f.extend(p,{position:"absolute",left:"-1000px",top:"-1000px"});for(t in p)o.style[t]=p[t];o.appendChild(a),n=m||b,n.insertBefore(o,n.firstChild),k.appendChecked=i.checked,k.boxModel=a.offsetWidth===2,"zoom"in a.style&&(a.style.display="inline",a.style.zoom=1,k.inlineBlockNeedsLayout=a.offsetWidth===2,a.style.display="",a.innerHTML="
    ",k.shrinkWrapBlocks=a.offsetWidth!==2),a.innerHTML="
    t
    ",q=a.getElementsByTagName("td"),u=q[0].offsetHeight===0,q[0].style.display="",q[1].style.display="none",k.reliableHiddenOffsets=u&&q[0].offsetHeight===0,a.innerHTML="",c.defaultView&&c.defaultView.getComputedStyle&&(j=c.createElement("div"),j.style.width="0",j.style.marginRight="0",a.appendChild(j),k.reliableMarginRight=(parseInt((c.defaultView.getComputedStyle(j,null)||{marginRight:0}).marginRight,10)||0)===0),o.innerHTML="",n.removeChild(o);if(a.attachEvent)for(t in{submit:1,change:1,focusin:1})s="on"+t,u=s in a,u||(a.setAttribute(s,"return;"),u=typeof a[s]=="function"),k[t+"Bubbles"]=u;o=l=g=h=m=j=a=i=null;return k}(),f.boxModel=f.support.boxModel;var i=/^(?:\{.*\}|\[.*\])$/,j=/([A-Z])/g;f.extend({cache:{},uuid:0,expando:"jQuery"+(f.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){a=a.nodeType?f.cache[a[f.expando]]:a[f.expando];return!!a&&!l(a)},data:function(a,c,d,e){if(!!f.acceptData(a)){var g,h,i=f.expando,j=typeof c=="string",k=a.nodeType,l=k?f.cache:a,m=k?a[f.expando]:a[f.expando]&&f.expando;if((!m||e&&m&&l[m]&&!l[m][i])&&j&&d===b)return;m||(k?a[f.expando]=m=++f.uuid:m=f.expando),l[m]||(l[m]={},k||(l[m].toJSON=f.noop));if(typeof c=="object"||typeof c=="function")e?l[m][i]=f.extend(l[m][i],c):l[m]=f.extend(l[m],c);g=l[m],e&&(g[i]||(g[i]={}),g=g[i]),d!==b&&(g[f.camelCase(c)]=d);if(c==="events"&&!g[c])return g[i]&&g[i].events;j?(h=g[c],h==null&&(h=g[f.camelCase(c)])):h=g;return h}},removeData:function(a,b,c){if(!!f.acceptData(a)){var d,e=f.expando,g=a.nodeType,h=g?f.cache:a,i=g?a[f.expando]:f.expando;if(!h[i])return;if(b){d=c?h[i][e]:h[i];if(d){d[b]||(b=f.camelCase(b)),delete d[b];if(!l(d))return}}if(c){delete h[i][e];if(!l(h[i]))return}var j=h[i][e];f.support.deleteExpando||!h.setInterval?delete h[i]:h[i]=null,j?(h[i]={},g||(h[i].toJSON=f.noop),h[i][e]=j):g&&(f.support.deleteExpando?delete a[f.expando]:a.removeAttribute?a.removeAttribute(f.expando):a[f.expando]=null)}},_data:function(a,b,c){return f.data(a,b,c,!0)},acceptData:function(a){if(a.nodeName){var b=f.noData[a.nodeName.toLowerCase()];if(b)return b!==!0&&a.getAttribute("classid")===b}return!0}}),f.fn.extend({data:function(a,c){var d=null;if(typeof a=="undefined"){if(this.length){d=f.data(this[0]);if(this[0].nodeType===1){var e=this[0].attributes,g;for(var h=0,i=e.length;h-1)return!0;return!1},val:function(a){var c,d,e=this[0];if(!arguments.length){if(e){c=f.valHooks[e.nodeName.toLowerCase()]||f.valHooks[e.type];if(c&&"get"in c&&(d=c.get(e,"value"))!==b)return d;d=e.value;return typeof d=="string"?d.replace(p,""):d==null?"":d}return b}var g=f.isFunction(a);return this.each(function(d){var e=f(this),h;if(this.nodeType===1){g?h=a.call(this,d,e.val()):h=a,h==null?h="":typeof h=="number"?h+="":f.isArray(h)&&(h=f.map(h,function(a){return a==null?"":a+""})),c=f.valHooks[this.nodeName.toLowerCase()]||f.valHooks[this.type];if(!c||!("set"in c)||c.set(this,h,"value")===b)this.value=h}})}}),f.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c=a.selectedIndex,d=[],e=a.options,g=a.type==="select-one";if(c<0)return null;for(var h=g?c:0,i=g?c+1:e.length;h=0}),c.length||(a.selectedIndex=-1);return c}}},attrFn:{val:!0,css:!0,html:!0,text:!0,data:!0,width:!0,height:!0,offset:!0},attrFix:{tabindex:"tabIndex"},attr:function(a,c,d,e){var g=a.nodeType;if(!a||g===3||g===8||g===2)return b;if(e&&c in f.attrFn)return f(a)[c](d);if(!("getAttribute"in a))return f.prop(a,c,d);var h,i,j=g!==1||!f.isXMLDoc(a);j&&(c=f.attrFix[c]||c,i=f.attrHooks[c],i||(t.test(c)?i=v:u&&(i=u)));if(d!==b){if(d===null){f.removeAttr(a,c);return b}if(i&&"set"in i&&j&&(h=i.set(a,d,c))!==b)return h;a.setAttribute(c,""+d);return d}if(i&&"get"in i&&j&&(h=i.get(a,c))!==null)return h;h=a.getAttribute(c);return h===null?b:h},removeAttr:function(a,b){var c;a.nodeType===1&&(b=f.attrFix[b]||b,f.attr(a,b,""),a.removeAttribute(b),t.test(b)&&(c=f.propFix[b]||b)in a&&(a[c]=!1))},attrHooks:{type:{set:function(a,b){if(q.test(a.nodeName)&&a.parentNode)f.error("type property can't be changed");else if(!f.support.radioValue&&b==="radio"&&f.nodeName(a,"input")){var c=a.value;a.setAttribute("type",b),c&&(a.value=c);return b}}},value:{get:function(a,b){if(u&&f.nodeName(a,"button"))return u.get(a,b);return b in a?a.value:null},set:function(a,b,c){if(u&&f.nodeName(a,"button"))return u.set(a,b,c);a.value=b}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(a,c,d){var e=a.nodeType;if(!a||e===3||e===8||e===2)return b;var g,h,i=e!==1||!f.isXMLDoc(a);i&&(c=f.propFix[c]||c,h=f.propHooks[c]);return d!==b?h&&"set"in h&&(g=h.set(a,d,c))!==b?g:a[c]=d:h&&"get"in h&&(g=h.get(a,c))!==null?g:a[c]},propHooks:{tabIndex:{get:function(a){var c=a.getAttributeNode("tabindex");return c&&c.specified?parseInt(c.value,10):r.test(a.nodeName)||s.test(a.nodeName)&&a.href?0:b}}}}),f.attrHooks.tabIndex=f.propHooks.tabIndex,v={get:function(a,c){var d;return f.prop(a,c)===!0||(d=a.getAttributeNode(c))&&d.nodeValue!==!1?c.toLowerCase():b},set:function(a,b,c){var d;b===!1?f.removeAttr(a,c):(d=f.propFix[c]||c,d in a&&(a[d]=!0),a.setAttribute(c,c.toLowerCase()));return c}},f.support.getSetAttribute||(u=f.valHooks.button={get:function(a,c){var d;d=a.getAttributeNode(c);return d&&d.nodeValue!==""?d.nodeValue:b},set:function(a,b,d){var e=a.getAttributeNode(d);e||(e=c.createAttribute(d),a.setAttributeNode(e));return e.nodeValue=b+""}},f.each(["width","height"],function(a,b){f.attrHooks[b]=f.extend(f.attrHooks[b],{set:function(a,c){if(c===""){a.setAttribute(b,"auto");return c}}})})),f.support.hrefNormalized||f.each(["href","src","width","height"],function(a,c){f.attrHooks[c]=f.extend(f.attrHooks[c],{get:function(a){var d=a.getAttribute(c,2);return d===null?b:d}})}),f.support.style||(f.attrHooks.style={get:function(a){return a.style.cssText.toLowerCase()||b},set:function(a,b){return a.style.cssText=""+b}}),f.support.optSelected||(f.propHooks.selected=f.extend(f.propHooks.selected,{get:function(a){var b=a.parentNode;b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex);return null}})),f.support.checkOn||f.each(["radio","checkbox"],function(){f.valHooks[this]={get:function(a){return a.getAttribute("value")===null?"on":a.value}}}),f.each(["radio","checkbox"],function(){f.valHooks[this]=f.extend(f.valHooks[this],{set:function(a,b){if(f.isArray(b))return a.checked=f.inArray(f(a).val(),b)>=0}})});var w=/\.(.*)$/,x=/^(?:textarea|input|select)$/i,y=/\./g,z=/ /g,A=/[^\w\s.|`]/g,B=function(a){return a.replace(A,"\\$&")};f.event={add:function(a,c,d,e){if(a.nodeType!==3&&a.nodeType!==8){if(d===!1)d=C;else if(!d)return;var g,h;d.handler&&(g=d,d=g.handler),d.guid||(d.guid=f.guid++);var i=f._data(a);if(!i)return;var j=i.events,k=i.handle;j||(i.events=j={}),k||(i.handle=k=function(a){return typeof f!="undefined"&&(!a||f.event.triggered!==a.type)?f.event.handle.apply(k.elem,arguments):b}),k.elem=a,c=c.split(" ");var l,m=0,n;while(l=c[m++]){h=g?f.extend({},g):{handler:d,data:e},l.indexOf(".")>-1?(n=l.split("."),l=n.shift(),h.namespace=n.slice(0).sort().join(".")):(n=[],h.namespace=""),h.type=l,h.guid||(h.guid=d.guid);var o=j[l],p=f.event.special[l]||{};if(!o){o=j[l]=[];if(!p.setup||p.setup.call(a,e,n,k)===!1)a.addEventListener?a.addEventListener(l,k,!1):a.attachEvent&&a.attachEvent("on"+l,k)}p.add&&(p.add.call(a,h),h.handler.guid||(h.handler.guid=d.guid)),o.push(h),f.event.global[l]=!0}a=null}},global:{},remove:function(a,c,d,e){if(a.nodeType!==3&&a.nodeType!==8){d===!1&&(d=C);var g,h,i,j,k=0,l,m,n,o,p,q,r,s=f.hasData(a)&&f._data(a),t=s&&s.events;if(!s||!t)return;c&&c.type&&(d=c.handler,c=c.type);if(!c||typeof c=="string"&&c.charAt(0)==="."){c=c||"";for(h in t)f.event.remove(a,h+c);return}c=c.split(" ");while(h=c[k++]){r=h,q=null,l=h.indexOf(".")<0,m=[],l||(m=h.split("."),h=m.shift(),n=new RegExp("(^|\\.)"+f.map(m.slice(0).sort(),B).join("\\.(?:.*\\.)?")+"(\\.|$)")),p=t[h];if(!p)continue;if(!d){for(j=0;j=0&&(h=h.slice(0,-1),j=!0),h.indexOf(".")>=0&&(i=h.split("."),h=i.shift(),i.sort());if(!!e&&!f.event.customEvent[h]||!!f.event.global[h]){c=typeof c=="object"?c[f.expando]?c:new f.Event(h,c):new f.Event(h),c.type=h,c.exclusive=j,c.namespace=i.join("."),c.namespace_re=new RegExp("(^|\\.)"+i.join("\\.(?:.*\\.)?")+"(\\.|$)");if(g||!e)c.preventDefault(),c.stopPropagation();if(!e){f.each(f.cache,function(){var a=f.expando,b=this[a];b&&b.events&&b.events[h]&&f.event.trigger(c,d,b.handle.elem)});return}if(e.nodeType===3||e.nodeType===8)return;c.result=b,c.target=e,d=d!=null?f.makeArray(d):[],d.unshift(c);var k=e,l=h.indexOf(":")<0?"on"+h:"";do{var m=f._data(k,"handle");c.currentTarget=k,m&&m.apply(k,d),l&&f.acceptData(k)&&k[l]&&k[l].apply(k,d)===!1&&(c.result=!1,c.preventDefault()),k=k.parentNode||k.ownerDocument||k===c.target.ownerDocument&&a}while(k&&!c.isPropagationStopped());if(!c.isDefaultPrevented()){var n,o=f.event.special[h]||{};if((!o._default||o._default.call(e.ownerDocument,c)===!1)&&(h!=="click"||!f.nodeName(e,"a"))&&f.acceptData(e)){try{l&&e[h]&&(n=e[l],n&&(e[l]=null),f.event.triggered=h,e[h]())}catch(p){}n&&(e[l]=n),f.event.triggered=b}}return c.result}},handle:function(c){c=f.event.fix(c||a.event);var d=((f._data(this,"events")||{})[c.type]||[]).slice(0),e=!c.exclusive&&!c.namespace,g=Array.prototype.slice.call(arguments,0);g[0]=c,c.currentTarget=this;for(var h=0,i=d.length;h-1?f.map(a.options,function(a){return a.selected}).join("-"):"":f.nodeName(a,"select")&&(c=a.selectedIndex);return c},I=function(c){var d=c.target,e,g;if(!!x.test(d.nodeName)&&!d.readOnly){e=f._data(d,"_change_data"),g=H(d),(c.type!=="focusout"||d.type!=="radio")&&f._data(d,"_change_data",g);if(e===b||g===e)return;if(e!=null||g)c.type="change",c.liveFired=b,f.event.trigger(c,arguments[1],d)}};f.event.special.change={filters:{focusout:I,beforedeactivate:I,click:function(a){var b=a.target,c=f.nodeName(b,"input")?b.type:"";(c==="radio"||c==="checkbox"||f.nodeName(b,"select"))&&I.call(this,a)},keydown:function(a){var b=a.target,c=f.nodeName(b,"input")?b.type:"";(a.keyCode===13&&!f.nodeName(b,"textarea")||a.keyCode===32&&(c==="checkbox"||c==="radio")||c==="select-multiple")&&I.call(this,a)},beforeactivate:function(a){var b=a.target;f._data(b,"_change_data",H(b))}},setup:function(a,b){if(this.type==="file")return!1;for(var c in G)f.event.add(this,c+".specialChange",G[c]);return x.test(this.nodeName)},teardown:function(a){f.event.remove(this,".specialChange");return x.test(this.nodeName)}},G=f.event.special.change.filters,G.focus=G.beforeactivate}f.support.focusinBubbles||f.each({focus:"focusin",blur:"focusout"},function(a,b){function e(a){var c=f.event.fix(a);c.type=b,c.originalEvent={},f.event.trigger(c,null,c.target),c.isDefaultPrevented()&&a.preventDefault()}var d=0;f.event.special[b]={setup:function(){d++===0&&c.addEventListener(a,e,!0)},teardown:function(){--d===0&&c.removeEventListener(a,e,!0)}}}),f.each(["bind","one"],function(a,c){f.fn[c]=function(a,d,e){var g;if(typeof a=="object"){for(var h in a)this[c](h,d,a[h],e);return this}if(arguments.length===2||d===!1)e=d,d=b;c==="one"?(g=function(a){f(this).unbind(a,g);return e.apply(this,arguments)},g.guid=e.guid||f.guid++):g=e;if(a==="unload"&&c!=="one")this.one(a,d,e);else for(var i=0,j=this.length;i0?this.bind(b,a,c):this.trigger(b)},f.attrFn&&(f.attrFn[b]=!0)}),function(){function u(a,b,c,d,e,f){for(var g=0,h=d.length;g0){j=i;break}}i=i[a]}d[g]=j}}}function t(a,b,c,d,e,f){for(var g=0,h=d.length;g+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,d=0,e=Object.prototype.toString,g=!1,h=!0,i=/\\/g,j=/\W/;[0,0].sort(function(){h=!1;return 0});var k=function(b,d,f,g){f=f||[],d=d||c;var h=d;if(d.nodeType!==1&&d.nodeType!==9)return[];if(!b||typeof b!="string")return f;var i,j,n,o,q,r,s,t,u=!0,w=k.isXML(d),x=[],y=b;do{a.exec(""),i=a.exec(y);if(i){y=i[3],x.push(i[1]);if(i[2]){o=i[3];break}}}while(i);if(x.length>1&&m.exec(b))if(x.length===2&&l.relative[x[0]])j=v(x[0]+x[1],d);else{j=l.relative[x[0]]?[d]:k(x.shift(),d);while(x.length)b=x.shift(),l.relative[b]&&(b+=x.shift()),j=v(b,j)}else{!g&&x.length>1&&d.nodeType===9&&!w&&l.match.ID.test(x[0])&&!l.match.ID.test(x[x.length-1])&&(q=k.find(x.shift(),d,w),d=q.expr?k.filter(q.expr,q.set)[0]:q.set[0]);if(d){q=g?{expr:x.pop(),set:p(g)}:k.find(x.pop(),x.length===1&&(x[0]==="~"||x[0]==="+")&&d.parentNode?d.parentNode:d,w),j=q.expr?k.filter(q.expr,q.set):q.set,x.length>0?n=p(j):u=!1;while(x.length)r=x.pop(),s=r,l.relative[r]?s=x.pop():r="",s==null&&(s=d),l.relative[r](n,s,w)}else n=x=[]}n||(n=j),n||k.error(r||b);if(e.call(n)==="[object Array]")if(!u)f.push.apply(f,n);else if(d&&d.nodeType===1)for(t=0;n[t]!=null;t++)n[t]&&(n[t]===!0||n[t].nodeType===1&&k.contains(d,n[t]))&&f.push(j[t]);else for(t=0;n[t]!=null;t++)n[t]&&n[t].nodeType===1&&f.push(j[t]);else p(n,f);o&&(k(o,h,f,g),k.uniqueSort(f));return f};k.uniqueSort=function(a){if(r){g=h,a.sort(r);if(g)for(var b=1;b0},k.find=function(a,b,c){var d;if(!a)return[];for(var e=0,f=l.order.length;e":function(a,b){var c,d=typeof b=="string",e=0,f=a.length;if(d&&!j.test(b)){b=b.toLowerCase();for(;e=0)?c||d.push(h):c&&(b[g]=!1));return!1},ID:function(a){return a[1].replace(i,"")},TAG:function(a,b){return a[1].replace(i,"").toLowerCase()},CHILD:function(a){if(a[1]==="nth"){a[2]||k.error(a[0]),a[2]=a[2].replace(/^\+|\s*/g,"");var b=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(a[2]==="even"&&"2n"||a[2]==="odd"&&"2n+1"||!/\D/.test(a[2])&&"0n+"+a[2]||a[2]);a[2]=b[1]+(b[2]||1)-0,a[3]=b[3]-0}else a[2]&&k.error(a[0]);a[0]=d++;return a},ATTR:function(a,b,c,d,e,f){var g=a[1]=a[1].replace(i,"");!f&&l.attrMap[g]&&(a[1]=l.attrMap[g]),a[4]=(a[4]||a[5]||"").replace(i,""),a[2]==="~="&&(a[4]=" "+a[4]+" ");return a},PSEUDO:function(b,c,d,e,f){if(b[1]==="not")if((a.exec(b[3])||"").length>1||/^\w/.test(b[3]))b[3]=k(b[3],null,null,c);else{var g=k.filter(b[3],c,d,!0^f);d||e.push.apply(e,g);return!1}else if(l.match.POS.test(b[0])||l.match.CHILD.test(b[0]))return!0;return b},POS:function(a){a.unshift(!0);return a}},filters:{enabled:function(a){return a.disabled===!1&&a.type!=="hidden"},disabled:function(a){return a.disabled===!0},checked:function(a){return a.checked===!0},selected:function(a){a.parentNode&&a.parentNode.selectedIndex;return a.selected===!0},parent:function(a){return!!a.firstChild},empty:function(a){return!a.firstChild},has:function(a,b,c){return!!k(c[3],a).length},header:function(a){return/h\d/i.test(a.nodeName)},text:function(a){var b=a.getAttribute("type"),c=a.type;return a.nodeName.toLowerCase()==="input"&&"text"===c&&(b===c||b===null)},radio:function(a){return a.nodeName.toLowerCase()==="input"&&"radio"===a.type},checkbox:function(a){return a.nodeName.toLowerCase()==="input"&&"checkbox"===a.type},file:function(a){return a.nodeName.toLowerCase()==="input"&&"file"===a.type},password:function(a){return a.nodeName.toLowerCase()==="input"&&"password"===a.type},submit:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"submit"===a.type},image:function(a){return a.nodeName.toLowerCase()==="input"&&"image"===a.type},reset:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"reset"===a.type},button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&"button"===a.type||b==="button"},input:function(a){return/input|select|textarea|button/i.test(a.nodeName)},focus:function(a){return a===a.ownerDocument.activeElement}},setFilters:{first:function(a,b){return b===0},last:function(a,b,c,d){return b===d.length-1},even:function(a,b){return b%2===0},odd:function(a,b){return b%2===1},lt:function(a,b,c){return bc[3]-0},nth:function(a,b,c){return c[3]-0===b},eq:function(a,b,c){return c[3]-0===b}},filter:{PSEUDO:function(a,b,c,d){var e=b[1],f=l.filters[e];if(f)return f(a,c,b,d);if(e==="contains")return(a.textContent||a.innerText||k.getText([a])||"").indexOf(b[3])>=0;if(e==="not"){var g=b[3];for(var h=0,i=g.length;h=0}},ID:function(a,b){return a.nodeType===1&&a.getAttribute("id")===b},TAG:function(a,b){return b==="*"&&a.nodeType===1||a.nodeName.toLowerCase()===b},CLASS:function(a,b){return(" "+(a.className||a.getAttribute("class"))+" ").indexOf(b)>-1},ATTR:function(a,b){var c=b[1],d=l.attrHandle[c]?l.attrHandle[c](a):a[c]!=null?a[c]:a.getAttribute(c),e=d+"",f=b[2],g=b[4];return d==null?f==="!=":f==="="?e===g:f==="*="?e.indexOf(g)>=0:f==="~="?(" "+e+" ").indexOf(g)>=0:g?f==="!="?e!==g:f==="^="?e.indexOf(g)===0:f==="$="?e.substr(e.length-g.length)===g:f==="|="?e===g||e.substr(0,g.length+1)===g+"-":!1:e&&d!==!1},POS:function(a,b,c,d){var e=b[2],f=l.setFilters[e];if(f)return f(a,c,b,d)}}},m=l.match.POS,n=function(a,b){return"\\"+(b-0+1)};for(var o in l.match)l.match[o]=new RegExp(l.match[o].source+/(?![^\[]*\])(?![^\(]*\))/.source),l.leftMatch[o]=new RegExp(/(^(?:.|\r|\n)*?)/.source+l.match[o].source.replace(/\\(\d+)/g,n));var p=function(a,b){a=Array.prototype.slice.call(a,0);if(b){b.push.apply(b,a);return b}return a};try{Array.prototype.slice.call(c.documentElement.childNodes,0)[0].nodeType}catch(q){p=function(a,b){var c=0,d=b||[];if(e.call(a)==="[object Array]")Array.prototype.push.apply(d,a);else if(typeof a.length=="number")for(var f=a.length;c",e.insertBefore(a,e.firstChild),c.getElementById(d)&&(l.find.ID=function(a,c,d){if(typeof c.getElementById!="undefined"&&!d){var e=c.getElementById(a[1]);return e?e.id===a[1]||typeof e.getAttributeNode!="undefined"&&e.getAttributeNode("id").nodeValue===a[1]?[e]:b:[]}},l.filter.ID=function(a,b){var c=typeof a.getAttributeNode!="undefined"&&a.getAttributeNode("id");return a.nodeType===1&&c&&c.nodeValue===b}),e.removeChild(a),e=a=null}(),function(){var a=c.createElement("div");a.appendChild(c.createComment("")),a.getElementsByTagName("*").length>0&&(l.find.TAG=function(a,b){var c=b.getElementsByTagName(a[1]);if(a[1]==="*"){var d=[];for(var e=0;c[e];e++)c[e].nodeType===1&&d.push(c[e]);c=d}return c}),a.innerHTML="",a.firstChild&&typeof a.firstChild.getAttribute!="undefined"&&a.firstChild.getAttribute("href")!=="#"&&(l.attrHandle.href=function(a){return a.getAttribute("href",2)}),a=null}(),c.querySelectorAll&&function(){var a=k,b=c.createElement("div"),d="__sizzle__";b.innerHTML="

    ";if(!b.querySelectorAll||b.querySelectorAll(".TEST").length!==0){k=function(b,e,f,g){e=e||c;if(!g&&!k.isXML(e)){var h=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(b);if(h&&(e.nodeType===1||e.nodeType===9)){if(h[1])return p(e.getElementsByTagName(b),f);if(h[2]&&l.find.CLASS&&e.getElementsByClassName)return p(e.getElementsByClassName(h[2]),f)}if(e.nodeType===9){if(b==="body"&&e.body)return p([e.body],f);if(h&&h[3]){var i=e.getElementById(h[3]);if(!i||!i.parentNode)return p([],f);if(i.id===h[3])return p([i],f)}try{return p(e.querySelectorAll(b),f)}catch(j){}}else if(e.nodeType===1&&e.nodeName.toLowerCase()!=="object"){var m=e,n=e.getAttribute("id"),o=n||d,q=e.parentNode,r=/^\s*[+~]/.test(b);n?o=o.replace(/'/g,"\\$&"):e.setAttribute("id",o),r&&q&&(e=e.parentNode);try{if(!r||q)return p(e.querySelectorAll("[id='"+o+"'] "+b),f)}catch(s){}finally{n||m.removeAttribute("id")}}}return a(b,e,f,g)};for(var e in a)k[e]=a[e];b=null}}(),function(){var a=c.documentElement,b=a.matchesSelector||a.mozMatchesSelector||a.webkitMatchesSelector||a.msMatchesSelector;if(b){var d=!b.call(c.createElement("div"),"div"),e=!1;try{b.call(c.documentElement,"[test!='']:sizzle")}catch(f){e=!0}k.matchesSelector=function(a,c){c=c.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!k.isXML(a))try{if(e||!l.match.PSEUDO.test(c)&&!/!=/.test(c)){var f=b.call(a,c);if(f||!d||a.document&&a.document.nodeType!==11)return f}}catch(g){}return k(c,null,null,[a]).length>0}}}(),function(){var a=c.createElement("div");a.innerHTML="
    ";if(!!a.getElementsByClassName&&a.getElementsByClassName("e").length!==0){a.lastChild.className="e";if(a.getElementsByClassName("e").length===1)return;l.order.splice(1,0,"CLASS"),l.find.CLASS=function(a,b,c){if(typeof b.getElementsByClassName!="undefined"&&!c)return b.getElementsByClassName(a[1])},a=null}}(),c.documentElement.contains?k.contains=function(a,b){return a!==b&&(a.contains?a.contains(b):!0)}:c.documentElement.compareDocumentPosition?k.contains=function(a,b){return!!(a.compareDocumentPosition(b)&16)}:k.contains=function(){return!1},k.isXML=function(a){var b=(a?a.ownerDocument||a:0).documentElement;return b?b.nodeName!=="HTML":!1};var v=function(a,b){var c,d=[],e="",f=b.nodeType?[b]:b;while(c=l.match.PSEUDO.exec(a))e+=c[0],a=a.replace(l.match.PSEUDO,"");a=l.relative[a]?a+"*":a;for(var g=0,h=f.length;g0)for(h=g;h0:this.filter(a).length>0)},closest:function(a,b){var c=[],d,e,g=this[0];if(f.isArray(a)){var h,i,j={},k=1;if(g&&a.length){for(d=0,e=a.length;d-1:f(g).is(h))&&c.push({selector:i,elem:g,level:k});g=g.parentNode,k++}}return c}var l=S.test(a)||typeof a!="string"?f(a,b||this.context):0;for(d=0,e=this.length;d-1:f.find.matchesSelector(g,a)){c.push(g);break}g=g.parentNode;if(!g||!g.ownerDocument||g===b||g.nodeType===11)break}}c=c.length>1?f.unique(c):c;return this.pushStack(c,"closest",a)},index:function(a){if(!a)return this[0]&&this[0].parentNode?this.prevAll().length:-1;if(typeof a=="string")return f.inArray(this[0],f(a));return f.inArray(a.jquery?a[0]:a,this)},add:function(a,b){var c=typeof a=="string"?f(a,b):f.makeArray(a&&a.nodeType?[a]:a),d=f.merge(this.get(),c);return this.pushStack(U(c[0])||U(d[0])?d:f.unique(d))},andSelf:function(){return this.add(this.prevObject)}}),f.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return f.dir(a,"parentNode")},parentsUntil:function(a,b,c){return f.dir(a,"parentNode",c)},next:function(a){return f.nth(a,2,"nextSibling")},prev:function(a){return f.nth(a,2,"previousSibling")},nextAll:function(a){return f.dir(a,"nextSibling")},prevAll:function(a){return f.dir(a,"previousSibling")},nextUntil:function(a,b,c){return f.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return f.dir(a,"previousSibling",c)},siblings:function(a){return f.sibling(a.parentNode.firstChild,a)},children:function(a){return f.sibling(a.firstChild)},contents:function(a){return f.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:f.makeArray(a.childNodes)}},function(a,b){f.fn[a]=function(c,d){var e=f.map(this,b,c),g=R.call(arguments);N.test(a)||(d=c),d&&typeof d=="string"&&(e=f.filter(d,e)),e=this.length>1&&!T[a]?f.unique(e):e,(this.length>1||P.test(d))&&O.test(a)&&(e=e.reverse());return this.pushStack(e,a,g.join(","))}}),f.extend({filter:function(a,b,c){c&&(a=":not("+a+")");return b.length===1?f.find.matchesSelector(b[0],a)?[b[0]]:[]:f.find.matches(a,b)},dir:function(a,c,d){var e=[],g=a[c];while(g&&g.nodeType!==9&&(d===b||g.nodeType!==1||!f(g).is(d)))g.nodeType===1&&e.push(g),g=g[c];return e},nth:function(a,b,c,d){b=b||1;var e=0;for(;a;a=a[c])if(a.nodeType===1&&++e===b)break;return a},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var W=/ jQuery\d+="(?:\d+|null)"/g,X=/^\s+/,Y=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,Z=/<([\w:]+)/,$=/",""],legend:[1,"
    ","
    "],thead:[1,"","
    "],tr:[2,"","
    "],td:[3,"","
    "],col:[2,"","
    "],area:[1,"",""],_default:[0,"",""]};be.optgroup=be.option,be.tbody=be.tfoot=be.colgroup=be.caption=be.thead,be.th=be.td,f.support.htmlSerialize||(be._default=[1,"div
    ","
    "]),f.fn.extend({text:function(a){if(f.isFunction(a))return this.each(function(b){var c=f(this);c.text(a.call(this,b,c.text()))});if(typeof a!="object"&&a!==b)return this.empty().append((this[0]&&this[0].ownerDocument||c).createTextNode(a));return f.text(this)},wrapAll:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapAll(a.call(this,b))});if(this[0]){var b=f(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapInner(a.call(this,b))});return this.each(function(){var b=f(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){return this.each(function(){f(this).wrapAll(a)})},unwrap:function(){return this.parent().each(function(){f.nodeName(this,"body")||f(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=f(arguments[0]);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,f(arguments[0]).toArray());return a}},remove:function(a,b){for(var c=0,d;(d=this[c])!=null;c++)if(!a||f.filter(a,[d]).length)!b&&d.nodeType===1&&(f.cleanData(d.getElementsByTagName("*")),f.cleanData([d])),d.parentNode&&d.parentNode.removeChild(d);return this},empty:function(){for(var a=0,b;(b=this[a])!=null;a++){b.nodeType===1&&f.cleanData(b.getElementsByTagName("*"));while(b.firstChild)b.removeChild(b.firstChild)}return this},clone:function(a,b){a=a==null?!1:a,b=b==null?a:b;return this.map(function(){return f.clone(this,a,b)})},html:function(a){if(a===b)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(W,""):null;if(typeof a=="string"&&!ba.test(a)&&(f.support.leadingWhitespace||!X.test(a))&&!be[(Z.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Y,"<$1>");try{for(var c=0,d=this.length;c1&&l0?this.clone(!0):this).get();f(e[h])[b](j),d=d.concat(j)}return this.pushStack(d,a,e.selector)}}),f.extend({clone:function(a,b,c){var d=a.cloneNode(!0),e,g,h;if((!f.support.noCloneEvent||!f.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!f.isXMLDoc(a)){bh(a,d),e=bi(a),g=bi(d);for(h=0;e[h];++h)g[h]&&bh(e[h],g[h])}if(b){bg(a,d);if(c){e=bi(a),g=bi(d);for(h=0;e[h];++h)bg(e[h],g[h])}}e=g=null;return d},clean:function(a,b,d,e){var g;b=b||c,typeof b.createElement=="undefined"&&(b=b.ownerDocument||b[0]&&b[0].ownerDocument||c);var h=[],i;for(var j=0,k;(k=a[j])!=null;j++){typeof k=="number"&&(k+="");if(!k)continue;if(typeof k=="string")if(!_.test(k))k=b.createTextNode(k);else{k=k.replace(Y,"<$1>");var l=(Z.exec(k)||["",""])[1].toLowerCase(),m=be[l]||be._default,n=m[0],o=b.createElement("div");o.innerHTML=m[1]+k+m[2];while(n--)o=o.lastChild;if(!f.support.tbody){var p=$.test(k),q=l==="table"&&!p?o.firstChild&&o.firstChild.childNodes:m[1]===""&&!p?o.childNodes:[];for(i=q.length-1;i>=0;--i)f.nodeName(q[i],"tbody")&&!q[i].childNodes.length&&q[i].parentNode.removeChild(q[i])}!f.support.leadingWhitespace&&X.test(k)&&o.insertBefore(b.createTextNode(X.exec(k)[0]),o.firstChild),k=o.childNodes}var r;if(!f.support.appendChecked)if(k[0]&&typeof (r=k.length)=="number")for(i=0;i=0)return b+"px"}}}),f.support.opacity||(f.cssHooks.opacity={get:function(a,b){return bn.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=f.isNaN(b)?"":"alpha(opacity="+b*100+")",g=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&f.trim(g.replace(bm,""))===""){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bm.test(g)?g.replace(bm,e):g+" "+e}}),f(function(){f.support.reliableMarginRight||(f.cssHooks.marginRight={get:function(a,b){var c;f.swap(a,{display:"inline-block"},function(){b?c=bv(a,"margin-right","marginRight"):c=a.style.marginRight});return c}})}),c.defaultView&&c.defaultView.getComputedStyle&&(bw=function(a,c){var d,e,g;c=c.replace(bo,"-$1").toLowerCase();if(!(e=a.ownerDocument.defaultView))return b;if(g=e.getComputedStyle(a,null))d=g.getPropertyValue(c),d===""&&!f.contains(a.ownerDocument.documentElement,a)&&(d=f.style(a,c));return d}),c.documentElement.currentStyle&&(bx=function(a,b){var c,d=a.currentStyle&&a.currentStyle[b],e=a.runtimeStyle&&a.runtimeStyle[b],f=a.style;!bp.test(d)&&bq.test(d)&&(c=f.left,e&&(a.runtimeStyle.left=a.currentStyle.left),f.left=b==="fontSize"?"1em":d||0,d=f.pixelLeft+"px",f.left=c,e&&(a.runtimeStyle.left=e));return d===""?"auto":d}),bv=bw||bx,f.expr&&f.expr.filters&&(f.expr.filters.hidden=function(a){var b=a.offsetWidth,c=a.offsetHeight;return b===0&&c===0||!f.support.reliableHiddenOffsets&&(a.style.display||f.css(a,"display"))==="none"},f.expr.filters.visible=function(a){return!f.expr.filters.hidden(a)});var bz=/%20/g,bA=/\[\]$/,bB=/\r?\n/g,bC=/#.*$/,bD=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,bE=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,bF=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,bG=/^(?:GET|HEAD)$/,bH=/^\/\//,bI=/\?/,bJ=/)<[^<]*)*<\/script>/gi,bK=/^(?:select|textarea)/i,bL=/\s+/,bM=/([?&])_=[^&]*/,bN=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/,bO=f.fn.load,bP={},bQ={},bR,bS,bT=["*/"]+["*"];try{bR=e.href}catch(bU){bR=c.createElement("a"),bR.href="",bR=bR.href}bS=bN.exec(bR.toLowerCase())||[],f.fn.extend({load:function(a,c,d){if(typeof a!="string"&&bO)return bO.apply(this,arguments);if(!this.length)return this;var e=a.indexOf(" ");if(e>=0){var g=a.slice(e,a.length);a=a.slice(0,e)}var h="GET";c&&(f.isFunction(c)?(d=c,c=b):typeof c=="object"&&(c=f.param(c,f.ajaxSettings.traditional),h="POST"));var i=this;f.ajax({url:a,type:h,dataType:"html",data:c,complete:function(a,b,c){c=a.responseText,a.isResolved()&&(a.done(function(a){c=a}),i.html(g?f("
    ").append(c.replace(bJ,"")).find(g):c)),d&&i.each(d,[c,b,a])}});return this},serialize:function(){return f.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?f.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||bK.test(this.nodeName)||bE.test(this.type))}).map(function(a,b){var c=f(this).val();return c==null?null:f.isArray(c)?f.map(c,function(a,c){return{name:b.name,value:a.replace(bB,"\r\n")}}):{name:b.name,value:c.replace(bB,"\r\n")}}).get()}}),f.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){f.fn[b]=function(a){return this.bind(b,a)}}),f.each(["get","post"],function(a,c){f[c]=function(a,d,e,g){f.isFunction(d)&&(g=g||e,e=d,d=b);return f.ajax({type:c,url:a,data:d,success:e,dataType:g})}}),f.extend({getScript:function(a,c){return f.get(a,b,c,"script")},getJSON:function(a,b,c){return f.get(a,b,c,"json")},ajaxSetup:function(a,b){b?bX(a,f.ajaxSettings):(b=a,a=f.ajaxSettings),bX(a,b);return a},ajaxSettings:{url:bR,isLocal:bF.test(bS[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":bT},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":f.parseJSON,"text xml":f.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:bV(bP),ajaxTransport:bV(bQ),ajax:function(a,c){function w(a,c,l,m){if(s!==2){s=2,q&&clearTimeout(q),p=b,n=m||"",v.readyState=a>0?4:0;var o,r,u,w=c,x=l?bZ(d,v,l):b,y,z;if(a>=200&&a<300||a===304){if(d.ifModified){if(y=v.getResponseHeader("Last-Modified"))f.lastModified[k]=y;if(z=v.getResponseHeader("Etag"))f.etag[k]=z}if(a===304)w="notmodified",o=!0;else try{r=b$(d,x),w="success",o=!0}catch(A){w="parsererror",u=A}}else{u=w;if(!w||a)w="error",a<0&&(a=0)}v.status=a,v.statusText=""+(c||w),o?h.resolveWith(e,[r,w,v]):h.rejectWith(e,[v,w,u]),v.statusCode(j),j=b,t&&g.trigger("ajax"+(o?"Success":"Error"),[v,d,o?r:u]),i.resolveWith(e,[v,w]),t&&(g.trigger("ajaxComplete",[v,d]),--f.active||f.event.trigger("ajaxStop"))}}typeof a=="object"&&(c=a,a=b),c=c||{};var d=f.ajaxSetup({},c),e=d.context||d,g=e!==d&&(e.nodeType||e instanceof f)?f(e):f.event,h=f.Deferred(),i=f._Deferred(),j=d.statusCode||{},k,l={},m={},n,o,p,q,r,s=0,t,u,v={readyState:0,setRequestHeader:function(a,b){if(!s){var c=a.toLowerCase();a=m[c]=m[c]||a,l[a]=b}return this},getAllResponseHeaders:function(){return s===2?n:null},getResponseHeader:function(a){var c;if(s===2){if(!o){o={};while(c=bD.exec(n))o[c[1].toLowerCase()]=c[2]}c=o[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){s||(d.mimeType=a);return this},abort:function(a){a=a||"abort",p&&p.abort(a),w(0,a);return this}};h.promise(v),v.success=v.done,v.error=v.fail,v.complete=i.done,v.statusCode=function(a){if(a){var b;if(s<2)for(b in a)j[b]=[j[b],a[b]];else b=a[v.status],v.then(b,b)}return this},d.url=((a||d.url)+"").replace(bC,"").replace(bH,bS[1]+"//"),d.dataTypes=f.trim(d.dataType||"*").toLowerCase().split(bL),d.crossDomain==null&&(r=bN.exec(d.url.toLowerCase()),d.crossDomain=!(!r||r[1]==bS[1]&&r[2]==bS[2]&&(r[3]||(r[1]==="http:"?80:443))==(bS[3]||(bS[1]==="http:"?80:443)))),d.data&&d.processData&&typeof d.data!="string"&&(d.data=f.param(d.data,d.traditional)),bW(bP,d,c,v);if(s===2)return!1;t=d.global,d.type=d.type.toUpperCase(),d.hasContent=!bG.test(d.type),t&&f.active++===0&&f.event.trigger("ajaxStart");if(!d.hasContent){d.data&&(d.url+=(bI.test(d.url)?"&":"?")+d.data,delete d.data),k=d.url;if(d.cache===!1){var x=f.now(),y=d.url.replace(bM,"$1_="+x);d.url=y+(y===d.url?(bI.test(d.url)?"&":"?")+"_="+x:"")}}(d.data&&d.hasContent&&d.contentType!==!1||c.contentType)&&v.setRequestHeader("Content-Type",d.contentType),d.ifModified&&(k=k||d.url,f.lastModified[k]&&v.setRequestHeader("If-Modified-Since",f.lastModified[k]),f.etag[k]&&v.setRequestHeader("If-None-Match",f.etag[k])),v.setRequestHeader("Accept",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+(d.dataTypes[0]!=="*"?", "+bT+"; q=0.01":""):d.accepts["*"]);for(u in d.headers)v.setRequestHeader(u,d.headers[u]);if(d.beforeSend&&(d.beforeSend.call(e,v,d)===!1||s===2)){v.abort();return!1}for(u in{success:1,error:1,complete:1})v[u](d[u]);p=bW(bQ,d,c,v);if(!p)w(-1,"No Transport");else{v.readyState=1,t&&g.trigger("ajaxSend",[v,d]),d.async&&d.timeout>0&&(q=setTimeout(function(){v.abort("timeout")},d.timeout));try{s=1,p.send(l,w)}catch(z){s<2?w(-1,z):f.error(z)}}return v},param:function(a,c){var d=[],e=function(a,b){b=f.isFunction(b)?b():b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=f.ajaxSettings.traditional);if(f.isArray(a)||a.jquery&&!f.isPlainObject(a))f.each(a,function(){e(this.name,this.value)});else for(var g in a)bY(g,a[g],c,e);return d.join("&").replace(bz,"+")}}),f.extend({active:0,lastModified:{},etag:{}});var b_=f.now(),ca=/(\=)\?(&|$)|\?\?/i;f.ajaxSetup({jsonp:"callback",jsonpCallback:function(){return f.expando+"_"+b_++}}),f.ajaxPrefilter("json jsonp",function(b,c,d){var e=b.contentType==="application/x-www-form-urlencoded"&&typeof b.data=="string";if(b.dataTypes[0]==="jsonp"||b.jsonp!==!1&&(ca.test(b.url)||e&&ca.test(b.data))){var g,h=b.jsonpCallback=f.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,i=a[h],j=b.url,k=b.data,l="$1"+h+"$2";b.jsonp!==!1&&(j=j.replace(ca,l),b.url===j&&(e&&(k=k.replace(ca,l)),b.data===k&&(j+=(/\?/.test(j)?"&":"?")+b.jsonp+"="+h))),b.url=j,b.data=k,a[h]=function(a){g=[a]},d.always(function(){a[h]=i,g&&f.isFunction(i)&&a[h](g[0])}),b.converters["script json"]=function(){g||f.error(h+" was not called");return g[0]},b.dataTypes[0]="json";return"script"}}),f.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){f.globalEval(a);return a}}}),f.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),f.ajaxTransport("script",function(a){if(a.crossDomain){var d,e=c.head||c.getElementsByTagName("head")[0]||c.documentElement;return{send:function(f,g){d=c.createElement("script"),d.async="async",a.scriptCharset&&(d.charset=a.scriptCharset),d.src=a.url,d.onload=d.onreadystatechange=function(a,c){if(c||!d.readyState||/loaded|complete/.test(d.readyState))d.onload=d.onreadystatechange=null,e&&d.parentNode&&e.removeChild(d),d=b,c||g(200,"success")},e.insertBefore(d,e.firstChild)},abort:function(){d&&d.onload(0,1)}}}});var cb=a.ActiveXObject?function(){for(var a in cd)cd[a](0,1)}:!1,cc=0,cd;f.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&ce()||cf()}:ce,function(a){f.extend(f.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(f.ajaxSettings.xhr()),f.support.ajax&&f.ajaxTransport(function(c){if(!c.crossDomain||f.support.cors){var d;return{send:function(e,g){var h=c.xhr(),i,j;c.username?h.open(c.type,c.url,c.async,c.username,c.password):h.open(c.type,c.url,c.async);if(c.xhrFields)for(j in c.xhrFields)h[j]=c.xhrFields[j];c.mimeType&&h.overrideMimeType&&h.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(j in e)h.setRequestHeader(j,e[j])}catch(k){}h.send(c.hasContent&&c.data||null),d=function(a,e){var j,k,l,m,n;try{if(d&&(e||h.readyState===4)){d=b,i&&(h.onreadystatechange=f.noop,cb&&delete cd[i]);if(e)h.readyState!==4&&h.abort();else{j=h.status,l=h.getAllResponseHeaders(),m={},n=h.responseXML,n&&n.documentElement&&(m.xml=n),m.text=h.responseText;try{k=h.statusText}catch(o){k=""}!j&&c.isLocal&&!c.crossDomain?j=m.text?200:404:j===1223&&(j=204)}}}catch(p){e||g(-1,p)}m&&g(j,k,m,l)},!c.async||h.readyState===4?d():(i=++cc,cb&&(cd||(cd={},f(a).unload(cb)),cd[i]=d),h.onreadystatechange=d)},abort:function(){d&&d(0,1)}}}});var cg={},ch,ci,cj=/^(?:toggle|show|hide)$/,ck=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,cl,cm=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]],cn;f.fn.extend({show:function(a,b,c){var d,e;if(a||a===0)return this.animate(cq("show",3),a,b,c);for(var g=0,h=this.length;g=e.duration+this.startTime){this.now=this.end,this.pos=this.state=1,this.update(),e.animatedProperties[this.prop]=!0;for(g in e.animatedProperties)e.animatedProperties[g]!==!0&&(c=!1);if(c){e.overflow!=null&&!f.support.shrinkWrapBlocks&&f.each(["","X","Y"],function(a,b){d.style["overflow"+b]=e.overflow[a]}),e.hide&&f(d).hide();if(e.hide||e.show)for(var i in e.animatedProperties)f.style(d,i,e.orig[i]);e.complete.call(d)}return!1}e.duration==Infinity?this.now=b:(h=b-this.startTime,this.state=h/e.duration,this.pos=f.easing[e.animatedProperties[this.prop]](this.state,h,0,1,e.duration),this.now=this.start+(this.end-this.start)*this.pos),this.update();return!0}},f.extend(f.fx,{tick:function(){for(var a=f.timers,b=0;b
    ";f.extend(b.style,{position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"}),b.innerHTML=j,a.insertBefore(b,a.firstChild),d=b.firstChild,e=d.firstChild,h=d.nextSibling.firstChild.firstChild,this.doesNotAddBorder=e.offsetTop!==5,this.doesAddBorderForTableAndCells=h.offsetTop===5,e.style.position="fixed",e.style.top="20px",this.supportsFixedPosition=e.offsetTop===20||e.offsetTop===15,e.style.position=e.style.top="",d.style.overflow="hidden",d.style.position="relative",this.subtractsBorderForOverflowNotVisible=e.offsetTop===-5,this.doesNotIncludeMarginInBodyOffset=a.offsetTop!==i,a.removeChild(b),f.offset.initialize=f.noop},bodyOffset:function(a){var b=a.offsetTop,c=a.offsetLeft;f.offset.initialize(),f.offset.doesNotIncludeMarginInBodyOffset&&(b+=parseFloat(f.css(a,"marginTop"))||0,c+=parseFloat(f.css(a,"marginLeft"))||0);return{top:b,left:c}},setOffset:function(a,b,c){var d=f.css(a,"position");d==="static"&&(a.style.position="relative");var e=f(a),g=e.offset(),h=f.css(a,"top"),i=f.css(a,"left"),j=(d==="absolute"||d==="fixed")&&f.inArray("auto",[h,i])>-1,k={},l={},m,n;j?(l=e.position(),m=l.top,n=l.left):(m=parseFloat(h)||0,n=parseFloat(i)||0),f.isFunction(b)&&(b=b.call(a,c,g)),b.top!=null&&(k.top=b.top-g.top+m),b.left!=null&&(k.left=b.left-g.left+n),"using"in b?b.using.call(a,k):e.css(k)}},f.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),c=this.offset(),d=ct.test(b[0].nodeName)?{top:0,left:0}:b.offset();c.top-=parseFloat(f.css(a,"marginTop"))||0,c.left-=parseFloat(f.css(a,"marginLeft"))||0,d.top+=parseFloat(f.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(f.css(b[0],"borderLeftWidth"))||0;return{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||c.body;while(a&&!ct.test(a.nodeName)&&f.css(a,"position")==="static")a=a.offsetParent;return a})}}),f.each(["Left","Top"],function(a,c){var d="scroll"+c;f.fn[d]=function(c){var e,g;if(c===b){e=this[0];if(!e)return null;g=cu(e);return g?"pageXOffset"in g?g[a?"pageYOffset":"pageXOffset"]:f.support.boxModel&&g.document.documentElement[d]||g.document.body[d]:e[d]}return this.each(function(){g=cu(this),g?g.scrollTo(a?f(g).scrollLeft():c,a?c:f(g).scrollTop()):this[d]=c})}}),f.each(["Height","Width"],function(a,c){var d=c.toLowerCase();f.fn["inner"+c]=function(){var a=this[0];return a&&a.style?parseFloat(f.css(a,d,"padding")):null},f.fn["outer"+c]=function(a){var b=this[0];return b&&b.style?parseFloat(f.css(b,d,a?"margin":"border")):null},f.fn[d]=function(a){var e=this[0];if(!e)return a==null?null:this;if(f.isFunction(a))return this.each(function(b){var c=f(this);c[d](a.call(this,b,c[d]()))});if(f.isWindow(e)){var g=e.document.documentElement["client"+c],h=e.document.body;return e.document.compatMode==="CSS1Compat"&&g||h&&h["client"+c]||g}if(e.nodeType===9)return Math.max(e.documentElement["client"+c],e.body["scroll"+c],e.documentElement["scroll"+c],e.body["offset"+c],e.documentElement["offset"+c]);if(a===b){var i=f.css(e,d),j=parseFloat(i);return f.isNaN(j)?i:j}return this.css(d,typeof a=="string"?a:a+"px")}}),a.jQuery=a.$=f})(window);]]>
    DateFri, 24 Feb 2023 14:02:00 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Accept-Rangesbytes
    ETagW/"91678-1358437290000"
    Last-ModifiedThu, 17 Jan 2013 15:41:30 GMT
    Cache-Controlmax-age=2419200
    ExpiresFri, 24 Mar 2023 14:02:00 GMT
    Content-Typeapplication/javascript;charset=UTF-8
    Content-Length91678
    Keep-Alivetimeout=5, max=100
    ConnectionKeep-Alive
    http://zero.webappsecurity.com:80/forgotten-password-send.htmlhttpzero.webappsecurity.com80 + + + + Zero - Forgotten Password + + + + + + + + + + + + + + + +
    + + +
    +
    + +
    +
    + + + Your password will be sent to the following email: +
    +
    +
    +
    + +
    +
    + +
    +
    +
    +
    +
    +
      +
    • Download WebInspect
    • +
    +
    + +
    +
      +
    • Terms of Use
    • +
    +
    + +
    +
      +
    • Contact Micro Focus
    • +
    • Privacy Statement
    • + +
    +
    +
    + +
    +
    + The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating + the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting + Web application vulnerabilities. This site is not a real banking site and any similarities to third party products + and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, + either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. + Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at + https://www.microfocus.com/about/legal/#privacy + and Micro Focus Fortify’s Online Privacy Statement found at + https://www.microfocus.com/about/legal/#privacy. + +

    + + Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. +
    +
    +
    +
    +
    + + + + +]]>
    POST/forgotten-password-sendhtmlHTTP/1.1email=&submit=Send%20PasswordCookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/forgot-password.html
    Content-Typeapplication/x-www-form-urlencoded
    Content-Length29
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="4C2520861538E5DDAD96B772C11C64CE";PSID="35CF74765A8B6CFE70D16739EA0E6BFF";SessionType="Crawl";CrawlType="Form";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="action";Format="Relative";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="ebae2288";
    X-Request-Memorid="9da53718";sc="1";thid="24";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1200OK + + + + Zero - Forgotten Password + + + + + + + + + + + + + + + +
    + + +
    +
    + +
    +
    + + + Your password will be sent to the following email: +
    +
    +
    +
    + +
    +
    + +
    +
    +
    +
    +
    +
      +
    • Download WebInspect
    • +
    +
    + +
    +
      +
    • Terms of Use
    • +
    +
    + +
    +
      +
    • Contact Micro Focus
    • +
    • Privacy Statement
    • + +
    +
    +
    + +
    +
    + The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating + the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting + Web application vulnerabilities. This site is not a real banking site and any similarities to third party products + and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, + either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. + Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at + https://www.microfocus.com/about/legal/#privacy + and Micro Focus Fortify’s Online Privacy Statement found at + https://www.microfocus.com/about/legal/#privacy. + +

    + + Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. +
    +
    +
    +
    +
    + + + + +]]>
    DateFri, 24 Feb 2023 14:02:04 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Cache-Controlno-cache, max-age=0, must-revalidate, no-store
    Content-Typetext/html;charset=UTF-8
    Content-Languageen-US
    Keep-Alivetimeout=5, max=95
    ConnectionKeep-Alive
    Content-Length5383
    http://zero.webappsecurity.com:80/sendFeedback.htmlhttpzero.webappsecurity.com80Best Practices1154655970Privacy Violation: AutocompleteCWE-525: Information Exposure Through Browser CachingSecurity FeaturesPrivacy Violation: AutocompleteSummaryImplicationExecutionFixReference InfoMicrosoft:
    Autocomplete Security]]>
    + + + + Zero - Contact Us + + + + + + + + + + + + + + +
    + + + + +
    +
    + +
    +
    + + + Thank you for your comments, . + They will be reviewed by our Customer Service staff and given the full attention that they deserve. +
    +
    + + +
    +
    + +
    +
    + +
    +
    +
    +
    +
    +
      +
    • Download WebInspect
    • +
    +
    + +
    +
      +
    • Terms of Use
    • +
    +
    + +
    +
      +
    • Contact Micro Focus
    • +
    • Privacy Statement
    • + +
    +
    +
    + +
    +
    + The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating + the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting + Web application vulnerabilities. This site is not a real banking site and any similarities to third party products + and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, + either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. + Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at + https://www.microfocus.com/about/legal/#privacy + and Micro Focus Fortify’s Online Privacy Statement found at + https://www.microfocus.com/about/legal/#privacy. + +

    + + Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. +
    +
    +
    +
    +
    + + + + +]]>
    POST/sendFeedbackhtmlHTTP/1.1name=&email=&subject=&comment=&submit=Send%20MessageCookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/feedback.html
    Content-Typeapplication/x-www-form-urlencoded
    Content-Length52
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="1E1A427DDBB6C302DBD4E0669437E99B";PSID="EA0F5B4A7B2D5822D3AE6FEB6AC0B160";SessionType="Crawl";CrawlType="Form";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="action";Format="Relative";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="38092aaf";
    X-Request-Memorid="58849a2a";sc="1";thid="25";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1200OK + + + + Zero - Contact Us + + + + + + + + + + + + + + +
    + + + + +
    +
    + +
    +
    + + + Thank you for your comments, . + They will be reviewed by our Customer Service staff and given the full attention that they deserve. +
    +
    + + +
    +
    + +
    +
    + +
    +
    +
    +
    +
    +
      +
    • Download WebInspect
    • +
    +
    + +
    +
      +
    • Terms of Use
    • +
    +
    + +
    +
      +
    • Contact Micro Focus
    • +
    • Privacy Statement
    • + +
    +
    +
    + +
    +
    + The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating + the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting + Web application vulnerabilities. This site is not a real banking site and any similarities to third party products + and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, + either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. + Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at + https://www.microfocus.com/about/legal/#privacy + and Micro Focus Fortify’s Online Privacy Statement found at + https://www.microfocus.com/about/legal/#privacy. + +

    + + Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. +
    +
    +
    +
    +
    + + + + +]]>
    DateFri, 24 Feb 2023 14:02:04 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Cache-Controlno-cache, max-age=0, must-revalidate, no-store
    Content-Typetext/html;charset=UTF-8
    Content-Languageen-US
    Keep-Alivetimeout=5, max=88
    ConnectionKeep-Alive
    Content-Length6657
    /search.htmlsearchTermtextsearch-query
    http://zero.webappsecurity.com:80/forgotten-password-send.htmlhttpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

    HTTP Status 405 - Request method 'GET' not supported


    type Status report

    message Request method 'GET' not supported

    description The specified HTTP method is not allowed for the requested resource.


    Apache Tomcat/7.0.70

    ]]>
    GET/forgotten-password-sendhtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/forgot-password.html
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="5AA2C0D465CC907233DF3DDA52702BC9";PSID="35CF74765A8B6CFE70D16739EA0E6BFF";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="action";Format="Relative";LinkKind="FormAction";Locations="HtmlNode";NodeName="form";Source="StaticParser";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="675fd42e";
    X-Request-Memorid="af5987ad";sc="1";thid="26";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1405Method Not AllowedApache Tomcat/7.0.70 - Error report

    HTTP Status 405 - Request method 'GET' not supported


    type Status report

    message Request method 'GET' not supported

    description The specified HTTP method is not allowed for the requested resource.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:02:04 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Cache-Controlno-cache, max-age=0, must-revalidate, no-store
    AllowPOST
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length1045
    Keep-Alivetimeout=5, max=96
    ConnectionKeep-Alive
    http://zero.webappsecurity.com:80/sendFeedback.htmlhttpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

    HTTP Status 405 - Request method 'GET' not supported


    type Status report

    message Request method 'GET' not supported

    description The specified HTTP method is not allowed for the requested resource.


    Apache Tomcat/7.0.70

    ]]>
    GET/sendFeedbackhtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/feedback.html
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="231CCF294707A09E1F5A412FDBE92672";PSID="EA0F5B4A7B2D5822D3AE6FEB6AC0B160";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="action";Format="Relative";LinkKind="FormAction";Locations="HtmlNode";NodeName="form";Source="StaticParser";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="12261179";
    X-Request-Memorid="87cca573";sc="1";thid="26";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1405Method Not AllowedApache Tomcat/7.0.70 - Error report

    HTTP Status 405 - Request method 'GET' not supported


    type Status report

    message Request method 'GET' not supported

    description The specified HTTP method is not allowed for the requested resource.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:02:05 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Cache-Controlno-cache, max-age=0, must-revalidate, no-store
    AllowPOST
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length1045
    Keep-Alivetimeout=5, max=95
    ConnectionKeep-Alive
    http://zero.webappsecurity.com:80/admin/currencies-add.htmlhttpzero.webappsecurity.com80 + + + + Zero - Admin - Currencies + + + + + + + + + + + + + + + +
    + + + + +
    +
    + +
    +
    +

    Add Currency

    +
    +
    + +
    +
    + +
    + +
    +
    + + The new currency was successfully created. +
    +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    + + +
    + +
    +
    + +
    + + +
    + +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    +
    + +
    +
    +
    +
    +
    +
      +
    • Download WebInspect
    • +
    +
    + +
    +
      +
    • Terms of Use
    • +
    +
    + +
    +
      +
    • Contact Micro Focus
    • +
    • Privacy Statement
    • + +
    +
    +
    + +
    +
    + The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating + the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting + Web application vulnerabilities. This site is not a real banking site and any similarities to third party products + and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, + either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. + Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at + https://www.microfocus.com/about/legal/#privacy + and Micro Focus Fortify’s Online Privacy Statement found at + https://www.microfocus.com/about/legal/#privacy. + +

    + + Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. +
    +
    +
    +
    +
    + + + + +]]>
    POST/admin/currencies-addhtmlHTTP/1.1id=&country=&name=Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/admin/currencies-add.html
    Content-Typeapplication/x-www-form-urlencoded
    Content-Length18
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="D8EBBC93BA90F2118C90A54C0B7E00F7";PSID="1196B0700885BAA2AD346331C45F4326";SessionType="Crawl";CrawlType="Form";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="action";Format="Relative";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="c75abea3";
    X-Request-Memorid="3a080554";sc="1";thid="24";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1200OK + + + + Zero - Admin - Currencies + + + + + + + + + + + + + + + +
    + + + + +
    +
    + +
    +
    +

    Add Currency

    +
    +
    + +
    +
    + +
    + +
    +
    + + The new currency was successfully created. +
    +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    + + +
    + +
    +
    + +
    + + +
    + +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    +
    + +
    +
    +
    +
    +
    +
      +
    • Download WebInspect
    • +
    +
    + +
    +
      +
    • Terms of Use
    • +
    +
    + +
    +
      +
    • Contact Micro Focus
    • +
    • Privacy Statement
    • + +
    +
    +
    + +
    +
    + The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating + the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting + Web application vulnerabilities. This site is not a real banking site and any similarities to third party products + and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, + either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. + Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at + https://www.microfocus.com/about/legal/#privacy + and Micro Focus Fortify’s Online Privacy Statement found at + https://www.microfocus.com/about/legal/#privacy. + +

    + + Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. +
    +
    +
    +
    +
    + + + + +]]>
    DateFri, 24 Feb 2023 14:02:05 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Cache-Controlno-cache, max-age=0, must-revalidate, no-store
    Content-Typetext/html;charset=UTF-8
    Content-Languageen-US
    Keep-Alivetimeout=5, max=94
    ConnectionKeep-Alive
    Content-Length8815
    /search.htmlsearchTermtextsearch-query
    /admin/currencies-add.htmlpostidtextspan1countrytextspan3nametextspan3buttonelementbtn btn-primary
    http://zero.webappsecurity.com:80/testing/httpzero.webappsecurity.com80Vulnerability10102171Web Server Misconfiguration: Unprotected DirectoryEnvironmentWeb Server Misconfiguration: Unprotected DirectoryCWE-552: Files or Directories Accessible to External PartiesSummaryImplication +An attacker may use the internal information obtained from the source code files to craft a precise attack against the web application. Such attacks can include, but are not limited to, SQL injection, remote file system access, malware injection and database manipulation.]]>ExecutionFixFor Security Operations:
    +You should evaluate the production requirements for the found directory. If the directory is not required for production operation, then the directory and its contents should be removed or restricted by a server access control mechanism. More information about implementing access control schemes can be found in the References. Automatic directory indexing should also be disabled, if applicable. + +

    For Development:
    +This problem will be resolved by the web application server administrator. In general, remove all source code repositories and files from the production server and do not rely on 'hidden' directories within the web root that can contain sensitive resources or web applications. Assume an attacker knows about the existence of all directories and files on your web site, and protect them with proper access controls. + +

    For QA:
    +This problem will be resolved by the web application server administrator.]]>
    Reference InfoIIS Authentication
    IIS Authentication

    Implementing Basic Authentication in Apache
    http://httpd.apache.org/docs/howto/auth.html#intro

    SVN
    Serving websites from SVN checkout considered harmful

    Subversion or CVS metadata exposure
    Subversion or CVS metadata exposure

    ]]>
    Apache Tomcat/7.0.70 - Error report

    HTTP Status 403 -


    type Status report

    message

    description Access to the specified resource has been forbidden.


    Apache Tomcat/7.0.70

    ]]>
    GET/testing/HTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0 +
    Refererhttp://zero.webappsecurity.com/resources/js/bootstrap.min.js
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Audit.Attack";SID="FADBAC60EC4B63B1EAA304E5A6A46681";PSID="C2E3EA7620F4A29F11DBAC2B877DD850";SessionType="AuditAttack";CrawlType="None";AttackType="Search";OriginatingEngineID="ae34b422-6357-4aca-8fe7-7e449e14c9b7";AttackSequence="0";AttackParamDesc="";AttackParamIndex="0";AttackParamSubIndex="0";CheckId="10217";Engine="Directory+Enumeration";SmartMode="4";tht="11";
    X-RequestManager-Memostid="17";stmi="0";sc="1";rid="4b91e5e1";
    X-Request-Memorid="7023aac0";sc="1";thid="28";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0
    HTTP/1.1403ForbiddenApache Tomcat/7.0.70 - Error report

    HTTP Status 403 -


    type Status report

    message

    description Access to the specified resource has been forbidden.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:02:38 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length961
    Keep-Alivetimeout=5, max=76
    ConnectionKeep-Alive
    X-Padavoid browser bug
    http://zero.webappsecurity.com:80/docs/httpzero.webappsecurity.com80Vulnerability10102181Web Server Misconfiguration: Unprotected DirectoryEnvironmentWeb Server Misconfiguration: Unprotected DirectoryCWE-552: Files or Directories Accessible to External PartiesSummaryImplicationExecutionFixFor Security Operations:
    +You should evaluate the production requirements for the found directory. If the directory is not required for production operation, then the directory and its contents should be removed or restricted by a server access control mechanism. More information about implementing access control schemes can be found in the References. Automatic directory indexing should also be disabled, if applicable. + +

    For Development:
    +This problem will be resolved by the web application server administrator. In general, do not rely on 'hidden' directories within the web root that can contain sensitive resources or web applications. Assume an attacker knows about the existence of all directories and files on your web site, and protect them with proper access controls. + +

    For QA:
    +This problem will be resolved by the web application server administrator.]]>
    Reference InfoImplementing Basic Authentication in IIS
    http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/a + +bbca505-6f63-4267-aac1-1ea89d861eb4.mspx

    Implementing Basic Authentication in Apache
    http://httpd.apache.org/docs/howto/auth.html#intro]]>
    Apache Tomcat 7 (7.0.70) - Documentation Index
    
+      The Apache Tomcat Servlet/JSP Container
+

    Apache Tomcat 7

    Version 7.0.70, Jun 15 2016
    Apache Logo

    Links

    User Guide

    Reference

    Apache Tomcat Development

    Documentation Index

    Introduction
    + +

    This is the top-level entry point of the documentation bundle for the +Apache Tomcat Servlet/JSP container. Apache Tomcat version 7.0 +implements the Servlet 3.0 and JavaServer Pages 2.2 +specifications from the +Java Community Process, and includes many +additional features that make it a useful platform for developing and deploying +web applications and web services.

    + +

    Select one of the links from the navigation menu (to the left) to drill +down to the more detailed documentation that is available. Each available +manual is described in more detail below.

    + +
    Apache Tomcat User Guide
    + +

    The following documents will assist you in downloading, installing +Apache Tomcat 7, and using many of the Apache Tomcat features.

    + +
      +
    1. Introduction - A + brief, high level, overview of Apache Tomcat.
    2. +
    3. Setup - How to install and run + Apache Tomcat on a variety of platforms.
    4. +
    5. First web application + - An introduction to the concepts of a web application as defined + in the Servlet Specification. Covers basic organization of your web application + source tree, the structure of a web application archive, and an + introduction to the web application deployment descriptor + (/WEB-INF/web.xml).
    6. +
    7. Deployer - + Operating the Apache Tomcat Deployer to deploy, precompile, and validate web + applications.
    8. +
    9. Manager - + Operating the Manager web app to deploy, undeploy, and + redeploy applications while Apache Tomcat is running.
    10. +
    11. Realms and Access Control + - Description of how to configure Realms (databases of users, + passwords, and their associated roles) for use in web applications that + utilize Container Managed Security.
    12. +
    13. Security Manager + - Configuring and using a Java Security Manager to + support fine-grained control over the behavior of your web applications. +
    14. +
    15. JNDI Resources + - Configuring standard and custom resources in the JNDI naming context + that is provided to each web application.
    16. +
    17. + JDBC DataSource + - Configuring a JNDI DataSource with a DB connection pool. + Examples for many popular databases.
    18. +
    19. Classloading + - Information about class loading in Apache Tomcat, including where to place + your application classes so that they are visible.
    20. +
    21. JSPs + - Information about Jasper configuration, as well as the JSP compiler + usage.
    22. +
    23. SSL/TLS - + Installing and configuring SSL/TLS support so that your Apache Tomcat will + serve requests using the https protocol.
    24. +
    25. SSI - + Using Server Side Includes in Apache Tomcat.
    26. +
    27. CGI - + Using CGIs with Apache Tomcat.
    28. +
    29. Proxy Support - + Configuring Apache Tomcat to run behind a proxy server (or a web server + functioning as a proxy server).
    30. +
    31. MBean Descriptor - + Configuring MBean descriptors files for custom components.
    32. +
    33. Default Servlet - + Configuring the default servlet and customizing directory listings.
    34. +
    35. Apache Tomcat Clustering - + Enable session replication in a Apache Tomcat environment.
    36. +
    37. Balancer - + Configuring, using, and extending the load balancer application.
    38. +
    39. Connectors - + Connectors available in Apache Tomcat, and native web server integration.
    40. +
    41. Monitoring and Management - + Enabling JMX Remote support, and using tools to monitor and manage Apache Tomcat.
    42. +
    43. Logging - + Configuring logging in Apache Tomcat.
    44. +
    45. Apache Portable Runtime - + Using APR to provide superior performance, scalability and better + integration with native server technologies.
    46. +
    47. Virtual Hosting - + Configuring virtual hosting in Apache Tomcat.
    48. +
    49. Advanced IO - + Extensions available over regular, blocking IO.
    50. +
    51. Additional Components - + Obtaining additional, optional components.
    52. +
    53. Using Tomcat libraries with Maven - + Obtaining Tomcat jars through Maven.
    54. +
    55. Security Considerations - + Options to consider when securing an Apache Tomcat installation.
    56. +
    57. Windows Service - + Running Tomcat as a service on Microsoft Windows.
    58. +
    59. Windows Authentication - + Configuring Tomcat to use integrated Windows authentication.
    60. +
    61. High Concurrency JDBC Pool - + Configuring Tomcat to use an alternative JDBC pool.
    62. +
    63. WebSocket support - + Developing WebSocket applications for Apache Tomcat.
    64. + +
    + +
    Reference
    + +

    The following documents are aimed at System Administrators who +are responsible for installing, configuring, and operating an Apache Tomcat server. +

    + + +
    Apache Tomcat Developers
    + +

    The following documents are for Java developers who wish to contribute to +the development of the Apache Tomcat project.

    +
      +
    • Building from Source - + Details the steps necessary to download Apache Tomcat source code (and the + other packages that it depends on), and build a binary distribution from + those sources. +
    • +
    • Changelog - Details the + changes made to Apache Tomcat. +
    • +
    • Status - + Apache Tomcat development status. +
    • +
    • Developers - List of active + Apache Tomcat contributors. +
    • +
    • Functional Specifications + - Requirements specifications for features of the Catalina servlet + container portion of Apache Tomcat.
    • +
    • Javadocs + - Javadoc API documentation for Apache Tomcat's internals.
    • +
    • Apache Tomcat Architecture + - Documentation of the Apache Tomcat Server Architecture.
    • +
    + +
    Comments

    Notice: This comments section collects your suggestions + on improving documentation for Apache Tomcat.

    + If you have trouble and need help, read + Find Help page + and ask your question on the tomcat-users + mailing list. + Do not ask such questions here. This is not a Q&A section.

    + The Apache Comments System is explained here. + Comments may be removed by our moderators if they are either + implemented or considered invalid/off-topic.


    + Copyright © 1999-2016, Apache Software Foundation +
    ]]>
    GET/docs/HTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0 +
    Refererhttp://zero.webappsecurity.com/resources/js/bootstrap.min.js
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Audit.Attack";SID="E6C8F4B19B0B19458326A26516DB27A6";PSID="C2E3EA7620F4A29F11DBAC2B877DD850";SessionType="AuditAttack";CrawlType="None";AttackType="Search";OriginatingEngineID="ae34b422-6357-4aca-8fe7-7e449e14c9b7";AttackSequence="0";AttackParamDesc="";AttackParamIndex="0";AttackParamSubIndex="0";CheckId="10218";Engine="Directory+Enumeration";SmartMode="4";tht="11";
    X-RequestManager-Memostid="15";stmi="0";sc="1";rid="46303d0c";
    X-Request-Memorid="a20f9c7f";sc="1";thid="27";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0
    HTTP/1.1200OKApache Tomcat 7 (7.0.70) - Documentation Index
    
+      The Apache Tomcat Servlet/JSP Container
+

    Apache Tomcat 7

    Version 7.0.70, Jun 15 2016
    Apache Logo

    Links

    User Guide

    Reference

    Apache Tomcat Development

    Documentation Index

    Introduction
    + +

    This is the top-level entry point of the documentation bundle for the +Apache Tomcat Servlet/JSP container. Apache Tomcat version 7.0 +implements the Servlet 3.0 and JavaServer Pages 2.2 +specifications from the +Java Community Process, and includes many +additional features that make it a useful platform for developing and deploying +web applications and web services.

    + +

    Select one of the links from the navigation menu (to the left) to drill +down to the more detailed documentation that is available. Each available +manual is described in more detail below.

    + +
    Apache Tomcat User Guide
    + +

    The following documents will assist you in downloading, installing +Apache Tomcat 7, and using many of the Apache Tomcat features.

    + +
      +
    1. Introduction - A + brief, high level, overview of Apache Tomcat.
    2. +
    3. Setup - How to install and run + Apache Tomcat on a variety of platforms.
    4. +
    5. First web application + - An introduction to the concepts of a web application as defined + in the Servlet Specification. Covers basic organization of your web application + source tree, the structure of a web application archive, and an + introduction to the web application deployment descriptor + (/WEB-INF/web.xml).
    6. +
    7. Deployer - + Operating the Apache Tomcat Deployer to deploy, precompile, and validate web + applications.
    8. +
    9. Manager - + Operating the Manager web app to deploy, undeploy, and + redeploy applications while Apache Tomcat is running.
    10. +
    11. Realms and Access Control + - Description of how to configure Realms (databases of users, + passwords, and their associated roles) for use in web applications that + utilize Container Managed Security.
    12. +
    13. Security Manager + - Configuring and using a Java Security Manager to + support fine-grained control over the behavior of your web applications. +
    14. +
    15. JNDI Resources + - Configuring standard and custom resources in the JNDI naming context + that is provided to each web application.
    16. +
    17. + JDBC DataSource + - Configuring a JNDI DataSource with a DB connection pool. + Examples for many popular databases.
    18. +
    19. Classloading + - Information about class loading in Apache Tomcat, including where to place + your application classes so that they are visible.
    20. +
    21. JSPs + - Information about Jasper configuration, as well as the JSP compiler + usage.
    22. +
    23. SSL/TLS - + Installing and configuring SSL/TLS support so that your Apache Tomcat will + serve requests using the https protocol.
    24. +
    25. SSI - + Using Server Side Includes in Apache Tomcat.
    26. +
    27. CGI - + Using CGIs with Apache Tomcat.
    28. +
    29. Proxy Support - + Configuring Apache Tomcat to run behind a proxy server (or a web server + functioning as a proxy server).
    30. +
    31. MBean Descriptor - + Configuring MBean descriptors files for custom components.
    32. +
    33. Default Servlet - + Configuring the default servlet and customizing directory listings.
    34. +
    35. Apache Tomcat Clustering - + Enable session replication in a Apache Tomcat environment.
    36. +
    37. Balancer - + Configuring, using, and extending the load balancer application.
    38. +
    39. Connectors - + Connectors available in Apache Tomcat, and native web server integration.
    40. +
    41. Monitoring and Management - + Enabling JMX Remote support, and using tools to monitor and manage Apache Tomcat.
    42. +
    43. Logging - + Configuring logging in Apache Tomcat.
    44. +
    45. Apache Portable Runtime - + Using APR to provide superior performance, scalability and better + integration with native server technologies.
    46. +
    47. Virtual Hosting - + Configuring virtual hosting in Apache Tomcat.
    48. +
    49. Advanced IO - + Extensions available over regular, blocking IO.
    50. +
    51. Additional Components - + Obtaining additional, optional components.
    52. +
    53. Using Tomcat libraries with Maven - + Obtaining Tomcat jars through Maven.
    54. +
    55. Security Considerations - + Options to consider when securing an Apache Tomcat installation.
    56. +
    57. Windows Service - + Running Tomcat as a service on Microsoft Windows.
    58. +
    59. Windows Authentication - + Configuring Tomcat to use integrated Windows authentication.
    60. +
    61. High Concurrency JDBC Pool - + Configuring Tomcat to use an alternative JDBC pool.
    62. +
    63. WebSocket support - + Developing WebSocket applications for Apache Tomcat.
    64. + +
    + +
    Reference
    + +

    The following documents are aimed at System Administrators who +are responsible for installing, configuring, and operating an Apache Tomcat server. +

    + + +
    Apache Tomcat Developers
    + +

    The following documents are for Java developers who wish to contribute to +the development of the Apache Tomcat project.

    +
      +
    • Building from Source - + Details the steps necessary to download Apache Tomcat source code (and the + other packages that it depends on), and build a binary distribution from + those sources. +
    • +
    • Changelog - Details the + changes made to Apache Tomcat. +
    • +
    • Status - + Apache Tomcat development status. +
    • +
    • Developers - List of active + Apache Tomcat contributors. +
    • +
    • Functional Specifications + - Requirements specifications for features of the Catalina servlet + container portion of Apache Tomcat.
    • +
    • Javadocs + - Javadoc API documentation for Apache Tomcat's internals.
    • +
    • Apache Tomcat Architecture + - Documentation of the Apache Tomcat Server Architecture.
    • +
    + +
    Comments

    Notice: This comments section collects your suggestions + on improving documentation for Apache Tomcat.

    + If you have trouble and need help, read + Find Help page + and ask your question on the tomcat-users + mailing list. + Do not ask such questions here. This is not a Q&A section.

    + The Apache Comments System is explained here. + Comments may be removed by our moderators if they are either + implemented or considered invalid/off-topic.


    + Copyright © 1999-2016, Apache Software Foundation +
    ]]>
    DateFri, 24 Feb 2023 14:02:39 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Accept-Rangesbytes
    ETagW/"19368-1466008846000"
    Last-ModifiedWed, 15 Jun 2016 16:40:46 GMT
    Content-Typetext/html
    Content-Length19368
    Keep-Alivetimeout=5, max=74
    ConnectionKeep-Alive
    http://zero.webappsecurity.com:80/docs/index.htmlhttpzero.webappsecurity.com80Apache Tomcat 7 (7.0.70) - Documentation Index
    
+      The Apache Tomcat Servlet/JSP Container
+

    Apache Tomcat 7

    Version 7.0.70, Jun 15 2016
    Apache Logo

    Links

    User Guide

    Reference

    Apache Tomcat Development

    Documentation Index

    Introduction
    + +

    This is the top-level entry point of the documentation bundle for the +Apache Tomcat Servlet/JSP container. Apache Tomcat version 7.0 +implements the Servlet 3.0 and JavaServer Pages 2.2 +specifications from the +Java Community Process, and includes many +additional features that make it a useful platform for developing and deploying +web applications and web services.

    + +

    Select one of the links from the navigation menu (to the left) to drill +down to the more detailed documentation that is available. Each available +manual is described in more detail below.

    + +
    Apache Tomcat User Guide
    + +

    The following documents will assist you in downloading, installing +Apache Tomcat 7, and using many of the Apache Tomcat features.

    + +
      +
    1. Introduction - A + brief, high level, overview of Apache Tomcat.
    2. +
    3. Setup - How to install and run + Apache Tomcat on a variety of platforms.
    4. +
    5. First web application + - An introduction to the concepts of a web application as defined + in the Servlet Specification. Covers basic organization of your web application + source tree, the structure of a web application archive, and an + introduction to the web application deployment descriptor + (/WEB-INF/web.xml).
    6. +
    7. Deployer - + Operating the Apache Tomcat Deployer to deploy, precompile, and validate web + applications.
    8. +
    9. Manager - + Operating the Manager web app to deploy, undeploy, and + redeploy applications while Apache Tomcat is running.
    10. +
    11. Realms and Access Control + - Description of how to configure Realms (databases of users, + passwords, and their associated roles) for use in web applications that + utilize Container Managed Security.
    12. +
    13. Security Manager + - Configuring and using a Java Security Manager to + support fine-grained control over the behavior of your web applications. +
    14. +
    15. JNDI Resources + - Configuring standard and custom resources in the JNDI naming context + that is provided to each web application.
    16. +
    17. + JDBC DataSource + - Configuring a JNDI DataSource with a DB connection pool. + Examples for many popular databases.
    18. +
    19. Classloading + - Information about class loading in Apache Tomcat, including where to place + your application classes so that they are visible.
    20. +
    21. JSPs + - Information about Jasper configuration, as well as the JSP compiler + usage.
    22. +
    23. SSL/TLS - + Installing and configuring SSL/TLS support so that your Apache Tomcat will + serve requests using the https protocol.
    24. +
    25. SSI - + Using Server Side Includes in Apache Tomcat.
    26. +
    27. CGI - + Using CGIs with Apache Tomcat.
    28. +
    29. Proxy Support - + Configuring Apache Tomcat to run behind a proxy server (or a web server + functioning as a proxy server).
    30. +
    31. MBean Descriptor - + Configuring MBean descriptors files for custom components.
    32. +
    33. Default Servlet - + Configuring the default servlet and customizing directory listings.
    34. +
    35. Apache Tomcat Clustering - + Enable session replication in a Apache Tomcat environment.
    36. +
    37. Balancer - + Configuring, using, and extending the load balancer application.
    38. +
    39. Connectors - + Connectors available in Apache Tomcat, and native web server integration.
    40. +
    41. Monitoring and Management - + Enabling JMX Remote support, and using tools to monitor and manage Apache Tomcat.
    42. +
    43. Logging - + Configuring logging in Apache Tomcat.
    44. +
    45. Apache Portable Runtime - + Using APR to provide superior performance, scalability and better + integration with native server technologies.
    46. +
    47. Virtual Hosting - + Configuring virtual hosting in Apache Tomcat.
    48. +
    49. Advanced IO - + Extensions available over regular, blocking IO.
    50. +
    51. Additional Components - + Obtaining additional, optional components.
    52. +
    53. Using Tomcat libraries with Maven - + Obtaining Tomcat jars through Maven.
    54. +
    55. Security Considerations - + Options to consider when securing an Apache Tomcat installation.
    56. +
    57. Windows Service - + Running Tomcat as a service on Microsoft Windows.
    58. +
    59. Windows Authentication - + Configuring Tomcat to use integrated Windows authentication.
    60. +
    61. High Concurrency JDBC Pool - + Configuring Tomcat to use an alternative JDBC pool.
    62. +
    63. WebSocket support - + Developing WebSocket applications for Apache Tomcat.
    64. + +
    + +
    Reference
    + +

    The following documents are aimed at System Administrators who +are responsible for installing, configuring, and operating an Apache Tomcat server. +

    + + +
    Apache Tomcat Developers
    + +

    The following documents are for Java developers who wish to contribute to +the development of the Apache Tomcat project.

    +
      +
    • Building from Source - + Details the steps necessary to download Apache Tomcat source code (and the + other packages that it depends on), and build a binary distribution from + those sources. +
    • +
    • Changelog - Details the + changes made to Apache Tomcat. +
    • +
    • Status - + Apache Tomcat development status. +
    • +
    • Developers - List of active + Apache Tomcat contributors. +
    • +
    • Functional Specifications + - Requirements specifications for features of the Catalina servlet + container portion of Apache Tomcat.
    • +
    • Javadocs + - Javadoc API documentation for Apache Tomcat's internals.
    • +
    • Apache Tomcat Architecture + - Documentation of the Apache Tomcat Server Architecture.
    • +
    + +
    Comments

    Notice: This comments section collects your suggestions + on improving documentation for Apache Tomcat.

    + If you have trouble and need help, read + Find Help page + and ask your question on the tomcat-users + mailing list. + Do not ask such questions here. This is not a Q&A section.

    + The Apache Comments System is explained here. + Comments may be removed by our moderators if they are either + implemented or considered invalid/off-topic.


    + Copyright © 1999-2016, Apache Software Foundation +
    ]]>
    GET/docs/indexhtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/docs/
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="573735B2D53FA55711F88310A54DF608";PSID="E6C8F4B19B0B19458326A26516DB27A6";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="NonRooted";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="3d34b293";
    X-Request-Memorid="27ba8c86";sc="1";thid="26";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1200OKApache Tomcat 7 (7.0.70) - Documentation Index
    
+      The Apache Tomcat Servlet/JSP Container
+

    Apache Tomcat 7

    Version 7.0.70, Jun 15 2016
    Apache Logo

    Links

    User Guide

    Reference

    Apache Tomcat Development

    Documentation Index

    Introduction
    + +

    This is the top-level entry point of the documentation bundle for the +Apache Tomcat Servlet/JSP container. Apache Tomcat version 7.0 +implements the Servlet 3.0 and JavaServer Pages 2.2 +specifications from the +Java Community Process, and includes many +additional features that make it a useful platform for developing and deploying +web applications and web services.

    + +

    Select one of the links from the navigation menu (to the left) to drill +down to the more detailed documentation that is available. Each available +manual is described in more detail below.

    + +
    Apache Tomcat User Guide
    + +

    The following documents will assist you in downloading, installing +Apache Tomcat 7, and using many of the Apache Tomcat features.

    + +
      +
    1. Introduction - A + brief, high level, overview of Apache Tomcat.
    2. +
    3. Setup - How to install and run + Apache Tomcat on a variety of platforms.
    4. +
    5. First web application + - An introduction to the concepts of a web application as defined + in the Servlet Specification. Covers basic organization of your web application + source tree, the structure of a web application archive, and an + introduction to the web application deployment descriptor + (/WEB-INF/web.xml).
    6. +
    7. Deployer - + Operating the Apache Tomcat Deployer to deploy, precompile, and validate web + applications.
    8. +
    9. Manager - + Operating the Manager web app to deploy, undeploy, and + redeploy applications while Apache Tomcat is running.
    10. +
    11. Realms and Access Control + - Description of how to configure Realms (databases of users, + passwords, and their associated roles) for use in web applications that + utilize Container Managed Security.
    12. +
    13. Security Manager + - Configuring and using a Java Security Manager to + support fine-grained control over the behavior of your web applications. +
    14. +
    15. JNDI Resources + - Configuring standard and custom resources in the JNDI naming context + that is provided to each web application.
    16. +
    17. + JDBC DataSource + - Configuring a JNDI DataSource with a DB connection pool. + Examples for many popular databases.
    18. +
    19. Classloading + - Information about class loading in Apache Tomcat, including where to place + your application classes so that they are visible.
    20. +
    21. JSPs + - Information about Jasper configuration, as well as the JSP compiler + usage.
    22. +
    23. SSL/TLS - + Installing and configuring SSL/TLS support so that your Apache Tomcat will + serve requests using the https protocol.
    24. +
    25. SSI - + Using Server Side Includes in Apache Tomcat.
    26. +
    27. CGI - + Using CGIs with Apache Tomcat.
    28. +
    29. Proxy Support - + Configuring Apache Tomcat to run behind a proxy server (or a web server + functioning as a proxy server).
    30. +
    31. MBean Descriptor - + Configuring MBean descriptors files for custom components.
    32. +
    33. Default Servlet - + Configuring the default servlet and customizing directory listings.
    34. +
    35. Apache Tomcat Clustering - + Enable session replication in a Apache Tomcat environment.
    36. +
    37. Balancer - + Configuring, using, and extending the load balancer application.
    38. +
    39. Connectors - + Connectors available in Apache Tomcat, and native web server integration.
    40. +
    41. Monitoring and Management - + Enabling JMX Remote support, and using tools to monitor and manage Apache Tomcat.
    42. +
    43. Logging - + Configuring logging in Apache Tomcat.
    44. +
    45. Apache Portable Runtime - + Using APR to provide superior performance, scalability and better + integration with native server technologies.
    46. +
    47. Virtual Hosting - + Configuring virtual hosting in Apache Tomcat.
    48. +
    49. Advanced IO - + Extensions available over regular, blocking IO.
    50. +
    51. Additional Components - + Obtaining additional, optional components.
    52. +
    53. Using Tomcat libraries with Maven - + Obtaining Tomcat jars through Maven.
    54. +
    55. Security Considerations - + Options to consider when securing an Apache Tomcat installation.
    56. +
    57. Windows Service - + Running Tomcat as a service on Microsoft Windows.
    58. +
    59. Windows Authentication - + Configuring Tomcat to use integrated Windows authentication.
    60. +
    61. High Concurrency JDBC Pool - + Configuring Tomcat to use an alternative JDBC pool.
    62. +
    63. WebSocket support - + Developing WebSocket applications for Apache Tomcat.
    64. + +
    + +
    Reference
    + +

    The following documents are aimed at System Administrators who +are responsible for installing, configuring, and operating an Apache Tomcat server. +

    + + +
    Apache Tomcat Developers
    + +

    The following documents are for Java developers who wish to contribute to +the development of the Apache Tomcat project.

    +
      +
    • Building from Source - + Details the steps necessary to download Apache Tomcat source code (and the + other packages that it depends on), and build a binary distribution from + those sources. +
    • +
    • Changelog - Details the + changes made to Apache Tomcat. +
    • +
    • Status - + Apache Tomcat development status. +
    • +
    • Developers - List of active + Apache Tomcat contributors. +
    • +
    • Functional Specifications + - Requirements specifications for features of the Catalina servlet + container portion of Apache Tomcat.
    • +
    • Javadocs + - Javadoc API documentation for Apache Tomcat's internals.
    • +
    • Apache Tomcat Architecture + - Documentation of the Apache Tomcat Server Architecture.
    • +
    + +
    Comments

    Notice: This comments section collects your suggestions + on improving documentation for Apache Tomcat.

    + If you have trouble and need help, read + Find Help page + and ask your question on the tomcat-users + mailing list. + Do not ask such questions here. This is not a Q&A section.

    + The Apache Comments System is explained here. + Comments may be removed by our moderators if they are either + implemented or considered invalid/off-topic.


    + Copyright © 1999-2016, Apache Software Foundation +
    ]]>
    DateFri, 24 Feb 2023 14:02:07 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Accept-Rangesbytes
    ETagW/"19368-1466008846000"
    Last-ModifiedWed, 15 Jun 2016 16:40:46 GMT
    Content-Typetext/html
    Content-Length19368
    Keep-Alivetimeout=5, max=94
    ConnectionKeep-Alive
    http://zero.webappsecurity.com:80/docs/httpzero.webappsecurity.com80Apache Tomcat 7 (7.0.70) - Documentation Index
    
+      The Apache Tomcat Servlet/JSP Container
+

    Apache Tomcat 7

    Version 7.0.70, Jun 15 2016
    Apache Logo

    Links

    User Guide

    Reference

    Apache Tomcat Development

    Documentation Index

    Introduction
    + +

    This is the top-level entry point of the documentation bundle for the +Apache Tomcat Servlet/JSP container. Apache Tomcat version 7.0 +implements the Servlet 3.0 and JavaServer Pages 2.2 +specifications from the +Java Community Process, and includes many +additional features that make it a useful platform for developing and deploying +web applications and web services.

    + +

    Select one of the links from the navigation menu (to the left) to drill +down to the more detailed documentation that is available. Each available +manual is described in more detail below.

    + +
    Apache Tomcat User Guide
    + +

    The following documents will assist you in downloading, installing +Apache Tomcat 7, and using many of the Apache Tomcat features.

    + +
      +
    1. Introduction - A + brief, high level, overview of Apache Tomcat.
    2. +
    3. Setup - How to install and run + Apache Tomcat on a variety of platforms.
    4. +
    5. First web application + - An introduction to the concepts of a web application as defined + in the Servlet Specification. Covers basic organization of your web application + source tree, the structure of a web application archive, and an + introduction to the web application deployment descriptor + (/WEB-INF/web.xml).
    6. +
    7. Deployer - + Operating the Apache Tomcat Deployer to deploy, precompile, and validate web + applications.
    8. +
    9. Manager - + Operating the Manager web app to deploy, undeploy, and + redeploy applications while Apache Tomcat is running.
    10. +
    11. Realms and Access Control + - Description of how to configure Realms (databases of users, + passwords, and their associated roles) for use in web applications that + utilize Container Managed Security.
    12. +
    13. Security Manager + - Configuring and using a Java Security Manager to + support fine-grained control over the behavior of your web applications. +
    14. +
    15. JNDI Resources + - Configuring standard and custom resources in the JNDI naming context + that is provided to each web application.
    16. +
    17. + JDBC DataSource + - Configuring a JNDI DataSource with a DB connection pool. + Examples for many popular databases.
    18. +
    19. Classloading + - Information about class loading in Apache Tomcat, including where to place + your application classes so that they are visible.
    20. +
    21. JSPs + - Information about Jasper configuration, as well as the JSP compiler + usage.
    22. +
    23. SSL/TLS - + Installing and configuring SSL/TLS support so that your Apache Tomcat will + serve requests using the https protocol.
    24. +
    25. SSI - + Using Server Side Includes in Apache Tomcat.
    26. +
    27. CGI - + Using CGIs with Apache Tomcat.
    28. +
    29. Proxy Support - + Configuring Apache Tomcat to run behind a proxy server (or a web server + functioning as a proxy server).
    30. +
    31. MBean Descriptor - + Configuring MBean descriptors files for custom components.
    32. +
    33. Default Servlet - + Configuring the default servlet and customizing directory listings.
    34. +
    35. Apache Tomcat Clustering - + Enable session replication in a Apache Tomcat environment.
    36. +
    37. Balancer - + Configuring, using, and extending the load balancer application.
    38. +
    39. Connectors - + Connectors available in Apache Tomcat, and native web server integration.
    40. +
    41. Monitoring and Management - + Enabling JMX Remote support, and using tools to monitor and manage Apache Tomcat.
    42. +
    43. Logging - + Configuring logging in Apache Tomcat.
    44. +
    45. Apache Portable Runtime - + Using APR to provide superior performance, scalability and better + integration with native server technologies.
    46. +
    47. Virtual Hosting - + Configuring virtual hosting in Apache Tomcat.
    48. +
    49. Advanced IO - + Extensions available over regular, blocking IO.
    50. +
    51. Additional Components - + Obtaining additional, optional components.
    52. +
    53. Using Tomcat libraries with Maven - + Obtaining Tomcat jars through Maven.
    54. +
    55. Security Considerations - + Options to consider when securing an Apache Tomcat installation.
    56. +
    57. Windows Service - + Running Tomcat as a service on Microsoft Windows.
    58. +
    59. Windows Authentication - + Configuring Tomcat to use integrated Windows authentication.
    60. +
    61. High Concurrency JDBC Pool - + Configuring Tomcat to use an alternative JDBC pool.
    62. +
    63. WebSocket support - + Developing WebSocket applications for Apache Tomcat.
    64. + +
    + +
    Reference
    + +

    The following documents are aimed at System Administrators who +are responsible for installing, configuring, and operating an Apache Tomcat server. +

    + + +
    Apache Tomcat Developers
    + +

    The following documents are for Java developers who wish to contribute to +the development of the Apache Tomcat project.

    +
      +
    • Building from Source - + Details the steps necessary to download Apache Tomcat source code (and the + other packages that it depends on), and build a binary distribution from + those sources. +
    • +
    • Changelog - Details the + changes made to Apache Tomcat. +
    • +
    • Status - + Apache Tomcat development status. +
    • +
    • Developers - List of active + Apache Tomcat contributors. +
    • +
    • Functional Specifications + - Requirements specifications for features of the Catalina servlet + container portion of Apache Tomcat.
    • +
    • Javadocs + - Javadoc API documentation for Apache Tomcat's internals.
    • +
    • Apache Tomcat Architecture + - Documentation of the Apache Tomcat Server Architecture.
    • +
    + +
    Comments

    Notice: This comments section collects your suggestions + on improving documentation for Apache Tomcat.

    + If you have trouble and need help, read + Find Help page + and ask your question on the tomcat-users + mailing list. + Do not ask such questions here. This is not a Q&A section.

    + The Apache Comments System is explained here. + Comments may be removed by our moderators if they are either + implemented or considered invalid/off-topic.


    + Copyright © 1999-2016, Apache Software Foundation +
    ]]>
    GET/docs/HTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/docs/
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="F123B9A3291354F97AC6F79540B0A325";PSID="E6C8F4B19B0B19458326A26516DB27A6";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="Qualified";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="1ab3fefc";
    X-Request-Memorid="e137c28e";sc="1";thid="24";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1200OKApache Tomcat 7 (7.0.70) - Documentation Index
    
+      The Apache Tomcat Servlet/JSP Container
+

    Apache Tomcat 7

    Version 7.0.70, Jun 15 2016
    Apache Logo

    Links

    User Guide

    Reference

    Apache Tomcat Development

    Documentation Index

    Introduction
    + +

    This is the top-level entry point of the documentation bundle for the +Apache Tomcat Servlet/JSP container. Apache Tomcat version 7.0 +implements the Servlet 3.0 and JavaServer Pages 2.2 +specifications from the +Java Community Process, and includes many +additional features that make it a useful platform for developing and deploying +web applications and web services.

    + +

    Select one of the links from the navigation menu (to the left) to drill +down to the more detailed documentation that is available. Each available +manual is described in more detail below.

    + +
    Apache Tomcat User Guide
    + +

    The following documents will assist you in downloading, installing +Apache Tomcat 7, and using many of the Apache Tomcat features.

    + +
      +
    1. Introduction - A + brief, high level, overview of Apache Tomcat.
    2. +
    3. Setup - How to install and run + Apache Tomcat on a variety of platforms.
    4. +
    5. First web application + - An introduction to the concepts of a web application as defined + in the Servlet Specification. Covers basic organization of your web application + source tree, the structure of a web application archive, and an + introduction to the web application deployment descriptor + (/WEB-INF/web.xml).
    6. +
    7. Deployer - + Operating the Apache Tomcat Deployer to deploy, precompile, and validate web + applications.
    8. +
    9. Manager - + Operating the Manager web app to deploy, undeploy, and + redeploy applications while Apache Tomcat is running.
    10. +
    11. Realms and Access Control + - Description of how to configure Realms (databases of users, + passwords, and their associated roles) for use in web applications that + utilize Container Managed Security.
    12. +
    13. Security Manager + - Configuring and using a Java Security Manager to + support fine-grained control over the behavior of your web applications. +
    14. +
    15. JNDI Resources + - Configuring standard and custom resources in the JNDI naming context + that is provided to each web application.
    16. +
    17. + JDBC DataSource + - Configuring a JNDI DataSource with a DB connection pool. + Examples for many popular databases.
    18. +
    19. Classloading + - Information about class loading in Apache Tomcat, including where to place + your application classes so that they are visible.
    20. +
    21. JSPs + - Information about Jasper configuration, as well as the JSP compiler + usage.
    22. +
    23. SSL/TLS - + Installing and configuring SSL/TLS support so that your Apache Tomcat will + serve requests using the https protocol.
    24. +
    25. SSI - + Using Server Side Includes in Apache Tomcat.
    26. +
    27. CGI - + Using CGIs with Apache Tomcat.
    28. +
    29. Proxy Support - + Configuring Apache Tomcat to run behind a proxy server (or a web server + functioning as a proxy server).
    30. +
    31. MBean Descriptor - + Configuring MBean descriptors files for custom components.
    32. +
    33. Default Servlet - + Configuring the default servlet and customizing directory listings.
    34. +
    35. Apache Tomcat Clustering - + Enable session replication in a Apache Tomcat environment.
    36. +
    37. Balancer - + Configuring, using, and extending the load balancer application.
    38. +
    39. Connectors - + Connectors available in Apache Tomcat, and native web server integration.
    40. +
    41. Monitoring and Management - + Enabling JMX Remote support, and using tools to monitor and manage Apache Tomcat.
    42. +
    43. Logging - + Configuring logging in Apache Tomcat.
    44. +
    45. Apache Portable Runtime - + Using APR to provide superior performance, scalability and better + integration with native server technologies.
    46. +
    47. Virtual Hosting - + Configuring virtual hosting in Apache Tomcat.
    48. +
    49. Advanced IO - + Extensions available over regular, blocking IO.
    50. +
    51. Additional Components - + Obtaining additional, optional components.
    52. +
    53. Using Tomcat libraries with Maven - + Obtaining Tomcat jars through Maven.
    54. +
    55. Security Considerations - + Options to consider when securing an Apache Tomcat installation.
    56. +
    57. Windows Service - + Running Tomcat as a service on Microsoft Windows.
    58. +
    59. Windows Authentication - + Configuring Tomcat to use integrated Windows authentication.
    60. +
    61. High Concurrency JDBC Pool - + Configuring Tomcat to use an alternative JDBC pool.
    62. +
    63. WebSocket support - + Developing WebSocket applications for Apache Tomcat.
    64. + +
    + +
    Reference
    + +

    The following documents are aimed at System Administrators who +are responsible for installing, configuring, and operating an Apache Tomcat server. +

    + + +
    Apache Tomcat Developers
    + +

    The following documents are for Java developers who wish to contribute to +the development of the Apache Tomcat project.

    +
      +
    • Building from Source - + Details the steps necessary to download Apache Tomcat source code (and the + other packages that it depends on), and build a binary distribution from + those sources. +
    • +
    • Changelog - Details the + changes made to Apache Tomcat. +
    • +
    • Status - + Apache Tomcat development status. +
    • +
    • Developers - List of active + Apache Tomcat contributors. +
    • +
    • Functional Specifications + - Requirements specifications for features of the Catalina servlet + container portion of Apache Tomcat.
    • +
    • Javadocs + - Javadoc API documentation for Apache Tomcat's internals.
    • +
    • Apache Tomcat Architecture + - Documentation of the Apache Tomcat Server Architecture.
    • +
    + +
    Comments

    Notice: This comments section collects your suggestions + on improving documentation for Apache Tomcat.

    + If you have trouble and need help, read + Find Help page + and ask your question on the tomcat-users + mailing list. + Do not ask such questions here. This is not a Q&A section.

    + The Apache Comments System is explained here. + Comments may be removed by our moderators if they are either + implemented or considered invalid/off-topic.


    + Copyright © 1999-2016, Apache Software Foundation +
    ]]>
    DateFri, 24 Feb 2023 14:02:07 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Accept-Rangesbytes
    ETagW/"19368-1466008846000"
    Last-ModifiedWed, 15 Jun 2016 16:40:46 GMT
    Content-Typetext/html
    Content-Length19368
    Keep-Alivetimeout=5, max=92
    ConnectionKeep-Alive
    http://zero.webappsecurity.com:80/docs/introduction.htmlhttpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/introduction.html


    type Status report

    message /docs/introduction.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    GET/docs/introductionhtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/docs/
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="6D01280B916C9837C579F275B8EC4032";PSID="E6C8F4B19B0B19458326A26516DB27A6";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="NonRooted";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="c7f5b02f";
    X-Request-Memorid="269eeac5";sc="1";thid="25";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1404Not FoundApache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/introduction.html


    type Status report

    message /docs/introduction.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:02:07 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length995
    Keep-Alivetimeout=5, max=87
    ConnectionKeep-Alive
    X-Padavoid browser bug
    http://zero.webappsecurity.com:80/docs/setup.htmlhttpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/setup.html


    type Status report

    message /docs/setup.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    GET/docs/setuphtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/docs/
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="78FB38A8ACEF0C9A4046CDBADE8ACEE3";PSID="E6C8F4B19B0B19458326A26516DB27A6";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="NonRooted";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="ec3d2ea8";
    X-Request-Memorid="a5c172a9";sc="1";thid="25";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1404Not FoundApache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/setup.html


    type Status report

    message /docs/setup.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:02:07 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length981
    Keep-Alivetimeout=5, max=86
    ConnectionKeep-Alive
    X-Padavoid browser bug
    http://zero.webappsecurity.com:80/docs/appdev/index.htmlhttpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/appdev/index.html


    type Status report

    message /docs/appdev/index.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    GET/docs/appdev/indexhtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/docs/
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="16A0FCA95F27748B361F869AE08E40BF";PSID="E6C8F4B19B0B19458326A26516DB27A6";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="NonRooted";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="725c5732";
    X-Request-Memorid="815cbb6d";sc="1";thid="25";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1404Not FoundApache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/appdev/index.html


    type Status report

    message /docs/appdev/index.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:02:07 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length995
    Keep-Alivetimeout=5, max=85
    ConnectionKeep-Alive
    X-Padavoid browser bug
    http://zero.webappsecurity.com:80/docs/deployer-howto.htmlhttpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/deployer-howto.html


    type Status report

    message /docs/deployer-howto.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    GET/docs/deployer-howtohtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/docs/
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="48C82F48DD82EF6E5105744BCCACB14E";PSID="E6C8F4B19B0B19458326A26516DB27A6";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="NonRooted";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="16fe8d94";
    X-Request-Memorid="4716e75e";sc="1";thid="25";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1404Not FoundApache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/deployer-howto.html


    type Status report

    message /docs/deployer-howto.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:02:07 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length999
    Keep-Alivetimeout=5, max=84
    ConnectionKeep-Alive
    X-Padavoid browser bug
    http://zero.webappsecurity.com:80/docs/manager-howto.htmlhttpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/manager-howto.html


    type Status report

    message /docs/manager-howto.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    GET/docs/manager-howtohtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/docs/
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="112FD5EEB1B0EC04177727EFB7E63F42";PSID="E6C8F4B19B0B19458326A26516DB27A6";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="NonRooted";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="dbcecbbb";
    X-Request-Memorid="155eb6c6";sc="1";thid="25";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1404Not FoundApache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/manager-howto.html


    type Status report

    message /docs/manager-howto.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:02:08 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length997
    Keep-Alivetimeout=5, max=83
    ConnectionKeep-Alive
    X-Padavoid browser bug
    http://zero.webappsecurity.com:80/docs/realm-howto.htmlhttpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/realm-howto.html


    type Status report

    message /docs/realm-howto.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    GET/docs/realm-howtohtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/docs/
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="1ECABF8131D9FB74C4F25E6F3BB95533";PSID="E6C8F4B19B0B19458326A26516DB27A6";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="NonRooted";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="a62e6fbf";
    X-Request-Memorid="ed6b6ceb";sc="1";thid="25";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1404Not FoundApache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/realm-howto.html


    type Status report

    message /docs/realm-howto.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:02:08 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length993
    Keep-Alivetimeout=5, max=82
    ConnectionKeep-Alive
    X-Padavoid browser bug
    http://zero.webappsecurity.com:80/docs/security-manager-howto.htmlhttpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/security-manager-howto.html


    type Status report

    message /docs/security-manager-howto.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    GET/docs/security-manager-howtohtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/docs/
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="7E424F7BB5A58C5B289CFF0AA76BF8D9";PSID="E6C8F4B19B0B19458326A26516DB27A6";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="NonRooted";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="b1e516da";
    X-Request-Memorid="ba57bf36";sc="1";thid="25";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1404Not FoundApache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/security-manager-howto.html


    type Status report

    message /docs/security-manager-howto.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:02:08 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length1015
    Keep-Alivetimeout=5, max=81
    ConnectionKeep-Alive
    http://zero.webappsecurity.com:80/docs/jndi-resources-howto.htmlhttpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/jndi-resources-howto.html


    type Status report

    message /docs/jndi-resources-howto.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    GET/docs/jndi-resources-howtohtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/docs/
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="EF663CAB9167C2DE0B4DFF2BE490C612";PSID="E6C8F4B19B0B19458326A26516DB27A6";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="NonRooted";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="a2b06176";
    X-Request-Memorid="a3fa2bb4";sc="1";thid="25";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1404Not FoundApache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/jndi-resources-howto.html


    type Status report

    message /docs/jndi-resources-howto.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:02:08 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length1011
    Keep-Alivetimeout=5, max=80
    ConnectionKeep-Alive
    http://zero.webappsecurity.com:80/docs/jndi-datasource-examples-howto.htmlhttpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/jndi-datasource-examples-howto.html


    type Status report

    message /docs/jndi-datasource-examples-howto.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    GET/docs/jndi-datasource-examples-howtohtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/docs/
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="4005A3D0BF6D3E8BFED6DB64AB0C2F8D";PSID="E6C8F4B19B0B19458326A26516DB27A6";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="NonRooted";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="ec20e1d2";
    X-Request-Memorid="756d857e";sc="1";thid="25";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1404Not FoundApache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/jndi-datasource-examples-howto.html


    type Status report

    message /docs/jndi-datasource-examples-howto.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:02:08 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length1031
    Keep-Alivetimeout=5, max=79
    ConnectionKeep-Alive
    http://zero.webappsecurity.com:80/docs/class-loader-howto.htmlhttpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/class-loader-howto.html


    type Status report

    message /docs/class-loader-howto.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    GET/docs/class-loader-howtohtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/docs/
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="3F9DBBAE2124F08F05A08341DB70E15C";PSID="E6C8F4B19B0B19458326A26516DB27A6";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="NonRooted";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="2b5dcc98";
    X-Request-Memorid="3836c5b1";sc="1";thid="24";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1404Not FoundApache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/class-loader-howto.html


    type Status report

    message /docs/class-loader-howto.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:02:09 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length1007
    Keep-Alivetimeout=5, max=90
    ConnectionKeep-Alive
    http://zero.webappsecurity.com:80/docs/jasper-howto.htmlhttpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/jasper-howto.html


    type Status report

    message /docs/jasper-howto.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    GET/docs/jasper-howtohtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/docs/
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="C33DFBBAD4C4088E60F854AC44EDE617";PSID="E6C8F4B19B0B19458326A26516DB27A6";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="NonRooted";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="b7bdae8e";
    X-Request-Memorid="9720bf26";sc="1";thid="26";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1404Not FoundApache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/jasper-howto.html


    type Status report

    message /docs/jasper-howto.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:02:09 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length995
    Keep-Alivetimeout=5, max=92
    ConnectionKeep-Alive
    X-Padavoid browser bug
    http://zero.webappsecurity.com:80/docs/ssl-howto.htmlhttpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/ssl-howto.html


    type Status report

    message /docs/ssl-howto.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    GET/docs/ssl-howtohtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/docs/
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="6C5A14E2FD330A1E50DE39A279EC7702";PSID="E6C8F4B19B0B19458326A26516DB27A6";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="NonRooted";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="0495ff2d";
    X-Request-Memorid="7ae95118";sc="1";thid="25";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1404Not FoundApache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/ssl-howto.html


    type Status report

    message /docs/ssl-howto.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:02:09 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length989
    Keep-Alivetimeout=5, max=78
    ConnectionKeep-Alive
    X-Padavoid browser bug
    http://zero.webappsecurity.com:80/docs/ssi-howto.htmlhttpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/ssi-howto.html


    type Status report

    message /docs/ssi-howto.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    GET/docs/ssi-howtohtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/docs/
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="CB04B081478DF74AFDD0F66123F0F73B";PSID="E6C8F4B19B0B19458326A26516DB27A6";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="NonRooted";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="1d797945";
    X-Request-Memorid="4fe2ffd9";sc="1";thid="26";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1404Not FoundApache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/ssi-howto.html


    type Status report

    message /docs/ssi-howto.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:02:09 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length989
    Keep-Alivetimeout=5, max=91
    ConnectionKeep-Alive
    X-Padavoid browser bug
    http://zero.webappsecurity.com:80/docs/proxy-howto.htmlhttpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/proxy-howto.html


    type Status report

    message /docs/proxy-howto.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    GET/docs/proxy-howtohtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/docs/
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="CAC7E3C5E42D4EED80EA957FD760A860";PSID="E6C8F4B19B0B19458326A26516DB27A6";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="NonRooted";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="8ee0f669";
    X-Request-Memorid="53e2d6c3";sc="1";thid="24";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1404Not FoundApache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/proxy-howto.html


    type Status report

    message /docs/proxy-howto.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:02:09 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length993
    Keep-Alivetimeout=5, max=89
    ConnectionKeep-Alive
    X-Padavoid browser bug
    http://zero.webappsecurity.com:80/docs/mbeans-descriptor-howto.htmlhttpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/mbeans-descriptor-howto.html


    type Status report

    message /docs/mbeans-descriptor-howto.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    GET/docs/mbeans-descriptor-howtohtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/docs/
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="883533A1AF3CC43BF686559EF38ED559";PSID="E6C8F4B19B0B19458326A26516DB27A6";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="NonRooted";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="316819b0";
    X-Request-Memorid="542cb33a";sc="1";thid="25";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1404Not FoundApache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/mbeans-descriptor-howto.html


    type Status report

    message /docs/mbeans-descriptor-howto.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:02:09 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length1017
    Keep-Alivetimeout=5, max=77
    ConnectionKeep-Alive
    http://zero.webappsecurity.com:80/docs/default-servlet.htmlhttpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/default-servlet.html


    type Status report

    message /docs/default-servlet.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    GET/docs/default-servlethtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/docs/
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="196E583DD828BFA743BE2FFD9D82BAF9";PSID="E6C8F4B19B0B19458326A26516DB27A6";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="NonRooted";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="0c439790";
    X-Request-Memorid="e1bf364a";sc="1";thid="26";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1404Not FoundApache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/default-servlet.html


    type Status report

    message /docs/default-servlet.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:02:09 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length1001
    Keep-Alivetimeout=5, max=90
    ConnectionKeep-Alive
    http://zero.webappsecurity.com:80/docs/cluster-howto.htmlhttpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/cluster-howto.html


    type Status report

    message /docs/cluster-howto.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    GET/docs/cluster-howtohtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/docs/
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="9099B5738BA56B5A5A2C4CBE80AD5F64";PSID="E6C8F4B19B0B19458326A26516DB27A6";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="NonRooted";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="aaa8bb16";
    X-Request-Memorid="f2a0fe37";sc="1";thid="24";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1404Not FoundApache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/cluster-howto.html


    type Status report

    message /docs/cluster-howto.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:02:09 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length997
    Keep-Alivetimeout=5, max=88
    ConnectionKeep-Alive
    X-Padavoid browser bug
    http://zero.webappsecurity.com:80/docs/balancer-howto.htmlhttpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/balancer-howto.html


    type Status report

    message /docs/balancer-howto.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    GET/docs/balancer-howtohtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/docs/
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="5A3F9778F9B4AA2EA73C801D70ED9312";PSID="E6C8F4B19B0B19458326A26516DB27A6";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="NonRooted";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="f4b5d168";
    X-Request-Memorid="1f4f212e";sc="1";thid="25";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1404Not FoundApache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/balancer-howto.html


    type Status report

    message /docs/balancer-howto.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:02:09 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length999
    Keep-Alivetimeout=5, max=76
    ConnectionKeep-Alive
    X-Padavoid browser bug
    http://zero.webappsecurity.com:80/docs/connectors.htmlhttpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/connectors.html


    type Status report

    message /docs/connectors.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    GET/docs/connectorshtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/docs/
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="F645970E5D94370DB55FF4BF58FBF8ED";PSID="E6C8F4B19B0B19458326A26516DB27A6";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="NonRooted";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="35d2818e";
    X-Request-Memorid="3a7ecd10";sc="1";thid="26";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1404Not FoundApache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/connectors.html


    type Status report

    message /docs/connectors.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:02:09 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length991
    Keep-Alivetimeout=5, max=89
    ConnectionKeep-Alive
    X-Padavoid browser bug
    http://zero.webappsecurity.com:80/docs/monitoring.htmlhttpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/monitoring.html


    type Status report

    message /docs/monitoring.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    GET/docs/monitoringhtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/docs/
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="9F4C1B8B0854C98B23B22FEFF5F16E61";PSID="E6C8F4B19B0B19458326A26516DB27A6";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="NonRooted";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="aee734ed";
    X-Request-Memorid="75e9e558";sc="1";thid="24";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1404Not FoundApache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/monitoring.html


    type Status report

    message /docs/monitoring.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:02:09 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length991
    Keep-Alivetimeout=5, max=87
    ConnectionKeep-Alive
    X-Padavoid browser bug
    http://zero.webappsecurity.com:80/docs/logging.htmlhttpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/logging.html


    type Status report

    message /docs/logging.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    GET/docs/logginghtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/docs/
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="B03E0419F5D635D0EAC6624B1D254B23";PSID="E6C8F4B19B0B19458326A26516DB27A6";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="NonRooted";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="3173147f";
    X-Request-Memorid="98b1c43d";sc="1";thid="25";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1404Not FoundApache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/logging.html


    type Status report

    message /docs/logging.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:02:09 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length985
    Keep-Alivetimeout=5, max=75
    ConnectionKeep-Alive
    X-Padavoid browser bug
    http://zero.webappsecurity.com:80/docs/apr.htmlhttpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/apr.html


    type Status report

    message /docs/apr.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    GET/docs/aprhtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/docs/
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="F078E0032F5F3268159A88B62D6B9D04";PSID="E6C8F4B19B0B19458326A26516DB27A6";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="NonRooted";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="6c9e9639";
    X-Request-Memorid="87653b7c";sc="1";thid="26";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1404Not FoundApache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/apr.html


    type Status report

    message /docs/apr.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:02:09 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length977
    Keep-Alivetimeout=5, max=88
    ConnectionKeep-Alive
    X-Padavoid browser bug
    http://zero.webappsecurity.com:80/docs/virtual-hosting-howto.htmlhttpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/virtual-hosting-howto.html


    type Status report

    message /docs/virtual-hosting-howto.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    GET/docs/virtual-hosting-howtohtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/docs/
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="3789B0DC3DE1119CE46D7BC7A2B69DBC";PSID="E6C8F4B19B0B19458326A26516DB27A6";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="NonRooted";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="71488d9a";
    X-Request-Memorid="5df7f02f";sc="1";thid="24";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1404Not FoundApache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/virtual-hosting-howto.html


    type Status report

    message /docs/virtual-hosting-howto.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:02:09 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length1013
    Keep-Alivetimeout=5, max=86
    ConnectionKeep-Alive
    http://zero.webappsecurity.com:80/docs/aio.htmlhttpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/aio.html


    type Status report

    message /docs/aio.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    GET/docs/aiohtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/docs/
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="6F131EFFACB7568CD46EEBF5D7A36259";PSID="E6C8F4B19B0B19458326A26516DB27A6";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="NonRooted";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="66b12bf5";
    X-Request-Memorid="b9b4b30a";sc="1";thid="25";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1404Not FoundApache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/aio.html


    type Status report

    message /docs/aio.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:02:09 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length977
    Keep-Alivetimeout=5, max=74
    ConnectionKeep-Alive
    X-Padavoid browser bug
    http://zero.webappsecurity.com:80/docs/extras.htmlhttpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/extras.html


    type Status report

    message /docs/extras.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    GET/docs/extrashtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/docs/
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="1B9B32B12B84477923B5AB9212A429C9";PSID="E6C8F4B19B0B19458326A26516DB27A6";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="NonRooted";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="e7e44896";
    X-Request-Memorid="8c59af4d";sc="1";thid="26";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1404Not FoundApache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/extras.html


    type Status report

    message /docs/extras.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:02:09 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length983
    Keep-Alivetimeout=5, max=87
    ConnectionKeep-Alive
    X-Padavoid browser bug
    http://zero.webappsecurity.com:80/docs/cgi-howto.htmlhttpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/cgi-howto.html


    type Status report

    message /docs/cgi-howto.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    GET/docs/cgi-howtohtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/docs/
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="E01DF8FF8FF9692D55E8768F41AC3F14";PSID="E6C8F4B19B0B19458326A26516DB27A6";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="NonRooted";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="bd3f1b5a";
    X-Request-Memorid="b305bd0c";sc="1";thid="24";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1404Not FoundApache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/cgi-howto.html


    type Status report

    message /docs/cgi-howto.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:02:09 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length989
    Keep-Alivetimeout=5, max=85
    ConnectionKeep-Alive
    X-Padavoid browser bug
    http://zero.webappsecurity.com:80/docs/security-howto.htmlhttpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/security-howto.html


    type Status report

    message /docs/security-howto.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    GET/docs/security-howtohtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/docs/
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="1F194499C7D4146D9EC2FB6CA4EFA71D";PSID="E6C8F4B19B0B19458326A26516DB27A6";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="NonRooted";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="74cc00e8";
    X-Request-Memorid="a3ea7e52";sc="1";thid="25";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1404Not FoundApache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/security-howto.html


    type Status report

    message /docs/security-howto.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:02:09 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length999
    Keep-Alivetimeout=5, max=73
    ConnectionKeep-Alive
    X-Padavoid browser bug
    http://zero.webappsecurity.com:80/docs/maven-jars.htmlhttpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/maven-jars.html


    type Status report

    message /docs/maven-jars.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    GET/docs/maven-jarshtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/docs/
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="F1CFEAE3757BB658B51C6113CCDB4AB2";PSID="E6C8F4B19B0B19458326A26516DB27A6";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="NonRooted";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="2c3c9e7b";
    X-Request-Memorid="969c32b7";sc="1";thid="24";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1404Not FoundApache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/maven-jars.html


    type Status report

    message /docs/maven-jars.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:02:09 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length991
    Keep-Alivetimeout=5, max=84
    ConnectionKeep-Alive
    X-Padavoid browser bug
    http://zero.webappsecurity.com:80/docs/windows-service-howto.htmlhttpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/windows-service-howto.html


    type Status report

    message /docs/windows-service-howto.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    GET/docs/windows-service-howtohtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/docs/
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="9BD235AA424324B5BDC5899093604D45";PSID="E6C8F4B19B0B19458326A26516DB27A6";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="NonRooted";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="340f31b6";
    X-Request-Memorid="6a2d6912";sc="1";thid="26";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1404Not FoundApache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/windows-service-howto.html


    type Status report

    message /docs/windows-service-howto.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:02:09 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length1013
    Keep-Alivetimeout=5, max=86
    ConnectionKeep-Alive
    http://zero.webappsecurity.com:80/docs/windows-auth-howto.htmlhttpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/windows-auth-howto.html


    type Status report

    message /docs/windows-auth-howto.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    GET/docs/windows-auth-howtohtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/docs/
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="FF70A74D422C22B72591B6C68DE7DBA3";PSID="E6C8F4B19B0B19458326A26516DB27A6";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="NonRooted";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="88bb70f6";
    X-Request-Memorid="901ff834";sc="1";thid="25";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1404Not FoundApache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/windows-auth-howto.html


    type Status report

    message /docs/windows-auth-howto.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:02:09 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length1007
    Keep-Alivetimeout=5, max=72
    ConnectionKeep-Alive
    http://zero.webappsecurity.com:80/account/httpzero.webappsecurity.com80Vulnerability10028109321Web Server Misconfiguration: Server Error MessageEnvironmentWeb Server Misconfiguration: Server Error MessageCWE-550: Information Exposure Through Server Error MessageSummaryImplicationThe server has issued a 500 error response. While the body content of the error page may not expose any information about the technical error, the fact that an error occurred is confirmed by the 500 status code. Knowing whether certain inputs trigger a server error can aid or inform an attacker of potential vulnerabilities.]]>ExecutionFixFor Security Operations:

    + Server error messages, such as "File Protected Against Access", often reveal more information than intended. For instance, an attacker who receives this message can be relatively certain that file exists, which might give him the information he needs to pursue other leads, or to perform an actual exploit. The following recommendations will help to ensure that a potential attacker is not deriving valuable information from any server error message that is presented.
    • Uniform Error Codes: Ensure that you are not inadvertently supplying information to an attacker via the use of inconsistent or "conflicting" error messages. For instance, don't reveal unintended information by utilizing error messages such as Access Denied, which will also let an attacker know that the file he seeks actually exists. Have consistent terminology for files and folders that do exist, do not exist, and which have read access denied.
    • Informational Error Messages: Ensure that error messages do not reveal too much information. Complete or partial paths, variable and file names, row and column names in tables, and specific database errors should never be revealed to the end user. Remember, an attacker will gather as much information as possible, and then add pieces of seemingly innocuous information together to craft a method of attack.
    • Proper Error Handling: Utilize generic error pages and error handling logic to inform end users of potential problems. Do not provide system information or other data that could be utilized by an attacker when orchestrating an attack.

    Removing Detailed Error Messages

    + +Find instructions for turning off detailed error messaging in IIS at this link:

    http://support.microsoft.com/kb/294807

    For Development:

    + From a development perspective, the best method of preventing problems from arising from server error messages is to adopt secure programming techniques that prevent problems that might arise from an attacker discovering too much information about the architecture and design of your web application. The following recommendations can be used as a basis for that.
    • Stringently define the data type (for instance, a string, an alphanumeric character, etc) that the application will accept.
    • Use what is good instead of what is bad. Validate input for improper characters.
    • Do not display error messages to the end user that provide information (such as table names) that could be utilized in orchestrating an attack.
    • Define the allowed set of characters. For instance, if a field is to receive a number, only let that field accept numbers.
    • Define the maximum and minimum data lengths for what the application will accept.
    • Specify acceptable numeric ranges for input.



    For QA:
    + +The best course of action for QA associates to take is to ensure that the error handling scheme is consistent. Do you receive a different type of error for a file that does not exist as opposed to a file that does? Are phrases like "Permission Denied" utilized which could reveal the existence of a file to an attacker? Inconsistent methods of dealing with errors gives an attacker a very powerful way of gathering information about your web application.]]>
    Reference InfoApache:
    Security Tips for Server Configuration
    Protecting Confidential Documents at Your Site
    Securing Apache - Access Control

    Microsoft:
    How to set required NTFS permissions and user rights for an IIS 5.0 Web server
    Default permissions and user rights for IIS 6.0
    Description of Microsoft Internet Information Services (IIS) 5.0 and 6.0 status codes]]>
    Vulnerability100267424Poor Error Handling: Unhandled ExceptionCWE-209: Information Exposure Through an Error MessageErrorsPoor Error Handling: Unhandled ExceptionSummary
    Description

    + + +The most common cause of an unhandled exception is a failure to properly sanitize client-supplied data that is used in SQL statements. They can also be caused by a bug in the web application's database communication code, a misconfiguration of database connection settings, an unavailable database, or any other reason that would cause the application's database driver to be unable to establish a working session with the server. The problem is not that web applications generate errors. All web applications in their normal course of operation will at some point receive an unhandled exception. The problem lies not in that these errors were received, but rather in how they are handled. Any error handling solution needs to be well-designed, and uniform in how it handles errors. For instance, assume an attacker is attempting to access a specific file. If the request returns an error File not Found, the attacker can be relatively sure the file does not exist. However, if the error returns "Permission Denied," the attacker has a fairly good idea that the specific file does exist. This can be helpful to an attacker in many ways, from determining the operating system to discovering the underlying architecture and design of the application. + +

    + +The error message may also contain the location of the file that contains the offending function. This may disclose the webroot's absolute path as well as give the attacker the location of application "include" files or database configuration information. A fundamental necessity for a successful attack upon your web application is reconnaissance. Database server error messages can provide information that can then be utilized when the attacker is formulating his next method of attack. It may even disclose the portion of code that failed. + +

    + +Be aware that this check is part of unknown application testing which seeks to uncover new vulnerabilities in both custom and commercial software. Because of this, there are no specific patches or remediation information for this issue. Please note that this vulnerability may be a false positive if the page it is flagged on is technical documentation relating to a database server. + +]]>
    ImplicationThe severity of this vulnerability depends on the reason that the error message was generated. In most cases, it will be the result of the web application + +attempting to use an invalid client-supplied argument in a SQL statement, which means that SQL injection will be possible. If so, an attacker will at least be able to read the contents of the entire database arbitrarily. Depending on the database server and the SQL statement, deleting, updating and adding records and executing arbitrary commands may also be possible. If a software bug or bug is responsible for triggering the error, the potential impact will vary, depending on the + +circumstances. + +The location of the application that caused the error can be useful in facilitating other kinds of attacks. If the file is a hidden or include file, the attacker may be able to gain more information about the mechanics of the web application, possibly even the source code. Application source code is likely to contain usernames, passwords, database connection strings and aids the attacker greatly in discovering new vulnerabilities.]]>Execution +The information gleaned from database server error messages allows an attacker to conduct a successful attack after he combines his various findings. You can verify the database error response is highlighted in response tab. The ways in which an attacker can exploit the conditions that caused the error depend on its cause. In the case of SQL injection, the techniques that are used will vary from database server to database server, and even query to query. An overview SQL Injection attacks is available in the SQL Injection vulnerability information, accessible via the Policy Manager.]]>FixFor Development:

    +From a development perspective, the best method of preventing problems from arising from database error messages is to adopt secure programming techniques that prevent problems that might arise from an attacker discovering too much information about the architecture and design of your web application. The following recommendations can be used as a basis for that. + + +
    • +Stringently define the data type (for instance, a string, an alphanumeric character, etc) that the application will accept.
    • Use what is good instead of what is bad. Validate input for improper characters.
    • Do not display error messages to the end user that provide information (such as table names) that could be utilized in orchestrating an attack.
    • Define the allowed set of characters. For instance, if a field is to receive a number, only let that field accept numbers.
    • Define the maximum and minimum data lengths for what the application will accept.
    • Specify acceptable numeric ranges for input.
    For Security Operations:

    +The following recommendations will help in implementing a secure database protocol for your web application. Be advised each database has its own method of +secure lock down.

    • ODBC Error Messaging: Turn off ODBC error messaging in your database server. Never display raw ODBC or other errors to the end user. See Removing Detailed Error Messages below, or consult your database server's documentation, for more information. + + +

    • Uniform Error Codes: Ensure that you are not inadvertently supplying information to an attacker via the use of inconsistent or "conflicting" error +messages. For instance, don't reveal unintended information by utilizing error messages such as Access Denied, which will also let an attacker know that the file +he seeks actually exists. Have consistent terminology for files and folders that do exist, do not exist, and which have read access denied.

    • Informational Error Messages: Ensure that error messages do not reveal too much information. Complete or partial paths, variable and file names, +row and column names in tables, and specific database errors should never be revealed to the end user. Remember, an attacker will gather as much information +as possible, and then add pieces of seemingly innocuous information together to craft a method of attack.

    • Proper Error Handling: Utilize generic error pages and error handling logic to inform end users of potential problems. Do not provide system +information or other data that could be utilized by an attacker when orchestrating an attack.

    • Stored Procedures: Consider using stored procedures. They require a very specific parameter format, which makes them less susceptible to SQL Injection +attacks.

    • Database Privileges: Utilize a least-privileges scheme for the database application. Ensure that user accounts only have the limited functionality +that is actually required. All database mechanisms should deny access until it has been granted, not grant access until it has been denied.



    For QA:

    + +In reality, simple testing can usually determine how your web application will react to different input errors. More expansive testing must be conducted to cause internal errors to gauge the reaction of the site. If the unhandled exception occurs in a piece of in-house developed software, consult the developer. If it is in a commercial package, contact technical support.

    + + +The best course of action for QA associates to take is to ensure that the error handling scheme is consistent. Do you receive a different type of error for a file that does not exist as opposed to a file that does? Are phrases like "Permission Denied" utilized which could reveal the existence of a file to an attacker?]]>
    Reference InfoApache:
    Apache HTTP Server Version 1.3 Custom Error Responses
    Apache HTTP Server Version 2.0 Custom Error Responses

    Microsoft:
    Description of Microsoft Internet Information Services (IIS) 5.0 and 6.0 status codes
    SQL Injection]]>
    + + + + Zero - Error + + + + + + + + + + + + + + + +
    + + +
    +
    + +
    +
    + + + Exception: +
    +                org.springframework.jdbc.BadSqlGrammarException: StatementCallback; bad SQL grammar [SELECT * FROM accounts WHERE id = index]; nested exception is java.sql.SQLSyntaxErrorException: user lacks privilege or object not found: INDEX
    +	at org.springframework.jdbc.support.SQLExceptionSubclassTranslator.doTranslate(SQLExceptionSubclassTranslator.java:95)
    +	at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:72)
    +	at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:80)
    +	at org.springframework.jdbc.core.JdbcTemplate.execute(JdbcTemplate.java:407)
    +	at org.springframework.jdbc.core.JdbcTemplate.query(JdbcTemplate.java:456)
    +	at org.springframework.jdbc.core.JdbcTemplate.query(JdbcTemplate.java:464)
    +	at org.springframework.jdbc.core.JdbcTemplate.queryForObject(JdbcTemplate.java:472)
    +	at com.hp.webinspect.zero.dao.impl.AccountDaoImpl.get(AccountDaoImpl.java:36)
    +	at com.hp.webinspect.zero.service.impl.AccountServiceImpl.get(AccountServiceImpl.java:38)
    +	at com.hp.webinspect.zero.web.controller.MobileApiController.findAccountById(MobileApiController.java:55)
    +	at sun.reflect.GeneratedMethodAccessor152.invoke(Unknown Source)
    +	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    +	at java.lang.reflect.Method.invoke(Unknown Source)
    +	at org.springframework.web.method.support.InvocableHandlerMethod.invoke(InvocableHandlerMethod.java:219)
    +	at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:132)
    +	at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:104)
    +	at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandleMethod(RequestMappingHandlerAdapter.java:745)
    +	at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:686)
    +	at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:80)
    +	at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:925)
    +	at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:856)
    +	at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:936)
    +	at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:827)
    +	at javax.servlet.http.HttpServlet.service(HttpServlet.java:624)
    +	at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:812)
    +	at javax.servlet.http.HttpServlet.service(HttpServlet.java:731)
    +	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:303)
    +	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
    +	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:330)
    +	at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:118)
    +	at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:84)
    +	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342)
    +	at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:113)
    +	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342)
    +	at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:103)
    +	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342)
    +	at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:113)
    +	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342)
    +	at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:54)
    +	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342)
    +	at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:45)
    +	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342)
    +	at org.springframework.security.web.authentication.AbstractAuthenticationProcessingFilter.doFilter(AbstractAuthenticationProcessingFilter.java:183)
    +	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342)
    +	at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:105)
    +	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342)
    +	at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:87)
    +	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342)
    +	at org.springframework.security.web.access.channel.ChannelProcessingFilter.doFilter(ChannelProcessingFilter.java:144)
    +	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342)
    +	at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:192)
    +	at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:160)
    +	at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
    +	at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:259)
    +	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
    +	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
    +	at com.hp.webinspect.zero.web.NoCacheFilter.doFilter(NoCacheFilter.java:26)
    +	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
    +	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
    +	at com.hp.webinspect.zero.web.FakeCommonFoldersEmulator.doFilter(FakeCommonFoldersEmulator.java:39)
    +	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
    +	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
    +	at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:88)
    +	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
    +	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
    +	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
    +	at org.tuckey.web.filters.urlrewrite.UrlRewriteFilter.doFilter(UrlRewriteFilter.java:399)
    +	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
    +	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
    +	at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:218)
    +	at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:122)
    +	at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:505)
    +	at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:169)
    +	at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:103)
    +	at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:116)
    +	at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:442)
    +	at org.apache.coyote.http11.AbstractHttp11Processor.process(AbstractHttp11Processor.java:1082)
    +	at org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:623)
    +	at org.apache.tomcat.util.net.JIoEndpoint$SocketProcessor.run(JIoEndpoint.java:316)
    +	at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(Unknown Source)
    +	at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
    +	at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
    +	at java.lang.Thread.run(Unknown Source)
    +Caused by: java.sql.SQLSyntaxErrorException: user lacks privilege or object not found: INDEX
    +	at org.hsqldb.jdbc.Util.sqlException(Unknown Source)
    +	at org.hsqldb.jdbc.Util.sqlException(Unknown Source)
    +	at org.hsqldb.jdbc.JDBCStatement.fetchResult(Unknown Source)
    +	at org.hsqldb.jdbc.JDBCStatement.executeQuery(Unknown Source)
    +	at com.jolbox.bonecp.StatementHandle.executeQuery(StatementHandle.java:503)
    +	at org.springframework.jdbc.core.JdbcTemplate$1QueryStatementCallback.doInStatement(JdbcTemplate.java:441)
    +	at org.springframework.jdbc.core.JdbcTemplate.execute(JdbcTemplate.java:396)
    +	... 79 more
    +Caused by: org.hsqldb.HsqlException: user lacks privilege or object not found: INDEX
    +	at org.hsqldb.error.Error.error(Unknown Source)
    +	at org.hsqldb.error.Error.error(Unknown Source)
    +	at org.hsqldb.ExpressionColumn.checkColumnsResolved(Unknown Source)
    +	at org.hsqldb.QueryExpression.resolve(Unknown Source)
    +	at org.hsqldb.ParserDQL.compileCursorSpecification(Unknown Source)
    +	at org.hsqldb.ParserCommand.compilePart(Unknown Source)
    +	at org.hsqldb.ParserCommand.compileStatements(Unknown Source)
    +	at org.hsqldb.Session.executeDirectStatement(Unknown Source)
    +	at org.hsqldb.Session.execute(Unknown Source)
    +	... 84 more
    +
    +            
    +
    +
    +
    +
    + +
    +
    + +
    +
    +
    +
    +
    +
      +
    • Download WebInspect
    • +
    +
    + +
    +
      +
    • Terms of Use
    • +
    +
    + +
    +
      +
    • Contact Micro Focus
    • +
    • Privacy Statement
    • + +
    +
    +
    + +
    +
    + The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating + the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting + Web application vulnerabilities. This site is not a real banking site and any similarities to third party products + and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, + either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. + Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at + https://www.microfocus.com/about/legal/#privacy + and Micro Focus Fortify’s Online Privacy Statement found at + https://www.microfocus.com/about/legal/#privacy. + +

    + + Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. +
    +
    +
    +
    +
    + + + + +]]>
    GET/account/HTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0 +
    Refererhttp://zero.webappsecurity.com/resources/js/bootstrap.min.js
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Audit.Attack";SID="AF6243F39D8130C35BA56E1EF0D92171";PSID="C2E3EA7620F4A29F11DBAC2B877DD850";SessionType="AuditAttack";CrawlType="None";AttackType="Search";OriginatingEngineID="ae34b422-6357-4aca-8fe7-7e449e14c9b7";AttackSequence="0";AttackParamDesc="";AttackParamIndex="0";AttackParamSubIndex="0";CheckId="10220";Engine="Directory+Enumeration";SmartMode="4";tht="11";
    X-RequestManager-Memostid="15";stmi="0";sc="1";rid="7dfff476";
    X-Request-Memorid="2f862788";sc="1";thid="27";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0
    HTTP/1.1500Internal Server Error + + + + Zero - Error + + + + + + + + + + + + + + + +
    + + +
    +
    + +
    +
    + + + Exception: +
    +                org.springframework.jdbc.BadSqlGrammarException: StatementCallback; bad SQL grammar [SELECT * FROM accounts WHERE id = index]; nested exception is java.sql.SQLSyntaxErrorException: user lacks privilege or object not found: INDEX
    +	at org.springframework.jdbc.support.SQLExceptionSubclassTranslator.doTranslate(SQLExceptionSubclassTranslator.java:95)
    +	at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:72)
    +	at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:80)
    +	at org.springframework.jdbc.core.JdbcTemplate.execute(JdbcTemplate.java:407)
    +	at org.springframework.jdbc.core.JdbcTemplate.query(JdbcTemplate.java:456)
    +	at org.springframework.jdbc.core.JdbcTemplate.query(JdbcTemplate.java:464)
    +	at org.springframework.jdbc.core.JdbcTemplate.queryForObject(JdbcTemplate.java:472)
    +	at com.hp.webinspect.zero.dao.impl.AccountDaoImpl.get(AccountDaoImpl.java:36)
    +	at com.hp.webinspect.zero.service.impl.AccountServiceImpl.get(AccountServiceImpl.java:38)
    +	at com.hp.webinspect.zero.web.controller.MobileApiController.findAccountById(MobileApiController.java:55)
    +	at sun.reflect.GeneratedMethodAccessor152.invoke(Unknown Source)
    +	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    +	at java.lang.reflect.Method.invoke(Unknown Source)
    +	at org.springframework.web.method.support.InvocableHandlerMethod.invoke(InvocableHandlerMethod.java:219)
    +	at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:132)
    +	at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:104)
    +	at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandleMethod(RequestMappingHandlerAdapter.java:745)
    +	at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:686)
    +	at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:80)
    +	at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:925)
    +	at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:856)
    +	at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:936)
    +	at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:827)
    +	at javax.servlet.http.HttpServlet.service(HttpServlet.java:624)
    +	at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:812)
    +	at javax.servlet.http.HttpServlet.service(HttpServlet.java:731)
    +	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:303)
    +	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
    +	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:330)
    +	at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:118)
    +	at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:84)
    +	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342)
    +	at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:113)
    +	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342)
    +	at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:103)
    +	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342)
    +	at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:113)
    +	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342)
    +	at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:54)
    +	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342)
    +	at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:45)
    +	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342)
    +	at org.springframework.security.web.authentication.AbstractAuthenticationProcessingFilter.doFilter(AbstractAuthenticationProcessingFilter.java:183)
    +	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342)
    +	at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:105)
    +	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342)
    +	at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:87)
    +	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342)
    +	at org.springframework.security.web.access.channel.ChannelProcessingFilter.doFilter(ChannelProcessingFilter.java:144)
    +	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342)
    +	at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:192)
    +	at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:160)
    +	at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
    +	at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:259)
    +	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
    +	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
    +	at com.hp.webinspect.zero.web.NoCacheFilter.doFilter(NoCacheFilter.java:26)
    +	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
    +	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
    +	at com.hp.webinspect.zero.web.FakeCommonFoldersEmulator.doFilter(FakeCommonFoldersEmulator.java:39)
    +	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
    +	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
    +	at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:88)
    +	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
    +	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
    +	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
    +	at org.tuckey.web.filters.urlrewrite.UrlRewriteFilter.doFilter(UrlRewriteFilter.java:399)
    +	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
    +	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
    +	at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:218)
    +	at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:122)
    +	at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:505)
    +	at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:169)
    +	at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:103)
    +	at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:116)
    +	at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:442)
    +	at org.apache.coyote.http11.AbstractHttp11Processor.process(AbstractHttp11Processor.java:1082)
    +	at org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:623)
    +	at org.apache.tomcat.util.net.JIoEndpoint$SocketProcessor.run(JIoEndpoint.java:316)
    +	at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(Unknown Source)
    +	at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
    +	at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
    +	at java.lang.Thread.run(Unknown Source)
    +Caused by: java.sql.SQLSyntaxErrorException: user lacks privilege or object not found: INDEX
    +	at org.hsqldb.jdbc.Util.sqlException(Unknown Source)
    +	at org.hsqldb.jdbc.Util.sqlException(Unknown Source)
    +	at org.hsqldb.jdbc.JDBCStatement.fetchResult(Unknown Source)
    +	at org.hsqldb.jdbc.JDBCStatement.executeQuery(Unknown Source)
    +	at com.jolbox.bonecp.StatementHandle.executeQuery(StatementHandle.java:503)
    +	at org.springframework.jdbc.core.JdbcTemplate$1QueryStatementCallback.doInStatement(JdbcTemplate.java:441)
    +	at org.springframework.jdbc.core.JdbcTemplate.execute(JdbcTemplate.java:396)
    +	... 79 more
    +Caused by: org.hsqldb.HsqlException: user lacks privilege or object not found: INDEX
    +	at org.hsqldb.error.Error.error(Unknown Source)
    +	at org.hsqldb.error.Error.error(Unknown Source)
    +	at org.hsqldb.ExpressionColumn.checkColumnsResolved(Unknown Source)
    +	at org.hsqldb.QueryExpression.resolve(Unknown Source)
    +	at org.hsqldb.ParserDQL.compileCursorSpecification(Unknown Source)
    +	at org.hsqldb.ParserCommand.compilePart(Unknown Source)
    +	at org.hsqldb.ParserCommand.compileStatements(Unknown Source)
    +	at org.hsqldb.Session.executeDirectStatement(Unknown Source)
    +	at org.hsqldb.Session.execute(Unknown Source)
    +	... 84 more
    +
    +            
    +
    +
    +
    +
    + +
    +
    + +
    +
    +
    +
    +
    +
      +
    • Download WebInspect
    • +
    +
    + +
    +
      +
    • Terms of Use
    • +
    +
    + +
    +
      +
    • Contact Micro Focus
    • +
    • Privacy Statement
    • + +
    +
    +
    + +
    +
    + The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating + the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting + Web application vulnerabilities. This site is not a real banking site and any similarities to third party products + and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, + either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. + Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at + https://www.microfocus.com/about/legal/#privacy + and Micro Focus Fortify’s Online Privacy Statement found at + https://www.microfocus.com/about/legal/#privacy. + +

    + + Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. +
    +
    +
    +
    +
    + + + + +]]>
    DateFri, 24 Feb 2023 14:02:06 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Cache-Controlno-cache, max-age=0, must-revalidate, no-store
    Content-Typetext/html;charset=UTF-8
    Content-Languageen-US
    Connectionclose
    Content-Length15205
    http://zero.webappsecurity.com:80/docs/jdbc-pool.htmlhttpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/jdbc-pool.html


    type Status report

    message /docs/jdbc-pool.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    GET/docs/jdbc-poolhtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/docs/
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="B7C608376C8C177B18E312A69B9A902D";PSID="E6C8F4B19B0B19458326A26516DB27A6";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="NonRooted";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="a55d9e3e";
    X-Request-Memorid="10fbdd65";sc="1";thid="24";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1404Not FoundApache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/jdbc-pool.html


    type Status report

    message /docs/jdbc-pool.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:02:09 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length989
    Keep-Alivetimeout=5, max=83
    ConnectionKeep-Alive
    X-Padavoid browser bug
    http://zero.webappsecurity.com:80/docs/web-socket-howto.htmlhttpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/web-socket-howto.html


    type Status report

    message /docs/web-socket-howto.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    GET/docs/web-socket-howtohtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/docs/
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="5A98767C08BA6936D21681BA4745B24F";PSID="E6C8F4B19B0B19458326A26516DB27A6";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="NonRooted";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="068ec142";
    X-Request-Memorid="9a7e344e";sc="1";thid="26";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1404Not FoundApache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/web-socket-howto.html


    type Status report

    message /docs/web-socket-howto.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:02:09 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length1003
    Keep-Alivetimeout=5, max=85
    ConnectionKeep-Alive
    http://zero.webappsecurity.com:80/docs/RELEASE-NOTES.txthttpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/RELEASE-NOTES.txt


    type Status report

    message /docs/RELEASE-NOTES.txt

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    GET/docs/RELEASE-NOTEStxtHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/docs/
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="EC10F5A5F43AF973F01DA76A23D1DF1C";PSID="E6C8F4B19B0B19458326A26516DB27A6";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="NonRooted";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="53ad78fa";
    X-Request-Memorid="5c5eb7c3";sc="1";thid="25";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1404Not FoundApache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/RELEASE-NOTES.txt


    type Status report

    message /docs/RELEASE-NOTES.txt

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:02:10 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length995
    Keep-Alivetimeout=5, max=71
    ConnectionKeep-Alive
    X-Padavoid browser bug
    http://zero.webappsecurity.com:80/docs/config/index.htmlhttpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/config/index.html


    type Status report

    message /docs/config/index.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    GET/docs/config/indexhtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/docs/
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="7E09004C87348100F227487435CD3213";PSID="E6C8F4B19B0B19458326A26516DB27A6";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="NonRooted";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="8b6220af";
    X-Request-Memorid="ab5bede8";sc="1";thid="24";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1404Not FoundApache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/config/index.html


    type Status report

    message /docs/config/index.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:02:10 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length995
    Keep-Alivetimeout=5, max=82
    ConnectionKeep-Alive
    X-Padavoid browser bug
    http://zero.webappsecurity.com:80/docs/api/index.htmlhttpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/api/index.html


    type Status report

    message /docs/api/index.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    GET/docs/api/indexhtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/docs/
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="1B53504FE25C2CF2D3F3EE454E68D7B2";PSID="E6C8F4B19B0B19458326A26516DB27A6";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="NonRooted";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="da8fcc43";
    X-Request-Memorid="939cf29f";sc="1";thid="26";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1404Not FoundApache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/api/index.html


    type Status report

    message /docs/api/index.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:02:10 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length989
    Keep-Alivetimeout=5, max=84
    ConnectionKeep-Alive
    X-Padavoid browser bug
    http://zero.webappsecurity.com:80/docs/servletapi/index.htmlhttpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/servletapi/index.html


    type Status report

    message /docs/servletapi/index.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    GET/docs/servletapi/indexhtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/docs/
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="9A374CF6133C82D2A83C2624AADBEB16";PSID="E6C8F4B19B0B19458326A26516DB27A6";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="NonRooted";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="2ae47506";
    X-Request-Memorid="f9ec02bc";sc="1";thid="25";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1404Not FoundApache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/servletapi/index.html


    type Status report

    message /docs/servletapi/index.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:02:10 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length1003
    Keep-Alivetimeout=5, max=70
    ConnectionKeep-Alive
    http://zero.webappsecurity.com:80/docs/jspapi/index.htmlhttpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/jspapi/index.html


    type Status report

    message /docs/jspapi/index.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    GET/docs/jspapi/indexhtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/docs/
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="2972AA34C8A6AF245A423BC19C9CD9CE";PSID="E6C8F4B19B0B19458326A26516DB27A6";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="NonRooted";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="b72120ba";
    X-Request-Memorid="ac6a8990";sc="1";thid="24";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1404Not FoundApache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/jspapi/index.html


    type Status report

    message /docs/jspapi/index.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:02:10 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length995
    Keep-Alivetimeout=5, max=81
    ConnectionKeep-Alive
    X-Padavoid browser bug
    http://zero.webappsecurity.com:80/docs/elapi/index.htmlhttpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/elapi/index.html


    type Status report

    message /docs/elapi/index.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    GET/docs/elapi/indexhtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/docs/
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="82703ED3FF1FE7EB55F9833C68BD9964";PSID="E6C8F4B19B0B19458326A26516DB27A6";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="NonRooted";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="c7fa5490";
    X-Request-Memorid="e12f23b6";sc="1";thid="26";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1404Not FoundApache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/elapi/index.html


    type Status report

    message /docs/elapi/index.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:02:10 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length993
    Keep-Alivetimeout=5, max=83
    ConnectionKeep-Alive
    X-Padavoid browser bug
    http://zero.webappsecurity.com:80/docs/websocketapi/index.htmlhttpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/websocketapi/index.html


    type Status report

    message /docs/websocketapi/index.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    GET/docs/websocketapi/indexhtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/docs/
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="5BE22692ADEF2CF19E101E8F2AE21ECC";PSID="E6C8F4B19B0B19458326A26516DB27A6";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="NonRooted";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="9f6701e5";
    X-Request-Memorid="43b3ad39";sc="1";thid="25";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1404Not FoundApache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/websocketapi/index.html


    type Status report

    message /docs/websocketapi/index.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:02:10 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length1007
    Keep-Alivetimeout=5, max=69
    ConnectionKeep-Alive
    http://zero.webappsecurity.com:80/docs/building.htmlhttpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/building.html


    type Status report

    message /docs/building.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    GET/docs/buildinghtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/docs/
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="92BF4760E2D0FDCA4ABB18FC0B743B5E";PSID="E6C8F4B19B0B19458326A26516DB27A6";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="NonRooted";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="9a9255b0";
    X-Request-Memorid="73f2839d";sc="1";thid="24";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1404Not FoundApache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/building.html


    type Status report

    message /docs/building.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:02:10 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length987
    Keep-Alivetimeout=5, max=80
    ConnectionKeep-Alive
    X-Padavoid browser bug
    http://zero.webappsecurity.com:80/docs/changelog.htmlhttpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/changelog.html


    type Status report

    message /docs/changelog.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    GET/docs/changeloghtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/docs/
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="F3D4D3DB0835679411A7D304D23D3F25";PSID="E6C8F4B19B0B19458326A26516DB27A6";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="NonRooted";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="7a6ab3f1";
    X-Request-Memorid="2dccaa14";sc="1";thid="26";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1404Not FoundApache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/changelog.html


    type Status report

    message /docs/changelog.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:02:10 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length989
    Keep-Alivetimeout=5, max=82
    ConnectionKeep-Alive
    X-Padavoid browser bug
    http://zero.webappsecurity.com:80/docs/developers.htmlhttpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/developers.html


    type Status report

    message /docs/developers.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    GET/docs/developershtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/docs/
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="A9172DFB7BAE07E94F02CEB658411C99";PSID="E6C8F4B19B0B19458326A26516DB27A6";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="NonRooted";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="9936d982";
    X-Request-Memorid="7010311b";sc="1";thid="25";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1404Not FoundApache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/developers.html


    type Status report

    message /docs/developers.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:02:10 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length991
    Keep-Alivetimeout=5, max=68
    ConnectionKeep-Alive
    X-Padavoid browser bug
    http://zero.webappsecurity.com:80/docs/architecture/index.htmlhttpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/architecture/index.html


    type Status report

    message /docs/architecture/index.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    GET/docs/architecture/indexhtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/docs/
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="629E4A1BA8397C370A60A994699A4485";PSID="E6C8F4B19B0B19458326A26516DB27A6";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="NonRooted";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="094969db";
    X-Request-Memorid="40bb1de5";sc="1";thid="24";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1404Not FoundApache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/architecture/index.html


    type Status report

    message /docs/architecture/index.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:02:10 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length1007
    Keep-Alivetimeout=5, max=79
    ConnectionKeep-Alive
    http://zero.webappsecurity.com:80/docs/funcspecs/index.htmlhttpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/funcspecs/index.html


    type Status report

    message /docs/funcspecs/index.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    GET/docs/funcspecs/indexhtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/docs/
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="9ED4F10AC6184B9298A6A51C297C202A";PSID="E6C8F4B19B0B19458326A26516DB27A6";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="NonRooted";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="3caad35d";
    X-Request-Memorid="b8e205c3";sc="1";thid="26";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1404Not FoundApache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/funcspecs/index.html


    type Status report

    message /docs/funcspecs/index.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:02:10 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length1001
    Keep-Alivetimeout=5, max=81
    ConnectionKeep-Alive
    http://zero.webappsecurity.com:80/docs/tribes/introduction.htmlhttpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/tribes/introduction.html


    type Status report

    message /docs/tribes/introduction.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    GET/docs/tribes/introductionhtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/docs/
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="CD5E19BE8CC24688BC7308F171997466";PSID="E6C8F4B19B0B19458326A26516DB27A6";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="NonRooted";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="e4d82fa4";
    X-Request-Memorid="0ffed06a";sc="1";thid="25";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1404Not FoundApache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/tribes/introduction.html


    type Status report

    message /docs/tribes/introduction.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:02:10 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length1009
    Keep-Alivetimeout=5, max=67
    ConnectionKeep-Alive
    http://zero.webappsecurity.com:80/docs/comments.htmlhttpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/comments.html


    type Status report

    message /docs/comments.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    GET/docs/commentshtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/docs/
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="DCC23128C8FA6A6E59DDBCB085171AB4";PSID="E6C8F4B19B0B19458326A26516DB27A6";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="Relative";LinkKind="HyperLink";Locations="HtmlNode";Source="ScriptExecution";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="9f8554c7";
    X-Request-Memorid="20f171cd";sc="1";thid="24";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1404Not FoundApache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /docs/comments.html


    type Status report

    message /docs/comments.html

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:02:10 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length987
    Keep-Alivetimeout=5, max=78
    ConnectionKeep-Alive
    X-Padavoid browser bug
    http://zero.webappsecurity.com:80/WEB-INF/web.xmlhttpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

    HTTP Status 404 -


    type Status report

    message

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    GET/WEB-INF/webxmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/docs/
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="EEF86296A9D0EEB61B67BFBD84892FD2";PSID="E6C8F4B19B0B19458326A26516DB27A6";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";Format="Relative";LinkKind="HyperLink";Locations="HtmlNode";NodeName="li";Source="StaticParser";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="9e46b51e";
    X-Request-Memorid="d523e17b";sc="1";thid="26";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1404Not FoundApache Tomcat/7.0.70 - Error report

    HTTP Status 404 -


    type Status report

    message

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:02:10 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length949
    Keep-Alivetimeout=5, max=80
    ConnectionKeep-Alive
    X-Padavoid browser bug
    http://zero.webappsecurity.com:80/error_log/httpzero.webappsecurity.com80Vulnerability10102291Web Server Misconfiguration: Unprotected DirectoryEnvironmentWeb Server Misconfiguration: Unprotected DirectoryCWE-552: Files or Directories Accessible to External PartiesSummaryImplicationExecutionFixFor Security Operations:
    +You should evaluate the production requirements for the found directory. If the directory is not required for production operation, then the directory and its contents should be removed or restricted by a server access control mechanism. More information about implementing access control schemes can be found in the References. Automatic directory indexing should also be disabled, if applicable. + +

    For Development:
    +This problem will be resolved by the web application server administrator. In general, do not rely on 'hidden' directories within the web root that can contain sensitive resources or web applications. Assume an attacker knows about the existence of all directories and files on your web site, and protect them with proper access controls. + +

    For QA:
    +This problem will be resolved by the web application server administrator.]]>
    Reference InfoImplementing Basic Authentication in IIS
    http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/a + +bbca505-6f63-4267-aac1-1ea89d861eb4.mspx

    Implementing Basic Authentication in Apache
    http://httpd.apache.org/docs/howto/auth.html#intro]]>
    Apache Tomcat/7.0.70 - Error report

    HTTP Status 403 -


    type Status report

    message

    description Access to the specified resource has been forbidden.


    Apache Tomcat/7.0.70

    ]]>
    GET/error_log/HTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0 +
    Refererhttp://zero.webappsecurity.com/resources/js/bootstrap.min.js
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Audit.Attack";SID="53F0466A1821B9F49B63E982EC853A6A";PSID="C2E3EA7620F4A29F11DBAC2B877DD850";SessionType="AuditAttack";CrawlType="None";AttackType="Search";OriginatingEngineID="ae34b422-6357-4aca-8fe7-7e449e14c9b7";AttackSequence="0";AttackParamDesc="";AttackParamIndex="0";AttackParamSubIndex="0";CheckId="10229";Engine="Directory+Enumeration";SmartMode="4";tht="11";
    X-RequestManager-Memostid="15";stmi="0";sc="1";rid="b44b5bae";
    X-Request-Memorid="271414e9";sc="1";thid="27";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0
    HTTP/1.1403ForbiddenApache Tomcat/7.0.70 - Error report

    HTTP Status 403 -


    type Status report

    message

    description Access to the specified resource has been forbidden.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:02:50 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length961
    Keep-Alivetimeout=5, max=30
    ConnectionKeep-Alive
    X-Padavoid browser bug
    http://zero.webappsecurity.com:80/stats/httpzero.webappsecurity.com80Vulnerability10102291Web Server Misconfiguration: Unprotected DirectoryEnvironmentWeb Server Misconfiguration: Unprotected DirectoryCWE-552: Files or Directories Accessible to External PartiesSummaryImplicationExecutionFixFor Security Operations:
    +You should evaluate the production requirements for the found directory. If the directory is not required for production operation, then the directory and its contents should be removed or restricted by a server access control mechanism. More information about implementing access control schemes can be found in the References. Automatic directory indexing should also be disabled, if applicable. + +

    For Development:
    +This problem will be resolved by the web application server administrator. In general, do not rely on 'hidden' directories within the web root that can contain sensitive resources or web applications. Assume an attacker knows about the existence of all directories and files on your web site, and protect them with proper access controls. + +

    For QA:
    +This problem will be resolved by the web application server administrator.]]>
    Reference InfoImplementing Basic Authentication in IIS
    http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/a + +bbca505-6f63-4267-aac1-1ea89d861eb4.mspx

    Implementing Basic Authentication in Apache
    http://httpd.apache.org/docs/howto/auth.html#intro]]>
    Apache Tomcat/7.0.70 - Error report

    HTTP Status 403 -


    type Status report

    message

    description Access to the specified resource has been forbidden.


    Apache Tomcat/7.0.70

    ]]>
    GET/stats/HTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0 +
    Refererhttp://zero.webappsecurity.com/resources/js/bootstrap.min.js
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Audit.Attack";SID="D8BED92C1A2769DC42F6C481D02C9536";PSID="C2E3EA7620F4A29F11DBAC2B877DD850";SessionType="AuditAttack";CrawlType="None";AttackType="Search";OriginatingEngineID="ae34b422-6357-4aca-8fe7-7e449e14c9b7";AttackSequence="0";AttackParamDesc="";AttackParamIndex="0";AttackParamSubIndex="0";CheckId="10229";Engine="Directory+Enumeration";SmartMode="4";tht="11";
    X-RequestManager-Memostid="15";stmi="0";sc="1";rid="8222ed20";
    X-Request-Memorid="c64cd30b";sc="1";thid="27";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0
    HTTP/1.1403ForbiddenApache Tomcat/7.0.70 - Error report

    HTTP Status 403 -


    type Status report

    message

    description Access to the specified resource has been forbidden.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:02:51 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length961
    Keep-Alivetimeout=5, max=15
    ConnectionKeep-Alive
    X-Padavoid browser bug
    http://zero.webappsecurity.com:80/user/httpzero.webappsecurity.com80Vulnerability10102331Web Server Misconfiguration: Unprotected DirectoryEnvironmentWeb Server Misconfiguration: Unprotected DirectoryCWE-552: Files or Directories Accessible to External PartiesSummaryImplicationExecutionFixFor Security Operations:
    +You should evaluate the production requirements for the found directory. If the directory is not required for production operation, then the directory and its contents should be removed or restricted by a server access control mechanism. More information about implementing access control schemes can be found in the References. Automatic directory indexing should also be disabled, if applicable. + +

    For Development:
    +This problem will be resolved by the web application server administrator. In general, do not rely on 'hidden' directories within the web root that can contain sensitive resources or web applications. Assume an attacker knows about the existence of all directories and files on your web site, and protect them with proper access controls. + +

    For QA:
    +This problem will be resolved by the web application server administrator.]]>
    Reference InfoImplementing Basic Authentication in IIS
    http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/a + +bbca505-6f63-4267-aac1-1ea89d861eb4.mspx

    Implementing Basic Authentication in Apache
    http://httpd.apache.org/docs/howto/auth.html#intro]]>
    Apache Tomcat/7.0.70 - Error report

    HTTP Status 403 -


    type Status report

    message

    description Access to the specified resource has been forbidden.


    Apache Tomcat/7.0.70

    ]]>
    GET/user/HTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0 +
    Refererhttp://zero.webappsecurity.com/resources/js/bootstrap.min.js
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Audit.Attack";SID="706A0A37A7BAC70974BCF84004DFAB30";PSID="C2E3EA7620F4A29F11DBAC2B877DD850";SessionType="AuditAttack";CrawlType="None";AttackType="Search";OriginatingEngineID="ae34b422-6357-4aca-8fe7-7e449e14c9b7";AttackSequence="0";AttackParamDesc="";AttackParamIndex="0";AttackParamSubIndex="0";CheckId="10233";Engine="Directory+Enumeration";SmartMode="4";tht="11";
    X-RequestManager-Memostid="15";stmi="0";sc="1";rid="1b36e37b";
    X-Request-Memorid="d65f739b";sc="1";thid="27";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0
    HTTP/1.1403ForbiddenApache Tomcat/7.0.70 - Error report

    HTTP Status 403 -


    type Status report

    message

    description Access to the specified resource has been forbidden.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:03:00 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length961
    Keep-Alivetimeout=5, max=53
    ConnectionKeep-Alive
    X-Padavoid browser bug
    http%3a%2f%2fzero.webappsecurity.com%3a80%2fresources%2fjs%2fbootstrap.min.js%08HTTP%2f1.1%2f..%2f..%2fbootstrap.min.jshttpzero.webappsecurity.com80ControCharsVulnerabilityCUSTOM116992Path Manipulation: Special CharactersCWE-22: Improper Limitation of a Pathname to a Restricted Directory ('Path Traversal')Input Validation and RepresentationPath Manipulation: Special CharactersSummaryImplicationExecution/secret is not allowed.
    When an attacker sends the following request http://example.com/secret0x09HTTP/1.1/../../public
    , the proxy normalizes the URL to http://example.com/public, which is allowed access. The proxy then forwards the original request to the backend Gunicorn application. The backend application considers the 0x09 character as a separator between the URL path and HTTP protocol version. The application therefore believes that the user is trying to access http://example.com/secret and returns the content of the endpoint /secret to the attacker.
    In the current scan, user can request the URL HTTP/1.1/../../ to check if could be allowed to be inserted in the URL path. If the remote server respond with same page as requesting the original URL, then the control character is allowed to be inserted in the URL path. This example shows that an attacker can bypass authentication or achieve other successful attacks by manipulating the control characters in the URL path.]]>
    FixFor example, the following configuration could be added into nginx.conf file to forbid control character 0x09.
    if ($request_uri ~* .*[\x09]+.*) {return 435;}
    It is also accepted if add similar access control policy in the firewall which is deployed before the backend application server.]]>
    Reference InfoDisabled control characters in URIs.
    CHYbeta/OddProxyDemo]]>
    R0VUIC9yZXNvdXJjZXMvanMvYm9vdHN0cmFwLm1pbi5qcwhIVFRQLzEuMS8uLi8uLi9ib290c3RyYXAubWluLmpzIEhUVFAvMS4xDQpSZWZlcmVyOiBodHRwOi8vemVyby53ZWJhcHBzZWN1cml0eS5jb20vDQpIb3N0OiB6ZXJvLndlYmFwcHNlY3VyaXR5LmNvbQ0KQWNjZXB0OiAqLyoNCkFjY2VwdC1MYW5ndWFnZTogZW4tVVMsZW47cT0wLjUNCkFjY2VwdC1FbmNvZGluZzogZ3ppcCwgZGVmbGF0ZQ0KUHJhZ21hOiBuby1jYWNoZQ0KVXNlci1BZ2VudDogTW96aWxsYS81LjAgKFdpbmRvd3MgTlQgMTAuMDsgV2luNjQ7IHg2NDsgcnY6OTguMCkgR2Vja28vMjAxMDAxMDEgRmlyZWZveC85OC4wDQpDb25uZWN0aW9uOiBLZWVwLUFsaXZlDQpYLVdJUFA6IEFzY1ZlcnNpb249MjIuMi4wLjI1Mw0KWC1TY2FuLU1lbW86IENhdGVnb3J5PSJBdWRpdC5BdHRhY2siO1NJRD0iQTZFRjM1MDJCOTVEREYyQzI0RENBNTgwMTVBNTYxRTkiO1BTSUQ9IkMyRTNFQTc2MjBGNEEyOUYxMURCQUMyQjg3N0REODUwIjtTZXNzaW9uVHlwZT0iQXVkaXRBdHRhY2siO0NyYXdsVHlwZT0iTm9uZSI7QXR0YWNrVHlwZT0iSGVhZGVyUGFyYW1NYW5pcHVsYXRpb24iO09yaWdpbmF0aW5nRW5naW5lSUQ9IjhlNzM5ZTg2LTU0MjUtNDcxMS1iNzhmLTA3ZDExMzcwMjU3MyI7QXR0YWNrU2VxdWVuY2U9IjAiO0F0dGFja1BhcmFtRGVzYz0iQ29udHJvQ2hhcnMiO0F0dGFja1BhcmFtSW5kZXg9IjAiO0F0dGFja1BhcmFtU3ViSW5kZXg9IjAiO0NoZWNrSWQ9IjExNjk5IjtFbmdpbmU9IkNvbnRyb2wrQ2hhcnMrRGV0ZWN0aW9uIjtTbWFydE1vZGU9IjQiO3RodD0iNDAiOw0KWC1SZXF1ZXN0TWFuYWdlci1NZW1vOiBzdGlkPSIxNSI7c3RtaT0iMCI7c2M9IjEiO3JpZD0iODYwNmQ2OTkiOw0KWC1SZXF1ZXN0LU1lbW86IHJpZD0iOTQ0MWYyNWUiO3NjPSIxIjt0aGlkPSIyNyI7DQpDb29raWU6IEN1c3RvbUNvb2tpZT1XZWJJbnNwZWN0MTgxMzM4WlhCOTg0RDA0NjJFQjM0M0FFODU5OEE0RkZCMTE2RkE5M1lGRkYwDQoNCg==').appendTo(document.body),this.$backdrop.click(this.options.backdrop=="static"?a.proxy(this.$element[0].focus,this.$element[0]):a.proxy(this.hide,this)),e&&this.$backdrop[0].offsetWidth,this.$backdrop.addClass("in"),e?this.$backdrop.one(a.support.transition.end,b):b()}else!this.isShown&&this.$backdrop?(this.$backdrop.removeClass("in"),a.support.transition&&this.$element.hasClass("fade")?this.$backdrop.one(a.support.transition.end,a.proxy(this.removeBackdrop,this)):this.removeBackdrop()):b&&b()}};var c=a.fn.modal;a.fn.modal=function(c){return this.each(function(){var d=a(this),e=d.data("modal"),f=a.extend({},a.fn.modal.defaults,d.data(),typeof c=="object"&&c);e||d.data("modal",e=new b(this,f)),typeof c=="string"?e[c]():f.show&&e.show()})},a.fn.modal.defaults={backdrop:!0,keyboard:!0,show:!0},a.fn.modal.Constructor=b,a.fn.modal.noConflict=function(){return a.fn.modal=c,this},a(document).on("click.modal.data-api",'[data-toggle="modal"]',function(b){var c=a(this),d=c.attr("href"),e=a(c.attr("data-target")||d&&d.replace(/.*(?=#[^\s]+$)/,"")),f=e.data("modal")?"toggle":a.extend({remote:!/#/.test(d)&&d},e.data(),c.data());b.preventDefault(),e.modal(f).one("hide",function(){c.focus()})})}(window.jQuery),!function(a){function d(){a(b).each(function(){e(a(this)).removeClass("open")})}function e(b){var c=b.attr("data-target"),d;return c||(c=b.attr("href"),c=c&&/#/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,"")),d=a(c),d.length||(d=b.parent()),d}var b="[data-toggle=dropdown]",c=function(b){var c=a(b).on("click.dropdown.data-api",this.toggle);a("html").on("click.dropdown.data-api",function(){c.parent().removeClass("open")})};c.prototype={constructor:c,toggle:function(b){var c=a(this),f,g;if(c.is(".disabled, :disabled"))return;return f=e(c),g=f.hasClass("open"),d(),g||f.toggleClass("open"),c.focus(),!1},keydown:function(b){var c,d,f,g,h,i;if(!/(38|40|27)/.test(b.keyCode))return;c=a(this),b.preventDefault(),b.stopPropagation();if(c.is(".disabled, :disabled"))return;g=e(c),h=g.hasClass("open");if(!h||h&&b.keyCode==27)return c.click();d=a("[role=menu] li:not(.divider):visible a",g);if(!d.length)return;i=d.index(d.filter(":focus")),b.keyCode==38&&i>0&&i--,b.keyCode==40&&i a",this.$body=a("body"),this.refresh(),this.process()}b.prototype={constructor:b,refresh:function(){var b=this,c;this.offsets=a([]),this.targets=a([]),c=this.$body.find(this.selector).map(function(){var c=a(this),d=c.data("target")||c.attr("href"),e=/^#\w/.test(d)&&a(d);return e&&e.length&&[[e.position().top+b.$scrollElement.scrollTop(),d]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){b.offsets.push(this[0]),b.targets.push(this[1])})},process:function(){var a=this.$scrollElement.scrollTop()+this.options.offset,b=this.$scrollElement[0].scrollHeight||this.$body[0].scrollHeight,c=b-this.$scrollElement.height(),d=this.offsets,e=this.targets,f=this.activeTarget,g;if(a>=c)return f!=(g=e.last()[0])&&this.activate(g);for(g=d.length;g--;)f!=e[g]&&a>=d[g]&&(!d[g+1]||a<=d[g+1])&&this.activate(e[g])},activate:function(b){var c,d;this.activeTarget=b,a(this.selector).parent(".active").removeClass("active"),d=this.selector+'[data-target="'+b+'"],'+this.selector+'[href="'+b+'"]',c=a(d).parent("li").addClass("active"),c.parent(".dropdown-menu").length&&(c=c.closest("li.dropdown").addClass("active")),c.trigger("activate")}};var c=a.fn.scrollspy;a.fn.scrollspy=function(c){return this.each(function(){var d=a(this),e=d.data("scrollspy"),f=typeof c=="object"&&c;e||d.data("scrollspy",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.scrollspy.Constructor=b,a.fn.scrollspy.defaults={offset:10},a.fn.scrollspy.noConflict=function(){return a.fn.scrollspy=c,this},a(window).on("load",function(){a('[data-spy="scroll"]').each(function(){var b=a(this);b.scrollspy(b.data())})})}(window.jQuery),!function(a){var b=function(b){this.element=a(b)};b.prototype={constructor:b,show:function(){var b=this.element,c=b.closest("ul:not(.dropdown-menu)"),d=b.attr("data-target"),e,f,g;d||(d=b.attr("href"),d=d&&d.replace(/.*(?=#[^\s]*$)/,""));if(b.parent("li").hasClass("active"))return;e=c.find(".active:last a")[0],g=a.Event("show",{relatedTarget:e}),b.trigger(g);if(g.isDefaultPrevented())return;f=a(d),this.activate(b.parent("li"),c),this.activate(f,f.parent(),function(){b.trigger({type:"shown",relatedTarget:e})})},activate:function(b,c,d){function g(){e.removeClass("active").find("> .dropdown-menu > .active").removeClass("active"),b.addClass("active"),f?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu")&&b.closest("li.dropdown").addClass("active"),d&&d()}var e=c.find("> .active"),f=d&&a.support.transition&&e.hasClass("fade");f?e.one(a.support.transition.end,g):g(),e.removeClass("in")}};var c=a.fn.tab;a.fn.tab=function(c){return this.each(function(){var d=a(this),e=d.data("tab");e||d.data("tab",e=new b(this)),typeof c=="string"&&e[c]()})},a.fn.tab.Constructor=b,a.fn.tab.noConflict=function(){return a.fn.tab=c,this},a(document).on("click.tab.data-api",'[data-toggle="tab"], [data-toggle="pill"]',function(b){b.preventDefault(),a(this).tab("show")})}(window.jQuery),!function(a){var b=function(a,b){this.init("tooltip",a,b)};b.prototype={constructor:b,init:function(b,c,d){var e,f;this.type=b,this.$element=a(c),this.options=this.getOptions(d),this.enabled=!0,this.options.trigger=="click"?this.$element.on("click."+this.type,this.options.selector,a.proxy(this.toggle,this)):this.options.trigger!="manual"&&(e=this.options.trigger=="hover"?"mouseenter":"focus",f=this.options.trigger=="hover"?"mouseleave":"blur",this.$element.on(e+"."+this.type,this.options.selector,a.proxy(this.enter,this)),this.$element.on(f+"."+this.type,this.options.selector,a.proxy(this.leave,this))),this.options.selector?this._options=a.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},getOptions:function(b){return b=a.extend({},a.fn[this.type].defaults,b,this.$element.data()),b.delay&&typeof b.delay=="number"&&(b.delay={show:b.delay,hide:b.delay}),b},enter:function(b){var c=a(b.currentTarget)[this.type](this._options).data(this.type);if(!c.options.delay||!c.options.delay.show)return c.show();clearTimeout(this.timeout),c.hoverState="in",this.timeout=setTimeout(function(){c.hoverState=="in"&&c.show()},c.options.delay.show)},leave:function(b){var c=a(b.currentTarget)[this.type](this._options).data(this.type);this.timeout&&clearTimeout(this.timeout);if(!c.options.delay||!c.options.delay.hide)return c.hide();c.hoverState="out",this.timeout=setTimeout(function(){c.hoverState=="out"&&c.hide()},c.options.delay.hide)},show:function(){var a,b,c,d,e,f,g;if(this.hasContent()&&this.enabled){a=this.tip(),this.setContent(),this.options.animation&&a.addClass("fade"),f=typeof this.options.placement=="function"?this.options.placement.call(this,a[0],this.$element[0]):this.options.placement,b=/in/.test(f),a.detach().css({top:0,left:0,display:"block"}).insertAfter(this.$element),c=this.getPosition(b),d=a[0].offsetWidth,e=a[0].offsetHeight;switch(b?f.split(" ")[1]:f){case"bottom":g={top:c.top+c.height,left:c.left+c.width/2-d/2};break;case"top":g={top:c.top-e,left:c.left+c.width/2-d/2};break;case"left":g={top:c.top+c.height/2-e/2,left:c.left-d};break;case"right":g={top:c.top+c.height/2-e/2,left:c.left+c.width}}a.offset(g).addClass(f).addClass("in")}},setContent:function(){var a=this.tip(),b=this.getTitle();a.find(".tooltip-inner")[this.options.html?"html":"text"](b),a.removeClass("fade in top bottom left right")},hide:function(){function d(){var b=setTimeout(function(){c.off(a.support.transition.end).detach()},500);c.one(a.support.transition.end,function(){clearTimeout(b),c.detach()})}var b=this,c=this.tip();return c.removeClass("in"),a.support.transition&&this.$tip.hasClass("fade")?d():c.detach(),this},fixTitle:function(){var a=this.$element;(a.attr("title")||typeof a.attr("data-original-title")!="string")&&a.attr("data-original-title",a.attr("title")||"").removeAttr("title")},hasContent:function(){return this.getTitle()},getPosition:function(b){return a.extend({},b?{top:0,left:0}:this.$element.offset(),{width:this.$element[0].offsetWidth,height:this.$element[0].offsetHeight})},getTitle:function(){var a,b=this.$element,c=this.options;return a=b.attr("data-original-title")||(typeof c.title=="function"?c.title.call(b[0]):c.title),a},tip:function(){return this.$tip=this.$tip||a(this.options.template)},validate:function(){this.$element[0].parentNode||(this.hide(),this.$element=null,this.options=null)},enable:function(){this.enabled=!0},disable:function(){this.enabled=!1},toggleEnabled:function(){this.enabled=!this.enabled},toggle:function(b){var c=a(b.currentTarget)[this.type](this._options).data(this.type);c[c.tip().hasClass("in")?"hide":"show"]()},destroy:function(){this.hide().$element.off("."+this.type).removeData(this.type)}};var c=a.fn.tooltip;a.fn.tooltip=function(c){return this.each(function(){var d=a(this),e=d.data("tooltip"),f=typeof c=="object"&&c;e||d.data("tooltip",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.tooltip.Constructor=b,a.fn.tooltip.defaults={animation:!0,placement:"top",selector:!1,template:'
    ',trigger:"hover",title:"",delay:0,html:!1},a.fn.tooltip.noConflict=function(){return a.fn.tooltip=c,this}}(window.jQuery),!function(a){var b=function(a,b){this.init("popover",a,b)};b.prototype=a.extend({},a.fn.tooltip.Constructor.prototype,{constructor:b,setContent:function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content")[this.options.html?"html":"text"](c),a.removeClass("fade top bottom left right in")},hasContent:function(){return this.getTitle()||this.getContent()},getContent:function(){var a,b=this.$element,c=this.options;return a=b.attr("data-content")||(typeof c.content=="function"?c.content.call(b[0]):c.content),a},tip:function(){return this.$tip||(this.$tip=a(this.options.template)),this.$tip},destroy:function(){this.hide().$element.off("."+this.type).removeData(this.type)}});var c=a.fn.popover;a.fn.popover=function(c){return this.each(function(){var d=a(this),e=d.data("popover"),f=typeof c=="object"&&c;e||d.data("popover",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.popover.Constructor=b,a.fn.popover.defaults=a.extend({},a.fn.tooltip.defaults,{placement:"right",trigger:"click",content:"",template:'

    '}),a.fn.popover.noConflict=function(){return a.fn.popover=c,this}}(window.jQuery),!function(a){var b=function(b,c){this.options=a.extend({},a.fn.affix.defaults,c),this.$window=a(window).on("scroll.affix.data-api",a.proxy(this.checkPosition,this)).on("click.affix.data-api",a.proxy(function(){setTimeout(a.proxy(this.checkPosition,this),1)},this)),this.$element=a(b),this.checkPosition()};b.prototype.checkPosition=function(){if(!this.$element.is(":visible"))return;var b=a(document).height(),c=this.$window.scrollTop(),d=this.$element.offset(),e=this.options.offset,f=e.bottom,g=e.top,h="affix affix-top affix-bottom",i;typeof e!="object"&&(f=g=e),typeof g=="function"&&(g=e.top()),typeof f=="function"&&(f=e.bottom()),i=this.unpin!=null&&c+this.unpin<=d.top?!1:f!=null&&d.top+this.$element.height()>=b-f?"bottom":g!=null&&c<=g?"top":!1;if(this.affixed===i)return;this.affixed=i,this.unpin=i=="bottom"?d.top-c:null,this.$element.removeClass(h).addClass("affix"+(i?"-"+i:""))};var c=a.fn.affix;a.fn.affix=function(c){return this.each(function(){var d=a(this),e=d.data("affix"),f=typeof c=="object"&&c;e||d.data("affix",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.affix.Constructor=b,a.fn.affix.defaults={offset:0},a.fn.affix.noConflict=function(){return a.fn.affix=c,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var b=a(this),c=b.data();c.offset=c.offset||{},c.offsetBottom&&(c.offset.bottom=c.offsetBottom),c.offsetTop&&(c.offset.top=c.offsetTop),b.affix(c)})})}(window.jQuery),!function(a){var b='[data-dismiss="alert"]',c=function(c){a(c).on("click",b,this.close)};c.prototype.close=function(b){function f(){e.trigger("closed").remove()}var c=a(this),d=c.attr("data-target"),e;d||(d=c.attr("href"),d=d&&d.replace(/.*(?=#[^\s]*$)/,"")),e=a(d),b&&b.preventDefault(),e.length||(e=c.hasClass("alert")?c:c.parent()),e.trigger(b=a.Event("close"));if(b.isDefaultPrevented())return;e.removeClass("in"),a.support.transition&&e.hasClass("fade")?e.on(a.support.transition.end,f):f()};var d=a.fn.alert;a.fn.alert=function(b){return this.each(function(){var d=a(this),e=d.data("alert");e||d.data("alert",e=new c(this)),typeof b=="string"&&e[b].call(d)})},a.fn.alert.Constructor=c,a.fn.alert.noConflict=function(){return a.fn.alert=d,this},a(document).on("click.alert.data-api",b,c.prototype.close)}(window.jQuery),!function(a){var b=function(b,c){this.$element=a(b),this.options=a.extend({},a.fn.button.defaults,c)};b.prototype.setState=function(a){var b="disabled",c=this.$element,d=c.data(),e=c.is("input")?"val":"html";a+="Text",d.resetText||c.data("resetText",c[e]()),c[e](d[a]||this.options[a]),setTimeout(function(){a=="loadingText"?c.addClass(b).attr(b,b):c.removeClass(b).removeAttr(b)},0)},b.prototype.toggle=function(){var a=this.$element.closest('[data-toggle="buttons-radio"]');a&&a.find(".active").removeClass("active"),this.$element.toggleClass("active")};var c=a.fn.button;a.fn.button=function(c){return this.each(function(){var d=a(this),e=d.data("button"),f=typeof c=="object"&&c;e||d.data("button",e=new b(this,f)),c=="toggle"?e.toggle():c&&e.setState(c)})},a.fn.button.defaults={loadingText:"loading..."},a.fn.button.Constructor=b,a.fn.button.noConflict=function(){return a.fn.button=c,this},a(document).on("click.button.data-api","[data-toggle^=button]",function(b){var c=a(b.target);c.hasClass("btn")||(c=c.closest(".btn")),c.button("toggle")})}(window.jQuery),!function(a){var b=function(b,c){this.$element=a(b),this.options=a.extend({},a.fn.collapse.defaults,c),this.options.parent&&(this.$parent=a(this.options.parent)),this.options.toggle&&this.toggle()};b.prototype={constructor:b,dimension:function(){var a=this.$element.hasClass("width");return a?"width":"height"},show:function(){var b,c,d,e;if(this.transitioning)return;b=this.dimension(),c=a.camelCase(["scroll",b].join("-")),d=this.$parent&&this.$parent.find("> .accordion-group > .in");if(d&&d.length){e=d.data("collapse");if(e&&e.transitioning)return;d.collapse("hide"),e||d.data("collapse",null)}this.$element[b](0),this.transition("addClass",a.Event("show"),"shown"),a.support.transition&&this.$element[b](this.$element[0][c])},hide:function(){var b;if(this.transitioning)return;b=this.dimension(),this.reset(this.$element[b]()),this.transition("removeClass",a.Event("hide"),"hidden"),this.$element[b](0)},reset:function(a){var b=this.dimension();return this.$element.removeClass("collapse")[b](a||"auto")[0].offsetWidth,this.$element[a!==null?"addClass":"removeClass"]("collapse"),this},transition:function(b,c,d){var e=this,f=function(){c.type=="show"&&e.reset(),e.transitioning=0,e.$element.trigger(d)};this.$element.trigger(c);if(c.isDefaultPrevented())return;this.transitioning=1,this.$element[b]("in"),a.support.transition&&this.$element.hasClass("collapse")?this.$element.one(a.support.transition.end,f):f()},toggle:function(){this[this.$element.hasClass("in")?"hide":"show"]()}};var c=a.fn.collapse;a.fn.collapse=function(c){return this.each(function(){var d=a(this),e=d.data("collapse"),f=typeof c=="object"&&c;e||d.data("collapse",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.collapse.defaults={toggle:!0},a.fn.collapse.Constructor=b,a.fn.collapse.noConflict=function(){return a.fn.collapse=c,this},a(document).on("click.collapse.data-api","[data-toggle=collapse]",function(b){var c=a(this),d,e=c.attr("data-target")||b.preventDefault()||(d=c.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,""),f=a(e).data("collapse")?"toggle":c.data();c[a(e).hasClass("in")?"addClass":"removeClass"]("collapsed"),a(e).collapse(f)})}(window.jQuery),!function(a){var b=function(b,c){this.$element=a(b),this.options=c,this.options.pause=="hover"&&this.$element.on("mouseenter",a.proxy(this.pause,this)).on("mouseleave",a.proxy(this.cycle,this))};b.prototype={cycle:function(b){return b||(this.paused=!1),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},to:function(b){var c=this.$element.find(".item.active"),d=c.parent().children(),e=d.index(c),f=this;if(b>d.length-1||b<0)return;return this.sliding?this.$element.one("slid",function(){f.to(b)}):e==b?this.pause().cycle():this.slide(b>e?"next":"prev",a(d[b]))},pause:function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition.end&&(this.$element.trigger(a.support.transition.end),this.cycle()),clearInterval(this.interval),this.interval=null,this},next:function(){if(this.sliding)return;return this.slide("next")},prev:function(){if(this.sliding)return;return this.slide("prev")},slide:function(b,c){var d=this.$element.find(".item.active"),e=c||d[b](),f=this.interval,g=b=="next"?"left":"right",h=b=="next"?"first":"last",i=this,j;this.sliding=!0,f&&this.pause(),e=e.length?e:this.$element.find(".item")[h](),j=a.Event("slide",{relatedTarget:e[0]});if(e.hasClass("active"))return;if(a.support.transition&&this.$element.hasClass("slide")){this.$element.trigger(j);if(j.isDefaultPrevented())return;e.addClass(b),e[0].offsetWidth,d.addClass(g),e.addClass(g),this.$element.one(a.support.transition.end,function(){e.removeClass([b,g].join(" ")).addClass("active"),d.removeClass(["active",g].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger("slid")},0)})}else{this.$element.trigger(j);if(j.isDefaultPrevented())return;d.removeClass("active"),e.addClass("active"),this.sliding=!1,this.$element.trigger("slid")}return f&&this.cycle(),this}};var c=a.fn.carousel;a.fn.carousel=function(c){return this.each(function(){var d=a(this),e=d.data("carousel"),f=a.extend({},a.fn.carousel.defaults,typeof c=="object"&&c),g=typeof c=="string"?c:f.slide;e||d.data("carousel",e=new b(this,f)),typeof c=="number"?e.to(c):g?e[g]():f.interval&&e.cycle()})},a.fn.carousel.defaults={interval:5e3,pause:"hover"},a.fn.carousel.Constructor=b,a.fn.carousel.noConflict=function(){return a.fn.carousel=c,this},a(document).on("click.carousel.data-api","[data-slide]",function(b){var c=a(this),d,e=a(c.attr("data-target")||(d=c.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,"")),f=a.extend({},e.data(),c.data());e.carousel(f),b.preventDefault()})}(window.jQuery),!function(a){var b=function(b,c){this.$element=a(b),this.options=a.extend({},a.fn.typeahead.defaults,c),this.matcher=this.options.matcher||this.matcher,this.sorter=this.options.sorter||this.sorter,this.highlighter=this.options.highlighter||this.highlighter,this.updater=this.options.updater||this.updater,this.source=this.options.source,this.$menu=a(this.options.menu),this.shown=!1,this.listen()};b.prototype={constructor:b,select:function(){var a=this.$menu.find(".active").attr("data-value");return this.$element.val(this.updater(a)).change(),this.hide()},updater:function(a){return a},show:function(){var b=a.extend({},this.$element.position(),{height:this.$element[0].offsetHeight});return this.$menu.insertAfter(this.$element).css({top:b.top+b.height,left:b.left}).show(),this.shown=!0,this},hide:function(){return this.$menu.hide(),this.shown=!1,this},lookup:function(b){var c;return this.query=this.$element.val(),!this.query||this.query.length"+b+""})},render:function(b){var c=this;return b=a(b).map(function(b,d){return b=a(c.options.item).attr("data-value",d),b.find("a").html(c.highlighter(d)),b[0]}),b.first().addClass("active"),this.$menu.html(b),this},next:function(b){var c=this.$menu.find(".active").removeClass("active"),d=c.next();d.length||(d=a(this.$menu.find("li")[0])),d.addClass("active")},prev:function(a){var b=this.$menu.find(".active").removeClass("active"),c=b.prev();c.length||(c=this.$menu.find("li").last()),c.addClass("active")},listen:function(){this.$element.on("blur",a.proxy(this.blur,this)).on("keypress",a.proxy(this.keypress,this)).on("keyup",a.proxy(this.keyup,this)),this.eventSupported("keydown")&&this.$element.on("keydown",a.proxy(this.keydown,this)),this.$menu.on("click",a.proxy(this.click,this)).on("mouseenter","li",a.proxy(this.mouseenter,this))},eventSupported:function(a){var b=a in this.$element;return b||(this.$element.setAttribute(a,"return;"),b=typeof this.$element[a]=="function"),b},move:function(a){if(!this.shown)return;switch(a.keyCode){case 9:case 13:case 27:a.preventDefault();break;case 38:a.preventDefault(),this.prev();break;case 40:a.preventDefault(),this.next()}a.stopPropagation()},keydown:function(b){this.suppressKeyPressRepeat=~a.inArray(b.keyCode,[40,38,9,13,27]),this.move(b)},keypress:function(a){if(this.suppressKeyPressRepeat)return;this.move(a)},keyup:function(a){switch(a.keyCode){case 40:case 38:case 16:case 17:case 18:break;case 9:case 13:if(!this.shown)return;this.select();break;case 27:if(!this.shown)return;this.hide();break;default:this.lookup()}a.stopPropagation(),a.preventDefault()},blur:function(a){var b=this;setTimeout(function(){b.hide()},150)},click:function(a){a.stopPropagation(),a.preventDefault(),this.select()},mouseenter:function(b){this.$menu.find(".active").removeClass("active"),a(b.currentTarget).addClass("active")}};var c=a.fn.typeahead;a.fn.typeahead=function(c){return this.each(function(){var d=a(this),e=d.data("typeahead"),f=typeof c=="object"&&c;e||d.data("typeahead",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.typeahead.defaults={source:[],items:8,menu:'',item:'
  • ',minLength:1},a.fn.typeahead.Constructor=b,a.fn.typeahead.noConflict=function(){return a.fn.typeahead=c,this},a(document).on("focus.typeahead.data-api",'[data-provide="typeahead"]',function(b){var c=a(this);if(c.data("typeahead"))return;b.preventDefault(),c.typeahead(c.data())})}(window.jQuery)]]>
    GET%2fresources%2fjs%2fbootstrap.min.js%08HTTP%2f1.1%2f..%2f..%2fbootstrap.minjsHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0 +
    Refererhttp://zero.webappsecurity.com/
    Hostzero.webappsecurity.com
    Accept*/*
    Accept-Languageen-US,en;q=0.5
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Audit.Attack";SID="A6EF3502B95DDF2C24DCA58015A561E9";PSID="C2E3EA7620F4A29F11DBAC2B877DD850";SessionType="AuditAttack";CrawlType="None";AttackType="HeaderParamManipulation";OriginatingEngineID="8e739e86-5425-4711-b78f-07d113702573";AttackSequence="0";AttackParamDesc="ControChars";AttackParamIndex="0";AttackParamSubIndex="0";CheckId="11699";Engine="Control+Chars+Detection";SmartMode="4";tht="40";
    X-RequestManager-Memostid="15";stmi="0";sc="1";rid="8606d699";
    X-Request-Memorid="9441f25e";sc="1";thid="27";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0
    HTTP/1.1200OK').appendTo(document.body),this.$backdrop.click(this.options.backdrop=="static"?a.proxy(this.$element[0].focus,this.$element[0]):a.proxy(this.hide,this)),e&&this.$backdrop[0].offsetWidth,this.$backdrop.addClass("in"),e?this.$backdrop.one(a.support.transition.end,b):b()}else!this.isShown&&this.$backdrop?(this.$backdrop.removeClass("in"),a.support.transition&&this.$element.hasClass("fade")?this.$backdrop.one(a.support.transition.end,a.proxy(this.removeBackdrop,this)):this.removeBackdrop()):b&&b()}};var c=a.fn.modal;a.fn.modal=function(c){return this.each(function(){var d=a(this),e=d.data("modal"),f=a.extend({},a.fn.modal.defaults,d.data(),typeof c=="object"&&c);e||d.data("modal",e=new b(this,f)),typeof c=="string"?e[c]():f.show&&e.show()})},a.fn.modal.defaults={backdrop:!0,keyboard:!0,show:!0},a.fn.modal.Constructor=b,a.fn.modal.noConflict=function(){return a.fn.modal=c,this},a(document).on("click.modal.data-api",'[data-toggle="modal"]',function(b){var c=a(this),d=c.attr("href"),e=a(c.attr("data-target")||d&&d.replace(/.*(?=#[^\s]+$)/,"")),f=e.data("modal")?"toggle":a.extend({remote:!/#/.test(d)&&d},e.data(),c.data());b.preventDefault(),e.modal(f).one("hide",function(){c.focus()})})}(window.jQuery),!function(a){function d(){a(b).each(function(){e(a(this)).removeClass("open")})}function e(b){var c=b.attr("data-target"),d;return c||(c=b.attr("href"),c=c&&/#/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,"")),d=a(c),d.length||(d=b.parent()),d}var b="[data-toggle=dropdown]",c=function(b){var c=a(b).on("click.dropdown.data-api",this.toggle);a("html").on("click.dropdown.data-api",function(){c.parent().removeClass("open")})};c.prototype={constructor:c,toggle:function(b){var c=a(this),f,g;if(c.is(".disabled, :disabled"))return;return f=e(c),g=f.hasClass("open"),d(),g||f.toggleClass("open"),c.focus(),!1},keydown:function(b){var c,d,f,g,h,i;if(!/(38|40|27)/.test(b.keyCode))return;c=a(this),b.preventDefault(),b.stopPropagation();if(c.is(".disabled, :disabled"))return;g=e(c),h=g.hasClass("open");if(!h||h&&b.keyCode==27)return c.click();d=a("[role=menu] li:not(.divider):visible a",g);if(!d.length)return;i=d.index(d.filter(":focus")),b.keyCode==38&&i>0&&i--,b.keyCode==40&&i a",this.$body=a("body"),this.refresh(),this.process()}b.prototype={constructor:b,refresh:function(){var b=this,c;this.offsets=a([]),this.targets=a([]),c=this.$body.find(this.selector).map(function(){var c=a(this),d=c.data("target")||c.attr("href"),e=/^#\w/.test(d)&&a(d);return e&&e.length&&[[e.position().top+b.$scrollElement.scrollTop(),d]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){b.offsets.push(this[0]),b.targets.push(this[1])})},process:function(){var a=this.$scrollElement.scrollTop()+this.options.offset,b=this.$scrollElement[0].scrollHeight||this.$body[0].scrollHeight,c=b-this.$scrollElement.height(),d=this.offsets,e=this.targets,f=this.activeTarget,g;if(a>=c)return f!=(g=e.last()[0])&&this.activate(g);for(g=d.length;g--;)f!=e[g]&&a>=d[g]&&(!d[g+1]||a<=d[g+1])&&this.activate(e[g])},activate:function(b){var c,d;this.activeTarget=b,a(this.selector).parent(".active").removeClass("active"),d=this.selector+'[data-target="'+b+'"],'+this.selector+'[href="'+b+'"]',c=a(d).parent("li").addClass("active"),c.parent(".dropdown-menu").length&&(c=c.closest("li.dropdown").addClass("active")),c.trigger("activate")}};var c=a.fn.scrollspy;a.fn.scrollspy=function(c){return this.each(function(){var d=a(this),e=d.data("scrollspy"),f=typeof c=="object"&&c;e||d.data("scrollspy",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.scrollspy.Constructor=b,a.fn.scrollspy.defaults={offset:10},a.fn.scrollspy.noConflict=function(){return a.fn.scrollspy=c,this},a(window).on("load",function(){a('[data-spy="scroll"]').each(function(){var b=a(this);b.scrollspy(b.data())})})}(window.jQuery),!function(a){var b=function(b){this.element=a(b)};b.prototype={constructor:b,show:function(){var b=this.element,c=b.closest("ul:not(.dropdown-menu)"),d=b.attr("data-target"),e,f,g;d||(d=b.attr("href"),d=d&&d.replace(/.*(?=#[^\s]*$)/,""));if(b.parent("li").hasClass("active"))return;e=c.find(".active:last a")[0],g=a.Event("show",{relatedTarget:e}),b.trigger(g);if(g.isDefaultPrevented())return;f=a(d),this.activate(b.parent("li"),c),this.activate(f,f.parent(),function(){b.trigger({type:"shown",relatedTarget:e})})},activate:function(b,c,d){function g(){e.removeClass("active").find("> .dropdown-menu > .active").removeClass("active"),b.addClass("active"),f?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu")&&b.closest("li.dropdown").addClass("active"),d&&d()}var e=c.find("> .active"),f=d&&a.support.transition&&e.hasClass("fade");f?e.one(a.support.transition.end,g):g(),e.removeClass("in")}};var c=a.fn.tab;a.fn.tab=function(c){return this.each(function(){var d=a(this),e=d.data("tab");e||d.data("tab",e=new b(this)),typeof c=="string"&&e[c]()})},a.fn.tab.Constructor=b,a.fn.tab.noConflict=function(){return a.fn.tab=c,this},a(document).on("click.tab.data-api",'[data-toggle="tab"], [data-toggle="pill"]',function(b){b.preventDefault(),a(this).tab("show")})}(window.jQuery),!function(a){var b=function(a,b){this.init("tooltip",a,b)};b.prototype={constructor:b,init:function(b,c,d){var e,f;this.type=b,this.$element=a(c),this.options=this.getOptions(d),this.enabled=!0,this.options.trigger=="click"?this.$element.on("click."+this.type,this.options.selector,a.proxy(this.toggle,this)):this.options.trigger!="manual"&&(e=this.options.trigger=="hover"?"mouseenter":"focus",f=this.options.trigger=="hover"?"mouseleave":"blur",this.$element.on(e+"."+this.type,this.options.selector,a.proxy(this.enter,this)),this.$element.on(f+"."+this.type,this.options.selector,a.proxy(this.leave,this))),this.options.selector?this._options=a.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},getOptions:function(b){return b=a.extend({},a.fn[this.type].defaults,b,this.$element.data()),b.delay&&typeof b.delay=="number"&&(b.delay={show:b.delay,hide:b.delay}),b},enter:function(b){var c=a(b.currentTarget)[this.type](this._options).data(this.type);if(!c.options.delay||!c.options.delay.show)return c.show();clearTimeout(this.timeout),c.hoverState="in",this.timeout=setTimeout(function(){c.hoverState=="in"&&c.show()},c.options.delay.show)},leave:function(b){var c=a(b.currentTarget)[this.type](this._options).data(this.type);this.timeout&&clearTimeout(this.timeout);if(!c.options.delay||!c.options.delay.hide)return c.hide();c.hoverState="out",this.timeout=setTimeout(function(){c.hoverState=="out"&&c.hide()},c.options.delay.hide)},show:function(){var a,b,c,d,e,f,g;if(this.hasContent()&&this.enabled){a=this.tip(),this.setContent(),this.options.animation&&a.addClass("fade"),f=typeof this.options.placement=="function"?this.options.placement.call(this,a[0],this.$element[0]):this.options.placement,b=/in/.test(f),a.detach().css({top:0,left:0,display:"block"}).insertAfter(this.$element),c=this.getPosition(b),d=a[0].offsetWidth,e=a[0].offsetHeight;switch(b?f.split(" ")[1]:f){case"bottom":g={top:c.top+c.height,left:c.left+c.width/2-d/2};break;case"top":g={top:c.top-e,left:c.left+c.width/2-d/2};break;case"left":g={top:c.top+c.height/2-e/2,left:c.left-d};break;case"right":g={top:c.top+c.height/2-e/2,left:c.left+c.width}}a.offset(g).addClass(f).addClass("in")}},setContent:function(){var a=this.tip(),b=this.getTitle();a.find(".tooltip-inner")[this.options.html?"html":"text"](b),a.removeClass("fade in top bottom left right")},hide:function(){function d(){var b=setTimeout(function(){c.off(a.support.transition.end).detach()},500);c.one(a.support.transition.end,function(){clearTimeout(b),c.detach()})}var b=this,c=this.tip();return c.removeClass("in"),a.support.transition&&this.$tip.hasClass("fade")?d():c.detach(),this},fixTitle:function(){var a=this.$element;(a.attr("title")||typeof a.attr("data-original-title")!="string")&&a.attr("data-original-title",a.attr("title")||"").removeAttr("title")},hasContent:function(){return this.getTitle()},getPosition:function(b){return a.extend({},b?{top:0,left:0}:this.$element.offset(),{width:this.$element[0].offsetWidth,height:this.$element[0].offsetHeight})},getTitle:function(){var a,b=this.$element,c=this.options;return a=b.attr("data-original-title")||(typeof c.title=="function"?c.title.call(b[0]):c.title),a},tip:function(){return this.$tip=this.$tip||a(this.options.template)},validate:function(){this.$element[0].parentNode||(this.hide(),this.$element=null,this.options=null)},enable:function(){this.enabled=!0},disable:function(){this.enabled=!1},toggleEnabled:function(){this.enabled=!this.enabled},toggle:function(b){var c=a(b.currentTarget)[this.type](this._options).data(this.type);c[c.tip().hasClass("in")?"hide":"show"]()},destroy:function(){this.hide().$element.off("."+this.type).removeData(this.type)}};var c=a.fn.tooltip;a.fn.tooltip=function(c){return this.each(function(){var d=a(this),e=d.data("tooltip"),f=typeof c=="object"&&c;e||d.data("tooltip",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.tooltip.Constructor=b,a.fn.tooltip.defaults={animation:!0,placement:"top",selector:!1,template:'
    ',trigger:"hover",title:"",delay:0,html:!1},a.fn.tooltip.noConflict=function(){return a.fn.tooltip=c,this}}(window.jQuery),!function(a){var b=function(a,b){this.init("popover",a,b)};b.prototype=a.extend({},a.fn.tooltip.Constructor.prototype,{constructor:b,setContent:function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content")[this.options.html?"html":"text"](c),a.removeClass("fade top bottom left right in")},hasContent:function(){return this.getTitle()||this.getContent()},getContent:function(){var a,b=this.$element,c=this.options;return a=b.attr("data-content")||(typeof c.content=="function"?c.content.call(b[0]):c.content),a},tip:function(){return this.$tip||(this.$tip=a(this.options.template)),this.$tip},destroy:function(){this.hide().$element.off("."+this.type).removeData(this.type)}});var c=a.fn.popover;a.fn.popover=function(c){return this.each(function(){var d=a(this),e=d.data("popover"),f=typeof c=="object"&&c;e||d.data("popover",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.popover.Constructor=b,a.fn.popover.defaults=a.extend({},a.fn.tooltip.defaults,{placement:"right",trigger:"click",content:"",template:'

    '}),a.fn.popover.noConflict=function(){return a.fn.popover=c,this}}(window.jQuery),!function(a){var b=function(b,c){this.options=a.extend({},a.fn.affix.defaults,c),this.$window=a(window).on("scroll.affix.data-api",a.proxy(this.checkPosition,this)).on("click.affix.data-api",a.proxy(function(){setTimeout(a.proxy(this.checkPosition,this),1)},this)),this.$element=a(b),this.checkPosition()};b.prototype.checkPosition=function(){if(!this.$element.is(":visible"))return;var b=a(document).height(),c=this.$window.scrollTop(),d=this.$element.offset(),e=this.options.offset,f=e.bottom,g=e.top,h="affix affix-top affix-bottom",i;typeof e!="object"&&(f=g=e),typeof g=="function"&&(g=e.top()),typeof f=="function"&&(f=e.bottom()),i=this.unpin!=null&&c+this.unpin<=d.top?!1:f!=null&&d.top+this.$element.height()>=b-f?"bottom":g!=null&&c<=g?"top":!1;if(this.affixed===i)return;this.affixed=i,this.unpin=i=="bottom"?d.top-c:null,this.$element.removeClass(h).addClass("affix"+(i?"-"+i:""))};var c=a.fn.affix;a.fn.affix=function(c){return this.each(function(){var d=a(this),e=d.data("affix"),f=typeof c=="object"&&c;e||d.data("affix",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.affix.Constructor=b,a.fn.affix.defaults={offset:0},a.fn.affix.noConflict=function(){return a.fn.affix=c,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var b=a(this),c=b.data();c.offset=c.offset||{},c.offsetBottom&&(c.offset.bottom=c.offsetBottom),c.offsetTop&&(c.offset.top=c.offsetTop),b.affix(c)})})}(window.jQuery),!function(a){var b='[data-dismiss="alert"]',c=function(c){a(c).on("click",b,this.close)};c.prototype.close=function(b){function f(){e.trigger("closed").remove()}var c=a(this),d=c.attr("data-target"),e;d||(d=c.attr("href"),d=d&&d.replace(/.*(?=#[^\s]*$)/,"")),e=a(d),b&&b.preventDefault(),e.length||(e=c.hasClass("alert")?c:c.parent()),e.trigger(b=a.Event("close"));if(b.isDefaultPrevented())return;e.removeClass("in"),a.support.transition&&e.hasClass("fade")?e.on(a.support.transition.end,f):f()};var d=a.fn.alert;a.fn.alert=function(b){return this.each(function(){var d=a(this),e=d.data("alert");e||d.data("alert",e=new c(this)),typeof b=="string"&&e[b].call(d)})},a.fn.alert.Constructor=c,a.fn.alert.noConflict=function(){return a.fn.alert=d,this},a(document).on("click.alert.data-api",b,c.prototype.close)}(window.jQuery),!function(a){var b=function(b,c){this.$element=a(b),this.options=a.extend({},a.fn.button.defaults,c)};b.prototype.setState=function(a){var b="disabled",c=this.$element,d=c.data(),e=c.is("input")?"val":"html";a+="Text",d.resetText||c.data("resetText",c[e]()),c[e](d[a]||this.options[a]),setTimeout(function(){a=="loadingText"?c.addClass(b).attr(b,b):c.removeClass(b).removeAttr(b)},0)},b.prototype.toggle=function(){var a=this.$element.closest('[data-toggle="buttons-radio"]');a&&a.find(".active").removeClass("active"),this.$element.toggleClass("active")};var c=a.fn.button;a.fn.button=function(c){return this.each(function(){var d=a(this),e=d.data("button"),f=typeof c=="object"&&c;e||d.data("button",e=new b(this,f)),c=="toggle"?e.toggle():c&&e.setState(c)})},a.fn.button.defaults={loadingText:"loading..."},a.fn.button.Constructor=b,a.fn.button.noConflict=function(){return a.fn.button=c,this},a(document).on("click.button.data-api","[data-toggle^=button]",function(b){var c=a(b.target);c.hasClass("btn")||(c=c.closest(".btn")),c.button("toggle")})}(window.jQuery),!function(a){var b=function(b,c){this.$element=a(b),this.options=a.extend({},a.fn.collapse.defaults,c),this.options.parent&&(this.$parent=a(this.options.parent)),this.options.toggle&&this.toggle()};b.prototype={constructor:b,dimension:function(){var a=this.$element.hasClass("width");return a?"width":"height"},show:function(){var b,c,d,e;if(this.transitioning)return;b=this.dimension(),c=a.camelCase(["scroll",b].join("-")),d=this.$parent&&this.$parent.find("> .accordion-group > .in");if(d&&d.length){e=d.data("collapse");if(e&&e.transitioning)return;d.collapse("hide"),e||d.data("collapse",null)}this.$element[b](0),this.transition("addClass",a.Event("show"),"shown"),a.support.transition&&this.$element[b](this.$element[0][c])},hide:function(){var b;if(this.transitioning)return;b=this.dimension(),this.reset(this.$element[b]()),this.transition("removeClass",a.Event("hide"),"hidden"),this.$element[b](0)},reset:function(a){var b=this.dimension();return this.$element.removeClass("collapse")[b](a||"auto")[0].offsetWidth,this.$element[a!==null?"addClass":"removeClass"]("collapse"),this},transition:function(b,c,d){var e=this,f=function(){c.type=="show"&&e.reset(),e.transitioning=0,e.$element.trigger(d)};this.$element.trigger(c);if(c.isDefaultPrevented())return;this.transitioning=1,this.$element[b]("in"),a.support.transition&&this.$element.hasClass("collapse")?this.$element.one(a.support.transition.end,f):f()},toggle:function(){this[this.$element.hasClass("in")?"hide":"show"]()}};var c=a.fn.collapse;a.fn.collapse=function(c){return this.each(function(){var d=a(this),e=d.data("collapse"),f=typeof c=="object"&&c;e||d.data("collapse",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.collapse.defaults={toggle:!0},a.fn.collapse.Constructor=b,a.fn.collapse.noConflict=function(){return a.fn.collapse=c,this},a(document).on("click.collapse.data-api","[data-toggle=collapse]",function(b){var c=a(this),d,e=c.attr("data-target")||b.preventDefault()||(d=c.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,""),f=a(e).data("collapse")?"toggle":c.data();c[a(e).hasClass("in")?"addClass":"removeClass"]("collapsed"),a(e).collapse(f)})}(window.jQuery),!function(a){var b=function(b,c){this.$element=a(b),this.options=c,this.options.pause=="hover"&&this.$element.on("mouseenter",a.proxy(this.pause,this)).on("mouseleave",a.proxy(this.cycle,this))};b.prototype={cycle:function(b){return b||(this.paused=!1),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},to:function(b){var c=this.$element.find(".item.active"),d=c.parent().children(),e=d.index(c),f=this;if(b>d.length-1||b<0)return;return this.sliding?this.$element.one("slid",function(){f.to(b)}):e==b?this.pause().cycle():this.slide(b>e?"next":"prev",a(d[b]))},pause:function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition.end&&(this.$element.trigger(a.support.transition.end),this.cycle()),clearInterval(this.interval),this.interval=null,this},next:function(){if(this.sliding)return;return this.slide("next")},prev:function(){if(this.sliding)return;return this.slide("prev")},slide:function(b,c){var d=this.$element.find(".item.active"),e=c||d[b](),f=this.interval,g=b=="next"?"left":"right",h=b=="next"?"first":"last",i=this,j;this.sliding=!0,f&&this.pause(),e=e.length?e:this.$element.find(".item")[h](),j=a.Event("slide",{relatedTarget:e[0]});if(e.hasClass("active"))return;if(a.support.transition&&this.$element.hasClass("slide")){this.$element.trigger(j);if(j.isDefaultPrevented())return;e.addClass(b),e[0].offsetWidth,d.addClass(g),e.addClass(g),this.$element.one(a.support.transition.end,function(){e.removeClass([b,g].join(" ")).addClass("active"),d.removeClass(["active",g].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger("slid")},0)})}else{this.$element.trigger(j);if(j.isDefaultPrevented())return;d.removeClass("active"),e.addClass("active"),this.sliding=!1,this.$element.trigger("slid")}return f&&this.cycle(),this}};var c=a.fn.carousel;a.fn.carousel=function(c){return this.each(function(){var d=a(this),e=d.data("carousel"),f=a.extend({},a.fn.carousel.defaults,typeof c=="object"&&c),g=typeof c=="string"?c:f.slide;e||d.data("carousel",e=new b(this,f)),typeof c=="number"?e.to(c):g?e[g]():f.interval&&e.cycle()})},a.fn.carousel.defaults={interval:5e3,pause:"hover"},a.fn.carousel.Constructor=b,a.fn.carousel.noConflict=function(){return a.fn.carousel=c,this},a(document).on("click.carousel.data-api","[data-slide]",function(b){var c=a(this),d,e=a(c.attr("data-target")||(d=c.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,"")),f=a.extend({},e.data(),c.data());e.carousel(f),b.preventDefault()})}(window.jQuery),!function(a){var b=function(b,c){this.$element=a(b),this.options=a.extend({},a.fn.typeahead.defaults,c),this.matcher=this.options.matcher||this.matcher,this.sorter=this.options.sorter||this.sorter,this.highlighter=this.options.highlighter||this.highlighter,this.updater=this.options.updater||this.updater,this.source=this.options.source,this.$menu=a(this.options.menu),this.shown=!1,this.listen()};b.prototype={constructor:b,select:function(){var a=this.$menu.find(".active").attr("data-value");return this.$element.val(this.updater(a)).change(),this.hide()},updater:function(a){return a},show:function(){var b=a.extend({},this.$element.position(),{height:this.$element[0].offsetHeight});return this.$menu.insertAfter(this.$element).css({top:b.top+b.height,left:b.left}).show(),this.shown=!0,this},hide:function(){return this.$menu.hide(),this.shown=!1,this},lookup:function(b){var c;return this.query=this.$element.val(),!this.query||this.query.length"+b+""})},render:function(b){var c=this;return b=a(b).map(function(b,d){return b=a(c.options.item).attr("data-value",d),b.find("a").html(c.highlighter(d)),b[0]}),b.first().addClass("active"),this.$menu.html(b),this},next:function(b){var c=this.$menu.find(".active").removeClass("active"),d=c.next();d.length||(d=a(this.$menu.find("li")[0])),d.addClass("active")},prev:function(a){var b=this.$menu.find(".active").removeClass("active"),c=b.prev();c.length||(c=this.$menu.find("li").last()),c.addClass("active")},listen:function(){this.$element.on("blur",a.proxy(this.blur,this)).on("keypress",a.proxy(this.keypress,this)).on("keyup",a.proxy(this.keyup,this)),this.eventSupported("keydown")&&this.$element.on("keydown",a.proxy(this.keydown,this)),this.$menu.on("click",a.proxy(this.click,this)).on("mouseenter","li",a.proxy(this.mouseenter,this))},eventSupported:function(a){var b=a in this.$element;return b||(this.$element.setAttribute(a,"return;"),b=typeof this.$element[a]=="function"),b},move:function(a){if(!this.shown)return;switch(a.keyCode){case 9:case 13:case 27:a.preventDefault();break;case 38:a.preventDefault(),this.prev();break;case 40:a.preventDefault(),this.next()}a.stopPropagation()},keydown:function(b){this.suppressKeyPressRepeat=~a.inArray(b.keyCode,[40,38,9,13,27]),this.move(b)},keypress:function(a){if(this.suppressKeyPressRepeat)return;this.move(a)},keyup:function(a){switch(a.keyCode){case 40:case 38:case 16:case 17:case 18:break;case 9:case 13:if(!this.shown)return;this.select();break;case 27:if(!this.shown)return;this.hide();break;default:this.lookup()}a.stopPropagation(),a.preventDefault()},blur:function(a){var b=this;setTimeout(function(){b.hide()},150)},click:function(a){a.stopPropagation(),a.preventDefault(),this.select()},mouseenter:function(b){this.$menu.find(".active").removeClass("active"),a(b.currentTarget).addClass("active")}};var c=a.fn.typeahead;a.fn.typeahead=function(c){return this.each(function(){var d=a(this),e=d.data("typeahead"),f=typeof c=="object"&&c;e||d.data("typeahead",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.typeahead.defaults={source:[],items:8,menu:'',item:'
  • ',minLength:1},a.fn.typeahead.Constructor=b,a.fn.typeahead.noConflict=function(){return a.fn.typeahead=c,this},a(document).on("focus.typeahead.data-api",'[data-provide="typeahead"]',function(b){var c=a(this);if(c.data("typeahead"))return;b.preventDefault(),c.typeahead(c.data())})}(window.jQuery)]]>
    DateFri, 24 Feb 2023 14:03:17 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Accept-Rangesbytes
    ETagW/"26898-1358437290000"
    Last-ModifiedThu, 17 Jan 2013 15:41:30 GMT
    Cache-Controlmax-age=2419200
    ExpiresFri, 24 Mar 2023 14:03:17 GMT
    Content-Typeapplication/javascript;charset=UTF-8
    Content-Length26898
    Keep-Alivetimeout=5, max=100
    ConnectionKeep-Alive
    http://zero.webappsecurity.com:80/httpzero.webappsecurity.com80Info10028102820Web Server Misconfiguration: OPTIONS HTTP MethodCWE-200: Information ExposureEnvironmentWeb Server Misconfiguration: OPTIONS HTTP MethodSummaryImplicationExecutionFixReference InfoRFC 2616 Section 9: HTTP Methods:
    http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html


    Apache:
    Apache HTTP Server Version 2.0
    Apache HTTP Server Version 1.3

    Microsoft:
    UrlScan Security Tool
    How to configure the URLScan Tool
    Setting Application Mappings in IIS 6.0
    ]]>
    OPTIONS/HTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0 +
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Audit.Attack";SID="019E0BC6606F7C718056D826444AD32A";PSID="C2E3EA7620F4A29F11DBAC2B877DD850";SessionType="AuditAttack";CrawlType="None";AttackType="None";OriginatingEngineID="65cee7d3-561f-40dc-b5eb-c0b8c2383fcb";AttackSequence="0";AttackParamDesc="";AttackParamIndex="0";AttackParamSubIndex="0";CheckId="10282";Engine="Request+Modify";SmartMode="4";tht="11";
    X-RequestManager-Memostid="15";stmi="0";sc="1";rid="894e01b7";
    X-Request-Memorid="7679c114";sc="1";thid="27";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0
    HTTP/1.1200OK
    DateFri, 24 Feb 2023 14:03:19 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Cache-Controlno-cache, max-age=0, must-revalidate, no-store
    AllowGET, HEAD, POST, PUT, DELETE, TRACE, OPTIONS, PATCH
    Content-Length0
    Keep-Alivetimeout=5, max=77
    ConnectionKeep-Alive
    Content-Typetext/plain
    http://zero.webappsecurity.com:80/httpzero.webappsecurity.com80objectIds]]>POST/HTTP/1.1<?xml version="1.0"?><methodCall><methodName>objectIds</methodName><params /></methodCall>objectIds]]>objectIds]]>Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=A9EF43AC +
    Refererhttp://zero.webappsecurity.com/
    Hostzero.webappsecurity.com
    Accept*/*
    Accept-Languageen-US,en;q=0.5
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Content-Typetext/xml
    Content-Length90
    ConnectionKeep-Alive
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONIDA9EF43AC
    HTTP/1.1302Found
    DateFri, 24 Feb 2023 14:03:25 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Cache-Controlno-cache, max-age=0, must-revalidate, no-store
    Locationindex.html
    Content-Languageen-US
    Content-Length0
    Keep-Alivetimeout=5, max=32
    ConnectionKeep-Alive
    Content-Typetext/plain
    http://zero.webappsecurity.com:80/<script>alert('TRACK');</script>httpzero.webappsecurity.com80Vulnerability10028109321Web Server Misconfiguration: Server Error MessageEnvironmentWeb Server Misconfiguration: Server Error MessageCWE-550: Information Exposure Through Server Error MessageSummaryImplicationThe server has issued a 500 error response. While the body content of the error page may not expose any information about the technical error, the fact that an error occurred is confirmed by the 500 status code. Knowing whether certain inputs trigger a server error can aid or inform an attacker of potential vulnerabilities.]]>ExecutionFixFor Security Operations:

    + Server error messages, such as "File Protected Against Access", often reveal more information than intended. For instance, an attacker who receives this message can be relatively certain that file exists, which might give him the information he needs to pursue other leads, or to perform an actual exploit. The following recommendations will help to ensure that a potential attacker is not deriving valuable information from any server error message that is presented.
    • Uniform Error Codes: Ensure that you are not inadvertently supplying information to an attacker via the use of inconsistent or "conflicting" error messages. For instance, don't reveal unintended information by utilizing error messages such as Access Denied, which will also let an attacker know that the file he seeks actually exists. Have consistent terminology for files and folders that do exist, do not exist, and which have read access denied.
    • Informational Error Messages: Ensure that error messages do not reveal too much information. Complete or partial paths, variable and file names, row and column names in tables, and specific database errors should never be revealed to the end user. Remember, an attacker will gather as much information as possible, and then add pieces of seemingly innocuous information together to craft a method of attack.
    • Proper Error Handling: Utilize generic error pages and error handling logic to inform end users of potential problems. Do not provide system information or other data that could be utilized by an attacker when orchestrating an attack.

    Removing Detailed Error Messages

    + +Find instructions for turning off detailed error messaging in IIS at this link:

    http://support.microsoft.com/kb/294807

    For Development:

    + From a development perspective, the best method of preventing problems from arising from server error messages is to adopt secure programming techniques that prevent problems that might arise from an attacker discovering too much information about the architecture and design of your web application. The following recommendations can be used as a basis for that.
    • Stringently define the data type (for instance, a string, an alphanumeric character, etc) that the application will accept.
    • Use what is good instead of what is bad. Validate input for improper characters.
    • Do not display error messages to the end user that provide information (such as table names) that could be utilized in orchestrating an attack.
    • Define the allowed set of characters. For instance, if a field is to receive a number, only let that field accept numbers.
    • Define the maximum and minimum data lengths for what the application will accept.
    • Specify acceptable numeric ranges for input.



    For QA:
    + +The best course of action for QA associates to take is to ensure that the error handling scheme is consistent. Do you receive a different type of error for a file that does not exist as opposed to a file that does? Are phrases like "Permission Denied" utilized which could reveal the existence of a file to an attacker? Inconsistent methods of dealing with errors gives an attacker a very powerful way of gathering information about your web application.]]>
    Reference InfoApache:
    Security Tips for Server Configuration
    Protecting Confidential Documents at Your Site
    Securing Apache - Access Control

    Microsoft:
    How to set required NTFS permissions and user rights for an IIS 5.0 Web server
    Default permissions and user rights for IIS 6.0
    Description of Microsoft Internet Information Services (IIS) 5.0 and 6.0 status codes]]>
    alert('TRACK'); HTTP/1.1 +Referer: http://zero.webappsecurity.com/resources/js/placeholders.min.js +Accept: */* +Accept-Encoding: gzip, deflate +Pragma: no-cache +User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0 +Host: zero.webappsecurity.com +Connection: Keep-Alive +X-WIPP: AscVersion=22.2.0.253 +X-Scan-Memo: Category="Audit.Attack";SID="DCCB29AC8B65BDE04A6ED9BAB6F6D5C2";PSID="511D6DB521E43A071D015EA7E62869D3";SessionType="AuditAttack";CrawlType="None";AttackType="Search";OriginatingEngineID="65cee7d3-561f-40dc-b5eb-c0b8c2383fcb";AttackSequence="0";AttackParamDesc="";AttackParamIndex="0";AttackParamSubIndex="0";CheckId="5152";Engine="Request+Modify";SmartMode="4";tht="11"; +X-RequestManager-Memo: stid="15";stmi="0";sc="1";rid="b6290ceb"; +X-Request-Memo: rid="2a7e0aa7";sc="1";thid="27"; +Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0 + +]]>Apache Tomcat/7.0.70 - Error report

    HTTP Status 501 - Method TRACK is not implemented by this servlet for this URI


    type Status report

    message Method TRACK is not implemented by this servlet for this URI

    description The server does not support the functionality needed to fulfill this request.


    Apache Tomcat/7.0.70

    ]]>
    TRACK/<script>alert('TRACK');<*_escaped_end_tag_*>script>HTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0 +
    Refererhttp://zero.webappsecurity.com/resources/js/placeholders.min.js
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Audit.Attack";SID="DCCB29AC8B65BDE04A6ED9BAB6F6D5C2";PSID="511D6DB521E43A071D015EA7E62869D3";SessionType="AuditAttack";CrawlType="None";AttackType="Search";OriginatingEngineID="65cee7d3-561f-40dc-b5eb-c0b8c2383fcb";AttackSequence="0";AttackParamDesc="";AttackParamIndex="0";AttackParamSubIndex="0";CheckId="5152";Engine="Request+Modify";SmartMode="4";tht="11";
    X-RequestManager-Memostid="15";stmi="0";sc="1";rid="b6290ceb";
    X-Request-Memorid="2a7e0aa7";sc="1";thid="27";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0
    HTTP/1.1501Not ImplementedApache Tomcat/7.0.70 - Error report

    HTTP Status 501 - Method TRACK is not implemented by this servlet for this URI


    type Status report

    message Method TRACK is not implemented by this servlet for this URI

    description The server does not support the functionality needed to fulfill this request.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:03:25 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length1106
    Connectionclose
    http://zero.webappsecurity.com:80/index.html.oldhttpzero.webappsecurity.com80Vulnerability67093Web Server Misconfiguration: Unprotected FileEnvironmentWeb Server Misconfiguration: Unprotected FileCWE-538: File and Directory Information ExposureSummary]]>ImplicationAn attacker can use the information obtained from the backup file of a sensitive document to craft a precise targeted attack against the web application. Such attacks can include, but are not limited to, SQL injection, remote file system access to overwrite or inject malware, and database manipulation.]]>ExecutionFix
    • Webroot Security Policy: Implement a security policy that prohibits storage of backup files in webroot.
    • Temporary Files: Many tools and editors automatically create temporary files or backup files in the webroot. Be careful when editing files on a production server to avoid inadvertently leaving a backup or temporary copy of the file(s) in the webroot.
    • Default Installations: Often, a lot of unnecessary files and folders are installed by default. For instance, IIS installations include demo applications. Be sure to remove any files or folders that are not required for application to work properly.
    • Development Backup: Source code back up should not be stored and left available on the webroot.
    + +Further QA can include test cases to look for the presence of backup files in the webroot to ensure none are left in publicly accessible folders of the web application.]]>
    Reference InfoOWASP - Review Old, Backup and Unreferenced Files for Sensitive Information (OTG-CONFIG-004)
    CWE - 200 Information Exposure ]]>
    + + + + Free Bank Online + + + + + + + + + + + + + + + + +
    +
    + +
    +
    + +]]>
    GET/index.htmloldHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0 +
    Refererhttp://zero.webappsecurity.com/index.html
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Audit.Attack";SID="E008A8CA4FA265733B7FA2EF6BB2C691";PSID="8E73B3A63EFE2AADE20745A947151EB3";SessionType="AuditAttack";CrawlType="None";AttackType="Search";OriginatingEngineID="aabf09b7-996e-479e-9ecc-9f0508d42d72";AttackSequence="0";AttackParamDesc="";AttackParamIndex="0";AttackParamSubIndex="0";CheckId="709";Engine="File+Extension+Addition";SmartMode="4";tht="40";
    X-RequestManager-Memostid="15";stmi="0";sc="1";rid="45db6eca";
    X-Request-Memorid="7f073839";sc="1";thid="27";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0
    HTTP/1.1200OK + + + + Free Bank Online + + + + + + + + + + + + + + + + +
    +
    + +
    +
    + +]]>
    DateFri, 24 Feb 2023 14:03:40 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Accept-Rangesbytes
    ETagW/"3691-1368929102000"
    Last-ModifiedSun, 19 May 2013 02:05:02 GMT
    Content-Typeapplication/octet-stream;charset=UTF-8
    Content-Length3691
    Keep-Alivetimeout=5, max=71
    ConnectionKeep-Alive
    http://zero.webappsecurity.com:80/resources/css/jquery-ui-1.8.16.custom.csshttpzero.webappsecurity.com80GET/resources/css/jquery-ui-1.8.16.customcssHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/index.html.old
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="61AE3ACD35A2CCD41CE8E5CBE48C4EB1";PSID="E008A8CA4FA265733B7FA2EF6BB2C691";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";Format="Relative";LinkKind="HyperLink";Locations="HtmlNode";NodeName="meta";Source="StaticParser";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="1df6f8c6";
    X-Request-Memorid="ef24ea4b";sc="2";thid="24";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1200OK
    DateFri, 24 Feb 2023 14:03:41 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Accept-Rangesbytes
    ETagW/"53483-1358437290000"
    Last-ModifiedThu, 17 Jan 2013 15:41:30 GMT
    Cache-Controlmax-age=2419200
    ExpiresFri, 24 Mar 2023 14:03:41 GMT
    Content-Typetext/css;charset=UTF-8
    Content-Length53483
    Keep-Alivetimeout=5, max=100
    ConnectionKeep-Alive
    http://zero.webappsecurity.com:80/resources/css/bootstrap.csshttpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /resources/css/bootstrap.css


    type Status report

    message /resources/css/bootstrap.css

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    GET/resources/css/bootstrapcssHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/index.html.old
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="2D8B7DEBECF7ADD2D904F979A625DE42";PSID="E008A8CA4FA265733B7FA2EF6BB2C691";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";Format="Relative";LinkKind="HyperLink";Locations="HtmlNode";NodeName="meta";Source="StaticParser";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="4dd34eaa";
    X-Request-Memorid="1dc9e26f";sc="2";thid="26";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1404Not FoundApache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /resources/css/bootstrap.css


    type Status report

    message /resources/css/bootstrap.css

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:03:41 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length1005
    Keep-Alivetimeout=5, max=100
    ConnectionKeep-Alive
    http://zero.webappsecurity.com:80/resources/js/bootstrap.jshttpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /resources/js/bootstrap.js


    type Status report

    message /resources/js/bootstrap.js

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    GET/resources/js/bootstrapjsHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
    Refererhttp://zero.webappsecurity.com/index.html.old
    Accept*/*
    Accept-Encodinggzip, deflate
    Pragmano-cache
    User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
    Hostzero.webappsecurity.com
    ConnectionKeep-Alive
    X-WIPPAscVersion=22.2.0.253
    X-Scan-MemoCategory="Crawl";SID="999CF76BB0BE6A8E764A55176D959678";PSID="E008A8CA4FA265733B7FA2EF6BB2C691";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";Format="Relative";LinkKind="HyperLink";Locations="HtmlNode";NodeName="meta";Source="StaticParser";tht="31";
    X-RequestManager-Memostid="11";stmi="0";sc="1";rid="5bb5a4cd";
    X-Request-Memorid="c7c0b9d0";sc="2";thid="25";
    CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
    HTTP/1.1404Not FoundApache Tomcat/7.0.70 - Error report

    HTTP Status 404 - /resources/js/bootstrap.js


    type Status report

    message /resources/js/bootstrap.js

    description The requested resource is not available.


    Apache Tomcat/7.0.70

    ]]>
    DateFri, 24 Feb 2023 14:03:41 GMT
    ServerApache-Coyote/1.1
    Access-Control-Allow-Origin*
    Content-Typetext/html;charset=utf-8
    Content-Languageen
    Content-Length1001
    Keep-Alivetimeout=5, max=100
    ConnectionKeep-Alive
    http://zero.webappsecurity.com:80/resources/js/jquery-ui.min.jshttpzero.webappsecurity.com80").outerWidth(1).jquery||a.each(["Width","Height"],function(c,d){function h(b,c,d,f){return a.each(e,function(){c-=parseFloat(a.curCSS(b,"padding"+this,!0))||0,d&&(c-=parseFloat(a.curCSS(b,"border"+this+"Width",!0))||0),f&&(c-=parseFloat(a.curCSS(b,"margin"+this,!0))||0)}),c}var e=d==="Width"?["Left","Right"]:["Top","Bottom"],f=d.toLowerCase(),g={innerWidth:a.fn.innerWidth,innerHeight:a.fn.innerHeight,outerWidth:a.fn.outerWidth,outerHeight:a.fn.outerHeight};a.fn["inner"+d]=function(c){return c===b?g["inner"+d].call(this):this.each(function(){a(this).css(f,h(this,c)+"px")})},a.fn["outer"+d]=function(b,c){return typeof b!="number"?g["outer"+d].call(this,b):this.each(function(){a(this).css(f,h(this,b,!0,c)+"px")})}}),a.extend(a.expr[":"],{data:a.expr.createPseudo?a.expr.createPseudo(function(b){return function(c){return!!a.data(c,b)}}):function(b,c,d){return!!a.data(b,d[3])},focusable:function(b){return c(b,!isNaN(a.attr(b,"tabindex")))},tabbable:function(b){var d=a.attr(b,"tabindex"),e=isNaN(d);return(e||d>=0)&&c(b,!e)}}),a(function(){var b=document.body,c=b.appendChild(c=document.createElement("div"));c.offsetHeight,a.extend(c.style,{minHeight:"100px",height:"auto",padding:0,borderWidth:0}),a.support.minHeight=c.offsetHeight===100,a.support.selectstart="onselectstart"in c,b.removeChild(c).style.display="none"}),a.curCSS||(a.curCSS=a.css),a.extend(a.ui,{plugin:{add:function(b,c,d){var e=a.ui[b].prototype;for(var f in d)e.plugins[f]=e.plugins[f]||[],e.plugins[f].push([c,d[f]])},call:function(a,b,c){var d=a.plugins[b];if(!d||!a.element[0].parentNode)return;for(var e=0;e0?!0:(b[d]=1,e=b[d]>0,b[d]=0,e)},isOverAxis:function(a,b,c){return a>b&&a=9||!!b.button?this._mouseStarted?(this._mouseDrag(b),b.preventDefault()):(this._mouseDistanceMet(b)&&this._mouseDelayMet(b)&&(this._mouseStarted=this._mouseStart(this._mouseDownEvent,b)!==!1,this._mouseStarted?this._mouseDrag(b):this._mouseUp(b)),!this._mouseStarted):this._mouseUp(b)},_mouseUp:function(b){return a(document).unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate),this._mouseStarted&&(this._mouseStarted=!1,b.target==this._mouseDownEvent.target&&a.data(b.target,this.widgetName+".preventClickEvent",!0),this._mouseStop(b)),!1},_mouseDistanceMet:function(a){return Math.max(Math.abs(this._mouseDownEvent.pageX-a.pageX),Math.abs(this._mouseDownEvent.pageY-a.pageY))>=this.options.distance},_mouseDelayMet:function(a){return this.mouseDelayMet},_mouseStart:function(a){},_mouseDrag:function(a){},_mouseStop:function(a){},_mouseCapture:function(a){return!0}})}(jQuery),function(a,b){a.widget("ui.draggable",a.ui.mouse,{widgetEventPrefix:"drag",options:{addClasses:!0,appendTo:"parent",axis:!1,connectToSortable:!1,containment:!1,cursor:"auto",cursorAt:!1,grid:!1,handle:!1,helper:"original",iframeFix:!1,opacity:!1,refreshPositions:!1,revert:!1,revertDuration:500,scope:"default",scroll:!0,scrollSensitivity:20,scrollSpeed:20,snap:!1,snapMode:"both",snapTolerance:20,stack:!1,zIndex:!1},_create:function(){this.options.helper=="original"&&!/^(?:r|a|f)/.test(this.element.css("position"))&&(this.element[0].style.position="relative"),this.options.addClasses&&this.element.addClass("ui-draggable"),this.options.disabled&&this.element.addClass("ui-draggable-disabled"),this._mouseInit()},destroy:function(){if(!this.element.data("draggable"))return;return this.element.removeData("draggable").unbind(".draggable").removeClass("ui-draggable ui-draggable-dragging ui-draggable-disabled"),this._mouseDestroy(),this},_mouseCapture:function(b){var c=this.options;return this.helper||c.disabled||a(b.target).is(".ui-resizable-handle")?!1:(this.handle=this._getHandle(b),this.handle?(c.iframeFix&&a(c.iframeFix===!0?"iframe":c.iframeFix).each(function(){a('
    ').css({width:this.offsetWidth+"px",height:this.offsetHeight+"px",position:"absolute",opacity:"0.001",zIndex:1e3}).css(a(this).offset()).appendTo("body")}),!0):!1)},_mouseStart:function(b){var c=this.options;return this.helper=this._createHelper(b),this.helper.addClass("ui-draggable-dragging"),this._cacheHelperProportions(),a.ui.ddmanager&&(a.ui.ddmanager.current=this),this._cacheMargins(),this.cssPosition=this.helper.css("position"),this.scrollParent=this.helper.scrollParent(),this.offset=this.positionAbs=this.element.offset(),this.offset={top:this.offset.top-this.margins.top,left:this.offset.left-this.margins.left},a.extend(this.offset,{click:{left:b.pageX-this.offset.left,top:b.pageY-this.offset.top},parent:this._getParentOffset(),relative:this._getRelativeOffset()}),this.originalPosition=this.position=this._generatePosition(b),this.originalPageX=b.pageX,this.originalPageY=b.pageY,c.cursorAt&&this._adjustOffsetFromHelper(c.cursorAt),c.containment&&this._setContainment(),this._trigger("start",b)===!1?(this._clear(),!1):(this._cacheHelperProportions(),a.ui.ddmanager&&!c.dropBehaviour&&a.ui.ddmanager.prepareOffsets(this,b),this._mouseDrag(b,!0),a.ui.ddmanager&&a.ui.ddmanager.dragStart(this,b),!0)},_mouseDrag:function(b,c){this.position=this._generatePosition(b),this.positionAbs=this._convertPositionTo("absolute");if(!c){var d=this._uiHash();if(this._trigger("drag",b,d)===!1)return this._mouseUp({}),!1;this.position=d.position}if(!this.options.axis||this.options.axis!="y")this.helper[0].style.left=this.position.left+"px";if(!this.options.axis||this.options.axis!="x")this.helper[0].style.top=this.position.top+"px";return a.ui.ddmanager&&a.ui.ddmanager.drag(this,b),!1},_mouseStop:function(b){var c=!1;a.ui.ddmanager&&!this.options.dropBehaviour&&(c=a.ui.ddmanager.drop(this,b)),this.dropped&&(c=this.dropped,this.dropped=!1);var d=this.element[0],e=!1;while(d&&(d=d.parentNode))d==document&&(e=!0);if(!e&&this.options.helper==="original")return!1;if(this.options.revert=="invalid"&&!c||this.options.revert=="valid"&&c||this.options.revert===!0||a.isFunction(this.options.revert)&&this.options.revert.call(this.element,c)){var f=this;a(this.helper).animate(this.originalPosition,parseInt(this.options.revertDuration,10),function(){f._trigger("stop",b)!==!1&&f._clear()})}else this._trigger("stop",b)!==!1&&this._clear();return!1},_mouseUp:function(b){return this.options.iframeFix===!0&&a("div.ui-draggable-iframeFix").each(function(){this.parentNode.removeChild(this)}),a.ui.ddmanager&&a.ui.ddmanager.dragStop(this,b),a.ui.mouse.prototype._mouseUp.call(this,b)},cancel:function(){return this.helper.is(".ui-draggable-dragging")?this._mouseUp({}):this._clear(),this},_getHandle:function(b){var c=!this.options.handle||!a(this.options.handle,this.element).length?!0:!1;return a(this.options.handle,this.element).find("*").andSelf().each(function(){this==b.target&&(c=!0)}),c},_createHelper:function(b){var c=this.options,d=a.isFunction(c.helper)?a(c.helper.apply(this.element[0],[b])):c.helper=="clone"?this.element.clone().removeAttr("id"):this.element;return d.parents("body").length||d.appendTo(c.appendTo=="parent"?this.element[0].parentNode:c.appendTo),d[0]!=this.element[0]&&!/(fixed|absolute)/.test(d.css("position"))&&d.css("position","absolute"),d},_adjustOffsetFromHelper:function(b){typeof b=="string"&&(b=b.split(" ")),a.isArray(b)&&(b={left:+b[0],top:+b[1]||0}),"left"in b&&(this.offset.click.left=b.left+this.margins.left),"right"in b&&(this.offset.click.left=this.helperProportions.width-b.right+this.margins.left),"top"in b&&(this.offset.click.top=b.top+this.margins.top),"bottom"in b&&(this.offset.click.top=this.helperProportions.height-b.bottom+this.margins.top)},_getParentOffset:function(){this.offsetParent=this.helper.offsetParent();var b=this.offsetParent.offset();this.cssPosition=="absolute"&&this.scrollParent[0]!=document&&a.ui.contains(this.scrollParent[0],this.offsetParent[0])&&(b.left+=this.scrollParent.scrollLeft(),b.top+=this.scrollParent.scrollTop());if(this.offsetParent[0]==document.body||this.offsetParent[0].tagName&&this.offsetParent[0].tagName.toLowerCase()=="html"&&a.browser.msie)b={top:0,left:0};return{top:b.top+(parseInt(this.offsetParent.css("borderTopWidth"),10)||0),left:b.left+(parseInt(this.offsetParent.css("borderLeftWidth"),10)||0)}},_getRelativeOffset:function(){if(this.cssPosition=="relative"){var a=this.element.position();return{top:a.top-(parseInt(this.helper.css("top"),10)||0)+this.scrollParent.scrollTop(),left:a.left-(parseInt(this.helper.css("left"),10)||0)+this.scrollParent.scrollLeft()}}return{top:0,left:0}},_cacheMargins:function(){this.margins={left:parseInt(this.element.css("marginLeft"),10)||0,top:parseInt(this.element.css("marginTop"),10)||0,right:parseInt(this.element.css("marginRight"),10)||0,bottom:parseInt(this.element.css("marginBottom"),10)||0}},_cacheHelperProportions:function(){this.helperProportions={width:this.helper.outerWidth(),height:this.helper.outerHeight()}},_setContainment:function(){var b=this.options;b.containment=="parent"&&(b.containment=this.helper[0].parentNode);if(b.containment=="document"||b.containment=="window")this.containment=[b.containment=="document"?0:a(window).scrollLeft()-this.offset.relative.left-this.offset.parent.left,b.containment=="document"?0:a(window).scrollTop()-this.offset.relative.top-this.offset.parent.top,(b.containment=="document"?0:a(window).scrollLeft())+a(b.containment=="document"?document:window).width()-this.helperProportions.width-this.margins.left,(b.containment=="document"?0:a(window).scrollTop())+(a(b.containment=="document"?document:window).height()||document.body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top];if(!/^(document|window|parent)$/.test(b.containment)&&b.containment.constructor!=Array){var c=a(b.containment),d=c[0];if(!d)return;var e=c.offset(),f=a(d).css("overflow")!="hidden";this.containment=[(parseInt(a(d).css("borderLeftWidth"),10)||0)+(parseInt(a(d).css("paddingLeft"),10)||0),(parseInt(a(d).css("borderTopWidth"),10)||0)+(parseInt(a(d).css("paddingTop"),10)||0),(f?Math.max(d.scrollWidth,d.offsetWidth):d.offsetWidth)-(parseInt(a(d).css("borderLeftWidth"),10)||0)-(parseInt(a(d).css("paddingRight"),10)||0)-this.helperProportions.width-this.margins.left-this.margins.right,(f?Math.max(d.scrollHeight,d.offsetHeight):d.offsetHeight)-(parseInt(a(d).css("borderTopWidth"),10)||0)-(parseInt(a(d).css("paddingBottom"),10)||0)-this.helperProportions.height-this.margins.top-this.margins.bottom],this.relative_container=c}else b.containment.constructor==Array&&(this.containment=b.containment)},_convertPositionTo:function(b,c){c||(c=this.position);var d=b=="absolute"?1:-1,e=this.options,f=this.cssPosition=="absolute"&&(this.scrollParent[0]==document||!a.ui.contains(this.scrollParent[0],this.offsetParent[0]))?this.offsetParent:this.scrollParent,g=/(html|body)/i.test(f[0].tagName);return{top:c.top+this.offset.relative.top*d+this.offset.parent.top*d-(a.browser.safari&&a.browser.version<526&&this.cssPosition=="fixed"?0:(this.cssPosition=="fixed"?-this.scrollParent.scrollTop():g?0:f.scrollTop())*d),left:c.left+this.offset.relative.left*d+this.offset.parent.left*d-(a.browser.safari&&a.browser.version<526&&this.cssPosition=="fixed"?0:(this.cssPosition=="fixed"?-this.scrollParent.scrollLeft():g?0:f.scrollLeft())*d)}},_generatePosition:function(b){var c=this.options,d=this.cssPosition=="absolute"&&(this.scrollParent[0]==document||!a.ui.contains(this.scrollParent[0],this.offsetParent[0]))?this.offsetParent:this.scrollParent,e=/(html|body)/i.test(d[0].tagName),f=b.pageX,g=b.pageY;if(this.originalPosition){var h;if(this.containment){if(this.relative_container){var i=this.relative_container.offset();h=[this.containment[0]+i.left,this.containment[1]+i.top,this.containment[2]+i.left,this.containment[3]+i.top]}else h=this.containment;b.pageX-this.offset.click.lefth[2]&&(f=h[2]+this.offset.click.left),b.pageY-this.offset.click.top>h[3]&&(g=h[3]+this.offset.click.top)}if(c.grid){var j=c.grid[1]?this.originalPageY+Math.round((g-this.originalPageY)/c.grid[1])*c.grid[1]:this.originalPageY;g=h?j-this.offset.click.toph[3]?j-this.offset.click.toph[2]?k-this.offset.click.left=0;k--){var l=d.snapElements[k].left,m=l+d.snapElements[k].width,n=d.snapElements[k].top,o=n+d.snapElements[k].height;if(!(l-f=k&&g<=l||h>=k&&h<=l||gl)&&(e>=i&&e<=j||f>=i&&f<=j||ej);default:return!1}},a.ui.ddmanager={current:null,droppables:{"default":[]},prepareOffsets:function(b,c){var d=a.ui.ddmanager.droppables[b.options.scope]||[],e=c?c.type:null,f=(b.currentItem||b.element).find(":data(droppable)").andSelf();g:for(var h=0;h').css({position:this.element.css("position"),width:this.element.outerWidth(),height:this.element.outerHeight(),top:this.element.css("top"),left:this.element.css("left")})),this.element=this.element.parent().data("resizable",this.element.data("resizable")),this.elementIsWrapper=!0,this.element.css({marginLeft:this.originalElement.css("marginLeft"),marginTop:this.originalElement.css("marginTop"),marginRight:this.originalElement.css("marginRight"),marginBottom:this.originalElement.css("marginBottom")}),this.originalElement.css({marginLeft:0,marginTop:0,marginRight:0,marginBottom:0}),this.originalResizeStyle=this.originalElement.css("resize"),this.originalElement.css("resize","none"),this._proportionallyResizeElements.push(this.originalElement.css({position:"static",zoom:1,display:"block"})),this.originalElement.css({margin:this.originalElement.css("margin")}),this._proportionallyResize()),this.handles=c.handles||(a(".ui-resizable-handle",this.element).length?{n:".ui-resizable-n",e:".ui-resizable-e",s:".ui-resizable-s",w:".ui-resizable-w",se:".ui-resizable-se",sw:".ui-resizable-sw",ne:".ui-resizable-ne",nw:".ui-resizable-nw"}:"e,s,se");if(this.handles.constructor==String){this.handles=="all"&&(this.handles="n,e,s,w,se,sw,ne,nw");var d=this.handles.split(",");this.handles={};for(var e=0;e');h.css({zIndex:c.zIndex}),"se"==f&&h.addClass("ui-icon ui-icon-gripsmall-diagonal-se"),this.handles[f]=".ui-resizable-"+f,this.element.append(h)}}this._renderAxis=function(b){b=b||this.element;for(var c in this.handles){this.handles[c].constructor==String&&(this.handles[c]=a(this.handles[c],this.element).show());if(this.elementIsWrapper&&this.originalElement[0].nodeName.match(/textarea|input|select|button/i)){var d=a(this.handles[c],this.element),e=0;e=/sw|ne|nw|se|n|s/.test(c)?d.outerHeight():d.outerWidth();var f=["padding",/ne|nw|n/.test(c)?"Top":/se|sw|s/.test(c)?"Bottom":/^e$/.test(c)?"Right":"Left"].join("");b.css(f,e),this._proportionallyResize()}if(!a(this.handles[c]).length)continue}},this._renderAxis(this.element),this._handles=a(".ui-resizable-handle",this.element).disableSelection(),this._handles.mouseover(function(){if(!b.resizing){if(this.className)var a=this.className.match(/ui-resizable-(se|sw|ne|nw|n|e|s|w)/i);b.axis=a&&a[1]?a[1]:"se"}}),c.autoHide&&(this._handles.hide(),a(this.element).addClass("ui-resizable-autohide").hover(function(){if(c.disabled)return;a(this).removeClass("ui-resizable-autohide"),b._handles.show()},function(){if(c.disabled)return;b.resizing||(a(this).addClass("ui-resizable-autohide"),b._handles.hide())})),this._mouseInit()},destroy:function(){this._mouseDestroy();var b=function(b){a(b).removeClass("ui-resizable ui-resizable-disabled ui-resizable-resizing").removeData("resizable").unbind(".resizable").find(".ui-resizable-handle").remove()};if(this.elementIsWrapper){b(this.element);var c=this.element;c.after(this.originalElement.css({position:c.css("position"),width:c.outerWidth(),height:c.outerHeight(),top:c.css("top"),left:c.css("left")})).remove()}return this.originalElement.css("resize",this.originalResizeStyle),b(this.originalElement),this},_mouseCapture:function(b){var c=!1;for(var d in this.handles)a(this.handles[d])[0]==b.target&&(c=!0);return!this.options.disabled&&c},_mouseStart:function(b){var d=this.options,e=this.element.position(),f=this.element;this.resizing=!0,this.documentScroll={top:a(document).scrollTop(),left:a(document).scrollLeft()},(f.is(".ui-draggable")||/absolute/.test(f.css("position")))&&f.css({position:"absolute",top:e.top,left:e.left}),this._renderProxy();var g=c(this.helper.css("left")),h=c(this.helper.css("top"));d.containment&&(g+=a(d.containment).scrollLeft()||0,h+=a(d.containment).scrollTop()||0),this.offset=this.helper.offset(),this.position={left:g,top:h},this.size=this._helper?{width:f.outerWidth(),height:f.outerHeight()}:{width:f.width(),height:f.height()},this.originalSize=this._helper?{width:f.outerWidth(),height:f.outerHeight()}:{width:f.width(),height:f.height()},this.originalPosition={left:g,top:h},this.sizeDiff={width:f.outerWidth()-f.width(),height:f.outerHeight()-f.height()},this.originalMousePosition={left:b.pageX,top:b.pageY},this.aspectRatio=typeof d.aspectRatio=="number"?d.aspectRatio:this.originalSize.width/this.originalSize.height||1;var i=a(".ui-resizable-"+this.axis).css("cursor");return a("body").css("cursor",i=="auto"?this.axis+"-resize":i),f.addClass("ui-resizable-resizing"),this._propagate("start",b),!0},_mouseDrag:function(b){var c=this.helper,d=this.options,e={},f=this,g=this.originalMousePosition,h=this.axis,i=b.pageX-g.left||0,j=b.pageY-g.top||0,k=this._change[h];if(!k)return!1;var l=k.apply(this,[b,i,j]),m=a.browser.msie&&a.browser.version<7,n=this.sizeDiff;this._updateVirtualBoundaries(b.shiftKey);if(this._aspectRatio||b.shiftKey)l=this._updateRatio(l,b);return l=this._respectSize(l,b),this._propagate("resize",b),c.css({top:this.position.top+"px",left:this.position.left+"px",width:this.size.width+"px",height:this.size.height+"px"}),!this._helper&&this._proportionallyResizeElements.length&&this._proportionallyResize(),this._updateCache(l),this._trigger("resize",b,this.ui()),!1},_mouseStop:function(b){this.resizing=!1;var c=this.options,d=this;if(this._helper){var e=this._proportionallyResizeElements,f=e.length&&/textarea/i.test(e[0].nodeName),g=f&&a.ui.hasScroll(e[0],"left")?0:d.sizeDiff.height,h=f?0:d.sizeDiff.width,i={width:d.helper.width()-h,height:d.helper.height()-g},j=parseInt(d.element.css("left"),10)+(d.position.left-d.originalPosition.left)||null,k=parseInt(d.element.css("top"),10)+(d.position.top-d.originalPosition.top)||null;c.animate||this.element.css(a.extend(i,{top:k,left:j})),d.helper.height(d.size.height),d.helper.width(d.size.width),this._helper&&!c.animate&&this._proportionallyResize()}return a("body").css("cursor","auto"),this.element.removeClass("ui-resizable-resizing"),this._propagate("stop",b),this._helper&&this.helper.remove(),!1},_updateVirtualBoundaries:function(a){var b=this.options,c,e,f,g,h;h={minWidth:d(b.minWidth)?b.minWidth:0,maxWidth:d(b.maxWidth)?b.maxWidth:Infinity,minHeight:d(b.minHeight)?b.minHeight:0,maxHeight:d(b.maxHeight)?b.maxHeight:Infinity};if(this._aspectRatio||a)c=h.minHeight*this.aspectRatio,f=h.minWidth/this.aspectRatio,e=h.maxHeight*this.aspectRatio,g=h.maxWidth/this.aspectRatio,c>h.minWidth&&(h.minWidth=c),f>h.minHeight&&(h.minHeight=f),ea.width,k=d(a.height)&&e.minHeight&&e.minHeight>a.height;j&&(a.width=e.minWidth),k&&(a.height=e.minHeight),h&&(a.width=e.maxWidth),i&&(a.height=e.maxHeight);var l=this.originalPosition.left+this.originalSize.width,m=this.position.top+this.size.height,n=/sw|nw|w/.test(g),o=/nw|ne|n/.test(g);j&&n&&(a.left=l-e.minWidth),h&&n&&(a.left=l-e.maxWidth),k&&o&&(a.top=m-e.minHeight),i&&o&&(a.top=m-e.maxHeight);var p=!a.width&&!a.height;return p&&!a.left&&a.top?a.top=null:p&&!a.top&&a.left&&(a.left=null),a},_proportionallyResize:function(){var b=this.options;if(!this._proportionallyResizeElements.length)return;var c=this.helper||this.element;for(var d=0;d');var d=a.browser.msie&&a.browser.version<7,e=d?1:0,f=d?2:-1;this.helper.addClass(this._helper).css({width:this.element.outerWidth()+f,height:this.element.outerHeight()+f,position:"absolute",left:this.elementOffset.left-e+"px",top:this.elementOffset.top-e+"px",zIndex:++c.zIndex}),this.helper.appendTo("body").disableSelection()}else this.helper=this.element},_change:{e:function(a,b,c){return{width:this.originalSize.width+b}},w:function(a,b,c){var d=this.options,e=this.originalSize,f=this.originalPosition;return{left:f.left+b,width:e.width-b}},n:function(a,b,c){var d=this.options,e=this.originalSize,f=this.originalPosition;return{top:f.top+c,height:e.height-c}},s:function(a,b,c){return{height:this.originalSize.height+c}},se:function(b,c,d){return a.extend(this._change.s.apply(this,arguments),this._change.e.apply(this,[b,c,d]))},sw:function(b,c,d){return a.extend(this._change.s.apply(this,arguments),this._change.w.apply(this,[b,c,d]))},ne:function(b,c,d){return a.extend(this._change.n.apply(this,arguments),this._change.e.apply(this,[b,c,d]))},nw:function(b,c,d){return a.extend(this._change.n.apply(this,arguments),this._change.w.apply(this,[b,c,d]))}},_propagate:function(b,c){a.ui.plugin.call(this,b,[c,this.ui()]),b!="resize"&&this._trigger(b,c,this.ui())},plugins:{},ui:function(){return{originalElement:this.originalElement,element:this.element,helper:this.helper,position:this.position,size:this.size,originalSize:this.originalSize,originalPosition:this.originalPosition}}}),a.extend(a.ui.resizable,{version:"1.8.23"}),a.ui.plugin.add("resizable","alsoResize",{start:function(b,c){var d=a(this).data("resizable"),e=d.options,f=function(b){a(b).each(function(){var b=a(this);b.data("resizable-alsoresize",{width:parseInt(b.width(),10),height:parseInt(b.height(),10),left:parseInt(b.css("left"),10),top:parseInt(b.css("top"),10)})})};typeof e.alsoResize=="object"&&!e.alsoResize.parentNode?e.alsoResize.length?(e.alsoResize=e.alsoResize[0],f(e.alsoResize)):a.each(e.alsoResize,function(a){f(a)}):f(e.alsoResize)},resize:function(b,c){var d=a(this).data("resizable"),e=d.options,f=d.originalSize,g=d.originalPosition,h={height:d.size.height-f.height||0,width:d.size.width-f.width||0,top:d.position.top-g.top||0,left:d.position.left-g.left||0},i=function(b,d){a(b).each(function(){var b=a(this),e=a(this).data("resizable-alsoresize"),f={},g=d&&d.length?d:b.parents(c.originalElement[0]).length?["width","height"]:["width","height","top","left"];a.each(g,function(a,b){var c=(e[b]||0)+(h[b]||0);c&&c>=0&&(f[b]=c||null)}),b.css(f)})};typeof e.alsoResize=="object"&&!e.alsoResize.nodeType?a.each(e.alsoResize,function(a,b){i(a,b)}):i(e.alsoResize)},stop:function(b,c){a(this).removeData("resizable-alsoresize")}}),a.ui.plugin.add("resizable","animate",{stop:function(b,c){var d=a(this).data("resizable"),e=d.options,f=d._proportionallyResizeElements,g=f.length&&/textarea/i.test(f[0].nodeName),h=g&&a.ui.hasScroll(f[0],"left")?0:d.sizeDiff.height,i=g?0:d.sizeDiff.width,j={width:d.size.width-i,height:d.size.height-h},k=parseInt(d.element.css("left"),10)+(d.position.left-d.originalPosition.left)||null,l=parseInt(d.element.css("top"),10)+(d.position.top-d.originalPosition.top)||null;d.element.animate(a.extend(j,l&&k?{top:l,left:k}:{}),{duration:e.animateDuration,easing:e.animateEasing,step:function(){var c={width:parseInt(d.element.css("width"),10),height:parseInt(d.element.css("height"),10),top:parseInt(d.element.css("top"),10),left:parseInt(d.element.css("left"),10)};f&&f.length&&a(f[0]).css({width:c.width,height:c.height}),d._updateCache(c),d._propagate("resize",b)}})}}),a.ui.plugin.add("resizable","containment",{start:function(b,d){var e=a(this).data("resizable"),f=e.options,g=e.element,h=f.containment,i=h instanceof a?h.get(0):/parent/.test(h)?g.parent().get(0):h;if(!i)return;e.containerElement=a(i);if(/document/.test(h)||h==document)e.containerOffset={left:0,top:0},e.containerPosition={left:0,top:0},e.parentData={element:a(document),left:0,top:0,width:a(document).width(),height:a(document).height()||document.body.parentNode.scrollHeight};else{var j=a(i),k=[];a(["Top","Right","Left","Bottom"]).each(function(a,b){k[a]=c(j.css("padding"+b))}),e.containerOffset=j.offset(),e.containerPosition=j.position(),e.containerSize={height:j.innerHeight()-k[3],width:j.innerWidth()-k[1]};var l=e.containerOffset,m=e.containerSize.height,n=e.containerSize.width,o=a.ui.hasScroll(i,"left")?i.scrollWidth:n,p=a.ui.hasScroll(i)?i.scrollHeight:m;e.parentData={element:i,left:l.left,top:l.top,width:o,height:p}}},resize:function(b,c){var d=a(this).data("resizable"),e=d.options,f=d.containerSize,g=d.containerOffset,h=d.size,i=d.position,j=d._aspectRatio||b.shiftKey,k={top:0,left:0},l=d.containerElement;l[0]!=document&&/static/.test(l.css("position"))&&(k=g),i.left<(d._helper?g.left:0)&&(d.size.width=d.size.width+(d._helper?d.position.left-g.left:d.position.left-k.left),j&&(d.size.height=d.size.width/d.aspectRatio),d.position.left=e.helper?g.left:0),i.top<(d._helper?g.top:0)&&(d.size.height=d.size.height+(d._helper?d.position.top-g.top:d.position.top),j&&(d.size.width=d.size.height*d.aspectRatio),d.position.top=d._helper?g.top:0),d.offset.left=d.parentData.left+d.position.left,d.offset.top=d.parentData.top+d.position.top;var m=Math.abs((d._helper?d.offset.left-k.left:d.offset.left-k.left)+d.sizeDiff.width),n=Math.abs((d._helper?d.offset.top-k.top:d.offset.top-g.top)+d.sizeDiff.height),o=d.containerElement.get(0)==d.element.parent().get(0),p=/relative|absolute/.test(d.containerElement.css("position"));o&&p&&(m-=d.parentData.left),m+d.size.width>=d.parentData.width&&(d.size.width=d.parentData.width-m,j&&(d.size.height=d.size.width/d.aspectRatio)),n+d.size.height>=d.parentData.height&&(d.size.height=d.parentData.height-n,j&&(d.size.width=d.size.height*d.aspectRatio))},stop:function(b,c){var d=a(this).data("resizable"),e=d.options,f=d.position,g=d.containerOffset,h=d.containerPosition,i=d.containerElement,j=a(d.helper),k=j.offset(),l=j.outerWidth()-d.sizeDiff.width,m=j.outerHeight()-d.sizeDiff.height;d._helper&&!e.animate&&/relative/.test(i.css("position"))&&a(this).css({left:k.left-h.left-g.left,width:l,height:m}),d._helper&&!e.animate&&/static/.test(i.css("position"))&&a(this).css({left:k.left-h.left-g.left,width:l,height:m})}}),a.ui.plugin.add("resizable","ghost",{start:function(b,c){var d=a(this).data("resizable"),e=d.options,f=d.size;d.ghost=d.originalElement.clone(),d.ghost.css({opacity:.25,display:"block",position:"relative",height:f.height,width:f.width,margin:0,left:0,top:0}).addClass("ui-resizable-ghost").addClass(typeof e.ghost=="string"?e.ghost:""),d.ghost.appendTo(d.helper)},resize:function(b,c){var d=a(this).data("resizable"),e=d.options;d.ghost&&d.ghost.css({position:"relative",height:d.size.height,width:d.size.width})},stop:function(b,c){var d=a(this).data("resizable"),e=d.options;d.ghost&&d.helper&&d.helper.get(0).removeChild(d.ghost.get(0))}}),a.ui.plugin.add("resizable","grid",{resize:function(b,c){var d=a(this).data("resizable"),e=d.options,f=d.size,g=d.originalSize,h=d.originalPosition,i=d.axis,j=e._aspectRatio||b.shiftKey;e.grid=typeof e.grid=="number"?[e.grid,e.grid]:e.grid;var k=Math.round((f.width-g.width)/(e.grid[0]||1))*(e.grid[0]||1),l=Math.round((f.height-g.height)/(e.grid[1]||1))*(e.grid[1]||1);/^(se|s|e)$/.test(i)?(d.size.width=g.width+k,d.size.height=g.height+l):/^(ne)$/.test(i)?(d.size.width=g.width+k,d.size.height=g.height+l,d.position.top=h.top-l):/^(sw)$/.test(i)?(d.size.width=g.width+k,d.size.height=g.height+l,d.position.left=h.left-k):(d.size.width=g.width+k,d.size.height=g.height+l,d.position.top=h.top-l,d.position.left=h.left-k)}});var c=function(a){return parseInt(a,10)||0},d=function(a){return!isNaN(parseInt(a,10))}}(jQuery),function(a,b){a.widget("ui.selectable",a.ui.mouse,{options:{appendTo:"body",autoRefresh:!0,distance:0,filter:"*",tolerance:"touch"},_create:function(){var b=this;this.element.addClass("ui-selectable"),this.dragged=!1;var c;this.refresh=function(){c=a(b.options.filter,b.element[0]),c.addClass("ui-selectee"),c.each(function(){var b=a(this),c=b.offset();a.data(this,"selectable-item",{element:this,$element:b,left:c.left,top:c.top,right:c.left+b.outerWidth(),bottom:c.top+b.outerHeight(),startselected:!1,selected:b.hasClass("ui-selected"),selecting:b.hasClass("ui-selecting"),unselecting:b.hasClass("ui-unselecting")})})},this.refresh(),this.selectees=c.addClass("ui-selectee"),this._mouseInit(),this.helper=a("
    ")},destroy:function(){return this.selectees.removeClass("ui-selectee").removeData("selectable-item"),this.element.removeClass("ui-selectable ui-selectable-disabled").removeData("selectable").unbind(".selectable"),this._mouseDestroy(),this},_mouseStart:function(b){var c=this;this.opos=[b.pageX,b.pageY];if(this.options.disabled)return;var d=this.options;this.selectees=a(d.filter,this.element[0]),this._trigger("start",b),a(d.appendTo).append(this.helper),this.helper.css({left:b.clientX,top:b.clientY,width:0,height:0}),d.autoRefresh&&this.refresh(),this.selectees.filter(".ui-selected").each(function(){var d=a.data(this,"selectable-item");d.startselected=!0,!b.metaKey&&!b.ctrlKey&&(d.$element.removeClass("ui-selected"),d.selected=!1,d.$element.addClass("ui-unselecting"),d.unselecting=!0,c._trigger("unselecting",b,{unselecting:d.element}))}),a(b.target).parents().andSelf().each(function(){var d=a.data(this,"selectable-item");if(d){var e=!b.metaKey&&!b.ctrlKey||!d.$element.hasClass("ui-selected");return d.$element.removeClass(e?"ui-unselecting":"ui-selected").addClass(e?"ui-selecting":"ui-unselecting"),d.unselecting=!e,d.selecting=e,d.selected=e,e?c._trigger("selecting",b,{selecting:d.element}):c._trigger("unselecting",b,{unselecting:d.element}),!1}})},_mouseDrag:function(b){var c=this;this.dragged=!0;if(this.options.disabled)return;var d=this.options,e=this.opos[0],f=this.opos[1],g=b.pageX,h=b.pageY;if(e>g){var i=g;g=e,e=i}if(f>h){var i=h;h=f,f=i}return this.helper.css({left:e,top:f,width:g-e,height:h-f}),this.selectees.each(function(){var i=a.data(this,"selectable-item");if(!i||i.element==c.element[0])return;var j=!1;d.tolerance=="touch"?j=!(i.left>g||i.righth||i.bottome&&i.rightf&&i.bottom *",opacity:!1,placeholder:!1,revert:!1,scroll:!0,scrollSensitivity:20,scrollSpeed:20,scope:"default",tolerance:"intersect",zIndex:1e3},_create:function(){var a=this.options;this.containerCache={},this.element.addClass("ui-sortable"),this.refresh(),this.floating=this.items.length?a.axis==="x"||/left|right/.test(this.items[0].item.css("float"))||/inline|table-cell/.test(this.items[0].item.css("display")):!1,this.offset=this.element.offset(),this._mouseInit(),this.ready=!0},destroy:function(){a.Widget.prototype.destroy.call(this),this.element.removeClass("ui-sortable ui-sortable-disabled"),this._mouseDestroy();for(var b=this.items.length-1;b>=0;b--)this.items[b].item.removeData(this.widgetName+"-item");return this},_setOption:function(b,c){b==="disabled"?(this.options[b]=c,this.widget()[c?"addClass":"removeClass"]("ui-sortable-disabled")):a.Widget.prototype._setOption.apply(this,arguments)},_mouseCapture:function(b,c){var d=this;if(this.reverting)return!1;if(this.options.disabled||this.options.type=="static")return!1;this._refreshItems(b);var e=null,f=this,g=a(b.target).parents().each(function(){if(a.data(this,d.widgetName+"-item")==f)return e=a(this),!1});a.data(b.target,d.widgetName+"-item")==f&&(e=a(b.target));if(!e)return!1;if(this.options.handle&&!c){var h=!1;a(this.options.handle,e).find("*").andSelf().each(function(){this==b.target&&(h=!0)});if(!h)return!1}return this.currentItem=e,this._removeCurrentsFromItems(),!0},_mouseStart:function(b,c,d){var e=this.options,f=this;this.currentContainer=this,this.refreshPositions(),this.helper=this._createHelper(b),this._cacheHelperProportions(),this._cacheMargins(),this.scrollParent=this.helper.scrollParent(),this.offset=this.currentItem.offset(),this.offset={top:this.offset.top-this.margins.top,left:this.offset.left-this.margins.left},a.extend(this.offset,{click:{left:b.pageX-this.offset.left,top:b.pageY-this.offset.top},parent:this._getParentOffset(),relative:this._getRelativeOffset()}),this.helper.css("position","absolute"),this.cssPosition=this.helper.css("position"),this.originalPosition=this._generatePosition(b),this.originalPageX=b.pageX,this.originalPageY=b.pageY,e.cursorAt&&this._adjustOffsetFromHelper(e.cursorAt),this.domPosition={prev:this.currentItem.prev()[0],parent:this.currentItem.parent()[0]},this.helper[0]!=this.currentItem[0]&&this.currentItem.hide(),this._createPlaceholder(),e.containment&&this._setContainment(),e.cursor&&(a("body").css("cursor")&&(this._storedCursor=a("body").css("cursor")),a("body").css("cursor",e.cursor)),e.opacity&&(this.helper.css("opacity")&&(this._storedOpacity=this.helper.css("opacity")),this.helper.css("opacity",e.opacity)),e.zIndex&&(this.helper.css("zIndex")&&(this._storedZIndex=this.helper.css("zIndex")),this.helper.css("zIndex",e.zIndex)),this.scrollParent[0]!=document&&this.scrollParent[0].tagName!="HTML"&&(this.overflowOffset=this.scrollParent.offset()),this._trigger("start",b,this._uiHash()),this._preserveHelperProportions||this._cacheHelperProportions();if(!d)for(var g=this.containers.length-1;g>=0;g--)this.containers[g]._trigger("activate",b,f._uiHash(this));return a.ui.ddmanager&&(a.ui.ddmanager.current=this),a.ui.ddmanager&&!e.dropBehaviour&&a.ui.ddmanager.prepareOffsets(this,b),this.dragging=!0,this.helper.addClass("ui-sortable-helper"),this._mouseDrag(b),!0},_mouseDrag:function(b){this.position=this._generatePosition(b),this.positionAbs=this._convertPositionTo("absolute"),this.lastPositionAbs||(this.lastPositionAbs=this.positionAbs);if(this.options.scroll){var c=this.options,d=!1;this.scrollParent[0]!=document&&this.scrollParent[0].tagName!="HTML"?(this.overflowOffset.top+this.scrollParent[0].offsetHeight-b.pageY=0;e--){var f=this.items[e],g=f.item[0],h=this._intersectsWithPointer(f);if(!h)continue;if(g!=this.currentItem[0]&&this.placeholder[h==1?"next":"prev"]()[0]!=g&&!a.ui.contains(this.placeholder[0],g)&&(this.options.type=="semi-dynamic"?!a.ui.contains(this.element[0],g):!0)){this.direction=h==1?"down":"up";if(this.options.tolerance=="pointer"||this._intersectsWithSides(f))this._rearrange(b,f);else break;this._trigger("change",b,this._uiHash());break}}return this._contactContainers(b),a.ui.ddmanager&&a.ui.ddmanager.drag(this,b),this._trigger("sort",b,this._uiHash()),this.lastPositionAbs=this.positionAbs,!1},_mouseStop:function(b,c){if(!b)return;a.ui.ddmanager&&!this.options.dropBehaviour&&a.ui.ddmanager.drop(this,b);if(this.options.revert){var d=this,e=d.placeholder.offset();d.reverting=!0,a(this.helper).animate({left:e.left-this.offset.parent.left-d.margins.left+(this.offsetParent[0]==document.body?0:this.offsetParent[0].scrollLeft),top:e.top-this.offset.parent.top-d.margins.top+(this.offsetParent[0]==document.body?0:this.offsetParent[0].scrollTop)},parseInt(this.options.revert,10)||500,function(){d._clear(b)})}else this._clear(b,c);return!1},cancel:function(){var b=this;if(this.dragging){this._mouseUp({target:null}),this.options.helper=="original"?this.currentItem.css(this._storedCSS).removeClass("ui-sortable-helper"):this.currentItem.show();for(var c=this.containers.length-1;c>=0;c--)this.containers[c]._trigger("deactivate",null,b._uiHash(this)),this.containers[c].containerCache.over&&(this.containers[c]._trigger("out",null,b._uiHash(this)),this.containers[c].containerCache.over=0)}return this.placeholder&&(this.placeholder[0].parentNode&&this.placeholder[0].parentNode.removeChild(this.placeholder[0]),this.options.helper!="original"&&this.helper&&this.helper[0].parentNode&&this.helper.remove(),a.extend(this,{helper:null,dragging:!1,reverting:!1,_noFinalSort:null}),this.domPosition.prev?a(this.domPosition.prev).after(this.currentItem):a(this.domPosition.parent).prepend(this.currentItem)),this},serialize:function(b){var c=this._getItemsAsjQuery(b&&b.connected),d=[];return b=b||{},a(c).each(function(){var c=(a(b.item||this).attr(b.attribute||"id")||"").match(b.expression||/(.+)[-=_](.+)/);c&&d.push((b.key||c[1]+"[]")+"="+(b.key&&b.expression?c[1]:c[2]))}),!d.length&&b.key&&d.push(b.key+"="),d.join("&")},toArray:function(b){var c=this._getItemsAsjQuery(b&&b.connected),d=[];return b=b||{},c.each(function(){d.push(a(b.item||this).attr(b.attribute||"id")||"")}),d},_intersectsWith:function(a){var b=this.positionAbs.left,c=b+this.helperProportions.width,d=this.positionAbs.top,e=d+this.helperProportions.height,f=a.left,g=f+a.width,h=a.top,i=h+a.height,j=this.offset.click.top,k=this.offset.click.left,l=d+j>h&&d+jf&&b+ka[this.floating?"width":"height"]?l:f0?"down":"up")},_getDragHorizontalDirection:function(){var a=this.positionAbs.left-this.lastPositionAbs.left;return a!=0&&(a>0?"right":"left")},refresh:function(a){return this._refreshItems(a),this.refreshPositions(),this},_connectWith:function(){var a=this.options;return a.connectWith.constructor==String?[a.connectWith]:a.connectWith},_getItemsAsjQuery:function(b){var c=this,d=[],e=[],f=this._connectWith();if(f&&b)for(var g=f.length-1;g>=0;g--){var h=a(f[g]);for(var i=h.length-1;i>=0;i--){var j=a.data(h[i],this.widgetName);j&&j!=this&&!j.options.disabled&&e.push([a.isFunction(j.options.items)?j.options.items.call(j.element):a(j.options.items,j.element).not(".ui-sortable-helper").not(".ui-sortable-placeholder"),j])}}e.push([a.isFunction(this.options.items)?this.options.items.call(this.element,null,{options:this.options,item:this.currentItem}):a(this.options.items,this.element).not(".ui-sortable-helper").not(".ui-sortable-placeholder"),this]);for(var g=e.length-1;g>=0;g--)e[g][0].each(function(){d.push(this)});return a(d)},_removeCurrentsFromItems:function(){var a=this.currentItem.find(":data("+this.widgetName+"-item)");for(var b=0;b=0;g--){var h=a(f[g]);for(var i=h.length-1;i>=0;i--){var j=a.data(h[i],this.widgetName);j&&j!=this&&!j.options.disabled&&(e.push([a.isFunction(j.options.items)?j.options.items.call(j.element[0],b,{item:this.currentItem}):a(j.options.items,j.element),j]),this.containers.push(j))}}for(var g=e.length-1;g>=0;g--){var k=e[g][1],l=e[g][0];for(var i=0,m=l.length;i=0;c--){var d=this.items[c];if(d.instance!=this.currentContainer&&this.currentContainer&&d.item[0]!=this.currentItem[0])continue;var e=this.options.toleranceElement?a(this.options.toleranceElement,d.item):d.item;b||(d.width=e.outerWidth(),d.height=e.outerHeight());var f=e.offset();d.left=f.left,d.top=f.top}if(this.options.custom&&this.options.custom.refreshContainers)this.options.custom.refreshContainers.call(this);else for(var c=this.containers.length-1;c>=0;c--){var f=this.containers[c].element.offset();this.containers[c].containerCache.left=f.left,this.containers[c].containerCache.top=f.top,this.containers[c].containerCache.width=this.containers[c].element.outerWidth(),this.containers[c].containerCache.height=this.containers[c].element.outerHeight()}return this},_createPlaceholder:function(b){var c=b||this,d=c.options;if(!d.placeholder||d.placeholder.constructor==String){var e=d.placeholder;d.placeholder={element:function(){var b=a(document.createElement(c.currentItem[0].nodeName)).addClass(e||c.currentItem[0].className+" ui-sortable-placeholder").removeClass("ui-sortable-helper")[0];return e||(b.style.visibility="hidden"),b},update:function(a,b){if(e&&!d.forcePlaceholderSize)return;b.height()||b.height(c.currentItem.innerHeight()-parseInt(c.currentItem.css("paddingTop")||0,10)-parseInt(c.currentItem.css("paddingBottom")||0,10)),b.width()||b.width(c.currentItem.innerWidth()-parseInt(c.currentItem.css("paddingLeft")||0,10)-parseInt(c.currentItem.css("paddingRight")||0,10))}}}c.placeholder=a(d.placeholder.element.call(c.element,c.currentItem)),c.currentItem.after(c.placeholder),d.placeholder.update(c,c.placeholder)},_contactContainers:function(b){var c=null,d=null;for(var e=this.containers.length-1;e>=0;e--){if(a.ui.contains(this.currentItem[0],this.containers[e].element[0]))continue;if(this._intersectsWith(this.containers[e].containerCache)){if(c&&a.ui.contains(this.containers[e].element[0],c.element[0]))continue;c=this.containers[e],d=e}else this.containers[e].containerCache.over&&(this.containers[e]._trigger("out",b,this._uiHash(this)),this.containers[e].containerCache.over=0)}if(!c)return;if(this.containers.length===1)this.containers[d]._trigger("over",b,this._uiHash(this)),this.containers[d].containerCache.over=1;else if(this.currentContainer!=this.containers[d]){var f=1e4,g=null,h=this.positionAbs[this.containers[d].floating?"left":"top"];for(var i=this.items.length-1;i>=0;i--){if(!a.ui.contains(this.containers[d].element[0],this.items[i].item[0]))continue;var j=this.containers[d].floating?this.items[i].item.offset().left:this.items[i].item.offset().top;Math.abs(j-h)0?"down":"up")}if(!g&&!this.options.dropOnEmpty)return;this.currentContainer=this.containers[d],g?this._rearrange(b,g,null,!0):this._rearrange(b,null,this.containers[d].element,!0),this._trigger("change",b,this._uiHash()),this.containers[d]._trigger("change",b,this._uiHash(this)),this.options.placeholder.update(this.currentContainer,this.placeholder),this.containers[d]._trigger("over",b,this._uiHash(this)),this.containers[d].containerCache.over=1}},_createHelper:function(b){var c=this.options,d=a.isFunction(c.helper)?a(c.helper.apply(this.element[0],[b,this.currentItem])):c.helper=="clone"?this.currentItem.clone():this.currentItem;return d.parents("body").length||a(c.appendTo!="parent"?c.appendTo:this.currentItem[0].parentNode)[0].appendChild(d[0]),d[0]==this.currentItem[0]&&(this._storedCSS={width:this.currentItem[0].style.width,height:this.currentItem[0].style.height,position:this.currentItem.css("position"),top:this.currentItem.css("top"),left:this.currentItem.css("left")}),(d[0].style.width==""||c.forceHelperSize)&&d.width(this.currentItem.width()),(d[0].style.height==""||c.forceHelperSize)&&d.height(this.currentItem.height()),d},_adjustOffsetFromHelper:function(b){typeof b=="string"&&(b=b.split(" ")),a.isArray(b)&&(b={left:+b[0],top:+b[1]||0}),"left"in b&&(this.offset.click.left=b.left+this.margins.left),"right"in b&&(this.offset.click.left=this.helperProportions.width-b.right+this.margins.left),"top"in b&&(this.offset.click.top=b.top+this.margins.top),"bottom"in b&&(this.offset.click.top=this.helperProportions.height-b.bottom+this.margins.top)},_getParentOffset:function(){this.offsetParent=this.helper.offsetParent();var b=this.offsetParent.offset();this.cssPosition=="absolute"&&this.scrollParent[0]!=document&&a.ui.contains(this.scrollParent[0],this.offsetParent[0])&&(b.left+=this.scrollParent.scrollLeft(),b.top+=this.scrollParent.scrollTop());if(this.offsetParent[0]==document.body||this.offsetParent[0].tagName&&this.offsetParent[0].tagName.toLowerCase()=="html"&&a.browser.msie)b={top:0,left:0};return{top:b.top+(parseInt(this.offsetParent.css("borderTopWidth"),10)||0),left:b.left+(parseInt(this.offsetParent.css("borderLeftWidth"),10)||0)}},_getRelativeOffset:function(){if(this.cssPosition=="relative"){var a=this.currentItem.position();return{top:a.top-(parseInt(this.helper.css("top"),10)||0)+this.scrollParent.scrollTop(),left:a.left-(parseInt(this.helper.css("left"),10)||0)+this.scrollParent.scrollLeft()}}return{top:0,left:0}},_cacheMargins:function(){this.margins={left:parseInt(this.currentItem.css("marginLeft"),10)||0,top:parseInt(this.currentItem.css("marginTop"),10)||0}},_cacheHelperProportions:function(){this.helperProportions={width:this.helper.outerWidth(),height:this.helper.outerHeight()}},_setContainment:function(){var b=this.options;b.containment=="parent"&&(b.containment=this.helper[0].parentNode);if(b.containment=="document"||b.containment=="window")this.containment=[0-this.offset.relative.left-this.offset.parent.left,0-this.offset.relative.top-this.offset.parent.top,a(b.containment=="document"?document:window).width()-this.helperProportions.width-this.margins.left,(a(b.containment=="document"?document:window).height()||document.body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top];if(!/^(document|window|parent)$/.test(b.containment)){var c=a(b.containment)[0],d=a(b.containment).offset(),e=a(c).css("overflow")!="hidden";this.containment=[d.left+(parseInt(a(c).css("borderLeftWidth"),10)||0)+(parseInt(a(c).css("paddingLeft"),10)||0)-this.margins.left,d.top+(parseInt(a(c).css("borderTopWidth"),10)||0)+(parseInt(a(c).css("paddingTop"),10)||0)-this.margins.top,d.left+(e?Math.max(c.scrollWidth,c.offsetWidth):c.offsetWidth)-(parseInt(a(c).css("borderLeftWidth"),10)||0)-(parseInt(a(c).css("paddingRight"),10)||0)-this.helperProportions.width-this.margins.left,d.top+(e?Math.max(c.scrollHeight,c.offsetHeight):c.offsetHeight)-(parseInt(a(c).css("borderTopWidth"),10)||0)-(parseInt(a(c).css("paddingBottom"),10)||0)-this.helperProportions.height-this.margins.top]}},_convertPositionTo:function(b,c){c||(c=this.position);var d=b=="absolute"?1:-1,e=this.options,f=this.cssPosition=="absolute"&&(this.scrollParent[0]==document||!a.ui.contains(this.scrollParent[0],this.offsetParent[0]))?this.offsetParent:this.scrollParent,g=/(html|body)/i.test(f[0].tagName);return{top:c.top+this.offset.relative.top*d+this.offset.parent.top*d-(a.browser.safari&&this.cssPosition=="fixed"?0:(this.cssPosition=="fixed"?-this.scrollParent.scrollTop():g?0:f.scrollTop())*d),left:c.left+this.offset.relative.left*d+this.offset.parent.left*d-(a.browser.safari&&this.cssPosition=="fixed"?0:(this.cssPosition=="fixed"?-this.scrollParent.scrollLeft():g?0:f.scrollLeft())*d)}},_generatePosition:function(b){var c=this.options,d=this.cssPosition=="absolute"&&(this.scrollParent[0]==document||!a.ui.contains(this.scrollParent[0],this.offsetParent[0]))?this.offsetParent:this.scrollParent,e=/(html|body)/i.test(d[0].tagName);this.cssPosition=="relative"&&(this.scrollParent[0]==document||this.scrollParent[0]==this.offsetParent[0])&&(this.offset.relative=this._getRelativeOffset());var f=b.pageX,g=b.pageY;if(this.originalPosition){this.containment&&(b.pageX-this.offset.click.leftthis.containment[2]&&(f=this.containment[2]+this.offset.click.left),b.pageY-this.offset.click.top>this.containment[3]&&(g=this.containment[3]+this.offset.click.top));if(c.grid){var h=this.originalPageY+Math.round((g-this.originalPageY)/c.grid[1])*c.grid[1];g=this.containment?h-this.offset.click.topthis.containment[3]?h-this.offset.click.topthis.containment[2]?i-this.offset.click.left=0;f--)a.ui.contains(this.containers[f].element[0],this.currentItem[0])&&!c&&(d.push(function(a){return function(b){a._trigger("receive",b,this._uiHash(this))}}.call(this,this.containers[f])),d.push(function(a){return function(b){a._trigger("update",b,this._uiHash(this))}}.call(this,this.containers[f])))}for(var f=this.containers.length-1;f>=0;f--)c||d.push(function(a){return function(b){a._trigger("deactivate",b,this._uiHash(this))}}.call(this,this.containers[f])),this.containers[f].containerCache.over&&(d.push(function(a){return function(b){a._trigger("out",b,this._uiHash(this))}}.call(this,this.containers[f])),this.containers[f].containerCache.over=0);this._storedCursor&&a("body").css("cursor",this._storedCursor),this._storedOpacity&&this.helper.css("opacity",this._storedOpacity),this._storedZIndex&&this.helper.css("zIndex",this._storedZIndex=="auto"?"":this._storedZIndex),this.dragging=!1;if(this.cancelHelperRemoval){if(!c){this._trigger("beforeStop",b,this._uiHash());for(var f=0;f").addClass("ui-effects-wrapper").css({fontSize:"100%",background:"transparent",border:"none",margin:0,padding:0}),e=document.activeElement;try{e.id}catch(f){e=document.body}return b.wrap(d),(b[0]===e||a.contains(b[0],e))&&a(e).focus(),d=b.parent(),b.css("position")=="static"?(d.css({position:"relative"}),b.css({position:"relative"})):(a.extend(c,{position:b.css("position"),zIndex:b.css("z-index")}),a.each(["top","left","bottom","right"],function(a,d){c[d]=b.css(d),isNaN(parseInt(c[d],10))&&(c[d]="auto")}),b.css({position:"relative",top:0,left:0,right:"auto",bottom:"auto"})),d.css(c).show()},removeWrapper:function(b){var c,d=document.activeElement;return b.parent().is(".ui-effects-wrapper")?(c=b.parent().replaceWith(b),(b[0]===d||a.contains(b[0],d))&&a(d).focus(),c):b},setTransition:function(b,c,d,e){return e=e||{},a.each(c,function(a,c){var f=b.cssUnit(c);f[0]>0&&(e[c]=f[0]*d+f[1])}),e}}),a.fn.extend({effect:function(b,c,d,e){var f=k.apply(this,arguments),g={options:f[1],duration:f[2],callback:f[3]},h=g.options.mode,i=a.effects[b];return a.fx.off||!i?h?this[h](g.duration,g.callback):this.each(function(){g.callback&&g.callback.call(this)}):i.call(this,g)},_show:a.fn.show,show:function(a){if(l(a))return this._show.apply(this,arguments);var b=k.apply(this,arguments);return b[1].mode="show",this.effect.apply(this,b)},_hide:a.fn.hide,hide:function(a){if(l(a))return this._hide.apply(this,arguments);var b=k.apply(this,arguments);return b[1].mode="hide",this.effect.apply(this,b)},__toggle:a.fn.toggle,toggle:function(b){if(l(b)||typeof b=="boolean"||a.isFunction(b))return this.__toggle.apply(this,arguments);var c=k.apply(this,arguments);return c[1].mode="toggle",this.effect.apply(this,c)},cssUnit:function(b){var c=this.css(b),d=[];return a.each(["em","px","%","pt"],function(a,b){c.indexOf(b)>0&&(d=[parseFloat(c),b])}),d}});var m={};a.each(["Quad","Cubic","Quart","Quint","Expo"],function(a,b){m[b]=function(b){return Math.pow(b,a+2)}}),a.extend(m,{Sine:function(a){return 1-Math.cos(a*Math.PI/2)},Circ:function(a){return 1-Math.sqrt(1-a*a)},Elastic:function(a){return a===0||a===1?a:-Math.pow(2,8*(a-1))*Math.sin(((a-1)*80-7.5)*Math.PI/15)},Back:function(a){return a*a*(3*a-2)},Bounce:function(a){var b,c=4;while(a<((b=Math.pow(2,--c))-1)/11);return 1/Math.pow(4,3-c)-7.5625*Math.pow((b*3-2)/22-a,2)}}),a.each(m,function(b,c){a.easing["easeIn"+b]=c,a.easing["easeOut"+b]=function(a){return 1-c(1-a)},a.easing["easeInOut"+b]=function(a){return a<.5?c(a*2)/2:c(a*-2+2)/-2+1}})}(jQuery),function(a,b){a.effects.blind=function(b){return this.queue(function(){var c=a(this),d=["position","top","bottom","left","right"],e=a.effects.setMode(c,b.options.mode||"hide"),f=b.options.direction||"vertical";a.effects.save(c,d),c.show();var g=a.effects.createWrapper(c).css({overflow:"hidden"}),h=f=="vertical"?"height":"width",i=f=="vertical"?g.height():g.width();e=="show"&&g.css(h,0);var j={};j[h]=e=="show"?i:0,g.animate(j,b.duration,b.options.easing,function(){e=="hide"&&c.hide(),a.effects.restore(c,d),a.effects.removeWrapper(c),b.callback&&b.callback.apply(c[0],arguments),c.dequeue()})})}}(jQuery),function(a,b){a.effects.bounce=function(b){return this.queue(function(){var c=a(this),d=["position","top","bottom","left","right"],e=a.effects.setMode(c,b.options.mode||"effect"),f=b.options.direction||"up",g=b.options.distance||20,h=b.options.times||5,i=b.duration||250;/show|hide/.test(e)&&d.push("opacity"),a.effects.save(c,d),c.show(),a.effects.createWrapper(c);var j=f=="up"||f=="down"?"top":"left",k=f=="up"||f=="left"?"pos":"neg",g=b.options.distance||(j=="top"?c.outerHeight(!0)/3:c.outerWidth(!0)/3);e=="show"&&c.css("opacity",0).css(j,k=="pos"?-g:g),e=="hide"&&(g=g/(h*2)),e!="hide"&&h--;if(e=="show"){var l={opacity:1};l[j]=(k=="pos"?"+=":"-=")+g,c.animate(l,i/2,b.options.easing),g=g/2,h--}for(var m=0;m").css({position:"absolute",visibility:"visible",left:-j*(g/d),top:-i*(h/c)}).parent().addClass("ui-effects-explode").css({position:"absolute",overflow:"hidden",width:g/d,height:h/c,left:f.left+j*(g/d)+(b.options.mode=="show"?(j-Math.floor(d/2))*(g/d):0),top:f.top+i*(h/c)+(b.options.mode=="show"?(i-Math.floor(c/2))*(h/c):0),opacity:b.options.mode=="show"?0:1}).animate({left:f.left+j*(g/d)+(b.options.mode=="show"?0:(j-Math.floor(d/2))*(g/d)),top:f.top+i*(h/c)+(b.options.mode=="show"?0:(i-Math.floor(c/2))*(h/c)),opacity:b.options.mode=="show"?1:0},b.duration||500);setTimeout(function(){b.options.mode=="show"?e.css({visibility:"visible"}):e.css({visibility:"visible"}).hide(),b.callback&&b.callback.apply(e[0]),e.dequeue(),a("div.ui-effects-explode").remove()},b.duration||500)})}}(jQuery),function(a,b){a.effects.fade=function(b){return this.queue(function(){var c=a(this),d=a.effects.setMode(c,b.options.mode||"hide");c.animate({opacity:d},{queue:!1,duration:b.duration,easing:b.options.easing,complete:function(){b.callback&&b.callback.apply(this,arguments),c.dequeue()}})})}}(jQuery),function(a,b){a.effects.fold=function(b){return this.queue(function(){var c=a(this),d=["position","top","bottom","left","right"],e=a.effects.setMode(c,b.options.mode||"hide"),f=b.options.size||15,g=!!b.options.horizFirst,h=b.duration?b.duration/2:a.fx.speeds._default/2;a.effects.save(c,d),c.show();var i=a.effects.createWrapper(c).css({overflow:"hidden"}),j=e=="show"!=g,k=j?["width","height"]:["height","width"],l=j?[i.width(),i.height()]:[i.height(),i.width()],m=/([0-9]+)%/.exec(f);m&&(f=parseInt(m[1],10)/100*l[e=="hide"?0:1]),e=="show"&&i.css(g?{height:0,width:f}:{height:f,width:0});var n={},p={};n[k[0]]=e=="show"?l[0]:f,p[k[1]]=e=="show"?l[1]:0,i.animate(n,h,b.options.easing).animate(p,h,b.options.easing,function(){e=="hide"&&c.hide(),a.effects.restore(c,d),a.effects.removeWrapper(c),b.callback&&b.callback.apply(c[0],arguments),c.dequeue()})})}}(jQuery),function(a,b){a.effects.highlight=function(b){return this.queue(function(){var c=a(this),d=["backgroundImage","backgroundColor","opacity"],e=a.effects.setMode(c,b.options.mode||"show"),f={backgroundColor:c.css("backgroundColor")};e=="hide"&&(f.opacity=0),a.effects.save(c,d),c.show().css({backgroundImage:"none",backgroundColor:b.options.color||"#ffff99"}).animate(f,{queue:!1,duration:b.duration,easing:b.options.easing,complete:function(){e=="hide"&&c.hide(),a.effects.restore(c,d),e=="show"&&!a.support.opacity&&this.style.removeAttribute("filter"),b.callback&&b.callback.apply(this,arguments),c.dequeue()}})})}}(jQuery),function(a,b){a.effects.pulsate=function(b){return this.queue(function(){var c=a(this),d=a.effects.setMode(c,b.options.mode||"show"),e=(b.options.times||5)*2-1,f=b.duration?b.duration/2:a.fx.speeds._default/2,g=c.is(":visible"),h=0;g||(c.css("opacity",0).show(),h=1),(d=="hide"&&g||d=="show"&&!g)&&e--;for(var i=0;i').appendTo(document.body).addClass(b.options.className).css({top:g.top,left:g.left,height:c.innerHeight(),width:c.innerWidth(),position:"absolute"}).animate(f,b.duration,b.options.easing,function(){h.remove(),b.callback&&b.callback.apply(c[0],arguments),c.dequeue()})})}}(jQuery),function(a,b){a.widget("ui.accordion",{options:{active:0,animated:"slide",autoHeight:!0,clearStyle:!1,collapsible:!1,event:"click",fillSpace:!1,header:"> li > :first-child,> :not(li):even",icons:{header:"ui-icon-triangle-1-e",headerSelected:"ui-icon-triangle-1-s"},navigation:!1,navigationFilter:function(){return this.href.toLowerCase()===location.href.toLowerCase()}},_create:function(){var b=this,c=b.options;b.running=0,b.element.addClass("ui-accordion ui-widget ui-helper-reset").children("li").addClass("ui-accordion-li-fix"),b.headers=b.element.find(c.header).addClass("ui-accordion-header ui-helper-reset ui-state-default ui-corner-all").bind("mouseenter.accordion",function(){if(c.disabled)return;a(this).addClass("ui-state-hover")}).bind("mouseleave.accordion",function(){if(c.disabled)return;a(this).removeClass("ui-state-hover")}).bind("focus.accordion",function(){if(c.disabled)return;a(this).addClass("ui-state-focus")}).bind("blur.accordion",function(){if(c.disabled)return;a(this).removeClass("ui-state-focus")}),b.headers.next().addClass("ui-accordion-content ui-helper-reset ui-widget-content ui-corner-bottom");if(c.navigation){var d=b.element.find("a").filter(c.navigationFilter).eq(0);if(d.length){var e=d.closest(".ui-accordion-header");e.length?b.active=e:b.active=d.closest(".ui-accordion-content").prev()}}b.active=b._findActive(b.active||c.active).addClass("ui-state-default ui-state-active").toggleClass("ui-corner-all").toggleClass("ui-corner-top"),b.active.next().addClass("ui-accordion-content-active"),b._createIcons(),b.resize(),b.element.attr("role","tablist"),b.headers.attr("role","tab").bind("keydown.accordion",function(a){return b._keydown(a)}).next().attr("role","tabpanel"),b.headers.not(b.active||"").attr({"aria-expanded":"false","aria-selected":"false",tabIndex:-1}).next().hide(),b.active.length?b.active.attr({"aria-expanded":"true","aria-selected":"true",tabIndex:0}):b.headers.eq(0).attr("tabIndex",0),a.browser.safari||b.headers.find("a").attr("tabIndex",-1),c.event&&b.headers.bind(c.event.split(" ").join(".accordion ")+".accordion",function(a){b._clickHandler.call(b,a,this),a.preventDefault()})},_createIcons:function(){var b=this.options;b.icons&&(a("").addClass("ui-icon "+b.icons.header).prependTo(this.headers),this.active.children(".ui-icon").toggleClass(b.icons.header).toggleClass(b.icons.headerSelected),this.element.addClass("ui-accordion-icons"))},_destroyIcons:function(){this.headers.children(".ui-icon").remove(),this.element.removeClass("ui-accordion-icons")},destroy:function(){var b=this.options;this.element.removeClass("ui-accordion ui-widget ui-helper-reset").removeAttr("role"),this.headers.unbind(".accordion").removeClass("ui-accordion-header ui-accordion-disabled ui-helper-reset ui-state-default ui-corner-all ui-state-active ui-state-disabled ui-corner-top").removeAttr("role").removeAttr("aria-expanded").removeAttr("aria-selected").removeAttr("tabIndex"),this.headers.find("a").removeAttr("tabIndex"),this._destroyIcons();var c=this.headers.next().css("display","").removeAttr("role").removeClass("ui-helper-reset ui-widget-content ui-corner-bottom ui-accordion-content ui-accordion-content-active ui-accordion-disabled ui-state-disabled");return(b.autoHeight||b.fillHeight)&&c.css("height",""),a.Widget.prototype.destroy.call(this)},_setOption:function(b,c){a.Widget.prototype._setOption.apply(this,arguments),b=="active"&&this.activate(c),b=="icons"&&(this._destroyIcons(),c&&this._createIcons()),b=="disabled"&&this.headers.add(this.headers.next())[c?"addClass":"removeClass"]("ui-accordion-disabled ui-state-disabled")},_keydown:function(b){if(this.options.disabled||b.altKey||b.ctrlKey)return;var c=a.ui.keyCode,d=this.headers.length,e=this.headers.index(b.target),f=!1;switch(b.keyCode){case c.RIGHT:case c.DOWN:f=this.headers[(e+1)%d];break;case c.LEFT:case c.UP:f=this.headers[(e-1+d)%d];break;case c.SPACE:case c.ENTER:this._clickHandler({target:b.target},b.target),b.preventDefault()}return f?(a(b.target).attr("tabIndex",-1),a(f).attr("tabIndex",0),f.focus(),!1):!0},resize:function(){var b=this.options,c;if(b.fillSpace){if(a.browser.msie){var d=this.element.parent().css("overflow");this.element.parent().css("overflow","hidden")}c=this.element.parent().height(),a.browser.msie&&this.element.parent().css("overflow",d),this.headers.each(function(){c-=a(this).outerHeight(!0)}),this.headers.next().each(function(){a(this).height(Math.max(0,c-a(this).innerHeight()+a(this).height()))}).css("overflow","auto")}else b.autoHeight&&(c=0,this.headers.next().each(function(){c=Math.max(c,a(this).height("").height())}).height(c));return this},activate:function(a){this.options.active=a;var b=this._findActive(a)[0];return this._clickHandler({target:b},b),this},_findActive:function(b){return b?typeof b=="number"?this.headers.filter(":eq("+b+")"):this.headers.not(this.headers.not(b)):b===!1?a([]):this.headers.filter(":eq(0)")},_clickHandler:function(b,c){var d=this.options;if(d.disabled)return;if(!b.target){if(!d.collapsible)return;this.active.removeClass("ui-state-active ui-corner-top").addClass("ui-state-default ui-corner-all").children(".ui-icon").removeClass(d.icons.headerSelected).addClass(d.icons.header),this.active.next().addClass("ui-accordion-content-active");var e=this.active.next(),f={options:d,newHeader:a([]),oldHeader:d.active,newContent:a([]),oldContent:e},g=this.active=a([]);this._toggle(g,e,f);return}var h=a(b.currentTarget||c),i=h[0]===this.active[0];d.active=d.collapsible&&i?!1:this.headers.index(h);if(this.running||!d.collapsible&&i)return;var j=this.active,g=h.next(),e=this.active.next(),f={options:d,newHeader:i&&d.collapsible?a([]):h,oldHeader:this.active,newContent:i&&d.collapsible?a([]):g,oldContent:e},k=this.headers.index(this.active[0])>this.headers.index(h[0]);this.active=i?a([]):h,this._toggle(g,e,f,i,k),j.removeClass("ui-state-active ui-corner-top").addClass("ui-state-default ui-corner-all").children(".ui-icon").removeClass(d.icons.headerSelected).addClass(d.icons.header),i||(h.removeClass("ui-state-default ui-corner-all").addClass("ui-state-active ui-corner-top").children(".ui-icon").removeClass(d.icons.header).addClass(d.icons.headerSelected),h.next().addClass("ui-accordion-content-active"));return},_toggle:function(b,c,d,e,f){var g=this,h=g.options;g.toShow=b,g.toHide=c,g.data=d;var i=function(){if(!g)return;return g._completed.apply(g,arguments)};g._trigger("changestart",null,g.data),g.running=c.size()===0?b.size():c.size();if(h.animated){var j={};h.collapsible&&e?j={toShow:a([]),toHide:c,complete:i,down:f,autoHeight:h.autoHeight||h.fillSpace}:j={toShow:b,toHide:c,complete:i,down:f,autoHeight:h.autoHeight||h.fillSpace},h.proxied||(h.proxied=h.animated),h.proxiedDuration||(h.proxiedDuration=h.duration),h.animated=a.isFunction(h.proxied)?h.proxied(j):h.proxied,h.duration=a.isFunction(h.proxiedDuration)?h.proxiedDuration(j):h.proxiedDuration;var k=a.ui.accordion.animations,l=h.duration,m=h.animated;m&&!k[m]&&!a.easing[m]&&(m="slide"),k[m]||(k[m]=function(a){this.slide(a,{easing:m,duration:l||700})}),k[m](j)}else h.collapsible&&e?b.toggle():(c.hide(),b.show()),i(!0);c.prev().attr({"aria-expanded":"false","aria-selected":"false",tabIndex:-1}).blur(),b.prev().attr({"aria-expanded":"true","aria-selected":"true",tabIndex:0}).focus()},_completed:function(a){this.running=a?0:--this.running;if(this.running)return;this.options.clearStyle&&this.toShow.add(this.toHide).css({height:"",overflow:""}),this.toHide.removeClass("ui-accordion-content-active"),this.toHide.length&&(this.toHide.parent()[0].className=this.toHide.parent()[0].className),this._trigger("change",null,this.data)}}),a.extend(a.ui.accordion,{version:"1.8.23",animations:{slide:function(b,c){b=a.extend({easing:"swing",duration:300},b,c);if(!b.toHide.size()){b.toShow.animate({height:"show",paddingTop:"show",paddingBottom:"show"},b);return}if(!b.toShow.size()){b.toHide.animate({height:"hide",paddingTop:"hide",paddingBottom:"hide"},b);return}var d=b.toShow.css("overflow"),e=0,f={},g={},h=["height","paddingTop","paddingBottom"],i,j=b.toShow;i=j[0].style.width,j.width(j.parent().width()-parseFloat(j.css("paddingLeft"))-parseFloat(j.css("paddingRight"))-(parseFloat(j.css("borderLeftWidth"))||0)-(parseFloat(j.css("borderRightWidth"))||0)),a.each(h,function(c,d){g[d]="hide";var e=(""+a.css(b.toShow[0],d)).match(/^([\d+-.]+)(.*)$/);f[d]={value:e[1],unit:e[2]||"px"}}),b.toShow.css({height:0,overflow:"hidden"}).show(),b.toHide.filter(":hidden").each(b.complete).end().filter(":visible").animate(g,{step:function(a,c){c.prop=="height"&&(e=c.end-c.start===0?0:(c.now-c.start)/(c.end-c.start)),b.toShow[0].style[c.prop]=e*f[c.prop].value+f[c.prop].unit},duration:b.duration,easing:b.easing,complete:function(){b.autoHeight||b.toShow.css("height",""),b.toShow.css({width:i,overflow:d}),b.complete()}})},bounceslide:function(a){this.slide(a,{easing:a.down?"easeOutBounce":"swing",duration:a.down?1e3:200})}}})}(jQuery),function(a,b){var c=0;a.widget("ui.autocomplete",{options:{appendTo:"body",autoFocus:!1,delay:300,minLength:1,position:{my:"left top",at:"left bottom",collision:"none"},source:null},pending:0,_create:function(){var b=this,c=this.element[0].ownerDocument,d;this.isMultiLine=this.element.is("textarea"),this.element.addClass("ui-autocomplete-input").attr("autocomplete","off").attr({role:"textbox","aria-autocomplete":"list","aria-haspopup":"true"}).bind("keydown.autocomplete",function(c){if(b.options.disabled||b.element.propAttr("readOnly"))return;d=!1;var e=a.ui.keyCode;switch(c.keyCode){case e.PAGE_UP:b._move("previousPage",c);break;case e.PAGE_DOWN:b._move("nextPage",c);break;case e.UP:b._keyEvent("previous",c);break;case e.DOWN:b._keyEvent("next",c);break;case e.ENTER:case e.NUMPAD_ENTER:b.menu.active&&(d=!0,c.preventDefault());case e.TAB:if(!b.menu.active)return;b.menu.select(c);break;case e.ESCAPE:b.element.val(b.term),b.close(c);break;default:clearTimeout(b.searching),b.searching=setTimeout(function(){b.term!=b.element.val()&&(b.selectedItem=null,b.search(null,c))},b.options.delay)}}).bind("keypress.autocomplete",function(a){d&&(d=!1,a.preventDefault())}).bind("focus.autocomplete",function(){if(b.options.disabled)return;b.selectedItem=null,b.previous=b.element.val()}).bind("blur.autocomplete",function(a){if(b.options.disabled)return;clearTimeout(b.searching),b.closing=setTimeout(function(){b.close(a),b._change(a)},150)}),this._initSource(),this.menu=a("
      ").addClass("ui-autocomplete").appendTo(a(this.options.appendTo||"body",c)[0]).mousedown(function(c){var d=b.menu.element[0];a(c.target).closest(".ui-menu-item").length||setTimeout(function(){a(document).one("mousedown",function(c){c.target!==b.element[0]&&c.target!==d&&!a.ui.contains(d,c.target)&&b.close()})},1),setTimeout(function(){clearTimeout(b.closing)},13)}).menu({focus:function(a,c){var d=c.item.data("item.autocomplete");!1!==b._trigger("focus",a,{item:d})&&/^key/.test(a.originalEvent.type)&&b.element.val(d.value)},selected:function(a,d){var e=d.item.data("item.autocomplete"),f=b.previous;b.element[0]!==c.activeElement&&(b.element.focus(),b.previous=f,setTimeout(function(){b.previous=f,b.selectedItem=e},1)),!1!==b._trigger("select",a,{item:e})&&b.element.val(e.value),b.term=b.element.val(),b.close(a),b.selectedItem=e},blur:function(a,c){b.menu.element.is(":visible")&&b.element.val()!==b.term&&b.element.val(b.term)}}).zIndex(this.element.zIndex()+1).css({top:0,left:0}).hide().data("menu"),a.fn.bgiframe&&this.menu.element.bgiframe(),b.beforeunloadHandler=function(){b.element.removeAttr("autocomplete")},a(window).bind("beforeunload",b.beforeunloadHandler)},destroy:function(){this.element.removeClass("ui-autocomplete-input").removeAttr("autocomplete").removeAttr("role").removeAttr("aria-autocomplete").removeAttr("aria-haspopup"),this.menu.element.remove(),a(window).unbind("beforeunload",this.beforeunloadHandler),a.Widget.prototype.destroy.call(this)},_setOption:function(b,c){a.Widget.prototype._setOption.apply(this,arguments),b==="source"&&this._initSource(),b==="appendTo"&&this.menu.element.appendTo(a(c||"body",this.element[0].ownerDocument)[0]),b==="disabled"&&c&&this.xhr&&this.xhr.abort()},_initSource:function(){var b=this,c,d;a.isArray(this.options.source)?(c=this.options.source,this.source=function(b,d){d(a.ui.autocomplete.filter(c,b.term))}):typeof this.options.source=="string"?(d=this.options.source,this.source=function(c,e){b.xhr&&b.xhr.abort(),b.xhr=a.ajax({url:d,data:c,dataType:"json",success:function(a,b){e(a)},error:function(){e([])}})}):this.source=this.options.source},search:function(a,b){a=a!=null?a:this.element.val(),this.term=this.element.val();if(a.length").data("item.autocomplete",c).append(a("").text(c.label)).appendTo(b)},_move:function(a,b){if(!this.menu.element.is(":visible")){this.search(null,b);return}if(this.menu.first()&&/^previous/.test(a)||this.menu.last()&&/^next/.test(a)){this.element.val(this.term),this.menu.deactivate();return}this.menu[a](b)},widget:function(){return this.menu.element},_keyEvent:function(a,b){if(!this.isMultiLine||this.menu.element.is(":visible"))this._move(a,b),b.preventDefault()}}),a.extend(a.ui.autocomplete,{escapeRegex:function(a){return a.replace(/[-[\]{}()*+?.,\\^$|#\s]/g,"\\$&")},filter:function(b,c){var d=new RegExp(a.ui.autocomplete.escapeRegex(c),"i");return a.grep(b,function(a){return d.test(a.label||a.value||a)})}})}(jQuery),function(a){a.widget("ui.menu",{_create:function(){var b=this;this.element.addClass("ui-menu ui-widget ui-widget-content ui-corner-all").attr({role:"listbox","aria-activedescendant":"ui-active-menuitem"}).click(function(c){if(!a(c.target).closest(".ui-menu-item a").length)return;c.preventDefault(),b.select(c)}),this.refresh()},refresh:function(){var b=this,c=this.element.children("li:not(.ui-menu-item):has(a)").addClass("ui-menu-item").attr("role","menuitem");c.children("a").addClass("ui-corner-all").attr("tabindex",-1).mouseenter(function(c){b.activate(c,a(this).parent())}).mouseleave(function(){b.deactivate()})},activate:function(a,b){this.deactivate();if(this.hasScroll()){var c=b.offset().top-this.element.offset().top,d=this.element.scrollTop(),e=this.element.height();c<0?this.element.scrollTop(d+c):c>=e&&this.element.scrollTop(d+c-e+b.height())}this.active=b.eq(0).children("a").addClass("ui-state-hover").attr("id","ui-active-menuitem").end(),this._trigger("focus",a,{item:b})},deactivate:function(){if(!this.active)return;this.active.children("a").removeClass("ui-state-hover").removeAttr("id"),this._trigger("blur"),this.active=null},next:function(a){this.move("next",".ui-menu-item:first",a)},previous:function(a){this.move("prev",".ui-menu-item:last",a)},first:function(){return this.active&&!this.active.prevAll(".ui-menu-item").length},last:function(){return this.active&&!this.active.nextAll(".ui-menu-item").length},move:function(a,b,c){if(!this.active){this.activate(c,this.element.children(b));return}var d=this.active[a+"All"](".ui-menu-item").eq(0);d.length?this.activate(c,d):this.activate(c,this.element.children(b))},nextPage:function(b){if(this.hasScroll()){if(!this.active||this.last()){this.activate(b,this.element.children(".ui-menu-item:first"));return}var c=this.active.offset().top,d=this.element.height(),e=this.element.children(".ui-menu-item").filter(function(){var b=a(this).offset().top-c-d+a(this).height();return b<10&&b>-10});e.length||(e=this.element.children(".ui-menu-item:last")),this.activate(b,e)}else this.activate(b,this.element.children(".ui-menu-item").filter(!this.active||this.last()?":first":":last"))},previousPage:function(b){if(this.hasScroll()){if(!this.active||this.first()){this.activate(b,this.element.children(".ui-menu-item:last"));return}var c=this.active.offset().top,d=this.element.height(),e=this.element.children(".ui-menu-item").filter(function(){var b=a(this).offset().top-c+d-a(this).height();return b<10&&b>-10});e.length||(e=this.element.children(".ui-menu-item:first")),this.activate(b,e)}else this.activate(b,this.element.children(".ui-menu-item").filter(!this.active||this.first()?":last":":first"))},hasScroll:function(){return this.element.height()",this.element[0].ownerDocument).addClass("ui-button-text").html(this.options.label).appendTo(b.empty()).text(),d=this.options.icons,e=d.primary&&d.secondary,f=[];d.primary||d.secondary?(this.options.text&&f.push("ui-button-text-icon"+(e?"s":d.primary?"-primary":"-secondary")),d.primary&&b.prepend(""),d.secondary&&b.append(""),this.options.text||(f.push(e?"ui-button-icons-only":"ui-button-icon-only"),this.hasTitle||b.attr("title",c))):f.push("ui-button-text-only"),b.addClass(f.join(" "))}}),a.widget("ui.buttonset",{options:{items:":button, :submit, :reset, :checkbox, :radio, a, :data(button)"},_create:function(){this.element.addClass("ui-buttonset")},_init:function(){this.refresh()},_setOption:function(b,c){b==="disabled"&&this.buttons.button("option",b,c),a.Widget.prototype._setOption.apply(this,arguments)},refresh:function(){var b=this.element.css("direction")==="rtl";this.buttons=this.element.find(this.options.items).filter(":ui-button").button("refresh").end().not(":ui-button").button().end().map(function(){return a(this).button("widget")[0]}).removeClass("ui-corner-all ui-corner-left ui-corner-right").filter(":first").addClass(b?"ui-corner-right":"ui-corner-left").end().filter(":last").addClass(b?"ui-corner-left":"ui-corner-right").end().end()},destroy:function(){this.element.removeClass("ui-buttonset"),this.buttons.map(function(){return a(this).button("widget")[0]}).removeClass("ui-corner-left ui-corner-right").end().button("destroy"),a.Widget.prototype.destroy.call(this)}})}(jQuery),function($,undefined){function Datepicker(){this.debug=!1,this._curInst=null,this._keyEvent=!1,this._disabledInputs=[],this._datepickerShowing=!1,this._inDialog=!1,this._mainDivId="ui-datepicker-div",this._inlineClass="ui-datepicker-inline",this._appendClass="ui-datepicker-append",this._triggerClass="ui-datepicker-trigger",this._dialogClass="ui-datepicker-dialog",this._disableClass="ui-datepicker-disabled",this._unselectableClass="ui-datepicker-unselectable",this._currentClass="ui-datepicker-current-day",this._dayOverClass="ui-datepicker-days-cell-over",this.regional=[],this.regional[""]={closeText:"Done",prevText:"Prev",nextText:"Next",currentText:"Today",monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su","Mo","Tu","We","Th","Fr","Sa"],weekHeader:"Wk",dateFormat:"mm/dd/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},this._defaults={showOn:"focus",showAnim:"fadeIn",showOptions:{},defaultDate:null,appendText:"",buttonText:"...",buttonImage:"",buttonImageOnly:!1,hideIfNoPrevNext:!1,navigationAsDateFormat:!1,gotoCurrent:!1,changeMonth:!1,changeYear:!1,yearRange:"c-10:c+10",showOtherMonths:!1,selectOtherMonths:!1,showWeek:!1,calculateWeek:this.iso8601Week,shortYearCutoff:"+10",minDate:null,maxDate:null,duration:"fast",beforeShowDay:null,beforeShow:null,onSelect:null,onChangeMonthYear:null,onClose:null,numberOfMonths:1,showCurrentAtPos:0,stepMonths:1,stepBigMonths:12,altField:"",altFormat:"",constrainInput:!0,showButtonPanel:!1,autoSize:!1,disabled:!1},$.extend(this._defaults,this.regional[""]),this.dpDiv=bindHover($('
      '))}function bindHover(a){var b="button, .ui-datepicker-prev, .ui-datepicker-next, .ui-datepicker-calendar td a";return a.bind("mouseout",function(a){var c=$(a.target).closest(b);if(!c.length)return;c.removeClass("ui-state-hover ui-datepicker-prev-hover ui-datepicker-next-hover")}).bind("mouseover",function(c){var d=$(c.target).closest(b);if($.datepicker._isDisabledDatepicker(instActive.inline?a.parent()[0]:instActive.input[0])||!d.length)return;d.parents(".ui-datepicker-calendar").find("a").removeClass("ui-state-hover"),d.addClass("ui-state-hover"),d.hasClass("ui-datepicker-prev")&&d.addClass("ui-datepicker-prev-hover"),d.hasClass("ui-datepicker-next")&&d.addClass("ui-datepicker-next-hover")})}function extendRemove(a,b){$.extend(a,b);for(var c in b)if(b[c]==null||b[c]==undefined)a[c]=b[c];return a}function isArray(a){return a&&($.browser.safari&&typeof a=="object"&&a.length||a.constructor&&a.constructor.toString().match(/\Array\(\)/))}$.extend($.ui,{datepicker:{version:"1.8.23"}});var PROP_NAME="datepicker",dpuuid=(new Date).getTime(),instActive;$.extend(Datepicker.prototype,{markerClassName:"hasDatepicker",maxRows:4,log:function(){this.debug&&console.log.apply("",arguments)},_widgetDatepicker:function(){return this.dpDiv},setDefaults:function(a){return extendRemove(this._defaults,a||{}),this},_attachDatepicker:function(target,settings){var inlineSettings=null;for(var attrName in this._defaults){var attrValue=target.getAttribute("date:"+attrName);if(attrValue){inlineSettings=inlineSettings||{};try{inlineSettings[attrName]=eval(attrValue)}catch(err){inlineSettings[attrName]=attrValue}}}var nodeName=target.nodeName.toLowerCase(),inline=nodeName=="div"||nodeName=="span";target.id||(this.uuid+=1,target.id="dp"+this.uuid);var inst=this._newInst($(target),inline);inst.settings=$.extend({},settings||{},inlineSettings||{}),nodeName=="input"?this._connectDatepicker(target,inst):inline&&this._inlineDatepicker(target,inst)},_newInst:function(a,b){var c=a[0].id.replace(/([^A-Za-z0-9_-])/g,"\\\\$1");return{id:c,input:a,selectedDay:0,selectedMonth:0,selectedYear:0,drawMonth:0,drawYear:0,inline:b,dpDiv:b?bindHover($('
      ')):this.dpDiv}},_connectDatepicker:function(a,b){var c=$(a);b.append=$([]),b.trigger=$([]);if(c.hasClass(this.markerClassName))return;this._attachments(c,b),c.addClass(this.markerClassName).keydown(this._doKeyDown).keypress(this._doKeyPress).keyup(this._doKeyUp).bind("setData.datepicker",function(a,c,d){b.settings[c]=d}).bind("getData.datepicker",function(a,c){return this._get(b,c)}),this._autoSize(b),$.data(a,PROP_NAME,b),b.settings.disabled&&this._disableDatepicker(a)},_attachments:function(a,b){var c=this._get(b,"appendText"),d=this._get(b,"isRTL");b.append&&b.append.remove(),c&&(b.append=$(''+c+""),a[d?"before":"after"](b.append)),a.unbind("focus",this._showDatepicker),b.trigger&&b.trigger.remove();var e=this._get(b,"showOn");(e=="focus"||e=="both")&&a.focus(this._showDatepicker);if(e=="button"||e=="both"){var f=this._get(b,"buttonText"),g=this._get(b,"buttonImage");b.trigger=$(this._get(b,"buttonImageOnly")?$("").addClass(this._triggerClass).attr({src:g,alt:f,title:f}):$('').addClass(this._triggerClass).html(g==""?f:$("").attr({src:g,alt:f,title:f}))),a[d?"before":"after"](b.trigger),b.trigger.click(function(){return $.datepicker._datepickerShowing&&$.datepicker._lastInput==a[0]?$.datepicker._hideDatepicker():$.datepicker._datepickerShowing&&$.datepicker._lastInput!=a[0]?($.datepicker._hideDatepicker(),$.datepicker._showDatepicker(a[0])):$.datepicker._showDatepicker(a[0]),!1})}},_autoSize:function(a){if(this._get(a,"autoSize")&&!a.inline){var b=new Date(2009,11,20),c=this._get(a,"dateFormat");if(c.match(/[DM]/)){var d=function(a){var b=0,c=0;for(var d=0;db&&(b=a[d].length,c=d);return c};b.setMonth(d(this._get(a,c.match(/MM/)?"monthNames":"monthNamesShort"))),b.setDate(d(this._get(a,c.match(/DD/)?"dayNames":"dayNamesShort"))+20-b.getDay())}a.input.attr("size",this._formatDate(a,b).length)}},_inlineDatepicker:function(a,b){var c=$(a);if(c.hasClass(this.markerClassName))return;c.addClass(this.markerClassName).append(b.dpDiv).bind("setData.datepicker",function(a,c,d){b.settings[c]=d}).bind("getData.datepicker",function(a,c){return this._get(b,c)}),$.data(a,PROP_NAME,b),this._setDate(b,this._getDefaultDate(b),!0),this._updateDatepicker(b),this._updateAlternate(b),b.settings.disabled&&this._disableDatepicker(a),b.dpDiv.css("display","block")},_dialogDatepicker:function(a,b,c,d,e){var f=this._dialogInst;if(!f){this.uuid+=1;var g="dp"+this.uuid;this._dialogInput=$(''),this._dialogInput.keydown(this._doKeyDown),$("body").append(this._dialogInput),f=this._dialogInst=this._newInst(this._dialogInput,!1),f.settings={},$.data(this._dialogInput[0],PROP_NAME,f)}extendRemove(f.settings,d||{}),b=b&&b.constructor==Date?this._formatDate(f,b):b,this._dialogInput.val(b),this._pos=e?e.length?e:[e.pageX,e.pageY]:null;if(!this._pos){var h=document.documentElement.clientWidth,i=document.documentElement.clientHeight,j=document.documentElement.scrollLeft||document.body.scrollLeft,k=document.documentElement.scrollTop||document.body.scrollTop;this._pos=[h/2-100+j,i/2-150+k]}return this._dialogInput.css("left",this._pos[0]+20+"px").css("top",this._pos[1]+"px"),f.settings.onSelect=c,this._inDialog=!0,this.dpDiv.addClass(this._dialogClass),this._showDatepicker(this._dialogInput[0]),$.blockUI&&$.blockUI(this.dpDiv),$.data(this._dialogInput[0],PROP_NAME,f),this},_destroyDatepicker:function(a){var b=$(a),c=$.data(a,PROP_NAME);if(!b.hasClass(this.markerClassName))return;var d=a.nodeName.toLowerCase();$.removeData(a,PROP_NAME),d=="input"?(c.append.remove(),c.trigger.remove(),b.removeClass(this.markerClassName).unbind("focus",this._showDatepicker).unbind("keydown",this._doKeyDown).unbind("keypress",this._doKeyPress).unbind("keyup",this._doKeyUp)):(d=="div"||d=="span")&&b.removeClass(this.markerClassName).empty()},_enableDatepicker:function(a){var b=$(a),c=$.data(a,PROP_NAME);if(!b.hasClass(this.markerClassName))return;var d=a.nodeName.toLowerCase();if(d=="input")a.disabled=!1,c.trigger.filter("button").each(function(){this.disabled=!1}).end().filter("img").css({opacity:"1.0",cursor:""});else if(d=="div"||d=="span"){var e=b.children("."+this._inlineClass);e.children().removeClass("ui-state-disabled"),e.find("select.ui-datepicker-month, select.ui-datepicker-year").removeAttr("disabled")}this._disabledInputs=$.map(this._disabledInputs,function(b){return b==a?null:b})},_disableDatepicker:function(a){var b=$(a),c=$.data(a,PROP_NAME);if(!b.hasClass(this.markerClassName))return;var d=a.nodeName.toLowerCase();if(d=="input")a.disabled=!0,c.trigger.filter("button").each(function(){this.disabled=!0}).end().filter("img").css({opacity:"0.5",cursor:"default"});else if(d=="div"||d=="span"){var e=b.children("."+this._inlineClass);e.children().addClass("ui-state-disabled"),e.find("select.ui-datepicker-month, select.ui-datepicker-year").attr("disabled","disabled")}this._disabledInputs=$.map(this._disabledInputs,function(b){return b==a?null:b}),this._disabledInputs[this._disabledInputs.length]=a},_isDisabledDatepicker:function(a){if(!a)return!1;for(var b=0;b-1}},_doKeyUp:function(a){var b=$.datepicker._getInst(a.target);if(b.input.val()!=b.lastVal)try{var c=$.datepicker.parseDate($.datepicker._get(b,"dateFormat"),b.input?b.input.val():null,$.datepicker._getFormatConfig(b));c&&($.datepicker._setDateFromField(b),$.datepicker._updateAlternate(b),$.datepicker._updateDatepicker(b))}catch(d){$.datepicker.log(d)}return!0},_showDatepicker:function(a){a=a.target||a,a.nodeName.toLowerCase()!="input"&&(a=$("input",a.parentNode)[0]);if($.datepicker._isDisabledDatepicker(a)||$.datepicker._lastInput==a)return;var b=$.datepicker._getInst(a);$.datepicker._curInst&&$.datepicker._curInst!=b&&($.datepicker._curInst.dpDiv.stop(!0,!0),b&&$.datepicker._datepickerShowing&&$.datepicker._hideDatepicker($.datepicker._curInst.input[0]));var c=$.datepicker._get(b,"beforeShow"),d=c?c.apply(a,[a,b]):{};if(d===!1)return;extendRemove(b.settings,d),b.lastVal=null,$.datepicker._lastInput=a,$.datepicker._setDateFromField(b),$.datepicker._inDialog&&(a.value=""),$.datepicker._pos||($.datepicker._pos=$.datepicker._findPos(a),$.datepicker._pos[1]+=a.offsetHeight);var e=!1;$(a).parents().each(function(){return e|=$(this).css("position")=="fixed",!e}),e&&$.browser.opera&&($.datepicker._pos[0]-=document.documentElement.scrollLeft,$.datepicker._pos[1]-=document.documentElement.scrollTop);var f={left:$.datepicker._pos[0],top:$.datepicker._pos[1]};$.datepicker._pos=null,b.dpDiv.empty(),b.dpDiv.css({position:"absolute",display:"block",top:"-1000px"}),$.datepicker._updateDatepicker(b),f=$.datepicker._checkOffset(b,f,e),b.dpDiv.css({position:$.datepicker._inDialog&&$.blockUI?"static":e?"fixed":"absolute",display:"none",left:f.left+"px",top:f.top+"px"});if(!b.inline){var g=$.datepicker._get(b,"showAnim"),h=$.datepicker._get(b,"duration"),i=function(){var a=b.dpDiv.find("iframe.ui-datepicker-cover");if(!!a.length){var c=$.datepicker._getBorders(b.dpDiv);a.css({left:-c[0],top:-c[1],width:b.dpDiv.outerWidth(),height:b.dpDiv.outerHeight()})}};b.dpDiv.zIndex($(a).zIndex()+1),$.datepicker._datepickerShowing=!0,$.effects&&$.effects[g]?b.dpDiv.show(g,$.datepicker._get(b,"showOptions"),h,i):b.dpDiv[g||"show"](g?h:null,i),(!g||!h)&&i(),b.input.is(":visible")&&!b.input.is(":disabled")&&b.input.focus(),$.datepicker._curInst=b}},_updateDatepicker:function(a){var b=this;b.maxRows=4;var c=$.datepicker._getBorders(a.dpDiv);instActive=a,a.dpDiv.empty().append(this._generateHTML(a)),this._attachHandlers(a);var d=a.dpDiv.find("iframe.ui-datepicker-cover");!d.length||d.css({left:-c[0],top:-c[1],width:a.dpDiv.outerWidth(),height:a.dpDiv.outerHeight()}),a.dpDiv.find("."+this._dayOverClass+" a").mouseover();var e=this._getNumberOfMonths(a),f=e[1],g=17;a.dpDiv.removeClass("ui-datepicker-multi-2 ui-datepicker-multi-3 ui-datepicker-multi-4").width(""),f>1&&a.dpDiv.addClass("ui-datepicker-multi-"+f).css("width",g*f+"em"),a.dpDiv[(e[0]!=1||e[1]!=1?"add":"remove")+"Class"]("ui-datepicker-multi"),a.dpDiv[(this._get(a,"isRTL")?"add":"remove")+"Class"]("ui-datepicker-rtl"),a==$.datepicker._curInst&&$.datepicker._datepickerShowing&&a.input&&a.input.is(":visible")&&!a.input.is(":disabled")&&a.input[0]!=document.activeElement&&a.input.focus();if(a.yearshtml){var h=a.yearshtml;setTimeout(function(){h===a.yearshtml&&a.yearshtml&&a.dpDiv.find("select.ui-datepicker-year:first").replaceWith(a.yearshtml),h=a.yearshtml=null},0)}},_getBorders:function(a){var b=function(a){return{thin:1,medium:2,thick:3}[a]||a};return[parseFloat(b(a.css("border-left-width"))),parseFloat(b(a.css("border-top-width")))]},_checkOffset:function(a,b,c){var d=a.dpDiv.outerWidth(),e=a.dpDiv.outerHeight(),f=a.input?a.input.outerWidth():0,g=a.input?a.input.outerHeight():0,h=document.documentElement.clientWidth+(c?0:$(document).scrollLeft()),i=document.documentElement.clientHeight+(c?0:$(document).scrollTop());return b.left-=this._get(a,"isRTL")?d-f:0,b.left-=c&&b.left==a.input.offset().left?$(document).scrollLeft():0,b.top-=c&&b.top==a.input.offset().top+g?$(document).scrollTop():0,b.left-=Math.min(b.left,b.left+d>h&&h>d?Math.abs(b.left+d-h):0),b.top-=Math.min(b.top,b.top+e>i&&i>e?Math.abs(e+g):0),b},_findPos:function(a){var b=this._getInst(a),c=this._get(b,"isRTL");while(a&&(a.type=="hidden"||a.nodeType!=1||$.expr.filters.hidden(a)))a=a[c?"previousSibling":"nextSibling"];var d=$(a).offset();return[d.left,d.top]},_hideDatepicker:function(a){var b=this._curInst;if(!b||a&&b!=$.data(a,PROP_NAME))return;if(this._datepickerShowing){var c=this._get(b,"showAnim"),d=this._get(b,"duration"),e=function(){$.datepicker._tidyDialog(b)};$.effects&&$.effects[c]?b.dpDiv.hide(c,$.datepicker._get(b,"showOptions"),d,e):b.dpDiv[c=="slideDown"?"slideUp":c=="fadeIn"?"fadeOut":"hide"](c?d:null,e),c||e(),this._datepickerShowing=!1;var f=this._get(b,"onClose");f&&f.apply(b.input?b.input[0]:null,[b.input?b.input.val():"",b]),this._lastInput=null,this._inDialog&&(this._dialogInput.css({position:"absolute",left:"0",top:"-100px"}),$.blockUI&&($.unblockUI(),$("body").append(this.dpDiv))),this._inDialog=!1}},_tidyDialog:function(a){a.dpDiv.removeClass(this._dialogClass).unbind(".ui-datepicker-calendar")},_checkExternalClick:function(a){if(!$.datepicker._curInst)return;var b=$(a.target),c=$.datepicker._getInst(b[0]);(b[0].id!=$.datepicker._mainDivId&&b.parents("#"+$.datepicker._mainDivId).length==0&&!b.hasClass($.datepicker.markerClassName)&&!b.closest("."+$.datepicker._triggerClass).length&&$.datepicker._datepickerShowing&&(!$.datepicker._inDialog||!$.blockUI)||b.hasClass($.datepicker.markerClassName)&&$.datepicker._curInst!=c)&&$.datepicker._hideDatepicker()},_adjustDate:function(a,b,c){var d=$(a),e=this._getInst(d[0]);if(this._isDisabledDatepicker(d[0]))return;this._adjustInstDate(e,b+(c=="M"?this._get(e,"showCurrentAtPos"):0),c),this._updateDatepicker(e)},_gotoToday:function(a){var b=$(a),c=this._getInst(b[0]);if(this._get(c,"gotoCurrent")&&c.currentDay)c.selectedDay=c.currentDay,c.drawMonth=c.selectedMonth=c.currentMonth,c.drawYear=c.selectedYear=c.currentYear;else{var d=new Date;c.selectedDay=d.getDate(),c.drawMonth=c.selectedMonth=d.getMonth(),c.drawYear=c.selectedYear=d.getFullYear()}this._notifyChange(c),this._adjustDate(b)},_selectMonthYear:function(a,b,c){var d=$(a),e=this._getInst(d[0]);e["selected"+(c=="M"?"Month":"Year")]=e["draw"+(c=="M"?"Month":"Year")]=parseInt(b.options[b.selectedIndex].value,10),this._notifyChange(e),this._adjustDate(d)},_selectDay:function(a,b,c,d){var e=$(a);if($(d).hasClass(this._unselectableClass)||this._isDisabledDatepicker(e[0]))return;var f=this._getInst(e[0]);f.selectedDay=f.currentDay=$("a",d).html(),f.selectedMonth=f.currentMonth=b,f.selectedYear=f.currentYear=c,this._selectDate(a,this._formatDate(f,f.currentDay,f.currentMonth,f.currentYear))},_clearDate:function(a){var b=$(a),c=this._getInst(b[0]);this._selectDate(b,"")},_selectDate:function(a,b){var c=$(a),d=this._getInst(c[0]);b=b!=null?b:this._formatDate(d),d.input&&d.input.val(b),this._updateAlternate(d);var e=this._get(d,"onSelect");e?e.apply(d.input?d.input[0]:null,[b,d]):d.input&&d.input.trigger("change"),d.inline?this._updateDatepicker(d):(this._hideDatepicker(),this._lastInput=d.input[0],typeof d.input[0]!="object"&&d.input.focus(),this._lastInput=null)},_updateAlternate:function(a){var b=this._get(a,"altField");if(b){var c=this._get(a,"altFormat")||this._get(a,"dateFormat"),d=this._getDate(a),e=this.formatDate(c,d,this._getFormatConfig(a));$(b).each(function(){$(this).val(e)})}},noWeekends:function(a){var b=a.getDay();return[b>0&&b<6,""]},iso8601Week:function(a){var b=new Date(a.getTime());b.setDate(b.getDate()+4-(b.getDay()||7));var c=b.getTime();return b.setMonth(0),b.setDate(1),Math.floor(Math.round((c-b)/864e5)/7)+1},parseDate:function(a,b,c){if(a==null||b==null)throw"Invalid arguments";b=typeof b=="object"?b.toString():b+"";if(b=="")return null;var d=(c?c.shortYearCutoff:null)||this._defaults.shortYearCutoff;d=typeof d!="string"?d:(new Date).getFullYear()%100+parseInt(d,10);var e=(c?c.dayNamesShort:null)||this._defaults.dayNamesShort,f=(c?c.dayNames:null)||this._defaults.dayNames,g=(c?c.monthNamesShort:null)||this._defaults.monthNamesShort,h=(c?c.monthNames:null)||this._defaults.monthNames,i=-1,j=-1,k=-1,l=-1,m=!1,n=function(b){var c=s+1-1){j=1,k=l;do{var u=this._getDaysInMonth(i,j-1);if(k<=u)break;j++,k-=u}while(!0)}var t=this._daylightSavingAdjust(new Date(i,j-1,k));if(t.getFullYear()!=i||t.getMonth()+1!=j||t.getDate()!=k)throw"Invalid date";return t},ATOM:"yy-mm-dd",COOKIE:"D, dd M yy",ISO_8601:"yy-mm-dd",RFC_822:"D, d M y",RFC_850:"DD, dd-M-y",RFC_1036:"D, d M y",RFC_1123:"D, d M yy",RFC_2822:"D, d M yy",RSS:"D, d M y",TICKS:"!",TIMESTAMP:"@",W3C:"yy-mm-dd",_ticksTo1970:(718685+Math.floor(492.5)-Math.floor(19.7)+Math.floor(4.925))*24*60*60*1e7,formatDate:function(a,b,c){if(!b)return"";var d=(c?c.dayNamesShort:null)||this._defaults.dayNamesShort,e=(c?c.dayNames:null)||this._defaults.dayNames,f=(c?c.monthNamesShort:null)||this._defaults.monthNamesShort,g=(c?c.monthNames:null)||this._defaults.monthNames,h=function(b){var c=m+112?a.getHours()+2:0),a):null},_setDate:function(a,b,c){var d=!b,e=a.selectedMonth,f=a.selectedYear,g=this._restrictMinMax(a,this._determineDate(a,b,new Date));a.selectedDay=a.currentDay=g.getDate(),a.drawMonth=a.selectedMonth=a.currentMonth=g.getMonth(),a.drawYear=a.selectedYear=a.currentYear=g.getFullYear(),(e!=a.selectedMonth||f!=a.selectedYear)&&!c&&this._notifyChange(a),this._adjustInstDate(a),a.input&&a.input.val(d?"":this._formatDate(a))},_getDate:function(a){var b=!a.currentYear||a.input&&a.input.val()==""?null:this._daylightSavingAdjust(new Date(a.currentYear,a.currentMonth,a.currentDay));return b},_attachHandlers:function(a){var b=this._get(a,"stepMonths"),c="#"+a.id.replace(/\\\\/g,"\\");a.dpDiv.find("[data-handler]").map(function(){var a={prev:function(){window["DP_jQuery_"+dpuuid].datepicker._adjustDate(c,-b,"M")},next:function(){window["DP_jQuery_"+dpuuid].datepicker._adjustDate(c,+b,"M")},hide:function(){window["DP_jQuery_"+dpuuid].datepicker._hideDatepicker()},today:function(){window["DP_jQuery_"+dpuuid].datepicker._gotoToday(c)},selectDay:function(){return window["DP_jQuery_"+dpuuid].datepicker._selectDay(c,+this.getAttribute("data-month"),+this.getAttribute("data-year"),this),!1},selectMonth:function(){return window["DP_jQuery_"+dpuuid].datepicker._selectMonthYear(c,this,"M"),!1},selectYear:function(){return window["DP_jQuery_"+dpuuid].datepicker._selectMonthYear(c,this,"Y"),!1}};$(this).bind(this.getAttribute("data-event"),a[this.getAttribute("data-handler")])})},_generateHTML:function(a){var b=new Date;b=this._daylightSavingAdjust(new Date(b.getFullYear(),b.getMonth(),b.getDate()));var c=this._get(a,"isRTL"),d=this._get(a,"showButtonPanel"),e=this._get(a,"hideIfNoPrevNext"),f=this._get(a,"navigationAsDateFormat"),g=this._getNumberOfMonths(a),h=this._get(a,"showCurrentAtPos"),i=this._get(a,"stepMonths"),j=g[0]!=1||g[1]!=1,k=this._daylightSavingAdjust(a.currentDay?new Date(a.currentYear,a.currentMonth,a.currentDay):new Date(9999,9,9)),l=this._getMinMaxDate(a,"min"),m=this._getMinMaxDate(a,"max"),n=a.drawMonth-h,o=a.drawYear;n<0&&(n+=12,o--);if(m){var p=this._daylightSavingAdjust(new Date(m.getFullYear(),m.getMonth()-g[0]*g[1]+1,m.getDate()));p=l&&pp)n--,n<0&&(n=11,o--)}a.drawMonth=n,a.drawYear=o;var q=this._get(a,"prevText");q=f?this.formatDate(q,this._daylightSavingAdjust(new Date(o,n-i,1)),this._getFormatConfig(a)):q;var r=this._canAdjustMonth(a,-1,o,n)?''+q+"":e?"":''+q+"",s=this._get(a,"nextText");s=f?this.formatDate(s,this._daylightSavingAdjust(new Date(o,n+i,1)),this._getFormatConfig(a)):s;var t=this._canAdjustMonth(a,1,o,n)?''+s+"":e?"":''+s+"",u=this._get(a,"currentText"),v=this._get(a,"gotoCurrent")&&a.currentDay?k:b;u=f?this.formatDate(u,v,this._getFormatConfig(a)):u;var w=a.inline?"":'",x=d?'
      '+(c?w:"")+(this._isInRange(a,v)?'":"")+(c?"":w)+"
      ":"",y=parseInt(this._get(a,"firstDay"),10);y=isNaN(y)?0:y;var z=this._get(a,"showWeek"),A=this._get(a,"dayNames"),B=this._get(a,"dayNamesShort"),C=this._get(a,"dayNamesMin"),D=this._get(a,"monthNames"),E=this._get(a,"monthNamesShort"),F=this._get(a,"beforeShowDay"),G=this._get(a,"showOtherMonths"),H=this._get(a,"selectOtherMonths"),I=this._get(a,"calculateWeek")||this.iso8601Week,J=this._getDefaultDate(a),K="";for(var L=0;L1)switch(N){case 0:Q+=" ui-datepicker-group-first",P=" ui-corner-"+(c?"right":"left");break;case g[1]-1:Q+=" ui-datepicker-group-last",P=" ui-corner-"+(c?"left":"right");break;default:Q+=" ui-datepicker-group-middle",P=""}Q+='">'}Q+='
      '+(/all|left/.test(P)&&L==0?c?t:r:"")+(/all|right/.test(P)&&L==0?c?r:t:"")+this._generateMonthYearHeader(a,n,o,l,m,L>0||N>0,D,E)+'
      '+"";var R=z?'":"";for(var S=0;S<7;S++){var T=(S+y)%7;R+="=5?' class="ui-datepicker-week-end"':"")+">"+''+C[T]+""}Q+=R+"";var U=this._getDaysInMonth(o,n);o==a.selectedYear&&n==a.selectedMonth&&(a.selectedDay=Math.min(a.selectedDay,U));var V=(this._getFirstDayOfMonth(o,n)-y+7)%7,W=Math.ceil((V+U)/7),X=j?this.maxRows>W?this.maxRows:W:W;this.maxRows=X;var Y=this._daylightSavingAdjust(new Date(o,n,1-V));for(var Z=0;Z";var _=z?'":"";for(var S=0;S<7;S++){var ba=F?F.apply(a.input?a.input[0]:null,[Y]):[!0,""],bb=Y.getMonth()!=n,bc=bb&&!H||!ba[0]||l&&Ym;_+='",Y.setDate(Y.getDate()+1),Y=this._daylightSavingAdjust(Y)}Q+=_+""}n++,n>11&&(n=0,o++),Q+="
      '+this._get(a,"weekHeader")+"
      '+this._get(a,"calculateWeek")(Y)+""+(bb&&!G?" ":bc?''+Y.getDate()+"":''+Y.getDate()+"")+"
      "+(j?""+(g[0]>0&&N==g[1]-1?'
      ':""):""),M+=Q}K+=M}return K+=x+($.browser.msie&&parseInt($.browser.version,10)<7&&!a.inline?'':""),a._keyEvent=!1,K},_generateMonthYearHeader:function(a,b,c,d,e,f,g,h){var i=this._get(a,"changeMonth"),j=this._get(a,"changeYear"),k=this._get(a,"showMonthAfterYear"),l='
      ',m="";if(f||!i)m+=''+g[b]+"";else{var n=d&&d.getFullYear()==c,o=e&&e.getFullYear()==c;m+='"}k||(l+=m+(f||!i||!j?" ":""));if(!a.yearshtml){a.yearshtml="";if(f||!j)l+=''+c+"";else{var q=this._get(a,"yearRange").split(":"),r=(new Date).getFullYear(),s=function(a){var b=a.match(/c[+-].*/)?c+parseInt(a.substring(1),10):a.match(/[+-].*/)?r+parseInt(a,10):parseInt(a,10);return isNaN(b)?r:b},t=s(q[0]),u=Math.max(t,s(q[1]||""));t=d?Math.max(t,d.getFullYear()):t,u=e?Math.min(u,e.getFullYear()):u,a.yearshtml+='",l+=a.yearshtml,a.yearshtml=null}}return l+=this._get(a,"yearSuffix"),k&&(l+=(f||!i||!j?" ":"")+m),l+="
      ",l},_adjustInstDate:function(a,b,c){var d=a.drawYear+(c=="Y"?b:0),e=a.drawMonth+(c=="M"?b:0),f=Math.min(a.selectedDay,this._getDaysInMonth(d,e))+(c=="D"?b:0),g=this._restrictMinMax(a,this._daylightSavingAdjust(new Date(d,e,f)));a.selectedDay=g.getDate(),a.drawMonth=a.selectedMonth=g.getMonth(),a.drawYear=a.selectedYear=g.getFullYear(),(c=="M"||c=="Y")&&this._notifyChange(a)},_restrictMinMax:function(a,b){var c=this._getMinMaxDate(a,"min"),d=this._getMinMaxDate(a,"max"),e=c&&bd?d:e,e},_notifyChange:function(a){var b=this._get(a,"onChangeMonthYear");b&&b.apply(a.input?a.input[0]:null,[a.selectedYear,a.selectedMonth+1,a])},_getNumberOfMonths:function(a){var b=this._get(a,"numberOfMonths");return b==null?[1,1]:typeof b=="number"?[1,b]:b},_getMinMaxDate:function(a,b){return this._determineDate(a,this._get(a,b+"Date"),null)},_getDaysInMonth:function(a,b){return 32-this._daylightSavingAdjust(new Date(a,b,32)).getDate()},_getFirstDayOfMonth:function(a,b){return(new Date(a,b,1)).getDay()},_canAdjustMonth:function(a,b,c,d){var e=this._getNumberOfMonths(a),f=this._daylightSavingAdjust(new Date(c,d+(b<0?b:e[0]*e[1]),1));return b<0&&f.setDate(this._getDaysInMonth(f.getFullYear(),f.getMonth())),this._isInRange(a,f)},_isInRange:function(a,b){var c=this._getMinMaxDate(a,"min"),d=this._getMinMaxDate(a,"max");return(!c||b.getTime()>=c.getTime())&&(!d||b.getTime()<=d.getTime())},_getFormatConfig:function(a){var b=this._get(a,"shortYearCutoff");return b=typeof b!="string"?b:(new Date).getFullYear()%100+parseInt(b,10),{shortYearCutoff:b,dayNamesShort:this._get(a,"dayNamesShort"),dayNames:this._get(a,"dayNames"),monthNamesShort:this._get(a,"monthNamesShort"),monthNames:this._get(a,"monthNames")}},_formatDate:function(a,b,c,d){b||(a.currentDay=a.selectedDay,a.currentMonth=a.selectedMonth,a.currentYear=a.selectedYear);var e=b?typeof b=="object"?b:this._daylightSavingAdjust(new Date(d,c,b)):this._daylightSavingAdjust(new Date(a.currentYear,a.currentMonth,a.currentDay));return this.formatDate(this._get(a,"dateFormat"),e,this._getFormatConfig(a))}}),$.fn.datepicker=function(a){if(!this.length)return this;$.datepicker.initialized||($(document).mousedown($.datepicker._checkExternalClick).find("body").append($.datepicker.dpDiv),$.datepicker.initialized=!0);var b=Array.prototype.slice.call(arguments,1);return typeof a!="string"||a!="isDisabled"&&a!="getDate"&&a!="widget"?a=="option"&&arguments.length==2&&typeof arguments[1]=="string"?$.datepicker["_"+a+"Datepicker"].apply($.datepicker,[this[0]].concat(b)):this.each(function(){typeof a=="string"?$.datepicker["_"+a+"Datepicker"].apply($.datepicker,[this].concat(b)):$.datepicker._attachDatepicker(this,a)}):$.datepicker["_"+a+"Datepicker"].apply($.datepicker,[this[0]].concat(b))},$.datepicker=new Datepicker,$.datepicker.initialized=!1,$.datepicker.uuid=(new Date).getTime(),$.datepicker.version="1.8.23",window["DP_jQuery_"+dpuuid]=$}(jQuery),function(a,b){var c="ui-dialog ui-widget ui-widget-content ui-corner-all ",d={buttons:!0,height:!0,maxHeight:!0,maxWidth:!0,minHeight:!0,minWidth:!0,width:!0},e={maxHeight:!0,maxWidth:!0,minHeight:!0,minWidth:!0};a.widget("ui.dialog",{options:{autoOpen:!0,buttons:{},closeOnEscape:!0,closeText:"close",dialogClass:"",draggable:!0,hide:null,height:"auto",maxHeight:!1,maxWidth:!1,minHeight:150,minWidth:150,modal:!1,position:{my:"center",at:"center",collision:"fit",using:function(b){var c=a(this).css(b).offset().top;c<0&&a(this).css("top",b.top-c)}},resizable:!0,show:null,stack:!0,title:"",width:300,zIndex:1e3},_create:function(){this.originalTitle=this.element.attr("title"),typeof this.originalTitle!="string"&&(this.originalTitle=""),this.options.title=this.options.title||this.originalTitle;var b=this,d=b.options,e=d.title||" ",f=a.ui.dialog.getTitleId(b.element),g=(b.uiDialog=a("
      ")).appendTo(document.body).hide().addClass(c+d.dialogClass).css({zIndex:d.zIndex}).attr("tabIndex",-1).css("outline",0).keydown(function(c){d.closeOnEscape&&!c.isDefaultPrevented()&&c.keyCode&&c.keyCode===a.ui.keyCode.ESCAPE&&(b.close(c),c.preventDefault())}).attr({role:"dialog","aria-labelledby":f}).mousedown(function(a){b.moveToTop(!1,a)}),h=b.element.show().removeAttr("title").addClass("ui-dialog-content ui-widget-content").appendTo(g),i=(b.uiDialogTitlebar=a("
      ")).addClass("ui-dialog-titlebar ui-widget-header ui-corner-all ui-helper-clearfix").prependTo(g),j=a('').addClass("ui-dialog-titlebar-close ui-corner-all").attr("role","button").hover(function(){j.addClass("ui-state-hover")},function(){j.removeClass("ui-state-hover")}).focus(function(){j.addClass("ui-state-focus")}).blur(function(){j.removeClass("ui-state-focus")}).click(function(a){return b.close(a),!1}).appendTo(i),k=(b.uiDialogTitlebarCloseText=a("")).addClass("ui-icon ui-icon-closethick").text(d.closeText).appendTo(j),l=a("").addClass("ui-dialog-title").attr("id",f).html(e).prependTo(i);a.isFunction(d.beforeclose)&&!a.isFunction(d.beforeClose)&&(d.beforeClose=d.beforeclose),i.find("*").add(i).disableSelection(),d.draggable&&a.fn.draggable&&b._makeDraggable(),d.resizable&&a.fn.resizable&&b._makeResizable(),b._createButtons(d.buttons),b._isOpen=!1,a.fn.bgiframe&&g.bgiframe()},_init:function(){this.options.autoOpen&&this.open()},destroy:function(){var a=this;return a.overlay&&a.overlay.destroy(),a.uiDialog.hide(),a.element.unbind(".dialog").removeData("dialog").removeClass("ui-dialog-content ui-widget-content").hide().appendTo("body"),a.uiDialog.remove(),a.originalTitle&&a.element.attr("title",a.originalTitle),a},widget:function(){return this.uiDialog},close:function(b){var c=this,d,e;if(!1===c._trigger("beforeClose",b))return;return c.overlay&&c.overlay.destroy(),c.uiDialog.unbind("keypress.ui-dialog"),c._isOpen=!1,c.options.hide?c.uiDialog.hide(c.options.hide,function(){c._trigger("close",b)}):(c.uiDialog.hide(),c._trigger("close",b)),a.ui.dialog.overlay.resize(),c.options.modal&&(d=0,a(".ui-dialog").each(function(){this!==c.uiDialog[0]&&(e=a(this).css("z-index"),isNaN(e)||(d=Math.max(d,e)))}),a.ui.dialog.maxZ=d),c},isOpen:function(){return this._isOpen},moveToTop:function(b,c){var d=this,e=d.options,f;return e.modal&&!b||!e.stack&&!e.modal?d._trigger("focus",c):(e.zIndex>a.ui.dialog.maxZ&&(a.ui.dialog.maxZ=e.zIndex),d.overlay&&(a.ui.dialog.maxZ+=1,d.overlay.$el.css("z-index",a.ui.dialog.overlay.maxZ=a.ui.dialog.maxZ)),f={scrollTop:d.element.scrollTop(),scrollLeft:d.element.scrollLeft()},a.ui.dialog.maxZ+=1,d.uiDialog.css("z-index",a.ui.dialog.maxZ),d.element.attr(f),d._trigger("focus",c),d)},open:function(){if(this._isOpen)return;var b=this,c=b.options,d=b.uiDialog;return b.overlay=c.modal?new a.ui.dialog.overlay(b):null,b._size(),b._position(c.position),d.show(c.show),b.moveToTop(!0),c.modal&&d.bind("keydown.ui-dialog",function(b){if(b.keyCode!==a.ui.keyCode.TAB)return;var c=a(":tabbable",this),d=c.filter(":first"),e=c.filter(":last");if(b.target===e[0]&&!b.shiftKey)return d.focus(1),!1;if(b.target===d[0]&&b.shiftKey)return e.focus(1),!1}),a(b.element.find(":tabbable").get().concat(d.find(".ui-dialog-buttonpane :tabbable").get().concat(d.get()))).eq(0).focus(),b._isOpen=!0,b._trigger("open"),b},_createButtons:function(b){var c=this,d=!1,e=a("
      ").addClass("ui-dialog-buttonpane ui-widget-content ui-helper-clearfix"),f=a("
      ").addClass("ui-dialog-buttonset").appendTo(e);c.uiDialog.find(".ui-dialog-buttonpane").remove(),typeof b=="object"&&b!==null&&a.each(b,function(){return!(d=!0)}),d&&(a.each(b,function(b,d){d=a.isFunction(d)?{click:d,text:b}:d;var e=a('').click(function(){d.click.apply(c.element[0],arguments)}).appendTo(f);a.each(d,function(a,b){if(a==="click")return;a in e?e[a](b):e.attr(a,b)}),a.fn.button&&e.button()}),e.appendTo(c.uiDialog))},_makeDraggable:function(){function f(a){return{position:a.position,offset:a.offset}}var b=this,c=b.options,d=a(document),e;b.uiDialog.draggable({cancel:".ui-dialog-content, .ui-dialog-titlebar-close",handle:".ui-dialog-titlebar",containment:"document",start:function(d,g){e=c.height==="auto"?"auto":a(this).height(),a(this).height(a(this).height()).addClass("ui-dialog-dragging"),b._trigger("dragStart",d,f(g))},drag:function(a,c){b._trigger("drag",a,f(c))},stop:function(g,h){c.position=[h.position.left-d.scrollLeft(),h.position.top-d.scrollTop()],a(this).removeClass("ui-dialog-dragging").height(e),b._trigger("dragStop",g,f(h)),a.ui.dialog.overlay.resize()}})},_makeResizable:function(c){function h(a){return{originalPosition:a.originalPosition,originalSize:a.originalSize,position:a.position,size:a.size}}c=c===b?this.options.resizable:c;var d=this,e=d.options,f=d.uiDialog.css("position"),g=typeof c=="string"?c:"n,e,s,w,se,sw,ne,nw";d.uiDialog.resizable({cancel:".ui-dialog-content",containment:"document",alsoResize:d.element,maxWidth:e.maxWidth,maxHeight:e.maxHeight,minWidth:e.minWidth,minHeight:d._minHeight(),handles:g,start:function(b,c){a(this).addClass("ui-dialog-resizing"),d._trigger("resizeStart",b,h(c))},resize:function(a,b){d._trigger("resize",a,h(b))},stop:function(b,c){a(this).removeClass("ui-dialog-resizing"),e.height=a(this).height(),e.width=a(this).width(),d._trigger("resizeStop",b,h(c)),a.ui.dialog.overlay.resize()}}).css("position",f).find(".ui-resizable-se").addClass("ui-icon ui-icon-grip-diagonal-se")},_minHeight:function(){var a=this.options;return a.height==="auto"?a.minHeight:Math.min(a.minHeight,a.height)},_position:function(b){var c=[],d=[0,0],e;if(b){if(typeof b=="string"||typeof b=="object"&&"0"in b)c=b.split?b.split(" "):[b[0],b[1]],c.length===1&&(c[1]=c[0]),a.each(["left","top"],function(a,b){+c[a]===c[a]&&(d[a]=c[a],c[a]=b)}),b={my:c.join(" "),at:c.join(" "),offset:d.join(" ")};b=a.extend({},a.ui.dialog.prototype.options.position,b)}else b=a.ui.dialog.prototype.options.position;e=this.uiDialog.is(":visible"),e||this.uiDialog.show(),this.uiDialog.css({top:0,left:0}).position(a.extend({of:window},b)),e||this.uiDialog.hide()},_setOptions:function(b){var c=this,f={},g=!1;a.each(b,function(a,b){c._setOption(a,b),a in d&&(g=!0),a in e&&(f[a]=b)}),g&&this._size(),this.uiDialog.is(":data(resizable)")&&this.uiDialog.resizable("option",f)},_setOption:function(b,d){var e=this,f=e.uiDialog;switch(b){case"beforeclose":b="beforeClose";break;case"buttons":e._createButtons(d);break;case"closeText":e.uiDialogTitlebarCloseText.text(""+d);break;case"dialogClass":f.removeClass(e.options.dialogClass).addClass(c+d);break;case"disabled":d?f.addClass("ui-dialog-disabled"):f.removeClass("ui-dialog-disabled");break;case"draggable":var g=f.is(":data(draggable)");g&&!d&&f.draggable("destroy"),!g&&d&&e._makeDraggable();break;case"position":e._position(d);break;case"resizable":var h=f.is(":data(resizable)");h&&!d&&f.resizable("destroy"),h&&typeof d=="string"&&f.resizable("option","handles",d),!h&&d!==!1&&e._makeResizable(d);break;case"title":a(".ui-dialog-title",e.uiDialogTitlebar).html(""+(d||" "))}a.Widget.prototype._setOption.apply(e,arguments)},_size:function(){var b=this.options,c,d,e=this.uiDialog.is(":visible");this.element.show().css({width:"auto",minHeight:0,height:0}),b.minWidth>b.width&&(b.width=b.minWidth),c=this.uiDialog.css({height:"auto",width:b.width}).height(),d=Math.max(0,b.minHeight-c);if(b.height==="auto")if(a.support.minHeight)this.element.css({minHeight:d,height:"auto"});else{this.uiDialog.show();var f=this.element.css("height","auto").height();e||this.uiDialog.hide(),this.element.height(Math.max(f,d))}else this.element.height(Math.max(b.height-c,0));this.uiDialog.is(":data(resizable)")&&this.uiDialog.resizable("option","minHeight",this._minHeight())}}),a.extend(a.ui.dialog,{version:"1.8.23",uuid:0,maxZ:0,getTitleId:function(a){var b=a.attr("id");return b||(this.uuid+=1,b=this.uuid),"ui-dialog-title-"+b},overlay:function(b){this.$el=a.ui.dialog.overlay.create(b)}}),a.extend(a.ui.dialog.overlay,{instances:[],oldInstances:[],maxZ:0,events:a.map("focus,mousedown,mouseup,keydown,keypress,click".split(","),function(a){return a+".dialog-overlay"}).join(" "),create:function(b){this.instances.length===0&&(setTimeout(function(){a.ui.dialog.overlay.instances.length&&a(document).bind(a.ui.dialog.overlay.events,function(b){if(a(b.target).zIndex()").addClass("ui-widget-overlay")).appendTo(document.body).css({width:this.width(),height:this.height()});return a.fn.bgiframe&&c.bgiframe(),this.instances.push(c),c},destroy:function(b){var c=a.inArray(b,this.instances);c!=-1&&this.oldInstances.push(this.instances.splice(c,1)[0]),this.instances.length===0&&a([document,window]).unbind(".dialog-overlay"),b.remove();var d=0;a.each(this.instances,function(){d=Math.max(d,this.css("z-index"))}),this.maxZ=d},height:function(){var b,c;return a.browser.msie&&a.browser.version<7?(b=Math.max(document.documentElement.scrollHeight,document.body.scrollHeight),c=Math.max(document.documentElement.offsetHeight,document.body.offsetHeight),b0?b.left-e:Math.max(b.left-c.collisionPosition.left,b.left)},top:function(b,c){var d=a(window),e=c.collisionPosition.top+c.collisionHeight-d.height()-d.scrollTop();b.top=e>0?b.top-e:Math.max(b.top-c.collisionPosition.top,b.top)}},flip:{left:function(b,c){if(c.at[0]===e)return;var d=a(window),f=c.collisionPosition.left+c.collisionWidth-d.width()-d.scrollLeft(),g=c.my[0]==="left"?-c.elemWidth:c.my[0]==="right"?c.elemWidth:0,h=c.at[0]==="left"?c.targetWidth:-c.targetWidth,i=-2*c.offset[0];b.left+=c.collisionPosition.left<0?g+h+i:f>0?g+h+i:0},top:function(b,c){if(c.at[1]===e)return;var d=a(window),f=c.collisionPosition.top+c.collisionHeight-d.height()-d.scrollTop(),g=c.my[1]==="top"?-c.elemHeight:c.my[1]==="bottom"?c.elemHeight:0,h=c.at[1]==="top"?c.targetHeight:-c.targetHeight,i=-2*c.offset[1];b.top+=c.collisionPosition.top<0?g+h+i:f>0?g+h+i:0}}},a.offset.setOffset||(a.offset.setOffset=function(b,c){/static/.test(a.curCSS(b,"position"))&&(b.style.position="relative");var d=a(b),e=d.offset(),f=parseInt(a.curCSS(b,"top",!0),10)||0,g=parseInt(a.curCSS(b,"left",!0),10)||0,h={top:c.top-e.top+f,left:c.left-e.left+g};"using"in c?c.using.call(b,h):d.css(h)},a.fn.offset=function(b){var c=this[0];return!c||!c.ownerDocument?null:b?a.isFunction(b)?this.each(function(c){a(this).offset(b.call(this,c,a(this).offset()))}):this.each(function(){a.offset.setOffset(this,b)}):h.call(this)}),a.curCSS||(a.curCSS=a.css),function(){var b=document.getElementsByTagName("body")[0],c=document.createElement("div"),d,e,g,h,i;d=document.createElement(b?"div":"body"),g={visibility:"hidden",width:0,height:0,border:0,margin:0,background:"none"},b&&a.extend(g,{position:"absolute",left:"-1000px",top:"-1000px"});for(var j in g)d.style[j]=g[j];d.appendChild(c),e=b||document.documentElement,e.insertBefore(d,e.firstChild),c.style.cssText="position: absolute; left: 10.7432222px; top: 10.432325px; height: 30px; width: 201px;",h=a(c).offset(function(a,b){return b}).offset(),d.innerHTML="",e.removeChild(d),i=h.top+h.left+(b?2e3:0),f.fractions=i>21&&i<22}()}(jQuery),function(a,b){a.widget("ui.progressbar",{options:{value:0,max:100},min:0,_create:function(){this.element.addClass("ui-progressbar ui-widget ui-widget-content ui-corner-all").attr({role:"progressbar","aria-valuemin":this.min,"aria-valuemax":this.options.max,"aria-valuenow":this._value()}),this.valueDiv=a("
      ").appendTo(this.element),this.oldValue=this._value(),this._refreshValue()},destroy:function(){this.element.removeClass("ui-progressbar ui-widget ui-widget-content ui-corner-all").removeAttr("role").removeAttr("aria-valuemin").removeAttr("aria-valuemax").removeAttr("aria-valuenow"),this.valueDiv.remove(),a.Widget.prototype.destroy.apply(this,arguments)},value:function(a){return a===b?this._value():(this._setOption("value",a),this)},_setOption:function(b,c){b==="value"&&(this.options.value=c,this._refreshValue(),this._value()===this.options.max&&this._trigger("complete")),a.Widget.prototype._setOption.apply(this,arguments)},_value:function(){var a=this.options.value;return typeof a!="number"&&(a=0),Math.min(this.options.max,Math.max(this.min,a))},_percentage:function(){return 100*this._value()/this.options.max},_refreshValue:function(){var a=this.value(),b=this._percentage();this.oldValue!==a&&(this.oldValue=a,this._trigger("change")),this.valueDiv.toggle(a>this.min).toggleClass("ui-corner-right",a===this.options.max).width(b.toFixed(0)+"%"),this.element.attr("aria-valuenow",a)}}),a.extend(a.ui.progressbar,{version:"1.8.23"})}(jQuery),function(a,b){var c=5;a.widget("ui.slider",a.ui.mouse,{widgetEventPrefix:"slide",options:{animate:!1,distance:0,max:100,min:0,orientation:"horizontal",range:!1,step:1,value:0,values:null},_create:function(){var b=this,d=this.options,e=this.element.find(".ui-slider-handle").addClass("ui-state-default ui-corner-all"),f="",g=d.values&&d.values.length||1,h=[];this._keySliding=!1,this._mouseSliding=!1,this._animateOff=!0,this._handleIndex=null,this._detectOrientation(),this._mouseInit(),this.element.addClass("ui-slider ui-slider-"+this.orientation+" ui-widget"+" ui-widget-content"+" ui-corner-all"+(d.disabled?" ui-slider-disabled ui-disabled":"")),this.range=a([]),d.range&&(d.range===!0&&(d.values||(d.values=[this._valueMin(),this._valueMin()]),d.values.length&&d.values.length!==2&&(d.values=[d.values[0],d.values[0]])),this.range=a("
      ").appendTo(this.element).addClass("ui-slider-range ui-widget-header"+(d.range==="min"||d.range==="max"?" ui-slider-range-"+d.range:"")));for(var i=e.length;ic&&(f=c,g=a(this),i=b)}),c.range===!0&&this.values(1)===c.min&&(i+=1,g=a(this.handles[i])),j=this._start(b,i),j===!1?!1:(this._mouseSliding=!0,h._handleIndex=i,g.addClass("ui-state-active").focus(),k=g.offset(),l=!a(b.target).parents().andSelf().is(".ui-slider-handle"),this._clickOffset=l?{left:0,top:0}:{left:b.pageX-k.left-g.width()/2,top:b.pageY-k.top-g.height()/2-(parseInt(g.css("borderTopWidth"),10)||0)-(parseInt(g.css("borderBottomWidth"),10)||0)+(parseInt(g.css("marginTop"),10)||0)},this.handles.hasClass("ui-state-hover")||this._slide(b,i,e),this._animateOff=!0,!0))},_mouseStart:function(a){return!0},_mouseDrag:function(a){var b={x:a.pageX,y:a.pageY},c=this._normValueFromMouse(b);return this._slide(a,this._handleIndex,c),!1},_mouseStop:function(a){return this.handles.removeClass("ui-state-active"),this._mouseSliding=!1,this._stop(a,this._handleIndex),this._change(a,this._handleIndex),this._handleIndex=null,this._clickOffset=null,this._animateOff=!1,!1},_detectOrientation:function(){this.orientation=this.options.orientation==="vertical"?"vertical":"horizontal"},_normValueFromMouse:function(a){var b,c,d,e,f;return this.orientation==="horizontal"?(b=this.elementSize.width,c=a.x-this.elementOffset.left-(this._clickOffset?this._clickOffset.left:0)):(b=this.elementSize.height,c=a.y-this.elementOffset.top-(this._clickOffset?this._clickOffset.top:0)),d=c/b,d>1&&(d=1),d<0&&(d=0),this.orientation==="vertical"&&(d=1-d),e=this._valueMax()-this._valueMin(),f=this._valueMin()+d*e,this._trimAlignValue(f)},_start:function(a,b){var c={handle:this.handles[b],value:this.value()};return this.options.values&&this.options.values.length&&(c.value=this.values(b),c.values=this.values()),this._trigger("start",a,c)},_slide:function(a,b,c){var d,e,f;this.options.values&&this.options.values.length?(d=this.values(b?0:1),this.options.values.length===2&&this.options.range===!0&&(b===0&&c>d||b===1&&c1){this.options.values[b]=this._trimAlignValue(c),this._refreshValue(),this._change(null,b);return}if(!arguments.length)return this._values();if(!a.isArray(arguments[0]))return this.options.values&&this.options.values.length?this._values(b):this.value();d=this.options.values,e=arguments[0];for(f=0;f=this._valueMax())return this._valueMax();var b=this.options.step>0?this.options.step:1,c=(a-this._valueMin())%b,d=a-c;return Math.abs(c)*2>=b&&(d+=c>0?b:-b),parseFloat(d.toFixed(5))},_valueMin:function(){return this.options.min},_valueMax:function(){return this.options.max},_refreshValue:function(){var b=this.options.range,c=this.options,d=this,e=this._animateOff?!1:c.animate,f,g={},h,i,j,k;this.options.values&&this.options.values.length?this.handles.each(function(b,i){f=(d.values(b)-d._valueMin())/(d._valueMax()-d._valueMin())*100,g[d.orientation==="horizontal"?"left":"bottom"]=f+"%",a(this).stop(1,1)[e?"animate":"css"](g,c.animate),d.options.range===!0&&(d.orientation==="horizontal"?(b===0&&d.range.stop(1,1)[e?"animate":"css"]({left:f+"%"},c.animate),b===1&&d.range[e?"animate":"css"]({width:f-h+"%"},{queue:!1,duration:c.animate})):(b===0&&d.range.stop(1,1)[e?"animate":"css"]({bottom:f+"%"},c.animate),b===1&&d.range[e?"animate":"css"]({height:f-h+"%"},{queue:!1,duration:c.animate}))),h=f}):(i=this.value(),j=this._valueMin(),k=this._valueMax(),f=k!==j?(i-j)/(k-j)*100:0,g[d.orientation==="horizontal"?"left":"bottom"]=f+"%",this.handle.stop(1,1)[e?"animate":"css"](g,c.animate),b==="min"&&this.orientation==="horizontal"&&this.range.stop(1,1)[e?"animate":"css"]({width:f+"%"},c.animate),b==="max"&&this.orientation==="horizontal"&&this.range[e?"animate":"css"]({width:100-f+"%"},{queue:!1,duration:c.animate}),b==="min"&&this.orientation==="vertical"&&this.range.stop(1,1)[e?"animate":"css"]({height:f+"%"},c.animate),b==="max"&&this.orientation==="vertical"&&this.range[e?"animate":"css"]({height:100-f+"%"},{queue:!1,duration:c.animate}))}}),a.extend(a.ui.slider,{version:"1.8.23"})}(jQuery),function(a,b){function e(){return++c}function f(){return++d}var c=0,d=0;a.widget("ui.tabs",{options:{add:null,ajaxOptions:null,cache:!1,cookie:null,collapsible:!1,disable:null,disabled:[],enable:null,event:"click",fx:null,idPrefix:"ui-tabs-",load:null,panelTemplate:"
      ",remove:null,select:null,show:null,spinner:"Loading…",tabTemplate:"
    • #{label}
    • "},_create:function(){this._tabify(!0)},_setOption:function(a,b){if(a=="selected"){if(this.options.collapsible&&b==this.options.selected)return;this.select(b)}else this.options[a]=b,this._tabify()},_tabId:function(a){return a.title&&a.title.replace(/\s/g,"_").replace(/[^\w\u00c0-\uFFFF-]/g,"")||this.options.idPrefix+e()},_sanitizeSelector:function(a){return a.replace(/:/g,"\\:")},_cookie:function(){var b=this.cookie||(this.cookie=this.options.cookie.name||"ui-tabs-"+f());return a.cookie.apply(null,[b].concat(a.makeArray(arguments)))},_ui:function(a,b){return{tab:a,panel:b,index:this.anchors.index(a)}},_cleanup:function(){this.lis.filter(".ui-state-processing").removeClass("ui-state-processing").find("span:data(label.tabs)").each(function(){var b=a(this);b.html(b.data("label.tabs")).removeData("label.tabs")})},_tabify:function(c){function m(b,c){b.css("display",""),!a.support.opacity&&c.opacity&&b[0].style.removeAttribute("filter")}var d=this,e=this.options,f=/^#.+/;this.list=this.element.find("ol,ul").eq(0),this.lis=a(" > li:has(a[href])",this.list),this.anchors=this.lis.map(function(){return a("a",this)[0]}),this.panels=a([]),this.anchors.each(function(b,c){var g=a(c).attr("href"),h=g.split("#")[0],i;h&&(h===location.toString().split("#")[0]||(i=a("base")[0])&&h===i.href)&&(g=c.hash,c.href=g);if(f.test(g))d.panels=d.panels.add(d.element.find(d._sanitizeSelector(g)));else if(g&&g!=="#"){a.data(c,"href.tabs",g),a.data(c,"load.tabs",g.replace(/#.*$/,""));var j=d._tabId(c);c.href="#"+j;var k=d.element.find("#"+j);k.length||(k=a(e.panelTemplate).attr("id",j).addClass("ui-tabs-panel ui-widget-content ui-corner-bottom").insertAfter(d.panels[b-1]||d.list),k.data("destroy.tabs",!0)),d.panels=d.panels.add(k)}else e.disabled.push(b)}),c?(this.element.addClass("ui-tabs ui-widget ui-widget-content ui-corner-all"),this.list.addClass("ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all"),this.lis.addClass("ui-state-default ui-corner-top"),this.panels.addClass("ui-tabs-panel ui-widget-content ui-corner-bottom"),e.selected===b?(location.hash&&this.anchors.each(function(a,b){if(b.hash==location.hash)return e.selected=a,!1}),typeof e.selected!="number"&&e.cookie&&(e.selected=parseInt(d._cookie(),10)),typeof e.selected!="number"&&this.lis.filter(".ui-tabs-selected").length&&(e.selected=this.lis.index(this.lis.filter(".ui-tabs-selected"))),e.selected=e.selected||(this.lis.length?0:-1)):e.selected===null&&(e.selected=-1),e.selected=e.selected>=0&&this.anchors[e.selected]||e.selected<0?e.selected:0,e.disabled=a.unique(e.disabled.concat(a.map(this.lis.filter(".ui-state-disabled"),function(a,b){return d.lis.index(a)}))).sort(),a.inArray(e.selected,e.disabled)!=-1&&e.disabled.splice(a.inArray(e.selected,e.disabled),1),this.panels.addClass("ui-tabs-hide"),this.lis.removeClass("ui-tabs-selected ui-state-active"),e.selected>=0&&this.anchors.length&&(d.element.find(d._sanitizeSelector(d.anchors[e.selected].hash)).removeClass("ui-tabs-hide"),this.lis.eq(e.selected).addClass("ui-tabs-selected ui-state-active"),d.element.queue("tabs",function(){d._trigger("show",null,d._ui(d.anchors[e.selected],d.element.find(d._sanitizeSelector(d.anchors[e.selected].hash))[0]))}),this.load(e.selected)),a(window).bind("unload",function(){d.lis.add(d.anchors).unbind(".tabs"),d.lis=d.anchors=d.panels=null})):e.selected=this.lis.index(this.lis.filter(".ui-tabs-selected")),this.element[e.collapsible?"addClass":"removeClass"]("ui-tabs-collapsible"),e.cookie&&this._cookie(e.selected,e.cookie);for(var g=0,h;h=this.lis[g];g++)a(h)[a.inArray(g,e.disabled)!=-1&&!a(h).hasClass("ui-tabs-selected")?"addClass":"removeClass"]("ui-state-disabled");e.cache===!1&&this.anchors.removeData("cache.tabs"),this.lis.add(this.anchors).unbind(".tabs");if(e.event!=="mouseover"){var i=function(a,b){b.is(":not(.ui-state-disabled)")&&b.addClass("ui-state-"+a)},j=function(a,b){b.removeClass("ui-state-"+a)};this.lis.bind("mouseover.tabs",function(){i("hover",a(this))}),this.lis.bind("mouseout.tabs",function(){j("hover",a(this))}),this.anchors.bind("focus.tabs",function(){i("focus",a(this).closest("li"))}),this.anchors.bind("blur.tabs",function(){j("focus",a(this).closest("li"))})}var k,l;e.fx&&(a.isArray(e.fx)?(k=e.fx[0],l=e.fx[1]):k=l=e.fx);var n=l?function(b,c){a(b).closest("li").addClass("ui-tabs-selected ui-state-active"),c.hide().removeClass("ui-tabs-hide").animate(l,l.duration||"normal",function(){m(c,l),d._trigger("show",null,d._ui(b,c[0]))})}:function(b,c){a(b).closest("li").addClass("ui-tabs-selected ui-state-active"),c.removeClass("ui-tabs-hide"),d._trigger("show",null,d._ui(b,c[0]))},o=k?function(a,b){b.animate(k,k.duration||"normal",function(){d.lis.removeClass("ui-tabs-selected ui-state-active"),b.addClass("ui-tabs-hide"),m(b,k),d.element.dequeue("tabs")})}:function(a,b,c){d.lis.removeClass("ui-tabs-selected ui-state-active"),b.addClass("ui-tabs-hide"),d.element.dequeue("tabs")};this.anchors.bind(e.event+".tabs",function(){var b=this,c=a(b).closest("li"),f=d.panels.filter(":not(.ui-tabs-hide)"),g=d.element.find(d._sanitizeSelector(b.hash));if(c.hasClass("ui-tabs-selected")&&!e.collapsible||c.hasClass("ui-state-disabled")||c.hasClass("ui-state-processing")||d.panels.filter(":animated").length||d._trigger("select",null,d._ui(this,g[0]))===!1)return this.blur(),!1;e.selected=d.anchors.index(this),d.abort();if(e.collapsible){if(c.hasClass("ui-tabs-selected"))return e.selected=-1,e.cookie&&d._cookie(e.selected,e.cookie),d.element.queue("tabs",function(){o(b,f)}).dequeue("tabs"),this.blur(),!1;if(!f.length)return e.cookie&&d._cookie(e.selected,e.cookie),d.element.queue("tabs",function(){n(b,g)}),d.load(d.anchors.index(this)),this.blur(),!1}e.cookie&&d._cookie(e.selected,e.cookie);if(g.length)f.length&&d.element.queue("tabs",function(){o(b,f)}),d.element.queue("tabs",function(){n(b,g)}),d.load(d.anchors.index(this));else throw"jQuery UI Tabs: Mismatching fragment identifier.";a.browser.msie&&this.blur()}),this.anchors.bind("click.tabs",function(){return!1})},_getIndex:function(a){return typeof a=="string"&&(a=this.anchors.index(this.anchors.filter("[href$='"+a+"']"))),a},destroy:function(){var b=this.options;return this.abort(),this.element.unbind(".tabs").removeClass("ui-tabs ui-widget ui-widget-content ui-corner-all ui-tabs-collapsible").removeData("tabs"),this.list.removeClass("ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all"),this.anchors.each(function(){var b=a.data(this,"href.tabs");b&&(this.href=b);var c=a(this).unbind(".tabs");a.each(["href","load","cache"],function(a,b){c.removeData(b+".tabs")})}),this.lis.unbind(".tabs").add(this.panels).each(function(){a.data(this,"destroy.tabs")?a(this).remove():a(this).removeClass(["ui-state-default","ui-corner-top","ui-tabs-selected","ui-state-active","ui-state-hover","ui-state-focus","ui-state-disabled","ui-tabs-panel","ui-widget-content","ui-corner-bottom","ui-tabs-hide"].join(" "))}),b.cookie&&this._cookie(null,b.cookie),this},add:function(c,d,e){e===b&&(e=this.anchors.length);var f=this,g=this.options,h=a(g.tabTemplate.replace(/#\{href\}/g,c).replace(/#\{label\}/g,d)),i=c.indexOf("#")?this._tabId(a("a",h)[0]):c.replace("#","");h.addClass("ui-state-default ui-corner-top").data("destroy.tabs",!0);var j=f.element.find("#"+i);return j.length||(j=a(g.panelTemplate).attr("id",i).data("destroy.tabs",!0)),j.addClass("ui-tabs-panel ui-widget-content ui-corner-bottom ui-tabs-hide"),e>=this.lis.length?(h.appendTo(this.list),j.appendTo(this.list[0].parentNode)):(h.insertBefore(this.lis[e]),j.insertBefore(this.panels[e])),g.disabled=a.map(g.disabled,function(a,b){return a>=e?++a:a}),this._tabify(),this.anchors.length==1&&(g.selected=0,h.addClass("ui-tabs-selected ui-state-active"),j.removeClass("ui-tabs-hide"),this.element.queue("tabs",function(){f._trigger("show",null,f._ui(f.anchors[0],f.panels[0]))}),this.load(0)),this._trigger("add",null,this._ui(this.anchors[e],this.panels[e])),this},remove:function(b){b=this._getIndex(b);var c=this.options,d=this.lis.eq(b).remove(),e=this.panels.eq(b).remove();return d.hasClass("ui-tabs-selected")&&this.anchors.length>1&&this.select(b+(b+1=b?--a:a}),this._tabify(),this._trigger("remove",null,this._ui(d.find("a")[0],e[0])),this},enable:function(b){b=this._getIndex(b);var c=this.options;if(a.inArray(b,c.disabled)==-1)return;return this.lis.eq(b).removeClass("ui-state-disabled"),c.disabled=a.grep(c.disabled,function(a,c){return a!=b}),this._trigger("enable",null,this._ui(this.anchors[b],this.panels[b])),this},disable:function(a){a=this._getIndex(a);var b=this,c=this.options;return a!=c.selected&&(this.lis.eq(a).addClass("ui-state-disabled"),c.disabled.push(a),c.disabled.sort(),this._trigger("disable",null,this._ui(this.anchors[a],this.panels[a]))),this},select:function(a){a=this._getIndex(a);if(a==-1)if(this.options.collapsible&&this.options.selected!=-1)a=this.options.selected;else return this;return this.anchors.eq(a).trigger(this.options.event+".tabs"),this},load:function(b){b=this._getIndex(b);var c=this,d=this.options,e=this.anchors.eq(b)[0],f=a.data(e,"load.tabs");this.abort();if(!f||this.element.queue("tabs").length!==0&&a.data(e,"cache.tabs")){this.element.dequeue("tabs");return}this.lis.eq(b).addClass("ui-state-processing");if(d.spinner){var g=a("span",e);g.data("label.tabs",g.html()).html(d.spinner)}return this.xhr=a.ajax(a.extend({},d.ajaxOptions,{url:f,success:function(f,g){c.element.find(c._sanitizeSelector(e.hash)).html(f),c._cleanup(),d.cache&&a.data(e,"cache.tabs",!0),c._trigger("load",null,c._ui(c.anchors[b],c.panels[b]));try{d.ajaxOptions.success(f,g)}catch(h){}},error:function(a,f,g){c._cleanup(),c._trigger("load",null,c._ui(c.anchors[b],c.panels[b]));try{d.ajaxOptions.error(a,f,b,e)}catch(g){}}})),c.element.dequeue("tabs"),this},abort:function(){return this.element.queue([]),this.panels.stop(!1,!0),this.element.queue("tabs",this.element.queue("tabs").splice(-2,2)),this.xhr&&(this.xhr.abort(),delete this.xhr),this._cleanup(),this},url:function(a,b){return this.anchors.eq(a).removeData("cache.tabs").data("load.tabs",b),this},length:function(){return this.anchors.length}}),a.extend(a.ui.tabs,{version:"1.8.23"}),a.extend(a.ui.tabs.prototype,{rotation:null,rotate:function(a,b){var c=this,d=this.options,e=c._rotate||(c._rotate=function(b){clearTimeout(c.rotation),c.rotation=setTimeout(function(){var a=d.selected;c.select(++a
      GET/resources/js/jquery-ui.minjsHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
      Refererhttp://zero.webappsecurity.com/index.html.old
      Accept*/*
      Accept-Encodinggzip, deflate
      Pragmano-cache
      User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
      Hostzero.webappsecurity.com
      ConnectionKeep-Alive
      X-WIPPAscVersion=22.2.0.253
      X-Scan-MemoCategory="Crawl";SID="7CFB1C60E0E413EFCCB63FE59920EAE4";PSID="E008A8CA4FA265733B7FA2EF6BB2C691";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";Format="Relative";LinkKind="HyperLink";Locations="HtmlNode";NodeName="meta";Source="StaticParser";tht="31";
      X-RequestManager-Memostid="11";stmi="0";sc="1";rid="74918e40";
      X-Request-Memorid="22a58b3f";sc="1";thid="26";
      CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
      HTTP/1.1200OK").outerWidth(1).jquery||a.each(["Width","Height"],function(c,d){function h(b,c,d,f){return a.each(e,function(){c-=parseFloat(a.curCSS(b,"padding"+this,!0))||0,d&&(c-=parseFloat(a.curCSS(b,"border"+this+"Width",!0))||0),f&&(c-=parseFloat(a.curCSS(b,"margin"+this,!0))||0)}),c}var e=d==="Width"?["Left","Right"]:["Top","Bottom"],f=d.toLowerCase(),g={innerWidth:a.fn.innerWidth,innerHeight:a.fn.innerHeight,outerWidth:a.fn.outerWidth,outerHeight:a.fn.outerHeight};a.fn["inner"+d]=function(c){return c===b?g["inner"+d].call(this):this.each(function(){a(this).css(f,h(this,c)+"px")})},a.fn["outer"+d]=function(b,c){return typeof b!="number"?g["outer"+d].call(this,b):this.each(function(){a(this).css(f,h(this,b,!0,c)+"px")})}}),a.extend(a.expr[":"],{data:a.expr.createPseudo?a.expr.createPseudo(function(b){return function(c){return!!a.data(c,b)}}):function(b,c,d){return!!a.data(b,d[3])},focusable:function(b){return c(b,!isNaN(a.attr(b,"tabindex")))},tabbable:function(b){var d=a.attr(b,"tabindex"),e=isNaN(d);return(e||d>=0)&&c(b,!e)}}),a(function(){var b=document.body,c=b.appendChild(c=document.createElement("div"));c.offsetHeight,a.extend(c.style,{minHeight:"100px",height:"auto",padding:0,borderWidth:0}),a.support.minHeight=c.offsetHeight===100,a.support.selectstart="onselectstart"in c,b.removeChild(c).style.display="none"}),a.curCSS||(a.curCSS=a.css),a.extend(a.ui,{plugin:{add:function(b,c,d){var e=a.ui[b].prototype;for(var f in d)e.plugins[f]=e.plugins[f]||[],e.plugins[f].push([c,d[f]])},call:function(a,b,c){var d=a.plugins[b];if(!d||!a.element[0].parentNode)return;for(var e=0;e0?!0:(b[d]=1,e=b[d]>0,b[d]=0,e)},isOverAxis:function(a,b,c){return a>b&&a=9||!!b.button?this._mouseStarted?(this._mouseDrag(b),b.preventDefault()):(this._mouseDistanceMet(b)&&this._mouseDelayMet(b)&&(this._mouseStarted=this._mouseStart(this._mouseDownEvent,b)!==!1,this._mouseStarted?this._mouseDrag(b):this._mouseUp(b)),!this._mouseStarted):this._mouseUp(b)},_mouseUp:function(b){return a(document).unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate),this._mouseStarted&&(this._mouseStarted=!1,b.target==this._mouseDownEvent.target&&a.data(b.target,this.widgetName+".preventClickEvent",!0),this._mouseStop(b)),!1},_mouseDistanceMet:function(a){return Math.max(Math.abs(this._mouseDownEvent.pageX-a.pageX),Math.abs(this._mouseDownEvent.pageY-a.pageY))>=this.options.distance},_mouseDelayMet:function(a){return this.mouseDelayMet},_mouseStart:function(a){},_mouseDrag:function(a){},_mouseStop:function(a){},_mouseCapture:function(a){return!0}})}(jQuery),function(a,b){a.widget("ui.draggable",a.ui.mouse,{widgetEventPrefix:"drag",options:{addClasses:!0,appendTo:"parent",axis:!1,connectToSortable:!1,containment:!1,cursor:"auto",cursorAt:!1,grid:!1,handle:!1,helper:"original",iframeFix:!1,opacity:!1,refreshPositions:!1,revert:!1,revertDuration:500,scope:"default",scroll:!0,scrollSensitivity:20,scrollSpeed:20,snap:!1,snapMode:"both",snapTolerance:20,stack:!1,zIndex:!1},_create:function(){this.options.helper=="original"&&!/^(?:r|a|f)/.test(this.element.css("position"))&&(this.element[0].style.position="relative"),this.options.addClasses&&this.element.addClass("ui-draggable"),this.options.disabled&&this.element.addClass("ui-draggable-disabled"),this._mouseInit()},destroy:function(){if(!this.element.data("draggable"))return;return this.element.removeData("draggable").unbind(".draggable").removeClass("ui-draggable ui-draggable-dragging ui-draggable-disabled"),this._mouseDestroy(),this},_mouseCapture:function(b){var c=this.options;return this.helper||c.disabled||a(b.target).is(".ui-resizable-handle")?!1:(this.handle=this._getHandle(b),this.handle?(c.iframeFix&&a(c.iframeFix===!0?"iframe":c.iframeFix).each(function(){a('
      ').css({width:this.offsetWidth+"px",height:this.offsetHeight+"px",position:"absolute",opacity:"0.001",zIndex:1e3}).css(a(this).offset()).appendTo("body")}),!0):!1)},_mouseStart:function(b){var c=this.options;return this.helper=this._createHelper(b),this.helper.addClass("ui-draggable-dragging"),this._cacheHelperProportions(),a.ui.ddmanager&&(a.ui.ddmanager.current=this),this._cacheMargins(),this.cssPosition=this.helper.css("position"),this.scrollParent=this.helper.scrollParent(),this.offset=this.positionAbs=this.element.offset(),this.offset={top:this.offset.top-this.margins.top,left:this.offset.left-this.margins.left},a.extend(this.offset,{click:{left:b.pageX-this.offset.left,top:b.pageY-this.offset.top},parent:this._getParentOffset(),relative:this._getRelativeOffset()}),this.originalPosition=this.position=this._generatePosition(b),this.originalPageX=b.pageX,this.originalPageY=b.pageY,c.cursorAt&&this._adjustOffsetFromHelper(c.cursorAt),c.containment&&this._setContainment(),this._trigger("start",b)===!1?(this._clear(),!1):(this._cacheHelperProportions(),a.ui.ddmanager&&!c.dropBehaviour&&a.ui.ddmanager.prepareOffsets(this,b),this._mouseDrag(b,!0),a.ui.ddmanager&&a.ui.ddmanager.dragStart(this,b),!0)},_mouseDrag:function(b,c){this.position=this._generatePosition(b),this.positionAbs=this._convertPositionTo("absolute");if(!c){var d=this._uiHash();if(this._trigger("drag",b,d)===!1)return this._mouseUp({}),!1;this.position=d.position}if(!this.options.axis||this.options.axis!="y")this.helper[0].style.left=this.position.left+"px";if(!this.options.axis||this.options.axis!="x")this.helper[0].style.top=this.position.top+"px";return a.ui.ddmanager&&a.ui.ddmanager.drag(this,b),!1},_mouseStop:function(b){var c=!1;a.ui.ddmanager&&!this.options.dropBehaviour&&(c=a.ui.ddmanager.drop(this,b)),this.dropped&&(c=this.dropped,this.dropped=!1);var d=this.element[0],e=!1;while(d&&(d=d.parentNode))d==document&&(e=!0);if(!e&&this.options.helper==="original")return!1;if(this.options.revert=="invalid"&&!c||this.options.revert=="valid"&&c||this.options.revert===!0||a.isFunction(this.options.revert)&&this.options.revert.call(this.element,c)){var f=this;a(this.helper).animate(this.originalPosition,parseInt(this.options.revertDuration,10),function(){f._trigger("stop",b)!==!1&&f._clear()})}else this._trigger("stop",b)!==!1&&this._clear();return!1},_mouseUp:function(b){return this.options.iframeFix===!0&&a("div.ui-draggable-iframeFix").each(function(){this.parentNode.removeChild(this)}),a.ui.ddmanager&&a.ui.ddmanager.dragStop(this,b),a.ui.mouse.prototype._mouseUp.call(this,b)},cancel:function(){return this.helper.is(".ui-draggable-dragging")?this._mouseUp({}):this._clear(),this},_getHandle:function(b){var c=!this.options.handle||!a(this.options.handle,this.element).length?!0:!1;return a(this.options.handle,this.element).find("*").andSelf().each(function(){this==b.target&&(c=!0)}),c},_createHelper:function(b){var c=this.options,d=a.isFunction(c.helper)?a(c.helper.apply(this.element[0],[b])):c.helper=="clone"?this.element.clone().removeAttr("id"):this.element;return d.parents("body").length||d.appendTo(c.appendTo=="parent"?this.element[0].parentNode:c.appendTo),d[0]!=this.element[0]&&!/(fixed|absolute)/.test(d.css("position"))&&d.css("position","absolute"),d},_adjustOffsetFromHelper:function(b){typeof b=="string"&&(b=b.split(" ")),a.isArray(b)&&(b={left:+b[0],top:+b[1]||0}),"left"in b&&(this.offset.click.left=b.left+this.margins.left),"right"in b&&(this.offset.click.left=this.helperProportions.width-b.right+this.margins.left),"top"in b&&(this.offset.click.top=b.top+this.margins.top),"bottom"in b&&(this.offset.click.top=this.helperProportions.height-b.bottom+this.margins.top)},_getParentOffset:function(){this.offsetParent=this.helper.offsetParent();var b=this.offsetParent.offset();this.cssPosition=="absolute"&&this.scrollParent[0]!=document&&a.ui.contains(this.scrollParent[0],this.offsetParent[0])&&(b.left+=this.scrollParent.scrollLeft(),b.top+=this.scrollParent.scrollTop());if(this.offsetParent[0]==document.body||this.offsetParent[0].tagName&&this.offsetParent[0].tagName.toLowerCase()=="html"&&a.browser.msie)b={top:0,left:0};return{top:b.top+(parseInt(this.offsetParent.css("borderTopWidth"),10)||0),left:b.left+(parseInt(this.offsetParent.css("borderLeftWidth"),10)||0)}},_getRelativeOffset:function(){if(this.cssPosition=="relative"){var a=this.element.position();return{top:a.top-(parseInt(this.helper.css("top"),10)||0)+this.scrollParent.scrollTop(),left:a.left-(parseInt(this.helper.css("left"),10)||0)+this.scrollParent.scrollLeft()}}return{top:0,left:0}},_cacheMargins:function(){this.margins={left:parseInt(this.element.css("marginLeft"),10)||0,top:parseInt(this.element.css("marginTop"),10)||0,right:parseInt(this.element.css("marginRight"),10)||0,bottom:parseInt(this.element.css("marginBottom"),10)||0}},_cacheHelperProportions:function(){this.helperProportions={width:this.helper.outerWidth(),height:this.helper.outerHeight()}},_setContainment:function(){var b=this.options;b.containment=="parent"&&(b.containment=this.helper[0].parentNode);if(b.containment=="document"||b.containment=="window")this.containment=[b.containment=="document"?0:a(window).scrollLeft()-this.offset.relative.left-this.offset.parent.left,b.containment=="document"?0:a(window).scrollTop()-this.offset.relative.top-this.offset.parent.top,(b.containment=="document"?0:a(window).scrollLeft())+a(b.containment=="document"?document:window).width()-this.helperProportions.width-this.margins.left,(b.containment=="document"?0:a(window).scrollTop())+(a(b.containment=="document"?document:window).height()||document.body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top];if(!/^(document|window|parent)$/.test(b.containment)&&b.containment.constructor!=Array){var c=a(b.containment),d=c[0];if(!d)return;var e=c.offset(),f=a(d).css("overflow")!="hidden";this.containment=[(parseInt(a(d).css("borderLeftWidth"),10)||0)+(parseInt(a(d).css("paddingLeft"),10)||0),(parseInt(a(d).css("borderTopWidth"),10)||0)+(parseInt(a(d).css("paddingTop"),10)||0),(f?Math.max(d.scrollWidth,d.offsetWidth):d.offsetWidth)-(parseInt(a(d).css("borderLeftWidth"),10)||0)-(parseInt(a(d).css("paddingRight"),10)||0)-this.helperProportions.width-this.margins.left-this.margins.right,(f?Math.max(d.scrollHeight,d.offsetHeight):d.offsetHeight)-(parseInt(a(d).css("borderTopWidth"),10)||0)-(parseInt(a(d).css("paddingBottom"),10)||0)-this.helperProportions.height-this.margins.top-this.margins.bottom],this.relative_container=c}else b.containment.constructor==Array&&(this.containment=b.containment)},_convertPositionTo:function(b,c){c||(c=this.position);var d=b=="absolute"?1:-1,e=this.options,f=this.cssPosition=="absolute"&&(this.scrollParent[0]==document||!a.ui.contains(this.scrollParent[0],this.offsetParent[0]))?this.offsetParent:this.scrollParent,g=/(html|body)/i.test(f[0].tagName);return{top:c.top+this.offset.relative.top*d+this.offset.parent.top*d-(a.browser.safari&&a.browser.version<526&&this.cssPosition=="fixed"?0:(this.cssPosition=="fixed"?-this.scrollParent.scrollTop():g?0:f.scrollTop())*d),left:c.left+this.offset.relative.left*d+this.offset.parent.left*d-(a.browser.safari&&a.browser.version<526&&this.cssPosition=="fixed"?0:(this.cssPosition=="fixed"?-this.scrollParent.scrollLeft():g?0:f.scrollLeft())*d)}},_generatePosition:function(b){var c=this.options,d=this.cssPosition=="absolute"&&(this.scrollParent[0]==document||!a.ui.contains(this.scrollParent[0],this.offsetParent[0]))?this.offsetParent:this.scrollParent,e=/(html|body)/i.test(d[0].tagName),f=b.pageX,g=b.pageY;if(this.originalPosition){var h;if(this.containment){if(this.relative_container){var i=this.relative_container.offset();h=[this.containment[0]+i.left,this.containment[1]+i.top,this.containment[2]+i.left,this.containment[3]+i.top]}else h=this.containment;b.pageX-this.offset.click.lefth[2]&&(f=h[2]+this.offset.click.left),b.pageY-this.offset.click.top>h[3]&&(g=h[3]+this.offset.click.top)}if(c.grid){var j=c.grid[1]?this.originalPageY+Math.round((g-this.originalPageY)/c.grid[1])*c.grid[1]:this.originalPageY;g=h?j-this.offset.click.toph[3]?j-this.offset.click.toph[2]?k-this.offset.click.left=0;k--){var l=d.snapElements[k].left,m=l+d.snapElements[k].width,n=d.snapElements[k].top,o=n+d.snapElements[k].height;if(!(l-f=k&&g<=l||h>=k&&h<=l||gl)&&(e>=i&&e<=j||f>=i&&f<=j||ej);default:return!1}},a.ui.ddmanager={current:null,droppables:{"default":[]},prepareOffsets:function(b,c){var d=a.ui.ddmanager.droppables[b.options.scope]||[],e=c?c.type:null,f=(b.currentItem||b.element).find(":data(droppable)").andSelf();g:for(var h=0;h').css({position:this.element.css("position"),width:this.element.outerWidth(),height:this.element.outerHeight(),top:this.element.css("top"),left:this.element.css("left")})),this.element=this.element.parent().data("resizable",this.element.data("resizable")),this.elementIsWrapper=!0,this.element.css({marginLeft:this.originalElement.css("marginLeft"),marginTop:this.originalElement.css("marginTop"),marginRight:this.originalElement.css("marginRight"),marginBottom:this.originalElement.css("marginBottom")}),this.originalElement.css({marginLeft:0,marginTop:0,marginRight:0,marginBottom:0}),this.originalResizeStyle=this.originalElement.css("resize"),this.originalElement.css("resize","none"),this._proportionallyResizeElements.push(this.originalElement.css({position:"static",zoom:1,display:"block"})),this.originalElement.css({margin:this.originalElement.css("margin")}),this._proportionallyResize()),this.handles=c.handles||(a(".ui-resizable-handle",this.element).length?{n:".ui-resizable-n",e:".ui-resizable-e",s:".ui-resizable-s",w:".ui-resizable-w",se:".ui-resizable-se",sw:".ui-resizable-sw",ne:".ui-resizable-ne",nw:".ui-resizable-nw"}:"e,s,se");if(this.handles.constructor==String){this.handles=="all"&&(this.handles="n,e,s,w,se,sw,ne,nw");var d=this.handles.split(",");this.handles={};for(var e=0;e');h.css({zIndex:c.zIndex}),"se"==f&&h.addClass("ui-icon ui-icon-gripsmall-diagonal-se"),this.handles[f]=".ui-resizable-"+f,this.element.append(h)}}this._renderAxis=function(b){b=b||this.element;for(var c in this.handles){this.handles[c].constructor==String&&(this.handles[c]=a(this.handles[c],this.element).show());if(this.elementIsWrapper&&this.originalElement[0].nodeName.match(/textarea|input|select|button/i)){var d=a(this.handles[c],this.element),e=0;e=/sw|ne|nw|se|n|s/.test(c)?d.outerHeight():d.outerWidth();var f=["padding",/ne|nw|n/.test(c)?"Top":/se|sw|s/.test(c)?"Bottom":/^e$/.test(c)?"Right":"Left"].join("");b.css(f,e),this._proportionallyResize()}if(!a(this.handles[c]).length)continue}},this._renderAxis(this.element),this._handles=a(".ui-resizable-handle",this.element).disableSelection(),this._handles.mouseover(function(){if(!b.resizing){if(this.className)var a=this.className.match(/ui-resizable-(se|sw|ne|nw|n|e|s|w)/i);b.axis=a&&a[1]?a[1]:"se"}}),c.autoHide&&(this._handles.hide(),a(this.element).addClass("ui-resizable-autohide").hover(function(){if(c.disabled)return;a(this).removeClass("ui-resizable-autohide"),b._handles.show()},function(){if(c.disabled)return;b.resizing||(a(this).addClass("ui-resizable-autohide"),b._handles.hide())})),this._mouseInit()},destroy:function(){this._mouseDestroy();var b=function(b){a(b).removeClass("ui-resizable ui-resizable-disabled ui-resizable-resizing").removeData("resizable").unbind(".resizable").find(".ui-resizable-handle").remove()};if(this.elementIsWrapper){b(this.element);var c=this.element;c.after(this.originalElement.css({position:c.css("position"),width:c.outerWidth(),height:c.outerHeight(),top:c.css("top"),left:c.css("left")})).remove()}return this.originalElement.css("resize",this.originalResizeStyle),b(this.originalElement),this},_mouseCapture:function(b){var c=!1;for(var d in this.handles)a(this.handles[d])[0]==b.target&&(c=!0);return!this.options.disabled&&c},_mouseStart:function(b){var d=this.options,e=this.element.position(),f=this.element;this.resizing=!0,this.documentScroll={top:a(document).scrollTop(),left:a(document).scrollLeft()},(f.is(".ui-draggable")||/absolute/.test(f.css("position")))&&f.css({position:"absolute",top:e.top,left:e.left}),this._renderProxy();var g=c(this.helper.css("left")),h=c(this.helper.css("top"));d.containment&&(g+=a(d.containment).scrollLeft()||0,h+=a(d.containment).scrollTop()||0),this.offset=this.helper.offset(),this.position={left:g,top:h},this.size=this._helper?{width:f.outerWidth(),height:f.outerHeight()}:{width:f.width(),height:f.height()},this.originalSize=this._helper?{width:f.outerWidth(),height:f.outerHeight()}:{width:f.width(),height:f.height()},this.originalPosition={left:g,top:h},this.sizeDiff={width:f.outerWidth()-f.width(),height:f.outerHeight()-f.height()},this.originalMousePosition={left:b.pageX,top:b.pageY},this.aspectRatio=typeof d.aspectRatio=="number"?d.aspectRatio:this.originalSize.width/this.originalSize.height||1;var i=a(".ui-resizable-"+this.axis).css("cursor");return a("body").css("cursor",i=="auto"?this.axis+"-resize":i),f.addClass("ui-resizable-resizing"),this._propagate("start",b),!0},_mouseDrag:function(b){var c=this.helper,d=this.options,e={},f=this,g=this.originalMousePosition,h=this.axis,i=b.pageX-g.left||0,j=b.pageY-g.top||0,k=this._change[h];if(!k)return!1;var l=k.apply(this,[b,i,j]),m=a.browser.msie&&a.browser.version<7,n=this.sizeDiff;this._updateVirtualBoundaries(b.shiftKey);if(this._aspectRatio||b.shiftKey)l=this._updateRatio(l,b);return l=this._respectSize(l,b),this._propagate("resize",b),c.css({top:this.position.top+"px",left:this.position.left+"px",width:this.size.width+"px",height:this.size.height+"px"}),!this._helper&&this._proportionallyResizeElements.length&&this._proportionallyResize(),this._updateCache(l),this._trigger("resize",b,this.ui()),!1},_mouseStop:function(b){this.resizing=!1;var c=this.options,d=this;if(this._helper){var e=this._proportionallyResizeElements,f=e.length&&/textarea/i.test(e[0].nodeName),g=f&&a.ui.hasScroll(e[0],"left")?0:d.sizeDiff.height,h=f?0:d.sizeDiff.width,i={width:d.helper.width()-h,height:d.helper.height()-g},j=parseInt(d.element.css("left"),10)+(d.position.left-d.originalPosition.left)||null,k=parseInt(d.element.css("top"),10)+(d.position.top-d.originalPosition.top)||null;c.animate||this.element.css(a.extend(i,{top:k,left:j})),d.helper.height(d.size.height),d.helper.width(d.size.width),this._helper&&!c.animate&&this._proportionallyResize()}return a("body").css("cursor","auto"),this.element.removeClass("ui-resizable-resizing"),this._propagate("stop",b),this._helper&&this.helper.remove(),!1},_updateVirtualBoundaries:function(a){var b=this.options,c,e,f,g,h;h={minWidth:d(b.minWidth)?b.minWidth:0,maxWidth:d(b.maxWidth)?b.maxWidth:Infinity,minHeight:d(b.minHeight)?b.minHeight:0,maxHeight:d(b.maxHeight)?b.maxHeight:Infinity};if(this._aspectRatio||a)c=h.minHeight*this.aspectRatio,f=h.minWidth/this.aspectRatio,e=h.maxHeight*this.aspectRatio,g=h.maxWidth/this.aspectRatio,c>h.minWidth&&(h.minWidth=c),f>h.minHeight&&(h.minHeight=f),ea.width,k=d(a.height)&&e.minHeight&&e.minHeight>a.height;j&&(a.width=e.minWidth),k&&(a.height=e.minHeight),h&&(a.width=e.maxWidth),i&&(a.height=e.maxHeight);var l=this.originalPosition.left+this.originalSize.width,m=this.position.top+this.size.height,n=/sw|nw|w/.test(g),o=/nw|ne|n/.test(g);j&&n&&(a.left=l-e.minWidth),h&&n&&(a.left=l-e.maxWidth),k&&o&&(a.top=m-e.minHeight),i&&o&&(a.top=m-e.maxHeight);var p=!a.width&&!a.height;return p&&!a.left&&a.top?a.top=null:p&&!a.top&&a.left&&(a.left=null),a},_proportionallyResize:function(){var b=this.options;if(!this._proportionallyResizeElements.length)return;var c=this.helper||this.element;for(var d=0;d');var d=a.browser.msie&&a.browser.version<7,e=d?1:0,f=d?2:-1;this.helper.addClass(this._helper).css({width:this.element.outerWidth()+f,height:this.element.outerHeight()+f,position:"absolute",left:this.elementOffset.left-e+"px",top:this.elementOffset.top-e+"px",zIndex:++c.zIndex}),this.helper.appendTo("body").disableSelection()}else this.helper=this.element},_change:{e:function(a,b,c){return{width:this.originalSize.width+b}},w:function(a,b,c){var d=this.options,e=this.originalSize,f=this.originalPosition;return{left:f.left+b,width:e.width-b}},n:function(a,b,c){var d=this.options,e=this.originalSize,f=this.originalPosition;return{top:f.top+c,height:e.height-c}},s:function(a,b,c){return{height:this.originalSize.height+c}},se:function(b,c,d){return a.extend(this._change.s.apply(this,arguments),this._change.e.apply(this,[b,c,d]))},sw:function(b,c,d){return a.extend(this._change.s.apply(this,arguments),this._change.w.apply(this,[b,c,d]))},ne:function(b,c,d){return a.extend(this._change.n.apply(this,arguments),this._change.e.apply(this,[b,c,d]))},nw:function(b,c,d){return a.extend(this._change.n.apply(this,arguments),this._change.w.apply(this,[b,c,d]))}},_propagate:function(b,c){a.ui.plugin.call(this,b,[c,this.ui()]),b!="resize"&&this._trigger(b,c,this.ui())},plugins:{},ui:function(){return{originalElement:this.originalElement,element:this.element,helper:this.helper,position:this.position,size:this.size,originalSize:this.originalSize,originalPosition:this.originalPosition}}}),a.extend(a.ui.resizable,{version:"1.8.23"}),a.ui.plugin.add("resizable","alsoResize",{start:function(b,c){var d=a(this).data("resizable"),e=d.options,f=function(b){a(b).each(function(){var b=a(this);b.data("resizable-alsoresize",{width:parseInt(b.width(),10),height:parseInt(b.height(),10),left:parseInt(b.css("left"),10),top:parseInt(b.css("top"),10)})})};typeof e.alsoResize=="object"&&!e.alsoResize.parentNode?e.alsoResize.length?(e.alsoResize=e.alsoResize[0],f(e.alsoResize)):a.each(e.alsoResize,function(a){f(a)}):f(e.alsoResize)},resize:function(b,c){var d=a(this).data("resizable"),e=d.options,f=d.originalSize,g=d.originalPosition,h={height:d.size.height-f.height||0,width:d.size.width-f.width||0,top:d.position.top-g.top||0,left:d.position.left-g.left||0},i=function(b,d){a(b).each(function(){var b=a(this),e=a(this).data("resizable-alsoresize"),f={},g=d&&d.length?d:b.parents(c.originalElement[0]).length?["width","height"]:["width","height","top","left"];a.each(g,function(a,b){var c=(e[b]||0)+(h[b]||0);c&&c>=0&&(f[b]=c||null)}),b.css(f)})};typeof e.alsoResize=="object"&&!e.alsoResize.nodeType?a.each(e.alsoResize,function(a,b){i(a,b)}):i(e.alsoResize)},stop:function(b,c){a(this).removeData("resizable-alsoresize")}}),a.ui.plugin.add("resizable","animate",{stop:function(b,c){var d=a(this).data("resizable"),e=d.options,f=d._proportionallyResizeElements,g=f.length&&/textarea/i.test(f[0].nodeName),h=g&&a.ui.hasScroll(f[0],"left")?0:d.sizeDiff.height,i=g?0:d.sizeDiff.width,j={width:d.size.width-i,height:d.size.height-h},k=parseInt(d.element.css("left"),10)+(d.position.left-d.originalPosition.left)||null,l=parseInt(d.element.css("top"),10)+(d.position.top-d.originalPosition.top)||null;d.element.animate(a.extend(j,l&&k?{top:l,left:k}:{}),{duration:e.animateDuration,easing:e.animateEasing,step:function(){var c={width:parseInt(d.element.css("width"),10),height:parseInt(d.element.css("height"),10),top:parseInt(d.element.css("top"),10),left:parseInt(d.element.css("left"),10)};f&&f.length&&a(f[0]).css({width:c.width,height:c.height}),d._updateCache(c),d._propagate("resize",b)}})}}),a.ui.plugin.add("resizable","containment",{start:function(b,d){var e=a(this).data("resizable"),f=e.options,g=e.element,h=f.containment,i=h instanceof a?h.get(0):/parent/.test(h)?g.parent().get(0):h;if(!i)return;e.containerElement=a(i);if(/document/.test(h)||h==document)e.containerOffset={left:0,top:0},e.containerPosition={left:0,top:0},e.parentData={element:a(document),left:0,top:0,width:a(document).width(),height:a(document).height()||document.body.parentNode.scrollHeight};else{var j=a(i),k=[];a(["Top","Right","Left","Bottom"]).each(function(a,b){k[a]=c(j.css("padding"+b))}),e.containerOffset=j.offset(),e.containerPosition=j.position(),e.containerSize={height:j.innerHeight()-k[3],width:j.innerWidth()-k[1]};var l=e.containerOffset,m=e.containerSize.height,n=e.containerSize.width,o=a.ui.hasScroll(i,"left")?i.scrollWidth:n,p=a.ui.hasScroll(i)?i.scrollHeight:m;e.parentData={element:i,left:l.left,top:l.top,width:o,height:p}}},resize:function(b,c){var d=a(this).data("resizable"),e=d.options,f=d.containerSize,g=d.containerOffset,h=d.size,i=d.position,j=d._aspectRatio||b.shiftKey,k={top:0,left:0},l=d.containerElement;l[0]!=document&&/static/.test(l.css("position"))&&(k=g),i.left<(d._helper?g.left:0)&&(d.size.width=d.size.width+(d._helper?d.position.left-g.left:d.position.left-k.left),j&&(d.size.height=d.size.width/d.aspectRatio),d.position.left=e.helper?g.left:0),i.top<(d._helper?g.top:0)&&(d.size.height=d.size.height+(d._helper?d.position.top-g.top:d.position.top),j&&(d.size.width=d.size.height*d.aspectRatio),d.position.top=d._helper?g.top:0),d.offset.left=d.parentData.left+d.position.left,d.offset.top=d.parentData.top+d.position.top;var m=Math.abs((d._helper?d.offset.left-k.left:d.offset.left-k.left)+d.sizeDiff.width),n=Math.abs((d._helper?d.offset.top-k.top:d.offset.top-g.top)+d.sizeDiff.height),o=d.containerElement.get(0)==d.element.parent().get(0),p=/relative|absolute/.test(d.containerElement.css("position"));o&&p&&(m-=d.parentData.left),m+d.size.width>=d.parentData.width&&(d.size.width=d.parentData.width-m,j&&(d.size.height=d.size.width/d.aspectRatio)),n+d.size.height>=d.parentData.height&&(d.size.height=d.parentData.height-n,j&&(d.size.width=d.size.height*d.aspectRatio))},stop:function(b,c){var d=a(this).data("resizable"),e=d.options,f=d.position,g=d.containerOffset,h=d.containerPosition,i=d.containerElement,j=a(d.helper),k=j.offset(),l=j.outerWidth()-d.sizeDiff.width,m=j.outerHeight()-d.sizeDiff.height;d._helper&&!e.animate&&/relative/.test(i.css("position"))&&a(this).css({left:k.left-h.left-g.left,width:l,height:m}),d._helper&&!e.animate&&/static/.test(i.css("position"))&&a(this).css({left:k.left-h.left-g.left,width:l,height:m})}}),a.ui.plugin.add("resizable","ghost",{start:function(b,c){var d=a(this).data("resizable"),e=d.options,f=d.size;d.ghost=d.originalElement.clone(),d.ghost.css({opacity:.25,display:"block",position:"relative",height:f.height,width:f.width,margin:0,left:0,top:0}).addClass("ui-resizable-ghost").addClass(typeof e.ghost=="string"?e.ghost:""),d.ghost.appendTo(d.helper)},resize:function(b,c){var d=a(this).data("resizable"),e=d.options;d.ghost&&d.ghost.css({position:"relative",height:d.size.height,width:d.size.width})},stop:function(b,c){var d=a(this).data("resizable"),e=d.options;d.ghost&&d.helper&&d.helper.get(0).removeChild(d.ghost.get(0))}}),a.ui.plugin.add("resizable","grid",{resize:function(b,c){var d=a(this).data("resizable"),e=d.options,f=d.size,g=d.originalSize,h=d.originalPosition,i=d.axis,j=e._aspectRatio||b.shiftKey;e.grid=typeof e.grid=="number"?[e.grid,e.grid]:e.grid;var k=Math.round((f.width-g.width)/(e.grid[0]||1))*(e.grid[0]||1),l=Math.round((f.height-g.height)/(e.grid[1]||1))*(e.grid[1]||1);/^(se|s|e)$/.test(i)?(d.size.width=g.width+k,d.size.height=g.height+l):/^(ne)$/.test(i)?(d.size.width=g.width+k,d.size.height=g.height+l,d.position.top=h.top-l):/^(sw)$/.test(i)?(d.size.width=g.width+k,d.size.height=g.height+l,d.position.left=h.left-k):(d.size.width=g.width+k,d.size.height=g.height+l,d.position.top=h.top-l,d.position.left=h.left-k)}});var c=function(a){return parseInt(a,10)||0},d=function(a){return!isNaN(parseInt(a,10))}}(jQuery),function(a,b){a.widget("ui.selectable",a.ui.mouse,{options:{appendTo:"body",autoRefresh:!0,distance:0,filter:"*",tolerance:"touch"},_create:function(){var b=this;this.element.addClass("ui-selectable"),this.dragged=!1;var c;this.refresh=function(){c=a(b.options.filter,b.element[0]),c.addClass("ui-selectee"),c.each(function(){var b=a(this),c=b.offset();a.data(this,"selectable-item",{element:this,$element:b,left:c.left,top:c.top,right:c.left+b.outerWidth(),bottom:c.top+b.outerHeight(),startselected:!1,selected:b.hasClass("ui-selected"),selecting:b.hasClass("ui-selecting"),unselecting:b.hasClass("ui-unselecting")})})},this.refresh(),this.selectees=c.addClass("ui-selectee"),this._mouseInit(),this.helper=a("
      ")},destroy:function(){return this.selectees.removeClass("ui-selectee").removeData("selectable-item"),this.element.removeClass("ui-selectable ui-selectable-disabled").removeData("selectable").unbind(".selectable"),this._mouseDestroy(),this},_mouseStart:function(b){var c=this;this.opos=[b.pageX,b.pageY];if(this.options.disabled)return;var d=this.options;this.selectees=a(d.filter,this.element[0]),this._trigger("start",b),a(d.appendTo).append(this.helper),this.helper.css({left:b.clientX,top:b.clientY,width:0,height:0}),d.autoRefresh&&this.refresh(),this.selectees.filter(".ui-selected").each(function(){var d=a.data(this,"selectable-item");d.startselected=!0,!b.metaKey&&!b.ctrlKey&&(d.$element.removeClass("ui-selected"),d.selected=!1,d.$element.addClass("ui-unselecting"),d.unselecting=!0,c._trigger("unselecting",b,{unselecting:d.element}))}),a(b.target).parents().andSelf().each(function(){var d=a.data(this,"selectable-item");if(d){var e=!b.metaKey&&!b.ctrlKey||!d.$element.hasClass("ui-selected");return d.$element.removeClass(e?"ui-unselecting":"ui-selected").addClass(e?"ui-selecting":"ui-unselecting"),d.unselecting=!e,d.selecting=e,d.selected=e,e?c._trigger("selecting",b,{selecting:d.element}):c._trigger("unselecting",b,{unselecting:d.element}),!1}})},_mouseDrag:function(b){var c=this;this.dragged=!0;if(this.options.disabled)return;var d=this.options,e=this.opos[0],f=this.opos[1],g=b.pageX,h=b.pageY;if(e>g){var i=g;g=e,e=i}if(f>h){var i=h;h=f,f=i}return this.helper.css({left:e,top:f,width:g-e,height:h-f}),this.selectees.each(function(){var i=a.data(this,"selectable-item");if(!i||i.element==c.element[0])return;var j=!1;d.tolerance=="touch"?j=!(i.left>g||i.righth||i.bottome&&i.rightf&&i.bottom *",opacity:!1,placeholder:!1,revert:!1,scroll:!0,scrollSensitivity:20,scrollSpeed:20,scope:"default",tolerance:"intersect",zIndex:1e3},_create:function(){var a=this.options;this.containerCache={},this.element.addClass("ui-sortable"),this.refresh(),this.floating=this.items.length?a.axis==="x"||/left|right/.test(this.items[0].item.css("float"))||/inline|table-cell/.test(this.items[0].item.css("display")):!1,this.offset=this.element.offset(),this._mouseInit(),this.ready=!0},destroy:function(){a.Widget.prototype.destroy.call(this),this.element.removeClass("ui-sortable ui-sortable-disabled"),this._mouseDestroy();for(var b=this.items.length-1;b>=0;b--)this.items[b].item.removeData(this.widgetName+"-item");return this},_setOption:function(b,c){b==="disabled"?(this.options[b]=c,this.widget()[c?"addClass":"removeClass"]("ui-sortable-disabled")):a.Widget.prototype._setOption.apply(this,arguments)},_mouseCapture:function(b,c){var d=this;if(this.reverting)return!1;if(this.options.disabled||this.options.type=="static")return!1;this._refreshItems(b);var e=null,f=this,g=a(b.target).parents().each(function(){if(a.data(this,d.widgetName+"-item")==f)return e=a(this),!1});a.data(b.target,d.widgetName+"-item")==f&&(e=a(b.target));if(!e)return!1;if(this.options.handle&&!c){var h=!1;a(this.options.handle,e).find("*").andSelf().each(function(){this==b.target&&(h=!0)});if(!h)return!1}return this.currentItem=e,this._removeCurrentsFromItems(),!0},_mouseStart:function(b,c,d){var e=this.options,f=this;this.currentContainer=this,this.refreshPositions(),this.helper=this._createHelper(b),this._cacheHelperProportions(),this._cacheMargins(),this.scrollParent=this.helper.scrollParent(),this.offset=this.currentItem.offset(),this.offset={top:this.offset.top-this.margins.top,left:this.offset.left-this.margins.left},a.extend(this.offset,{click:{left:b.pageX-this.offset.left,top:b.pageY-this.offset.top},parent:this._getParentOffset(),relative:this._getRelativeOffset()}),this.helper.css("position","absolute"),this.cssPosition=this.helper.css("position"),this.originalPosition=this._generatePosition(b),this.originalPageX=b.pageX,this.originalPageY=b.pageY,e.cursorAt&&this._adjustOffsetFromHelper(e.cursorAt),this.domPosition={prev:this.currentItem.prev()[0],parent:this.currentItem.parent()[0]},this.helper[0]!=this.currentItem[0]&&this.currentItem.hide(),this._createPlaceholder(),e.containment&&this._setContainment(),e.cursor&&(a("body").css("cursor")&&(this._storedCursor=a("body").css("cursor")),a("body").css("cursor",e.cursor)),e.opacity&&(this.helper.css("opacity")&&(this._storedOpacity=this.helper.css("opacity")),this.helper.css("opacity",e.opacity)),e.zIndex&&(this.helper.css("zIndex")&&(this._storedZIndex=this.helper.css("zIndex")),this.helper.css("zIndex",e.zIndex)),this.scrollParent[0]!=document&&this.scrollParent[0].tagName!="HTML"&&(this.overflowOffset=this.scrollParent.offset()),this._trigger("start",b,this._uiHash()),this._preserveHelperProportions||this._cacheHelperProportions();if(!d)for(var g=this.containers.length-1;g>=0;g--)this.containers[g]._trigger("activate",b,f._uiHash(this));return a.ui.ddmanager&&(a.ui.ddmanager.current=this),a.ui.ddmanager&&!e.dropBehaviour&&a.ui.ddmanager.prepareOffsets(this,b),this.dragging=!0,this.helper.addClass("ui-sortable-helper"),this._mouseDrag(b),!0},_mouseDrag:function(b){this.position=this._generatePosition(b),this.positionAbs=this._convertPositionTo("absolute"),this.lastPositionAbs||(this.lastPositionAbs=this.positionAbs);if(this.options.scroll){var c=this.options,d=!1;this.scrollParent[0]!=document&&this.scrollParent[0].tagName!="HTML"?(this.overflowOffset.top+this.scrollParent[0].offsetHeight-b.pageY=0;e--){var f=this.items[e],g=f.item[0],h=this._intersectsWithPointer(f);if(!h)continue;if(g!=this.currentItem[0]&&this.placeholder[h==1?"next":"prev"]()[0]!=g&&!a.ui.contains(this.placeholder[0],g)&&(this.options.type=="semi-dynamic"?!a.ui.contains(this.element[0],g):!0)){this.direction=h==1?"down":"up";if(this.options.tolerance=="pointer"||this._intersectsWithSides(f))this._rearrange(b,f);else break;this._trigger("change",b,this._uiHash());break}}return this._contactContainers(b),a.ui.ddmanager&&a.ui.ddmanager.drag(this,b),this._trigger("sort",b,this._uiHash()),this.lastPositionAbs=this.positionAbs,!1},_mouseStop:function(b,c){if(!b)return;a.ui.ddmanager&&!this.options.dropBehaviour&&a.ui.ddmanager.drop(this,b);if(this.options.revert){var d=this,e=d.placeholder.offset();d.reverting=!0,a(this.helper).animate({left:e.left-this.offset.parent.left-d.margins.left+(this.offsetParent[0]==document.body?0:this.offsetParent[0].scrollLeft),top:e.top-this.offset.parent.top-d.margins.top+(this.offsetParent[0]==document.body?0:this.offsetParent[0].scrollTop)},parseInt(this.options.revert,10)||500,function(){d._clear(b)})}else this._clear(b,c);return!1},cancel:function(){var b=this;if(this.dragging){this._mouseUp({target:null}),this.options.helper=="original"?this.currentItem.css(this._storedCSS).removeClass("ui-sortable-helper"):this.currentItem.show();for(var c=this.containers.length-1;c>=0;c--)this.containers[c]._trigger("deactivate",null,b._uiHash(this)),this.containers[c].containerCache.over&&(this.containers[c]._trigger("out",null,b._uiHash(this)),this.containers[c].containerCache.over=0)}return this.placeholder&&(this.placeholder[0].parentNode&&this.placeholder[0].parentNode.removeChild(this.placeholder[0]),this.options.helper!="original"&&this.helper&&this.helper[0].parentNode&&this.helper.remove(),a.extend(this,{helper:null,dragging:!1,reverting:!1,_noFinalSort:null}),this.domPosition.prev?a(this.domPosition.prev).after(this.currentItem):a(this.domPosition.parent).prepend(this.currentItem)),this},serialize:function(b){var c=this._getItemsAsjQuery(b&&b.connected),d=[];return b=b||{},a(c).each(function(){var c=(a(b.item||this).attr(b.attribute||"id")||"").match(b.expression||/(.+)[-=_](.+)/);c&&d.push((b.key||c[1]+"[]")+"="+(b.key&&b.expression?c[1]:c[2]))}),!d.length&&b.key&&d.push(b.key+"="),d.join("&")},toArray:function(b){var c=this._getItemsAsjQuery(b&&b.connected),d=[];return b=b||{},c.each(function(){d.push(a(b.item||this).attr(b.attribute||"id")||"")}),d},_intersectsWith:function(a){var b=this.positionAbs.left,c=b+this.helperProportions.width,d=this.positionAbs.top,e=d+this.helperProportions.height,f=a.left,g=f+a.width,h=a.top,i=h+a.height,j=this.offset.click.top,k=this.offset.click.left,l=d+j>h&&d+jf&&b+ka[this.floating?"width":"height"]?l:f0?"down":"up")},_getDragHorizontalDirection:function(){var a=this.positionAbs.left-this.lastPositionAbs.left;return a!=0&&(a>0?"right":"left")},refresh:function(a){return this._refreshItems(a),this.refreshPositions(),this},_connectWith:function(){var a=this.options;return a.connectWith.constructor==String?[a.connectWith]:a.connectWith},_getItemsAsjQuery:function(b){var c=this,d=[],e=[],f=this._connectWith();if(f&&b)for(var g=f.length-1;g>=0;g--){var h=a(f[g]);for(var i=h.length-1;i>=0;i--){var j=a.data(h[i],this.widgetName);j&&j!=this&&!j.options.disabled&&e.push([a.isFunction(j.options.items)?j.options.items.call(j.element):a(j.options.items,j.element).not(".ui-sortable-helper").not(".ui-sortable-placeholder"),j])}}e.push([a.isFunction(this.options.items)?this.options.items.call(this.element,null,{options:this.options,item:this.currentItem}):a(this.options.items,this.element).not(".ui-sortable-helper").not(".ui-sortable-placeholder"),this]);for(var g=e.length-1;g>=0;g--)e[g][0].each(function(){d.push(this)});return a(d)},_removeCurrentsFromItems:function(){var a=this.currentItem.find(":data("+this.widgetName+"-item)");for(var b=0;b=0;g--){var h=a(f[g]);for(var i=h.length-1;i>=0;i--){var j=a.data(h[i],this.widgetName);j&&j!=this&&!j.options.disabled&&(e.push([a.isFunction(j.options.items)?j.options.items.call(j.element[0],b,{item:this.currentItem}):a(j.options.items,j.element),j]),this.containers.push(j))}}for(var g=e.length-1;g>=0;g--){var k=e[g][1],l=e[g][0];for(var i=0,m=l.length;i=0;c--){var d=this.items[c];if(d.instance!=this.currentContainer&&this.currentContainer&&d.item[0]!=this.currentItem[0])continue;var e=this.options.toleranceElement?a(this.options.toleranceElement,d.item):d.item;b||(d.width=e.outerWidth(),d.height=e.outerHeight());var f=e.offset();d.left=f.left,d.top=f.top}if(this.options.custom&&this.options.custom.refreshContainers)this.options.custom.refreshContainers.call(this);else for(var c=this.containers.length-1;c>=0;c--){var f=this.containers[c].element.offset();this.containers[c].containerCache.left=f.left,this.containers[c].containerCache.top=f.top,this.containers[c].containerCache.width=this.containers[c].element.outerWidth(),this.containers[c].containerCache.height=this.containers[c].element.outerHeight()}return this},_createPlaceholder:function(b){var c=b||this,d=c.options;if(!d.placeholder||d.placeholder.constructor==String){var e=d.placeholder;d.placeholder={element:function(){var b=a(document.createElement(c.currentItem[0].nodeName)).addClass(e||c.currentItem[0].className+" ui-sortable-placeholder").removeClass("ui-sortable-helper")[0];return e||(b.style.visibility="hidden"),b},update:function(a,b){if(e&&!d.forcePlaceholderSize)return;b.height()||b.height(c.currentItem.innerHeight()-parseInt(c.currentItem.css("paddingTop")||0,10)-parseInt(c.currentItem.css("paddingBottom")||0,10)),b.width()||b.width(c.currentItem.innerWidth()-parseInt(c.currentItem.css("paddingLeft")||0,10)-parseInt(c.currentItem.css("paddingRight")||0,10))}}}c.placeholder=a(d.placeholder.element.call(c.element,c.currentItem)),c.currentItem.after(c.placeholder),d.placeholder.update(c,c.placeholder)},_contactContainers:function(b){var c=null,d=null;for(var e=this.containers.length-1;e>=0;e--){if(a.ui.contains(this.currentItem[0],this.containers[e].element[0]))continue;if(this._intersectsWith(this.containers[e].containerCache)){if(c&&a.ui.contains(this.containers[e].element[0],c.element[0]))continue;c=this.containers[e],d=e}else this.containers[e].containerCache.over&&(this.containers[e]._trigger("out",b,this._uiHash(this)),this.containers[e].containerCache.over=0)}if(!c)return;if(this.containers.length===1)this.containers[d]._trigger("over",b,this._uiHash(this)),this.containers[d].containerCache.over=1;else if(this.currentContainer!=this.containers[d]){var f=1e4,g=null,h=this.positionAbs[this.containers[d].floating?"left":"top"];for(var i=this.items.length-1;i>=0;i--){if(!a.ui.contains(this.containers[d].element[0],this.items[i].item[0]))continue;var j=this.containers[d].floating?this.items[i].item.offset().left:this.items[i].item.offset().top;Math.abs(j-h)0?"down":"up")}if(!g&&!this.options.dropOnEmpty)return;this.currentContainer=this.containers[d],g?this._rearrange(b,g,null,!0):this._rearrange(b,null,this.containers[d].element,!0),this._trigger("change",b,this._uiHash()),this.containers[d]._trigger("change",b,this._uiHash(this)),this.options.placeholder.update(this.currentContainer,this.placeholder),this.containers[d]._trigger("over",b,this._uiHash(this)),this.containers[d].containerCache.over=1}},_createHelper:function(b){var c=this.options,d=a.isFunction(c.helper)?a(c.helper.apply(this.element[0],[b,this.currentItem])):c.helper=="clone"?this.currentItem.clone():this.currentItem;return d.parents("body").length||a(c.appendTo!="parent"?c.appendTo:this.currentItem[0].parentNode)[0].appendChild(d[0]),d[0]==this.currentItem[0]&&(this._storedCSS={width:this.currentItem[0].style.width,height:this.currentItem[0].style.height,position:this.currentItem.css("position"),top:this.currentItem.css("top"),left:this.currentItem.css("left")}),(d[0].style.width==""||c.forceHelperSize)&&d.width(this.currentItem.width()),(d[0].style.height==""||c.forceHelperSize)&&d.height(this.currentItem.height()),d},_adjustOffsetFromHelper:function(b){typeof b=="string"&&(b=b.split(" ")),a.isArray(b)&&(b={left:+b[0],top:+b[1]||0}),"left"in b&&(this.offset.click.left=b.left+this.margins.left),"right"in b&&(this.offset.click.left=this.helperProportions.width-b.right+this.margins.left),"top"in b&&(this.offset.click.top=b.top+this.margins.top),"bottom"in b&&(this.offset.click.top=this.helperProportions.height-b.bottom+this.margins.top)},_getParentOffset:function(){this.offsetParent=this.helper.offsetParent();var b=this.offsetParent.offset();this.cssPosition=="absolute"&&this.scrollParent[0]!=document&&a.ui.contains(this.scrollParent[0],this.offsetParent[0])&&(b.left+=this.scrollParent.scrollLeft(),b.top+=this.scrollParent.scrollTop());if(this.offsetParent[0]==document.body||this.offsetParent[0].tagName&&this.offsetParent[0].tagName.toLowerCase()=="html"&&a.browser.msie)b={top:0,left:0};return{top:b.top+(parseInt(this.offsetParent.css("borderTopWidth"),10)||0),left:b.left+(parseInt(this.offsetParent.css("borderLeftWidth"),10)||0)}},_getRelativeOffset:function(){if(this.cssPosition=="relative"){var a=this.currentItem.position();return{top:a.top-(parseInt(this.helper.css("top"),10)||0)+this.scrollParent.scrollTop(),left:a.left-(parseInt(this.helper.css("left"),10)||0)+this.scrollParent.scrollLeft()}}return{top:0,left:0}},_cacheMargins:function(){this.margins={left:parseInt(this.currentItem.css("marginLeft"),10)||0,top:parseInt(this.currentItem.css("marginTop"),10)||0}},_cacheHelperProportions:function(){this.helperProportions={width:this.helper.outerWidth(),height:this.helper.outerHeight()}},_setContainment:function(){var b=this.options;b.containment=="parent"&&(b.containment=this.helper[0].parentNode);if(b.containment=="document"||b.containment=="window")this.containment=[0-this.offset.relative.left-this.offset.parent.left,0-this.offset.relative.top-this.offset.parent.top,a(b.containment=="document"?document:window).width()-this.helperProportions.width-this.margins.left,(a(b.containment=="document"?document:window).height()||document.body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top];if(!/^(document|window|parent)$/.test(b.containment)){var c=a(b.containment)[0],d=a(b.containment).offset(),e=a(c).css("overflow")!="hidden";this.containment=[d.left+(parseInt(a(c).css("borderLeftWidth"),10)||0)+(parseInt(a(c).css("paddingLeft"),10)||0)-this.margins.left,d.top+(parseInt(a(c).css("borderTopWidth"),10)||0)+(parseInt(a(c).css("paddingTop"),10)||0)-this.margins.top,d.left+(e?Math.max(c.scrollWidth,c.offsetWidth):c.offsetWidth)-(parseInt(a(c).css("borderLeftWidth"),10)||0)-(parseInt(a(c).css("paddingRight"),10)||0)-this.helperProportions.width-this.margins.left,d.top+(e?Math.max(c.scrollHeight,c.offsetHeight):c.offsetHeight)-(parseInt(a(c).css("borderTopWidth"),10)||0)-(parseInt(a(c).css("paddingBottom"),10)||0)-this.helperProportions.height-this.margins.top]}},_convertPositionTo:function(b,c){c||(c=this.position);var d=b=="absolute"?1:-1,e=this.options,f=this.cssPosition=="absolute"&&(this.scrollParent[0]==document||!a.ui.contains(this.scrollParent[0],this.offsetParent[0]))?this.offsetParent:this.scrollParent,g=/(html|body)/i.test(f[0].tagName);return{top:c.top+this.offset.relative.top*d+this.offset.parent.top*d-(a.browser.safari&&this.cssPosition=="fixed"?0:(this.cssPosition=="fixed"?-this.scrollParent.scrollTop():g?0:f.scrollTop())*d),left:c.left+this.offset.relative.left*d+this.offset.parent.left*d-(a.browser.safari&&this.cssPosition=="fixed"?0:(this.cssPosition=="fixed"?-this.scrollParent.scrollLeft():g?0:f.scrollLeft())*d)}},_generatePosition:function(b){var c=this.options,d=this.cssPosition=="absolute"&&(this.scrollParent[0]==document||!a.ui.contains(this.scrollParent[0],this.offsetParent[0]))?this.offsetParent:this.scrollParent,e=/(html|body)/i.test(d[0].tagName);this.cssPosition=="relative"&&(this.scrollParent[0]==document||this.scrollParent[0]==this.offsetParent[0])&&(this.offset.relative=this._getRelativeOffset());var f=b.pageX,g=b.pageY;if(this.originalPosition){this.containment&&(b.pageX-this.offset.click.leftthis.containment[2]&&(f=this.containment[2]+this.offset.click.left),b.pageY-this.offset.click.top>this.containment[3]&&(g=this.containment[3]+this.offset.click.top));if(c.grid){var h=this.originalPageY+Math.round((g-this.originalPageY)/c.grid[1])*c.grid[1];g=this.containment?h-this.offset.click.topthis.containment[3]?h-this.offset.click.topthis.containment[2]?i-this.offset.click.left=0;f--)a.ui.contains(this.containers[f].element[0],this.currentItem[0])&&!c&&(d.push(function(a){return function(b){a._trigger("receive",b,this._uiHash(this))}}.call(this,this.containers[f])),d.push(function(a){return function(b){a._trigger("update",b,this._uiHash(this))}}.call(this,this.containers[f])))}for(var f=this.containers.length-1;f>=0;f--)c||d.push(function(a){return function(b){a._trigger("deactivate",b,this._uiHash(this))}}.call(this,this.containers[f])),this.containers[f].containerCache.over&&(d.push(function(a){return function(b){a._trigger("out",b,this._uiHash(this))}}.call(this,this.containers[f])),this.containers[f].containerCache.over=0);this._storedCursor&&a("body").css("cursor",this._storedCursor),this._storedOpacity&&this.helper.css("opacity",this._storedOpacity),this._storedZIndex&&this.helper.css("zIndex",this._storedZIndex=="auto"?"":this._storedZIndex),this.dragging=!1;if(this.cancelHelperRemoval){if(!c){this._trigger("beforeStop",b,this._uiHash());for(var f=0;f").addClass("ui-effects-wrapper").css({fontSize:"100%",background:"transparent",border:"none",margin:0,padding:0}),e=document.activeElement;try{e.id}catch(f){e=document.body}return b.wrap(d),(b[0]===e||a.contains(b[0],e))&&a(e).focus(),d=b.parent(),b.css("position")=="static"?(d.css({position:"relative"}),b.css({position:"relative"})):(a.extend(c,{position:b.css("position"),zIndex:b.css("z-index")}),a.each(["top","left","bottom","right"],function(a,d){c[d]=b.css(d),isNaN(parseInt(c[d],10))&&(c[d]="auto")}),b.css({position:"relative",top:0,left:0,right:"auto",bottom:"auto"})),d.css(c).show()},removeWrapper:function(b){var c,d=document.activeElement;return b.parent().is(".ui-effects-wrapper")?(c=b.parent().replaceWith(b),(b[0]===d||a.contains(b[0],d))&&a(d).focus(),c):b},setTransition:function(b,c,d,e){return e=e||{},a.each(c,function(a,c){var f=b.cssUnit(c);f[0]>0&&(e[c]=f[0]*d+f[1])}),e}}),a.fn.extend({effect:function(b,c,d,e){var f=k.apply(this,arguments),g={options:f[1],duration:f[2],callback:f[3]},h=g.options.mode,i=a.effects[b];return a.fx.off||!i?h?this[h](g.duration,g.callback):this.each(function(){g.callback&&g.callback.call(this)}):i.call(this,g)},_show:a.fn.show,show:function(a){if(l(a))return this._show.apply(this,arguments);var b=k.apply(this,arguments);return b[1].mode="show",this.effect.apply(this,b)},_hide:a.fn.hide,hide:function(a){if(l(a))return this._hide.apply(this,arguments);var b=k.apply(this,arguments);return b[1].mode="hide",this.effect.apply(this,b)},__toggle:a.fn.toggle,toggle:function(b){if(l(b)||typeof b=="boolean"||a.isFunction(b))return this.__toggle.apply(this,arguments);var c=k.apply(this,arguments);return c[1].mode="toggle",this.effect.apply(this,c)},cssUnit:function(b){var c=this.css(b),d=[];return a.each(["em","px","%","pt"],function(a,b){c.indexOf(b)>0&&(d=[parseFloat(c),b])}),d}});var m={};a.each(["Quad","Cubic","Quart","Quint","Expo"],function(a,b){m[b]=function(b){return Math.pow(b,a+2)}}),a.extend(m,{Sine:function(a){return 1-Math.cos(a*Math.PI/2)},Circ:function(a){return 1-Math.sqrt(1-a*a)},Elastic:function(a){return a===0||a===1?a:-Math.pow(2,8*(a-1))*Math.sin(((a-1)*80-7.5)*Math.PI/15)},Back:function(a){return a*a*(3*a-2)},Bounce:function(a){var b,c=4;while(a<((b=Math.pow(2,--c))-1)/11);return 1/Math.pow(4,3-c)-7.5625*Math.pow((b*3-2)/22-a,2)}}),a.each(m,function(b,c){a.easing["easeIn"+b]=c,a.easing["easeOut"+b]=function(a){return 1-c(1-a)},a.easing["easeInOut"+b]=function(a){return a<.5?c(a*2)/2:c(a*-2+2)/-2+1}})}(jQuery),function(a,b){a.effects.blind=function(b){return this.queue(function(){var c=a(this),d=["position","top","bottom","left","right"],e=a.effects.setMode(c,b.options.mode||"hide"),f=b.options.direction||"vertical";a.effects.save(c,d),c.show();var g=a.effects.createWrapper(c).css({overflow:"hidden"}),h=f=="vertical"?"height":"width",i=f=="vertical"?g.height():g.width();e=="show"&&g.css(h,0);var j={};j[h]=e=="show"?i:0,g.animate(j,b.duration,b.options.easing,function(){e=="hide"&&c.hide(),a.effects.restore(c,d),a.effects.removeWrapper(c),b.callback&&b.callback.apply(c[0],arguments),c.dequeue()})})}}(jQuery),function(a,b){a.effects.bounce=function(b){return this.queue(function(){var c=a(this),d=["position","top","bottom","left","right"],e=a.effects.setMode(c,b.options.mode||"effect"),f=b.options.direction||"up",g=b.options.distance||20,h=b.options.times||5,i=b.duration||250;/show|hide/.test(e)&&d.push("opacity"),a.effects.save(c,d),c.show(),a.effects.createWrapper(c);var j=f=="up"||f=="down"?"top":"left",k=f=="up"||f=="left"?"pos":"neg",g=b.options.distance||(j=="top"?c.outerHeight(!0)/3:c.outerWidth(!0)/3);e=="show"&&c.css("opacity",0).css(j,k=="pos"?-g:g),e=="hide"&&(g=g/(h*2)),e!="hide"&&h--;if(e=="show"){var l={opacity:1};l[j]=(k=="pos"?"+=":"-=")+g,c.animate(l,i/2,b.options.easing),g=g/2,h--}for(var m=0;m").css({position:"absolute",visibility:"visible",left:-j*(g/d),top:-i*(h/c)}).parent().addClass("ui-effects-explode").css({position:"absolute",overflow:"hidden",width:g/d,height:h/c,left:f.left+j*(g/d)+(b.options.mode=="show"?(j-Math.floor(d/2))*(g/d):0),top:f.top+i*(h/c)+(b.options.mode=="show"?(i-Math.floor(c/2))*(h/c):0),opacity:b.options.mode=="show"?0:1}).animate({left:f.left+j*(g/d)+(b.options.mode=="show"?0:(j-Math.floor(d/2))*(g/d)),top:f.top+i*(h/c)+(b.options.mode=="show"?0:(i-Math.floor(c/2))*(h/c)),opacity:b.options.mode=="show"?1:0},b.duration||500);setTimeout(function(){b.options.mode=="show"?e.css({visibility:"visible"}):e.css({visibility:"visible"}).hide(),b.callback&&b.callback.apply(e[0]),e.dequeue(),a("div.ui-effects-explode").remove()},b.duration||500)})}}(jQuery),function(a,b){a.effects.fade=function(b){return this.queue(function(){var c=a(this),d=a.effects.setMode(c,b.options.mode||"hide");c.animate({opacity:d},{queue:!1,duration:b.duration,easing:b.options.easing,complete:function(){b.callback&&b.callback.apply(this,arguments),c.dequeue()}})})}}(jQuery),function(a,b){a.effects.fold=function(b){return this.queue(function(){var c=a(this),d=["position","top","bottom","left","right"],e=a.effects.setMode(c,b.options.mode||"hide"),f=b.options.size||15,g=!!b.options.horizFirst,h=b.duration?b.duration/2:a.fx.speeds._default/2;a.effects.save(c,d),c.show();var i=a.effects.createWrapper(c).css({overflow:"hidden"}),j=e=="show"!=g,k=j?["width","height"]:["height","width"],l=j?[i.width(),i.height()]:[i.height(),i.width()],m=/([0-9]+)%/.exec(f);m&&(f=parseInt(m[1],10)/100*l[e=="hide"?0:1]),e=="show"&&i.css(g?{height:0,width:f}:{height:f,width:0});var n={},p={};n[k[0]]=e=="show"?l[0]:f,p[k[1]]=e=="show"?l[1]:0,i.animate(n,h,b.options.easing).animate(p,h,b.options.easing,function(){e=="hide"&&c.hide(),a.effects.restore(c,d),a.effects.removeWrapper(c),b.callback&&b.callback.apply(c[0],arguments),c.dequeue()})})}}(jQuery),function(a,b){a.effects.highlight=function(b){return this.queue(function(){var c=a(this),d=["backgroundImage","backgroundColor","opacity"],e=a.effects.setMode(c,b.options.mode||"show"),f={backgroundColor:c.css("backgroundColor")};e=="hide"&&(f.opacity=0),a.effects.save(c,d),c.show().css({backgroundImage:"none",backgroundColor:b.options.color||"#ffff99"}).animate(f,{queue:!1,duration:b.duration,easing:b.options.easing,complete:function(){e=="hide"&&c.hide(),a.effects.restore(c,d),e=="show"&&!a.support.opacity&&this.style.removeAttribute("filter"),b.callback&&b.callback.apply(this,arguments),c.dequeue()}})})}}(jQuery),function(a,b){a.effects.pulsate=function(b){return this.queue(function(){var c=a(this),d=a.effects.setMode(c,b.options.mode||"show"),e=(b.options.times||5)*2-1,f=b.duration?b.duration/2:a.fx.speeds._default/2,g=c.is(":visible"),h=0;g||(c.css("opacity",0).show(),h=1),(d=="hide"&&g||d=="show"&&!g)&&e--;for(var i=0;i').appendTo(document.body).addClass(b.options.className).css({top:g.top,left:g.left,height:c.innerHeight(),width:c.innerWidth(),position:"absolute"}).animate(f,b.duration,b.options.easing,function(){h.remove(),b.callback&&b.callback.apply(c[0],arguments),c.dequeue()})})}}(jQuery),function(a,b){a.widget("ui.accordion",{options:{active:0,animated:"slide",autoHeight:!0,clearStyle:!1,collapsible:!1,event:"click",fillSpace:!1,header:"> li > :first-child,> :not(li):even",icons:{header:"ui-icon-triangle-1-e",headerSelected:"ui-icon-triangle-1-s"},navigation:!1,navigationFilter:function(){return this.href.toLowerCase()===location.href.toLowerCase()}},_create:function(){var b=this,c=b.options;b.running=0,b.element.addClass("ui-accordion ui-widget ui-helper-reset").children("li").addClass("ui-accordion-li-fix"),b.headers=b.element.find(c.header).addClass("ui-accordion-header ui-helper-reset ui-state-default ui-corner-all").bind("mouseenter.accordion",function(){if(c.disabled)return;a(this).addClass("ui-state-hover")}).bind("mouseleave.accordion",function(){if(c.disabled)return;a(this).removeClass("ui-state-hover")}).bind("focus.accordion",function(){if(c.disabled)return;a(this).addClass("ui-state-focus")}).bind("blur.accordion",function(){if(c.disabled)return;a(this).removeClass("ui-state-focus")}),b.headers.next().addClass("ui-accordion-content ui-helper-reset ui-widget-content ui-corner-bottom");if(c.navigation){var d=b.element.find("a").filter(c.navigationFilter).eq(0);if(d.length){var e=d.closest(".ui-accordion-header");e.length?b.active=e:b.active=d.closest(".ui-accordion-content").prev()}}b.active=b._findActive(b.active||c.active).addClass("ui-state-default ui-state-active").toggleClass("ui-corner-all").toggleClass("ui-corner-top"),b.active.next().addClass("ui-accordion-content-active"),b._createIcons(),b.resize(),b.element.attr("role","tablist"),b.headers.attr("role","tab").bind("keydown.accordion",function(a){return b._keydown(a)}).next().attr("role","tabpanel"),b.headers.not(b.active||"").attr({"aria-expanded":"false","aria-selected":"false",tabIndex:-1}).next().hide(),b.active.length?b.active.attr({"aria-expanded":"true","aria-selected":"true",tabIndex:0}):b.headers.eq(0).attr("tabIndex",0),a.browser.safari||b.headers.find("a").attr("tabIndex",-1),c.event&&b.headers.bind(c.event.split(" ").join(".accordion ")+".accordion",function(a){b._clickHandler.call(b,a,this),a.preventDefault()})},_createIcons:function(){var b=this.options;b.icons&&(a("").addClass("ui-icon "+b.icons.header).prependTo(this.headers),this.active.children(".ui-icon").toggleClass(b.icons.header).toggleClass(b.icons.headerSelected),this.element.addClass("ui-accordion-icons"))},_destroyIcons:function(){this.headers.children(".ui-icon").remove(),this.element.removeClass("ui-accordion-icons")},destroy:function(){var b=this.options;this.element.removeClass("ui-accordion ui-widget ui-helper-reset").removeAttr("role"),this.headers.unbind(".accordion").removeClass("ui-accordion-header ui-accordion-disabled ui-helper-reset ui-state-default ui-corner-all ui-state-active ui-state-disabled ui-corner-top").removeAttr("role").removeAttr("aria-expanded").removeAttr("aria-selected").removeAttr("tabIndex"),this.headers.find("a").removeAttr("tabIndex"),this._destroyIcons();var c=this.headers.next().css("display","").removeAttr("role").removeClass("ui-helper-reset ui-widget-content ui-corner-bottom ui-accordion-content ui-accordion-content-active ui-accordion-disabled ui-state-disabled");return(b.autoHeight||b.fillHeight)&&c.css("height",""),a.Widget.prototype.destroy.call(this)},_setOption:function(b,c){a.Widget.prototype._setOption.apply(this,arguments),b=="active"&&this.activate(c),b=="icons"&&(this._destroyIcons(),c&&this._createIcons()),b=="disabled"&&this.headers.add(this.headers.next())[c?"addClass":"removeClass"]("ui-accordion-disabled ui-state-disabled")},_keydown:function(b){if(this.options.disabled||b.altKey||b.ctrlKey)return;var c=a.ui.keyCode,d=this.headers.length,e=this.headers.index(b.target),f=!1;switch(b.keyCode){case c.RIGHT:case c.DOWN:f=this.headers[(e+1)%d];break;case c.LEFT:case c.UP:f=this.headers[(e-1+d)%d];break;case c.SPACE:case c.ENTER:this._clickHandler({target:b.target},b.target),b.preventDefault()}return f?(a(b.target).attr("tabIndex",-1),a(f).attr("tabIndex",0),f.focus(),!1):!0},resize:function(){var b=this.options,c;if(b.fillSpace){if(a.browser.msie){var d=this.element.parent().css("overflow");this.element.parent().css("overflow","hidden")}c=this.element.parent().height(),a.browser.msie&&this.element.parent().css("overflow",d),this.headers.each(function(){c-=a(this).outerHeight(!0)}),this.headers.next().each(function(){a(this).height(Math.max(0,c-a(this).innerHeight()+a(this).height()))}).css("overflow","auto")}else b.autoHeight&&(c=0,this.headers.next().each(function(){c=Math.max(c,a(this).height("").height())}).height(c));return this},activate:function(a){this.options.active=a;var b=this._findActive(a)[0];return this._clickHandler({target:b},b),this},_findActive:function(b){return b?typeof b=="number"?this.headers.filter(":eq("+b+")"):this.headers.not(this.headers.not(b)):b===!1?a([]):this.headers.filter(":eq(0)")},_clickHandler:function(b,c){var d=this.options;if(d.disabled)return;if(!b.target){if(!d.collapsible)return;this.active.removeClass("ui-state-active ui-corner-top").addClass("ui-state-default ui-corner-all").children(".ui-icon").removeClass(d.icons.headerSelected).addClass(d.icons.header),this.active.next().addClass("ui-accordion-content-active");var e=this.active.next(),f={options:d,newHeader:a([]),oldHeader:d.active,newContent:a([]),oldContent:e},g=this.active=a([]);this._toggle(g,e,f);return}var h=a(b.currentTarget||c),i=h[0]===this.active[0];d.active=d.collapsible&&i?!1:this.headers.index(h);if(this.running||!d.collapsible&&i)return;var j=this.active,g=h.next(),e=this.active.next(),f={options:d,newHeader:i&&d.collapsible?a([]):h,oldHeader:this.active,newContent:i&&d.collapsible?a([]):g,oldContent:e},k=this.headers.index(this.active[0])>this.headers.index(h[0]);this.active=i?a([]):h,this._toggle(g,e,f,i,k),j.removeClass("ui-state-active ui-corner-top").addClass("ui-state-default ui-corner-all").children(".ui-icon").removeClass(d.icons.headerSelected).addClass(d.icons.header),i||(h.removeClass("ui-state-default ui-corner-all").addClass("ui-state-active ui-corner-top").children(".ui-icon").removeClass(d.icons.header).addClass(d.icons.headerSelected),h.next().addClass("ui-accordion-content-active"));return},_toggle:function(b,c,d,e,f){var g=this,h=g.options;g.toShow=b,g.toHide=c,g.data=d;var i=function(){if(!g)return;return g._completed.apply(g,arguments)};g._trigger("changestart",null,g.data),g.running=c.size()===0?b.size():c.size();if(h.animated){var j={};h.collapsible&&e?j={toShow:a([]),toHide:c,complete:i,down:f,autoHeight:h.autoHeight||h.fillSpace}:j={toShow:b,toHide:c,complete:i,down:f,autoHeight:h.autoHeight||h.fillSpace},h.proxied||(h.proxied=h.animated),h.proxiedDuration||(h.proxiedDuration=h.duration),h.animated=a.isFunction(h.proxied)?h.proxied(j):h.proxied,h.duration=a.isFunction(h.proxiedDuration)?h.proxiedDuration(j):h.proxiedDuration;var k=a.ui.accordion.animations,l=h.duration,m=h.animated;m&&!k[m]&&!a.easing[m]&&(m="slide"),k[m]||(k[m]=function(a){this.slide(a,{easing:m,duration:l||700})}),k[m](j)}else h.collapsible&&e?b.toggle():(c.hide(),b.show()),i(!0);c.prev().attr({"aria-expanded":"false","aria-selected":"false",tabIndex:-1}).blur(),b.prev().attr({"aria-expanded":"true","aria-selected":"true",tabIndex:0}).focus()},_completed:function(a){this.running=a?0:--this.running;if(this.running)return;this.options.clearStyle&&this.toShow.add(this.toHide).css({height:"",overflow:""}),this.toHide.removeClass("ui-accordion-content-active"),this.toHide.length&&(this.toHide.parent()[0].className=this.toHide.parent()[0].className),this._trigger("change",null,this.data)}}),a.extend(a.ui.accordion,{version:"1.8.23",animations:{slide:function(b,c){b=a.extend({easing:"swing",duration:300},b,c);if(!b.toHide.size()){b.toShow.animate({height:"show",paddingTop:"show",paddingBottom:"show"},b);return}if(!b.toShow.size()){b.toHide.animate({height:"hide",paddingTop:"hide",paddingBottom:"hide"},b);return}var d=b.toShow.css("overflow"),e=0,f={},g={},h=["height","paddingTop","paddingBottom"],i,j=b.toShow;i=j[0].style.width,j.width(j.parent().width()-parseFloat(j.css("paddingLeft"))-parseFloat(j.css("paddingRight"))-(parseFloat(j.css("borderLeftWidth"))||0)-(parseFloat(j.css("borderRightWidth"))||0)),a.each(h,function(c,d){g[d]="hide";var e=(""+a.css(b.toShow[0],d)).match(/^([\d+-.]+)(.*)$/);f[d]={value:e[1],unit:e[2]||"px"}}),b.toShow.css({height:0,overflow:"hidden"}).show(),b.toHide.filter(":hidden").each(b.complete).end().filter(":visible").animate(g,{step:function(a,c){c.prop=="height"&&(e=c.end-c.start===0?0:(c.now-c.start)/(c.end-c.start)),b.toShow[0].style[c.prop]=e*f[c.prop].value+f[c.prop].unit},duration:b.duration,easing:b.easing,complete:function(){b.autoHeight||b.toShow.css("height",""),b.toShow.css({width:i,overflow:d}),b.complete()}})},bounceslide:function(a){this.slide(a,{easing:a.down?"easeOutBounce":"swing",duration:a.down?1e3:200})}}})}(jQuery),function(a,b){var c=0;a.widget("ui.autocomplete",{options:{appendTo:"body",autoFocus:!1,delay:300,minLength:1,position:{my:"left top",at:"left bottom",collision:"none"},source:null},pending:0,_create:function(){var b=this,c=this.element[0].ownerDocument,d;this.isMultiLine=this.element.is("textarea"),this.element.addClass("ui-autocomplete-input").attr("autocomplete","off").attr({role:"textbox","aria-autocomplete":"list","aria-haspopup":"true"}).bind("keydown.autocomplete",function(c){if(b.options.disabled||b.element.propAttr("readOnly"))return;d=!1;var e=a.ui.keyCode;switch(c.keyCode){case e.PAGE_UP:b._move("previousPage",c);break;case e.PAGE_DOWN:b._move("nextPage",c);break;case e.UP:b._keyEvent("previous",c);break;case e.DOWN:b._keyEvent("next",c);break;case e.ENTER:case e.NUMPAD_ENTER:b.menu.active&&(d=!0,c.preventDefault());case e.TAB:if(!b.menu.active)return;b.menu.select(c);break;case e.ESCAPE:b.element.val(b.term),b.close(c);break;default:clearTimeout(b.searching),b.searching=setTimeout(function(){b.term!=b.element.val()&&(b.selectedItem=null,b.search(null,c))},b.options.delay)}}).bind("keypress.autocomplete",function(a){d&&(d=!1,a.preventDefault())}).bind("focus.autocomplete",function(){if(b.options.disabled)return;b.selectedItem=null,b.previous=b.element.val()}).bind("blur.autocomplete",function(a){if(b.options.disabled)return;clearTimeout(b.searching),b.closing=setTimeout(function(){b.close(a),b._change(a)},150)}),this._initSource(),this.menu=a("
        ").addClass("ui-autocomplete").appendTo(a(this.options.appendTo||"body",c)[0]).mousedown(function(c){var d=b.menu.element[0];a(c.target).closest(".ui-menu-item").length||setTimeout(function(){a(document).one("mousedown",function(c){c.target!==b.element[0]&&c.target!==d&&!a.ui.contains(d,c.target)&&b.close()})},1),setTimeout(function(){clearTimeout(b.closing)},13)}).menu({focus:function(a,c){var d=c.item.data("item.autocomplete");!1!==b._trigger("focus",a,{item:d})&&/^key/.test(a.originalEvent.type)&&b.element.val(d.value)},selected:function(a,d){var e=d.item.data("item.autocomplete"),f=b.previous;b.element[0]!==c.activeElement&&(b.element.focus(),b.previous=f,setTimeout(function(){b.previous=f,b.selectedItem=e},1)),!1!==b._trigger("select",a,{item:e})&&b.element.val(e.value),b.term=b.element.val(),b.close(a),b.selectedItem=e},blur:function(a,c){b.menu.element.is(":visible")&&b.element.val()!==b.term&&b.element.val(b.term)}}).zIndex(this.element.zIndex()+1).css({top:0,left:0}).hide().data("menu"),a.fn.bgiframe&&this.menu.element.bgiframe(),b.beforeunloadHandler=function(){b.element.removeAttr("autocomplete")},a(window).bind("beforeunload",b.beforeunloadHandler)},destroy:function(){this.element.removeClass("ui-autocomplete-input").removeAttr("autocomplete").removeAttr("role").removeAttr("aria-autocomplete").removeAttr("aria-haspopup"),this.menu.element.remove(),a(window).unbind("beforeunload",this.beforeunloadHandler),a.Widget.prototype.destroy.call(this)},_setOption:function(b,c){a.Widget.prototype._setOption.apply(this,arguments),b==="source"&&this._initSource(),b==="appendTo"&&this.menu.element.appendTo(a(c||"body",this.element[0].ownerDocument)[0]),b==="disabled"&&c&&this.xhr&&this.xhr.abort()},_initSource:function(){var b=this,c,d;a.isArray(this.options.source)?(c=this.options.source,this.source=function(b,d){d(a.ui.autocomplete.filter(c,b.term))}):typeof this.options.source=="string"?(d=this.options.source,this.source=function(c,e){b.xhr&&b.xhr.abort(),b.xhr=a.ajax({url:d,data:c,dataType:"json",success:function(a,b){e(a)},error:function(){e([])}})}):this.source=this.options.source},search:function(a,b){a=a!=null?a:this.element.val(),this.term=this.element.val();if(a.length").data("item.autocomplete",c).append(a("").text(c.label)).appendTo(b)},_move:function(a,b){if(!this.menu.element.is(":visible")){this.search(null,b);return}if(this.menu.first()&&/^previous/.test(a)||this.menu.last()&&/^next/.test(a)){this.element.val(this.term),this.menu.deactivate();return}this.menu[a](b)},widget:function(){return this.menu.element},_keyEvent:function(a,b){if(!this.isMultiLine||this.menu.element.is(":visible"))this._move(a,b),b.preventDefault()}}),a.extend(a.ui.autocomplete,{escapeRegex:function(a){return a.replace(/[-[\]{}()*+?.,\\^$|#\s]/g,"\\$&")},filter:function(b,c){var d=new RegExp(a.ui.autocomplete.escapeRegex(c),"i");return a.grep(b,function(a){return d.test(a.label||a.value||a)})}})}(jQuery),function(a){a.widget("ui.menu",{_create:function(){var b=this;this.element.addClass("ui-menu ui-widget ui-widget-content ui-corner-all").attr({role:"listbox","aria-activedescendant":"ui-active-menuitem"}).click(function(c){if(!a(c.target).closest(".ui-menu-item a").length)return;c.preventDefault(),b.select(c)}),this.refresh()},refresh:function(){var b=this,c=this.element.children("li:not(.ui-menu-item):has(a)").addClass("ui-menu-item").attr("role","menuitem");c.children("a").addClass("ui-corner-all").attr("tabindex",-1).mouseenter(function(c){b.activate(c,a(this).parent())}).mouseleave(function(){b.deactivate()})},activate:function(a,b){this.deactivate();if(this.hasScroll()){var c=b.offset().top-this.element.offset().top,d=this.element.scrollTop(),e=this.element.height();c<0?this.element.scrollTop(d+c):c>=e&&this.element.scrollTop(d+c-e+b.height())}this.active=b.eq(0).children("a").addClass("ui-state-hover").attr("id","ui-active-menuitem").end(),this._trigger("focus",a,{item:b})},deactivate:function(){if(!this.active)return;this.active.children("a").removeClass("ui-state-hover").removeAttr("id"),this._trigger("blur"),this.active=null},next:function(a){this.move("next",".ui-menu-item:first",a)},previous:function(a){this.move("prev",".ui-menu-item:last",a)},first:function(){return this.active&&!this.active.prevAll(".ui-menu-item").length},last:function(){return this.active&&!this.active.nextAll(".ui-menu-item").length},move:function(a,b,c){if(!this.active){this.activate(c,this.element.children(b));return}var d=this.active[a+"All"](".ui-menu-item").eq(0);d.length?this.activate(c,d):this.activate(c,this.element.children(b))},nextPage:function(b){if(this.hasScroll()){if(!this.active||this.last()){this.activate(b,this.element.children(".ui-menu-item:first"));return}var c=this.active.offset().top,d=this.element.height(),e=this.element.children(".ui-menu-item").filter(function(){var b=a(this).offset().top-c-d+a(this).height();return b<10&&b>-10});e.length||(e=this.element.children(".ui-menu-item:last")),this.activate(b,e)}else this.activate(b,this.element.children(".ui-menu-item").filter(!this.active||this.last()?":first":":last"))},previousPage:function(b){if(this.hasScroll()){if(!this.active||this.first()){this.activate(b,this.element.children(".ui-menu-item:last"));return}var c=this.active.offset().top,d=this.element.height(),e=this.element.children(".ui-menu-item").filter(function(){var b=a(this).offset().top-c+d-a(this).height();return b<10&&b>-10});e.length||(e=this.element.children(".ui-menu-item:first")),this.activate(b,e)}else this.activate(b,this.element.children(".ui-menu-item").filter(!this.active||this.first()?":last":":first"))},hasScroll:function(){return this.element.height()",this.element[0].ownerDocument).addClass("ui-button-text").html(this.options.label).appendTo(b.empty()).text(),d=this.options.icons,e=d.primary&&d.secondary,f=[];d.primary||d.secondary?(this.options.text&&f.push("ui-button-text-icon"+(e?"s":d.primary?"-primary":"-secondary")),d.primary&&b.prepend(""),d.secondary&&b.append(""),this.options.text||(f.push(e?"ui-button-icons-only":"ui-button-icon-only"),this.hasTitle||b.attr("title",c))):f.push("ui-button-text-only"),b.addClass(f.join(" "))}}),a.widget("ui.buttonset",{options:{items:":button, :submit, :reset, :checkbox, :radio, a, :data(button)"},_create:function(){this.element.addClass("ui-buttonset")},_init:function(){this.refresh()},_setOption:function(b,c){b==="disabled"&&this.buttons.button("option",b,c),a.Widget.prototype._setOption.apply(this,arguments)},refresh:function(){var b=this.element.css("direction")==="rtl";this.buttons=this.element.find(this.options.items).filter(":ui-button").button("refresh").end().not(":ui-button").button().end().map(function(){return a(this).button("widget")[0]}).removeClass("ui-corner-all ui-corner-left ui-corner-right").filter(":first").addClass(b?"ui-corner-right":"ui-corner-left").end().filter(":last").addClass(b?"ui-corner-left":"ui-corner-right").end().end()},destroy:function(){this.element.removeClass("ui-buttonset"),this.buttons.map(function(){return a(this).button("widget")[0]}).removeClass("ui-corner-left ui-corner-right").end().button("destroy"),a.Widget.prototype.destroy.call(this)}})}(jQuery),function($,undefined){function Datepicker(){this.debug=!1,this._curInst=null,this._keyEvent=!1,this._disabledInputs=[],this._datepickerShowing=!1,this._inDialog=!1,this._mainDivId="ui-datepicker-div",this._inlineClass="ui-datepicker-inline",this._appendClass="ui-datepicker-append",this._triggerClass="ui-datepicker-trigger",this._dialogClass="ui-datepicker-dialog",this._disableClass="ui-datepicker-disabled",this._unselectableClass="ui-datepicker-unselectable",this._currentClass="ui-datepicker-current-day",this._dayOverClass="ui-datepicker-days-cell-over",this.regional=[],this.regional[""]={closeText:"Done",prevText:"Prev",nextText:"Next",currentText:"Today",monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su","Mo","Tu","We","Th","Fr","Sa"],weekHeader:"Wk",dateFormat:"mm/dd/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},this._defaults={showOn:"focus",showAnim:"fadeIn",showOptions:{},defaultDate:null,appendText:"",buttonText:"...",buttonImage:"",buttonImageOnly:!1,hideIfNoPrevNext:!1,navigationAsDateFormat:!1,gotoCurrent:!1,changeMonth:!1,changeYear:!1,yearRange:"c-10:c+10",showOtherMonths:!1,selectOtherMonths:!1,showWeek:!1,calculateWeek:this.iso8601Week,shortYearCutoff:"+10",minDate:null,maxDate:null,duration:"fast",beforeShowDay:null,beforeShow:null,onSelect:null,onChangeMonthYear:null,onClose:null,numberOfMonths:1,showCurrentAtPos:0,stepMonths:1,stepBigMonths:12,altField:"",altFormat:"",constrainInput:!0,showButtonPanel:!1,autoSize:!1,disabled:!1},$.extend(this._defaults,this.regional[""]),this.dpDiv=bindHover($('
        '))}function bindHover(a){var b="button, .ui-datepicker-prev, .ui-datepicker-next, .ui-datepicker-calendar td a";return a.bind("mouseout",function(a){var c=$(a.target).closest(b);if(!c.length)return;c.removeClass("ui-state-hover ui-datepicker-prev-hover ui-datepicker-next-hover")}).bind("mouseover",function(c){var d=$(c.target).closest(b);if($.datepicker._isDisabledDatepicker(instActive.inline?a.parent()[0]:instActive.input[0])||!d.length)return;d.parents(".ui-datepicker-calendar").find("a").removeClass("ui-state-hover"),d.addClass("ui-state-hover"),d.hasClass("ui-datepicker-prev")&&d.addClass("ui-datepicker-prev-hover"),d.hasClass("ui-datepicker-next")&&d.addClass("ui-datepicker-next-hover")})}function extendRemove(a,b){$.extend(a,b);for(var c in b)if(b[c]==null||b[c]==undefined)a[c]=b[c];return a}function isArray(a){return a&&($.browser.safari&&typeof a=="object"&&a.length||a.constructor&&a.constructor.toString().match(/\Array\(\)/))}$.extend($.ui,{datepicker:{version:"1.8.23"}});var PROP_NAME="datepicker",dpuuid=(new Date).getTime(),instActive;$.extend(Datepicker.prototype,{markerClassName:"hasDatepicker",maxRows:4,log:function(){this.debug&&console.log.apply("",arguments)},_widgetDatepicker:function(){return this.dpDiv},setDefaults:function(a){return extendRemove(this._defaults,a||{}),this},_attachDatepicker:function(target,settings){var inlineSettings=null;for(var attrName in this._defaults){var attrValue=target.getAttribute("date:"+attrName);if(attrValue){inlineSettings=inlineSettings||{};try{inlineSettings[attrName]=eval(attrValue)}catch(err){inlineSettings[attrName]=attrValue}}}var nodeName=target.nodeName.toLowerCase(),inline=nodeName=="div"||nodeName=="span";target.id||(this.uuid+=1,target.id="dp"+this.uuid);var inst=this._newInst($(target),inline);inst.settings=$.extend({},settings||{},inlineSettings||{}),nodeName=="input"?this._connectDatepicker(target,inst):inline&&this._inlineDatepicker(target,inst)},_newInst:function(a,b){var c=a[0].id.replace(/([^A-Za-z0-9_-])/g,"\\\\$1");return{id:c,input:a,selectedDay:0,selectedMonth:0,selectedYear:0,drawMonth:0,drawYear:0,inline:b,dpDiv:b?bindHover($('
        ')):this.dpDiv}},_connectDatepicker:function(a,b){var c=$(a);b.append=$([]),b.trigger=$([]);if(c.hasClass(this.markerClassName))return;this._attachments(c,b),c.addClass(this.markerClassName).keydown(this._doKeyDown).keypress(this._doKeyPress).keyup(this._doKeyUp).bind("setData.datepicker",function(a,c,d){b.settings[c]=d}).bind("getData.datepicker",function(a,c){return this._get(b,c)}),this._autoSize(b),$.data(a,PROP_NAME,b),b.settings.disabled&&this._disableDatepicker(a)},_attachments:function(a,b){var c=this._get(b,"appendText"),d=this._get(b,"isRTL");b.append&&b.append.remove(),c&&(b.append=$(''+c+""),a[d?"before":"after"](b.append)),a.unbind("focus",this._showDatepicker),b.trigger&&b.trigger.remove();var e=this._get(b,"showOn");(e=="focus"||e=="both")&&a.focus(this._showDatepicker);if(e=="button"||e=="both"){var f=this._get(b,"buttonText"),g=this._get(b,"buttonImage");b.trigger=$(this._get(b,"buttonImageOnly")?$("").addClass(this._triggerClass).attr({src:g,alt:f,title:f}):$('').addClass(this._triggerClass).html(g==""?f:$("").attr({src:g,alt:f,title:f}))),a[d?"before":"after"](b.trigger),b.trigger.click(function(){return $.datepicker._datepickerShowing&&$.datepicker._lastInput==a[0]?$.datepicker._hideDatepicker():$.datepicker._datepickerShowing&&$.datepicker._lastInput!=a[0]?($.datepicker._hideDatepicker(),$.datepicker._showDatepicker(a[0])):$.datepicker._showDatepicker(a[0]),!1})}},_autoSize:function(a){if(this._get(a,"autoSize")&&!a.inline){var b=new Date(2009,11,20),c=this._get(a,"dateFormat");if(c.match(/[DM]/)){var d=function(a){var b=0,c=0;for(var d=0;db&&(b=a[d].length,c=d);return c};b.setMonth(d(this._get(a,c.match(/MM/)?"monthNames":"monthNamesShort"))),b.setDate(d(this._get(a,c.match(/DD/)?"dayNames":"dayNamesShort"))+20-b.getDay())}a.input.attr("size",this._formatDate(a,b).length)}},_inlineDatepicker:function(a,b){var c=$(a);if(c.hasClass(this.markerClassName))return;c.addClass(this.markerClassName).append(b.dpDiv).bind("setData.datepicker",function(a,c,d){b.settings[c]=d}).bind("getData.datepicker",function(a,c){return this._get(b,c)}),$.data(a,PROP_NAME,b),this._setDate(b,this._getDefaultDate(b),!0),this._updateDatepicker(b),this._updateAlternate(b),b.settings.disabled&&this._disableDatepicker(a),b.dpDiv.css("display","block")},_dialogDatepicker:function(a,b,c,d,e){var f=this._dialogInst;if(!f){this.uuid+=1;var g="dp"+this.uuid;this._dialogInput=$(''),this._dialogInput.keydown(this._doKeyDown),$("body").append(this._dialogInput),f=this._dialogInst=this._newInst(this._dialogInput,!1),f.settings={},$.data(this._dialogInput[0],PROP_NAME,f)}extendRemove(f.settings,d||{}),b=b&&b.constructor==Date?this._formatDate(f,b):b,this._dialogInput.val(b),this._pos=e?e.length?e:[e.pageX,e.pageY]:null;if(!this._pos){var h=document.documentElement.clientWidth,i=document.documentElement.clientHeight,j=document.documentElement.scrollLeft||document.body.scrollLeft,k=document.documentElement.scrollTop||document.body.scrollTop;this._pos=[h/2-100+j,i/2-150+k]}return this._dialogInput.css("left",this._pos[0]+20+"px").css("top",this._pos[1]+"px"),f.settings.onSelect=c,this._inDialog=!0,this.dpDiv.addClass(this._dialogClass),this._showDatepicker(this._dialogInput[0]),$.blockUI&&$.blockUI(this.dpDiv),$.data(this._dialogInput[0],PROP_NAME,f),this},_destroyDatepicker:function(a){var b=$(a),c=$.data(a,PROP_NAME);if(!b.hasClass(this.markerClassName))return;var d=a.nodeName.toLowerCase();$.removeData(a,PROP_NAME),d=="input"?(c.append.remove(),c.trigger.remove(),b.removeClass(this.markerClassName).unbind("focus",this._showDatepicker).unbind("keydown",this._doKeyDown).unbind("keypress",this._doKeyPress).unbind("keyup",this._doKeyUp)):(d=="div"||d=="span")&&b.removeClass(this.markerClassName).empty()},_enableDatepicker:function(a){var b=$(a),c=$.data(a,PROP_NAME);if(!b.hasClass(this.markerClassName))return;var d=a.nodeName.toLowerCase();if(d=="input")a.disabled=!1,c.trigger.filter("button").each(function(){this.disabled=!1}).end().filter("img").css({opacity:"1.0",cursor:""});else if(d=="div"||d=="span"){var e=b.children("."+this._inlineClass);e.children().removeClass("ui-state-disabled"),e.find("select.ui-datepicker-month, select.ui-datepicker-year").removeAttr("disabled")}this._disabledInputs=$.map(this._disabledInputs,function(b){return b==a?null:b})},_disableDatepicker:function(a){var b=$(a),c=$.data(a,PROP_NAME);if(!b.hasClass(this.markerClassName))return;var d=a.nodeName.toLowerCase();if(d=="input")a.disabled=!0,c.trigger.filter("button").each(function(){this.disabled=!0}).end().filter("img").css({opacity:"0.5",cursor:"default"});else if(d=="div"||d=="span"){var e=b.children("."+this._inlineClass);e.children().addClass("ui-state-disabled"),e.find("select.ui-datepicker-month, select.ui-datepicker-year").attr("disabled","disabled")}this._disabledInputs=$.map(this._disabledInputs,function(b){return b==a?null:b}),this._disabledInputs[this._disabledInputs.length]=a},_isDisabledDatepicker:function(a){if(!a)return!1;for(var b=0;b-1}},_doKeyUp:function(a){var b=$.datepicker._getInst(a.target);if(b.input.val()!=b.lastVal)try{var c=$.datepicker.parseDate($.datepicker._get(b,"dateFormat"),b.input?b.input.val():null,$.datepicker._getFormatConfig(b));c&&($.datepicker._setDateFromField(b),$.datepicker._updateAlternate(b),$.datepicker._updateDatepicker(b))}catch(d){$.datepicker.log(d)}return!0},_showDatepicker:function(a){a=a.target||a,a.nodeName.toLowerCase()!="input"&&(a=$("input",a.parentNode)[0]);if($.datepicker._isDisabledDatepicker(a)||$.datepicker._lastInput==a)return;var b=$.datepicker._getInst(a);$.datepicker._curInst&&$.datepicker._curInst!=b&&($.datepicker._curInst.dpDiv.stop(!0,!0),b&&$.datepicker._datepickerShowing&&$.datepicker._hideDatepicker($.datepicker._curInst.input[0]));var c=$.datepicker._get(b,"beforeShow"),d=c?c.apply(a,[a,b]):{};if(d===!1)return;extendRemove(b.settings,d),b.lastVal=null,$.datepicker._lastInput=a,$.datepicker._setDateFromField(b),$.datepicker._inDialog&&(a.value=""),$.datepicker._pos||($.datepicker._pos=$.datepicker._findPos(a),$.datepicker._pos[1]+=a.offsetHeight);var e=!1;$(a).parents().each(function(){return e|=$(this).css("position")=="fixed",!e}),e&&$.browser.opera&&($.datepicker._pos[0]-=document.documentElement.scrollLeft,$.datepicker._pos[1]-=document.documentElement.scrollTop);var f={left:$.datepicker._pos[0],top:$.datepicker._pos[1]};$.datepicker._pos=null,b.dpDiv.empty(),b.dpDiv.css({position:"absolute",display:"block",top:"-1000px"}),$.datepicker._updateDatepicker(b),f=$.datepicker._checkOffset(b,f,e),b.dpDiv.css({position:$.datepicker._inDialog&&$.blockUI?"static":e?"fixed":"absolute",display:"none",left:f.left+"px",top:f.top+"px"});if(!b.inline){var g=$.datepicker._get(b,"showAnim"),h=$.datepicker._get(b,"duration"),i=function(){var a=b.dpDiv.find("iframe.ui-datepicker-cover");if(!!a.length){var c=$.datepicker._getBorders(b.dpDiv);a.css({left:-c[0],top:-c[1],width:b.dpDiv.outerWidth(),height:b.dpDiv.outerHeight()})}};b.dpDiv.zIndex($(a).zIndex()+1),$.datepicker._datepickerShowing=!0,$.effects&&$.effects[g]?b.dpDiv.show(g,$.datepicker._get(b,"showOptions"),h,i):b.dpDiv[g||"show"](g?h:null,i),(!g||!h)&&i(),b.input.is(":visible")&&!b.input.is(":disabled")&&b.input.focus(),$.datepicker._curInst=b}},_updateDatepicker:function(a){var b=this;b.maxRows=4;var c=$.datepicker._getBorders(a.dpDiv);instActive=a,a.dpDiv.empty().append(this._generateHTML(a)),this._attachHandlers(a);var d=a.dpDiv.find("iframe.ui-datepicker-cover");!d.length||d.css({left:-c[0],top:-c[1],width:a.dpDiv.outerWidth(),height:a.dpDiv.outerHeight()}),a.dpDiv.find("."+this._dayOverClass+" a").mouseover();var e=this._getNumberOfMonths(a),f=e[1],g=17;a.dpDiv.removeClass("ui-datepicker-multi-2 ui-datepicker-multi-3 ui-datepicker-multi-4").width(""),f>1&&a.dpDiv.addClass("ui-datepicker-multi-"+f).css("width",g*f+"em"),a.dpDiv[(e[0]!=1||e[1]!=1?"add":"remove")+"Class"]("ui-datepicker-multi"),a.dpDiv[(this._get(a,"isRTL")?"add":"remove")+"Class"]("ui-datepicker-rtl"),a==$.datepicker._curInst&&$.datepicker._datepickerShowing&&a.input&&a.input.is(":visible")&&!a.input.is(":disabled")&&a.input[0]!=document.activeElement&&a.input.focus();if(a.yearshtml){var h=a.yearshtml;setTimeout(function(){h===a.yearshtml&&a.yearshtml&&a.dpDiv.find("select.ui-datepicker-year:first").replaceWith(a.yearshtml),h=a.yearshtml=null},0)}},_getBorders:function(a){var b=function(a){return{thin:1,medium:2,thick:3}[a]||a};return[parseFloat(b(a.css("border-left-width"))),parseFloat(b(a.css("border-top-width")))]},_checkOffset:function(a,b,c){var d=a.dpDiv.outerWidth(),e=a.dpDiv.outerHeight(),f=a.input?a.input.outerWidth():0,g=a.input?a.input.outerHeight():0,h=document.documentElement.clientWidth+(c?0:$(document).scrollLeft()),i=document.documentElement.clientHeight+(c?0:$(document).scrollTop());return b.left-=this._get(a,"isRTL")?d-f:0,b.left-=c&&b.left==a.input.offset().left?$(document).scrollLeft():0,b.top-=c&&b.top==a.input.offset().top+g?$(document).scrollTop():0,b.left-=Math.min(b.left,b.left+d>h&&h>d?Math.abs(b.left+d-h):0),b.top-=Math.min(b.top,b.top+e>i&&i>e?Math.abs(e+g):0),b},_findPos:function(a){var b=this._getInst(a),c=this._get(b,"isRTL");while(a&&(a.type=="hidden"||a.nodeType!=1||$.expr.filters.hidden(a)))a=a[c?"previousSibling":"nextSibling"];var d=$(a).offset();return[d.left,d.top]},_hideDatepicker:function(a){var b=this._curInst;if(!b||a&&b!=$.data(a,PROP_NAME))return;if(this._datepickerShowing){var c=this._get(b,"showAnim"),d=this._get(b,"duration"),e=function(){$.datepicker._tidyDialog(b)};$.effects&&$.effects[c]?b.dpDiv.hide(c,$.datepicker._get(b,"showOptions"),d,e):b.dpDiv[c=="slideDown"?"slideUp":c=="fadeIn"?"fadeOut":"hide"](c?d:null,e),c||e(),this._datepickerShowing=!1;var f=this._get(b,"onClose");f&&f.apply(b.input?b.input[0]:null,[b.input?b.input.val():"",b]),this._lastInput=null,this._inDialog&&(this._dialogInput.css({position:"absolute",left:"0",top:"-100px"}),$.blockUI&&($.unblockUI(),$("body").append(this.dpDiv))),this._inDialog=!1}},_tidyDialog:function(a){a.dpDiv.removeClass(this._dialogClass).unbind(".ui-datepicker-calendar")},_checkExternalClick:function(a){if(!$.datepicker._curInst)return;var b=$(a.target),c=$.datepicker._getInst(b[0]);(b[0].id!=$.datepicker._mainDivId&&b.parents("#"+$.datepicker._mainDivId).length==0&&!b.hasClass($.datepicker.markerClassName)&&!b.closest("."+$.datepicker._triggerClass).length&&$.datepicker._datepickerShowing&&(!$.datepicker._inDialog||!$.blockUI)||b.hasClass($.datepicker.markerClassName)&&$.datepicker._curInst!=c)&&$.datepicker._hideDatepicker()},_adjustDate:function(a,b,c){var d=$(a),e=this._getInst(d[0]);if(this._isDisabledDatepicker(d[0]))return;this._adjustInstDate(e,b+(c=="M"?this._get(e,"showCurrentAtPos"):0),c),this._updateDatepicker(e)},_gotoToday:function(a){var b=$(a),c=this._getInst(b[0]);if(this._get(c,"gotoCurrent")&&c.currentDay)c.selectedDay=c.currentDay,c.drawMonth=c.selectedMonth=c.currentMonth,c.drawYear=c.selectedYear=c.currentYear;else{var d=new Date;c.selectedDay=d.getDate(),c.drawMonth=c.selectedMonth=d.getMonth(),c.drawYear=c.selectedYear=d.getFullYear()}this._notifyChange(c),this._adjustDate(b)},_selectMonthYear:function(a,b,c){var d=$(a),e=this._getInst(d[0]);e["selected"+(c=="M"?"Month":"Year")]=e["draw"+(c=="M"?"Month":"Year")]=parseInt(b.options[b.selectedIndex].value,10),this._notifyChange(e),this._adjustDate(d)},_selectDay:function(a,b,c,d){var e=$(a);if($(d).hasClass(this._unselectableClass)||this._isDisabledDatepicker(e[0]))return;var f=this._getInst(e[0]);f.selectedDay=f.currentDay=$("a",d).html(),f.selectedMonth=f.currentMonth=b,f.selectedYear=f.currentYear=c,this._selectDate(a,this._formatDate(f,f.currentDay,f.currentMonth,f.currentYear))},_clearDate:function(a){var b=$(a),c=this._getInst(b[0]);this._selectDate(b,"")},_selectDate:function(a,b){var c=$(a),d=this._getInst(c[0]);b=b!=null?b:this._formatDate(d),d.input&&d.input.val(b),this._updateAlternate(d);var e=this._get(d,"onSelect");e?e.apply(d.input?d.input[0]:null,[b,d]):d.input&&d.input.trigger("change"),d.inline?this._updateDatepicker(d):(this._hideDatepicker(),this._lastInput=d.input[0],typeof d.input[0]!="object"&&d.input.focus(),this._lastInput=null)},_updateAlternate:function(a){var b=this._get(a,"altField");if(b){var c=this._get(a,"altFormat")||this._get(a,"dateFormat"),d=this._getDate(a),e=this.formatDate(c,d,this._getFormatConfig(a));$(b).each(function(){$(this).val(e)})}},noWeekends:function(a){var b=a.getDay();return[b>0&&b<6,""]},iso8601Week:function(a){var b=new Date(a.getTime());b.setDate(b.getDate()+4-(b.getDay()||7));var c=b.getTime();return b.setMonth(0),b.setDate(1),Math.floor(Math.round((c-b)/864e5)/7)+1},parseDate:function(a,b,c){if(a==null||b==null)throw"Invalid arguments";b=typeof b=="object"?b.toString():b+"";if(b=="")return null;var d=(c?c.shortYearCutoff:null)||this._defaults.shortYearCutoff;d=typeof d!="string"?d:(new Date).getFullYear()%100+parseInt(d,10);var e=(c?c.dayNamesShort:null)||this._defaults.dayNamesShort,f=(c?c.dayNames:null)||this._defaults.dayNames,g=(c?c.monthNamesShort:null)||this._defaults.monthNamesShort,h=(c?c.monthNames:null)||this._defaults.monthNames,i=-1,j=-1,k=-1,l=-1,m=!1,n=function(b){var c=s+1-1){j=1,k=l;do{var u=this._getDaysInMonth(i,j-1);if(k<=u)break;j++,k-=u}while(!0)}var t=this._daylightSavingAdjust(new Date(i,j-1,k));if(t.getFullYear()!=i||t.getMonth()+1!=j||t.getDate()!=k)throw"Invalid date";return t},ATOM:"yy-mm-dd",COOKIE:"D, dd M yy",ISO_8601:"yy-mm-dd",RFC_822:"D, d M y",RFC_850:"DD, dd-M-y",RFC_1036:"D, d M y",RFC_1123:"D, d M yy",RFC_2822:"D, d M yy",RSS:"D, d M y",TICKS:"!",TIMESTAMP:"@",W3C:"yy-mm-dd",_ticksTo1970:(718685+Math.floor(492.5)-Math.floor(19.7)+Math.floor(4.925))*24*60*60*1e7,formatDate:function(a,b,c){if(!b)return"";var d=(c?c.dayNamesShort:null)||this._defaults.dayNamesShort,e=(c?c.dayNames:null)||this._defaults.dayNames,f=(c?c.monthNamesShort:null)||this._defaults.monthNamesShort,g=(c?c.monthNames:null)||this._defaults.monthNames,h=function(b){var c=m+112?a.getHours()+2:0),a):null},_setDate:function(a,b,c){var d=!b,e=a.selectedMonth,f=a.selectedYear,g=this._restrictMinMax(a,this._determineDate(a,b,new Date));a.selectedDay=a.currentDay=g.getDate(),a.drawMonth=a.selectedMonth=a.currentMonth=g.getMonth(),a.drawYear=a.selectedYear=a.currentYear=g.getFullYear(),(e!=a.selectedMonth||f!=a.selectedYear)&&!c&&this._notifyChange(a),this._adjustInstDate(a),a.input&&a.input.val(d?"":this._formatDate(a))},_getDate:function(a){var b=!a.currentYear||a.input&&a.input.val()==""?null:this._daylightSavingAdjust(new Date(a.currentYear,a.currentMonth,a.currentDay));return b},_attachHandlers:function(a){var b=this._get(a,"stepMonths"),c="#"+a.id.replace(/\\\\/g,"\\");a.dpDiv.find("[data-handler]").map(function(){var a={prev:function(){window["DP_jQuery_"+dpuuid].datepicker._adjustDate(c,-b,"M")},next:function(){window["DP_jQuery_"+dpuuid].datepicker._adjustDate(c,+b,"M")},hide:function(){window["DP_jQuery_"+dpuuid].datepicker._hideDatepicker()},today:function(){window["DP_jQuery_"+dpuuid].datepicker._gotoToday(c)},selectDay:function(){return window["DP_jQuery_"+dpuuid].datepicker._selectDay(c,+this.getAttribute("data-month"),+this.getAttribute("data-year"),this),!1},selectMonth:function(){return window["DP_jQuery_"+dpuuid].datepicker._selectMonthYear(c,this,"M"),!1},selectYear:function(){return window["DP_jQuery_"+dpuuid].datepicker._selectMonthYear(c,this,"Y"),!1}};$(this).bind(this.getAttribute("data-event"),a[this.getAttribute("data-handler")])})},_generateHTML:function(a){var b=new Date;b=this._daylightSavingAdjust(new Date(b.getFullYear(),b.getMonth(),b.getDate()));var c=this._get(a,"isRTL"),d=this._get(a,"showButtonPanel"),e=this._get(a,"hideIfNoPrevNext"),f=this._get(a,"navigationAsDateFormat"),g=this._getNumberOfMonths(a),h=this._get(a,"showCurrentAtPos"),i=this._get(a,"stepMonths"),j=g[0]!=1||g[1]!=1,k=this._daylightSavingAdjust(a.currentDay?new Date(a.currentYear,a.currentMonth,a.currentDay):new Date(9999,9,9)),l=this._getMinMaxDate(a,"min"),m=this._getMinMaxDate(a,"max"),n=a.drawMonth-h,o=a.drawYear;n<0&&(n+=12,o--);if(m){var p=this._daylightSavingAdjust(new Date(m.getFullYear(),m.getMonth()-g[0]*g[1]+1,m.getDate()));p=l&&pp)n--,n<0&&(n=11,o--)}a.drawMonth=n,a.drawYear=o;var q=this._get(a,"prevText");q=f?this.formatDate(q,this._daylightSavingAdjust(new Date(o,n-i,1)),this._getFormatConfig(a)):q;var r=this._canAdjustMonth(a,-1,o,n)?''+q+"":e?"":''+q+"",s=this._get(a,"nextText");s=f?this.formatDate(s,this._daylightSavingAdjust(new Date(o,n+i,1)),this._getFormatConfig(a)):s;var t=this._canAdjustMonth(a,1,o,n)?''+s+"":e?"":''+s+"",u=this._get(a,"currentText"),v=this._get(a,"gotoCurrent")&&a.currentDay?k:b;u=f?this.formatDate(u,v,this._getFormatConfig(a)):u;var w=a.inline?"":'",x=d?'
        '+(c?w:"")+(this._isInRange(a,v)?'":"")+(c?"":w)+"
        ":"",y=parseInt(this._get(a,"firstDay"),10);y=isNaN(y)?0:y;var z=this._get(a,"showWeek"),A=this._get(a,"dayNames"),B=this._get(a,"dayNamesShort"),C=this._get(a,"dayNamesMin"),D=this._get(a,"monthNames"),E=this._get(a,"monthNamesShort"),F=this._get(a,"beforeShowDay"),G=this._get(a,"showOtherMonths"),H=this._get(a,"selectOtherMonths"),I=this._get(a,"calculateWeek")||this.iso8601Week,J=this._getDefaultDate(a),K="";for(var L=0;L1)switch(N){case 0:Q+=" ui-datepicker-group-first",P=" ui-corner-"+(c?"right":"left");break;case g[1]-1:Q+=" ui-datepicker-group-last",P=" ui-corner-"+(c?"left":"right");break;default:Q+=" ui-datepicker-group-middle",P=""}Q+='">'}Q+='
        '+(/all|left/.test(P)&&L==0?c?t:r:"")+(/all|right/.test(P)&&L==0?c?r:t:"")+this._generateMonthYearHeader(a,n,o,l,m,L>0||N>0,D,E)+'
        '+"";var R=z?'":"";for(var S=0;S<7;S++){var T=(S+y)%7;R+="=5?' class="ui-datepicker-week-end"':"")+">"+''+C[T]+""}Q+=R+"";var U=this._getDaysInMonth(o,n);o==a.selectedYear&&n==a.selectedMonth&&(a.selectedDay=Math.min(a.selectedDay,U));var V=(this._getFirstDayOfMonth(o,n)-y+7)%7,W=Math.ceil((V+U)/7),X=j?this.maxRows>W?this.maxRows:W:W;this.maxRows=X;var Y=this._daylightSavingAdjust(new Date(o,n,1-V));for(var Z=0;Z";var _=z?'":"";for(var S=0;S<7;S++){var ba=F?F.apply(a.input?a.input[0]:null,[Y]):[!0,""],bb=Y.getMonth()!=n,bc=bb&&!H||!ba[0]||l&&Ym;_+='",Y.setDate(Y.getDate()+1),Y=this._daylightSavingAdjust(Y)}Q+=_+""}n++,n>11&&(n=0,o++),Q+="
        '+this._get(a,"weekHeader")+"
        '+this._get(a,"calculateWeek")(Y)+""+(bb&&!G?" ":bc?''+Y.getDate()+"":''+Y.getDate()+"")+"
        "+(j?""+(g[0]>0&&N==g[1]-1?'
        ':""):""),M+=Q}K+=M}return K+=x+($.browser.msie&&parseInt($.browser.version,10)<7&&!a.inline?'':""),a._keyEvent=!1,K},_generateMonthYearHeader:function(a,b,c,d,e,f,g,h){var i=this._get(a,"changeMonth"),j=this._get(a,"changeYear"),k=this._get(a,"showMonthAfterYear"),l='
        ',m="";if(f||!i)m+=''+g[b]+"";else{var n=d&&d.getFullYear()==c,o=e&&e.getFullYear()==c;m+='"}k||(l+=m+(f||!i||!j?" ":""));if(!a.yearshtml){a.yearshtml="";if(f||!j)l+=''+c+"";else{var q=this._get(a,"yearRange").split(":"),r=(new Date).getFullYear(),s=function(a){var b=a.match(/c[+-].*/)?c+parseInt(a.substring(1),10):a.match(/[+-].*/)?r+parseInt(a,10):parseInt(a,10);return isNaN(b)?r:b},t=s(q[0]),u=Math.max(t,s(q[1]||""));t=d?Math.max(t,d.getFullYear()):t,u=e?Math.min(u,e.getFullYear()):u,a.yearshtml+='",l+=a.yearshtml,a.yearshtml=null}}return l+=this._get(a,"yearSuffix"),k&&(l+=(f||!i||!j?" ":"")+m),l+="
        ",l},_adjustInstDate:function(a,b,c){var d=a.drawYear+(c=="Y"?b:0),e=a.drawMonth+(c=="M"?b:0),f=Math.min(a.selectedDay,this._getDaysInMonth(d,e))+(c=="D"?b:0),g=this._restrictMinMax(a,this._daylightSavingAdjust(new Date(d,e,f)));a.selectedDay=g.getDate(),a.drawMonth=a.selectedMonth=g.getMonth(),a.drawYear=a.selectedYear=g.getFullYear(),(c=="M"||c=="Y")&&this._notifyChange(a)},_restrictMinMax:function(a,b){var c=this._getMinMaxDate(a,"min"),d=this._getMinMaxDate(a,"max"),e=c&&bd?d:e,e},_notifyChange:function(a){var b=this._get(a,"onChangeMonthYear");b&&b.apply(a.input?a.input[0]:null,[a.selectedYear,a.selectedMonth+1,a])},_getNumberOfMonths:function(a){var b=this._get(a,"numberOfMonths");return b==null?[1,1]:typeof b=="number"?[1,b]:b},_getMinMaxDate:function(a,b){return this._determineDate(a,this._get(a,b+"Date"),null)},_getDaysInMonth:function(a,b){return 32-this._daylightSavingAdjust(new Date(a,b,32)).getDate()},_getFirstDayOfMonth:function(a,b){return(new Date(a,b,1)).getDay()},_canAdjustMonth:function(a,b,c,d){var e=this._getNumberOfMonths(a),f=this._daylightSavingAdjust(new Date(c,d+(b<0?b:e[0]*e[1]),1));return b<0&&f.setDate(this._getDaysInMonth(f.getFullYear(),f.getMonth())),this._isInRange(a,f)},_isInRange:function(a,b){var c=this._getMinMaxDate(a,"min"),d=this._getMinMaxDate(a,"max");return(!c||b.getTime()>=c.getTime())&&(!d||b.getTime()<=d.getTime())},_getFormatConfig:function(a){var b=this._get(a,"shortYearCutoff");return b=typeof b!="string"?b:(new Date).getFullYear()%100+parseInt(b,10),{shortYearCutoff:b,dayNamesShort:this._get(a,"dayNamesShort"),dayNames:this._get(a,"dayNames"),monthNamesShort:this._get(a,"monthNamesShort"),monthNames:this._get(a,"monthNames")}},_formatDate:function(a,b,c,d){b||(a.currentDay=a.selectedDay,a.currentMonth=a.selectedMonth,a.currentYear=a.selectedYear);var e=b?typeof b=="object"?b:this._daylightSavingAdjust(new Date(d,c,b)):this._daylightSavingAdjust(new Date(a.currentYear,a.currentMonth,a.currentDay));return this.formatDate(this._get(a,"dateFormat"),e,this._getFormatConfig(a))}}),$.fn.datepicker=function(a){if(!this.length)return this;$.datepicker.initialized||($(document).mousedown($.datepicker._checkExternalClick).find("body").append($.datepicker.dpDiv),$.datepicker.initialized=!0);var b=Array.prototype.slice.call(arguments,1);return typeof a!="string"||a!="isDisabled"&&a!="getDate"&&a!="widget"?a=="option"&&arguments.length==2&&typeof arguments[1]=="string"?$.datepicker["_"+a+"Datepicker"].apply($.datepicker,[this[0]].concat(b)):this.each(function(){typeof a=="string"?$.datepicker["_"+a+"Datepicker"].apply($.datepicker,[this].concat(b)):$.datepicker._attachDatepicker(this,a)}):$.datepicker["_"+a+"Datepicker"].apply($.datepicker,[this[0]].concat(b))},$.datepicker=new Datepicker,$.datepicker.initialized=!1,$.datepicker.uuid=(new Date).getTime(),$.datepicker.version="1.8.23",window["DP_jQuery_"+dpuuid]=$}(jQuery),function(a,b){var c="ui-dialog ui-widget ui-widget-content ui-corner-all ",d={buttons:!0,height:!0,maxHeight:!0,maxWidth:!0,minHeight:!0,minWidth:!0,width:!0},e={maxHeight:!0,maxWidth:!0,minHeight:!0,minWidth:!0};a.widget("ui.dialog",{options:{autoOpen:!0,buttons:{},closeOnEscape:!0,closeText:"close",dialogClass:"",draggable:!0,hide:null,height:"auto",maxHeight:!1,maxWidth:!1,minHeight:150,minWidth:150,modal:!1,position:{my:"center",at:"center",collision:"fit",using:function(b){var c=a(this).css(b).offset().top;c<0&&a(this).css("top",b.top-c)}},resizable:!0,show:null,stack:!0,title:"",width:300,zIndex:1e3},_create:function(){this.originalTitle=this.element.attr("title"),typeof this.originalTitle!="string"&&(this.originalTitle=""),this.options.title=this.options.title||this.originalTitle;var b=this,d=b.options,e=d.title||" ",f=a.ui.dialog.getTitleId(b.element),g=(b.uiDialog=a("
        ")).appendTo(document.body).hide().addClass(c+d.dialogClass).css({zIndex:d.zIndex}).attr("tabIndex",-1).css("outline",0).keydown(function(c){d.closeOnEscape&&!c.isDefaultPrevented()&&c.keyCode&&c.keyCode===a.ui.keyCode.ESCAPE&&(b.close(c),c.preventDefault())}).attr({role:"dialog","aria-labelledby":f}).mousedown(function(a){b.moveToTop(!1,a)}),h=b.element.show().removeAttr("title").addClass("ui-dialog-content ui-widget-content").appendTo(g),i=(b.uiDialogTitlebar=a("
        ")).addClass("ui-dialog-titlebar ui-widget-header ui-corner-all ui-helper-clearfix").prependTo(g),j=a('').addClass("ui-dialog-titlebar-close ui-corner-all").attr("role","button").hover(function(){j.addClass("ui-state-hover")},function(){j.removeClass("ui-state-hover")}).focus(function(){j.addClass("ui-state-focus")}).blur(function(){j.removeClass("ui-state-focus")}).click(function(a){return b.close(a),!1}).appendTo(i),k=(b.uiDialogTitlebarCloseText=a("")).addClass("ui-icon ui-icon-closethick").text(d.closeText).appendTo(j),l=a("").addClass("ui-dialog-title").attr("id",f).html(e).prependTo(i);a.isFunction(d.beforeclose)&&!a.isFunction(d.beforeClose)&&(d.beforeClose=d.beforeclose),i.find("*").add(i).disableSelection(),d.draggable&&a.fn.draggable&&b._makeDraggable(),d.resizable&&a.fn.resizable&&b._makeResizable(),b._createButtons(d.buttons),b._isOpen=!1,a.fn.bgiframe&&g.bgiframe()},_init:function(){this.options.autoOpen&&this.open()},destroy:function(){var a=this;return a.overlay&&a.overlay.destroy(),a.uiDialog.hide(),a.element.unbind(".dialog").removeData("dialog").removeClass("ui-dialog-content ui-widget-content").hide().appendTo("body"),a.uiDialog.remove(),a.originalTitle&&a.element.attr("title",a.originalTitle),a},widget:function(){return this.uiDialog},close:function(b){var c=this,d,e;if(!1===c._trigger("beforeClose",b))return;return c.overlay&&c.overlay.destroy(),c.uiDialog.unbind("keypress.ui-dialog"),c._isOpen=!1,c.options.hide?c.uiDialog.hide(c.options.hide,function(){c._trigger("close",b)}):(c.uiDialog.hide(),c._trigger("close",b)),a.ui.dialog.overlay.resize(),c.options.modal&&(d=0,a(".ui-dialog").each(function(){this!==c.uiDialog[0]&&(e=a(this).css("z-index"),isNaN(e)||(d=Math.max(d,e)))}),a.ui.dialog.maxZ=d),c},isOpen:function(){return this._isOpen},moveToTop:function(b,c){var d=this,e=d.options,f;return e.modal&&!b||!e.stack&&!e.modal?d._trigger("focus",c):(e.zIndex>a.ui.dialog.maxZ&&(a.ui.dialog.maxZ=e.zIndex),d.overlay&&(a.ui.dialog.maxZ+=1,d.overlay.$el.css("z-index",a.ui.dialog.overlay.maxZ=a.ui.dialog.maxZ)),f={scrollTop:d.element.scrollTop(),scrollLeft:d.element.scrollLeft()},a.ui.dialog.maxZ+=1,d.uiDialog.css("z-index",a.ui.dialog.maxZ),d.element.attr(f),d._trigger("focus",c),d)},open:function(){if(this._isOpen)return;var b=this,c=b.options,d=b.uiDialog;return b.overlay=c.modal?new a.ui.dialog.overlay(b):null,b._size(),b._position(c.position),d.show(c.show),b.moveToTop(!0),c.modal&&d.bind("keydown.ui-dialog",function(b){if(b.keyCode!==a.ui.keyCode.TAB)return;var c=a(":tabbable",this),d=c.filter(":first"),e=c.filter(":last");if(b.target===e[0]&&!b.shiftKey)return d.focus(1),!1;if(b.target===d[0]&&b.shiftKey)return e.focus(1),!1}),a(b.element.find(":tabbable").get().concat(d.find(".ui-dialog-buttonpane :tabbable").get().concat(d.get()))).eq(0).focus(),b._isOpen=!0,b._trigger("open"),b},_createButtons:function(b){var c=this,d=!1,e=a("
        ").addClass("ui-dialog-buttonpane ui-widget-content ui-helper-clearfix"),f=a("
        ").addClass("ui-dialog-buttonset").appendTo(e);c.uiDialog.find(".ui-dialog-buttonpane").remove(),typeof b=="object"&&b!==null&&a.each(b,function(){return!(d=!0)}),d&&(a.each(b,function(b,d){d=a.isFunction(d)?{click:d,text:b}:d;var e=a('').click(function(){d.click.apply(c.element[0],arguments)}).appendTo(f);a.each(d,function(a,b){if(a==="click")return;a in e?e[a](b):e.attr(a,b)}),a.fn.button&&e.button()}),e.appendTo(c.uiDialog))},_makeDraggable:function(){function f(a){return{position:a.position,offset:a.offset}}var b=this,c=b.options,d=a(document),e;b.uiDialog.draggable({cancel:".ui-dialog-content, .ui-dialog-titlebar-close",handle:".ui-dialog-titlebar",containment:"document",start:function(d,g){e=c.height==="auto"?"auto":a(this).height(),a(this).height(a(this).height()).addClass("ui-dialog-dragging"),b._trigger("dragStart",d,f(g))},drag:function(a,c){b._trigger("drag",a,f(c))},stop:function(g,h){c.position=[h.position.left-d.scrollLeft(),h.position.top-d.scrollTop()],a(this).removeClass("ui-dialog-dragging").height(e),b._trigger("dragStop",g,f(h)),a.ui.dialog.overlay.resize()}})},_makeResizable:function(c){function h(a){return{originalPosition:a.originalPosition,originalSize:a.originalSize,position:a.position,size:a.size}}c=c===b?this.options.resizable:c;var d=this,e=d.options,f=d.uiDialog.css("position"),g=typeof c=="string"?c:"n,e,s,w,se,sw,ne,nw";d.uiDialog.resizable({cancel:".ui-dialog-content",containment:"document",alsoResize:d.element,maxWidth:e.maxWidth,maxHeight:e.maxHeight,minWidth:e.minWidth,minHeight:d._minHeight(),handles:g,start:function(b,c){a(this).addClass("ui-dialog-resizing"),d._trigger("resizeStart",b,h(c))},resize:function(a,b){d._trigger("resize",a,h(b))},stop:function(b,c){a(this).removeClass("ui-dialog-resizing"),e.height=a(this).height(),e.width=a(this).width(),d._trigger("resizeStop",b,h(c)),a.ui.dialog.overlay.resize()}}).css("position",f).find(".ui-resizable-se").addClass("ui-icon ui-icon-grip-diagonal-se")},_minHeight:function(){var a=this.options;return a.height==="auto"?a.minHeight:Math.min(a.minHeight,a.height)},_position:function(b){var c=[],d=[0,0],e;if(b){if(typeof b=="string"||typeof b=="object"&&"0"in b)c=b.split?b.split(" "):[b[0],b[1]],c.length===1&&(c[1]=c[0]),a.each(["left","top"],function(a,b){+c[a]===c[a]&&(d[a]=c[a],c[a]=b)}),b={my:c.join(" "),at:c.join(" "),offset:d.join(" ")};b=a.extend({},a.ui.dialog.prototype.options.position,b)}else b=a.ui.dialog.prototype.options.position;e=this.uiDialog.is(":visible"),e||this.uiDialog.show(),this.uiDialog.css({top:0,left:0}).position(a.extend({of:window},b)),e||this.uiDialog.hide()},_setOptions:function(b){var c=this,f={},g=!1;a.each(b,function(a,b){c._setOption(a,b),a in d&&(g=!0),a in e&&(f[a]=b)}),g&&this._size(),this.uiDialog.is(":data(resizable)")&&this.uiDialog.resizable("option",f)},_setOption:function(b,d){var e=this,f=e.uiDialog;switch(b){case"beforeclose":b="beforeClose";break;case"buttons":e._createButtons(d);break;case"closeText":e.uiDialogTitlebarCloseText.text(""+d);break;case"dialogClass":f.removeClass(e.options.dialogClass).addClass(c+d);break;case"disabled":d?f.addClass("ui-dialog-disabled"):f.removeClass("ui-dialog-disabled");break;case"draggable":var g=f.is(":data(draggable)");g&&!d&&f.draggable("destroy"),!g&&d&&e._makeDraggable();break;case"position":e._position(d);break;case"resizable":var h=f.is(":data(resizable)");h&&!d&&f.resizable("destroy"),h&&typeof d=="string"&&f.resizable("option","handles",d),!h&&d!==!1&&e._makeResizable(d);break;case"title":a(".ui-dialog-title",e.uiDialogTitlebar).html(""+(d||" "))}a.Widget.prototype._setOption.apply(e,arguments)},_size:function(){var b=this.options,c,d,e=this.uiDialog.is(":visible");this.element.show().css({width:"auto",minHeight:0,height:0}),b.minWidth>b.width&&(b.width=b.minWidth),c=this.uiDialog.css({height:"auto",width:b.width}).height(),d=Math.max(0,b.minHeight-c);if(b.height==="auto")if(a.support.minHeight)this.element.css({minHeight:d,height:"auto"});else{this.uiDialog.show();var f=this.element.css("height","auto").height();e||this.uiDialog.hide(),this.element.height(Math.max(f,d))}else this.element.height(Math.max(b.height-c,0));this.uiDialog.is(":data(resizable)")&&this.uiDialog.resizable("option","minHeight",this._minHeight())}}),a.extend(a.ui.dialog,{version:"1.8.23",uuid:0,maxZ:0,getTitleId:function(a){var b=a.attr("id");return b||(this.uuid+=1,b=this.uuid),"ui-dialog-title-"+b},overlay:function(b){this.$el=a.ui.dialog.overlay.create(b)}}),a.extend(a.ui.dialog.overlay,{instances:[],oldInstances:[],maxZ:0,events:a.map("focus,mousedown,mouseup,keydown,keypress,click".split(","),function(a){return a+".dialog-overlay"}).join(" "),create:function(b){this.instances.length===0&&(setTimeout(function(){a.ui.dialog.overlay.instances.length&&a(document).bind(a.ui.dialog.overlay.events,function(b){if(a(b.target).zIndex()").addClass("ui-widget-overlay")).appendTo(document.body).css({width:this.width(),height:this.height()});return a.fn.bgiframe&&c.bgiframe(),this.instances.push(c),c},destroy:function(b){var c=a.inArray(b,this.instances);c!=-1&&this.oldInstances.push(this.instances.splice(c,1)[0]),this.instances.length===0&&a([document,window]).unbind(".dialog-overlay"),b.remove();var d=0;a.each(this.instances,function(){d=Math.max(d,this.css("z-index"))}),this.maxZ=d},height:function(){var b,c;return a.browser.msie&&a.browser.version<7?(b=Math.max(document.documentElement.scrollHeight,document.body.scrollHeight),c=Math.max(document.documentElement.offsetHeight,document.body.offsetHeight),b0?b.left-e:Math.max(b.left-c.collisionPosition.left,b.left)},top:function(b,c){var d=a(window),e=c.collisionPosition.top+c.collisionHeight-d.height()-d.scrollTop();b.top=e>0?b.top-e:Math.max(b.top-c.collisionPosition.top,b.top)}},flip:{left:function(b,c){if(c.at[0]===e)return;var d=a(window),f=c.collisionPosition.left+c.collisionWidth-d.width()-d.scrollLeft(),g=c.my[0]==="left"?-c.elemWidth:c.my[0]==="right"?c.elemWidth:0,h=c.at[0]==="left"?c.targetWidth:-c.targetWidth,i=-2*c.offset[0];b.left+=c.collisionPosition.left<0?g+h+i:f>0?g+h+i:0},top:function(b,c){if(c.at[1]===e)return;var d=a(window),f=c.collisionPosition.top+c.collisionHeight-d.height()-d.scrollTop(),g=c.my[1]==="top"?-c.elemHeight:c.my[1]==="bottom"?c.elemHeight:0,h=c.at[1]==="top"?c.targetHeight:-c.targetHeight,i=-2*c.offset[1];b.top+=c.collisionPosition.top<0?g+h+i:f>0?g+h+i:0}}},a.offset.setOffset||(a.offset.setOffset=function(b,c){/static/.test(a.curCSS(b,"position"))&&(b.style.position="relative");var d=a(b),e=d.offset(),f=parseInt(a.curCSS(b,"top",!0),10)||0,g=parseInt(a.curCSS(b,"left",!0),10)||0,h={top:c.top-e.top+f,left:c.left-e.left+g};"using"in c?c.using.call(b,h):d.css(h)},a.fn.offset=function(b){var c=this[0];return!c||!c.ownerDocument?null:b?a.isFunction(b)?this.each(function(c){a(this).offset(b.call(this,c,a(this).offset()))}):this.each(function(){a.offset.setOffset(this,b)}):h.call(this)}),a.curCSS||(a.curCSS=a.css),function(){var b=document.getElementsByTagName("body")[0],c=document.createElement("div"),d,e,g,h,i;d=document.createElement(b?"div":"body"),g={visibility:"hidden",width:0,height:0,border:0,margin:0,background:"none"},b&&a.extend(g,{position:"absolute",left:"-1000px",top:"-1000px"});for(var j in g)d.style[j]=g[j];d.appendChild(c),e=b||document.documentElement,e.insertBefore(d,e.firstChild),c.style.cssText="position: absolute; left: 10.7432222px; top: 10.432325px; height: 30px; width: 201px;",h=a(c).offset(function(a,b){return b}).offset(),d.innerHTML="",e.removeChild(d),i=h.top+h.left+(b?2e3:0),f.fractions=i>21&&i<22}()}(jQuery),function(a,b){a.widget("ui.progressbar",{options:{value:0,max:100},min:0,_create:function(){this.element.addClass("ui-progressbar ui-widget ui-widget-content ui-corner-all").attr({role:"progressbar","aria-valuemin":this.min,"aria-valuemax":this.options.max,"aria-valuenow":this._value()}),this.valueDiv=a("
        ").appendTo(this.element),this.oldValue=this._value(),this._refreshValue()},destroy:function(){this.element.removeClass("ui-progressbar ui-widget ui-widget-content ui-corner-all").removeAttr("role").removeAttr("aria-valuemin").removeAttr("aria-valuemax").removeAttr("aria-valuenow"),this.valueDiv.remove(),a.Widget.prototype.destroy.apply(this,arguments)},value:function(a){return a===b?this._value():(this._setOption("value",a),this)},_setOption:function(b,c){b==="value"&&(this.options.value=c,this._refreshValue(),this._value()===this.options.max&&this._trigger("complete")),a.Widget.prototype._setOption.apply(this,arguments)},_value:function(){var a=this.options.value;return typeof a!="number"&&(a=0),Math.min(this.options.max,Math.max(this.min,a))},_percentage:function(){return 100*this._value()/this.options.max},_refreshValue:function(){var a=this.value(),b=this._percentage();this.oldValue!==a&&(this.oldValue=a,this._trigger("change")),this.valueDiv.toggle(a>this.min).toggleClass("ui-corner-right",a===this.options.max).width(b.toFixed(0)+"%"),this.element.attr("aria-valuenow",a)}}),a.extend(a.ui.progressbar,{version:"1.8.23"})}(jQuery),function(a,b){var c=5;a.widget("ui.slider",a.ui.mouse,{widgetEventPrefix:"slide",options:{animate:!1,distance:0,max:100,min:0,orientation:"horizontal",range:!1,step:1,value:0,values:null},_create:function(){var b=this,d=this.options,e=this.element.find(".ui-slider-handle").addClass("ui-state-default ui-corner-all"),f="",g=d.values&&d.values.length||1,h=[];this._keySliding=!1,this._mouseSliding=!1,this._animateOff=!0,this._handleIndex=null,this._detectOrientation(),this._mouseInit(),this.element.addClass("ui-slider ui-slider-"+this.orientation+" ui-widget"+" ui-widget-content"+" ui-corner-all"+(d.disabled?" ui-slider-disabled ui-disabled":"")),this.range=a([]),d.range&&(d.range===!0&&(d.values||(d.values=[this._valueMin(),this._valueMin()]),d.values.length&&d.values.length!==2&&(d.values=[d.values[0],d.values[0]])),this.range=a("
        ").appendTo(this.element).addClass("ui-slider-range ui-widget-header"+(d.range==="min"||d.range==="max"?" ui-slider-range-"+d.range:"")));for(var i=e.length;ic&&(f=c,g=a(this),i=b)}),c.range===!0&&this.values(1)===c.min&&(i+=1,g=a(this.handles[i])),j=this._start(b,i),j===!1?!1:(this._mouseSliding=!0,h._handleIndex=i,g.addClass("ui-state-active").focus(),k=g.offset(),l=!a(b.target).parents().andSelf().is(".ui-slider-handle"),this._clickOffset=l?{left:0,top:0}:{left:b.pageX-k.left-g.width()/2,top:b.pageY-k.top-g.height()/2-(parseInt(g.css("borderTopWidth"),10)||0)-(parseInt(g.css("borderBottomWidth"),10)||0)+(parseInt(g.css("marginTop"),10)||0)},this.handles.hasClass("ui-state-hover")||this._slide(b,i,e),this._animateOff=!0,!0))},_mouseStart:function(a){return!0},_mouseDrag:function(a){var b={x:a.pageX,y:a.pageY},c=this._normValueFromMouse(b);return this._slide(a,this._handleIndex,c),!1},_mouseStop:function(a){return this.handles.removeClass("ui-state-active"),this._mouseSliding=!1,this._stop(a,this._handleIndex),this._change(a,this._handleIndex),this._handleIndex=null,this._clickOffset=null,this._animateOff=!1,!1},_detectOrientation:function(){this.orientation=this.options.orientation==="vertical"?"vertical":"horizontal"},_normValueFromMouse:function(a){var b,c,d,e,f;return this.orientation==="horizontal"?(b=this.elementSize.width,c=a.x-this.elementOffset.left-(this._clickOffset?this._clickOffset.left:0)):(b=this.elementSize.height,c=a.y-this.elementOffset.top-(this._clickOffset?this._clickOffset.top:0)),d=c/b,d>1&&(d=1),d<0&&(d=0),this.orientation==="vertical"&&(d=1-d),e=this._valueMax()-this._valueMin(),f=this._valueMin()+d*e,this._trimAlignValue(f)},_start:function(a,b){var c={handle:this.handles[b],value:this.value()};return this.options.values&&this.options.values.length&&(c.value=this.values(b),c.values=this.values()),this._trigger("start",a,c)},_slide:function(a,b,c){var d,e,f;this.options.values&&this.options.values.length?(d=this.values(b?0:1),this.options.values.length===2&&this.options.range===!0&&(b===0&&c>d||b===1&&c1){this.options.values[b]=this._trimAlignValue(c),this._refreshValue(),this._change(null,b);return}if(!arguments.length)return this._values();if(!a.isArray(arguments[0]))return this.options.values&&this.options.values.length?this._values(b):this.value();d=this.options.values,e=arguments[0];for(f=0;f=this._valueMax())return this._valueMax();var b=this.options.step>0?this.options.step:1,c=(a-this._valueMin())%b,d=a-c;return Math.abs(c)*2>=b&&(d+=c>0?b:-b),parseFloat(d.toFixed(5))},_valueMin:function(){return this.options.min},_valueMax:function(){return this.options.max},_refreshValue:function(){var b=this.options.range,c=this.options,d=this,e=this._animateOff?!1:c.animate,f,g={},h,i,j,k;this.options.values&&this.options.values.length?this.handles.each(function(b,i){f=(d.values(b)-d._valueMin())/(d._valueMax()-d._valueMin())*100,g[d.orientation==="horizontal"?"left":"bottom"]=f+"%",a(this).stop(1,1)[e?"animate":"css"](g,c.animate),d.options.range===!0&&(d.orientation==="horizontal"?(b===0&&d.range.stop(1,1)[e?"animate":"css"]({left:f+"%"},c.animate),b===1&&d.range[e?"animate":"css"]({width:f-h+"%"},{queue:!1,duration:c.animate})):(b===0&&d.range.stop(1,1)[e?"animate":"css"]({bottom:f+"%"},c.animate),b===1&&d.range[e?"animate":"css"]({height:f-h+"%"},{queue:!1,duration:c.animate}))),h=f}):(i=this.value(),j=this._valueMin(),k=this._valueMax(),f=k!==j?(i-j)/(k-j)*100:0,g[d.orientation==="horizontal"?"left":"bottom"]=f+"%",this.handle.stop(1,1)[e?"animate":"css"](g,c.animate),b==="min"&&this.orientation==="horizontal"&&this.range.stop(1,1)[e?"animate":"css"]({width:f+"%"},c.animate),b==="max"&&this.orientation==="horizontal"&&this.range[e?"animate":"css"]({width:100-f+"%"},{queue:!1,duration:c.animate}),b==="min"&&this.orientation==="vertical"&&this.range.stop(1,1)[e?"animate":"css"]({height:f+"%"},c.animate),b==="max"&&this.orientation==="vertical"&&this.range[e?"animate":"css"]({height:100-f+"%"},{queue:!1,duration:c.animate}))}}),a.extend(a.ui.slider,{version:"1.8.23"})}(jQuery),function(a,b){function e(){return++c}function f(){return++d}var c=0,d=0;a.widget("ui.tabs",{options:{add:null,ajaxOptions:null,cache:!1,cookie:null,collapsible:!1,disable:null,disabled:[],enable:null,event:"click",fx:null,idPrefix:"ui-tabs-",load:null,panelTemplate:"
        ",remove:null,select:null,show:null,spinner:"Loading…",tabTemplate:"
      • #{label}
      • "},_create:function(){this._tabify(!0)},_setOption:function(a,b){if(a=="selected"){if(this.options.collapsible&&b==this.options.selected)return;this.select(b)}else this.options[a]=b,this._tabify()},_tabId:function(a){return a.title&&a.title.replace(/\s/g,"_").replace(/[^\w\u00c0-\uFFFF-]/g,"")||this.options.idPrefix+e()},_sanitizeSelector:function(a){return a.replace(/:/g,"\\:")},_cookie:function(){var b=this.cookie||(this.cookie=this.options.cookie.name||"ui-tabs-"+f());return a.cookie.apply(null,[b].concat(a.makeArray(arguments)))},_ui:function(a,b){return{tab:a,panel:b,index:this.anchors.index(a)}},_cleanup:function(){this.lis.filter(".ui-state-processing").removeClass("ui-state-processing").find("span:data(label.tabs)").each(function(){var b=a(this);b.html(b.data("label.tabs")).removeData("label.tabs")})},_tabify:function(c){function m(b,c){b.css("display",""),!a.support.opacity&&c.opacity&&b[0].style.removeAttribute("filter")}var d=this,e=this.options,f=/^#.+/;this.list=this.element.find("ol,ul").eq(0),this.lis=a(" > li:has(a[href])",this.list),this.anchors=this.lis.map(function(){return a("a",this)[0]}),this.panels=a([]),this.anchors.each(function(b,c){var g=a(c).attr("href"),h=g.split("#")[0],i;h&&(h===location.toString().split("#")[0]||(i=a("base")[0])&&h===i.href)&&(g=c.hash,c.href=g);if(f.test(g))d.panels=d.panels.add(d.element.find(d._sanitizeSelector(g)));else if(g&&g!=="#"){a.data(c,"href.tabs",g),a.data(c,"load.tabs",g.replace(/#.*$/,""));var j=d._tabId(c);c.href="#"+j;var k=d.element.find("#"+j);k.length||(k=a(e.panelTemplate).attr("id",j).addClass("ui-tabs-panel ui-widget-content ui-corner-bottom").insertAfter(d.panels[b-1]||d.list),k.data("destroy.tabs",!0)),d.panels=d.panels.add(k)}else e.disabled.push(b)}),c?(this.element.addClass("ui-tabs ui-widget ui-widget-content ui-corner-all"),this.list.addClass("ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all"),this.lis.addClass("ui-state-default ui-corner-top"),this.panels.addClass("ui-tabs-panel ui-widget-content ui-corner-bottom"),e.selected===b?(location.hash&&this.anchors.each(function(a,b){if(b.hash==location.hash)return e.selected=a,!1}),typeof e.selected!="number"&&e.cookie&&(e.selected=parseInt(d._cookie(),10)),typeof e.selected!="number"&&this.lis.filter(".ui-tabs-selected").length&&(e.selected=this.lis.index(this.lis.filter(".ui-tabs-selected"))),e.selected=e.selected||(this.lis.length?0:-1)):e.selected===null&&(e.selected=-1),e.selected=e.selected>=0&&this.anchors[e.selected]||e.selected<0?e.selected:0,e.disabled=a.unique(e.disabled.concat(a.map(this.lis.filter(".ui-state-disabled"),function(a,b){return d.lis.index(a)}))).sort(),a.inArray(e.selected,e.disabled)!=-1&&e.disabled.splice(a.inArray(e.selected,e.disabled),1),this.panels.addClass("ui-tabs-hide"),this.lis.removeClass("ui-tabs-selected ui-state-active"),e.selected>=0&&this.anchors.length&&(d.element.find(d._sanitizeSelector(d.anchors[e.selected].hash)).removeClass("ui-tabs-hide"),this.lis.eq(e.selected).addClass("ui-tabs-selected ui-state-active"),d.element.queue("tabs",function(){d._trigger("show",null,d._ui(d.anchors[e.selected],d.element.find(d._sanitizeSelector(d.anchors[e.selected].hash))[0]))}),this.load(e.selected)),a(window).bind("unload",function(){d.lis.add(d.anchors).unbind(".tabs"),d.lis=d.anchors=d.panels=null})):e.selected=this.lis.index(this.lis.filter(".ui-tabs-selected")),this.element[e.collapsible?"addClass":"removeClass"]("ui-tabs-collapsible"),e.cookie&&this._cookie(e.selected,e.cookie);for(var g=0,h;h=this.lis[g];g++)a(h)[a.inArray(g,e.disabled)!=-1&&!a(h).hasClass("ui-tabs-selected")?"addClass":"removeClass"]("ui-state-disabled");e.cache===!1&&this.anchors.removeData("cache.tabs"),this.lis.add(this.anchors).unbind(".tabs");if(e.event!=="mouseover"){var i=function(a,b){b.is(":not(.ui-state-disabled)")&&b.addClass("ui-state-"+a)},j=function(a,b){b.removeClass("ui-state-"+a)};this.lis.bind("mouseover.tabs",function(){i("hover",a(this))}),this.lis.bind("mouseout.tabs",function(){j("hover",a(this))}),this.anchors.bind("focus.tabs",function(){i("focus",a(this).closest("li"))}),this.anchors.bind("blur.tabs",function(){j("focus",a(this).closest("li"))})}var k,l;e.fx&&(a.isArray(e.fx)?(k=e.fx[0],l=e.fx[1]):k=l=e.fx);var n=l?function(b,c){a(b).closest("li").addClass("ui-tabs-selected ui-state-active"),c.hide().removeClass("ui-tabs-hide").animate(l,l.duration||"normal",function(){m(c,l),d._trigger("show",null,d._ui(b,c[0]))})}:function(b,c){a(b).closest("li").addClass("ui-tabs-selected ui-state-active"),c.removeClass("ui-tabs-hide"),d._trigger("show",null,d._ui(b,c[0]))},o=k?function(a,b){b.animate(k,k.duration||"normal",function(){d.lis.removeClass("ui-tabs-selected ui-state-active"),b.addClass("ui-tabs-hide"),m(b,k),d.element.dequeue("tabs")})}:function(a,b,c){d.lis.removeClass("ui-tabs-selected ui-state-active"),b.addClass("ui-tabs-hide"),d.element.dequeue("tabs")};this.anchors.bind(e.event+".tabs",function(){var b=this,c=a(b).closest("li"),f=d.panels.filter(":not(.ui-tabs-hide)"),g=d.element.find(d._sanitizeSelector(b.hash));if(c.hasClass("ui-tabs-selected")&&!e.collapsible||c.hasClass("ui-state-disabled")||c.hasClass("ui-state-processing")||d.panels.filter(":animated").length||d._trigger("select",null,d._ui(this,g[0]))===!1)return this.blur(),!1;e.selected=d.anchors.index(this),d.abort();if(e.collapsible){if(c.hasClass("ui-tabs-selected"))return e.selected=-1,e.cookie&&d._cookie(e.selected,e.cookie),d.element.queue("tabs",function(){o(b,f)}).dequeue("tabs"),this.blur(),!1;if(!f.length)return e.cookie&&d._cookie(e.selected,e.cookie),d.element.queue("tabs",function(){n(b,g)}),d.load(d.anchors.index(this)),this.blur(),!1}e.cookie&&d._cookie(e.selected,e.cookie);if(g.length)f.length&&d.element.queue("tabs",function(){o(b,f)}),d.element.queue("tabs",function(){n(b,g)}),d.load(d.anchors.index(this));else throw"jQuery UI Tabs: Mismatching fragment identifier.";a.browser.msie&&this.blur()}),this.anchors.bind("click.tabs",function(){return!1})},_getIndex:function(a){return typeof a=="string"&&(a=this.anchors.index(this.anchors.filter("[href$='"+a+"']"))),a},destroy:function(){var b=this.options;return this.abort(),this.element.unbind(".tabs").removeClass("ui-tabs ui-widget ui-widget-content ui-corner-all ui-tabs-collapsible").removeData("tabs"),this.list.removeClass("ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all"),this.anchors.each(function(){var b=a.data(this,"href.tabs");b&&(this.href=b);var c=a(this).unbind(".tabs");a.each(["href","load","cache"],function(a,b){c.removeData(b+".tabs")})}),this.lis.unbind(".tabs").add(this.panels).each(function(){a.data(this,"destroy.tabs")?a(this).remove():a(this).removeClass(["ui-state-default","ui-corner-top","ui-tabs-selected","ui-state-active","ui-state-hover","ui-state-focus","ui-state-disabled","ui-tabs-panel","ui-widget-content","ui-corner-bottom","ui-tabs-hide"].join(" "))}),b.cookie&&this._cookie(null,b.cookie),this},add:function(c,d,e){e===b&&(e=this.anchors.length);var f=this,g=this.options,h=a(g.tabTemplate.replace(/#\{href\}/g,c).replace(/#\{label\}/g,d)),i=c.indexOf("#")?this._tabId(a("a",h)[0]):c.replace("#","");h.addClass("ui-state-default ui-corner-top").data("destroy.tabs",!0);var j=f.element.find("#"+i);return j.length||(j=a(g.panelTemplate).attr("id",i).data("destroy.tabs",!0)),j.addClass("ui-tabs-panel ui-widget-content ui-corner-bottom ui-tabs-hide"),e>=this.lis.length?(h.appendTo(this.list),j.appendTo(this.list[0].parentNode)):(h.insertBefore(this.lis[e]),j.insertBefore(this.panels[e])),g.disabled=a.map(g.disabled,function(a,b){return a>=e?++a:a}),this._tabify(),this.anchors.length==1&&(g.selected=0,h.addClass("ui-tabs-selected ui-state-active"),j.removeClass("ui-tabs-hide"),this.element.queue("tabs",function(){f._trigger("show",null,f._ui(f.anchors[0],f.panels[0]))}),this.load(0)),this._trigger("add",null,this._ui(this.anchors[e],this.panels[e])),this},remove:function(b){b=this._getIndex(b);var c=this.options,d=this.lis.eq(b).remove(),e=this.panels.eq(b).remove();return d.hasClass("ui-tabs-selected")&&this.anchors.length>1&&this.select(b+(b+1=b?--a:a}),this._tabify(),this._trigger("remove",null,this._ui(d.find("a")[0],e[0])),this},enable:function(b){b=this._getIndex(b);var c=this.options;if(a.inArray(b,c.disabled)==-1)return;return this.lis.eq(b).removeClass("ui-state-disabled"),c.disabled=a.grep(c.disabled,function(a,c){return a!=b}),this._trigger("enable",null,this._ui(this.anchors[b],this.panels[b])),this},disable:function(a){a=this._getIndex(a);var b=this,c=this.options;return a!=c.selected&&(this.lis.eq(a).addClass("ui-state-disabled"),c.disabled.push(a),c.disabled.sort(),this._trigger("disable",null,this._ui(this.anchors[a],this.panels[a]))),this},select:function(a){a=this._getIndex(a);if(a==-1)if(this.options.collapsible&&this.options.selected!=-1)a=this.options.selected;else return this;return this.anchors.eq(a).trigger(this.options.event+".tabs"),this},load:function(b){b=this._getIndex(b);var c=this,d=this.options,e=this.anchors.eq(b)[0],f=a.data(e,"load.tabs");this.abort();if(!f||this.element.queue("tabs").length!==0&&a.data(e,"cache.tabs")){this.element.dequeue("tabs");return}this.lis.eq(b).addClass("ui-state-processing");if(d.spinner){var g=a("span",e);g.data("label.tabs",g.html()).html(d.spinner)}return this.xhr=a.ajax(a.extend({},d.ajaxOptions,{url:f,success:function(f,g){c.element.find(c._sanitizeSelector(e.hash)).html(f),c._cleanup(),d.cache&&a.data(e,"cache.tabs",!0),c._trigger("load",null,c._ui(c.anchors[b],c.panels[b]));try{d.ajaxOptions.success(f,g)}catch(h){}},error:function(a,f,g){c._cleanup(),c._trigger("load",null,c._ui(c.anchors[b],c.panels[b]));try{d.ajaxOptions.error(a,f,b,e)}catch(g){}}})),c.element.dequeue("tabs"),this},abort:function(){return this.element.queue([]),this.panels.stop(!1,!0),this.element.queue("tabs",this.element.queue("tabs").splice(-2,2)),this.xhr&&(this.xhr.abort(),delete this.xhr),this._cleanup(),this},url:function(a,b){return this.anchors.eq(a).removeData("cache.tabs").data("load.tabs",b),this},length:function(){return this.anchors.length}}),a.extend(a.ui.tabs,{version:"1.8.23"}),a.extend(a.ui.tabs.prototype,{rotation:null,rotate:function(a,b){var c=this,d=this.options,e=c._rotate||(c._rotate=function(b){clearTimeout(c.rotation),c.rotation=setTimeout(function(){var a=d.selected;c.select(++a
        DateFri, 24 Feb 2023 14:03:41 GMT
        ServerApache-Coyote/1.1
        Access-Control-Allow-Origin*
        Accept-Rangesbytes
        ETagW/"200748-1358437290000"
        Last-ModifiedThu, 17 Jan 2013 15:41:30 GMT
        Cache-Controlmax-age=2419200
        ExpiresFri, 24 Mar 2023 14:03:42 GMT
        Content-Typeapplication/javascript;charset=UTF-8
        Content-Length200748
        Keep-Alivetimeout=5, max=99
        ConnectionKeep-Alive
        http://zero.webappsecurity.com:80/faq.html.bakhttpzero.webappsecurity.com80Vulnerability67083Web Server Misconfiguration: Unprotected FileEnvironmentWeb Server Misconfiguration: Unprotected FileCWE-538: File and Directory Information ExposureSummary]]>ImplicationAn attacker can use the information obtained from the backup file of a sensitive document to craft a precise targeted attack against the web application. Such attacks can include, but are not limited to, SQL injection, remote file system access to overwrite or inject malware, and database manipulation.]]>ExecutionFix
        • Webroot Security Policy: Implement a security policy that prohibits storage of backup files in webroot.
        • Temporary Files: Many tools and editors automatically create temporary files or backup files in the webroot. Be careful when editing files on a production server to avoid inadvertently leaving a backup or temporary copy of the file(s) in the webroot.
        • Default Installations: Often, a lot of unnecessary files and folders are installed by default. For instance, IIS installations include demo applications. Be sure to remove any files or folders that are not required for application to work properly.
        • Development Backup: Source code back up should not be stored and left available on the webroot.
        + +Further QA can include test cases to look for the presence of backup files in the webroot to ensure none are left in publicly accessible folders of the web application.]]>
        Reference InfoOWASP - Review Old, Backup and Unreferenced Files for Sensitive Information (OTG-CONFIG-004)
        CWE - 200 Information Exposure ]]>
        + + + + Zero - FAQ - Frequently Asked Questions + + + + + + + + + + + + + +
        + + +
        +
        + +
        +
        +
        + +
        + + + +
        +
        +
        1
        +
        +
        +

        Question1 ut enim ad minim veniam?

        +
        +
        +
        +
        +

        + Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo + consequat. Duis aute irure dolor in reprehenderit. + Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo + consequat. Duis aute irure dolor in reprehenderit. +

        +
        +
        + +
        +
        +
        2
        +
        +
        +

        Question2 ut enim ad minim veniam?

        +
        +
        +
        +
        +

        + Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo + consequat. Duis aute irure dolor in reprehenderit. + Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo + consequat. Duis aute irure dolor in reprehenderit. +

        +
        +
        + +
        +
        +
        3
        +
        +
        +

        Question3 ut enim ad minim veniam?

        +
        +
        +
        +
        +

        + Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo + consequat. Duis aute irure dolor in reprehenderit. + Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo + consequat. Duis aute irure dolor in reprehenderit. +

        +
        +
        + +
        +
        +
        4
        +
        +
        +

        Question4 ut enim ad minim veniam?

        +
        +
        +
        +
        +

        + Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo + consequat. Duis aute irure dolor in reprehenderit. + Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo + consequat. Duis aute irure dolor in reprehenderit. +

        +
        +
        + +
        +
        +
        5
        +
        +
        +

        Question5 ut enim ad minim veniam?

        +
        +
        +
        +
        +

        + Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo + consequat. Duis aute irure dolor in reprehenderit. + Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo + consequat. Duis aute irure dolor in reprehenderit. +

        +
        +
        + +
        +
        +
        6
        +
        +
        +

        Question6 ut enim ad minim veniam?

        +
        +
        +
        +
        +

        + Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo + consequat. Duis aute irure dolor in reprehenderit. + Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo + consequat. Duis aute irure dolor in reprehenderit. +

        +
        +
        + +
        +
        +
        7
        +
        +
        +

        Question7 ut enim ad minim veniam?

        +
        +
        +
        +
        +

        + Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo + consequat. Duis aute irure dolor in reprehenderit. + Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo + consequat. Duis aute irure dolor in reprehenderit. +

        +
        +
        +
        +
        + + + + +
        +
        + +
        +
        + +
        +
        +
        +
        +
        +
          +
        • Contact Us
        • +
        • Blog
        • +
        • Download WebInspect
        • +
        +
        + +
        +
          +
        • Ask a Question
        • +
        • Video Tutorial
        • +
        • Feedback
        • +
        +
        + +
        +
          +
        • License
        • +
        • Privacy Statement
        • +
        • Terms of Use
        • +
        +
        + +
        +
          +
        • How to use WebInspect
        • +
        • WebInspect scan settings files
        • +
        • How to scan the site
        • +
        +
        +
        + +
        +
        + The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating + the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting + Web application vulnerabilities. This site is not a real banking site and any similarities to third party products + and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, + either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. + Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at + https://www.microfocus.com/about/legal/ + and Micro Focus Fortify’s Online Privacy Statement found at + https://www.microfocus.com/about/legal/#privacy. + +

        + + Copyright © 2018, Micro Focus. All rights reserved. +
        +
        +
        +
        +
        + + + + +]]>
        GET/faq.htmlbakHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=A9EF43AC +
        Refererhttp://zero.webappsecurity.com/faq.html
        Accept*/*
        Accept-Encodinggzip, deflate
        Pragmano-cache
        User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
        Hostzero.webappsecurity.com
        ConnectionKeep-Alive
        X-WIPPAscVersion=22.2.0.253
        X-Scan-MemoCategory="Audit.Attack";SID="55E4604B462749386115F42180F4D471";PSID="4CAE3BF452C6150F60166D67DC3B7477";SessionType="AuditAttack";CrawlType="None";AttackType="Search";OriginatingEngineID="aabf09b7-996e-479e-9ecc-9f0508d42d72";AttackSequence="0";AttackParamDesc="";AttackParamIndex="0";AttackParamSubIndex="0";CheckId="708";Engine="File+Extension+Addition";SmartMode="4";tht="40";
        X-RequestManager-Memostid="17";stmi="0";sc="1";rid="ea8bdf71";
        X-Request-Memorid="5229a1e3";sc="1";thid="28";
        CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONIDA9EF43AC
        HTTP/1.1200OK + + + + Zero - FAQ - Frequently Asked Questions + + + + + + + + + + + + + +
        + + +
        +
        + +
        +
        +
        + +
        + + + +
        +
        +
        1
        +
        +
        +

        Question1 ut enim ad minim veniam?

        +
        +
        +
        +
        +

        + Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo + consequat. Duis aute irure dolor in reprehenderit. + Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo + consequat. Duis aute irure dolor in reprehenderit. +

        +
        +
        + +
        +
        +
        2
        +
        +
        +

        Question2 ut enim ad minim veniam?

        +
        +
        +
        +
        +

        + Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo + consequat. Duis aute irure dolor in reprehenderit. + Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo + consequat. Duis aute irure dolor in reprehenderit. +

        +
        +
        + +
        +
        +
        3
        +
        +
        +

        Question3 ut enim ad minim veniam?

        +
        +
        +
        +
        +

        + Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo + consequat. Duis aute irure dolor in reprehenderit. + Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo + consequat. Duis aute irure dolor in reprehenderit. +

        +
        +
        + +
        +
        +
        4
        +
        +
        +

        Question4 ut enim ad minim veniam?

        +
        +
        +
        +
        +

        + Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo + consequat. Duis aute irure dolor in reprehenderit. + Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo + consequat. Duis aute irure dolor in reprehenderit. +

        +
        +
        + +
        +
        +
        5
        +
        +
        +

        Question5 ut enim ad minim veniam?

        +
        +
        +
        +
        +

        + Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo + consequat. Duis aute irure dolor in reprehenderit. + Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo + consequat. Duis aute irure dolor in reprehenderit. +

        +
        +
        + +
        +
        +
        6
        +
        +
        +

        Question6 ut enim ad minim veniam?

        +
        +
        +
        +
        +

        + Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo + consequat. Duis aute irure dolor in reprehenderit. + Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo + consequat. Duis aute irure dolor in reprehenderit. +

        +
        +
        + +
        +
        +
        7
        +
        +
        +

        Question7 ut enim ad minim veniam?

        +
        +
        +
        +
        +

        + Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo + consequat. Duis aute irure dolor in reprehenderit. + Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo + consequat. Duis aute irure dolor in reprehenderit. +

        +
        +
        +
        +
        + + + + +
        +
        + +
        +
        + +
        +
        +
        +
        +
        +
          +
        • Contact Us
        • +
        • Blog
        • +
        • Download WebInspect
        • +
        +
        + +
        +
          +
        • Ask a Question
        • +
        • Video Tutorial
        • +
        • Feedback
        • +
        +
        + +
        +
          +
        • License
        • +
        • Privacy Statement
        • +
        • Terms of Use
        • +
        +
        + +
        +
          +
        • How to use WebInspect
        • +
        • WebInspect scan settings files
        • +
        • How to scan the site
        • +
        +
        +
        + +
        +
        + The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating + the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting + Web application vulnerabilities. This site is not a real banking site and any similarities to third party products + and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, + either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. + Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at + https://www.microfocus.com/about/legal/ + and Micro Focus Fortify’s Online Privacy Statement found at + https://www.microfocus.com/about/legal/#privacy. + +

        + + Copyright © 2018, Micro Focus. All rights reserved. +
        +
        +
        +
        +
        + + + + +]]>
        DateFri, 24 Feb 2023 14:03:52 GMT
        ServerApache-Coyote/1.1
        Access-Control-Allow-Origin*
        Accept-Rangesbytes
        ETagW/"12557-1535343306000"
        Last-ModifiedMon, 27 Aug 2018 04:15:06 GMT
        Content-Typeapplication/octet-stream;charset=UTF-8
        Content-Length12557
        Keep-Alivetimeout=5, max=63
        ConnectionKeep-Alive
        http://zero.webappsecurity.com:80/zero/resources/css/bootstrap.csshttpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

        HTTP Status 404 - /zero/resources/css/bootstrap.css


        type Status report

        message /zero/resources/css/bootstrap.css

        description The requested resource is not available.


        Apache Tomcat/7.0.70

        ]]>
        GET/zero/resources/css/bootstrapcssHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
        Refererhttp://zero.webappsecurity.com/faq.html.bak
        Accept*/*
        Accept-Encodinggzip, deflate
        Pragmano-cache
        User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
        Hostzero.webappsecurity.com
        ConnectionKeep-Alive
        X-WIPPAscVersion=22.2.0.253
        X-Scan-MemoCategory="Crawl";SID="DBEFF6BCDC6C27BC9ABC56A2E276B4B8";PSID="55E4604B462749386115F42180F4D471";SessionType="Crawl";CrawlType="ScriptInclude";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="Relative";LinkKind="StyleInclude";Locations="HtmlNode";NodeName="link";Source="StaticParser";tht="31";
        X-RequestManager-Memostid="11";stmi="0";sc="1";rid="4237bcb5";
        X-Request-Memorid="c22211ef";sc="2";thid="26";
        CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
        HTTP/1.1404Not FoundApache Tomcat/7.0.70 - Error report

        HTTP Status 404 - /zero/resources/css/bootstrap.css


        type Status report

        message /zero/resources/css/bootstrap.css

        description The requested resource is not available.


        Apache Tomcat/7.0.70

        ]]>
        DateFri, 24 Feb 2023 14:03:53 GMT
        ServerApache-Coyote/1.1
        Access-Control-Allow-Origin*
        Content-Typetext/html;charset=utf-8
        Content-Languageen
        Content-Length1015
        Keep-Alivetimeout=5, max=100
        ConnectionKeep-Alive
        http://zero.webappsecurity.com:80/zero/resources/css/main.csshttpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

        HTTP Status 404 - /zero/resources/css/main.css


        type Status report

        message /zero/resources/css/main.css

        description The requested resource is not available.


        Apache Tomcat/7.0.70

        ]]>
        GET/zero/resources/css/maincssHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
        Refererhttp://zero.webappsecurity.com/faq.html.bak
        Accept*/*
        Accept-Encodinggzip, deflate
        Pragmano-cache
        User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
        Hostzero.webappsecurity.com
        ConnectionKeep-Alive
        X-WIPPAscVersion=22.2.0.253
        X-Scan-MemoCategory="Crawl";SID="2FB18E4D93FA66D5B87CDFDC95E79B20";PSID="55E4604B462749386115F42180F4D471";SessionType="Crawl";CrawlType="ScriptInclude";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="Relative";LinkKind="StyleInclude";Locations="HtmlNode";NodeName="link";Source="StaticParser";tht="31";
        X-RequestManager-Memostid="11";stmi="0";sc="1";rid="77188e9e";
        X-Request-Memorid="c1cd4281";sc="2";thid="25";
        CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
        HTTP/1.1404Not FoundApache Tomcat/7.0.70 - Error report

        HTTP Status 404 - /zero/resources/css/main.css


        type Status report

        message /zero/resources/css/main.css

        description The requested resource is not available.


        Apache Tomcat/7.0.70

        ]]>
        DateFri, 24 Feb 2023 14:03:53 GMT
        ServerApache-Coyote/1.1
        Access-Control-Allow-Origin*
        Content-Typetext/html;charset=utf-8
        Content-Languageen
        Content-Length1005
        Keep-Alivetimeout=5, max=100
        ConnectionKeep-Alive
        http://zero.webappsecurity.com:80/zero/resources/css/font-awesome.csshttpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

        HTTP Status 404 - /zero/resources/css/font-awesome.css


        type Status report

        message /zero/resources/css/font-awesome.css

        description The requested resource is not available.


        Apache Tomcat/7.0.70

        ]]>
        GET/zero/resources/css/font-awesomecssHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
        Refererhttp://zero.webappsecurity.com/faq.html.bak
        Accept*/*
        Accept-Encodinggzip, deflate
        Pragmano-cache
        User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
        Hostzero.webappsecurity.com
        ConnectionKeep-Alive
        X-WIPPAscVersion=22.2.0.253
        X-Scan-MemoCategory="Crawl";SID="7CAEDF7886607BB09DA7C04D4C2AB93B";PSID="55E4604B462749386115F42180F4D471";SessionType="Crawl";CrawlType="ScriptInclude";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="Relative";LinkKind="StyleInclude";Locations="HtmlNode";NodeName="link";Source="StaticParser";tht="31";
        X-RequestManager-Memostid="11";stmi="0";sc="1";rid="3ab481c8";
        X-Request-Memorid="60070364";sc="2";thid="24";
        CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
        HTTP/1.1404Not FoundApache Tomcat/7.0.70 - Error report

        HTTP Status 404 - /zero/resources/css/font-awesome.css


        type Status report

        message /zero/resources/css/font-awesome.css

        description The requested resource is not available.


        Apache Tomcat/7.0.70

        ]]>
        DateFri, 24 Feb 2023 14:03:53 GMT
        ServerApache-Coyote/1.1
        Access-Control-Allow-Origin*
        Content-Typetext/html;charset=utf-8
        Content-Languageen
        Content-Length1021
        Keep-Alivetimeout=5, max=100
        ConnectionKeep-Alive
        http://zero.webappsecurity.com:80/zero/resources/js/jquery-1.8.2.min.jshttpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

        HTTP Status 404 - /zero/resources/js/jquery-1.8.2.min.js


        type Status report

        message /zero/resources/js/jquery-1.8.2.min.js

        description The requested resource is not available.


        Apache Tomcat/7.0.70

        ]]>
        GET/zero/resources/js/jquery-1.8.2.minjsHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
        Refererhttp://zero.webappsecurity.com/faq.html.bak
        Accept*/*
        Accept-Encodinggzip, deflate
        Pragmano-cache
        User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
        Hostzero.webappsecurity.com
        ConnectionKeep-Alive
        X-WIPPAscVersion=22.2.0.253
        X-Scan-MemoCategory="Crawl";SID="2AF91F5768017443B41DF199F7676D5A";PSID="55E4604B462749386115F42180F4D471";SessionType="Crawl";CrawlType="ScriptInclude";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="src";Format="Relative";LinkKind="ScriptInclude";Locations="HtmlNode";NodeName="script";Source="StaticParser";tht="31";
        X-RequestManager-Memostid="11";stmi="0";sc="1";rid="64985796";
        X-Request-Memorid="33b8584c";sc="1";thid="26";
        CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
        HTTP/1.1404Not FoundApache Tomcat/7.0.70 - Error report

        HTTP Status 404 - /zero/resources/js/jquery-1.8.2.min.js


        type Status report

        message /zero/resources/js/jquery-1.8.2.min.js

        description The requested resource is not available.


        Apache Tomcat/7.0.70

        ]]>
        DateFri, 24 Feb 2023 14:03:53 GMT
        ServerApache-Coyote/1.1
        Access-Control-Allow-Origin*
        Content-Typetext/html;charset=utf-8
        Content-Languageen
        Content-Length1025
        Keep-Alivetimeout=5, max=99
        ConnectionKeep-Alive
        http://zero.webappsecurity.com:80/zero/resources/js/bootstrap.min.jshttpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

        HTTP Status 404 - /zero/resources/js/bootstrap.min.js


        type Status report

        message /zero/resources/js/bootstrap.min.js

        description The requested resource is not available.


        Apache Tomcat/7.0.70

        ]]>
        GET/zero/resources/js/bootstrap.minjsHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
        Refererhttp://zero.webappsecurity.com/faq.html.bak
        Accept*/*
        Accept-Encodinggzip, deflate
        Pragmano-cache
        User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
        Hostzero.webappsecurity.com
        ConnectionKeep-Alive
        X-WIPPAscVersion=22.2.0.253
        X-Scan-MemoCategory="Crawl";SID="5750BBEB589422DF0A935E7168FB4AE5";PSID="55E4604B462749386115F42180F4D471";SessionType="Crawl";CrawlType="ScriptInclude";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="src";Format="Relative";LinkKind="ScriptInclude";Locations="HtmlNode";NodeName="script";Source="StaticParser";tht="31";
        X-RequestManager-Memostid="11";stmi="0";sc="1";rid="78a7860b";
        X-Request-Memorid="f2b57dbb";sc="1";thid="25";
        CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
        HTTP/1.1404Not FoundApache Tomcat/7.0.70 - Error report

        HTTP Status 404 - /zero/resources/js/bootstrap.min.js


        type Status report

        message /zero/resources/js/bootstrap.min.js

        description The requested resource is not available.


        Apache Tomcat/7.0.70

        ]]>
        DateFri, 24 Feb 2023 14:03:53 GMT
        ServerApache-Coyote/1.1
        Access-Control-Allow-Origin*
        Content-Typetext/html;charset=utf-8
        Content-Languageen
        Content-Length1019
        Keep-Alivetimeout=5, max=99
        ConnectionKeep-Alive
        http://zero.webappsecurity.com:80/zero/index.htmlhttpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

        HTTP Status 404 -


        type Status report

        message

        description The requested resource is not available.


        Apache Tomcat/7.0.70

        ]]>
        GET/zero/indexhtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
        Refererhttp://zero.webappsecurity.com/faq.html.bak
        Accept*/*
        Accept-Encodinggzip, deflate
        Pragmano-cache
        User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
        Hostzero.webappsecurity.com
        ConnectionKeep-Alive
        X-WIPPAscVersion=22.2.0.253
        X-Scan-MemoCategory="Crawl";SID="CF4C56DCBDC6F80B2728A091F0CCB477";PSID="55E4604B462749386115F42180F4D471";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="Relative";LinkKind="HyperLink";Locations="HtmlNode";NodeName="a";Source="StaticParser";tht="31";
        X-RequestManager-Memostid="11";stmi="0";sc="1";rid="71077d23";
        X-Request-Memorid="ed9417ff";sc="1";thid="24";
        CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
        HTTP/1.1404Not FoundApache Tomcat/7.0.70 - Error report

        HTTP Status 404 -


        type Status report

        message

        description The requested resource is not available.


        Apache Tomcat/7.0.70

        ]]>
        DateFri, 24 Feb 2023 14:03:53 GMT
        ServerApache-Coyote/1.1
        Access-Control-Allow-Origin*
        Cache-Controlno-cache, max-age=0, must-revalidate, no-store
        Content-Typetext/html;charset=utf-8
        Content-Languageen
        Content-Length949
        Keep-Alivetimeout=5, max=99
        ConnectionKeep-Alive
        http://zero.webappsecurity.com:80/zero/faq.html?question=1httpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

        HTTP Status 404 -


        type Status report

        message

        description The requested resource is not available.


        Apache Tomcat/7.0.70

        ]]>
        GET/zero/faqhtmlHTTP/1.1question=1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +question1
        Refererhttp://zero.webappsecurity.com/faq.html.bak
        Accept*/*
        Accept-Encodinggzip, deflate
        Pragmano-cache
        User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
        Hostzero.webappsecurity.com
        ConnectionKeep-Alive
        X-WIPPAscVersion=22.2.0.253
        X-Scan-MemoCategory="Crawl";SID="3112FD3638E458D7DDBBE4A79C3F2E9E";PSID="55E4604B462749386115F42180F4D471";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="Relative";LinkKind="HyperLink";Locations="HtmlNode";NodeName="a";Source="StaticParser";tht="31";
        X-RequestManager-Memostid="11";stmi="0";sc="1";rid="e1dda5d6";
        X-Request-Memorid="53232c5f";sc="1";thid="26";
        CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
        HTTP/1.1404Not FoundApache Tomcat/7.0.70 - Error report

        HTTP Status 404 -


        type Status report

        message

        description The requested resource is not available.


        Apache Tomcat/7.0.70

        ]]>
        DateFri, 24 Feb 2023 14:03:53 GMT
        ServerApache-Coyote/1.1
        Access-Control-Allow-Origin*
        Cache-Controlno-cache, max-age=0, must-revalidate, no-store
        Content-Typetext/html;charset=utf-8
        Content-Languageen
        Content-Length949
        Keep-Alivetimeout=5, max=98
        ConnectionKeep-Alive
        http://zero.webappsecurity.com:80/zero/faq.html?question=2httpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

        HTTP Status 404 -


        type Status report

        message

        description The requested resource is not available.


        Apache Tomcat/7.0.70

        ]]>
        GET/zero/faqhtmlHTTP/1.1question=2Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +question2
        Refererhttp://zero.webappsecurity.com/faq.html.bak
        Accept*/*
        Accept-Encodinggzip, deflate
        Pragmano-cache
        User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
        Hostzero.webappsecurity.com
        ConnectionKeep-Alive
        X-WIPPAscVersion=22.2.0.253
        X-Scan-MemoCategory="Crawl";SID="F8823EE90305BB7AB73A7E36868D02F5";PSID="55E4604B462749386115F42180F4D471";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="Relative";LinkKind="HyperLink";Locations="HtmlNode";NodeName="a";Source="StaticParser";tht="31";
        X-RequestManager-Memostid="11";stmi="0";sc="1";rid="5e23a9bf";
        X-Request-Memorid="b08874c8";sc="1";thid="25";
        CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
        HTTP/1.1404Not FoundApache Tomcat/7.0.70 - Error report

        HTTP Status 404 -


        type Status report

        message

        description The requested resource is not available.


        Apache Tomcat/7.0.70

        ]]>
        DateFri, 24 Feb 2023 14:03:53 GMT
        ServerApache-Coyote/1.1
        Access-Control-Allow-Origin*
        Cache-Controlno-cache, max-age=0, must-revalidate, no-store
        Content-Typetext/html;charset=utf-8
        Content-Languageen
        Content-Length949
        Keep-Alivetimeout=5, max=98
        ConnectionKeep-Alive
        http://zero.webappsecurity.com:80/zero/faq.html?question=3httpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

        HTTP Status 404 -


        type Status report

        message

        description The requested resource is not available.


        Apache Tomcat/7.0.70

        ]]>
        GET/zero/faqhtmlHTTP/1.1question=3Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +question3
        Refererhttp://zero.webappsecurity.com/faq.html.bak
        Accept*/*
        Accept-Encodinggzip, deflate
        Pragmano-cache
        User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
        Hostzero.webappsecurity.com
        ConnectionKeep-Alive
        X-WIPPAscVersion=22.2.0.253
        X-Scan-MemoCategory="Crawl";SID="FEAE8B9A05898BEEA0C995BFC7E46316";PSID="55E4604B462749386115F42180F4D471";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="Relative";LinkKind="HyperLink";Locations="HtmlNode";NodeName="a";Source="StaticParser";tht="31";
        X-RequestManager-Memostid="11";stmi="0";sc="1";rid="2d2eade9";
        X-Request-Memorid="7d4b2496";sc="1";thid="24";
        CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
        HTTP/1.1404Not FoundApache Tomcat/7.0.70 - Error report

        HTTP Status 404 -


        type Status report

        message

        description The requested resource is not available.


        Apache Tomcat/7.0.70

        ]]>
        DateFri, 24 Feb 2023 14:03:53 GMT
        ServerApache-Coyote/1.1
        Access-Control-Allow-Origin*
        Cache-Controlno-cache, max-age=0, must-revalidate, no-store
        Content-Typetext/html;charset=utf-8
        Content-Languageen
        Content-Length949
        Keep-Alivetimeout=5, max=98
        ConnectionKeep-Alive
        http://zero.webappsecurity.com:80/zero/faq.html?question=4httpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

        HTTP Status 404 -


        type Status report

        message

        description The requested resource is not available.


        Apache Tomcat/7.0.70

        ]]>
        GET/zero/faqhtmlHTTP/1.1question=4Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +question4
        Refererhttp://zero.webappsecurity.com/faq.html.bak
        Accept*/*
        Accept-Encodinggzip, deflate
        Pragmano-cache
        User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
        Hostzero.webappsecurity.com
        ConnectionKeep-Alive
        X-WIPPAscVersion=22.2.0.253
        X-Scan-MemoCategory="Crawl";SID="00B191E6514FBA72DB6A5360CDB3FFCB";PSID="55E4604B462749386115F42180F4D471";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="Relative";LinkKind="HyperLink";Locations="HtmlNode";NodeName="a";Source="StaticParser";tht="31";
        X-RequestManager-Memostid="11";stmi="0";sc="1";rid="d5cf93fd";
        X-Request-Memorid="34ee861e";sc="1";thid="24";
        CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
        HTTP/1.1404Not FoundApache Tomcat/7.0.70 - Error report

        HTTP Status 404 -


        type Status report

        message

        description The requested resource is not available.


        Apache Tomcat/7.0.70

        ]]>
        DateFri, 24 Feb 2023 14:03:53 GMT
        ServerApache-Coyote/1.1
        Access-Control-Allow-Origin*
        Cache-Controlno-cache, max-age=0, must-revalidate, no-store
        Content-Typetext/html;charset=utf-8
        Content-Languageen
        Content-Length949
        Keep-Alivetimeout=5, max=97
        ConnectionKeep-Alive
        http://zero.webappsecurity.com:80/zero/faq.html?question=5httpzero.webappsecurity.com80Apache Tomcat/7.0.70 - Error report

        HTTP Status 404 -


        type Status report

        message

        description The requested resource is not available.


        Apache Tomcat/7.0.70

        ]]>
        GET/zero/faqhtmlHTTP/1.1question=5Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +question5
        Refererhttp://zero.webappsecurity.com/faq.html.bak
        Accept*/*
        Accept-Encodinggzip, deflate
        Pragmano-cache
        User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
        Hostzero.webappsecurity.com
        ConnectionKeep-Alive
        X-WIPPAscVersion=22.2.0.253
        X-Scan-MemoCategory="Crawl";SID="064F618653F2ADEF1DE1ADE79FBE0C54";PSID="55E4604B462749386115F42180F4D471";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";AttributeName="href";Format="Relative";LinkKind="HyperLink";Locations="HtmlNode";NodeName="a";Source="StaticParser";tht="31";
        X-RequestManager-Memostid="11";stmi="0";sc="1";rid="029ad565";
        X-Request-Memorid="9c6fd1fe";sc="1";thid="25";
        CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
        HTTP/1.1404Not FoundApache Tomcat/7.0.70 - Error report

        HTTP Status 404 -


        type Status report

        message

        description The requested resource is not available.


        Apache Tomcat/7.0.70

        ]]>
        DateFri, 24 Feb 2023 14:03:53 GMT
        ServerApache-Coyote/1.1
        Access-Control-Allow-Origin*
        Cache-Controlno-cache, max-age=0, must-revalidate, no-store
        Content-Typetext/html;charset=utf-8
        Content-Languageen
        Content-Length949
        Keep-Alivetimeout=5, max=97
        ConnectionKeep-Alive
        http://zero.webappsecurity.com:80/bank/transfer-funds.htmlhttpzero.webappsecurity.com80Vulnerability11281112791HTML5: Overly Permissive CORS PolicyEncapsulationHTML5: Overly Permissive CORS PolicyCWE-942: Overly Permissive Cross-domain WhitelistSummary
        +Cross-Origin Resource Sharing, commonly referred to as CORS, is a technology that allows a domain to define a policy for its resources to be accessed by a web page hosted on a different domain using cross domain XML HTTP Requests (XHR). Historically, the browser restricts cross domain XHR requests to abide by the same origin policy. At its basic form, the same origin policy sets the script execution scope to the resources available on the current domain and prohibits any communication to domains outside this scope. While CORS is supported on all major browsers, it also requires that the domain correctly defines the CORS policy in order to have its resources shared with another domain. These restrictions are managed by access policies typically included in specialized response headers, such as: +
        • Access-Control-Allow-Origin
        • Access-Control-Allow-Headers
        • Access-Control-Allow-Methods
        +A domain includes a list of domains that are allowed to make cross domain requests to shared resources in Access-Control-Allow-Origin header. This header can have either list of domains or a wildcard character (“*”) to allow all access. Having a wildcard is considered overly permissive policy.]]>
        ImplicationExecutionFix

        Example 1:
        An example of IIS server configuration for listing domains the application is allowed to communicate with.
        + +    <configuration>
        +        <system.webServer>
        +            <httpProtocol>
        +                <customHeaders>
        +                    <add name="Access-Control-Allow-Origin" value="www.trusted.com" />
        +                </customHeaders>
        +            </httpProtocol>
        +        </system.webServer>
        +    </configuration>

        + +Example 1 shows how to configure CORS headers at the server level; however, the preferred method is to make use of the API of the language used to develop the application and set access permissions at the resource level.
        + +Here are some programmatic samples by language:

        • .NET:
          +Append Header:
          +Response.AppendHeader("Access-Control-Allow-Origin", "www.trusted.com");

          + +Check for cross domain XHR request:
          +if((Request.Headers["X-Requested-With"] == "XMLHttpRequest") && Request.Headers[“Origin”] != null))

        • Java:
          +response.addHeader("Access-Control-Allow-Origin", "www.trusted.com");

          + +check for cross domain XHR request:
          +if((request.getHeader("X-Requested-With") == "XMLHttpRequest") && request.getHeader("Origin")!= null))

        • PHP:
          + + header('Access-Control-Allow-Origin: www.trusted.com');
          +?>

          + +Check for cross domain XHR request:
          +If( isset($_SERVER['HTTP_X_REQUESTED_WITH']) && ($_SERVER['HTTP_X_REQUESTED_WITH'] == 'XMLHttpRequest') && isset($_SERVER[‘Origin’]))

        ]]>
        Reference InfoOWASP HTML 5 Security Cheat Sheet
        https://www.owasp.org/index.php/HTML5_Security_Cheat_Sheet

        Cross-Origin Resource Sharing
        http://en.wikipedia.org/wiki/Cross-origin_resource_sharing
        http://www.w3.org/TR/cors/

        +Same Origin Policy
        http://en.wikipedia.org/wiki/Same_origin_policy

        ]]>
        OPTIONS/bank/transfer-fundshtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
        Refererhttp://zero.webappsecurity.com/
        Accept*/*
        Accept-Encodinggzip, deflate
        Pragmano-cache
        User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
        Hostzero.webappsecurity.com
        Access-Control-Request-MethodPOST
        Access-Control-Request-HeadersX-Pingsession
        Originhttp://webinspect.microfocus.com
        ConnectionKeep-Alive
        X-WIPPAscVersion=22.2.0.253
        X-Scan-MemoCategory="Audit.Attack";SID="F87984C063D446C0B5B5B83EEC702D2C";PSID="2B209BFC89996A2F0AE9ED7C1F450D6E";SessionType="AuditAttack";CrawlType="None";AttackType="Other";OriginatingEngineID="822a8e1c-b895-4666-a9d2-026b0a4716c9";AttackSequence="0";AttackParamDesc="";AttackParamIndex="0";AttackParamSubIndex="0";CheckId="11281";Engine="Html5+Cross+Origin+Options+Request";SmartMode="4";tht="11";
        X-RequestManager-Memosc="1";rid="05c04c17";
        X-Request-Memorid="0871e4c7";sc="1";thid="27";
        CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
        HTTP/1.1302Found
        DateFri, 24 Feb 2023 14:04:18 GMT
        ServerApache-Coyote/1.1
        Access-Control-Allow-Origin*
        Cache-Controlno-cache, max-age=0, must-revalidate, no-store
        Locationhttp://zero.webappsecurity.com/login.html
        Content-Length0
        Keep-Alivetimeout=5, max=39
        ConnectionKeep-Alive
        Content-Typetext/html
        http://zero.webappsecurity.com:80/bank/transfer-funds.htmlhttpzero.webappsecurity.com80OPTIONS/bank/transfer-fundshtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
        Refererhttp://zero.webappsecurity.com/
        Accept*/*
        Accept-Encodinggzip, deflate
        Pragmano-cache
        User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
        Hostzero.webappsecurity.com
        Access-Control-Request-MethodPOST
        Access-Control-Request-HeadersX-Pingsession
        Originhttp://webinspect.microfocus.com
        ConnectionKeep-Alive
        CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
        HTTP/1.1302Found
        DateFri, 24 Feb 2023 14:04:18 GMT
        ServerApache-Coyote/1.1
        Access-Control-Allow-Origin*
        Cache-Controlno-cache, max-age=0, must-revalidate, no-store
        Locationhttp://zero.webappsecurity.com/login.html
        Content-Length0
        Keep-Alivetimeout=5, max=39
        ConnectionKeep-Alive
        Content-Typetext/html
        http://zero.webappsecurity.com:80/httpzero.webappsecurity.com80Vulnerability11281112791HTML5: Overly Permissive CORS PolicyEncapsulationHTML5: Overly Permissive CORS PolicyCWE-942: Overly Permissive Cross-domain WhitelistSummary
        +Cross-Origin Resource Sharing, commonly referred to as CORS, is a technology that allows a domain to define a policy for its resources to be accessed by a web page hosted on a different domain using cross domain XML HTTP Requests (XHR). Historically, the browser restricts cross domain XHR requests to abide by the same origin policy. At its basic form, the same origin policy sets the script execution scope to the resources available on the current domain and prohibits any communication to domains outside this scope. While CORS is supported on all major browsers, it also requires that the domain correctly defines the CORS policy in order to have its resources shared with another domain. These restrictions are managed by access policies typically included in specialized response headers, such as: +
        • Access-Control-Allow-Origin
        • Access-Control-Allow-Headers
        • Access-Control-Allow-Methods
        +A domain includes a list of domains that are allowed to make cross domain requests to shared resources in Access-Control-Allow-Origin header. This header can have either list of domains or a wildcard character (“*”) to allow all access. Having a wildcard is considered overly permissive policy.]]>
        ImplicationExecutionFix

        Example 1:
        An example of IIS server configuration for listing domains the application is allowed to communicate with.
        + +    <configuration>
        +        <system.webServer>
        +            <httpProtocol>
        +                <customHeaders>
        +                    <add name="Access-Control-Allow-Origin" value="www.trusted.com" />
        +                </customHeaders>
        +            </httpProtocol>
        +        </system.webServer>
        +    </configuration>

        + +Example 1 shows how to configure CORS headers at the server level; however, the preferred method is to make use of the API of the language used to develop the application and set access permissions at the resource level.
        + +Here are some programmatic samples by language:

        • .NET:
          +Append Header:
          +Response.AppendHeader("Access-Control-Allow-Origin", "www.trusted.com");

          + +Check for cross domain XHR request:
          +if((Request.Headers["X-Requested-With"] == "XMLHttpRequest") && Request.Headers[“Origin”] != null))

        • Java:
          +response.addHeader("Access-Control-Allow-Origin", "www.trusted.com");

          + +check for cross domain XHR request:
          +if((request.getHeader("X-Requested-With") == "XMLHttpRequest") && request.getHeader("Origin")!= null))

        • PHP:
          + + header('Access-Control-Allow-Origin: www.trusted.com');
          +?>

          + +Check for cross domain XHR request:
          +If( isset($_SERVER['HTTP_X_REQUESTED_WITH']) && ($_SERVER['HTTP_X_REQUESTED_WITH'] == 'XMLHttpRequest') && isset($_SERVER[‘Origin’]))

        ]]>
        Reference InfoOWASP HTML 5 Security Cheat Sheet
        https://www.owasp.org/index.php/HTML5_Security_Cheat_Sheet

        Cross-Origin Resource Sharing
        http://en.wikipedia.org/wiki/Cross-origin_resource_sharing
        http://www.w3.org/TR/cors/

        +Same Origin Policy
        http://en.wikipedia.org/wiki/Same_origin_policy

        ]]>
        OPTIONS/HTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0 +
        Accept*/*
        Accept-Encodinggzip, deflate
        Pragmano-cache
        User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
        Hostzero.webappsecurity.com
        Access-Control-Request-MethodPOST
        Access-Control-Request-HeadersX-Pingsession
        Originhttp://webinspect.microfocus.com
        Refererhttp://zero.webappsecurity.com/
        ConnectionKeep-Alive
        X-WIPPAscVersion=22.2.0.253
        X-Scan-MemoCategory="Audit.Attack";SID="56FEBBD9F465D6E022529D0A7D59B126";PSID="306E42D0F653E7CFA6720D7F15AE506B";SessionType="AuditAttack";CrawlType="None";AttackType="Other";OriginatingEngineID="822a8e1c-b895-4666-a9d2-026b0a4716c9";AttackSequence="0";AttackParamDesc="";AttackParamIndex="0";AttackParamSubIndex="0";CheckId="11281";Engine="Html5+Cross+Origin+Options+Request";SmartMode="4";tht="11";
        X-RequestManager-Memosc="1";rid="7600b554";
        X-Request-Memorid="bc8a5d23";sc="1";thid="27";
        CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0
        HTTP/1.1200OK
        DateFri, 24 Feb 2023 14:04:18 GMT
        ServerApache-Coyote/1.1
        Access-Control-Allow-Origin*
        Cache-Controlno-cache, max-age=0, must-revalidate, no-store
        AllowGET, HEAD, POST, PUT, DELETE, TRACE, OPTIONS, PATCH
        Content-Length0
        Keep-Alivetimeout=5, max=35
        ConnectionKeep-Alive
        Content-Typetext/plain
        http://zero.webappsecurity.com:80/index.htmlhttpzero.webappsecurity.com80Vulnerability11281112791HTML5: Overly Permissive CORS PolicyEncapsulationHTML5: Overly Permissive CORS PolicyCWE-942: Overly Permissive Cross-domain WhitelistSummary
        +Cross-Origin Resource Sharing, commonly referred to as CORS, is a technology that allows a domain to define a policy for its resources to be accessed by a web page hosted on a different domain using cross domain XML HTTP Requests (XHR). Historically, the browser restricts cross domain XHR requests to abide by the same origin policy. At its basic form, the same origin policy sets the script execution scope to the resources available on the current domain and prohibits any communication to domains outside this scope. While CORS is supported on all major browsers, it also requires that the domain correctly defines the CORS policy in order to have its resources shared with another domain. These restrictions are managed by access policies typically included in specialized response headers, such as: +
        • Access-Control-Allow-Origin
        • Access-Control-Allow-Headers
        • Access-Control-Allow-Methods
        +A domain includes a list of domains that are allowed to make cross domain requests to shared resources in Access-Control-Allow-Origin header. This header can have either list of domains or a wildcard character (“*”) to allow all access. Having a wildcard is considered overly permissive policy.]]>
        ImplicationExecutionFix

        Example 1:
        An example of IIS server configuration for listing domains the application is allowed to communicate with.
        + +    <configuration>
        +        <system.webServer>
        +            <httpProtocol>
        +                <customHeaders>
        +                    <add name="Access-Control-Allow-Origin" value="www.trusted.com" />
        +                </customHeaders>
        +            </httpProtocol>
        +        </system.webServer>
        +    </configuration>

        + +Example 1 shows how to configure CORS headers at the server level; however, the preferred method is to make use of the API of the language used to develop the application and set access permissions at the resource level.
        + +Here are some programmatic samples by language:

        • .NET:
          +Append Header:
          +Response.AppendHeader("Access-Control-Allow-Origin", "www.trusted.com");

          + +Check for cross domain XHR request:
          +if((Request.Headers["X-Requested-With"] == "XMLHttpRequest") && Request.Headers[“Origin”] != null))

        • Java:
          +response.addHeader("Access-Control-Allow-Origin", "www.trusted.com");

          + +check for cross domain XHR request:
          +if((request.getHeader("X-Requested-With") == "XMLHttpRequest") && request.getHeader("Origin")!= null))

        • PHP:
          + + header('Access-Control-Allow-Origin: www.trusted.com');
          +?>

          + +Check for cross domain XHR request:
          +If( isset($_SERVER['HTTP_X_REQUESTED_WITH']) && ($_SERVER['HTTP_X_REQUESTED_WITH'] == 'XMLHttpRequest') && isset($_SERVER[‘Origin’]))

        ]]>
        Reference InfoOWASP HTML 5 Security Cheat Sheet
        https://www.owasp.org/index.php/HTML5_Security_Cheat_Sheet

        Cross-Origin Resource Sharing
        http://en.wikipedia.org/wiki/Cross-origin_resource_sharing
        http://www.w3.org/TR/cors/

        +Same Origin Policy
        http://en.wikipedia.org/wiki/Same_origin_policy

        ]]>
        OPTIONS/indexhtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0 +
        Refererhttp://zero.webappsecurity.com/
        Accept*/*
        Accept-Encodinggzip, deflate
        Pragmano-cache
        User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
        Hostzero.webappsecurity.com
        Access-Control-Request-MethodPOST
        Access-Control-Request-HeadersX-Pingsession
        Originhttp://webinspect.microfocus.com
        ConnectionKeep-Alive
        X-WIPPAscVersion=22.2.0.253
        X-Scan-MemoCategory="Audit.Attack";SID="69431DB0A3F9E23422BAB17C92BCFA1B";PSID="8E73B3A63EFE2AADE20745A947151EB3";SessionType="AuditAttack";CrawlType="None";AttackType="Other";OriginatingEngineID="822a8e1c-b895-4666-a9d2-026b0a4716c9";AttackSequence="0";AttackParamDesc="";AttackParamIndex="0";AttackParamSubIndex="0";CheckId="11281";Engine="Html5+Cross+Origin+Options+Request";SmartMode="4";tht="11";
        X-RequestManager-Memosc="1";rid="5fb1c5ab";
        X-Request-Memorid="32fd0185";sc="1";thid="28";
        CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0
        HTTP/1.1200OK
        DateFri, 24 Feb 2023 14:04:20 GMT
        ServerApache-Coyote/1.1
        Access-Control-Allow-Origin*
        Cache-Controlno-cache, max-age=0, must-revalidate, no-store
        AllowGET, HEAD, POST, PUT, DELETE, TRACE, OPTIONS, PATCH
        Content-Length0
        Keep-Alivetimeout=5, max=31
        ConnectionKeep-Alive
        Content-Typetext/html
        http://zero.webappsecurity.com:80/admin/httpzero.webappsecurity.com80 + + + + Zero - Admin - Home + + + + + + + + + + + + + + + +
        + + + + +
        +
        + +
        +
        +

        Admin Home

        +
        +
        + +
        +
        + +
        + +
        +
        +
        +
        + +
        +
        + +
        +
        +
        +
        +
        +
          +
        • Download WebInspect
        • +
        +
        + +
        +
          +
        • Terms of Use
        • +
        +
        + +
        +
          +
        • Contact Micro Focus
        • +
        • Privacy Statement
        • + +
        +
        +
        + +
        +
        + The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating + the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting + Web application vulnerabilities. This site is not a real banking site and any similarities to third party products + and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, + either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. + Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at + https://www.microfocus.com/about/legal/#privacy + and Micro Focus Fortify’s Online Privacy Statement found at + https://www.microfocus.com/about/legal/#privacy. + +

        + + Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. +
        +
        +
        +
        +
        + + + + +]]>
        GET/admin/HTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=756DA386 +
        Refererhttp://zero.webappsecurity.com/admin/index.html
        Accept*/*
        Accept-Encodinggzip, deflate
        Pragmano-cache
        User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
        Hostzero.webappsecurity.com
        ConnectionKeep-Alive
        X-WIPPAscVersion=22.2.0.253
        X-Scan-MemoCategory="Audit.Attack";SID="B09C4D5CC22F10C01D9D84418780B93D";PSID="0CF01A02A1917FDBDF9FF1C597F1495C";SessionType="PathTruncation";CrawlType="None";AttackType="None";OriginatingEngineID="398bfe9e-1b77-4458-9691-603eea06e341";AttackSequence="0";AttackParamDesc="";AttackParamIndex="0";AttackParamSubIndex="0";CheckId="0";Engine="Path+Truncation";SmartMode="4";tht="11";
        X-RequestManager-Memostid="15";stmi="0";sc="1";rid="2a3ed406";
        X-Request-Memorid="197a18ca";sc="1";thid="27";
        CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID756DA386
        HTTP/1.1200OK + + + + Zero - Admin - Home + + + + + + + + + + + + + + + +
        + + + + +
        +
        + +
        +
        +

        Admin Home

        +
        +
        + +
        +
        + +
        + +
        +
        +
        +
        + +
        +
        + +
        +
        +
        +
        +
        +
          +
        • Download WebInspect
        • +
        +
        + +
        +
          +
        • Terms of Use
        • +
        +
        + +
        +
          +
        • Contact Micro Focus
        • +
        • Privacy Statement
        • + +
        +
        +
        + +
        +
        + The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating + the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting + Web application vulnerabilities. This site is not a real banking site and any similarities to third party products + and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, + either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. + Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at + https://www.microfocus.com/about/legal/#privacy + and Micro Focus Fortify’s Online Privacy Statement found at + https://www.microfocus.com/about/legal/#privacy. + +

        + + Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. +
        +
        +
        +
        +
        + + + + +]]>
        DateFri, 24 Feb 2023 14:04:42 GMT
        ServerApache-Coyote/1.1
        Access-Control-Allow-Origin*
        Cache-Controlno-cache, max-age=0, must-revalidate, no-store
        Content-Typetext/html;charset=UTF-8
        Content-Languageen-US
        Keep-Alivetimeout=5, max=56
        ConnectionKeep-Alive
        Content-Length6617
        /search.htmlsearchTermtextsearch-query
        http://zero.webappsecurity.com:80/debug.txthttpzero.webappsecurity.com80Vulnerability385013683Web Server Misconfiguration: Unprotected FileEnvironmentWeb Server Misconfiguration: Unprotected FileCWE-552: Files or Directories Accessible to External PartiesSummaryImplicationExecutionFixFor Security Operations:
        Remove the application from the server. Inform developers and administrators to remove test applications from servers when they are no longer needed. While they are in use, be sure to protect them using HTTP basic authentication. + +

        For Development:

        Contact your security or network operations team and request they investigate the issue.

        For QA:
        Contact your security or network operations team and request they investigate the issue.]]>
        Reference Info
        GET/debugtxtHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=A9EF43AC +
        Refererhttp://zero.webappsecurity.com/
        Accept*/*
        Accept-Encodinggzip, deflate
        Pragmano-cache
        User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
        Hostzero.webappsecurity.com
        ConnectionKeep-Alive
        X-WIPPAscVersion=22.2.0.253
        X-Scan-MemoCategory="Audit.Attack";SID="B1F9571EEE15898EBB34B8BED205026D";PSID="306E42D0F653E7CFA6720D7F15AE506B";SessionType="AuditAttack";CrawlType="None";AttackType="Search";OriginatingEngineID="60b8f839-2e70-4177-8e47-f305852be435";AttackSequence="0";AttackParamDesc="";AttackParamIndex="0";AttackParamSubIndex="0";CheckId="1368";Engine="Site+Search";SmartMode="4";tht="11";
        X-RequestManager-Memostid="17";stmi="0";sc="1";rid="0a6e1b98";
        X-Request-Memorid="38f489ef";sc="1";thid="28";
        CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONIDA9EF43AC
        HTTP/1.1200OK
        DateFri, 24 Feb 2023 14:04:50 GMT
        ServerApache-Coyote/1.1
        Access-Control-Allow-Origin*
        Accept-Rangesbytes
        ETagW/"27144-1368929102000"
        Last-ModifiedSun, 19 May 2013 02:05:02 GMT
        Content-Typetext/plain;charset=UTF-8
        Content-Length27144
        Keep-Alivetimeout=5, max=43
        ConnectionKeep-Alive
        http://zero.webappsecurity.com:80/admin/index.htmlhttpzero.webappsecurity.com80Vulnerability11281112791HTML5: Overly Permissive CORS PolicyEncapsulationHTML5: Overly Permissive CORS PolicyCWE-942: Overly Permissive Cross-domain WhitelistSummary
        +Cross-Origin Resource Sharing, commonly referred to as CORS, is a technology that allows a domain to define a policy for its resources to be accessed by a web page hosted on a different domain using cross domain XML HTTP Requests (XHR). Historically, the browser restricts cross domain XHR requests to abide by the same origin policy. At its basic form, the same origin policy sets the script execution scope to the resources available on the current domain and prohibits any communication to domains outside this scope. While CORS is supported on all major browsers, it also requires that the domain correctly defines the CORS policy in order to have its resources shared with another domain. These restrictions are managed by access policies typically included in specialized response headers, such as: +
        • Access-Control-Allow-Origin
        • Access-Control-Allow-Headers
        • Access-Control-Allow-Methods
        +A domain includes a list of domains that are allowed to make cross domain requests to shared resources in Access-Control-Allow-Origin header. This header can have either list of domains or a wildcard character (“*”) to allow all access. Having a wildcard is considered overly permissive policy.]]>
        ImplicationExecutionFix

        Example 1:
        An example of IIS server configuration for listing domains the application is allowed to communicate with.
        + +    <configuration>
        +        <system.webServer>
        +            <httpProtocol>
        +                <customHeaders>
        +                    <add name="Access-Control-Allow-Origin" value="www.trusted.com" />
        +                </customHeaders>
        +            </httpProtocol>
        +        </system.webServer>
        +    </configuration>

        + +Example 1 shows how to configure CORS headers at the server level; however, the preferred method is to make use of the API of the language used to develop the application and set access permissions at the resource level.
        + +Here are some programmatic samples by language:

        • .NET:
          +Append Header:
          +Response.AppendHeader("Access-Control-Allow-Origin", "www.trusted.com");

          + +Check for cross domain XHR request:
          +if((Request.Headers["X-Requested-With"] == "XMLHttpRequest") && Request.Headers[“Origin”] != null))

        • Java:
          +response.addHeader("Access-Control-Allow-Origin", "www.trusted.com");

          + +check for cross domain XHR request:
          +if((request.getHeader("X-Requested-With") == "XMLHttpRequest") && request.getHeader("Origin")!= null))

        • PHP:
          + + header('Access-Control-Allow-Origin: www.trusted.com');
          +?>

          + +Check for cross domain XHR request:
          +If( isset($_SERVER['HTTP_X_REQUESTED_WITH']) && ($_SERVER['HTTP_X_REQUESTED_WITH'] == 'XMLHttpRequest') && isset($_SERVER[‘Origin’]))

        ]]>
        Reference InfoOWASP HTML 5 Security Cheat Sheet
        https://www.owasp.org/index.php/HTML5_Security_Cheat_Sheet

        Cross-Origin Resource Sharing
        http://en.wikipedia.org/wiki/Cross-origin_resource_sharing
        http://www.w3.org/TR/cors/

        +Same Origin Policy
        http://en.wikipedia.org/wiki/Same_origin_policy

        ]]>
        OPTIONS/admin/indexhtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
        Refererhttp://zero.webappsecurity.com/admin/
        Accept*/*
        Accept-Encodinggzip, deflate
        Pragmano-cache
        User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
        Hostzero.webappsecurity.com
        Access-Control-Request-MethodPOST
        Access-Control-Request-HeadersX-Pingsession
        Originhttp://webinspect.microfocus.com
        ConnectionKeep-Alive
        X-WIPPAscVersion=22.2.0.253
        X-Scan-MemoCategory="Audit.Attack";SID="8BB778B24C36451BEF2BD1B34699A822";PSID="0CF01A02A1917FDBDF9FF1C597F1495C";SessionType="AuditAttack";CrawlType="None";AttackType="Other";OriginatingEngineID="822a8e1c-b895-4666-a9d2-026b0a4716c9";AttackSequence="0";AttackParamDesc="";AttackParamIndex="0";AttackParamSubIndex="0";CheckId="11281";Engine="Html5+Cross+Origin+Options+Request";SmartMode="4";tht="11";
        X-RequestManager-Memosc="1";rid="a5e270d4";
        X-Request-Memorid="46e06623";sc="1";thid="27";
        CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
        HTTP/1.1200OK
        DateFri, 24 Feb 2023 14:04:52 GMT
        ServerApache-Coyote/1.1
        Access-Control-Allow-Origin*
        Cache-Controlno-cache, max-age=0, must-revalidate, no-store
        AllowGET, HEAD, POST, PUT, DELETE, TRACE, OPTIONS, PATCH
        Content-Length0
        Keep-Alivetimeout=5, max=31
        ConnectionKeep-Alive
        Content-Typetext/html
        http://zero.webappsecurity.com:80/admin/WS_FTP.LOGhttpzero.webappsecurity.com80Vulnerability10028107351Poor Error Handling: Unhandled ExceptionCWE-209: Information Exposure Through an Error MessageCWE-248: Uncaught ExceptionErrorsPoor Error Handling: Unhandled ExceptionSummaryImplicationExecutionFixFor Development:

        + + + +Don't display fully qualified pathnames as part of error or informational messages. At the least, fully qualified pathnames can provide an attacker with important information about the architecture of web application. + +

        For Security Operations:

        + +The following recommendations will help to ensure that a potential attacker is not deriving valuable information from any error message that is presented. + +
        • + +Uniform Error Codes: Ensure that you are not inadvertently supplying information to an attacker via the use of inconsistent or "conflicting" error messages. For +instance, don't reveal unintended information by utilizing error messages such as Access Denied, which will also let an attacker know that the file he seeks +actually exists. Have consistent terminology for files and folders that do exist, do not exist, and which have read access denied.
        • Informational Error Messages: Ensure that error messages do not reveal too much information. Complete or partial paths, variable and file names, row and +column names in tables, and specific database errors should never be revealed to the end user. Remember, an attacker will gather as much information as +possible, and then add pieces of seemingly innocuous information together to craft a method of attack.
        • Proper Error Handling: Utilize generic error pages and error handling logic to inform end users of potential problems. Do not provide system information or +other data that could be utilized by an attacker when orchestrating an attack.
        For QA:

        + +In reality, simple testing can usually determine how your web application will react to different input errors. More expansive testing must be conducted to +cause internal errors to gauge the reaction of the site.

        + +The best course of action for QA associates to take is to ensure that the error handling scheme is consistent. Do you receive a different type of error for a file +that does not exist as opposed to a file that does? Are phrases like "Permission Denied" utilized which could reveal the existence of a file to an attacker? It is +often a seemingly innocuous piece of information that provides an attacker with the means to discover something else which he can then utilize when +conducting an attack.]]>
        Reference Info
        Vulnerability38507642Web Server Misconfiguration: Unprotected FileEnvironmentWeb Server Misconfiguration: Unprotected FileCWE-538: File and Directory Information ExposureSummaryImplication +When WS_FTP is used to transfer files, a log file called 'ws_ftp.log' is created on the server. This log file contains records of every file that is accessed by WS_FTP, which could possibly contain very valuable information to an attacker because it may list files that are otherwise "hidden." This often includes administrative or maintenance applications, web application configuration files, applications-in-development, backed-up application source code and possible application data files. + +

        + + +Primarily, WS_FTP log files are valuable to attackers because they display all files in a directory, not just ones that are intended to be used. How easy is it for an attacker to take advantage of an insecure web application via the discovery of a WS_FTP log file on your web application server? Often, this is as simple as typing in the name of the file garnered directly from the WS_FTP log files. In essence, gaining access to a WS_TP log file greatly reduces the amount of effort a potential attacker must employ to gain knowledge of your web application. + +

        + + +A fundamental necessity for a successful attack upon your web application is reconnaissance. An attacker will employ a variety of methods, including malicious scanning agents and Google searches, to find out as much information about your web application as possible. That information can then be utilized when the attacker is formulating his next method of attack. An attacker who finds a WS_FTP log files has had a large portion of his reconnaissance conducted for him.]]>
        Execution +Click the following link to examine the contents of the WS_FTP log file discovered on your web application server.


        ~FullURL~]]>
        FixFor Development:
        + + +Unless you are actively involved with implementing the web application server, there is not a wide range of available solutions to prevent problems that can occur from an attacker finding a WS_FTP log file. Primarily, this problem will be resolved by the web application server administrator. However, there are certain actions you can take that will help to secure your web application. + + +
        • Restrict access to important files or directories only to those who actually need it.
        • Ensure that files containing sensitive information are not left publicly accessible, or that comments left inside files do not + +reveal the locations of directories best left confidential.
        For Security Operations:
        +There are two primary actions to take to eliminate the risk of a WS_FTP log file vulnerability.
        • Manually remove the WS_FTP log file from the application server.
        • Configure WS_FTP so that it does not create log files on servers.
        One of the most important aspects of web application security is to restrict access to important files or directories only to those individuals who actually need to access them. Ensure that the private architectural structure of your web application is not exposed to anyone who wishes to view it as even seemingly innocuous directories can provide important information to a potential attacker. + +

        + +The following recommendations can help to ensure that you are not unintentionally allowing access to either information that could be utilized in conducting an attack or propriety data stored in publicly accessible directories. +
        • Ensure that files containing sensitive information are not left publicly accessible, or that comments left inside files do not reveal the locations of directories best left confidential.
        • Restrict access to important files or directories only to those who actually need it.
        • Don't follow standard naming procedures for hidden directories. For example, don't create a hidden directory called "cgi" that contains cgi scripts. Obvious directory names are just that...readily guessed by an attacker.
        + +Remember, the harder you make it for an attacker to access information about your web application, the more likely it is that he will simply find an easier target. + +

        For QA:
        +For reasons of security, it is important to test the web application not only from the perspective of a normal user, but also from that of a malicious one. Whenever possible, adopt the mindset of an attacker when testing your web application for security defects. Access your web application from outside your firewall or IDS. Utilize Google or another search engine to ensure that searches for vulnerable files do not return information from regarding your web application. For example, an attacker will utilize a search engine, and search for directory listings such as the following: "index of / cgi-bin". Make sure that your directory structure is not obvious, and that only files that are necessary are capable of being accessed.]]>
        Reference InfoIIS:
        Microsoft IIS FTP Information

        General:
        Password-protecting web + +pages
        Web + +Security
        FTP Clients]]>
        VulnerabilityCUSTOM35081System Information Leak: Internal IPEncapsulationSystem Information Leak: Internal IPCWE-212: Improper Cross-boundary Removal of Sensitive DataSummary10.x.x.x
        172.16.x.x through 172.31.x.x
        192.168.x.x
        fd00::x
        If not a part of techical documentation, recommendations include removing the string from the production server.]]>
        ImplicationExecutionFix +This issue can appear for several reasons. The most common is that the application or webserver error message discloses the IP address. This can be solved by determining where to turn off detailed error messages in the application or webserver. Another common reason is due to a comment located in the source of the webpage. This can easily be removed from the source of the page.]]>Reference Info
        sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:47 B C:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:47 B C:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:47 B C:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:47 B C:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:47 B C:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:47 B C:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:47 B C:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:47 B C:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:47 B C:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:47 B C:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:47 B C:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:47 B C:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:47 B C:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:47 B C:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg + +10.1.1.231 14:47 B C:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:47 B C:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:47 B C:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:47 B C:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:47 B C:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:47 B C:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:47 B C:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:47 B C:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:47 B C:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:47 B C:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:47 B C:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:47 B C:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:47 B C:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:47 B C:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg + +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg + +10.1.1.231 14:47 B C:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:47 B C:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:47 B C:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:47 B C:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:47 B C:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:47 B C:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:47 B C:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:47 B C:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:47 B C:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:47 B C:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:47 B C:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:47 B C:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:47 B C:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:47 B C:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg + +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:47 B C:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:47 B C:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:47 B C:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:47 B C:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:47 B C:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:47 B C:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:47 B C:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:47 B C:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:47 B C:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:47 B C:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:47 B C:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:47 B C:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:47 B C:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:47 B C:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg + +10.1.1.231 14:47 B C:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:47 B C:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:47 B C:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:47 B C:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:47 B C:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:47 B C:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:47 B C:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:47 B C:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:47 B C:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:47 B C:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:47 B C:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:47 B C:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:47 B C:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:47 B C:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg + +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg + +10.1.1.231 14:47 B C:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:47 B C:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:47 B C:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:47 B C:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:47 B C:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:47 B C:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:47 B C:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:47 B C:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:47 B C:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:47 B C:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:47 B C:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:47 B C:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:47 B C:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:47 B C:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +]]>GET/admin/WS_FTPLOGHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=756DA386 +
        Refererhttp://zero.webappsecurity.com/admin/
        Accept*/*
        Accept-Encodinggzip, deflate
        Pragmano-cache
        User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
        Hostzero.webappsecurity.com
        ConnectionKeep-Alive
        X-WIPPAscVersion=22.2.0.253
        X-Scan-MemoCategory="Audit.Attack";SID="94A1EDE0480773EBF41420A1285DCDB3";PSID="34A0263BDAF1097FE98AABBF96C88CB2";SessionType="AuditAttack";CrawlType="None";AttackType="Search";OriginatingEngineID="60b8f839-2e70-4177-8e47-f305852be435";AttackSequence="0";AttackParamDesc="";AttackParamIndex="0";AttackParamSubIndex="0";CheckId="764";Engine="Site+Search";SmartMode="4";tht="11";
        X-RequestManager-Memostid="15";stmi="0";sc="1";rid="92744822";
        X-Request-Memorid="b27ca641";sc="1";thid="27";
        CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID756DA386
        HTTP/1.1200OK sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:47 B C:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:47 B C:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:47 B C:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:47 B C:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:47 B C:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:47 B C:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:47 B C:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:47 B C:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:47 B C:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:47 B C:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:47 B C:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:47 B C:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:47 B C:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:47 B C:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg + +10.1.1.231 14:47 B C:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:47 B C:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:47 B C:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:47 B C:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:47 B C:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:47 B C:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:47 B C:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:47 B C:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:47 B C:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:47 B C:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:47 B C:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:47 B C:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:47 B C:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:47 B C:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg + +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg + +10.1.1.231 14:47 B C:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:47 B C:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:47 B C:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:47 B C:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:47 B C:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:47 B C:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:47 B C:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:47 B C:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:47 B C:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:47 B C:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:47 B C:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:47 B C:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:47 B C:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:47 B C:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg + +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:47 B C:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:47 B C:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:47 B C:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:47 B C:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:47 B C:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:47 B C:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:47 B C:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:47 B C:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:47 B C:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:47 B C:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:47 B C:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:47 B C:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:47 B C:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:47 B C:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg + +10.1.1.231 14:47 B C:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:47 B C:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:47 B C:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:47 B C:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:47 B C:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:47 B C:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:47 B C:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:47 B C:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:47 B C:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:47 B C:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:47 B C:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:47 B C:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:47 B C:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:47 B C:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg + +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\boston.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.html +10.1.1.233 10:28 B C:\OADWEB~1\BOSTON\index.htm <-- sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston blondbkgB.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\boston.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston boston.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\choices.html --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston choices.html +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\concbkg.jpeg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston concbkg.jpeg +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\index.htm --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston index.htm +10.1.1.233 08:34 B C:\Oad Web Stuff\BOSTON\water5.jpg --> sunburn C:\old_repo\root\oad\incoming\lorenzo\boston water5.jpg +10.1.1.231 13:47 B c:\web\boston\ws_ftp.log <-- SunSite UNC C:\old_repo\root\oad\boston ws_ftp.log +10.1.1.231 14:08 B c:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:08 B c:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:08 B c:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:08 B c:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:08 B c:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:08 B c:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg +10.1.1.231 14:08 B c:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:08 B c:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:08 B c:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:08 B c:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:08 B c:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:08 B c:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:08 B c:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:08 B c:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:08 B c:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:08 B c:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:08 B c:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:08 B c:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:08 B c:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +10.1.1.231 14:08 B c:\web\boston\WS_FTP.LOG --> sunburn C:\old_repo\root\oad\boston WS_FTP.LOG +10.1.1.231 14:47 B C:\web\boston\bball.gif --> sunburn C:\old_repo\root\oad\boston bball.gif +10.1.1.231 14:47 B C:\web\boston\blondbkgB.jpeg --> sunburn C:\old_repo\root\oad\boston blondbkgB.jpeg +10.1.1.231 14:47 B C:\web\boston\boston.htm --> sunburn C:\old_repo\root\oad\boston boston.htm +10.1.1.231 14:47 B C:\web\boston\boston.html --> sunburn C:\old_repo\root\oad\boston boston.html +10.1.1.231 14:47 B C:\web\boston\choices.html --> sunburn C:\old_repo\root\oad\boston choices.html +10.1.1.231 14:47 B C:\web\boston\concbkg.jpeg --> sunburn C:\old_repo\root\oad\boston concbkg.jpeg + +10.1.1.231 14:47 B C:\web\boston\gtrhedsm.gif --> sunburn C:\old_repo\root\oad\boston gtrhedsm.gif +10.1.1.231 14:47 B C:\web\boston\index.html --> sunburn C:\old_repo\root\oad\boston index.html +10.1.1.231 14:47 B C:\web\boston\mars7.jpg --> sunburn C:\old_repo\root\oad\boston mars7.jpg +10.1.1.231 14:47 B C:\web\boston\oadal1p2.gif --> sunburn C:\old_repo\root\oad\boston oadal1p2.gif +10.1.1.231 14:47 B C:\web\boston\oadal3p1.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p1.jpg +10.1.1.231 14:47 B C:\web\boston\oadal3p2.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p2.jpg +10.1.1.231 14:47 B C:\web\boston\oadal3p3.jpg --> sunburn C:\old_repo\root\oad\boston oadal3p3.jpg +10.1.1.231 14:47 B C:\web\boston\palmtreeicon.jpg --> sunburn C:\old_repo\root\oad\boston palmtreeicon.jpg +10.1.1.231 14:47 B C:\web\boston\peoplenew.JPG --> sunburn C:\old_repo\root\oad\boston peoplenew.JPG +10.1.1.231 14:47 B C:\web\boston\rsd2.gif --> sunburn C:\old_repo\root\oad\boston rsd2.gif +10.1.1.231 14:47 B C:\web\boston\sidewavy.gif --> sunburn C:\old_repo\root\oad\boston sidewavy.gif +10.1.1.231 14:47 B C:\web\boston\smallogo.gif --> sunburn C:\old_repo\root\oad\boston smallogo.gif +10.1.1.231 14:47 B C:\web\boston\teapotglow.jpg --> sunburn C:\old_repo\root\oad\boston teapotglow.jpg +10.1.1.231 14:47 B C:\web\boston\water5.jpg --> sunburn C:\old_repo\root\oad\boston water5.jpg +]]>
        DateFri, 24 Feb 2023 14:04:54 GMT
        ServerApache-Coyote/1.1
        Access-Control-Allow-Origin*
        Accept-Rangesbytes
        ETagW/"504686-1368929102000"
        Last-ModifiedSun, 19 May 2013 02:05:02 GMT
        Content-Length504686
        Keep-Alivetimeout=5, max=11
        ConnectionKeep-Alive
        Content-Typetext/plain
        http://zero.webappsecurity.com:80/admin/httpzero.webappsecurity.com80Vulnerability3850108101Web Server Misconfiguration: Unprotected DirectoryEnvironmentWeb Server Misconfiguration: Unprotected DirectoryCWE-552: Files or Directories Accessible to External PartiesSummaryImplication Administrative directories typically contain applications capable of changing the configuration of the running software; an attacker who gains access to an administrative application can drastically affect the operation of the web site.]]>ExecutionFixFor Security Operations:
        +You should evaluate the production requirements for the found directory. If the directory is not required for production operation, then the directory and its contents should be removed or restricted by a server access control mechanism. More information about implementing access control schemes can be found in the References. Automatic directory indexing should also be disabled, if applicable. + +

        For Development:
        +This problem will need to be resolved by the web application server administrator. In general, do not rely on 'hidden' directories within the web root that can contain sensitive resources or web applications. Assume an attacker knows about the existence of all directories and files on your web site, and protect them with proper access controls. + +

        For QA:
        +This problem will be resolved by the web application server administrator.]]>
        Reference InfoImplementing Basic Authentication in IIS
        http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/a + +bbca505-6f63-4267-aac1-1ea89d861eb4.mspx

        Authentication, Authorization and Access Control
        http://httpd.apache.org/docs/2.0/howto/auth.html]]>
        + + + + Zero - Admin - Home + + + + + + + + + + + + + + + +
        + + + + +
        +
        + +
        +
        +

        Admin Home

        +
        +
        + +
        +
        + +
        + +
        +
        +
        +
        + +
        +
        + +
        +
        +
        +
        +
        +
          +
        • Download WebInspect
        • +
        +
        + +
        +
          +
        • Terms of Use
        • +
        +
        + +
        +
          +
        • Contact Micro Focus
        • +
        • Privacy Statement
        • + +
        +
        +
        + +
        +
        + The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating + the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting + Web application vulnerabilities. This site is not a real banking site and any similarities to third party products + and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, + either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. + Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at + https://www.microfocus.com/about/legal/#privacy + and Micro Focus Fortify’s Online Privacy Statement found at + https://www.microfocus.com/about/legal/#privacy. + +

        + + Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. +
        +
        +
        +
        +
        + + + + +]]>
        GET/admin/HTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=756DA386 +
        Refererhttp://zero.webappsecurity.com/
        Accept*/*
        Accept-Encodinggzip, deflate
        Pragmano-cache
        User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
        Hostzero.webappsecurity.com
        ConnectionKeep-Alive
        X-WIPPAscVersion=22.2.0.253
        X-Scan-MemoCategory="Audit.Attack";SID="C016C291C37C011F249B079F7ECCF41F";PSID="306E42D0F653E7CFA6720D7F15AE506B";SessionType="AuditAttack";CrawlType="None";AttackType="Search";OriginatingEngineID="60b8f839-2e70-4177-8e47-f305852be435";AttackSequence="0";AttackParamDesc="";AttackParamIndex="0";AttackParamSubIndex="0";CheckId="10810";Engine="Site+Search";SmartMode="4";tht="11";
        X-RequestManager-Memostid="15";stmi="0";sc="1";rid="75f3d78f";
        X-Request-Memorid="a1d76602";sc="1";thid="27";
        CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID756DA386
        HTTP/1.1200OK + + + + Zero - Admin - Home + + + + + + + + + + + + + + + +
        + + + + +
        +
        + +
        +
        +

        Admin Home

        +
        +
        + +
        +
        + +
        + +
        +
        +
        +
        + +
        +
        + +
        +
        +
        +
        +
        +
          +
        • Download WebInspect
        • +
        +
        + +
        +
          +
        • Terms of Use
        • +
        +
        + +
        +
          +
        • Contact Micro Focus
        • +
        • Privacy Statement
        • + +
        +
        +
        + +
        +
        + The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating + the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting + Web application vulnerabilities. This site is not a real banking site and any similarities to third party products + and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, + either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. + Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at + https://www.microfocus.com/about/legal/#privacy + and Micro Focus Fortify’s Online Privacy Statement found at + https://www.microfocus.com/about/legal/#privacy. + +

        + + Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. +
        +
        +
        +
        +
        + + + + +]]>
        DateFri, 24 Feb 2023 14:04:59 GMT
        ServerApache-Coyote/1.1
        Access-Control-Allow-Origin*
        Cache-Controlno-cache, max-age=0, must-revalidate, no-store
        Content-Typetext/html;charset=UTF-8
        Content-Languageen-US
        Keep-Alivetimeout=5, max=66
        ConnectionKeep-Alive
        Content-Length6617
        /search.htmlsearchTermtextsearch-query
        http://zero.webappsecurity.com:80/README.txthttpzero.webappsecurity.com80Vulnerability10028103421Web Server Misconfiguration: Unprotected FileEnvironmentWeb Server Misconfiguration: Unprotected FileCWE-538: File and Directory Information ExposureSummaryImplicationThe disclosed documentation may aid an attacker in attacking the server and application.]]>ExecutionOpen a web browser and navigate to ~FullURL~.]]>FixFor Security Operations:
        Remove documentation files from all web accessible locations, or restrict access to the files via access control mechanisms. + +


        For Development:
        Have Security Operations remove this file from the production server.


        For QA:
        Have Security Operations remove this file from the production server. +]]>
        Reference Info
        GET/READMEtxtHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=A9EF43AC +
        Refererhttp://zero.webappsecurity.com/login.html
        Accept*/*
        Accept-Encodinggzip, deflate
        Pragmano-cache
        User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
        Hostzero.webappsecurity.com
        ConnectionKeep-Alive
        X-WIPPAscVersion=22.2.0.253
        X-Scan-MemoCategory="Audit.Attack";SID="2CD08610F2D3978F19D8D6D4E6A5089B";PSID="37A656705626B4D1D64F6BFA191C2A08";SessionType="AuditAttack";CrawlType="None";AttackType="None";OriginatingEngineID="65cee7d3-561f-40dc-b5eb-c0b8c2383fcb";AttackSequence="12";AttackParamDesc="";AttackParamIndex="0";AttackParamSubIndex="0";CheckId="10342";Engine="Request+Modify";SmartMode="4";tht="11";
        X-RequestManager-Memostid="17";stmi="0";sc="1";rid="5378ced7";
        X-Request-Memorid="91ef5bbe";sc="1";thid="28";
        CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONIDA9EF43AC
        HTTP/1.1200OK
        DateFri, 24 Feb 2023 14:05:00 GMT
        ServerApache-Coyote/1.1
        Access-Control-Allow-Origin*
        Content-Dispositionattachment; filename="README.txt"
        Content-Typetext/plain;charset=UTF-8
        Content-Length1225
        Keep-Alivetimeout=5, max=50
        ConnectionKeep-Alive
        http://zero.webappsecurity.com:80/readme.txthttpzero.webappsecurity.com80GET/readmetxtHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=A9EF43AC +
        Refererhttp://zero.webappsecurity.com/login.html
        Accept*/*
        Accept-Encodinggzip, deflate
        Pragmano-cache
        User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
        Hostzero.webappsecurity.com
        ConnectionKeep-Alive
        X-WIPPAscVersion=22.2.0.253
        X-Scan-MemoCategory="Audit.Attack";SID="9F6C30B14023E2AF3965E08C78D2E75B";PSID="37A656705626B4D1D64F6BFA191C2A08";SessionType="AuditAttack";CrawlType="None";AttackType="None";OriginatingEngineID="65cee7d3-561f-40dc-b5eb-c0b8c2383fcb";AttackSequence="13";AttackParamDesc="";AttackParamIndex="0";AttackParamSubIndex="0";CheckId="10342";Engine="Request+Modify";SmartMode="4";tht="11";
        X-RequestManager-Memostid="17";stmi="0";sc="1";rid="15a0dbde";
        X-Request-Memorid="39f528e2";sc="1";thid="28";
        CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONIDA9EF43AC
        HTTP/1.1200OK
        DateFri, 24 Feb 2023 14:05:00 GMT
        ServerApache-Coyote/1.1
        Access-Control-Allow-Origin*
        Content-Dispositionattachment; filename="readme.txt"
        Content-Typetext/plain;charset=UTF-8
        Content-Length1225
        Keep-Alivetimeout=5, max=43
        ConnectionKeep-Alive
        http://zero.webappsecurity.com:80/manager/httpzero.webappsecurity.com80]]>PROPFIND/manager/HTTP/1.1<?xml version="1.0"?><D:propfind xmlns:D="DAV:"><D:prop><D:displayname /></D:prop></D:propfind>]]>]]>Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=756DA386 +
        Content-Typetext/xml
        Refererhttp://zero.webappsecurity.com/manager/
        Accept*/*
        Accept-Encodinggzip, deflate
        Pragmano-cache
        User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
        Hostzero.webappsecurity.com
        ConnectionKeep-Alive
        Content-Length95
        CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID756DA386
        HTTP/1.1302Found
        DateFri, 24 Feb 2023 14:05:03 GMT
        ServerApache-Coyote/1.1
        Access-Control-Allow-Origin*
        Location/manager/html
        Content-Typetext/html
        Content-Length0
        Keep-Alivetimeout=5, max=84
        ConnectionKeep-Alive
        http://zero.webappsecurity.com:80/errors/httpzero.webappsecurity.com80 + +Directory Listing For /errors/ + +

        Directory Listing For /errors/ - Up To /


        + + + + + + + + + +
        FilenameSizeLast Modified
           +errors.log21.1 kbSun, 19 May 2013 02:05:02 GMT
        +

        Apache Tomcat/7.0.70

        + +]]>
        GET/errors/HTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=756DA386 +
        Refererhttp://zero.webappsecurity.com/errors/errors.log
        Accept*/*
        Accept-Encodinggzip, deflate
        Pragmano-cache
        User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
        Hostzero.webappsecurity.com
        ConnectionKeep-Alive
        X-WIPPAscVersion=22.2.0.253
        X-Scan-MemoCategory="Audit.Attack";SID="BB23AC8A7B9C89C3DE9576C0FEACCA3F";PSID="C32128A8498A56E4E6435B6994687E3A";SessionType="PathTruncation";CrawlType="None";AttackType="None";OriginatingEngineID="398bfe9e-1b77-4458-9691-603eea06e341";AttackSequence="0";AttackParamDesc="";AttackParamIndex="0";AttackParamSubIndex="0";CheckId="0";Engine="Path+Truncation";SmartMode="4";tht="11";
        X-RequestManager-Memostid="15";stmi="0";sc="1";rid="ae0519b0";
        X-Request-Memorid="592bd07d";sc="1";thid="27";
        CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID756DA386
        HTTP/1.1200OK + +Directory Listing For /errors/ + +

        Directory Listing For /errors/ - Up To /


        + + + + + + + + + +
        FilenameSizeLast Modified
           +errors.log21.1 kbSun, 19 May 2013 02:05:02 GMT
        +

        Apache Tomcat/7.0.70

        + +]]>
        DateFri, 24 Feb 2023 14:05:40 GMT
        ServerApache-Coyote/1.1
        Access-Control-Allow-Origin*
        Content-Typetext/html;charset=UTF-8
        Content-Length1384
        Keep-Alivetimeout=5, max=76
        ConnectionKeep-Alive
        http://zero.webappsecurity.com:80/errors/errors.loghttpzero.webappsecurity.com80Vulnerability11281112791HTML5: Overly Permissive CORS PolicyEncapsulationHTML5: Overly Permissive CORS PolicyCWE-942: Overly Permissive Cross-domain WhitelistSummary
        +Cross-Origin Resource Sharing, commonly referred to as CORS, is a technology that allows a domain to define a policy for its resources to be accessed by a web page hosted on a different domain using cross domain XML HTTP Requests (XHR). Historically, the browser restricts cross domain XHR requests to abide by the same origin policy. At its basic form, the same origin policy sets the script execution scope to the resources available on the current domain and prohibits any communication to domains outside this scope. While CORS is supported on all major browsers, it also requires that the domain correctly defines the CORS policy in order to have its resources shared with another domain. These restrictions are managed by access policies typically included in specialized response headers, such as: +
        • Access-Control-Allow-Origin
        • Access-Control-Allow-Headers
        • Access-Control-Allow-Methods
        +A domain includes a list of domains that are allowed to make cross domain requests to shared resources in Access-Control-Allow-Origin header. This header can have either list of domains or a wildcard character (“*”) to allow all access. Having a wildcard is considered overly permissive policy.]]>
        ImplicationExecutionFix

        Example 1:
        An example of IIS server configuration for listing domains the application is allowed to communicate with.
        + +    <configuration>
        +        <system.webServer>
        +            <httpProtocol>
        +                <customHeaders>
        +                    <add name="Access-Control-Allow-Origin" value="www.trusted.com" />
        +                </customHeaders>
        +            </httpProtocol>
        +        </system.webServer>
        +    </configuration>

        + +Example 1 shows how to configure CORS headers at the server level; however, the preferred method is to make use of the API of the language used to develop the application and set access permissions at the resource level.
        + +Here are some programmatic samples by language:

        • .NET:
          +Append Header:
          +Response.AppendHeader("Access-Control-Allow-Origin", "www.trusted.com");

          + +Check for cross domain XHR request:
          +if((Request.Headers["X-Requested-With"] == "XMLHttpRequest") && Request.Headers[“Origin”] != null))

        • Java:
          +response.addHeader("Access-Control-Allow-Origin", "www.trusted.com");

          + +check for cross domain XHR request:
          +if((request.getHeader("X-Requested-With") == "XMLHttpRequest") && request.getHeader("Origin")!= null))

        • PHP:
          + + header('Access-Control-Allow-Origin: www.trusted.com');
          +?>

          + +Check for cross domain XHR request:
          +If( isset($_SERVER['HTTP_X_REQUESTED_WITH']) && ($_SERVER['HTTP_X_REQUESTED_WITH'] == 'XMLHttpRequest') && isset($_SERVER[‘Origin’]))

        ]]>
        Reference InfoOWASP HTML 5 Security Cheat Sheet
        https://www.owasp.org/index.php/HTML5_Security_Cheat_Sheet

        Cross-Origin Resource Sharing
        http://en.wikipedia.org/wiki/Cross-origin_resource_sharing
        http://www.w3.org/TR/cors/

        +Same Origin Policy
        http://en.wikipedia.org/wiki/Same_origin_policy

        ]]>
        OPTIONS/errors/errorslogHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
        Refererhttp://zero.webappsecurity.com/errors/
        Accept*/*
        Accept-Encodinggzip, deflate
        Pragmano-cache
        User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
        Hostzero.webappsecurity.com
        Access-Control-Request-MethodPOST
        Access-Control-Request-HeadersX-Pingsession
        Originhttp://webinspect.microfocus.com
        ConnectionKeep-Alive
        X-WIPPAscVersion=22.2.0.253
        X-Scan-MemoCategory="Audit.Attack";SID="4C9205CDCDFD6AC68DDF0894FB5B1718";PSID="C32128A8498A56E4E6435B6994687E3A";SessionType="AuditAttack";CrawlType="None";AttackType="Other";OriginatingEngineID="822a8e1c-b895-4666-a9d2-026b0a4716c9";AttackSequence="0";AttackParamDesc="";AttackParamIndex="0";AttackParamSubIndex="0";CheckId="11281";Engine="Html5+Cross+Origin+Options+Request";SmartMode="4";tht="11";
        X-RequestManager-Memosc="1";rid="b665f74c";
        X-Request-Memorid="9a3d3f13";sc="1";thid="28";
        CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
        HTTP/1.1200OK
        DateFri, 24 Feb 2023 14:05:42 GMT
        ServerApache-Coyote/1.1
        Access-Control-Allow-Origin*
        AllowGET, HEAD, POST, PUT, DELETE, OPTIONS
        Content-Length0
        Keep-Alivetimeout=5, max=45
        ConnectionKeep-Alive
        Content-Typetext/plain
        http://zero.webappsecurity.com:80/search.html?searchTerm=%3c%73%43%72%3c%53%63%52%69%50%74%3e%49%70%54%3e%61%6c%65%72%74%28%31%32%37%36%36%29%3c%2f%73%43%72%3c%53%63%52%69%50%74%3e%49%70%54%3ehttpzero.webappsecurity.com80searchTermVulnerability510556494Cross-Site Scripting: ReflectedCWE-80: Improper Neutralization of Script-Related HTML Tags in a Web Page (Basic XSS)Input Validation and RepresentationCross-Site Scripting: ReflectedSummary
        A Cross-Site Scripting (XSS) vulnerability was detected in the web application. Cross-Site Scripting occurs when dynamically generated web pages display user input, such as login information, that is not properly validated, allowing an attacker to embed malicious scripts into the generated page and then execute the script on the machine of any user that views the site. In this instance, the web application was vulnerable to an automatic payload, meaning the user simply has to visit a page to make the malicious scripts execute. If successful, Cross-Site Scripting vulnerabilities can be exploited to manipulate or steal cookies, create requests that can be mistaken for those of a valid user, compromise confidential information, or execute malicious code on end user systems. Recommendations include implementing secure programming techniques that ensure proper filtration of user-supplied data, and encoding all user supplied data to prevent inserted scripts being sent to end users in a format that can be executed.]]>
        Implication +Cross-Site Scripting(XSS) happens when user input from a web client is immediately included via server-side scripts in a dynamically generated web page. Reflected XSS is specifically considered critical when malicious payload can be embedded in a URL (e.g. in query strings of GET requests). An attacker can trick a victim, via phishing attack, to click on a link with vulnerable input which has been altered to include attack code and then sent to the legitimate server. The injected code is then reflected back to the user's browser which executes it.

        + +The implications of successful Cross-Site Scripting attacks are: + +
        • Account hijacking - An attacker can hijack the user's session before the session cookie expires and take actions with the privileges of the user who accessed the URL, such as issuing database queries and viewing the results.
        • Malicious script execution - Users can unknowingly execute JavaScript, VBScript, ActiveX, HTML, or even Flash content that has been inserted into a dynamically generated page by an attacker. + +
        • Worm propagation - With Ajax applications, XSS can propagate somewhat like a virus. The XSS payload can autonomously inject itself into pages, and easily re-inject the same host with more XSS, all of which can be done with no hard refresh. Thus, XSS can send multiple requests using complex HTTP methods to propagate itself invisibly to the user. +
        • Information theft - Via redirection and fake sites, attackers can connect users to a malicious server of the attacker's choice and capture any information entered by the user.
        • Denial of Service - Often by utilizing malformed display requests on sites that contain a Cross-Site Scripting vulnerability, attackers can cause a denial of service condition to occur by causing the host site to query itself repeatedly .
        • Browser Redirection - On certain types of sites that use frames, a user can be made to think that he is in fact on the original site when he has been redirected to a malicious one, since the URL in the browser's address bar will remains the same. This is because the entire page isn't being redirected, just the frame in which the JavaScript is being executed is redirected.
        • Manipulation of user settings - Attackers can change user settings for nefarious purposes.
        • Bypass Content-Security-Policy protection - Attackers can inject a malformed tag formation, known as dangling tag injection, which in some cases allows injected script to reuse valid nonce on the page and bypass script source restriction. Additionally dangling tag injection can be used to steal sensitive information embedded in HTML response if browser is able to make a request to the injected link.
        • Base tag injection: Attacker can cause relative links on a page to load from a different domain by modifying the base URL for the page via base tag injection.
        • Link prefetch injection: While unable to execute script, attackers can use link tag with rel=prefetch that will make browsers pre-fetch the specified link even though it is never rendered and rejected subsequently due to web application enforced cross-site policy (e.g. CSP protections).
        • Edge side includes (ESI) Injection - ESI is a markup language used in various HTTP devices, such as reverse proxies and load balancers, that are positioned between client and server. An attacker can inject ESI markup to perform critical attacks such as cross-site scripting and HTTPOnly cookie protection bypass.
        ]]>
        Execution + +View the attack string included with the request to check what to search for in the response. For instance, if "(javascript:alert('XSS')"  is submitted as an attack (or another scripting language), it will also appear as part of the response. This indicates that the web application is taking values from the HTTP request parameters and using them in the HTTP response without first removing potentially malicious data. + + +The response can be viewed in “Web Browser” view in the Vulnerability pane to see the injected popup events in action. Events requiring user interaction (e.g. onmouseover or onclick events) can be triggered by performing the corresponding action (e.g. clicking the injected link). + + + +Injection with numeric string in src, or href, attributes indicates that the site is vulnerable to script include or content exfiltration. These can be verified by repeating the request in a browser and intercepting originating network traffic in a web proxy.]]>FixFor Development:

        +Cross-Site Scripting attacks can be avoided by carefully validating all input, and properly encoding all output. When validating user input, + +verify that it matches the strictest definition of valid input possible. For example, if a certain parameter is supposed to be a number, attempt + +to convert it to a numeric data type in your programming language.

        PHP: intval("0".$_GET['q']);

        ASP.NET: + +int.TryParse(Request.QueryString["q"], out val);

        + +The same applies to date and time values, or anything that can be converted to a stricter type before being used. When accepting other types of + +text input, make sure the value matches either a list of acceptable values (white-listing), or a strict regular expression. If at any point the + +value appears invalid, do not accept it. Also, do not attempt to return the value to the user in an error message.

        + +Most server side scripting languages provide built in methods to convert the value of the input variable into correct, non-interpretable HTML. + +These should be used to sanitize all input before it is displayed to the client.

        PHP: string htmlspecialchars (string string + +[, int quote_style])

        ASP.NET: Server.HTMLEncode (strHTML String) + + + +

        + +When reflecting values into JavaScript or another format, make sure to use a type of encoding that is appropriate. Encoding data for HTML is not + +sufficient when it is reflected inside of a script or style sheet. For example, when reflecting data in a JavaScript string, make sure to encode + +all non-alphanumeric characters using hex (\xHH) encoding.

        + +If you have JavaScript on your page that accesses unsafe information (like location.href) and writes it to the page (either with document.write, + +or by modifying a DOM element), make sure you encode data for HTML before writing it to the page. JavaScript does not have a built-in function to + +do this, but many frameworks do. If you are lacking an available function, something like the following will handle most cases:

        + +s = s.replace(/&/g,'&amp;').replace(/"/i,'&quot;').replace(/</i,'&lt;').replace(/>/i,'&gt;').replace(/'/i,'&apos;') + + +

        + +Ensure that you are always using the right approach at the right time. Validating user input should be done as soon as it is received. Encoding + +data for display should be done immediately before displaying it. + +

        + + +For Security Operations:


        + +Server-side encoding, where all dynamic content is first sent through an encoding function where Scripting tags will be replaced with codes in the + +selected character set, can help to prevent Cross-Site Scripting attacks.

        + +Many web application platforms and frameworks have some built-in support for preventing Cross-Site Scripting. Make sure that any built-in + +protection is enabled for your platform. In some cases, a misconfiguration could allow Cross-Site Scripting. In ASP.NET, if a page's + +EnableViewStateMac property is set to False, the ASP.NET view state can be used as a vector for Cross-Site Scripting.

        + +An IDS or IPS can also be used to detect or filter out XSS attacks. Below are a few regular expressions that will help detect Cross-Site + +Scripting.

        Regex for a simple XSS attack:
        +/((\%3C)|<)((\%2F)|\/)*[a-z0-9\%]+((\%3E)|>)/ix

        + +The above regular expression would be added into a new Snort rule as follows:

        + +alert tcp $EXTERNAL_NET any -> $HTTP_SERVERS $HTTP_PORTS (msg:"NII Cross-Site Scripting attempt"; flow:to_server,established; + +pcre:"/((\%3C)|<)((\%2F)|\/)*[a-z0-9\%]+((\%3E)|>)/i"; classtype:Web-application-attack; sid:9000; rev:5;)

        Paranoid regex for + +XSS attacks:
        +/((\%3C)|<)[^\n]+((\%3E)|>)/I

        + +This signature simply looks for the opening HTML tag, and its hex equivalent, followed by one or more characters other than the new line, and then + +followed by the closing tag or its hex equivalent. This may end up giving a few false positives depending upon how your web application and web + +server are structured, but it is guaranteed to catch anything that even remotely resembles a Cross-Site Scripting attack. + +

        For QA:

        + + +Fixes for Cross-Site Scripting defects will ultimately require code based fixes. Read the the following links for more information + +about manually testing your application for Cross-Site Scripting.]]>
        Reference Info
        OWASP Cross-Site Scripting Information
        https://www.owasp.org/index.php/XSS

        CERT
        http://www.cert.org/advisories/CA-2000-02.html

        Apache
        http://httpd.apache.org/info/css-security/apache_specific.html

        SecurityFocus.com
        http://www.securityfocus.com/infocus/1768 ]]>
        + + + + Zero - Search Tips + + + + + + + + + + + + + + + +
        + + + + +
        +
        +
        +
        + +
        + + +
        + +
        + +

        Search Results:

        + No results were found for the query: +
        +
        + +
        +
        + +
        +
        +
        +
        +
        +
          +
        • Download WebInspect
        • +
        +
        + +
        +
          +
        • Terms of Use
        • +
        +
        + +
        +
          +
        • Contact Micro Focus
        • +
        • Privacy Statement
        • + +
        +
        +
        + +
        +
        + The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating + the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting + Web application vulnerabilities. This site is not a real banking site and any similarities to third party products + and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, + either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. + Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at + https://www.microfocus.com/about/legal/#privacy + and Micro Focus Fortify’s Online Privacy Statement found at + https://www.microfocus.com/about/legal/#privacy. + +

        + + Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. +
        +
        +
        +
        +
        + + + + +]]>
        GET/searchhtmlHTTP/1.1searchTerm=%3c%73%43%72%3c%53%63%52%69%50%74%3e%49%70%54%3e%61%6c%65%72%74%28%31%32%37%36%36%29%3c%2f%73%43%72%3c%53%63%52%69%50%74%3e%49%70%54%3eCookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=A9EF43AC +searchTerm%3c%73%43%72%3c%53%63%52%69%50%74%3e%49%70%54%3e%61%6c%65%72%74%28%31%32%37%36%36%29%3c%2f%73%43%72%3c%53%63%52%69%50%74%3e%49%70%54%3e
        Refererhttp://zero.webappsecurity.com/
        Accept*/*
        Accept-Encodinggzip, deflate
        Pragmano-cache
        User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
        Hostzero.webappsecurity.com
        ConnectionKeep-Alive
        X-WIPPAscVersion=22.2.0.253
        X-Scan-MemoCategory="Audit.Attack";SID="C43FDF21DD93C017A5C4DC7962AC7794";PSID="DB032FFFCF5DEA9F74F4C783FBF606D7";SessionType="AuditAttack";CrawlType="None";AttackType="QueryParamManipulation";OriginatingEngineID="1354e211-9d7d-4cc1-80e6-4de3fd128002";AttackSequence="18";AttackParamDesc="searchTerm";AttackParamIndex="0";AttackParamSubIndex="0";CheckId="5105";Engine="Cross+Site+Scripting";SmartMode="4";AttackString="%253c%2573%2543%2572%253c%2553%2563%2552%2569%2550%2574%253e%2549%2570%2554%253e%2561%256c%2565%2572%2574%2528%2531%2532%2537%2536%2536%2529%253c%252f%2573%2543%2572%253c%2553%2563%2552%2569%2550%2574%253e%2549%2570%2554%253e";AttackStringProps="Attack";tht="40";
        X-RequestManager-Memostid="17";stmi="0";sc="1";rid="379b9465";
        X-Request-Memorid="ad1ba067";sc="1";thid="28";
        CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONIDA9EF43AC
        HTTP/1.1200OK + + + + Zero - Search Tips + + + + + + + + + + + + + + + +
        + + + + +
        +
        +
        +
        + +
        + + +
        + +
        + +

        Search Results:

        + No results were found for the query: +
        +
        + +
        +
        + +
        +
        +
        +
        +
        +
          +
        • Download WebInspect
        • +
        +
        + +
        +
          +
        • Terms of Use
        • +
        +
        + +
        +
          +
        • Contact Micro Focus
        • +
        • Privacy Statement
        • + +
        +
        +
        + +
        +
        + The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating + the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting + Web application vulnerabilities. This site is not a real banking site and any similarities to third party products + and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, + either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. + Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at + https://www.microfocus.com/about/legal/#privacy + and Micro Focus Fortify’s Online Privacy Statement found at + https://www.microfocus.com/about/legal/#privacy. + +

        + + Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. +
        +
        +
        +
        +
        + + + + +]]>
        DateFri, 24 Feb 2023 14:06:32 GMT
        ServerApache-Coyote/1.1
        Access-Control-Allow-Origin*
        Cache-Controlno-cache, max-age=0, must-revalidate, no-store
        Content-Typetext/html;charset=UTF-8
        Content-Languageen-US
        Keep-Alivetimeout=5, max=63
        ConnectionKeep-Alive
        Content-Length7749
        /search.htmlsearchTermtextsearch-query
        http://zero.webappsecurity.com:80/help.html?topic=https%3a%2f%2f7d4d8953-bcd1-4ed7-a73e-56bb90d08401.fortify-oast.net%2ffoohttpzero.webappsecurity.com80topicVulnerabilityCUSTOM117173Server-Side Request ForgeryInput Validation and RepresentationServer-Side Request ForgeryCWE-918: Server-Side Request Forgery (SSRF)Summary that was submitted in the parameter. +
        +Server-Side Request Forgery (SSRF) is when an attacker tricks a server into making a request to an unintended arbitrary location. A vulnerable server fails to properly validate the malicious input and forwards the request to another service. These can be internal systems, external third-party systems, attacker-controlled servers or services on the loopback interface (127.0.0.1) of the vulnerable server. Because there is a trust boundary between the vulnerable server and internal server, the internal server might lack some security controls. SSRF attacks can damage or disrupt the affected systems and might even result in the attacker gaining control over the downstream server.]]>
        ImplicationExecution
      • In the session request from the scan results, change the vulnerable parameter by replacing the DNS server name https://.fortify-oast.net to one where you can log DNS requests.
      • Send the modified request using the HTTP Editor from WebInspect Tools, or any another proxy tool, to the vulnerable server.
      • Check the logs on the DNS server. If there are new DNS requests from the target server, it is vulnerable to SSRF.
      • ]]>
        Fix
      • Review whether the application needs to trigger an arbitrary out-of-band resource. Implement an allow list of permitted URLs and block requests to URLs that are not in this list.
      • Validate user-supplied input and reject any request that contain potentially malicious data.
      • Restrict access to internal network resources by using firewalls and other network security controls that restrict access to internal network resources from untrusted sources.
      • Implement security technologies such as web application firewalls (WAFs) and intrusion detection and prevention systems (IDPSs) to monitor and reduce risk of SSRF attacks.
      • ]]>
        Reference InfoA10 Server-Side Request Forgery (SSRF) OWASP Top 10:2021
        Alexander Polyakov SSRF vs. Business critical applications BlackHat 2012
        SSRF bible. Cheatsheet]]>
        + + + + Zero - Help + + + + + + + + + + + + + + + +
        + + +
        +
        + +
        +
        +
        + +
        + + +
        +
        +
        +
        + +
        +
        + +
        +
        +
        +
        +
        +
          +
        • Download WebInspect
        • +
        +
        + +
        +
          +
        • Terms of Use
        • +
        +
        + +
        +
          +
        • Contact Micro Focus
        • +
        • Privacy Statement
        • + +
        +
        +
        + +
        +
        + The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating + the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting + Web application vulnerabilities. This site is not a real banking site and any similarities to third party products + and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, + either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. + Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at + https://www.microfocus.com/about/legal/#privacy + and Micro Focus Fortify’s Online Privacy Statement found at + https://www.microfocus.com/about/legal/#privacy. + +

        + + Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. +
        +
        +
        +
        +
        + + + + +]]>
        GET/helphtmlHTTP/1.1topic=https%3a%2f%2f7d4d8953-bcd1-4ed7-a73e-56bb90d08401.fortify-oast.net%2ffooCookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=756DA386 +topichttps%3a%2f%2f7d4d8953-bcd1-4ed7-a73e-56bb90d08401.fortify-oast.net%2ffoo
        Refererhttp://zero.webappsecurity.com/help.html
        Accept*/*
        Accept-Encodinggzip, deflate
        Pragmano-cache
        User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
        Hostzero.webappsecurity.com
        ConnectionKeep-Alive
        X-WIPPAscVersion=22.2.0.253
        X-Scan-MemoCategory="Audit.Attack";SID="07273856F05F202F53C15FFAD3384FB8";PSID="C40B25C609070F52ADA7D215EC5634E2";SessionType="AuditAttack";CrawlType="None";AttackType="QueryParamManipulation";OriginatingEngineID="a43ccdd5-ccb7-4a98-984b-b3b5be6c7d92";AttackSequence="0";AttackParamDesc="topic";AttackParamIndex="0";AttackParamSubIndex="0";CheckId="11717";Engine="Server+Side+Request+Forgery";SmartMode="4";AttackString="https%253a%252f%252f7d4d8953-bcd1-4ed7-a73e-56bb90d08401.fortify-oast.net%252ffoo";AttackStringProps="Attack";tht="11";
        X-RequestManager-Memostid="15";stmi="0";sc="1";rid="4e6b7ac6";
        X-Request-Memorid="eebfba9d";sc="1";thid="27";
        CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID756DA386
        HTTP/1.1200OK + + + + Zero - Help + + + + + + + + + + + + + + + +
        + + +
        +
        + +
        +
        +
        + +
        + + +
        +
        +
        +
        + +
        +
        + +
        +
        +
        +
        +
        +
          +
        • Download WebInspect
        • +
        +
        + +
        +
          +
        • Terms of Use
        • +
        +
        + +
        +
          +
        • Contact Micro Focus
        • +
        • Privacy Statement
        • + +
        +
        +
        + +
        +
        + The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating + the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting + Web application vulnerabilities. This site is not a real banking site and any similarities to third party products + and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, + either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. + Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at + https://www.microfocus.com/about/legal/#privacy + and Micro Focus Fortify’s Online Privacy Statement found at + https://www.microfocus.com/about/legal/#privacy. + +

        + + Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. +
        +
        +
        +
        +
        + + + + +]]>
        DateFri, 24 Feb 2023 14:06:47 GMT
        ServerApache-Coyote/1.1
        Access-Control-Allow-Origin*
        Cache-Controlno-cache, max-age=0, must-revalidate, no-store
        Content-Typetext/html;charset=UTF-8
        Content-Languageen-US
        Keep-Alivetimeout=5, max=58
        ConnectionKeep-Alive
        Content-Length6021
        http://zero.webappsecurity.com:80/help.html?topic=WEB-INF%2fweb.xmlhttpzero.webappsecurity.com80topicVulnerability10287102713Dangerous File Inclusion: LocalCWE-97: Improper Neutralization of Server-Side Includes (SSI) Within a Web Page TargetedInput Validation and RepresentationDangerous File Inclusion: LocalCWE-494: Download of Code Without Integrity CheckSummarySevere vulnerabilities have been identified that would allow an attacker to remotely view the contents of files due to improper validation of input. The specific risks from exploitation depend upon the contents of the file being requested. Recommendations include adopting secure programming techniques to ensure that only expected data is accepted by an application.]]>Implication +An attacker can view the contents of various (possibly arbitrary) files on the system, which could potentially allow the attacker to recover application source code, system configuration information, or private data.]]>ExecutionFixFor Development:

        + +This problem arises from improper validation of characters accepted by the application. Any time a parameter is passed into a dynamically generated web page, it must be assumed that the data could be incorrectly formatted. The application should contain sufficient logic to handle the situation of a parameter not being passed in or being passed incorrectly. Keep in mind how the data is being submitted, as a result of a GET or a POST. Cookies should be treated the same as parameters when developing secure and stable code. The following recommendations will help to ensure you are delivering secure web applications. + +
        • Parameter not being passed: If a parameter is expected to be passed to a dynamic web page and is omitted, the application should provide an acceptable error message to the user. Also, NEVER assume that a parameter is being passed before using it in an application.
        • Parameter of incorrect format: A parameter should never be assumed to be of a valid format. This is especially true if the parameter is being passed to a SQL database. Any string that is passed directly to a database without first being checked for proper format can be a major security risk. Also, just because a parameter is normally provided by a combo box or hidden field, DO NOT assume the format is correct. A hacker will try altering these parameters first if trying to break into your site.
        • Allowing file names to be passed in via a file name: If a parameter is being used to determine which file to process in any way, NEVER allow the file name to be used before it is verified as valid. Specifically, you should test for the existence of characters that indicate directory traversal such as .../, c:\ and /.
        • Storing of critical data in hidden parameters: Many programmers make the mistake of storing critical data in a hidden parameter or cookie. They assume that since the user doesn't see it, it's a good place to store data such as price, order number, etc. Both hidden parameters and cookies can be manipulated and returned to the server, so never assume the client returned what you set via a hidden parameter or cookie.


        For Security Operations:

        +The specific fix for this vulnerability will need to be implemented in the actual script code. However, there are certain measures that can be initiated that will help in implementing a secure database protocol for your web application. Be advised each database has its own method of secure lock down. + +

        • Informational Error Messages: Ensure that error messages do not reveal too much information. Complete or partial paths, variable and file names, row and column names in tables, and specific database errors should never be revealed to the end user. Remember, an attacker will gather as much information as possible, and then add pieces of seemingly innocuous information together to craft a method of attack.
        • Proper Error Handling: Utilize generic error pages and error handling logic to inform end users of potential problems. Do not provide system information or other data that could be utilized by an attacker when orchestrating an attack.

        For QA:

        + +Ultimately, this problem will need to be rectified in the vulnerable script. If developed in-house, provide the developer with this report. If the script was downloaded from the Internet, or owned by a third party, please contact that vendor regarding the potential vulnerability and its proper mitigation.]]>
        Reference InfoInput Validation Issues
        http://www.owasp.org/asac/input_validation/meta.shtml]]>
        + + + + Zero - Help + + + + + + + + + + + + + + + +
        + + +
        +
        + +
        +
        +
        + +
        + +
        + +
        + + + + ZeroSite + + + + + + contextConfigLocation + classpath:spring/spring-master.xml + + + + + + + com.hp.webinspect.zero.web.HSqlDbShutdownEnforcer + + + + + org.springframework.web.context.ContextLoaderListener + + + + + + + spring-dispatcher + org.springframework.web.servlet.DispatcherServlet + + + contextConfigLocation + classpath:spring/spring-web.xml + + 1 + + + + spring-dispatcher + *.html + /api/* + + + + + default + org.apache.catalina.servlets.DefaultServlet + + debug + 0 + + + listings + true + + 1 + + + + default + / + /errors/* + + + + cxf + org.apache.cxf.transport.servlet.CXFServlet + 1 + + + + cxf + /web-services/* + + + + + + readme-txt-emulator + com.hp.webinspect.zero.web.ReadmeTxtEmulator + + + + readme-txt-emulator + /readme.txt + /README.txt + /ReadMe.txt + /Readme.txt + + + + + server-status-emulator + com.hp.webinspect.zero.web.ServerStatusEmulator + + + + server-status-emulator + /server-status + + + + + + + urlRewriteFilter + org.tuckey.web.filters.urlrewrite.UrlRewriteFilter + + + + urlRewriteFilter + /* + REQUEST + FORWARD + + + + + encodingFilter + org.springframework.web.filter.CharacterEncodingFilter + + forceEncoding + true + + + encoding + UTF-8 + + + + + encodingFilter + /* + + + + + fake-common-folders-emulator + com.hp.webinspect.zero.web.FakeCommonFoldersEmulator + + folders + + /backup/, + /cgi-bin/, + /db/, + /error_log/, + + /htbin/, + /include/, + /scripts/, + /stats/, + + /testing/, + /user/ + + + + + + fake-common-folders-emulator + /* + + + + + gzipFilter + org.tuckey.web.filters.urlrewrite.gzip.GzipFilter + + + + gzipFilter + *.css + *.js + + + + + expiresFilter + org.apache.catalina.filters.ExpiresFilter + + ExpiresDefault + access plus 1 month + + + + + expiresFilter + *.css + *.js + *.jpg + *.png + *.gif + *.ico + + + + + no-cache-filer + com.hp.webinspect.zero.web.NoCacheFilter + + + + no-cache-filer + *.html + + + + + springSecurityFilterChain + org.springframework.web.filter.DelegatingFilterProxy + + + + springSecurityFilterChain + *.html + + + + + + 20 + + + + + + + index.html + + + + + + bak + application/octet-stream + + + + dat + application/octet-stream + + + + old + application/octet-stream + + + + + + + + +
        +
        +
        +
        +
        +
        + +
        +
        + +
        +
        +
        +
        +
        +
          +
        • Download WebInspect
        • +
        +
        + +
        +
          +
        • Terms of Use
        • +
        +
        + +
        +
          +
        • Contact Micro Focus
        • +
        • Privacy Statement
        • + +
        +
        +
        + +
        +
        + The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating + the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting + Web application vulnerabilities. This site is not a real banking site and any similarities to third party products + and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, + either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. + Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at + https://www.microfocus.com/about/legal/#privacy + and Micro Focus Fortify’s Online Privacy Statement found at + https://www.microfocus.com/about/legal/#privacy. + +

        + + Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. +
        +
        +
        +
        +
        + + + + +]]>
        GET/helphtmlHTTP/1.1topic=WEB-INF%2fweb.xmlCookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=A9EF43AC +topicWEB-INF%2fweb.xml
        Refererhttp://zero.webappsecurity.com/help.html
        Accept*/*
        Accept-Encodinggzip, deflate
        Pragmano-cache
        User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
        Hostzero.webappsecurity.com
        ConnectionKeep-Alive
        X-WIPPAscVersion=22.2.0.253
        X-Scan-MemoCategory="Audit.Attack";SID="DB4086449E3B3F146071905343AB56EE";PSID="30D83AD431798BFB2FC60F60280D4E62";SessionType="AuditAttack";CrawlType="None";AttackType="QueryParamManipulation";OriginatingEngineID="e33e6007-8935-4d72-b11b-6199480d6c88";AttackSequence="1";AttackParamDesc="topic";AttackParamIndex="0";AttackParamSubIndex="0";CheckId="10287";Engine="LFI+Agent";SmartMode="4";AttackString="WEB-INF%252fweb.xml";AttackStringProps="Attack";tht="11";
        X-RequestManager-Memostid="17";stmi="0";sc="1";rid="99284e9c";
        X-Request-Memorid="095a4c56";sc="1";thid="28";
        CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONIDA9EF43AC
        HTTP/1.1200OK + + + + Zero - Help + + + + + + + + + + + + + + + +
        + + +
        +
        + +
        +
        +
        + +
        + +
        + +
        + + + + ZeroSite + + + + + + contextConfigLocation + classpath:spring/spring-master.xml + + + + + + + com.hp.webinspect.zero.web.HSqlDbShutdownEnforcer + + + + + org.springframework.web.context.ContextLoaderListener + + + + + + + spring-dispatcher + org.springframework.web.servlet.DispatcherServlet + + + contextConfigLocation + classpath:spring/spring-web.xml + + 1 + + + + spring-dispatcher + *.html + /api/* + + + + + default + org.apache.catalina.servlets.DefaultServlet + + debug + 0 + + + listings + true + + 1 + + + + default + / + /errors/* + + + + cxf + org.apache.cxf.transport.servlet.CXFServlet + 1 + + + + cxf + /web-services/* + + + + + + readme-txt-emulator + com.hp.webinspect.zero.web.ReadmeTxtEmulator + + + + readme-txt-emulator + /readme.txt + /README.txt + /ReadMe.txt + /Readme.txt + + + + + server-status-emulator + com.hp.webinspect.zero.web.ServerStatusEmulator + + + + server-status-emulator + /server-status + + + + + + + urlRewriteFilter + org.tuckey.web.filters.urlrewrite.UrlRewriteFilter + + + + urlRewriteFilter + /* + REQUEST + FORWARD + + + + + encodingFilter + org.springframework.web.filter.CharacterEncodingFilter + + forceEncoding + true + + + encoding + UTF-8 + + + + + encodingFilter + /* + + + + + fake-common-folders-emulator + com.hp.webinspect.zero.web.FakeCommonFoldersEmulator + + folders + + /backup/, + /cgi-bin/, + /db/, + /error_log/, + + /htbin/, + /include/, + /scripts/, + /stats/, + + /testing/, + /user/ + + + + + + fake-common-folders-emulator + /* + + + + + gzipFilter + org.tuckey.web.filters.urlrewrite.gzip.GzipFilter + + + + gzipFilter + *.css + *.js + + + + + expiresFilter + org.apache.catalina.filters.ExpiresFilter + + ExpiresDefault + access plus 1 month + + + + + expiresFilter + *.css + *.js + *.jpg + *.png + *.gif + *.ico + + + + + no-cache-filer + com.hp.webinspect.zero.web.NoCacheFilter + + + + no-cache-filer + *.html + + + + + springSecurityFilterChain + org.springframework.web.filter.DelegatingFilterProxy + + + + springSecurityFilterChain + *.html + + + + + + 20 + + + + + + + index.html + + + + + + bak + application/octet-stream + + + + dat + application/octet-stream + + + + old + application/octet-stream + + + + + + + + +
        +
        +
        +
        +
        +
        + +
        +
        + +
        +
        +
        +
        +
        +
          +
        • Download WebInspect
        • +
        +
        + +
        +
          +
        • Terms of Use
        • +
        +
        + +
        +
          +
        • Contact Micro Focus
        • +
        • Privacy Statement
        • + +
        +
        +
        + +
        +
        + The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating + the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting + Web application vulnerabilities. This site is not a real banking site and any similarities to third party products + and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, + either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. + Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at + https://www.microfocus.com/about/legal/#privacy + and Micro Focus Fortify’s Online Privacy Statement found at + https://www.microfocus.com/about/legal/#privacy. + +

        + + Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. +
        +
        +
        +
        +
        + + + + +]]>
        DateFri, 24 Feb 2023 14:06:59 GMT
        ServerApache-Coyote/1.1
        Access-Control-Allow-Origin*
        Cache-Controlno-cache, max-age=0, must-revalidate, no-store
        Content-Typetext/html;charset=UTF-8
        Content-Languageen-US
        Keep-Alivetimeout=5, max=63
        ConnectionKeep-Alive
        Content-Length14989
        http://zero.webappsecurity.com:80/readme.txthttpzero.webappsecurity.com80GET/readmetxtHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
        Refererhttp://zero.webappsecurity.com/help.html?topic=WEB-INF%2fweb.xml
        Accept*/*
        Accept-Encodinggzip, deflate
        Pragmano-cache
        User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
        Hostzero.webappsecurity.com
        ConnectionKeep-Alive
        X-WIPPAscVersion=22.2.0.253
        X-Scan-MemoCategory="Crawl";SID="D8B1B23B5B409E7F9337500747E310CD";PSID="DB4086449E3B3F146071905343AB56EE";SessionType="Crawl";CrawlType="HTML";AttackType="None";OriginatingEngineID="00000000-0000-0000-0000-000000000000";Format="Relative";LinkKind="HyperLink";Locations="PlainText";NodeName="%23text";Source="StaticParser";tht="31";
        X-RequestManager-Memostid="11";stmi="0";sc="1";rid="390f98f8";
        X-Request-Memorid="cee6ae5f";sc="2";thid="24";
        CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
        HTTP/1.1200OK
        DateFri, 24 Feb 2023 14:07:00 GMT
        ServerApache-Coyote/1.1
        Access-Control-Allow-Origin*
        Content-Dispositionattachment; filename="readme.txt"
        Content-Typetext/plain;charset=UTF-8
        Content-Length1225
        Keep-Alivetimeout=5, max=100
        ConnectionKeep-Alive
        http://zero.webappsecurity.com:80/docs/httpzero.webappsecurity.com80Vulnerability11281112791HTML5: Overly Permissive CORS PolicyEncapsulationHTML5: Overly Permissive CORS PolicyCWE-942: Overly Permissive Cross-domain WhitelistSummary
        +Cross-Origin Resource Sharing, commonly referred to as CORS, is a technology that allows a domain to define a policy for its resources to be accessed by a web page hosted on a different domain using cross domain XML HTTP Requests (XHR). Historically, the browser restricts cross domain XHR requests to abide by the same origin policy. At its basic form, the same origin policy sets the script execution scope to the resources available on the current domain and prohibits any communication to domains outside this scope. While CORS is supported on all major browsers, it also requires that the domain correctly defines the CORS policy in order to have its resources shared with another domain. These restrictions are managed by access policies typically included in specialized response headers, such as: +
        • Access-Control-Allow-Origin
        • Access-Control-Allow-Headers
        • Access-Control-Allow-Methods
        +A domain includes a list of domains that are allowed to make cross domain requests to shared resources in Access-Control-Allow-Origin header. This header can have either list of domains or a wildcard character (“*”) to allow all access. Having a wildcard is considered overly permissive policy.]]>
        ImplicationExecutionFix

        Example 1:
        An example of IIS server configuration for listing domains the application is allowed to communicate with.
        + +    <configuration>
        +        <system.webServer>
        +            <httpProtocol>
        +                <customHeaders>
        +                    <add name="Access-Control-Allow-Origin" value="www.trusted.com" />
        +                </customHeaders>
        +            </httpProtocol>
        +        </system.webServer>
        +    </configuration>

        + +Example 1 shows how to configure CORS headers at the server level; however, the preferred method is to make use of the API of the language used to develop the application and set access permissions at the resource level.
        + +Here are some programmatic samples by language:

        • .NET:
          +Append Header:
          +Response.AppendHeader("Access-Control-Allow-Origin", "www.trusted.com");

          + +Check for cross domain XHR request:
          +if((Request.Headers["X-Requested-With"] == "XMLHttpRequest") && Request.Headers[“Origin”] != null))

        • Java:
          +response.addHeader("Access-Control-Allow-Origin", "www.trusted.com");

          + +check for cross domain XHR request:
          +if((request.getHeader("X-Requested-With") == "XMLHttpRequest") && request.getHeader("Origin")!= null))

        • PHP:
          + + header('Access-Control-Allow-Origin: www.trusted.com');
          +?>

          + +Check for cross domain XHR request:
          +If( isset($_SERVER['HTTP_X_REQUESTED_WITH']) && ($_SERVER['HTTP_X_REQUESTED_WITH'] == 'XMLHttpRequest') && isset($_SERVER[‘Origin’]))

        ]]>
        Reference InfoOWASP HTML 5 Security Cheat Sheet
        https://www.owasp.org/index.php/HTML5_Security_Cheat_Sheet

        Cross-Origin Resource Sharing
        http://en.wikipedia.org/wiki/Cross-origin_resource_sharing
        http://www.w3.org/TR/cors/

        +Same Origin Policy
        http://en.wikipedia.org/wiki/Same_origin_policy

        ]]>
        OPTIONS/docs/HTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
        Refererhttp://zero.webappsecurity.com/docs/
        Accept*/*
        Accept-Encodinggzip, deflate
        Pragmano-cache
        User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
        Hostzero.webappsecurity.com
        Access-Control-Request-MethodPOST
        Access-Control-Request-HeadersX-Pingsession
        Originhttp://webinspect.microfocus.com
        ConnectionKeep-Alive
        X-WIPPAscVersion=22.2.0.253
        X-Scan-MemoCategory="Audit.Attack";SID="4160FEF088C06EF293B266DC2C09C5BC";PSID="F123B9A3291354F97AC6F79540B0A325";SessionType="AuditAttack";CrawlType="None";AttackType="Other";OriginatingEngineID="822a8e1c-b895-4666-a9d2-026b0a4716c9";AttackSequence="0";AttackParamDesc="";AttackParamIndex="0";AttackParamSubIndex="0";CheckId="11281";Engine="Html5+Cross+Origin+Options+Request";SmartMode="4";tht="44";
        X-RequestManager-Memosc="1";rid="7dd60aab";
        X-Request-Memorid="b7b933ad";sc="1";thid="27";
        CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
        HTTP/1.1200OK
        DateFri, 24 Feb 2023 14:07:33 GMT
        ServerApache-Coyote/1.1
        Access-Control-Allow-Origin*
        AllowGET, HEAD, POST, PUT, DELETE, OPTIONS
        Content-Length0
        Keep-Alivetimeout=5, max=95
        ConnectionKeep-Alive
        Content-Typetext/plain
        http://zero.webappsecurity.com:80/docs/index.htmlhttpzero.webappsecurity.com80Vulnerability11281112791HTML5: Overly Permissive CORS PolicyEncapsulationHTML5: Overly Permissive CORS PolicyCWE-942: Overly Permissive Cross-domain WhitelistSummary
        +Cross-Origin Resource Sharing, commonly referred to as CORS, is a technology that allows a domain to define a policy for its resources to be accessed by a web page hosted on a different domain using cross domain XML HTTP Requests (XHR). Historically, the browser restricts cross domain XHR requests to abide by the same origin policy. At its basic form, the same origin policy sets the script execution scope to the resources available on the current domain and prohibits any communication to domains outside this scope. While CORS is supported on all major browsers, it also requires that the domain correctly defines the CORS policy in order to have its resources shared with another domain. These restrictions are managed by access policies typically included in specialized response headers, such as: +
        • Access-Control-Allow-Origin
        • Access-Control-Allow-Headers
        • Access-Control-Allow-Methods
        +A domain includes a list of domains that are allowed to make cross domain requests to shared resources in Access-Control-Allow-Origin header. This header can have either list of domains or a wildcard character (“*”) to allow all access. Having a wildcard is considered overly permissive policy.]]>
        ImplicationExecutionFix

        Example 1:
        An example of IIS server configuration for listing domains the application is allowed to communicate with.
        + +    <configuration>
        +        <system.webServer>
        +            <httpProtocol>
        +                <customHeaders>
        +                    <add name="Access-Control-Allow-Origin" value="www.trusted.com" />
        +                </customHeaders>
        +            </httpProtocol>
        +        </system.webServer>
        +    </configuration>

        + +Example 1 shows how to configure CORS headers at the server level; however, the preferred method is to make use of the API of the language used to develop the application and set access permissions at the resource level.
        + +Here are some programmatic samples by language:

        • .NET:
          +Append Header:
          +Response.AppendHeader("Access-Control-Allow-Origin", "www.trusted.com");

          + +Check for cross domain XHR request:
          +if((Request.Headers["X-Requested-With"] == "XMLHttpRequest") && Request.Headers[“Origin”] != null))

        • Java:
          +response.addHeader("Access-Control-Allow-Origin", "www.trusted.com");

          + +check for cross domain XHR request:
          +if((request.getHeader("X-Requested-With") == "XMLHttpRequest") && request.getHeader("Origin")!= null))

        • PHP:
          + + header('Access-Control-Allow-Origin: www.trusted.com');
          +?>

          + +Check for cross domain XHR request:
          +If( isset($_SERVER['HTTP_X_REQUESTED_WITH']) && ($_SERVER['HTTP_X_REQUESTED_WITH'] == 'XMLHttpRequest') && isset($_SERVER[‘Origin’]))

        ]]>
        Reference InfoOWASP HTML 5 Security Cheat Sheet
        https://www.owasp.org/index.php/HTML5_Security_Cheat_Sheet

        Cross-Origin Resource Sharing
        http://en.wikipedia.org/wiki/Cross-origin_resource_sharing
        http://www.w3.org/TR/cors/

        +Same Origin Policy
        http://en.wikipedia.org/wiki/Same_origin_policy

        ]]>
        OPTIONS/docs/indexhtmlHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=266ED445 +
        Refererhttp://zero.webappsecurity.com/docs/
        Accept*/*
        Accept-Encodinggzip, deflate
        Pragmano-cache
        User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
        Hostzero.webappsecurity.com
        Access-Control-Request-MethodPOST
        Access-Control-Request-HeadersX-Pingsession
        Originhttp://webinspect.microfocus.com
        ConnectionKeep-Alive
        X-WIPPAscVersion=22.2.0.253
        X-Scan-MemoCategory="Audit.Attack";SID="5CB0210BD5F504EE4765159489E50BBE";PSID="573735B2D53FA55711F88310A54DF608";SessionType="AuditAttack";CrawlType="None";AttackType="Other";OriginatingEngineID="822a8e1c-b895-4666-a9d2-026b0a4716c9";AttackSequence="0";AttackParamDesc="";AttackParamIndex="0";AttackParamSubIndex="0";CheckId="11281";Engine="Html5+Cross+Origin+Options+Request";SmartMode="4";tht="11";
        X-RequestManager-Memosc="1";rid="9e6e6adc";
        X-Request-Memorid="a7f64d10";sc="1";thid="28";
        CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID266ED445
        HTTP/1.1200OK
        DateFri, 24 Feb 2023 14:07:35 GMT
        ServerApache-Coyote/1.1
        Access-Control-Allow-Origin*
        AllowGET, HEAD, POST, PUT, DELETE, OPTIONS
        Content-Length0
        Keep-Alivetimeout=5, max=72
        ConnectionKeep-Alive
        Content-Typetext/html
        http://zero.webappsecurity.com:80/faq.html?question=1%3c%73%43%72%49%70%54%3e%61%6c%65%72%74%28%37%33%38%34%32%29%3c%2f%73%43%72%49%70%54%3ehttpzero.webappsecurity.com80questionVulnerability510556494Cross-Site Scripting: ReflectedCWE-80: Improper Neutralization of Script-Related HTML Tags in a Web Page (Basic XSS)Input Validation and RepresentationCross-Site Scripting: ReflectedSummary
        A Cross-Site Scripting (XSS) vulnerability was detected in the web application. Cross-Site Scripting occurs when dynamically generated web pages display user input, such as login information, that is not properly validated, allowing an attacker to embed malicious scripts into the generated page and then execute the script on the machine of any user that views the site. In this instance, the web application was vulnerable to an automatic payload, meaning the user simply has to visit a page to make the malicious scripts execute. If successful, Cross-Site Scripting vulnerabilities can be exploited to manipulate or steal cookies, create requests that can be mistaken for those of a valid user, compromise confidential information, or execute malicious code on end user systems. Recommendations include implementing secure programming techniques that ensure proper filtration of user-supplied data, and encoding all user supplied data to prevent inserted scripts being sent to end users in a format that can be executed.]]>
        Implication +Cross-Site Scripting(XSS) happens when user input from a web client is immediately included via server-side scripts in a dynamically generated web page. Reflected XSS is specifically considered critical when malicious payload can be embedded in a URL (e.g. in query strings of GET requests). An attacker can trick a victim, via phishing attack, to click on a link with vulnerable input which has been altered to include attack code and then sent to the legitimate server. The injected code is then reflected back to the user's browser which executes it.

        + +The implications of successful Cross-Site Scripting attacks are: + +
        • Account hijacking - An attacker can hijack the user's session before the session cookie expires and take actions with the privileges of the user who accessed the URL, such as issuing database queries and viewing the results.
        • Malicious script execution - Users can unknowingly execute JavaScript, VBScript, ActiveX, HTML, or even Flash content that has been inserted into a dynamically generated page by an attacker. + +
        • Worm propagation - With Ajax applications, XSS can propagate somewhat like a virus. The XSS payload can autonomously inject itself into pages, and easily re-inject the same host with more XSS, all of which can be done with no hard refresh. Thus, XSS can send multiple requests using complex HTTP methods to propagate itself invisibly to the user. +
        • Information theft - Via redirection and fake sites, attackers can connect users to a malicious server of the attacker's choice and capture any information entered by the user.
        • Denial of Service - Often by utilizing malformed display requests on sites that contain a Cross-Site Scripting vulnerability, attackers can cause a denial of service condition to occur by causing the host site to query itself repeatedly .
        • Browser Redirection - On certain types of sites that use frames, a user can be made to think that he is in fact on the original site when he has been redirected to a malicious one, since the URL in the browser's address bar will remains the same. This is because the entire page isn't being redirected, just the frame in which the JavaScript is being executed is redirected.
        • Manipulation of user settings - Attackers can change user settings for nefarious purposes.
        • Bypass Content-Security-Policy protection - Attackers can inject a malformed tag formation, known as dangling tag injection, which in some cases allows injected script to reuse valid nonce on the page and bypass script source restriction. Additionally dangling tag injection can be used to steal sensitive information embedded in HTML response if browser is able to make a request to the injected link.
        • Base tag injection: Attacker can cause relative links on a page to load from a different domain by modifying the base URL for the page via base tag injection.
        • Link prefetch injection: While unable to execute script, attackers can use link tag with rel=prefetch that will make browsers pre-fetch the specified link even though it is never rendered and rejected subsequently due to web application enforced cross-site policy (e.g. CSP protections).
        • Edge side includes (ESI) Injection - ESI is a markup language used in various HTTP devices, such as reverse proxies and load balancers, that are positioned between client and server. An attacker can inject ESI markup to perform critical attacks such as cross-site scripting and HTTPOnly cookie protection bypass.
        ]]>
        Execution + +View the attack string included with the request to check what to search for in the response. For instance, if "(javascript:alert('XSS')"  is submitted as an attack (or another scripting language), it will also appear as part of the response. This indicates that the web application is taking values from the HTTP request parameters and using them in the HTTP response without first removing potentially malicious data. + + +The response can be viewed in “Web Browser” view in the Vulnerability pane to see the injected popup events in action. Events requiring user interaction (e.g. onmouseover or onclick events) can be triggered by performing the corresponding action (e.g. clicking the injected link). + + + +Injection with numeric string in src, or href, attributes indicates that the site is vulnerable to script include or content exfiltration. These can be verified by repeating the request in a browser and intercepting originating network traffic in a web proxy.]]>FixFor Development:

        +Cross-Site Scripting attacks can be avoided by carefully validating all input, and properly encoding all output. When validating user input, + +verify that it matches the strictest definition of valid input possible. For example, if a certain parameter is supposed to be a number, attempt + +to convert it to a numeric data type in your programming language.

        PHP: intval("0".$_GET['q']);

        ASP.NET: + +int.TryParse(Request.QueryString["q"], out val);

        + +The same applies to date and time values, or anything that can be converted to a stricter type before being used. When accepting other types of + +text input, make sure the value matches either a list of acceptable values (white-listing), or a strict regular expression. If at any point the + +value appears invalid, do not accept it. Also, do not attempt to return the value to the user in an error message.

        + +Most server side scripting languages provide built in methods to convert the value of the input variable into correct, non-interpretable HTML. + +These should be used to sanitize all input before it is displayed to the client.

        PHP: string htmlspecialchars (string string + +[, int quote_style])

        ASP.NET: Server.HTMLEncode (strHTML String) + + + +

        + +When reflecting values into JavaScript or another format, make sure to use a type of encoding that is appropriate. Encoding data for HTML is not + +sufficient when it is reflected inside of a script or style sheet. For example, when reflecting data in a JavaScript string, make sure to encode + +all non-alphanumeric characters using hex (\xHH) encoding.

        + +If you have JavaScript on your page that accesses unsafe information (like location.href) and writes it to the page (either with document.write, + +or by modifying a DOM element), make sure you encode data for HTML before writing it to the page. JavaScript does not have a built-in function to + +do this, but many frameworks do. If you are lacking an available function, something like the following will handle most cases:

        + +s = s.replace(/&/g,'&amp;').replace(/"/i,'&quot;').replace(/</i,'&lt;').replace(/>/i,'&gt;').replace(/'/i,'&apos;') + + +

        + +Ensure that you are always using the right approach at the right time. Validating user input should be done as soon as it is received. Encoding + +data for display should be done immediately before displaying it. + +

        + + +For Security Operations:


        + +Server-side encoding, where all dynamic content is first sent through an encoding function where Scripting tags will be replaced with codes in the + +selected character set, can help to prevent Cross-Site Scripting attacks.

        + +Many web application platforms and frameworks have some built-in support for preventing Cross-Site Scripting. Make sure that any built-in + +protection is enabled for your platform. In some cases, a misconfiguration could allow Cross-Site Scripting. In ASP.NET, if a page's + +EnableViewStateMac property is set to False, the ASP.NET view state can be used as a vector for Cross-Site Scripting.

        + +An IDS or IPS can also be used to detect or filter out XSS attacks. Below are a few regular expressions that will help detect Cross-Site + +Scripting.

        Regex for a simple XSS attack:
        +/((\%3C)|<)((\%2F)|\/)*[a-z0-9\%]+((\%3E)|>)/ix

        + +The above regular expression would be added into a new Snort rule as follows:

        + +alert tcp $EXTERNAL_NET any -> $HTTP_SERVERS $HTTP_PORTS (msg:"NII Cross-Site Scripting attempt"; flow:to_server,established; + +pcre:"/((\%3C)|<)((\%2F)|\/)*[a-z0-9\%]+((\%3E)|>)/i"; classtype:Web-application-attack; sid:9000; rev:5;)

        Paranoid regex for + +XSS attacks:
        +/((\%3C)|<)[^\n]+((\%3E)|>)/I

        + +This signature simply looks for the opening HTML tag, and its hex equivalent, followed by one or more characters other than the new line, and then + +followed by the closing tag or its hex equivalent. This may end up giving a few false positives depending upon how your web application and web + +server are structured, but it is guaranteed to catch anything that even remotely resembles a Cross-Site Scripting attack. + +

        For QA:

        + + +Fixes for Cross-Site Scripting defects will ultimately require code based fixes. Read the the following links for more information + +about manually testing your application for Cross-Site Scripting.]]>
        Reference Info
        OWASP Cross-Site Scripting Information
        https://www.owasp.org/index.php/XSS

        CERT
        http://www.cert.org/advisories/CA-2000-02.html

        Apache
        http://httpd.apache.org/info/css-security/apache_specific.html

        SecurityFocus.com
        http://www.securityfocus.com/infocus/1768 ]]>
        + + + + Zero - FAQ - Frequently Asked Questions + + + + + + + + + + + + + + + +
        + + +
        +
        + +
        +
        +
        + +
        + + + +
        +
        +
        1
        +
        +
        +

        How can I edit my profile?

        +
        +
        +
        +
        +

        +

          +
        1. From any page, click your user name which appears at the top right corner of the site.
        2. +
        3. From the dropdown menu that displays, click My Profile.
        4. +
        5. Edit your profile.
        6. +
        +

        +
        +
        + +
        +
        +
        2
        +
        +
        +

        How can I review my transaction history?

        +
        +
        +
        +
        +

        +

          +
        1. Click Account Activity.
        2. +
        3. Click the Show Transactions tab to view your most recent transactions.
        4. +
        5. Click the Find Transactions tab to show transactions by a date range.
        6. +
        +

        +
        +
        +
        +
        + + + + +
        +
        + +
        +
        + +
        +
        +
        +
        +
        +
          +
        • Download WebInspect
        • +
        +
        + +
        +
          +
        • Terms of Use
        • +
        +
        + +
        +
          +
        • Contact Micro Focus
        • +
        • Privacy Statement
        • + +
        +
        +
        + +
        +
        + The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating + the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting + Web application vulnerabilities. This site is not a real banking site and any similarities to third party products + and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, + either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. + Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at + https://www.microfocus.com/about/legal/#privacy + and Micro Focus Fortify’s Online Privacy Statement found at + https://www.microfocus.com/about/legal/#privacy. + +

        + + Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. +
        +
        +
        +
        +
        + + + + +]]>
        GET/faqhtmlHTTP/1.1question=1%3c%73%43%72%49%70%54%3e%61%6c%65%72%74%28%37%33%38%34%32%29%3c%2f%73%43%72%49%70%54%3eCookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=A9EF43AC +question1%3c%73%43%72%49%70%54%3e%61%6c%65%72%74%28%37%33%38%34%32%29%3c%2f%73%43%72%49%70%54%3e
        Refererhttp://zero.webappsecurity.com/faq.html
        Accept*/*
        Accept-Encodinggzip, deflate
        Pragmano-cache
        User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
        Hostzero.webappsecurity.com
        ConnectionKeep-Alive
        X-WIPPAscVersion=22.2.0.253
        X-Scan-MemoCategory="Audit.Attack";SID="93A129ADBB5E0A4B29DE8F8A51D81E15";PSID="BA7F9A211020B77EBF4F706FEDC87676";SessionType="AuditAttack";CrawlType="None";AttackType="QueryParamManipulation";OriginatingEngineID="1354e211-9d7d-4cc1-80e6-4de3fd128002";AttackSequence="2";AttackParamDesc="question";AttackParamIndex="0";AttackParamSubIndex="0";CheckId="5105";Engine="Cross+Site+Scripting";SmartMode="4";AttackString="1%253c%2573%2543%2572%2549%2570%2554%253e%2561%256c%2565%2572%2574%2528%2537%2533%2538%2534%2532%2529%253c%252f%2573%2543%2572%2549%2570%2554%253e";AttackStringProps="Attack";tht="40";
        X-RequestManager-Memostid="17";stmi="0";sc="1";rid="d749f8ae";
        X-Request-Memorid="fd3865e9";sc="1";thid="28";
        CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONIDA9EF43AC
        HTTP/1.1200OK + + + + Zero - FAQ - Frequently Asked Questions + + + + + + + + + + + + + + + +
        + + +
        +
        + +
        +
        +
        + +
        + + + +
        +
        +
        1
        +
        +
        +

        How can I edit my profile?

        +
        +
        +
        +
        +

        +

          +
        1. From any page, click your user name which appears at the top right corner of the site.
        2. +
        3. From the dropdown menu that displays, click My Profile.
        4. +
        5. Edit your profile.
        6. +
        +

        +
        +
        + +
        +
        +
        2
        +
        +
        +

        How can I review my transaction history?

        +
        +
        +
        +
        +

        +

          +
        1. Click Account Activity.
        2. +
        3. Click the Show Transactions tab to view your most recent transactions.
        4. +
        5. Click the Find Transactions tab to show transactions by a date range.
        6. +
        +

        +
        +
        +
        +
        + + + + +
        +
        + +
        +
        + +
        +
        +
        +
        +
        +
          +
        • Download WebInspect
        • +
        +
        + +
        +
          +
        • Terms of Use
        • +
        +
        + +
        +
          +
        • Contact Micro Focus
        • +
        • Privacy Statement
        • + +
        +
        +
        + +
        +
        + The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating + the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting + Web application vulnerabilities. This site is not a real banking site and any similarities to third party products + and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, + either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. + Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at + https://www.microfocus.com/about/legal/#privacy + and Micro Focus Fortify’s Online Privacy Statement found at + https://www.microfocus.com/about/legal/#privacy. + +

        + + Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. +
        +
        +
        +
        +
        + + + + +]]>
        DateFri, 24 Feb 2023 14:08:25 GMT
        ServerApache-Coyote/1.1
        Access-Control-Allow-Origin*
        Cache-Controlno-cache, max-age=0, must-revalidate, no-store
        Content-Typetext/html;charset=UTF-8
        Content-Languageen-US
        Keep-Alivetimeout=5, max=81
        ConnectionKeep-Alive
        Content-Length7794
        http://zero.webappsecurity.com:80/include/common.inchttpzero.webappsecurity.com80Vulnerability10028103652Web Server Misconfiguration: Unprotected FileEnvironmentWeb Server Misconfiguration: Unprotected FileCWE-530: Exposure of Backup File to an Unauthorized Control SphereSummaryImplicationAn attacker could view web application source code. Web application source code often contains database usernames, passwords and connection strings and locations of sensitive files. It also reveals the detailed mechanics and design of the web application's logic, which can be used to develop other attacks.]]>ExecutionOpen a web browser and navigate to ~FullURL~.]]>Fix +For Development:
        Keep include files outside of the web root. Scripts can still be used to access and include them by using either relative or absolute paths. This will prevent potential attackers from having direct access to include files from the web. + +

        For Security Operations:
        Take measures to prevent unauthorized access to important files or directories. + + + +

        For QA:
        From a security perspective, it is important to test the web application not only as a normal user, but also as a malicious one. Make sure that the webroot is free from files that could be used to gather information about the application that could be utilized in conducting more damaging attacks. ]]>
        Reference Info
        0){AccordionAccessibility._addListAccessibility(acc,triggerLink,links[0],links[links.length-1]);}},addKeyPressHandler:function(acc,triggerLink,index){triggerLink.addEvent("keypress",function(event){if(event.key=='enter'){acc.display(index);} +return true;});},_addListAccessibility:function(acc,triggerLink,firstLink,lastLink){if(firstLink){AccordionAccessibility._addFirstLinkEvents(acc,triggerLink,firstLink);} +if(lastLink){AccordionAccessibility._addLastLinkEvents(acc,triggerLink,lastLink);}},_addFirstLinkEvents:function(acc,triggerLink,firstLink){firstLink.addEvent('keypress',function(event){if(event.key=='tab'&&event.shift){acc.display(-1);triggerLink.focus();}});},_addLastLinkEvents:function(acc,triggerLink,lastLink){lastLink.addEvent('keypress',function(event){if(event.key=='tab'&&!event.shift){acc.display(-1);triggerLink.focus();}});}};var PopupAccessibility=new Class({addSimpleAccessibility:function(){var links=this.targetEl.getElements("a");if(links&&links.length>0){this.addAccessibility(links[0],links[links.length-1]);}},addAccessibility:function(firstLink,lastLink){if(firstLink){this._addFirstLinkEvents(firstLink);} +if(lastLink){this._addLastLinkEvents(lastLink);}},addKeyPressHandler:function(){this._triggerLink().addEvent("keypress",function(event){if(event.key!='enter'||this.inTransition){return true;} +if(this.isOpen){this.hide();}else{this.show();} +return true;}.bind(this));},_addFirstLinkEvents:function(firstLink){this.addEvent('onshow',function(){});firstLink.addEvent('keypress',function(event){if(event.key=='tab'&&event.shift){this.hide();this._triggerLink().focus();}}.bind(this));},_addLastLinkEvents:function(lastLink){lastLink.addEvent('keypress',function(event){if(event.key=='tab'&&!event.shift){this.hide();this._triggerLink().focus();}}.bind(this));},_triggerLink:function(){return this.triggerEl.nodeName=="A"?this.triggerEl:this.triggerEl.getElement("a");}});var FooterPopup=new Class({Extends:CHKCustomPopUp,Implements:[PopupAccessibility],initialize:function(trigger,target){this.parent(trigger,target,{showEvent:'click',hideEvent:'',enableTriggerToggle:true,hideDelay:1000});this.initTarget();$('footer').getElement('.js_cselector_trigger').addEvent('click',function(){target.hide();}.bind(this));this.positionTarget();if(this.targetEl.getElements('.lastitemMenu').length>0){this.targetEl.getElements('.lastitemMenu')[0].addEvent('click',function(event){target.hide();}.bind(this));} +this.addSimpleAccessibility();this.addKeyPressHandler();},initTarget:function(){this.targetEl.addEvents({mouseenter:function(){if(this.isOpen){this.show();}}.bind(this),mouseleave:function(){if(this.isOpen){this.hide();this.triggerEl.blur();}}.bind(this)});},positionTarget:function(){var IE_OFFSET=isIE?150:0;this.triggerEl.addEvent('click',function(){var bodyCoordinates=$('body').getCoordinates();var coordinates=(isIE?this.targetEl.getParent():this.targetEl).getCoordinates();if(rtl&&coordinates.left<(bodyCoordinates.left+IE_OFFSET)||coordinates.right>(bodyCoordinates.right-IE_OFFSET)){this.targetEl.addClass('ftr_edge');}}.bind(this));}});function autoPositionHeaderWidget(target){var pos=0;var padding=(rtl)?target.getParent('#widget_menu').getStyle('padding-left').toInt():target.getParent('#widget_menu').getStyle('padding-right').toInt();var coordinates=$('body').getCoordinates();var parentCoordinates=target.getParent().getCoordinates();var CNN_OFFSET=0;var IE_OFFSET=0;if(target.hasClass('cnn_win')){CNN_OFFSET=5;} +if(isIE7){IE_OFFSET=10;} +else if(isIE6){if(rtl){IE_OFFSET=-1;if(target.hasClass('cmm_win')){IE_OFFSET=-8;}} +else{IE_OFFSET=7;}} +if(rtl){pos=coordinates.left-parentCoordinates.left+padding+IE_OFFSET-CNN_OFFSET;target.setStyle('left',pos+5+'px');if(target.getElement(".hf_carat_up")){var targetPos=target.measure(function(){var myPos=this.getPosition();myPos.width=this.getWidth();return myPos;});var caratPos=targetPos.width-(parentCoordinates.left-targetPos.x)-20;target.getElement(".hf_carat_up").setStyle("right",caratPos+"px");}}else{pos=-coordinates.right+parentCoordinates.right+padding+IE_OFFSET;target.setStyle('right',pos+3+'px');if(target.getElement(".hf_carat_up")){var targetPos=target.measure(function(){return this.getPosition();});var caratPos=parentCoordinates.left-targetPos.x+8;target.getElement(".hf_carat_up").setStyle("left",caratPos+"px");}}} +var CommunityWidget=new Class({Extends:CHKCustomPopUp,Implements:[PopupAccessibility,HeaderFooterPopup],contentLoaded:false,initialize:function(root){this.root=root;var trigger=root.getElement(".js_community_trigger");var target=root.getElement(".js_community_target");autoPositionHeaderWidget(target);this.parent(trigger,target,{showEvent:['mouseenter','click'],hideEvent:'',hideDelay:1000});this.preventFastClosing();trigger.addEvents({mouseleave:this.hideWithDelay.bind(this),mouseenter:this._loadContent.bind(this),click:this._loadContent.bind(this)});this.addEvent('onhide',function(){trigger.removeClass('community_over');});},_loadContent:function(){this.triggerEl.addClass('community_over');if(this.contentLoaded){return;} +this._loadHtml(this.root);},_loadHtml:function(root){var contentEl=root.getElement('.js_community_content');contentEl.addClass('loading');contentEl.setStyle('height','60px');var me=this;function handleFailure(){contentEl.removeClass('loading');var messageEl=contentEl.getFirst('span');messageEl.addClass('error');messageEl.set('html',$('cmm_error_msg').get('html'));} +function handleSuccess(responseTree,responseElements,responseHTML){var startHeight=contentEl.getCoordinates().height;contentEl.setStyle('visibility','hidden');contentEl.set('html',responseHTML);me._createDiscussionsAccordion(contentEl);var endHeight=contentEl.getCoordinates().height;contentEl.setStyle('height',startHeight+'px');contentEl.setStyle('visibility','visible');contentEl.setStyle('overflow','hidden');me._slideDown(contentEl,startHeight,endHeight);contentEl.removeClass('loading');me.contentLoaded=true;} +function handleSuccessJSON(response){var startHeight=contentEl.getCoordinates().height;contentEl.setStyle('visibility','hidden');contentEl.set('html',response.communitydropdown);me._createDiscussionsAccordion(contentEl);var endHeight=contentEl.getCoordinates().height;contentEl.setStyle('height',startHeight+'px');contentEl.setStyle('visibility','visible');contentEl.setStyle('overflow','hidden');me._slideDown(contentEl,startHeight,endHeight);contentEl.removeClass('loading');me.contentLoaded=true;} +if(typeof hfws==='undefined'){var req=new Request.HTML({method:'get',url:(window.community_jsp)?window.community_jsp:'_community-widget-ajax-content.html',onFailure:function(){handleFailure()},onException:function(){handleFailure()},onSuccess:function(responseTree,responseElements,responseHTML){handleSuccess(responseTree,responseElements,responseHTML);}});} +else{var req=new Request.JSONP({url:community_jsp,callbackKey:'jsoncallback',onRequest:function(url){},onFailure:function(){handleFailure()},onException:function(){handleFailure()},onSuccess:function(response){handleSuccessJSON(response);}});} +req.send();},_createDiscussionsAccordion:function(contentEl){var triggers=contentEl.getElements('.js_discussions_trigger');var targets=contentEl.getElements('.js_discussions_target');var acc=new Accordion(triggers,targets,{opacity:(isIE6)?true:false,display:-1,duration:500,alwaysHide:true,onActive:function(toggler,element){toggler.addClass("hf_arr_grn_dwn");toggler.removeClass("hf_arr_wht");toggler.getParent().getParent().removeClass('collapsed');element.addClass('expanded');},onBackground:function(toggler,element){toggler.addClass("hf_arr_wht");toggler.removeClass("hf_arr_grn_dwn");toggler.getParent().getParent().addClass('collapsed');element.removeClass('expanded');}});AccordionAccessibility.addSimpleAccessibility(acc);},_slideDown:function(contentEl,startHeight,endHeight){new Fx.Morph(contentEl,{duration:500,transition:Fx.Transitions.Sine.easeInOut,onComplete:function(){contentEl.setStyle('height',null);contentEl.setStyle('overflow',null);initHFMetrics('.js_community_target .link_metrics');}}).start({height:[startHeight,endHeight],opacity:[0.7,1]});}});var ConnectWidget=new Class({Extends:CHKCustomPopUp,Implements:[PopupAccessibility,HeaderFooterPopup],initialize:function(root){var trigger=root.getElement(".js_connect_trigger");var target=root.getElement(".js_connect_target");autoPositionHeaderWidget(target);this.parent(trigger,target,{showEvent:'mouseenter',hideEvent:'',hideDelay:100});this.preventFastClosing();trigger.addEvents({mouseleave:this.hideWithDelay.bind(this),mouseenter:function(){trigger.addClass('connect_over');}});this.addEvent('onhide',function(){trigger.removeClass('connect_over');});var triggers=$$('.js_acc_trigger');var targets=$$('.js_acc_target');new Accordion(triggers,targets,{display:-1,alwaysHide:true,opacity:false,onActive:function(toggler,element){toggler.getParent().getFirst('span').addClass('cnn_expanded');toggler.getParent().getFirst('span').removeClass('cnn_collapsed');},onBackground:function(toggler,element){toggler.getParent().getFirst('span').addClass('cnn_collapsed');toggler.getParent().getFirst('span').removeClass('cnn_expanded');}});this.addSimpleAccessibility();}});var SubMenuWidget=new Class({Extends:CHKCustomPopUp,Implements:[PopupAccessibility,HeaderFooterPopup,Options],options:{autoDropdown:false,autoDropdownTimer:5000},initialize:function(trigger,target,openSeg,options){this.setOptions(options||{});this.parent(trigger,target,{showEvent:['mouseenter','click'],hideEvent:'',hideDelay:1000,showTriggerClass:'over',hideTriggerClass:''});target.getParent().addEvents({mouseleave:this.hideWithDelay.bind(this),mouseenter:this.openIfClosed.bind(this),"click":function(){this.getChildren("a")[0].blur();}});this.initAccordion(target,openSeg);this.setSegCK(target);if(this.options.autoDropdown){this.showSubmenu();}},hideSubmenu:function(){this.clearTimer();this.hide();},showSubmenu:function(timer){timer=this.options.autoDropdownTimer;this.show();(function(){this.hide()}).bind(this).delay(timer);},initAccordion:function(accordion,openSeg){accordion.getElements('.js_nav_target').setStyle('display','none');this.accordion=new Accordion(accordion,accordion.getElements('.js_nav_toggler'),accordion.getElements('.js_nav_target'),{opacity:false,display:0,duration:500,alwaysHide:true,onActive:function(toggler,element){toggler.removeClass('green_arrow');toggler.removeClass('hf_wht');toggler.addClass('opened');if($chk(toggler.getProperty('tabindex'))){element.getElements('a').setProperty('tabindex',toggler.getProperty('tabindex'));} +element.setStyle('display','block');},onBackground:function(toggler,element){toggler.addClass('green_arrow');toggler.addClass('hf_wht');toggler.removeClass('opened');element.getElements('a').setProperty('tabindex',"-1");(function(){element.setStyle('display','none');}).delay(600);},show:openSeg});},setSegCK:function(accordion){var segment;accordion.getElements('.js_nav_target a').each(function(seg_link){seg_link.addEvent('click',function(){segment=seg_link.getProperty('class').replace(/link_metrics/g,"");segment=segment.replace(" ","").toUpperCase();setSegmentCK(segment);});});}});function setSegmentCK(segment){var hp_cookie_path='/';var hp_cookie_expiration=90;var hp_cookie_domain='.hp.com';Cookie.write('hp_cust_seg_sel',segment,{duration:hp_cookie_expiration,domain:hp_cookie_domain,path:hp_cookie_path});} +function initMainNav(root,autodrop,autodroptimer){var pm=new PopupManager();root.getElements(".sub_menu_wrapper").each(function(el,index){var open_acc=0;var segment=(Cookie.read('hp_cust_seg_sel')!=null)?Cookie.read('hp_cust_seg_sel').toUpperCase():window.defaultSegment||'HHO';var myURI=new URI(window.location.href.toUpperCase());var uri_seg=(myURI.getData("SEG")!=null)?myURI.getData("SEG"):segment;if(el.getElements('.hho').length>0||el.getElements('.smb').length>0){switch(uri_seg){case'HHO':case'SMB':case'LEB':case'GHE':case'GA':segment=uri_seg;break;} +switch(segment){case'HHO':default:open_acc=(getSegmentIndex('HHO',index)!=-1)?getSegmentIndex('HHO',index):0;break;case'SMB':open_acc=(getSegmentIndex('SMB',index)!=-1)?getSegmentIndex('SMB',index):0;break;case'LEB':open_acc=(getSegmentIndex('LEB',index)!=-1)?getSegmentIndex('LEB',index):0;break;case'GHE':open_acc=(getSegmentIndex('GHE',index)!=-1)?getSegmentIndex('GHE',index):0;break;case'GA':open_acc=(getSegmentIndex('GA',index)!=-1)?getSegmentIndex('GA',index):0;break;} +if(autodrop==true){pm.add(new SubMenuWidget(el.parentNode,el,open_acc,{autoDropdown:true,autoDropdownTimer:autodroptimer?autodroptimer:5000}));} +else{pm.add(new SubMenuWidget(el.parentNode,el,open_acc));}}});} +function getSegmentIndex(segment,index){var seg_array=new Array();$$('.sub_menu_wrapper')[index].getElements('.hnl_l3_link').each(function(links,seg_index){var seg_string=links.getElements('a')[0].getProperty('class').replace(/link_metrics/g,"");seg_string=seg_string.replace(" ","").toUpperCase();seg_array.push(seg_string);});var default_seg="SMB";if(seg_array.indexOf(segment)!=-1){return seg_array.indexOf(segment);} +else +return seg_array.indexOf(default_seg);} +var AjaxCountrySelector=new Class({worldmapCreated:false,Implements:Options,options:{worldmapURL:(window.cselector_jsp)?window.cselector_jsp:'worldmap.html'},initialize:function(options){this.setOptions(options||{});$$('.js_cselector .js_cselector_trigger')[0].addEvent('click',function(){if(!this.worldmapCreated){this.preloder=this.createSplashContainer();$$('.js_cselector .js_popup_box')[0].adopt(this.preloder);this.requestCountrySelector();}}.bind(this));},createSplashContainer:function(){return new Element('div').set({'class':'preloader hidden hf_abs'});},initCountrySelector:function(openOnComplete){var backgroundColor='transparent';var tempCSPopup=new CHKCustomPopUp($$('.js_cselector .js_cselector_trigger')[0],$$('.js_cselector .js_cselector_target')[0],{showEvent:['click','keypress(enter)'],hideEvent:null,enableTriggerToggle:true,useFx:true,fxOpenStylePre:{opacity:0,display:'block',visibility:'visible',left:(!rtl?3:0),right:(rtl?1:0)},fxOpenStyle:{opacity:1},fxCloseStyle:{opacity:0},fxCloseStylePost:{opacity:0,display:'none',visibility:'hidden'},fxDuration:300,fxTransition:Fx.Transitions.Sine.easeInOut,showTriggerClass:{'background-color':backgroundColor},hideTriggerClass:{'background-color':''},enableKeypress:false,options:{stopPropagation:false}});$$('a.cselector')[0].addEvent('keyup',function(e){if(e.key=='esc'){tempCSPopup.hide();}});$$('a.cselector')[0].addEvent('keydown',function(e){if(e.shift&&e.key=="tab"){tempCSPopup.hide();}});$$('a.cselectorbtn')[0].addEvent('keydown',function(y){if(y.key=='tab'&&y.shift){} +else if(y.key=='tab'){tempCSPopup.hide();}});$$('.worldmap .link_metrics').each(function(el){el.addEvent('click',function(){trackHFMetrics(el);});});tempCSPopup.addHideElement($$('.js_cselector .cselectorbtn')[0]);var body=$(document.body);if($defined(body)){body.addEvent('click',function(event){if(tempCSPopup.isOpen){event.stopPropagation();event.preventDefault();tempCSPopup.hide();}});} +$$('.js_ftr_popup_trigger').addEvent('click',function(event){if(tempCSPopup.isOpen){event.stopPropagation();event.preventDefault();tempCSPopup.hide();}});if($defined($('header'))) +$('header').addEvent('mouseenter',function(event){if(tempCSPopup.isOpen){event.stopPropagation();event.preventDefault();tempCSPopup.hide();}});if($defined($$('.community')[0])){$$('.community')[0].addEvent('mouseenter',function(event){if(tempCSPopup.isOpen){event.stopPropagation();event.preventDefault();tempCSPopup.hide();}});} +if($defined($$('.connect')[0])){$$('.connect')[0].addEvent('mouseenter',function(event){if(tempCSPopup.isOpen){event.stopPropagation();event.preventDefault();tempCSPopup.hide();}});} +if(openOnComplete){tempCSPopup.show();}else{tempCSPopup.hide();} +hf_core.addFooterPopup(tempCSPopup);this.tempCSPopup=tempCSPopup;var tempTab=new CHKTabControl($$('.js_cselector')[0],{tabClass:'.js_cstab_trigger',tabTarget:'child',tabTargetSelector:'.js_cstab_target',tabSettings:{showEvent:['mouseenter','click'],hideEvent:'mouseleave',showDelay:300,hideDelay:00,useFx:true,fxOpenStyle:{opacity:1},fxCloseStyle:{opacity:1},fxDuration:300,fxTransition:Fx.Transitions.Sine.easeInOut}});$$('div.worldmap div.worldwide ul li a')[0].addEvent('keydown',function(e){if(e.shift) +tempTab.hideAllTabs();});tempTab.hideAllTabs();hf_core.addFooterTabControls(tempTab);},showLoadingSplash:function(){this.preloder.removeClass('hidden');this.preloder.set('tween',{duration:300}).tween('opacity',0,1);},hideLoadingSplash:function(func){var me=this;var onCompleteFunc=function(){if($defined(func)){func();} +me.preloder.addClass('hidden');};this.preloder.set('tween',{onComplete:onCompleteFunc}).tween('opacity',1,0);},requestCountrySelector:function(){var me=this;if(typeof hfws==='undefined'){var req=new Request.HTML({method:'get',url:this.options.worldmapURL,onRequest:function(){me.showLoadingSplash();},onFailure:function(){me.hideLoadingSplash();},onException:function(){me.hideLoadingSplash();},onSuccess:function(responseTree,responseElements,responseHTML){$$('.js_worldmap_wrapper')[0].set('html',responseHTML);me.worldmapCreated=true;var func=function(){me.initCountrySelector(true);};me.hideLoadingSplash(func);}});} +else{var req=new Request.JSONP({url:cselector_jsp,callbackKey:'jsoncallback',onRequest:function(url){me.showLoadingSplash();},onFailure:function(){me.hideLoadingSplash();},onException:function(){me.hideLoadingSplash();},onComplete:function(response){$$('.js_worldmap_wrapper')[0].set('html',response.country_selector);me.worldmapCreated=true;var func=function(){me.initCountrySelector(true);};me.hideLoadingSplash(func);}});} +if($defined($('worldmap_url_info'))&&$('worldmap_url_info').getElements('input').length>0){var form_data="";$('worldmap_url_info').getElements('input').each(function(input,index){form_data+=input.getProperty('name')+'='+escape(input.getProperty('value')) +if(index==0){form_data+='&'}});req.send({method:$('worldmap_url_info').getProperty('method'),data:form_data});} +else +req.send();}});function initAjaxCountrySelector(){return new AjaxCountrySelector();} +function initConnectWidgets(popupManager){$$(".js_connect_widget").each(function(el){popupManager.add(new ConnectWidget(el));});if(rtl===true){if($$('html')[0].getProperty('lang')==='he-il'){$$('.icn_location').getParent().getFirst('a').addClass('cnn_fst_a');}}} +function initCommunityWidgets(popupManager){$$(".js_community_widget").each(function(el){popupManager.add(new CommunityWidget(el));});} +function initFooter(manager){var popupManager=manager||new PopupManager();$('footer').getElements(".js_ftr_popup_trigger").each(function(trigger){var target=$(trigger.getParent().getElement(".js_ftr_popup_target"));if(!target){return;} +popupManager.add(new FooterPopup(trigger,target));});} +function initHFSearchBox(){if($defined($('search_hp'))){var defTxt=$('search_hp').getElement('.defaultTxt').get('html');var queryTxt="";if(window.location.href.indexOf("nores=true")>0){var invalidQt=decodeURIComponent(window.location.href.split("=")[window.location.href.split("=").length-1]);$('search_hp').getElementById('searchBox').setProperty('value',invalidQt);}else{$('search_hp').getElementById('searchBox').setProperty('value',defTxt);} +$('searchBox').addEvent('focus',function(){if($('searchBox').getProperty('value').toUpperCase()!=defTxt.toUpperCase()){queryTxt=$('search_hp').getElementById('searchBox').value;} +if($('searchBox').getProperty('value')!=queryTxt)$('searchBox').setProperty('value',queryTxt);$('searchBox').setStyle("color","#000000");});$('searchBox').addEvent('blur',function(){if($('searchBox').getProperty('value').toUpperCase()!=defTxt.toUpperCase()){queryTxt=$('searchBox').value;} +if(queryTxt.length>0){$('searchBox').setProperty('value',queryTxt);}else{$('searchBox').setProperty('value',defTxt);} +$('searchBox').setStyle("color","#767676");});$('searchHP').addEvent('submit',function(){if($('searchBox').getProperty('value').toUpperCase()==defTxt.toUpperCase()){$('searchBox').value="";}});}else{return;}} +function initIE6Widgets(){if(isIE6&&rtl&&$defined($$('ul.nav_buttons')[0])){var hack_width=0;$$('ul.nav_buttons .nav_button').each(function(el){hack_width+=el.getCoordinates().width;});$$('ul.nav_buttons')[0].getParent().setStyle('width',hack_width+9+'px');} +else{return;}} +function trackHFMetrics(link_metrics){if(!link_metrics.getAttribute('name')){return;} +try{trackMetrics('linkClick',{type:'link',id:link_metrics.getAttribute('name'),url:link_metrics.getAttribute('href')});} +catch(err){}} +function initHFMetrics(metrics_class){$$(metrics_class).each(function(el){el.addEvent('click',function(){trackHFMetrics(el);});});} +function setPrintLogo(){if($$('.hplogo')[0].getElements('img')<=1){var printlogo=new Element('img',{'class':'printable logo png'});$$('.hplogo')[0].adopt(printlogo);var src=$$('.hplogo img.logo')[0].getStyle('background-image');if((navigator.userAgent.toLowerCase().indexOf('chrome')>-1)||(navigator.userAgent.toLowerCase().indexOf('safari')>-1)){src=src.replace(new RegExp("url\\(",'gi'),'');src=src.replace(new RegExp("\\)",'gi'),'');}else{src=src.replace('url("','').replace('")','');} +$$('.hplogo img.logo')[0].setProperty('src',src);}else{return;}} +function loadPrintLogo(){if(isIE){window.onbeforeprint=function(){setPrintLogo();}} +else{$$('.everything')[0].addEvent('mouseleave',function(){setPrintLogo();});window.addEvent('keydown',function(event){if((event.control&&event.key=='p')||(event.control&&event.key=='P')||event.alt){setPrintLogo();}});}} +window.addEvent('domready',function(){hf_core=new CHKCoreEngine_Base();initIE6Widgets();var popupManager=new PopupManager();initCommunityWidgets(popupManager);initConnectWidgets(popupManager);initFooter();initHFMetrics('.link_metrics');if(!$defined($('carousel'))&&!$defined($('promo_area'))){initMainNav($('js_main_nav'),false,0);} +if($defined($$('.js_cselector_trigger')[0])){initAjaxCountrySelector();} +if(!$defined($$('div.seo_birdseed')[0])){addEmptyBirdSeed();} +loadPrintLogo();var cats=[["PRODUCTS_AND_SERVICES","Products & Services"],["SUPPORT_AND_DRIVERS","Support & Drivers"],["LEARN_USE_AND_CREATE","Learn, Use & Create"],["COMMUNITY","Community"],["ABOUT_HP","About HP"],["ALL_RESULTS","All Results"]];var acWidth=getSearchContainerWidth("searchBox");initSearchBoxSliding("searchBox",acWidth,"search_container_active");autocomplete_start(cats,"http://iapproautocm.austin.hp.com/hp-iap-autocomplete/search",{width:acWidth});initHFSearchBox();});function loadScript(url,callback){var script=document.createElement("script");script.type="text/javascript";if(script.readyState){script.onreadystatechange=function(){if(script.readyState=="loaded"||script.readyState=="complete"){script.onreadystatechange=null;callback();}};}else{script.onload=function(){callback();};} +script.src=url;document.getElementsByTagName("head")[0].appendChild(script);} +function addEmptyBirdSeed(){var emptyBirdSeed=new Element('div',{'class':'seo_birdseed'});emptyBirdSeed.inject($('content'),'after');} +var SearchHttpRequest={get:function(url,params,callback){var process=true,sid='sid'+parseInt(Math.random()*1000000),cb='cb=SearchHttpRequest.callback.'+sid,script=document.createElement('script');script.type='text/javascript';if(params){var sep='';url+="?";for(var name in params){url+=sep+name+'='+params[name];sep='&';}} +if(url.indexOf('?')==-1)script.src=url+'?'+cb;else if(url.match(/\?[\w\d]+/))script.src=url+'&'+cb;else script.src=url+cb;SearchHttpRequest.callback[sid]=function(response){process=false;callback(response);};script.onerror=script.onload=script.onreadystatechange=function(e){if(!this.loaded&&(!this.readyState||this.readyState=='loaded'||this.readyState=='complete')){this.loaded=1;this.onerror=this.onload=this.onreadystatechange=null;if(process){callback(false);}else{} +this.parentNode.removeChild(this);delete script;delete SearchHttpRequest.callback[sid];}};if(document.getElementsByTagName('head').length){document.getElementsByTagName('head')[0].appendChild(script);}else{document.appendChild(script);}},callback:{}};AC=function(input,options){this.input=input;this.active=-1;this.ackeydown=function(e){lastKeyPressCode=e.key;switch(lastKeyPressCode){case'backspace':var str=e.target.id;var patt=/i/;if(str.match(patt)){$(options.searchBox).focus();} +this.updateList();break;case'up':e.preventDefault();this.moveSelect(-1);break;case'down':e.preventDefault();this.moveSelect(1);break;case'tab':case'enter':if(this.selectCurrent(true)){$input.value=prev;$input.blur();hasFocus=false;e.preventDefault();} +break;case'esc':{if(e.target.id===options.searchBox){$input.value=prev;$input.blur();} +else{this.selectItem(e.target.parentNode,false);} +hasFocus=false;this.hideResultsNow();e.preventDefault();} +break;default:this.updateList();break;}};this.updateList=function(){this.active=-1;if(timeout)clearTimeout(timeout);timeout=setTimeout(function(){this.onChange();}.bind(this),options.delay);};this.onChange=function(){if('delete'==lastKeyPressCode||'shift'==lastKeyPressCode) +return $results.hide();var v=$input.value;if(v==prev)return;prev=v;if(v.length>=options.minChars){if(options.loadingClass) +$input.addClass(options.loadingClass);this.requestData(v);}else{if(options.loadingClass) +$input.removeClass(options.loadingClass);$results.hide();}};this.moveSelect=function(step){var lis=$$('.'+options.resultsClass+' li');if(!lis||lis.length==0)return;var lastActive=this.active;this.active+=step;if(this.active==-1&&lastActive!=0){this.active=lis.length;$input.value=prev;$input.focus();}else if(this.active==-1&&lastActive==0){this.active=-1;$input.value=prev;$input.focus();}else if(this.active==-2&&lastActive==-1){this.active=lis.length-1;$input.value=lis[this.active].selectValue;lis[this.active].firstChild.focus();} +else if(this.active==lis.length){this.active=-1;$input.value=prev;$input.focus();} +else{$input.value=lis[this.active].selectValue;lis[this.active].firstChild.focus();}};this.selectCurrent=function(fSubmit){var li=$$('ul li.ac_over')[0];if(!li){var $li=$$('ul li');if(options.selectOnly){if($li.length==1)li=$li[0];}else if(options.selectFirst){li=$li[0];}} +if(li){this.selectItem(li,fSubmit);return true;}else{return false;}};this.selectItem=function(li,fSubmit){if(!li){li=document.createElement("li");li.extra=[];li.selectValue="";} +var v=(li.selectValue?li.selectValue:li.get("text")).trim();input.lastSelected=v;prev=v;$results.innerHTML="";$input.value=v;$input.focus();this.hideResultsNow();var searchForm=$('searchHP');searchForm.fireEvent('submitSearchForm',{initiator:"autocomplete",target:this.input});searchForm.getElement(".searchSubmit").click();try{if(typeof console!="undefined"){console.log("searchFeature",{"search_attr":"AUTOCOMPLETE||yes"});} +trackMetrics("searchFeature",{"search_attr":"AUTOCOMPLETE||yes"});}catch(error){}};this.createSelection=function(start,end){var field=$input;if(field.createTextRange){var selRange=field.createTextRange();selRange.collapse(true);selRange.moveStart("character",start);selRange.moveEnd("character",end);selRange.select();}else if(field.setSelectionRange){field.setSelectionRange(start,end);}else{if(field.selectionStart){field.selectionStart=start;field.selectionEnd=end;}} +field.focus();};this.autoFill=function(sValue){if(lastKeyPressCode!='backspace'){$input.value=($input.value+sValue.substring(prev.length));this.createSelection(prev.length,sValue.length);}};this.showResults=function(){var pos=this.findPos(input);$results.setStyle('width',(options.width||parseInt(input.offsetWidth.toInt()-2))+"px");$results.setStyle("top",(pos.y+input.offsetHeight)+"px");var parentBorderWidth=input.getParent().getStyle("border-width").toInt();if(window.isIE8){pos.x=pos.x-parentBorderWidth;} +if(window.rtl){$results.setStyle("right",($results.getParent().clientWidth-(pos.x+input.offsetWidth.toInt())-parentBorderWidth*2)+"px");}else{$results.setStyle("left",(pos.x)+"px");} +$results.show();};this.hideResults=function(){if(timeout)clearTimeout(timeout);timeout=setTimeout(this.hideResultsNow,200);};this.hideResultsNow=function(){if(timeout)clearTimeout(timeout);if(options.loadingClass) +$input.removeClass(options.loadingClass);if(document.activeElement!=$input&&document.activeElement!=$submitBtn){$input.fireEvent('inactive');} +$results.hide();if(options.mustMatch){var v=$input.value;if(v!=input.lastSelected){this.selectItem(null,false);}}};this.receiveData=function(q,data){if(data){if(options.loadingClass) +$input.removeClass(options.loadingClass);results.innerHTML="";if(!hasFocus||data.length==0)return this.hideResultsNow();results.appendChild(this.dataToDom(data));if(options.autoFill&&($input.value.toLowerCase()==q.toLowerCase()))this.autoFill(data[0][0]);this.showResults();}else{this.hideResultsNow();}};this.dataToDom=function(data){var ul=document.createElement("ul");var num=data.length;if((options.maxItemsToShow>0)&&(options.maxItemsToShow1){extra=[];for(var j=1;j0)){function blockListCreater(json){if(!json) +return;var term=json.data.QueryTerm;var data=[];for(var i=0;i<10;i++){if(json.data.SuggestionItems[i]) +data[data.length]=[json.data.SuggestionItems[i].Suggestion];} +if(data){this.addToCache(q,data);if(data.length!=0&&data.length=options.minChars;i--){var qs=q.substr(0,i);var c=cache.data[qs];if(c){var csub=[];for(var j=0;joptions.cacheLength){this.flushCache();cache.length++;}else if(!cache[q]){cache.length++;} +cache.data[q]=data;};this.findPos=function(obj){var curleft=obj.offsetLeft||0;var curtop=obj.offsetTop||0;while(obj=obj.offsetParent){curleft+=obj.offsetLeft;curtop+=obj.offsetTop;} +return{x:curleft,y:curtop};} +this.formatItem=function(row,i,num,inputvalue,categories){for(var c=0;c'+inw+categories[c][1]+'';row[1]=categories[c][0];row[2]=woInFirstPart.trim();row[3]=firstPart+categories[c][1];break;}} +var title=row[0];if(!$defined(row[3])){row[3]=row[0];} +var index=title.toLowerCase().indexOf(inputvalue.toLowerCase());var len=inputvalue.length;var html=""+title.substr(0,index)+''+title.substr(index,len)+''+title.substr(index+len)+'';return{selectValue:row[3],innerHTML:html};};var me=this;var actype;var okflag=false;var err='';var $input=$(input).setProperty("autocomplete","off");var $submitBtn=$input.getNext("input[type=submit]");if(options.inputClass)$input.addClass(options.inputClass);var results=document.createElement("div");var $results=$(results);$results.hide().addClass(options.resultsClass).addClass(options.resultsStyleClass).setStyle('position','absolute');$results.setStyle('width',$input.getStyle('width'));$(document.body).grab(results);input.autocompleter=me;var timeout=null;var prev="";var cache={};var keyb=false;var hasFocus=false;var lastKeyPressCode=null;var fMatchCache=false;var ourIsFocused=false;var timeoutDropdown;this.flushCache();if(options.data!=null){var sFirstChar="",stMatchSets={},row=[];if(typeof options.url!="string")options.cacheLength=1;for(var i=0;i0){sFirstChar=row[0].substring(0,1).toLowerCase();if(!stMatchSets[sFirstChar])stMatchSets[sFirstChar]=[];stMatchSets[sFirstChar].push(row);}} +for(var k in stMatchSets){options.cacheLength++;this.addToCache(k,stMatchSets[k]);}} +$input.addEvent('keydown',function(e){this.ackeydown.call(this,e);}.bind(this));$input.addEvent('keydown',function(event){if(event.key=='enter') +this.hideResultsNow();}.bind(this));$input.addEvent('focus',function(){hasFocus=true;ourIsFocused=true;this.fireEvent('active');});$input.addEvent('blur',function(e){ourIsFocused=false;if(timeoutDropdown)clearTimeout(timeoutDropdown);timeoutDropdown=setTimeout(function(){if(!ourIsFocused){hasFocus=false;this.hideResults();} +if(!$results.isDisplayed()&&document.activeElement!=$input&&document.activeElement!=$submitBtn){$input.fireEvent('inactive');}}.bind(this),150);}.bind(this));if($submitBtn){$submitBtn.addEvents({'blur':function(e){setTimeout(function(){if(!$results.isDisplayed()&&document.activeElement!=$input){$input.fireEvent('inactive');}},1);}.bind(this)});} +if(options.focusOnMouseEnter){$input.addEvent('mouseenter',function(e){$(input).focus();e.preventDefault();});} +this.hideResultsNow();};function autocomplete_start(cats,fastendpoint,opt){var langInput=$$('input[name="lang"]');var options={matchSubset:0,matchSubsetIfLessThen:10,matchContains:1,cacheLength:1,minChars:2,delay:100,categories:cats,url:fastendpoint,data:null,searchBox:opt.searchBox||"searchBox",inputClass:opt.inputClass||"ac_input",resultsClass:opt.resultsClass||"js_ac_results",resultsStyleClass:opt.resultsStyleClass||"ac_results",lineSeparator:opt.lineSeparator||"\n",cellSeparator:opt.cellSeparator||"|",matchCase:opt.matchCase||0,mustMatch:opt.mustMatch||0,extraParams:opt.extraParams||{},selectFirst:opt.selectFirst||false,selectOnly:opt.selectOnly||false,focusOnMouseEnter:opt.focusOnMouseEnter||false,maxItemsToShow:opt.maxItemsToShow||-1,autoFill:opt.autoFill||false,width:opt.width||0,language:opt.language||langInput.length?langInput[0].value:''||'en'};return new AC($(options.searchBox),options);} +function getSearchContainerWidth(searchBox){var searchBox=$(searchBox);if(searchBox){var widgetMenu=searchBox.getParent('#widget_menu');var widgetMenuWidth=0;widgetMenu.getElements("div.col").each(function(el){widgetMenuWidth+=el.getWidth();});widgetMenu.setStyle("width",widgetMenuWidth+'px');var searchContainer=searchBox.getParent();var searchContainerWidth=widgetMenuWidth-searchContainer.getStyle("border-left").toInt()*2;return searchContainerWidth;} +return 0;} +function initSearchBoxSliding(searchBox,searchContainerWidth,parentActiveClass){var searchBox=$(searchBox);var submitBtn=searchBox.getNext("input[type=submit]");if(searchBox){var searchContainer=searchBox.getParent();var searchBoxWidth=searchContainerWidth-submitBtn.getWidth()-(rtl?searchBox.getStyle("padding-right").toInt():searchBox.getStyle("padding-left").toInt());var shoppingCardCount=$$('.item_count');searchBox.addEvents({active:function(){searchContainer.addClass(parentActiveClass);searchContainer.removeClass("search_container");searchContainer.setStyle("width",searchContainerWidth+'px');searchBox.setStyle("width",searchBoxWidth+'px');if(shoppingCardCount)shoppingCardCount.hide();},inactive:function(){searchContainer.removeClass(parentActiveClass);searchContainer.addClass("search_container");searchContainer.setStyle("width","");searchBox.setStyle("width","");if(shoppingCardCount)shoppingCardCount.show();}});}} +var product_timer=null;function alignIE6BannersRTL(){if(rtl){$$('.link_list').each(function(el){el.getParent().addClass('ie6_align');});}} +function promo_click(){$$('.content.basic a').addEvent('click',function(){trackMetrics('promoClick',{type:'link',id:this.getAttribute('name'),url:this.getAttribute('href')});});$$('.segment_one_banner a').addEvent('click',function(){trackMetrics('promoClick',{type:'link',id:this.getAttribute('name'),url:this.getAttribute('href')});});$$('.segment_one_banner area').addEvent('click',function(){trackMetrics('promoClick',{type:'link',id:this.getAttribute('name'),url:this.getAttribute('href')});});} +function basic_store(cont_parent){if(cont_parent.getElement('.content')!=null){var input=cont_parent.getElement('.content').getElements('input');if(input.length==2){cont_parent=input[0].getParent();cont_parent.getElements('input')[0].dispose();if(cont_parent.getElements('.image').length==2) +cont_parent.getElements('.image')[0].dispose();if(cont_parent.getElements('.default_content').length==2) +cont_parent.getElements('.default_content')[0].dispose();else +cont_parent.getElements('.default_content')[0].inject(cont_parent.getElements('.image')[0],'after');if(cont_parent.getElements('.over_content').length==2){if(cont_parent.getElements('.over_content .shop_title').length==1) +cont_parent.getElements('.over_content .shop_title')[0].inject(cont_parent.getElements('.over_content')[1].getElements('.link_list')[0],'before');if(cont_parent.getElements('.over_content .cta').length==1){var name=cont_parent.getElements('.over_content .cta a')[0].getProperty('name');var pattern="_";var seg_str=name.split(pattern);if(seg_str[6]!=""){name=name.replace(seg_str[6],seg_str[6]+"_shopnow");} +else if(seg_str[5]!=""){name=name.replace(seg_str[5],seg_str[5]+"__shopnow");name=name.replace("shopnow__","shopnow_");} +else{name=name.replace(seg_str[4],seg_str[4]+"___shopnow");name=name.replace("shopnow___","shopnow_");} +if(isIE6||isIE7||isIE8){var elementToReplace=cont_parent.getElements('.over_content .cta a')[0];var elementHref=elementToReplace.getProperty('href');var elementTabindex=elementToReplace.getProperty('tabindex');var elementClass=elementToReplace.getProperty('class');var newElement=new Element("a",{name:name,html:elementToReplace.get("html")});newElement.setProperty('href',elementHref);newElement.setProperty('class',elementClass);newElement.setProperty('tabindex',elementTabindex);newElement.replaces(elementToReplace);} +else{cont_parent.getElements('.over_content .cta a')[0].setProperty('name',name);} +cont_parent.getElements('.over_content .cta')[0].inject(cont_parent.getElements('.over_content')[1].getElements('.link_list')[0],'after');$$('.over_content .link_list a').each(function(element){var lname=element.getProperty('name')+"";var pattern="_";var seg_str=lname.split(pattern);if(seg_str[6]!=""){lname=lname.replace(seg_str[6],seg_str[6]+"_shopnow");} +else if(seg_str[5]!=""){lname=lname.replace(seg_str[5],seg_str[5]+"__shopnow");lname=lname.replace("shopnow__","shopnow_");} +else{lname=lname.replace(seg_str[4],seg_str[4]+"___shopnow");lname=lname.replace("shopnow___","shopnow_");} +if(isIE6||isIE7||isIE8){var elementHref=element.getProperty('href');var elementClass=element.getProperty('class');var elementTabindex=element.getProperty('tabindex');var newElement=new Element("a",{name:lname,html:element.get("html")});newElement.setProperty('href',elementHref);newElement.setProperty('class',elementClass);newElement.setProperty('tabindex',elementTabindex);newElement.replaces(element);} +else{element.setProperty('name',lname);}});} +else if(cont_parent.getElements('.over_content .cta').length>1){var name=cont_parent.getElements('.over_content .cta a')[1].getProperty('name');var pattern="_";var seg_str=name.split(pattern);if(seg_str[6]!=""){name=name.replace(seg_str[6],seg_str[6]+"_shopnow");} +else if(seg_str[5]!=""){name=name.replace(seg_str[5],seg_str[5]+"__shopnow");name=name.replace("shopnow__","shopnow_");} +else{name=name.replace(seg_str[4],seg_str[4]+"___shopnow");name=name.replace("shopnow___","shopnow_");} +if(isIE6||isIE7||isIE8){var elementToReplace=cont_parent.getElements('.over_content .cta a')[1];var elementHref=elementToReplace.getProperty('href');var elementTabindex=elementToReplace.getProperty('tabindex');var elementClass=elementToReplace.getProperty('class');var newElement=new Element("a",{name:name,html:elementToReplace.get("html")});newElement.setProperty('href',elementHref);newElement.setProperty('class',elementClass);newElement.setProperty('tabindex',elementTabindex);newElement.replaces(elementToReplace);} +else{cont_parent.getElements('.over_content .cta a')[1].setProperty('name',name);} +$$('.over_content .link_list a').each(function(element){var lname=element.getProperty('name')+"";var pattern="_";var seg_str=lname.split(pattern);if(seg_str[6]!=""){lname=lname.replace(seg_str[6],seg_str[6]+"_shopnow");} +else if(seg_str[5]!=""){lname=lname.replace(seg_str[5],seg_str[5]+"__shopnow");lname=lname.replace("shopnow__","shopnow_");} +else{lname=lname.replace(seg_str[4],seg_str[4]+"___shopnow");lname=lname.replace("shopnow___","shopnow_");} +if(isIE6||isIE7||isIE8){var elementHref=element.getProperty('href');var elementClass=element.getProperty('class');var elementTabindex=element.getProperty('tabindex');var newElement=new Element("a",{name:lname,html:element.get("html")});newElement.setProperty('href',elementHref);newElement.setProperty('class',elementClass);newElement.setProperty('tabindex',elementTabindex);newElement.replaces(element);} +else{element.setProperty('name',lname);}});} +if(cont_parent.getElements('.over_content .segment').length==1) +cont_parent.getElements('.segment')[0].inject(cont_parent.getElements('.over_content')[1]);cont_parent.getElements('.over_content')[0].dispose();} +cont_parent.getElements('.over_content').setStyles({'position':'absolute','top':'26px'});if(cont_parent.getElements('.over_content .cta')[0]) +cont_parent.getElements('.over_content .cta')[0].setStyle('display','none');(0);}}} +function parseMetricsContent(){$$('.group').each(function(group,gindex){if(group.getElements('.content').length>0){switch(gindex){case 0:assignMultiBannerMetricsIndexes(group,0);break;case 1:assignMultiBannerMetricsIndexes(group,3);break;case 2:assignMultiBannerMetricsIndexes(group,6);break;}} +else if(group.getElements('.segment_one_banner').length>0){switch(gindex){case 0:if(group.getElements('.segment_one_banner .shop_url').length>0){assignSingleBannerMetricsIndexes(group,1);} +else{assignSingleBannerMetricsIndexes(group,"123");} +break;case 1:if(group.getElements('.segment_one_banner .shop_url').length>0){assignSingleBannerMetricsIndexes(group,4);} +else{assignSingleBannerMetricsIndexes(group,"456");} +break;case 2:if(group.getElements('.segment_one_banner .shop_url').length>0){assignSingleBannerMetricsIndexes(group,7);} +else{assignSingleBannerMetricsIndexes(group,"789");} +break;}}});} +function assignSingleBannerMetricsIndexes(banner_group,position){banner_group.getElements('.segment_one_banner .over_content .link_list a').each(function(link_list){var re=new RegExp("_l\\d+");var m=re.exec(link_list.getAttribute('name'));if(m!=null){link_list.setAttribute('name',link_list.getAttribute('name').replace(m,'_l'+position));}});banner_group.getElements('.segment_one_banner .cta .button a').each(function(cta){var re=new RegExp("_l\\d+");var m=re.exec(cta.getAttribute('name'));if(m!=null){cta.setAttribute('name',cta.getAttribute('name').replace(m,'_l'+position));}});banner_group.getElements('.segment_one_banner .tagline_cta a').each(function(tagline){var re=new RegExp("_l\\d+");var m=re.exec(tagline.getAttribute('name'));if(m!=null){if(banner_group.getElements('.segment_one_banner .shop_url').length>0){tagline.setAttribute('name',tagline.getAttribute('name').replace(m,'_l'+(position+1)+''+(position+2)));} +else{tagline.setAttribute('name',tagline.getAttribute('name').replace(m,'_l'+position));}}});banner_group.getElements('.segment_one_banner .image_url').each(function(img_url){var re=new RegExp("_l\\d+");var m=re.exec(img_url.getAttribute('name'));if(m!=null){if(banner_group.getElements('.segment_one_banner .shop_url').length>0) +{img_url.setAttribute('name',img_url.getAttribute('name').replace(m,'_l'+(position+1)+''+(position+2)));} +else{img_url.setAttribute('name',img_url.getAttribute('name').replace(m,'_l'+position));}}});banner_group.getElements('.segment_one_banner .shop_url').each(function(img_url){var re=new RegExp("_l\\d+");var m=re.exec(img_url.getAttribute('name'));if(m!=null){img_url.setAttribute('name',img_url.getAttribute('name').replace(m,'_l'+position));}});banner_group.getElements('.segment_one_banner area').each(function(area,index){var re=new RegExp("_l\\d+");var m=re.exec(area.getAttribute('name'));if(m!=null){if(index==0){area.setAttribute('name',area.getAttribute('name').replace(m,'_l'+position));} +else{area.setAttribute('name',area.getAttribute('name').replace(m,'_l'+(position+1)+''+(position+2)));}}});} +function assignMultiBannerMetricsIndexes(banner_group,pointer){banner_group.getElements('.content').each(function(banner,index){banner.getElements('.over_content').each(function(o_content){o_content.getElements('.link_list a').each(function(link_list){var re=new RegExp("_l\\d+");var m=re.exec(link_list.getAttribute('name'));if(m!=null){link_list.setAttribute('name',link_list.getAttribute('name').replace(m,'_l'+(pointer+index+1)));}});o_content.getElements('.cta .button a').each(function(cta){var re=new RegExp("_l\\d+");var m=re.exec(cta.getAttribute('name'));if(m!=null){cta.setAttribute('name',cta.getAttribute('name').replace(m,'_l'+(pointer+index+1)));}});});});} +function addHomeCarousel(){initHomeCarousel(rtl,'promo_area','.banner');var els=$$('#promo_area .banner .content');els.each(function(el){el.addEvent('click',function(event){if(event.target&&event.target.nodeName.toLowerCase()=='a')return;var element=el.getElement('.over_content .cta a');new Event(event).stop();if(document.createEventObject){element.click();}else{var event=element.ownerDocument.createEvent('MouseEvents');event.initMouseEvent('click',true,true,element.ownerDocument.defaultView,1,0,0,0,0,false,false,false,false,0,null);element.dispatchEvent(event);} +location.href=element.href;});});(function(){if($$('.banner')[rtl?2:0].getElements('.banner .segment_one_banner').length<=0){var group=rtl?2:0;$$('.banner')[group].getElements('.content .image img').each(function(image){var title=image.get('title');if(title){image.set('src',title);image.removeProperties('title');image.setProperty('alt','');}});}}).delay(100);var eventHandler;eventHandler=function(){var group=1;var groupLimit=1;if($('promo_area').getElements('.banner .segment_one_banner').length>0){var takeoverBanners=$$('#promo_area .banner .segment_one_banner');takeoverBanners.each(function(takeover){takeover.addEvent('mouseenter',function(event){if(!$defined(takeover.getElement('.image_url'))&&!$defined(takeover.getElement('.over_content .cta a'))){takeover.getElement('.to_container').removeClass('hand');}});var element;if($defined(takeover.getElement('.image area'))&&$defined(takeover.getElement('.image_url'))){takeover.getElement('.over_content').addEvent('mouseenter',function(){element=takeover.getElement('.image area');});takeover.getElement('.over_content').addEvent('mouseleave',function(){element=takeover.getElement('.image_url');});takeover.getElements('.image area')[1].addEvent('mouseenter',function(){element=takeover.getElement('.image_url');});} +takeover.addEvent('click',function(event){var target=event.target?event.target:event.srcElement;if(target.nodeType==3){target=target.parentNode;} +if(target&&target.nodeName.toLowerCase()=='a'){return;} +else if(target&&target.nodeName.toLowerCase()=="area"){return;} +else if(target&&target.nodeName.toLowerCase()=='span'){try{if(target.getParent('div.button')){return;}} +catch(e){return;}} +if($defined(takeover.getElement('.image area'))&&$defined(takeover.getElement('.image_url'))){} +else if($defined(takeover.getElement('.image_url'))&&!$defined(takeover.getElement('.image area'))){element=takeover.getElement('.image_url');} +else if($defined(takeover.getElement('.over_content .cta a'))){element=takeover.getElement('.over_content .cta a');} +else{element=takeover.getElement('.js_banner_sobanner_tabindex');} +new Event(event).stop();if(document.createEventObject){element.click();}else{var event=element.ownerDocument.createEvent('MouseEvents');event.initMouseEvent('click',true,true,element.ownerDocument.defaultView,1,0,0,0,0,false,false,false,false,0,null);element.dispatchEvent(event);} +location.href=element.href;});});group=(rtl)?2:0;groupLimit=2;} +for(var i=0;i<=groupLimit;i++){$$('.banner')[group].getElements('.content .image img').each(function(image){var title=image.get('title');if(title){image.set('src',title);image.removeProperties('title');image.setProperty('alt','');}});$$('.banner')[group].getElements('.segment_one_banner .image img').each(function(image){var title=image.get('title');if(title){image.set('src',title);image.removeProperties('title');image.setProperty('alt','');}});if(rtl){group--;}else{group++;}} +this.removeEvent('mouseover',eventHandler);this.removeEvent('focus',eventHandler);};$('everything').addEvents({'mouseover':eventHandler});try{$$('.js_banner_tabindex')[0].addEvents({'focus':eventHandler});}catch(e){} +var carouselGroup=$$('.carousel_group');if(rtl){carouselGroup=carouselGroup.reverse();} +carouselGroup[0].getElements('.carousel_box')[0].setProperty('title',$(segmentOrder[0].toLowerCase()+'_msg').getProperty('title'));carouselGroup[1].getElements('.carousel_box')[0].setProperty('title',$(segmentOrder[1].toLowerCase()+'_msg').getProperty('title'));carouselGroup[2].getElements('.carousel_box')[0].setProperty('title',$(segmentOrder[2].toLowerCase()+'_msg').getProperty('title'));} +var NewsRoomTicker={rss:newsroom_rss,pause:5000,chg_speed:0,news_items:[],curr_item:0,chg_timer:null,moofx:null,mouseover:false,ticker_div:null,ticker_content_div:null,ticker_size_test_div:null,init:function(rss_url){this.ticker_div=$('newsroom_ticker');if(this.ticker_div==null)return false;this.ticker_content_div=$('newsroom_ticker_content');if(this.ticker_content_div==null){this.hide();return false;} +this.rss=rss_url;var _this=this;var req=new Request({method:'get',url:_this.rss,onFailure:function(err){_this.hide();},onException:function(err){_this.hide();},onComplete:function(response,responseXML){_this.loadFeed(responseXML);}}).send();},init_oldpressroom_feeds:function(){this.ticker_div=$('newsroom_ticker');if(this.ticker_div==null)return false;this.ticker_content_div=$('newsroom_ticker_content');if(this.ticker_content_div==null){this.hide();return false;} +if(typeof(window["sFeed_news"])!="undefined"){if(window.DOMParser){xmlDoc=(new DOMParser()).parseFromString(sFeed_news,"text/xml");} +else if(window.ActiveXObject){try{xmlDoc=new ActiveXObject("Msxml2.DOMDocument");xmlDoc.loadXML(sFeed_news);}catch(e){try{xmlDoc=new ActiveXObject("Microsoft.XMLDOM");xmlDoc.loadXML(sFeed_news);}catch(E){xmlDoc=null;}}} +if(xmlDoc) +tickerItems=xmlDoc.getElementsByTagName("item");else return;for(var i=0;i";tmp_html+=this.news_items[0].title+"";$('newsroom_ticker_content').innerHTML=tmp_html;if(this.news_items.legth==1)return;this.moofx=new Fx.Morph(this.ticker_content_div,{duration:500});this.chg_timer=setTimeout('NewsRoomTicker.changeItem()',this.pause);return true;},changeItem:function(){if(!this.mouseover){this.curr_item++;if(this.curr_item==this.news_items.length)this.curr_item=0;var _this=this;if(isIE6||isIE7){var tmp_html="";tmp_html+=_this.news_items[_this.curr_item].title+"";$('newsroom_ticker_content').innerHTML=tmp_html;}else{this.moofx.start({}).chain(function(){this.start.delay(_this.chg_speed,this,{'opacity':0});}).chain(function(){var tmp_html="";tmp_html+=_this.news_items[_this.curr_item].title+"";$('newsroom_ticker_content').innerHTML=tmp_html;this.start.delay(0001,this,{'opacity':1});});}} +this.chg_timer=setTimeout('NewsRoomTicker.changeItem()',this.pause);},hide:function(){this.ticker_div=$('newsroom_ticker');if(this.ticker_div!=null){}},show:function(){this.ticker_div=$('newsroom_ticker');if(this.ticker_div!=null){this.ticker_div.setStyles({display:'block'});}},fix_item_size:function(test_text){var NEWS_OFFSET=0;if(navigator.userAgent.toLowerCase().indexOf('firefox')>-1){NEWS_OFFSET=-70;} +else if(isIE9){NEWS_OFFSET=20;} +if(($('newsroom_ticker')!=null)&&($('newsroom_ticker_left')!=null)&&($('newsroom_ticker_right')!=null)&&($('newsroom_ticker_header')!=null)){var max_size=($('newsroom_ticker').clientWidth)-(($('newsroom_ticker_header').getElements('a')[0].clientWidth))-327-NEWS_OFFSET;this.ticker_size_test_div=$('newsroom_ticker_size_test');if(this.ticker_size_test_div!=null){this.ticker_size_test_div.innerHTML=test_text;if(this.ticker_size_test_div.clientWidth>max_size){test_text=test_text.substring(0,test_text.length-1)+"...";this.ticker_size_test_div.innerHTML=test_text;if(this.ticker_size_test_div.clientWidth>max_size){var i=test_text.length;while(i>0){test_text=test_text.substring(0,test_text.length-4)+"...";this.ticker_size_test_div.innerHTML=test_text;if(this.ticker_size_test_div.clientWidth<=max_size){break;};i--;}}}}} +else{test_text=test_text.substr(0,76)} +return test_text;}};var hp_cookie_path='/';var hp_cookie_expiration=90;var hp_cookie_domain='.hp.com';var hmpg_segments=new Array();var customerSegment;var hmpg_expacc=new Array();var default_expacc=0;var homeReady=false;$('carousel').addClass('hidden');var _Ck_=new _CK_(hp_cookie_expiration,hp_cookie_path,hp_cookie_domain);function setCk(_name,_value,_duration,_path,_domain){_Ck_.set(_name,_value,_duration,hp_cookie_path,hp_cookie_domain);} +function getCk(_name){_Ck_.get(_name);} +function _CK_(_duration,_path,_domain){this.domain=_domain;this.duration=_duration;this.path=_path;this.exist=function(_n){var sM=document.cookie.match(new RegExp("("+_n+"=[^;]*)(;|$)"));return sM?unescape(sM[1]):null;} +this.get=function(_n){var sR=document.cookie.match(_n+'=(.*?)(;|$)');return sR?unescape(sR[1]):null;} +this.set=function(_name,_value,_duration,_path,_domain,_secure){var duration=(_duration)?_duration:this.duration;var path=(_path)?_path:this.path;var domain=(_domain)?_domain:this.domain;if(duration){var date=new Date();date.setTime(date.getTime()+(duration*24*60*60*1000));var dExpires=date.toGMTString();} +document.cookie=_name+"="+escape(_value)+";expires="+dExpires+((domain)?"; domain="+domain:"")+((path)?"; path="+path:"")};this.del=function(_name,_domain){var domain=(_domain)?_domain:this.domain;var date=new Date();date.setFullYear(date.getYear()-1);document.cookie=_name+"=; expires="+date.toGMTString()+((domain)?"; domain="+domain:"")+((this.path)?"; path="+this.path:"/");}} +function cValidDate(cdate){var camp_date=cdate.split('-');var myDate=new Date();myDate.setFullYear(parseInt(camp_date[0]),parseInt(camp_date[1]-1),parseInt(camp_date[2]));var today=new Date();var diff=myDate-today;diff=Math.round(diff/(1000*60*60*24));if(diff>60)diff=60;if(myDate>today)return diff;else return 0;} +function getCampCk(){var cmpName=_Ck_.get('hp_campaign');if(cmpName)return cmpName;else return 0;} +function geturlparam(name){name=name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");var regex=new RegExp("[\\?&]"+name+"=([^&#]*)");var results=regex.exec(window.location.href);return results?results[1]:"";} +function reverseBannerOrder(groups){for(var i=0;i<=2;i++){if($defined(groups[i].getElements('.first')[0])){var tempHTML=groups[i].getElements('.first')[0].get('html');groups[i].getElements('.first')[0].set('html',groups[i].getElements('.last')[0].get('html'));groups[i].getElements('.last')[0].set('html',tempHTML);}}} +function copyContent(groups){var hope_msg=false;if($defined($('hope_msg'))){hope_msg=true;} +switch(window.customerSegment.toUpperCase()){case"HHO":basic_store($('hho_msg'));groups[0].set('html',$$('#hho_msg').get('html'));groups[1].set('html',$$('#smb_msg').get('html'));groups[2].set('html',$$('#leb_msg').get('html'));segmentOrder=['HHO','SMB','LEB'];if($('hho_msg').getElements('.segment_one_banner').length>0&&!hope_msg){groups[0].getElements('.content').destroy();groups[0].getElements('.segment_one_banner').getElement('img').setProperty('src',groups[0].getElements('.segment_one_banner').getElement('img').getProperty('title'));groups[0].getElements('.segment_one_banner').getElement('img').removeProperty('title');} +break;case"SMB":basic_store($('smb_msg'));groups[0].set('html',$$('#smb_msg').get('html'));groups[1].set('html',$$('#hho_msg').get('html'));groups[2].set('html',$$('#leb_msg').get('html'));segmentOrder=['SMB','HHO','LEB'];if($('smb_msg').getElements('.segment_one_banner').length>0&&!hope_msg){groups[0].getElements('.content').destroy();groups[0].getElements('.segment_one_banner').getElement('img').setProperty('src',groups[0].getElements('.segment_one_banner').getElement('img').getProperty('title'));groups[0].getElements('.segment_one_banner').getElement('img').removeProperty('title');} +break;case"LEB":basic_store($('leb_msg'));groups[0].set('html',$$('#leb_msg').get('html'));groups[1].set('html',$$('#hho_msg').get('html'));groups[2].set('html',$$('#smb_msg').get('html'));segmentOrder=['LEB','HHO','SMB'];if($('leb_msg').getElements('.segment_one_banner').length>0&&!hope_msg){groups[0].getElements('.content').destroy();groups[0].getElements('.segment_one_banner').getElement('img').setProperty('src',groups[0].getElements('.segment_one_banner').getElement('img').getProperty('title'));groups[0].getElements('.segment_one_banner').getElement('img').removeProperty('title');} +break;case"GA":basic_store($('ga_msg'));groups[0].set('html',$$('#ga_msg').get('html'));groups[1].set('html',$$('#hho_msg').get('html'));groups[2].set('html',$$('#smb_msg').get('html'));segmentOrder=['GA','HHO','SMB'];if($('ga_msg').getElements('.segment_one_banner').length>0&&!hope_msg){groups[0].getElements('.content').destroy();groups[0].getElements('.segment_one_banner').getElement('img').setProperty('src',groups[0].getElements('.segment_one_banner').getElement('img').getProperty('title'));groups[0].getElements('.segment_one_banner').getElement('img').removeProperty('title');} +break;case"GHE":basic_store($('ghe_msg'));groups[0].set('html',$$('#ghe_msg').get('html'));groups[1].set('html',$$('#hho_msg').get('html'));groups[2].set('html',$$('#smb_msg').get('html'));segmentOrder=['GHE','HHO','SMB'];if($('ghe_msg').getElements('.segment_one_banner').length>0&&!hope_msg){groups[0].getElements('.content').destroy();groups[0].getElements('.segment_one_banner').getElement('img').setProperty('src',groups[0].getElements('.segment_one_banner').getElement('img').getProperty('title'));groups[0].getElements('.segment_one_banner').getElement('img').removeProperty('title');} +break;default:basic_store($('hho_msg'));groups[0].set('html',$$('#hho_msg').get('html'));groups[1].set('html',$$('#smb_msg').get('html'));groups[2].set('html',$$('#leb_msg').get('html'));segmentOrder=['HHO','SMB','LEB'];if($('hho_msg').getElements('.segment_one_banner').length>0&&!hope_msg){groups[0].getElements('.content').destroy();groups[0].getElements('.segment_one_banner').getElement('img').setProperty('src',groups[0].getElements('.segment_one_banner').getElement('img').getProperty('title'));groups[0].getElements('.segment_one_banner').getElement('img').removeProperty('title');} +break;}} +window.addEvent('domready',function(){if(typeof(window["sFeed_news"])!="undefined"){NewsRoomTicker.init_oldpressroom_feeds();}else if(typeof(window["newsroom_rss"])!="undefined"){NewsRoomTicker.init(window.newsroom_rss);}else{NewsRoomTicker.hide();} +var hp_cust_seg_sel=Cookie.read("hp_cust_seg_sel");var myURI=new URI(window.location.href.toUpperCase());var uri_seg=(myURI.getData("SEG")!=null)?myURI.getData("SEG"):hp_cust_seg_sel;switch(uri_seg){case'HHO':case'SMB':case'LEB':case'GHE':case'GA':hp_cust_seg_sel=uri_seg;break;} +if(hp_cust_seg_sel==null){customerSegment=($defined(window.defaultSegment))?window.defaultSegment:"HHO";}else{if(hp_cust_seg_sel==undefined){customerSegment=($defined(window.defaultSegment))?window.defaultSegment:"HHO";}else{customerSegment=hp_cust_seg_sel;}} +homeReady=true;segmentOrder=[];var groups=$$('.group');var hope_msg=document.getElementById('hope_msg');if(rtl){groups=groups.reverse();} +if($defined(window.customerSegment)){copyContent(groups);}else{basic_store($('hho_msg'));groups[0].set('html',$$('#hho_msg').get('html'));groups[1].set('html',$$('#smb_msg').get('html'));groups[2].set('html',$$('#leb_msg').get('html'));segmentOrder=['HHO','SMB','LEB'];if($('hho_msg').getElements('.segment_one_banner').length>0&&hope_msg==null){groups[0].getElements('.content').destroy();groups[0].getElements('.segment_one_banner').getElement('img').setProperty('src',groups[0].getElements('.segment_one_banner').getElement('img').getProperty('title'));groups[0].getElements('.segment_one_banner').getElement('img').removeProperty('title');}} +if(hope_msg!=null){basic_store($('hope_msg'));groups[2].set('html',groups[1].get('html'));groups[1].set('html',groups[0].get('html'));groups[0].set('html',$$('#hope_msg').get('html'));segmentOrder=['HOPE',segmentOrder[0],segmentOrder[1]];if($('hope_msg').getElements('.segment_one_banner').length>0){groups[0].getElements('.content').destroy();groups[0].getElements('.segment_one_banner').getElement('img').setProperty('src',groups[0].getElements('.segment_one_banner').getElement('img').getProperty('title'));groups[0].getElements('.segment_one_banner').getElement('img').removeProperty('title');}} +if(rtl){reverseBannerOrder(groups);} +setBannerTitle();createSOBMaps();parseMetricsContent();if(isIE6&&rtl){alignIE6BannersRTL();} +addHomeCarousel();promo_click();});function trackLoadMetrics(msg1,msg2,msg3,index){try{var pattern=/_l\d+_/;if(!rtl){trackMetrics("promoClosedImpression",{messages:[msg1.replace(pattern,"_l"+(index*3+1)+"_"),msg2.replace(pattern,"_l"+(index*3+2)+"_"),msg3.replace(pattern,"_l"+(index*3+3)+"_")]});}else{trackMetrics("promoClosedImpression",{messages:[msg3.replace(pattern,"_l"+(index*3+3)+"_"),msg2.replace(pattern,"_l"+(index*3+2)+"_"),msg1.replace(pattern,"_l"+(index*3+1)+"_")]});}}catch(err){}} +function trackLoadMetricsSOB(msg1,index){try{var pattern=/_l\d+_/;switch(index){case 0:trackMetrics("promoClosedImpression",{messages:[msg1.replace(pattern,"_l"+"123"+"_")]});break;case 1:trackMetrics("promoClosedImpression",{messages:[msg1.replace(pattern,"_l"+"456"+"_")]});break;case 2:trackMetrics("promoClosedImpression",{messages:[msg1.replace(pattern,"_l"+"789"+"_")]});break;}}catch(err){}} +function trackMapLoadMetricsSOB(msg1,msg2,index){try{var pattern=/_l\d+_/;switch(index){case 0:trackMetrics("promoClosedImpression",{messages:[msg1.replace(pattern,"_l"+"1"+"_"),msg2.replace(pattern,"_l"+"23"+"_")]});break;case 1:trackMetrics("promoClosedImpression",{messages:[msg1.replace(pattern,"_l"+"4"+"_"),msg2.replace(pattern,"_l"+"56"+"_")]});break;case 2:trackMetrics("promoClosedImpression",{messages:[msg1.replace(pattern,"_l"+"7"+"_"),msg2.replace(pattern,"_l"+"89"+"_")]});break;}}catch(err){}} +function newJSElement(tagName,attributes){var element=document.createElement(tagName);if(attributes){var attr="";for(var k in attributes){if(attributes.hasOwnProperty(k)) +if(k=="html") +element.innerHTML=attributes[k];else if(k=="class") +element.className=attributes[k];else +element.setAttribute(k,attributes[k]);}} +return element;} +function createSOBMaps(){if($$('.segment_one_banner').length>0&&$$('.shop_url').length>0){$$('.segment_one_banner').each(function(banner,index){if(banner.getElements('.shop_url').length>0){banner.getElements('.image img').set('usemap','#map_id'+index);var map=newJSElement('map',{'id':'map_id'+index,'name':'map_id'+index});banner.getElements('.image')[0].adopt(map);var area1=new Element('area');var area2=new Element('area');if(!rtl){area1.setProperties({'shape':'rect','coords':'0,0,275,394','alt':banner.getElements('.shop_url')[0].getProperty('title'),'href':banner.getElements('.shop_url')[0].getProperty('href'),'name':banner.getElements('.shop_url')[0].getProperty('name')});area2.setProperties({'shape':'rect','coords':'276,0,964,394','alt':banner.getElements('.image_url')[0].getProperty('title'),'href':banner.getElements('.image_url')[0].getProperty('href'),'name':banner.getElements('.image_url')[0].getProperty('name')});} +else{area1.setProperties({'shape':'rect','coords':'689,0,964,394','alt':banner.getElements('.shop_url')[0].getProperty('title'),'href':banner.getElements('.shop_url')[0].getProperty('href'),'name':banner.getElements('.shop_url')[0].getProperty('name')});area2.setProperties({'shape':'rect','coords':'0,0,688,394','alt':banner.getElements('.image_url')[0].getProperty('title'),'href':banner.getElements('.image_url')[0].getProperty('href'),'name':banner.getElements('.image_url')[0].getProperty('name')});} +$('map_id'+index).adopt(area1);$('map_id'+index).adopt(area2);}});} +else +return;} +window.addEvent('domready',function(){var segment=getSegmentCK();if((navigator.appVersion.indexOf("MSIE")>0)){(function(){var elements=$$('#'+segment+' .content');try{if($$('#'+segment+' .segment_one_banner').length>0){elements=$$('#'+segment+' .segment_one_banner');if(elements[0].getElements('.image_url').length>0){if(elements[0].getElements('.shop_url').length>0){trackMapLoadMetricsSOB(elements[0].getElement('.shop_url').getAttribute('name'),elements[0].getElement('.image_url').getAttribute('name'),rtl?2:0);} +else{trackLoadMetricsSOB(elements[0].getElement('.image_url').getAttribute('name'),rtl?2:0);}} +else{trackLoadMetricsSOB(elements[0].getElement('.over_content .cta .button a').getAttribute('name'),rtl?2:0);}} +else{trackLoadMetrics(elements[rtl?2:0].getElement('.over_content .cta .button a').getAttribute('name'),elements[1].getElement('.over_content .cta .button a').getAttribute('name'),elements[rtl?0:2].getElement('.over_content .cta .button a').getAttribute('name'),rtl?2:0);}} +catch(e){}}).delay(1);}});function getSegmentCK(){var mapping={"HHO":'hho_msg',"SMB":'smb_msg',"LEB":'leb_msg',"GA":'ga_msg',"GHE":'ghe_msg'};var hp_cust_seg_sel=Cookie.read("hp_cust_seg_sel");var myURI=new URI(window.location.href.toUpperCase());var uri_seg=(myURI.getData("SEG")!=null)?myURI.getData("SEG"):hp_cust_seg_sel;switch(uri_seg){case'HHO':case'SMB':case'LEB':case'GHE':case'GA':hp_cust_seg_sel=uri_seg;break;} +if($defined($('hope_msg'))){return'hope_msg';} +else{return mapping[(hp_cust_seg_sel||"HHO").toUpperCase()]||'hho_msg';}} +window.addEvent('load',function(){var segment=getSegmentCK();if($(segment).getElement('.first')!=null){var input=$(segment).getElement('.first').getElements('input');if(input.length==1&&input[0].value.toUpperCase()!="store".toUpperCase()&&$(segment).getElements('.segment_one_banner').length<=0){initMainNav($('js_main_nav'),true,5000);}else{initMainNav($('js_main_nav'),false,0);}} +else{initMainNav($('js_main_nav'),false,0);} +if(!(navigator.appVersion.indexOf("MSIE")>0)){var elements=$$('#'+segment+' .content');if($$('#'+segment+' .content')[0]!=null){trackLoadMetrics(elements[rtl?2:0].getElement('.over_content .cta .button a').getAttribute('name'),elements[1].getElement('.over_content .cta .button a').getAttribute('name'),elements[rtl?0:2].getElement('.over_content .cta .button a').getAttribute('name'),rtl?2:0);} +else if($$('#'+segment+' .segment_one_banner').length>0){elements=$$('#'+segment+' .segment_one_banner');if(elements[0].getElements('.image_url').length>0){if(elements[0].getElements('.shop_url').length>0){trackMapLoadMetricsSOB(elements[0].getElement('.shop_url').getAttribute('name'),elements[0].getElement('.image_url').getAttribute('name'),rtl?2:0);} +else{trackLoadMetricsSOB(elements[0].getElement('.image_url').getAttribute('name'),rtl?2:0);}} +else{trackLoadMetricsSOB(elements[0].getElement('.over_content .cta .button a').getAttribute('name'),rtl?2:0);}}}});function filter(array,func){var filtered=[],rest=[];for(var i=array.length-1;i>=0;i--){if(func(array[i],i,array)){filtered.push(array[i])}else{rest.push(array[i])}} +return{filtered:filtered,rest:rest};} +var BannerTabIndexHelper={controlLinksClass:"js_banner_tabindex",initialize:function(options){this.setOptions(options);},cleanUpTabIndexes:function(links){this.filterControlLinks(links).rest.each(this.hideTabIndexes);},hideTabIndexes:function(a){a.set("tabindex",-1);},condition:function(el){return $(el).hasClass(this.controlLinksClass)},filterControlLinks:function(links){return filter(links,this.condition.bind(this))}};var ImageMenu=new Class({openedItem:null,initialized:false,defaultOptions:{OnOpen:$lambda(false),OnClose:$lambda(false),openWidth:600,width:(isIE7||isIE6)?964:948,transition:Fx.Transitions.Quad.easeOut,duration:400,open:null,closeOnMouseOut:true,useDarking:false,filterOpacity:0.2,shadowWidth:0},initialize:function(targetEls,options){if(!targetEls){return;} +if(isIE9){try{targetEls.getLast().getElement('.image img').setStyles({position:'relative',top:'1px'});} +catch(e){}} +this.setOptions(this.defaultOptions,options);this.elements=targetEls;this.itemCount=this.elements.length;this.widths=this.calculateWidths();this.fx=this.createFxElement();var z_order=1000;this.elements.each(function(el,i){el.width=this.widths.closed;el.setStyle('z-index',z_order--);if(i!=0){el.setStyle('margin-left',-this.options.shadowWidth);} +el.addEvents({mouseover:function(e){this.itemMouseOver(el,i,e)}.bind(this),mouseleave:function(e){this.itemMouseLeave(el,i,e)}.bind(this)});this.updateMapArea(el);}.bind(this));this.open(this.options.open);this.initAccessibility();},createFxElement:function(){var fx=new Fx.Elements(this.elements,{wait:false,duration:this.options.duration,transition:this.options.transition});fx.addEvents({complete:function(){if($type(this.openedItem)=='number'){this.showOverContent(this.openedItem);}else{this.showDefaultContent();}}.bind(this),start:function(){if(this.options.useDarking){this.elements.each(this.itemCreateDarkingElement.bind(this));} +this.hideContent();}.bind(this)});return fx;},calculateWidths:function(){var widthType=$type(this.options.openWidth);if(widthType=='string'){var width=parseInt(this.options.openWidth,10);if(isNaN(width)){this.options.openWidth=this.defaultOptions.openWidth;}else{this.options.openWidth=(this.options.openWidth.indexOf('%')!=-1)?(this.options.width*width/100):width;}} +var halfShadow=Math.round(this.options.shadowWidth/2);var itemWidth=Math.round(this.options.width/this.itemCount);var lastOpenSelected=this.options.openWidth;return{closed:itemWidth+this.options.shadowWidth,firstLastClosed:itemWidth+halfShadow,openSelected:this.options.openWidth,lastOpenSelected:lastOpenSelected,openOthers:Math.floor((this.options.width-(lastOpenSelected))/(this.itemCount-1))+this.options.shadowWidth};},itemCreateDarkingElement:function(el,index){var opacity=this.options.filterOpacity;var isShow=this.openedItem==null||this.openedItem==index;if(isIE&&!isIE9){var element=el.getElement('polyline');if(element){element=element.getNext();} +if(!element){element=el.getElement('.image img');element.style.filter=isShow?'':'progid:DXImageTransform.Microsoft.Alpha(opacity='+opacity*100+')';}else{element.style.visibility=isShow?'hidden':'visible';}}else{element=el.getElement('g');if(element){element=element.getLast();} +if(!element){element=el.getElement('.image img').getParent();element.style.opacity=isShow?'':opacity;}else{element.style.visibility=isShow?'hidden':'visible';}}},itemMouseOver:function(item,index,e){if(this.timerId){window.clearTimeout(this.timerId);} +this.timerId=undefined;new Event(e).stop();if(this.openedItem!=index){this.reset(index);if(this.options.OnOpen){this.options.OnOpen(item,index);}}},itemMouseLeave:function(item,index,e){new Event(e).stop();if(this.options.closeOnMouseOut){this.timerId=window.setTimeout(function(){this.reset();this.showDefaultContent();if(this.options.OnClose){this.options.OnClose(item,index);}}.bind(this),100);}},open:function(open){if(open!=null){if($type(open)=='number'){this.reset(open);}else{this.elements.each(function(el,i){if(el.id==open){this.reset(i);}},this);}}else{this.reset();}},initAccessibility:function(){var imageMenu=this;this.elements.each(function(item,index){var controlLink=item.getElement(".js_banner_tabindex");controlLink.addEvent("focus",function(event){imageMenu.itemFocus(item,index,this.get("tabindex")+1);event.stop();return false;});controlLink.addEvent("customblur",function(event){imageMenu.reset();return false;});if(index==0){controlLink.addEvent('keypress',function(event){if(event.key=='tab'&&event.shift){imageMenu.reset();}});}});},itemFocus:function(item,index,subLinksTabIndex){this.reset(index);this.elements.each(function(item){BannerTabIndexHelper.cleanUpTabIndexes(item.getElementsByTagName("a"))});var links=BannerTabIndexHelper.filterControlLinks(item.getElementsByTagName("a")).rest;links.each(function(link){link.set("tabindex",subLinksTabIndex);if(isIE){link.innerHTML+="";}});},updateMapArea:function(el){var map=el.getElement('area');if(map){map.addEvents({mouseover:function(e){var nextEl=map.getParent(".content").getNext();nextEl.fireEvent("mouseover",e);},click:function(e){new Event(e).stop();var nextEl=map.getParent(".content").getNext();nextEl.fireEvent("click",e);}});} +return this;},hideContent:function(){this.hideOverContent();this.hideDefaultContent();},showOverContent:function(num){if($type(num)=='number'){var el=this.elements[num];el.getElement('.over_content').removeClass('hidden');if(el.getElements('input')[0].value=='store'){if(el.getElements('.over_content .cta')[0]) +el.getElements('.over_content .cta')[0].setStyle('display','inline-block');if(el.getElements('.over_content .links_2')[0]) +el.getElements('.over_content .links_2')[0].show();}}},hideOverContent:function(){this.elements.getElements('.over_content').each(function(el,index){if(el.getParent().getElements('input')[0].getProperty('value')=='store'){if(el.getElements('.cta')[0]) +el.getElements('.cta')[0].setStyle('display','none');if(el.getElements('.links_2')[0]) +el.getElements('.links_2')[0].hide();} +el.addClass('hidden');});},hideDefaultContent:function(){this.elements.getElements('.default_content').each(function(el,index){el.addClass('hidden');});this.elements.getElements('.over_content').each(function(el,index){if(el.getParent().getElements('input')[0].getProperty('value')=='store'){el.addClass('hidden');}});},showDefaultContent:function(){this.elements.getElements('.default_content').each(function(el,index){el.removeClass('hidden');});this.elements.getElements('.over_content').each(function(el,index){if(el.getParent().getElements('input')[0].getProperty('value')=='store'){el.removeClass('hidden');el.getParent().getElements('.default_content')[0].addClass('hidden');}});},reset:function(num){this.fx.cancel();var width;var isNumber=$type(num)=='number';if(isNumber){this.openedItem=num;width=this.widths.openOthers;}else{width=this.widths.closed;this.openedItem=null;} +var obj={};this.elements.each(function(el,i){var w=width;if(isNumber){}else{if(i==0||i==this.itemCount-1){w=this.widths.firstLastClosed;}} +obj[i]={'width':w};}.bind(this));if(isNumber){if(num==this.itemCount-1){obj[num]={'width':this.widths.lastOpenSelected};}else{obj[num]={'width':this.widths.openSelected};}} +if(isNumber||(!isNumber&&this.options.closeOnMouseOut)||!this.initialized){this.fx.start(obj);this.initialized=true;}}});ImageMenu.implement(new Options);ImageMenu.implement(new Events);Fx.Carousel=new Class({Extends:Fx,options:{mode:'horizontal',childSelector:'',loopOnScrollEnd:true,showAtStart:0},initialize:function(el,options){this.element=document.id(el);this.parent(options);var parentPos=this.element.getStyle('position');if(parentPos!='absolute'||parentPos!='relative'){el.setStyle('position','relative');} +if(this.options.childSelector){this.elements=el.getElements(this.options.childSelector);}else{this.elements=el.getChildren();} +this.isHorizontal=this.options.mode=='horizontal';this.currentIndex=this.options.showAtStart;var offset=0;if(this.currentIndex<0){this.currentIndex=this.elements.length+this.currentIndex;} +if(this.currentIndex>0){for(var i=0;i0){trackLoadMetrics(groups[this.currentIndex].getElements('.content')[0].getElement('.over_content .cta .button a').getAttribute('name'),groups[this.currentIndex].getElements('.content')[1].getElement('.over_content .cta .button a').getAttribute('name'),groups[this.currentIndex].getElements('.content')[2].getElement('.over_content .cta .button a').getAttribute('name'),this.currentIndex);} +else if(groups[this.currentIndex].getElements('.segment_one_banner').length>0){if(groups[this.currentIndex].getElements('.segment_one_banner')[0].getElements('.image_url').length>0){if(groups[this.currentIndex].getElements('.segment_one_banner')[0].getElements('.shop_url').length>0){trackMapLoadMetricsSOB(groups[this.currentIndex].getElements('.segment_one_banner')[0].getElement('.shop_url').getAttribute('name'),groups[this.currentIndex].getElements('.segment_one_banner')[0].getElement('.image_url').getAttribute('name'),this.currentIndex);} +else{trackLoadMetricsSOB(groups[this.currentIndex].getElements('.segment_one_banner')[0].getElement('.image_url').getAttribute('name'),this.currentIndex);}} +else{trackLoadMetricsSOB(groups[this.currentIndex].getElements('.segment_one_banner')[0].getElement('.over_content .cta .button a').getAttribute('name'),this.currentIndex);}} +return this;},toPrevious:function(){if(this.timer)return this;this.start.call(this,this.getPreviousIndex());this.fireEvent('previous');var groups=$$('.group');if(groups[this.currentIndex].getElements('.content').length>0){trackLoadMetrics(groups[this.currentIndex].getElements('.content')[0].getElement('.over_content .cta .button a').getAttribute('name'),groups[this.currentIndex].getElements('.content')[1].getElement('.over_content .cta .button a').getAttribute('name'),groups[this.currentIndex].getElements('.content')[2].getElement('.over_content .cta .button a').getAttribute('name'),this.currentIndex);} +else if(groups[this.currentIndex].getElements('.segment_one_banner').length>0){if(groups[this.currentIndex].getElements('.segment_one_banner')[0].getElements('.image_url').length>0){if(groups[this.currentIndex].getElements('.segment_one_banner')[0].getElements('.shop_url').length>0){trackMapLoadMetricsSOB(groups[this.currentIndex].getElements('.segment_one_banner')[0].getElement('.shop_url').getAttribute('name'),groups[this.currentIndex].getElements('.segment_one_banner')[0].getElement('.image_url').getAttribute('name'),this.currentIndex);} +else{trackLoadMetricsSOB(groups[this.currentIndex].getElements('.segment_one_banner')[0].getElement('.image_url').getAttribute('name'),this.currentIndex);}} +else{trackLoadMetricsSOB(groups[this.currentIndex].getElements('.segment_one_banner')[0].getElement('.over_content .cta .button a').getAttribute('name'),this.currentIndex);}} +return this;},toIndex:function(index){if(this.timer)return this;if(index<0){index=0;}else if(index>=this.elements.length){index=this.elements.length-1;} +if(index==this.currentIndex)return this;this.start.call(this,index);this.fireEvent('index');var groups=$$('.group');if(groups[this.currentIndex].getElements('.content').length>0){trackLoadMetrics(groups[this.currentIndex].getElements('.content')[0].getElement('.over_content .cta .button a').getAttribute('name'),groups[this.currentIndex].getElements('.content')[1].getElement('.over_content .cta .button a').getAttribute('name'),groups[this.currentIndex].getElements('.content')[2].getElement('.over_content .cta .button a').getAttribute('name'),this.currentIndex);} +else if(groups[this.currentIndex].getElements('.segment_one_banner').length>0){if(groups[this.currentIndex].getElements('.segment_one_banner')[0].getElements('.image_url').length>0){if(groups[this.currentIndex].getElements('.segment_one_banner')[0].getElements('.shop_url').length>0){trackMapLoadMetricsSOB(groups[this.currentIndex].getElements('.segment_one_banner')[0].getElement('.shop_url').getAttribute('name'),groups[this.currentIndex].getElements('.segment_one_banner')[0].getElement('.image_url').getAttribute('name'),this.currentIndex);} +else{trackLoadMetricsSOB(groups[this.currentIndex].getElements('.segment_one_banner')[0].getElement('.image_url').getAttribute('name'),this.currentIndex);}} +else{trackLoadMetricsSOB(groups[this.currentIndex].getElements('.segment_one_banner')[0].getElement('.over_content .cta .button a').getAttribute('name'),this.currentIndex);}}},getNextIndex:function(){if(this.currentIndex0){return--this.currentIndex;}else if(this.options.loopOnScrollEnd){this.fireEvent('loop');this.fireEvent('previousLoop');return this.elements.length-1;}else{return this.currentIndex;}},getCurrentIndex:function(){return this.currentIndex;},getItemsCount:function(){return this.elements.length;}});HomeCarousel=new Class({Implements:Options,options:{loopOnScrollEnd:false,tabindex:101},initialize:function(targetEl,leftEl,rightEl,scrollerEl,options){if(!targetEl){return;} +this.setOptions(options);var carousel,scrollerEls;var updateScrollers=function(){scrollerEls.each(function(el,index){if(carousel.getCurrentIndex()==index){el.addClass('enabled');}else{el.removeClass('enabled');}});};var carouselOptions={mode:'horizontal',onStart:updateScrollers};carousel=new Fx.Carousel(targetEl,$extend(carouselOptions,this.options));scrollerEls=this.createScrollers(scrollerEl,leftEl,rightEl,carousel);updateScrollers();this.updateTabIndexes.call(carousel);carousel.addEvents({index:this.updateTabIndexes,next:this.updateTabIndexes,previous:this.updateTabIndexes})},createScrollers:function(scrollerEl,leftEl,rightEl,carousel){var scrollerEls=this.cloneScrollerElements(scrollerEl,carousel.getItemsCount());if(leftEl){this.addEventsToArrow(carousel,leftEl,carousel.toPrevious.bind(carousel),"left_arrow_hover");} +if(rightEl){this.addEventsToArrow(carousel,rightEl,carousel.toNext.bind(carousel),"right_arrow_hover");} +if(scrollerEls){scrollerEls.each(function(el,index){var toIndex=function(e){if(index!=carousel.getCurrentIndex()){if($$('.group')[carousel.getCurrentIndex()].getElements('.segment_one_banner').length<=0){$$('.group')[carousel.getCurrentIndex()].getElements((rtl?'.last':'.first')+' .js_banner_tabindex')[0].fireEvent('customblur');}} +carousel.toIndex(index);if(e.key=="enter"){if(rtl){if($defined($$('.group')[index].getElements('.last .js_banner_tabindex')[0])){$$('.group')[index].getElements('.last .js_banner_tabindex')[0].focus();} +else{$$('.group')[index].getElements('.segment_one_banner .js_banner_sobanner_tabindex')[0].focus();}}else{if($defined($$('.group')[index].getElements('.first .js_banner_tabindex')[0])){$$('.group')[index].getElements('.first .js_banner_tabindex')[0].focus();} +else{$$('.group')[index].getElements('.segment_one_banner .js_banner_sobanner_tabindex')[0].focus();}}}};el.addEvent("click",toIndex);el.getElement("a").addEvents({focus:function(){this.getParent(".carousel_group").addClass("carousel_group_hover");},blur:function(){this.getParent(".carousel_group").removeClass("carousel_group_hover");},keypress:function(e){if(e.key=="enter"){toIndex(e);}}});});} +var tabIndex=this.options.tabindex+10;var links=$$("#controls #carousel a");if(rtl){links.reverse();} +for(var i=0;i0){images=this.elements[index].getElements(".segment_one_banner");} +else{BannerTabIndexHelper.cleanUpTabIndexes(banner.getElementsByTagName("a"));} +if(rtl){images=images.reverse();} +var length=images.length-1;if(length>0){for(var i=0;i<=length;i++){var image=images[i];var a=image.getElements(".js_banner_tabindex")[0];a.set("tabindex",this.options.tabindex+2*i);}} +else{var links=images.getElements("a");var l_tabi=this.options.tabindex;links.each(function(link){link.set("tabindex",l_tabi+1);});var a=images.getElements(".js_banner_sobanner_tabindex")[0];a.set("tabindex",this.options.tabindex);}}else{banner.getElements("a").each(BannerTabIndexHelper.hideTabIndexes);}}.bind(this));},addEventsToArrow:function(carousel,arrow,pressEnterHandler,focusClass){arrow.addEvent("click",pressEnterHandler);arrow.getElement("a").addEvents({focus:function(){this.getParent("div").addClass(focusClass);},blur:function(){this.getParent("div").removeClass(focusClass);},keypress:function(e){if(e.key=="enter"){pressEnterHandler();}}});},cloneScrollerElements:function(el,count){if(!el)return[];var elements=[];for(var i=0;i");el.set('html',title);});} + + + + +
        +
        + +
        +
        + +]]>
        GET/indexoldHTTP/1.1Cookie: CustomCookie=WebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0;JSESSIONID=756DA386 +
        Refererhttp://zero.webappsecurity.com/index.html
        Accept*/*
        Accept-Encodinggzip, deflate
        Pragmano-cache
        User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
        Hostzero.webappsecurity.com
        ConnectionKeep-Alive
        X-WIPPAscVersion=22.2.0.253
        X-Scan-MemoCategory="Audit.Attack";SID="2F29D5026D30A2B2C27ABC7CA79AA86D";PSID="8E73B3A63EFE2AADE20745A947151EB3";SessionType="AuditAttack";CrawlType="None";AttackType="Search";OriginatingEngineID="9d2b8591-9dbe-4085-bc79-15aeab89cc57";AttackSequence="0";AttackParamDesc="";AttackParamIndex="0";AttackParamSubIndex="0";CheckId="2083";Engine="File+Extension+Replacement";SmartMode="2";tht="40";
        X-RequestManager-Memostid="15";stmi="0";sc="1";rid="077a9caf";
        X-Request-Memorid="e9a70ad3";sc="1";thid="27";
        CustomCookieWebInspect181338ZXB984D0462EB343AE8598A4FFB116FA93YFFF0JSESSIONID756DA386
        HTTP/1.1200OK + + + + Free Bank Online + + + + + + + + + + + + + + + + +
        +
        + +
        +
        + +]]>
        DateFri, 24 Feb 2023 14:10:03 GMT
        ServerApache-Coyote/1.1
        Access-Control-Allow-Origin*
        Accept-Rangesbytes
        ETagW/"3691-1368929102000"
        Last-ModifiedSun, 19 May 2013 02:05:02 GMT
        Content-Typeapplication/octet-stream;charset=UTF-8
        Content-Length3691
        Keep-Alivetimeout=5, max=95
        ConnectionKeep-Alive
        \ No newline at end of file diff --git a/unittests/tools/test_microfocus_webinspect_parser.py b/unittests/tools/test_microfocus_webinspect_parser.py index 1f724f3f97b..40609f86783 100644 --- a/unittests/tools/test_microfocus_webinspect_parser.py +++ b/unittests/tools/test_microfocus_webinspect_parser.py @@ -115,3 +115,14 @@ def test_parse_file_version_18_20(self): endpoint = item.unsaved_endpoints[0] self.assertEqual("www.microfocus.com", endpoint.host) self.assertEqual(443, endpoint.port) + + def test_parse_file_issue7690(self): + test = Test() + test.engagement = Engagement() + test.engagement.product = Product() + testfile = open( + get_unit_tests_path() + "/scans/microfocus_webinspect/issue_7690.xml" + ) + parser = MicrofocusWebinspectParser() + findings = parser.get_findings(testfile, test) + self.assertEqual(30, len(findings)) From 65b1ae075ecd6c0119d152c3459e7be8b5792a3e Mon Sep 17 00:00:00 2001 From: manuelsommer <47991713+manuel-sommer@users.noreply.github.com> Date: Fri, 19 Jan 2024 03:13:53 +0100 Subject: [PATCH 10/22] :bug: fix #6932, advance qualys for monthly pci scan (#9328) --- dojo/tools/qualys/csv_parser.py | 86 +++++++++++-------- .../scans/qualys/monthly_pci_issue6932.csv | 2 + unittests/tools/test_qualys_parser.py | 8 ++ 3 files changed, 59 insertions(+), 37 deletions(-) create mode 100644 unittests/scans/qualys/monthly_pci_issue6932.csv diff --git a/dojo/tools/qualys/csv_parser.py b/dojo/tools/qualys/csv_parser.py index 9c28f423f7b..3ea9bcbabc6 100644 --- a/dojo/tools/qualys/csv_parser.py +++ b/dojo/tools/qualys/csv_parser.py @@ -46,7 +46,8 @@ def get_report_findings(csv_reader) -> [dict]: for row in csv_reader: if row.get("Title") and row["Title"] != "Title": report_findings.append(row) - + elif row.get("VULN TITLE"): + report_findings.append(row) return report_findings @@ -108,7 +109,6 @@ def build_findings_from_dict(report_findings: [dict]) -> [Finding]: "5": "Critical", } dojo_findings = [] - for report_finding in report_findings: if report_finding.get("FQDN"): endpoint = Endpoint.from_uri(report_finding.get("FQDN")) @@ -129,44 +129,56 @@ def build_findings_from_dict(report_findings: [dict]) -> [Finding]: if finding_with_id: finding = finding_with_id else: - finding = Finding( - title=f"QID-{report_finding['QID']} | {report_finding['Title']}", - mitigation=report_finding["Solution"], - description=f"{report_finding['Threat']}\nResult Evidence: \n{report_finding.get('Threat', 'Not available')}", - severity=severity_lookup.get(report_finding["Severity"], "Info"), - impact=report_finding["Impact"], - date=parser.parse( - report_finding["Last Detected"].replace("Z", "") - ), - vuln_id_from_tool=report_finding["QID"], - cvssv3=cvssv3 - ) - - cve_data = report_finding.get("CVE ID") - finding.unsaved_vulnerability_ids = ( - cve_data.split(",") if "," in cve_data else [cve_data] - ) + if report_finding.get("Title"): + finding = Finding( + title=f"QID-{report_finding['QID']} | {report_finding['Title']}", + mitigation=report_finding["Solution"], + description=f"{report_finding['Threat']}\nResult Evidence: \n{report_finding.get('Threat', 'Not available')}", + severity=severity_lookup.get(report_finding["Severity"], "Info"), + impact=report_finding["Impact"], + date=parser.parse( + report_finding["Last Detected"].replace("Z", "") + ), + vuln_id_from_tool=report_finding["QID"], + cvssv3=cvssv3 + ) + cve_data = report_finding.get("CVE ID") + # Qualys reports regression findings as active, but with a Date Last + # Fixed. + if report_finding["Date Last Fixed"]: + finding.mitigated = datetime.strptime( + report_finding["Date Last Fixed"], "%m/%d/%Y %H:%M:%S" + ) + finding.is_mitigated = True + else: + finding.is_mitigated = False + + finding.active = report_finding["Vuln Status"] in ( + "Active", + "Re-Opened", + "New", + ) - # Qualys reports regression findings as active, but with a Date Last - # Fixed. - if report_finding["Date Last Fixed"]: - finding.mitigated = datetime.strptime( - report_finding["Date Last Fixed"], "%m/%d/%Y %H:%M:%S" - ) - finding.is_mitigated = True - else: - finding.is_mitigated = False + if finding.active: + finding.mitigated = None + finding.is_mitigated = False + elif report_finding.get("VULN TITLE"): + finding = Finding( + title=f"QID-{report_finding['QID']} | {report_finding['VULN TITLE']}", + mitigation=report_finding["SOLUTION"], + description=f"{report_finding['THREAT']}\nResult Evidence: \n{report_finding.get('THREAT', 'Not available')}", + severity=report_finding["SEVERITY"], + impact=report_finding["IMPACT"], + date=parser.parse( + report_finding["LAST SCAN"].replace("Z", "") + ), + vuln_id_from_tool=report_finding["QID"] + ) + cve_data = report_finding.get("CVEID") - finding.active = report_finding["Vuln Status"] in ( - "Active", - "Re-Opened", - "New", + finding.unsaved_vulnerability_ids = ( + cve_data.split(",") if "," in cve_data else [cve_data] ) - - if finding.active: - finding.mitigated = None - finding.is_mitigated = False - finding.verified = True finding.unsaved_endpoints.append(endpoint) if not finding_with_id: diff --git a/unittests/scans/qualys/monthly_pci_issue6932.csv b/unittests/scans/qualys/monthly_pci_issue6932.csv new file mode 100644 index 00000000000..705abdd5112 --- /dev/null +++ b/unittests/scans/qualys/monthly_pci_issue6932.csv @@ -0,0 +1,2 @@ +IP,HOSTNAME,LAST SCAN,QID,VULN TITLE,TYPE,SEVERITY,PORT,PROTOCOL,OPERATING SYSTEM,IS_PCI,FALSE POSITIVE STATUS,CVSS_BASE,Q_SEVERITY,THREAT,IMPACT,SOLUTION,CVSS_TEMPORAL,CATEGORY,RESULT,BUGTRAQID,CVEID +192.168.0.1,abv.xyw.com.fj,22/09/2022 13:01,86476,Web Server Stopped Responding,POTENTIAL,Medium,80,tcp,Linux 2.x,Fail,Requested,6.4,3,The Web server stopped responding to 3 consecutive connection attempts and/or more than 3 consecutive HTTP / HTTPS requests. Consequently the service aborted testing for HTTP / HTTPS vulnerabilities. The vulnerabilities already detected are still posted. For more details about this QID please review the following Qualys KB article:

        ,The service was unable to complete testing for HTTP / HTTPS vulnerabilities since the Web server stopped responding.,Check the Web server status.

        If the Web server was crashed during the scan please restart the server report the incident to Customer Support and stop scanning the Web server until the issue is resolved.

        If the Web server is unable to process multiple concurrent HTTP / HTTPS requests please lower the scan harshness level and launch another scan. If this vulnerability continues to be reported please contact Customer Support.,6.1,Web server,The web server did not respond for 4 consecutive HTTP requests. After these the service was still unable to connect to the web server 2 minutes later.,-, \ No newline at end of file diff --git a/unittests/tools/test_qualys_parser.py b/unittests/tools/test_qualys_parser.py index 498c66c235a..0e758a4f4f0 100644 --- a/unittests/tools/test_qualys_parser.py +++ b/unittests/tools/test_qualys_parser.py @@ -130,3 +130,11 @@ def test_parse_file_with_multiple_vuln_has_multiple_findings_csv(self): self.assertEqual( finding.severity, "Critical" ) + + def test_parse_file_monthly_pci_issue6932(self): + testfile = open( + get_unit_tests_path() + "/scans/qualys/monthly_pci_issue6932.csv" + ) + parser = QualysParser() + findings = parser.get_findings(testfile, Test()) + self.assertEqual(1, len(findings)) From 67f0e965272e2d58d55ca6e0789e0bf915347522 Mon Sep 17 00:00:00 2001 From: manuelsommer <47991713+manuel-sommer@users.noreply.github.com> Date: Fri, 19 Jan 2024 03:14:15 +0100 Subject: [PATCH 11/22] :sparkles: Implement Chef InSpec Parser (#9329) * :sparkles: implement chefinspect, #6990 * force add unittestfiles against gitignore * :bug: fix according to comment * :bug: fix --- .../integrations/parsers/file/chefinspect.md | 11 ++++ dojo/tools/chefinspect/__init__.py | 1 + dojo/tools/chefinspect/parser.py | 58 +++++++++++++++++++ unittests/scans/chefinspect/many_findings.log | 10 ++++ unittests/scans/chefinspect/no_finding.log | 0 unittests/scans/chefinspect/one_finding.log | 1 + unittests/tools/test_chefinspect_parser.py | 24 ++++++++ 7 files changed, 105 insertions(+) create mode 100644 docs/content/en/integrations/parsers/file/chefinspect.md create mode 100644 dojo/tools/chefinspect/__init__.py create mode 100644 dojo/tools/chefinspect/parser.py create mode 100644 unittests/scans/chefinspect/many_findings.log create mode 100644 unittests/scans/chefinspect/no_finding.log create mode 100644 unittests/scans/chefinspect/one_finding.log create mode 100644 unittests/tools/test_chefinspect_parser.py diff --git a/docs/content/en/integrations/parsers/file/chefinspect.md b/docs/content/en/integrations/parsers/file/chefinspect.md new file mode 100644 index 00000000000..193dbb17817 --- /dev/null +++ b/docs/content/en/integrations/parsers/file/chefinspect.md @@ -0,0 +1,11 @@ +--- +title: "Chef Inspect Log" +toc_hide: true +--- +Chef Inspect outputs log from https://github.com/inspec/inspec + +### File Types +DefectDojo parser accepts Chef Inspect log scan data as a .log or .txt file. + +### Sample Scan Data +Sample Chef Inspect logs can be found at https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/chefinspect diff --git a/dojo/tools/chefinspect/__init__.py b/dojo/tools/chefinspect/__init__.py new file mode 100644 index 00000000000..99e8e118c6a --- /dev/null +++ b/dojo/tools/chefinspect/__init__.py @@ -0,0 +1 @@ +__author__ = "manuel_sommer" diff --git a/dojo/tools/chefinspect/parser.py b/dojo/tools/chefinspect/parser.py new file mode 100644 index 00000000000..adf85eb5eaa --- /dev/null +++ b/dojo/tools/chefinspect/parser.py @@ -0,0 +1,58 @@ +import json +from dojo.models import Finding + + +class ChefInspectParser(object): + def get_scan_types(self): + return ["Chef Inspect Log"] + + def get_label_for_scan_types(self, scan_type): + return scan_type + + def get_description_for_scan_types(self, scan_type): + return """Chef Inspect log file""" + + def convert_score(self, raw_value): + val = float(raw_value) + if val == 0.0: + return "Info" + elif val < 0.4: + return "Low" + elif val < 0.7: + return "Medium" + elif val < 0.9: + return "High" + else: + return "Critical" + + def get_findings(self, file, test): + lines = file.read() + result = [] + if isinstance(lines, bytes): + lines = lines.decode("utf-8") + loglines = lines.split("\n") + for line in loglines: + if len(line) != 0: + json_object = json.loads(line) + description = str(json_object.get('description')) + "\n\n" + description += "batch_runtime: " + str(json_object.get('batch_runtime')) + "\n" + description += "application_group: " + str(json_object.get('application_group')) + "\n" + description += "zone: " + str(json_object.get('zone')) + "\n" + description += "office: " + str(json_object.get('office')) + "\n" + description += "dc: " + str(json_object.get('dc')) + "\n" + description += "environment: " + str(json_object.get('environment')) + "\n" + description += "id: " + str(json_object.get('id')) + "\n" + description += "control_tags: " + str(json_object.get('control_tags')) + "\n" + description += "platform: " + str(json_object.get('platform')) + "\n" + description += "profile: " + str(json_object.get('profile')) + "\n" + description += "group: " + str(json_object.get('group')) + "\n" + description += "results: " + str(json_object.get('results')) + "\n" + result.append( + Finding( + title=json_object.get("title"), + description=description, + severity=self.convert_score(json_object.get("impact")), + active=True, + ) + ) + return result diff --git a/unittests/scans/chefinspect/many_findings.log b/unittests/scans/chefinspect/many_findings.log new file mode 100644 index 00000000000..f1b61a489c2 --- /dev/null +++ b/unittests/scans/chefinspect/many_findings.log @@ -0,0 +1,10 @@ +{"status":"passed","batch_runtime":"2022-10-03","application_group":"logserver","zone":"domain","office":"officename","dc":null,"environment":"unknown","id":"cis-dil-benchmark-2.2.1.1","title":"Ensure time synchronization is in use","impact":0.0,"control_tags":{"ISO27001_2013":["A.12.4.4"],"cis":"distribution-independent-linux:2.2.1.1","level":1},"description":"System time should be synchronized between all systems in an environment. This is typically done by establishing an authoritative time server or set of servers and having all systems synchronize their clocks to them.\n\nRationale: Time synchronization is important to support time sensitive security mechanisms like Kerberos and also ensures log files have consistent time records across the enterprise, which aids in forensic investigations.","platform":{"name":"redhat","release":"8.5","target_id":"logsrv01.domain.dk"},"profile":{"name":"cis-dil-benchmark","title":"CIS Distribution Independent Linux Benchmark Profile","version":"0.3.0","supports":"[{\"platform-family\":\"linux\"}]"},"group":{"id":"controls/2_2_special_purpose_services.rb","title":"2.2 Special Purpose Services"},"results":[{"status":"passed","code_desc":"System Package chrony is expected to be installed","run_time":0.00044244,"start_time":"2022-10-03T11:02:14+00:00"},{"status":"passed","code_desc":"Command: `chronyd` is expected to exist","run_time":0.00015116,"start_time":"2022-10-03T11:02:14+00:00"}],"control_runtime":0.0005936} +{"status":"skipped","batch_runtime":"2022-10-03","application_group":"logserver","zone":"domain","office":"officename","dc":null,"environment":"unknown","id":"cis-dil-benchmark-2.2.1.2","title":"Ensure ntp is configured","impact":1.0,"control_tags":{"ISO27001_2013":["A.12.4.4"],"cis":"distribution-independent-linux:2.2.1.2","level":1},"description":"ntp is a daemon which implements the Network Time Protocol (NTP). It is designed to synchronize system clocks across a variety of systems and use a source that is highly accurate. More information on NTP can be found at http://www.ntp.org. ntp can be configured to be a client and/or a server.\nThis recommendation only applies if ntp is in use on the system.\n\nRationale: If ntp is in use on the system proper configuration is vital to ensuring time synchronization is working properly.","platform":{"name":"redhat","release":"8.5","target_id":"logsrv01.domain.dk"},"profile":{"name":"cis-dil-benchmark","title":"CIS Distribution Independent Linux Benchmark Profile","version":"0.3.0","supports":"[{\"platform-family\":\"linux\"}]"},"group":{"id":"controls/2_2_special_purpose_services.rb","title":"2.2 Special Purpose Services"},"results":[{"status":"skipped","code_desc":"No-op","run_time":7.893e-06,"start_time":"2022-10-03T11:02:14+00:00","resource":"No-op","skip_message":"Skipped control due to only_if condition."}],"control_runtime":7.893e-06} +{"status":"passed","batch_runtime":"2022-10-03","application_group":"logserver","zone":"domain","office":"officename","dc":null,"environment":"unknown","id":"cis-dil-benchmark-2.2.1.3","title":"Ensure chrony is configured","impact":1.0,"control_tags":{"ISO27001_2013":["A.12.4.4"],"cis":"distribution-independent-linux:2.2.1.3","level":1},"description":"chrony is a daemon which implements the Network Time Protocol (NTP) is designed to synchronize system clocks across a variety of systems and use a source that is highly accurate. More information on chrony can be found at http://chrony.tuxfamily.org/. chrony can be configured to be a client and/or a server.\n\nRationale: If chrony is in use on the system proper configuration is vital to ensuring time synchronization is working properly.\nThis recommendation only applies if chrony is in use on the system.","platform":{"name":"redhat","release":"8.5","target_id":"logsrv01.domain.dk"},"profile":{"name":"cis-dil-benchmark","title":"CIS Distribution Independent Linux Benchmark Profile","version":"0.3.0","supports":"[{\"platform-family\":\"linux\"}]"},"group":{"id":"controls/2_2_special_purpose_services.rb","title":"2.2 Special Purpose Services"},"results":[{"status":"passed","code_desc":"File /etc/chrony.conf content is expected to match /^server\\s+\\S+/","run_time":0.000128649,"start_time":"2022-10-03T11:02:14+00:00"},{"status":"passed","code_desc":"Processes chronyd users is expected to cmp == \"chrony\"","run_time":0.000184573,"start_time":"2022-10-03T11:02:14+00:00"}],"control_runtime":0.000313222} +{"status":"passed","batch_runtime":"2022-10-03","application_group":"logserver","zone":"domain","office":"officename","dc":null,"environment":"unknown","id":"cis-dil-benchmark-2.2.2","title":"Ensure X Window System is not installed","impact":1.0,"control_tags":{"ISO27001_2013":["A.12.5.1"],"cis":"distribution-independent-linux:2.2.2","level":1},"description":"The X Window System provides a Graphical User Interface (GUI) where users can have multiple windows in which to run programs and various add on. The X Windows system is typically used on workstations where users login, but not on servers where users typically do not login.\n\nRationale: Unless your organization specifically requires graphical login access via X Windows, remove it to reduce the potential attack surface.","platform":{"name":"redhat","release":"8.5","target_id":"logsrv01.domain.dk"},"profile":{"name":"cis-dil-benchmark","title":"CIS Distribution Independent Linux Benchmark Profile","version":"0.3.0","supports":"[{\"platform-family\":\"linux\"}]"},"group":{"id":"controls/2_2_special_purpose_services.rb","title":"2.2 Special Purpose Services"},"results":[{"status":"passed","code_desc":"Packages /^xserver-xorg.*/ names is expected to be empty","run_time":0.014531242,"start_time":"2022-10-03T11:02:14+00:00"},{"status":"passed","code_desc":"Packages /^xorg-x11-server.*/ names is expected to be empty","run_time":0.00461028,"start_time":"2022-10-03T11:02:14+00:00"}],"control_runtime":0.019141522} +{"status":"passed","batch_runtime":"2022-10-03","application_group":"logserver","zone":"domain","office":"officename","dc":null,"environment":"unknown","id":"cis-dil-benchmark-2.2.3","title":"Ensure Avahi Server is not enabled","impact":1.0,"control_tags":{"ISO27001_2013":["A.13.1.3"],"cis":"distribution-independent-linux:2.2.3","level":1},"description":"Avahi is a free zeroconf implementation, including a system for multicast DNS/DNS-SD service discovery. Avahi allows programs to publish and discover services and hosts running on a local network with no specific configuration. For example, a user can plug a computer into a network and Avahi automatically finds printers to print to, files to look at and people to talk to, as well as network services running on the machine.\n\nRationale: Automatic discovery of network services is not normally required for system functionality. It is recommended to disable the service to reduce the potential attach surface.","platform":{"name":"redhat","release":"8.5","target_id":"logsrv01.domain.dk"},"profile":{"name":"cis-dil-benchmark","title":"CIS Distribution Independent Linux Benchmark Profile","version":"0.3.0","supports":"[{\"platform-family\":\"linux\"}]"},"group":{"id":"controls/2_2_special_purpose_services.rb","title":"2.2 Special Purpose Services"},"results":[{"status":"passed","code_desc":"Service avahi-daemon is expected not to be enabled","run_time":0.599389271,"start_time":"2022-10-03T11:02:14+00:00"},{"status":"passed","code_desc":"Service avahi-daemon is expected not to be running","run_time":0.000153889,"start_time":"2022-10-03T11:02:15+00:00"}],"control_runtime":0.59954316} +{"status":"passed","batch_runtime":"2022-10-03","application_group":"logserver","zone":"domain","office":"officename","dc":null,"environment":"unknown","id":"cis-dil-benchmark-2.2.4","title":"Ensure CUPS is not enabled","impact":1.0,"control_tags":{"ISO27001_2013":["A.13.1.3"],"cis":"distribution-independent-linux:2.2.4","level":1},"description":"The Common Unix Print System (CUPS) provides the ability to print to both local and network printers. A system running CUPS can also accept print jobs from remote systems and print them to local printers. It also provides a web based remote administration capability.\n\nRationale: If the system does not need to print jobs or accept print jobs from other systems, it is recommended that CUPS be disabled to reduce the potential attack surface.","platform":{"name":"redhat","release":"8.5","target_id":"logsrv01.domain.dk"},"profile":{"name":"cis-dil-benchmark","title":"CIS Distribution Independent Linux Benchmark Profile","version":"0.3.0","supports":"[{\"platform-family\":\"linux\"}]"},"group":{"id":"controls/2_2_special_purpose_services.rb","title":"2.2 Special Purpose Services"},"results":[{"status":"passed","code_desc":"Service cups is expected not to be enabled","run_time":0.633429634,"start_time":"2022-10-03T11:02:15+00:00"},{"status":"passed","code_desc":"Service cups is expected not to be running","run_time":0.000191051,"start_time":"2022-10-03T11:02:15+00:00"}],"control_runtime":0.633620685} +{"status":"passed","batch_runtime":"2022-10-03","application_group":"logserver","zone":"domain","office":"officename","dc":null,"environment":"unknown","id":"cis-dil-benchmark-2.2.5","title":"Ensure DHCP Server is not enabled","impact":1.0,"control_tags":{"ISO27001_2013":["A.13.1.3"],"cis":"distribution-independent-linux:2.2.5","level":1},"description":"The Dynamic Host Configuration Protocol (DHCP) is a service that allows machines to be dynamically assigned IP addresses.\n\nRationale: Unless a system is specifically set up to act as a DHCP server, it is recommended that this service be deleted to reduce the potential attack surface.","platform":{"name":"redhat","release":"8.5","target_id":"logsrv01.domain.dk"},"profile":{"name":"cis-dil-benchmark","title":"CIS Distribution Independent Linux Benchmark Profile","version":"0.3.0","supports":"[{\"platform-family\":\"linux\"}]"},"group":{"id":"controls/2_2_special_purpose_services.rb","title":"2.2 Special Purpose Services"},"results":[{"status":"passed","code_desc":"Service isc-dhcp-server is expected not to be enabled","run_time":0.639691591,"start_time":"2022-10-03T11:02:15+00:00"},{"status":"passed","code_desc":"Service isc-dhcp-server is expected not to be running","run_time":0.000160418,"start_time":"2022-10-03T11:02:16+00:00"},{"status":"passed","code_desc":"Service isc-dhcp-server6 is expected not to be enabled","run_time":0.644534045,"start_time":"2022-10-03T11:02:16+00:00"},{"status":"passed","code_desc":"Service isc-dhcp-server6 is expected not to be running","run_time":0.000268166,"start_time":"2022-10-03T11:02:17+00:00"},{"status":"passed","code_desc":"Service dhcpd is expected not to be enabled","run_time":0.643181648,"start_time":"2022-10-03T11:02:17+00:00"},{"status":"passed","code_desc":"Service dhcpd is expected not to be running","run_time":0.000231542,"start_time":"2022-10-03T11:02:17+00:00"}],"control_runtime":1.92806741} +{"status":"passed","batch_runtime":"2022-10-03","application_group":"logserver","zone":"domain","office":"officename","dc":null,"environment":"unknown","id":"cis-dil-benchmark-2.2.6","title":"Ensure LDAP server is not enabled","impact":1.0,"control_tags":{"ISO27001_2013":["A.13.1.3"],"cis":"distribution-independent-linux:2.2.6","level":1},"description":"The Lightweight Directory Access Protocol (LDAP) was introduced as a replacement for NIS/YP. It is a service that provides a method for looking up information from a central database.\n\nRationale: If the system will not need to act as an LDAP server, it is recommended that the software be disabled to reduce the potential attack surface.","platform":{"name":"redhat","release":"8.5","target_id":"logsrv01.domain.dk"},"profile":{"name":"cis-dil-benchmark","title":"CIS Distribution Independent Linux Benchmark Profile","version":"0.3.0","supports":"[{\"platform-family\":\"linux\"}]"},"group":{"id":"controls/2_2_special_purpose_services.rb","title":"2.2 Special Purpose Services"},"results":[{"status":"passed","code_desc":"Service slapd is expected not to be enabled","run_time":0.630785667,"start_time":"2022-10-03T11:02:17+00:00"},{"status":"passed","code_desc":"Service slapd is expected not to be running","run_time":0.000193827,"start_time":"2022-10-03T11:02:18+00:00"}],"control_runtime":0.6309794940000001} +{"status":"passed","batch_runtime":"2022-10-03","application_group":"logserver","zone":"domain","office":"officename","dc":null,"environment":"unknown","id":"cis-dil-benchmark-2.2.7","title":"Ensure NFS and RPC are not enabled","impact":1.0,"control_tags":{"ISO27001_2013":["A.13.1.3"],"cis":"distribution-independent-linux:2.2.7","level":1},"description":"The Network File System (NFS) is one of the first and most widely distributed file systems in the UNIX environment. It provides the ability for systems to mount file systems of other servers through the network.\n\nRationale: If the system does not export NFS shares or act as an NFS client, it is recommended that these services be disabled to reduce remote attack surface.","platform":{"name":"redhat","release":"8.5","target_id":"logsrv01.domain.dk"},"profile":{"name":"cis-dil-benchmark","title":"CIS Distribution Independent Linux Benchmark Profile","version":"0.3.0","supports":"[{\"platform-family\":\"linux\"}]"},"group":{"id":"controls/2_2_special_purpose_services.rb","title":"2.2 Special Purpose Services"},"results":[{"status":"passed","code_desc":"Service nfs-kernel-server is expected not to be enabled","run_time":0.632784742,"start_time":"2022-10-03T11:02:18+00:00"},{"status":"passed","code_desc":"Service nfs-kernel-server is expected not to be running","run_time":0.000166672,"start_time":"2022-10-03T11:02:19+00:00"},{"status":"passed","code_desc":"Service nfs is expected not to be enabled","run_time":0.640653182,"start_time":"2022-10-03T11:02:19+00:00"},{"status":"passed","code_desc":"Service nfs is expected not to be running","run_time":0.000215897,"start_time":"2022-10-03T11:02:19+00:00"},{"status":"passed","code_desc":"Service rpcbind is expected not to be enabled","run_time":0.643515006,"start_time":"2022-10-03T11:02:19+00:00"},{"status":"passed","code_desc":"Service rpcbind is expected not to be running","run_time":0.000154942,"start_time":"2022-10-03T11:02:20+00:00"}],"control_runtime":1.917490441} +{"status":"passed","batch_runtime":"2022-10-03","application_group":"logserver","zone":"domain","office":"officename","dc":null,"environment":"unknown","id":"cis-dil-benchmark-2.2.8","title":"Ensure DNS Server is not enabled","impact":1.0,"control_tags":{"ISO27001_2013":["A.13.1.3"],"cis":"distribution-independent-linux:2.2.8","level":1},"description":"The Domain Name System (DNS) is a hierarchical naming system that maps names to IP addresses for computers, services and other resources connected to a network.\n\nRationale: Unless a system is specifically designated to act as a DNS server, it is recommended that the package be deleted to reduce the potential attack surface.","platform":{"name":"redhat","release":"8.5","target_id":"logsrv01.domain.dk"},"profile":{"name":"cis-dil-benchmark","title":"CIS Distribution Independent Linux Benchmark Profile","version":"0.3.0","supports":"[{\"platform-family\":\"linux\"}]"},"group":{"id":"controls/2_2_special_purpose_services.rb","title":"2.2 Special Purpose Services"},"results":[{"status":"passed","code_desc":"Service named is expected not to be enabled","run_time":0.632303089,"start_time":"2022-10-03T11:02:20+00:00"},{"status":"passed","code_desc":"Service named is expected not to be running","run_time":0.000154262,"start_time":"2022-10-03T11:02:20+00:00"},{"status":"passed","code_desc":"Service bind is expected not to be enabled","run_time":0.654657749,"start_time":"2022-10-03T11:02:20+00:00"},{"status":"passed","code_desc":"Service bind is expected not to be running","run_time":0.000212705,"start_time":"2022-10-03T11:02:21+00:00"},{"status":"passed","code_desc":"Service bind9 is expected not to be enabled","run_time":0.642811638,"start_time":"2022-10-03T11:02:21+00:00"},{"status":"passed","code_desc":"Service bind9 is expected not to be running","run_time":0.000207277,"start_time":"2022-10-03T11:02:22+00:00"}],"control_runtime":1.9303467199999997} diff --git a/unittests/scans/chefinspect/no_finding.log b/unittests/scans/chefinspect/no_finding.log new file mode 100644 index 00000000000..e69de29bb2d diff --git a/unittests/scans/chefinspect/one_finding.log b/unittests/scans/chefinspect/one_finding.log new file mode 100644 index 00000000000..5a599ab5fac --- /dev/null +++ b/unittests/scans/chefinspect/one_finding.log @@ -0,0 +1 @@ +{"status":"passed","batch_runtime":"2022-10-03","application_group":"logserver","zone":"domain","office":"officename","dc":null,"environment":"unknown","id":"cis-dil-benchmark-2.2.1.1","title":"Ensure time synchronization is in use","impact":0.0,"control_tags":{"ISO27001_2013":["A.12.4.4"],"cis":"distribution-independent-linux:2.2.1.1","level":1},"description":"System time should be synchronized between all systems in an environment. This is typically done by establishing an authoritative time server or set of servers and having all systems synchronize their clocks to them.\n\nRationale: Time synchronization is important to support time sensitive security mechanisms like Kerberos and also ensures log files have consistent time records across the enterprise, which aids in forensic investigations.","platform":{"name":"redhat","release":"8.5","target_id":"logsrv01.domain.dk"},"profile":{"name":"cis-dil-benchmark","title":"CIS Distribution Independent Linux Benchmark Profile","version":"0.3.0","supports":"[{\"platform-family\":\"linux\"}]"},"group":{"id":"controls/2_2_special_purpose_services.rb","title":"2.2 Special Purpose Services"},"results":[{"status":"passed","code_desc":"System Package chrony is expected to be installed","run_time":0.00044244,"start_time":"2022-10-03T11:02:14+00:00"},{"status":"passed","code_desc":"Command: `chronyd` is expected to exist","run_time":0.00015116,"start_time":"2022-10-03T11:02:14+00:00"}],"control_runtime":0.0005936} diff --git a/unittests/tools/test_chefinspect_parser.py b/unittests/tools/test_chefinspect_parser.py new file mode 100644 index 00000000000..14a1bbb902e --- /dev/null +++ b/unittests/tools/test_chefinspect_parser.py @@ -0,0 +1,24 @@ +from ..dojo_test_case import DojoTestCase +from dojo.tools.chefinspect.parser import ChefInspectParser +from dojo.models import Test + + +class TestChefInspectParser(DojoTestCase): + + def test_parse_file_with_no_vuln_has_no_findings(self): + testfile = open("unittests/scans/chefinspect/no_finding.log") + parser = ChefInspectParser() + findings = parser.get_findings(testfile, Test()) + self.assertEqual(0, len(findings)) + + def test_parse_file_with_one_vuln_has_one_finding(self): + testfile = open("unittests/scans/chefinspect/one_finding.log") + parser = ChefInspectParser() + findings = parser.get_findings(testfile, Test()) + self.assertEqual(1, len(findings)) + + def test_parse_file_with_multiple_vuln_has_multiple_findings(self): + testfile = open("unittests/scans/chefinspect/many_findings.log") + parser = ChefInspectParser() + findings = parser.get_findings(testfile, Test()) + self.assertTrue(10, len(findings)) From 11552ef566073e698a18aa9799cef26cf1b18724 Mon Sep 17 00:00:00 2001 From: manuelsommer <47991713+manuel-sommer@users.noreply.github.com> Date: Fri, 19 Jan 2024 03:14:32 +0100 Subject: [PATCH 12/22] Trivy Parser: Expand Unit Tests (#9334) * raise testcoverage to proof issue #9333 is working * add unittestfile --- unittests/scans/trivy/issue_9333.json | 875 ++++++++++++++++++++++++++ unittests/tools/test_trivy_parser.py | 8 + 2 files changed, 883 insertions(+) create mode 100644 unittests/scans/trivy/issue_9333.json diff --git a/unittests/scans/trivy/issue_9333.json b/unittests/scans/trivy/issue_9333.json new file mode 100644 index 00000000000..f361b6275fc --- /dev/null +++ b/unittests/scans/trivy/issue_9333.json @@ -0,0 +1,875 @@ +{ + "SchemaVersion": 2, + "CreatedAt": "2024-01-15T08:58:29.82753744Z", + "ArtifactName": "", + "ArtifactType": "container_image", + "Metadata": { + "OS": { + "Family": "debian", + "Name": "10.13" + }, + "ImageID": "sha256:22ae3921bdaac434bb4cb92dbbc209e46b1f3f70e9fa0b5fbbb43ce7d452c72d", + "DiffIDs": [ + "sha256:b2dba74777543b60e1a5be6da44e67659f51b8df1e96922205a5dde6b92dda3c", + "sha256:f1186e5061f20658954f6bfdfaead0abc5ed2371d70f707da05206e868a226ab", + "sha256:fe0fb3ab4a0f7be72784fcab5ef9c8fda65ea9b1067e8f7cdf293c12bcd25c13", + "sha256:c45660adde371317a1eafb102ee1d33b059328ec73a01b5c2461c4d04a40ecec", + "sha256:e01a454893a9a11115c598e5dec158ded8bd41326046c993c81b76b6a963590b", + "sha256:cb81227abde588a006a8b7ceac6034a303813efadc2c711fabf7b224649d183f", + "sha256:f8a91dd5fc84e4e5a1f261cf306ba1de28894524326d86eec0d74e9c0d22baec", + "sha256:3c777d951de2c488f73618f92b2adee8bd5de6f77e36bab51d57583bc487b99b", + "sha256:0d5f5a015e5d65973cce1dbab5aa60ce0836dbf2b3c9eabcb6efc89db1db3221", + "sha256:baa0956fea600c916f370870566aca1edf9a5ffc7facf51cfb1286e774f6e0e2", + "sha256:2f08eba9a3eddbb1e9dc2b70a25a1a3860807dac0d42c1e40fd890bbafbfba29", + "sha256:bf7d7d997f27e713b44ac0e763a38c46f9698e71e2243b0ffa80405d62d8c5e0" + ], + "RepoTags": [ + "" + ], + "RepoDigests": [ + "" + ], + "ImageConfig": { + "architecture": "amd64", + "created": "2024-01-15T08:56:27.807609822Z", + "history": [ + { + "created": "2023-04-12T00:20:15Z", + "created_by": "/bin/sh -c #(nop) ADD file:40953ed6e6f96703b2e0c13288437c2aaf8b3df33dbc423686290cbe0e595a5e in / " + }, + { + "created": "2023-04-12T00:20:15Z", + "created_by": "/bin/sh -c #(nop) CMD [\"bash\"]", + "empty_layer": true + }, + { + "created": "2023-04-12T07:52:41Z", + "created_by": "/bin/sh -c set -eux; \tapt-get update; \tapt-get install -y --no-install-recommends \t\tca-certificates \t\tcurl \t\tnetbase \t\twget \t; \trm -rf /var/lib/apt/lists/*" + }, + { + "created": "2023-04-12T07:52:47Z", + "created_by": "/bin/sh -c set -ex; \tif ! command -v gpg \u003e /dev/null; then \t\tapt-get update; \t\tapt-get install -y --no-install-recommends \t\t\tgnupg \t\t\tdirmngr \t\t; \t\trm -rf /var/lib/apt/lists/*; \tfi" + }, + { + "created": "2023-04-12T07:53:05Z", + "created_by": "/bin/sh -c apt-get update \u0026\u0026 apt-get install -y --no-install-recommends \t\tgit \t\tmercurial \t\topenssh-client \t\tsubversion \t\t\t\tprocps \t\u0026\u0026 rm -rf /var/lib/apt/lists/*" + }, + { + "created": "2023-04-12T07:54:04Z", + "created_by": "/bin/sh -c set -ex; \tapt-get update; \tapt-get install -y --no-install-recommends \t\tautoconf \t\tautomake \t\tbzip2 \t\tdpkg-dev \t\tfile \t\tg++ \t\tgcc \t\timagemagick \t\tlibbz2-dev \t\tlibc6-dev \t\tlibcurl4-openssl-dev \t\tlibdb-dev \t\tlibevent-dev \t\tlibffi-dev \t\tlibgdbm-dev \t\tlibglib2.0-dev \t\tlibgmp-dev \t\tlibjpeg-dev \t\tlibkrb5-dev \t\tliblzma-dev \t\tlibmagickcore-dev \t\tlibmagickwand-dev \t\tlibmaxminddb-dev \t\tlibncurses5-dev \t\tlibncursesw5-dev \t\tlibpng-dev \t\tlibpq-dev \t\tlibreadline-dev \t\tlibsqlite3-dev \t\tlibssl-dev \t\tlibtool \t\tlibwebp-dev \t\tlibxml2-dev \t\tlibxslt-dev \t\tlibyaml-dev \t\tmake \t\tpatch \t\tunzip \t\txz-utils \t\tzlib1g-dev \t\t\t\t$( \t\t\tif apt-cache show 'default-libmysqlclient-dev' 2\u003e/dev/null | grep -q '^Version:'; then \t\t\t\techo 'default-libmysqlclient-dev'; \t\t\telse \t\t\t\techo 'libmysqlclient-dev'; \t\t\tfi \t\t) \t; \trm -rf /var/lib/apt/lists/*" + }, + { + "created": "2023-04-12T09:05:40Z", + "created_by": "/bin/sh -c groupadd --gid 1000 node \u0026\u0026 useradd --uid 1000 --gid node --shell /bin/bash --create-home node" + }, + { + "created": "2023-04-12T09:11:56Z", + "created_by": "/bin/sh -c #(nop) ENV NODE_VERSION=14.21.3", + "empty_layer": true + }, + { + "created": "2023-04-12T09:12:09Z", + "created_by": "/bin/sh -c ARCH= \u0026\u0026 dpkgArch=\"$(dpkg --print-architecture)\" \u0026\u0026 case \"${dpkgArch##*-}\" in amd64) ARCH='x64';; ppc64el) ARCH='ppc64le';; s390x) ARCH='s390x';; arm64) ARCH='arm64';; armhf) ARCH='armv7l';; i386) ARCH='x86';; *) echo \"unsupported architecture\"; exit 1 ;; esac \u0026\u0026 set -ex \u0026\u0026 for key in 4ED778F539E3634C779C87C6D7062848A1AB005C 141F07595B7B3FFE74309A937405533BE57C7D57 74F12602B6F1C4E913FAA37AD3A89613643B6201 61FC681DFB92A079F1685E77973F295594EC4689 8FCCA13FEF1D0C2E91008E09770F7A9A5AE15600 C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8 890C08DB8579162FEE0DF9DB8BEAB4DFCF555EF4 C82FA3AE1CBEDC6BE46B9360C43CEC45C17AB93C 108F52B48DB57BB0CC439B2997B01419BD92F80A ; do gpg --batch --keyserver hkps://keys.openpgp.org --recv-keys \"$key\" || gpg --batch --keyserver keyserver.ubuntu.com --recv-keys \"$key\" ; done \u0026\u0026 curl -fsSLO --compressed \"https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-$ARCH.tar.xz\" \u0026\u0026 curl -fsSLO --compressed \"https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc\" \u0026\u0026 gpg --batch --decrypt --output SHASUMS256.txt SHASUMS256.txt.asc \u0026\u0026 grep \" node-v$NODE_VERSION-linux-$ARCH.tar.xz\\$\" SHASUMS256.txt | sha256sum -c - \u0026\u0026 tar -xJf \"node-v$NODE_VERSION-linux-$ARCH.tar.xz\" -C /usr/local --strip-components=1 --no-same-owner \u0026\u0026 rm \"node-v$NODE_VERSION-linux-$ARCH.tar.xz\" SHASUMS256.txt.asc SHASUMS256.txt \u0026\u0026 ln -s /usr/local/bin/node /usr/local/bin/nodejs \u0026\u0026 node --version \u0026\u0026 npm --version" + }, + { + "created": "2023-04-12T09:12:09Z", + "created_by": "/bin/sh -c #(nop) ENV YARN_VERSION=1.22.19", + "empty_layer": true + }, + { + "created": "2023-04-12T09:12:12Z", + "created_by": "/bin/sh -c set -ex \u0026\u0026 for key in 6A010C5166006599AA17F08146C2130DFD2497F5 ; do gpg --batch --keyserver hkps://keys.openpgp.org --recv-keys \"$key\" || gpg --batch --keyserver keyserver.ubuntu.com --recv-keys \"$key\" ; done \u0026\u0026 curl -fsSLO --compressed \"https://yarnpkg.com/downloads/$YARN_VERSION/yarn-v$YARN_VERSION.tar.gz\" \u0026\u0026 curl -fsSLO --compressed \"https://yarnpkg.com/downloads/$YARN_VERSION/yarn-v$YARN_VERSION.tar.gz.asc\" \u0026\u0026 gpg --batch --verify yarn-v$YARN_VERSION.tar.gz.asc yarn-v$YARN_VERSION.tar.gz \u0026\u0026 mkdir -p /opt \u0026\u0026 tar -xzf yarn-v$YARN_VERSION.tar.gz -C /opt/ \u0026\u0026 ln -s /opt/yarn-v$YARN_VERSION/bin/yarn /usr/local/bin/yarn \u0026\u0026 ln -s /opt/yarn-v$YARN_VERSION/bin/yarnpkg /usr/local/bin/yarnpkg \u0026\u0026 rm yarn-v$YARN_VERSION.tar.gz.asc yarn-v$YARN_VERSION.tar.gz \u0026\u0026 yarn --version" + }, + { + "created": "2023-04-12T09:12:12Z", + "created_by": "/bin/sh -c #(nop) COPY file:4d192565a7220e135cab6c77fbc1c73211b69f3d9fb37e62857b2c6eb9363d51 in /usr/local/bin/ " + }, + { + "created": "2023-04-12T09:12:12Z", + "created_by": "/bin/sh -c #(nop) ENTRYPOINT [\"docker-entrypoint.sh\"]", + "empty_layer": true + }, + { + "created": "2023-04-12T09:12:12Z", + "created_by": "/bin/sh -c #(nop) CMD [\"node\"]", + "empty_layer": true + }, + { + "created": "2024-01-15T08:56:23Z", + "created_by": "WORKDIR /usr/src/app/", + "comment": "buildkit.dockerfile.v0" + }, + { + "created": "2024-01-15T08:56:23Z", + "created_by": "COPY src/ /usr/src/app/ # buildkit", + "comment": "buildkit.dockerfile.v0" + }, + { + "created": "2024-01-15T08:56:27Z", + "created_by": "RUN /bin/sh -c npm install # buildkit", + "comment": "buildkit.dockerfile.v0" + }, + { + "created": "2024-01-15T08:56:27Z", + "created_by": "EXPOSE map[3000/tcp:{}]", + "comment": "buildkit.dockerfile.v0", + "empty_layer": true + }, + { + "created": "2024-01-15T08:56:27Z", + "created_by": "CMD [\"node\" \"index.js\"]", + "comment": "buildkit.dockerfile.v0", + "empty_layer": true + } + ], + "os": "linux", + "rootfs": { + "type": "layers", + "diff_ids": [ + "sha256:b2dba74777543b60e1a5be6da44e67659f51b8df1e96922205a5dde6b92dda3c", + "sha256:f1186e5061f20658954f6bfdfaead0abc5ed2371d70f707da05206e868a226ab", + "sha256:fe0fb3ab4a0f7be72784fcab5ef9c8fda65ea9b1067e8f7cdf293c12bcd25c13", + "sha256:c45660adde371317a1eafb102ee1d33b059328ec73a01b5c2461c4d04a40ecec", + "sha256:e01a454893a9a11115c598e5dec158ded8bd41326046c993c81b76b6a963590b", + "sha256:cb81227abde588a006a8b7ceac6034a303813efadc2c711fabf7b224649d183f", + "sha256:f8a91dd5fc84e4e5a1f261cf306ba1de28894524326d86eec0d74e9c0d22baec", + "sha256:3c777d951de2c488f73618f92b2adee8bd5de6f77e36bab51d57583bc487b99b", + "sha256:0d5f5a015e5d65973cce1dbab5aa60ce0836dbf2b3c9eabcb6efc89db1db3221", + "sha256:baa0956fea600c916f370870566aca1edf9a5ffc7facf51cfb1286e774f6e0e2", + "sha256:2f08eba9a3eddbb1e9dc2b70a25a1a3860807dac0d42c1e40fd890bbafbfba29", + "sha256:bf7d7d997f27e713b44ac0e763a38c46f9698e71e2243b0ffa80405d62d8c5e0" + ] + }, + "config": { + "Cmd": [ + "node", + "index.js" + ], + "Entrypoint": [ + "docker-entrypoint.sh" + ], + "Env": [ + "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", + "NODE_VERSION=14.21.3", + "YARN_VERSION=1.22.19" + ], + "WorkingDir": "/usr/src/app/", + "ArgsEscaped": true + } + } + }, + "Results": [ + { + "Target": "noppaknopsta/example-app:main-159 (debian 10.13)", + "Class": "os-pkgs", + "Type": "debian", + "Vulnerabilities": [ + { + "VulnerabilityID": "CVE-2011-3374", + "PkgID": "apt@1.8.2.3", + "PkgName": "apt", + "InstalledVersion": "1.8.2.3", + "Status": "affected", + "Layer": { + "DiffID": "sha256:b2dba74777543b60e1a5be6da44e67659f51b8df1e96922205a5dde6b92dda3c" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2011-3374", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "It was found that apt-key in apt, all versions, do not correctly valid ...", + "Description": "It was found that apt-key in apt, all versions, do not correctly validate gpg keys with the master keyring, leading to a potential man-in-the-middle attack.", + "Severity": "LOW", + "CweIDs": [ + "CWE-347" + ], + "VendorSeverity": { + "debian": 1, + "nvd": 1 + }, + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:N/I:P/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V2Score": 4.3, + "V3Score": 3.7 + } + }, + "References": [ + "https://access.redhat.com/security/cve/cve-2011-3374", + "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=642480", + "https://people.canonical.com/~ubuntu-security/cve/2011/CVE-2011-3374.html", + "https://seclists.org/fulldisclosure/2011/Sep/221", + "https://security-tracker.debian.org/tracker/CVE-2011-3374", + "https://snyk.io/vuln/SNYK-LINUX-APT-116518", + "https://ubuntu.com/security/CVE-2011-3374" + ], + "PublishedDate": "2019-11-26T00:15:11.03Z", + "LastModifiedDate": "2021-02-09T16:08:18.683Z" + }, + { + "VulnerabilityID": "CVE-2019-18276", + "PkgID": "bash@5.0-4", + "PkgName": "bash", + "InstalledVersion": "5.0-4", + "Status": "affected", + "Layer": { + "DiffID": "sha256:b2dba74777543b60e1a5be6da44e67659f51b8df1e96922205a5dde6b92dda3c" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-18276", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "bash: when effective UID is not equal to its real UID the saved UID is not dropped", + "Description": "An issue was discovered in disable_priv_mode in shell.c in GNU Bash through 5.0 patch 11. By default, if Bash is run with its effective UID not equal to its real UID, it will drop privileges by setting its effective UID to its real UID. However, it does so incorrectly. On Linux and other systems that support \"saved UID\" functionality, the saved UID is not dropped. An attacker with command execution in the shell can use \"enable -f\" for runtime loading of a new builtin, which can be a shared object that calls setuid() and therefore regains privileges. However, binaries running with an effective UID of 0 are unaffected.", + "Severity": "LOW", + "CweIDs": [ + "CWE-273" + ], + "VendorSeverity": { + "cbl-mariner": 3, + "debian": 1, + "nvd": 3, + "oracle-oval": 1, + "photon": 3, + "redhat": 1, + "ubuntu": 1 + }, + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:C/I:C/A:C", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 7.2, + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7.8 + } + }, + "References": [ + "http://packetstormsecurity.com/files/155498/Bash-5.0-Patch-11-Privilege-Escalation.html", + "https://access.redhat.com/security/cve/CVE-2019-18276", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-18276", + "https://github.com/bminor/bash/commit/951bdaad7a18cc0dc1036bba86b18b90874d39ff", + "https://linux.oracle.com/cve/CVE-2019-18276.html", + "https://linux.oracle.com/errata/ELSA-2021-1679.html", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772%40%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2019-18276", + "https://security.gentoo.org/glsa/202105-34", + "https://security.netapp.com/advisory/ntap-20200430-0003/", + "https://ubuntu.com/security/notices/USN-5380-1", + "https://www.cve.org/CVERecord?id=CVE-2019-18276", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.youtube.com/watch?v=-wGtxJ8opa8" + ], + "PublishedDate": "2019-11-28T01:15:10.603Z", + "LastModifiedDate": "2023-11-07T03:06:25.3Z" + }, + { + "VulnerabilityID": "TEMP-0841856-B18BAF", + "PkgID": "bash@5.0-4", + "PkgName": "bash", + "InstalledVersion": "5.0-4", + "Status": "affected", + "Layer": { + "DiffID": "sha256:b2dba74777543b60e1a5be6da44e67659f51b8df1e96922205a5dde6b92dda3c" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://security-tracker.debian.org/tracker/TEMP-0841856-B18BAF", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "[Privilege escalation possible to other user than root]", + "Severity": "LOW", + "VendorSeverity": { + "debian": 1 + } + }, + { + "VulnerabilityID": "CVE-2017-13716", + "PkgID": "binutils@2.31.1-16", + "PkgName": "binutils", + "InstalledVersion": "2.31.1-16", + "Status": "affected", + "Layer": { + "DiffID": "sha256:e01a454893a9a11115c598e5dec158ded8bd41326046c993c81b76b6a963590b" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-13716", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "binutils: Memory leak with the C++ symbol demangler routine in libiberty", + "Description": "The C++ symbol demangler routine in cplus-dem.c in libiberty, as distributed in GNU Binutils 2.29, allows remote attackers to cause a denial of service (excessive memory allocation and application crash) via a crafted file, as demonstrated by a call from the Binary File Descriptor (BFD) library (aka libbfd).", + "Severity": "LOW", + "CweIDs": [ + "CWE-770" + ], + "VendorSeverity": { + "debian": 1, + "nvd": 2, + "photon": 2, + "redhat": 1, + "ubuntu": 1 + }, + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:N/I:N/A:C", + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", + "V2Score": 7.1, + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:L", + "V3Score": 3.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2017-13716", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-13716", + "https://nvd.nist.gov/vuln/detail/CVE-2017-13716", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22009", + "https://www.cve.org/CVERecord?id=CVE-2017-13716" + ], + "PublishedDate": "2017-08-28T21:29:00.293Z", + "LastModifiedDate": "2019-10-03T00:03:26.223Z" + }, + { + "VulnerabilityID": "CVE-2018-1000876", + "PkgID": "binutils@2.31.1-16", + "PkgName": "binutils", + "InstalledVersion": "2.31.1-16", + "Status": "affected", + "Layer": { + "DiffID": "sha256:e01a454893a9a11115c598e5dec158ded8bd41326046c993c81b76b6a963590b" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-1000876", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "integer overflow leads to heap-based buffer overflow in objdump", + "Description": "binutils version 2.32 and earlier contains a Integer Overflow vulnerability in objdump, bfd_get_dynamic_reloc_upper_bound,bfd_canonicalize_dynamic_reloc that can result in Integer overflow trigger heap overflow. Successful exploitation allows execution of arbitrary code.. This attack appear to be exploitable via Local. This vulnerability appears to have been fixed in after commit 3a551c7a1b80fca579461774860574eabfd7f18f.", + "Severity": "LOW", + "CweIDs": [ + "CWE-190", + "CWE-787" + ], + "VendorSeverity": { + "amazon": 2, + "debian": 1, + "nvd": 3, + "oracle-oval": 2, + "photon": 3, + "redhat": 2, + "ubuntu": 1 + }, + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 4.6, + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V3Score": 7.8 + } + }, + "References": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00072.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-11/msg00008.html", + "http://www.securityfocus.com/bid/106304", + "https://access.redhat.com/errata/RHSA-2019:2075", + "https://access.redhat.com/security/cve/CVE-2018-1000876", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-1000876", + "https://linux.oracle.com/cve/CVE-2018-1000876.html", + "https://linux.oracle.com/errata/ELSA-2019-2075.html", + "https://nvd.nist.gov/vuln/detail/CVE-2018-1000876", + "https://sourceware.org/bugzilla/show_bug.cgi?id=23994", + "https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git%3Bh=3a551c7a1b80fca579461774860574eabfd7f18f", + "https://ubuntu.com/security/notices/USN-4336-1", + "https://ubuntu.com/security/notices/USN-4336-2", + "https://usn.ubuntu.com/4336-1/", + "https://www.cve.org/CVERecord?id=CVE-2018-1000876" + ], + "PublishedDate": "2018-12-20T17:29:01.033Z", + "LastModifiedDate": "2023-11-07T02:51:14.47Z" + }, + { + "VulnerabilityID": "CVE-2018-12697", + "PkgID": "binutils@2.31.1-16", + "PkgName": "binutils", + "InstalledVersion": "2.31.1-16", + "Status": "affected", + "Layer": { + "DiffID": "sha256:e01a454893a9a11115c598e5dec158ded8bd41326046c993c81b76b6a963590b" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-12697", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "binutils: NULL pointer dereference in work_stuff_copy_to_from in cplus-dem.c.", + "Description": "A NULL pointer dereference (aka SEGV on unknown address 0x000000000000) was discovered in work_stuff_copy_to_from in cplus-dem.c in GNU libiberty, as distributed in GNU Binutils 2.30. This can occur during execution of objdump.", + "Severity": "LOW", + "CweIDs": [ + "CWE-476" + ], + "VendorSeverity": { + "amazon": 2, + "debian": 1, + "nvd": 3, + "oracle-oval": 2, + "photon": 3, + "redhat": 1, + "ubuntu": 1 + }, + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 3.3 + } + }, + "References": [ + "http://www.securityfocus.com/bid/104538", + "https://access.redhat.com/errata/RHSA-2019:2075", + "https://access.redhat.com/security/cve/CVE-2018-12697", + "https://bugs.launchpad.net/ubuntu/+source/binutils/+bug/1763102", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-12697", + "https://gcc.gnu.org/bugzilla/show_bug.cgi?id=85454", + "https://linux.oracle.com/cve/CVE-2018-12697.html", + "https://linux.oracle.com/errata/ELSA-2019-2075.html", + "https://nvd.nist.gov/vuln/detail/CVE-2018-12697", + "https://security.gentoo.org/glsa/201908-01", + "https://sourceware.org/bugzilla/show_bug.cgi?id=23057", + "https://ubuntu.com/security/notices/USN-4326-1", + "https://ubuntu.com/security/notices/USN-4336-1", + "https://ubuntu.com/security/notices/USN-4336-2", + "https://usn.ubuntu.com/4326-1/", + "https://usn.ubuntu.com/4336-1/", + "https://www.cve.org/CVERecord?id=CVE-2018-12697" + ], + "PublishedDate": "2018-06-23T23:29:00.22Z", + "LastModifiedDate": "2019-08-03T13:15:17.257Z" + }, + { + "VulnerabilityID": "CVE-2018-12698", + "PkgID": "binutils@2.31.1-16", + "PkgName": "binutils", + "InstalledVersion": "2.31.1-16", + "Status": "affected", + "Layer": { + "DiffID": "sha256:e01a454893a9a11115c598e5dec158ded8bd41326046c993c81b76b6a963590b" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-12698", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "binutils: excessive memory consumption in demangle_template in cplus-dem.c", + "Description": "demangle_template in cplus-dem.c in GNU libiberty, as distributed in GNU Binutils 2.30, allows attackers to trigger excessive memory consumption (aka OOM) during the \"Create an array for saving the template argument values\" XNEWVEC call. This can occur during execution of objdump.", + "Severity": "LOW", + "VendorSeverity": { + "debian": 1, + "nvd": 3, + "photon": 3, + "redhat": 1, + "ubuntu": 1 + }, + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 3.3 + } + }, + "References": [ + "http://www.securityfocus.com/bid/104539", + "https://access.redhat.com/security/cve/CVE-2018-12698", + "https://bugs.launchpad.net/ubuntu/+source/binutils/+bug/1763102", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-12698", + "https://gcc.gnu.org/bugzilla/show_bug.cgi?id=85454", + "https://nvd.nist.gov/vuln/detail/CVE-2018-12698", + "https://security.gentoo.org/glsa/201908-01", + "https://sourceware.org/bugzilla/show_bug.cgi?id=23057", + "https://ubuntu.com/security/notices/USN-4326-1", + "https://ubuntu.com/security/notices/USN-4336-1", + "https://ubuntu.com/security/notices/USN-4336-2", + "https://usn.ubuntu.com/4326-1/", + "https://usn.ubuntu.com/4336-1/", + "https://www.cve.org/CVERecord?id=CVE-2018-12698" + ], + "PublishedDate": "2018-06-23T23:29:00.283Z", + "LastModifiedDate": "2019-10-03T00:03:26.223Z" + }, + { + "VulnerabilityID": "CVE-2018-12699", + "PkgID": "binutils@2.31.1-16", + "PkgName": "binutils", + "InstalledVersion": "2.31.1-16", + "Status": "affected", + "Layer": { + "DiffID": "sha256:e01a454893a9a11115c598e5dec158ded8bd41326046c993c81b76b6a963590b" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-12699", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "binutils: heap-based buffer overflow in finish_stab in stabs.c", + "Description": "finish_stab in stabs.c in GNU Binutils 2.30 allows attackers to cause a denial of service (heap-based buffer overflow) or possibly have unspecified other impact, as demonstrated by an out-of-bounds write of 8 bytes. This can occur during execution of objdump.", + "Severity": "LOW", + "CweIDs": [ + "CWE-787" + ], + "VendorSeverity": { + "debian": 1, + "nvd": 4, + "photon": 4, + "redhat": 1, + "ubuntu": 1 + }, + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 7.5, + "V3Score": 9.8 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 3.3 + } + }, + "References": [ + "http://www.securityfocus.com/bid/104540", + "https://access.redhat.com/security/cve/CVE-2018-12699", + "https://bugs.launchpad.net/ubuntu/+source/binutils/+bug/1763102", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-12699", + "https://gcc.gnu.org/bugzilla/show_bug.cgi?id=85454", + "https://nvd.nist.gov/vuln/detail/CVE-2018-12699", + "https://security.gentoo.org/glsa/201908-01", + "https://sourceware.org/bugzilla/show_bug.cgi?id=23057", + "https://ubuntu.com/security/notices/USN-4336-1", + "https://ubuntu.com/security/notices/USN-4336-2", + "https://usn.ubuntu.com/4336-1/", + "https://www.cve.org/CVERecord?id=CVE-2018-12699" + ], + "PublishedDate": "2018-06-23T23:29:00.33Z", + "LastModifiedDate": "2019-08-03T13:15:17.587Z" + }, + { + "VulnerabilityID": "CVE-2018-12934", + "PkgID": "binutils@2.31.1-16", + "PkgName": "binutils", + "InstalledVersion": "2.31.1-16", + "Status": "affected", + "Layer": { + "DiffID": "sha256:e01a454893a9a11115c598e5dec158ded8bd41326046c993c81b76b6a963590b" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-12934", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "binutils: Uncontrolled Resource Consumption in remember_Ktype in cplus-dem.c", + "Description": "remember_Ktype in cplus-dem.c in GNU libiberty, as distributed in GNU Binutils 2.30, allows attackers to trigger excessive memory consumption (aka OOM). This can occur during execution of cxxfilt.", + "Severity": "LOW", + "CweIDs": [ + "CWE-770" + ], + "VendorSeverity": { + "debian": 1, + "nvd": 3, + "photon": 3, + "redhat": 1, + "ubuntu": 1 + }, + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2018-12934", + "https://bugs.launchpad.net/ubuntu/+source/binutils/+bug/1763101", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-12934", + "https://gcc.gnu.org/bugzilla/show_bug.cgi?id=85453", + "https://nvd.nist.gov/vuln/detail/CVE-2018-12934", + "https://sourceware.org/bugzilla/show_bug.cgi?id=23059", + "https://ubuntu.com/security/notices/USN-4326-1", + "https://ubuntu.com/security/notices/USN-4336-1", + "https://ubuntu.com/security/notices/USN-4336-2", + "https://usn.ubuntu.com/4326-1/", + "https://usn.ubuntu.com/4336-1/", + "https://www.cve.org/CVERecord?id=CVE-2018-12934" + ], + "PublishedDate": "2018-06-28T14:29:00.683Z", + "LastModifiedDate": "2020-04-21T22:15:13.15Z" + }, + { + "VulnerabilityID": "CVE-2018-17358", + "PkgID": "binutils@2.31.1-16", + "PkgName": "binutils", + "InstalledVersion": "2.31.1-16", + "Status": "affected", + "Layer": { + "DiffID": "sha256:e01a454893a9a11115c598e5dec158ded8bd41326046c993c81b76b6a963590b" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-17358", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "binutils: invalid memory access in _bfd_stab_section_find_nearest_line in syms.c", + "Description": "An issue was discovered in the Binary File Descriptor (BFD) library (aka libbfd), as distributed in GNU Binutils 2.31. An invalid memory access exists in _bfd_stab_section_find_nearest_line in syms.c. Attackers could leverage this vulnerability to cause a denial of service (application crash) via a crafted ELF file.", + "Severity": "LOW", + "CweIDs": [ + "CWE-119" + ], + "VendorSeverity": { + "debian": 1, + "nvd": 2, + "photon": 2, + "redhat": 1, + "ubuntu": 1 + }, + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", + "V2Score": 4.3, + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:L", + "V3Score": 3.3 + } + }, + "References": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00072.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-11/msg00008.html", + "https://access.redhat.com/security/cve/CVE-2018-17358", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-17358", + "https://nvd.nist.gov/vuln/detail/CVE-2018-17358", + "https://seclists.org/bugtraq/2020/Jan/25", + "https://sourceware.org/bugzilla/show_bug.cgi?id=23686", + "https://ubuntu.com/security/notices/USN-4336-1", + "https://ubuntu.com/security/notices/USN-4336-2", + "https://usn.ubuntu.com/4336-1/", + "https://www.cve.org/CVERecord?id=CVE-2018-17358" + ], + "PublishedDate": "2018-09-23T18:29:00.283Z", + "LastModifiedDate": "2019-10-31T01:15:12.203Z" + }, + { + "VulnerabilityID": "CVE-2018-17359", + "PkgID": "binutils@2.31.1-16", + "PkgName": "binutils", + "InstalledVersion": "2.31.1-16", + "Status": "affected", + "Layer": { + "DiffID": "sha256:e01a454893a9a11115c598e5dec158ded8bd41326046c993c81b76b6a963590b" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-17359", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "binutils: invalid memory access in bfd_zalloc in opncls.c", + "Description": "An issue was discovered in the Binary File Descriptor (BFD) library (aka libbfd), as distributed in GNU Binutils 2.31. An invalid memory access exists in bfd_zalloc in opncls.c. Attackers could leverage this vulnerability to cause a denial of service (application crash) via a crafted ELF file.", + "Severity": "LOW", + "CweIDs": [ + "CWE-119" + ], + "VendorSeverity": { + "debian": 1, + "nvd": 2, + "photon": 2, + "ubuntu": 1 + }, + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", + "V2Score": 4.3, + "V3Score": 5.5 + } + }, + "References": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00072.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-11/msg00008.html", + "https://access.redhat.com/security/cve/CVE-2018-17359", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-17359", + "https://nvd.nist.gov/vuln/detail/CVE-2018-17359", + "https://sourceware.org/bugzilla/show_bug.cgi?id=23686", + "https://ubuntu.com/security/notices/USN-4336-1", + "https://ubuntu.com/security/notices/USN-4336-2", + "https://usn.ubuntu.com/4336-1/", + "https://www.cve.org/CVERecord?id=CVE-2018-17359" + ], + "PublishedDate": "2018-09-23T18:29:00.44Z", + "LastModifiedDate": "2019-10-31T01:15:12.437Z" + }, + { + "VulnerabilityID": "CVE-2018-17360", + "PkgID": "binutils@2.31.1-16", + "PkgName": "binutils", + "InstalledVersion": "2.31.1-16", + "Status": "affected", + "Layer": { + "DiffID": "sha256:e01a454893a9a11115c598e5dec158ded8bd41326046c993c81b76b6a963590b" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-17360", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "binutils: heap-based buffer over-read in bfd_getl32 in libbfd.c", + "Description": "An issue was discovered in the Binary File Descriptor (BFD) library (aka libbfd), as distributed in GNU Binutils 2.31. a heap-based buffer over-read in bfd_getl32 in libbfd.c allows an attacker to cause a denial of service through a crafted PE file. This vulnerability can be triggered by the executable objdump.", + "Severity": "LOW", + "CweIDs": [ + "CWE-125" + ], + "VendorSeverity": { + "debian": 1, + "nvd": 2, + "photon": 2, + "redhat": 1, + "ubuntu": 1 + }, + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", + "V2Score": 4.3, + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:L", + "V3Score": 3.3 + } + }, + "References": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00072.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-11/msg00008.html", + "https://access.redhat.com/security/cve/CVE-2018-17360", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-17360", + "https://nvd.nist.gov/vuln/detail/CVE-2018-17360", + "https://sourceware.org/bugzilla/show_bug.cgi?id=23685", + "https://ubuntu.com/security/notices/USN-4336-1", + "https://ubuntu.com/security/notices/USN-4336-2", + "https://usn.ubuntu.com/4336-1/", + "https://www.cve.org/CVERecord?id=CVE-2018-17360" + ], + "PublishedDate": "2018-09-23T18:29:00.547Z", + "LastModifiedDate": "2019-10-31T01:15:12.56Z" + }, + { + "VulnerabilityID": "CVE-2023-26136", + "PkgID": "tough-cookie@2.5.0", + "PkgName": "tough-cookie", + "PkgPath": "usr/local/lib/node_modules/npm/node_modules/tough-cookie/package.json", + "InstalledVersion": "2.5.0", + "FixedVersion": "4.1.3", + "Status": "fixed", + "Layer": { + "DiffID": "sha256:f8a91dd5fc84e4e5a1f261cf306ba1de28894524326d86eec0d74e9c0d22baec" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-26136", + "DataSource": { + "ID": "ghsa", + "Name": "GitHub Security Advisory npm", + "URL": "https://github.com/advisories?query=type%3Areviewed+ecosystem%3Anpm" + }, + "Title": "tough-cookie: prototype pollution in cookie memstore", + "Description": "Versions of the package tough-cookie before 4.1.3 are vulnerable to Prototype Pollution due to improper handling of Cookies when using CookieJar in rejectPublicSuffixes=false mode. This issue arises from the manner in which the objects are initialized.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-1321" + ], + "VendorSeverity": { + "ghsa": 2, + "nvd": 4, + "redhat": 2 + }, + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N", + "V3Score": 6.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 9.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N", + "V3Score": 6.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-26136", + "https://github.com/salesforce/tough-cookie", + "https://github.com/salesforce/tough-cookie/commit/12d474791bb856004e858fdb1c47b7608d09cf6e", + "https://github.com/salesforce/tough-cookie/issues/282", + "https://github.com/salesforce/tough-cookie/releases/tag/v4.1.3", + "https://lists.debian.org/debian-lts-announce/2023/07/msg00010.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-26136", + "https://security.snyk.io/vuln/SNYK-JS-TOUGHCOOKIE-5672873", + "https://www.cve.org/CVERecord?id=CVE-2023-26136" + ], + "PublishedDate": "2023-07-01T05:15:16.103Z", + "LastModifiedDate": "2023-11-07T04:09:26.4Z" + } + ] + } + ] + } + \ No newline at end of file diff --git a/unittests/tools/test_trivy_parser.py b/unittests/tools/test_trivy_parser.py index 1c38f3c2104..33390be18ea 100644 --- a/unittests/tools/test_trivy_parser.py +++ b/unittests/tools/test_trivy_parser.py @@ -217,3 +217,11 @@ def test_issue_9263(self): self.assertEqual(len(findings), 1) finding = findings[0] self.assertEqual("High", finding.severity) + + def test_issue_9333(self): + test_file = open(sample_path("issue_9333.json")) + parser = TrivyParser() + findings = parser.get_findings(test_file, Test()) + self.assertEqual(len(findings), 13) + finding = findings[0] + self.assertEqual("Low", finding.severity) From acfe7efc89acd546a0a6860fd40d52bdb39fd170 Mon Sep 17 00:00:00 2001 From: manuelsommer <47991713+manuel-sommer@users.noreply.github.com> Date: Fri, 19 Jan 2024 03:14:50 +0100 Subject: [PATCH 13/22] :sparkles: implement google cloud artifact scan (#9338) * :sparkles: implement google cloud artifact scan, #8552 * fix unittest * docs update --- .../parsers/file/gcloud_artifact_scan.md | 12 + dojo/tools/gcloud_artifact_scan/__init__.py | 1 + dojo/tools/gcloud_artifact_scan/parser.py | 55 ++ .../gcloud_artifact_scan/many_vulns.json | 514 ++++++++++++++++++ .../tools/test_gcloud_artifact_scan_parser.py | 20 + 5 files changed, 602 insertions(+) create mode 100644 docs/content/en/integrations/parsers/file/gcloud_artifact_scan.md create mode 100644 dojo/tools/gcloud_artifact_scan/__init__.py create mode 100644 dojo/tools/gcloud_artifact_scan/parser.py create mode 100644 unittests/scans/gcloud_artifact_scan/many_vulns.json create mode 100644 unittests/tools/test_gcloud_artifact_scan_parser.py diff --git a/docs/content/en/integrations/parsers/file/gcloud_artifact_scan.md b/docs/content/en/integrations/parsers/file/gcloud_artifact_scan.md new file mode 100644 index 00000000000..cb752af29c5 --- /dev/null +++ b/docs/content/en/integrations/parsers/file/gcloud_artifact_scan.md @@ -0,0 +1,12 @@ +--- +title: "Google Cloud Artifact Vulnerability Scan" +toc_hide: true +--- +Google Cloud has a Artifact Registry that you can enable security scans https://cloud.google.com/artifact-registry/docs/analysis +Once a scan is completed, results can be pulled via API/gcloud https://cloud.google.com/artifact-analysis/docs/metadata-storage and exported to JSON + +### File Types +DefectDojo parser accepts Google Cloud Artifact Vulnerability Scan data as a .json file. + +### Sample Scan Data +Sample reports can be found at https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/gcloud_artifact_scan \ No newline at end of file diff --git a/dojo/tools/gcloud_artifact_scan/__init__.py b/dojo/tools/gcloud_artifact_scan/__init__.py new file mode 100644 index 00000000000..99e8e118c6a --- /dev/null +++ b/dojo/tools/gcloud_artifact_scan/__init__.py @@ -0,0 +1 @@ +__author__ = "manuel_sommer" diff --git a/dojo/tools/gcloud_artifact_scan/parser.py b/dojo/tools/gcloud_artifact_scan/parser.py new file mode 100644 index 00000000000..9785d12d678 --- /dev/null +++ b/dojo/tools/gcloud_artifact_scan/parser.py @@ -0,0 +1,55 @@ +import json +from dojo.models import Finding + + +class GCloudArtifactScanParser(object): + def get_scan_types(self): + return ["Google Cloud Artifact Vulnerability Scan"] + + def get_label_for_scan_types(self, scan_type): + return scan_type # no custom label for now + + def get_description_for_scan_types(self, scan_type): + return "Import Google Cloud Artifact Vulnerability scans in JSON format." + + def parse_json(self, json_output): + try: + data = json_output.read() + try: + tree = json.loads(str(data, "utf-8")) + except Exception: + tree = json.loads(data) + except Exception: + raise ValueError("Invalid format") + return tree + + def get_findings(self, json_output, test): + findings = [] + if json_output is None: + return findings + tree = self.parse_json(json_output) + if tree: + for severity in tree["package_vulnerability_summary"]["vulnerabilities"]: + for vuln in tree["package_vulnerability_summary"]["vulnerabilities"][severity]: + description = "name: " + str(vuln["name"]) + "\n\n" + description += "resourceUri: " + str(vuln["resourceUri"]) + "\n" + description += "fixAvailable: " + str(vuln["vulnerability"]["fixAvailable"]) + "\n" + description += "packageIssue: " + str(vuln["vulnerability"]["packageIssue"]) + "\n" + description += "CVE: " + str(vuln["vulnerability"]["shortDescription"]) + "\n" + reference = "" + for ref in vuln["vulnerability"]["relatedUrls"]: + reference += ref["url"] + "\n" + finding = Finding( + title=vuln["noteName"], + test=test, + description=description, + severity=severity.lower().capitalize(), + references=reference, + component_name="affectedCPEUri: " + vuln["vulnerability"]["packageIssue"][0]["affectedCpeUri"] + " affectedPackage: " + vuln["vulnerability"]["packageIssue"][0]["affectedPackage"], + component_version=vuln["vulnerability"]["packageIssue"][0]["affectedVersion"]["fullName"], + static_finding=True, + dynamic_finding=False, + cvssv3_score=vuln["vulnerability"]["cvssScore"] + ) + findings.append(finding) + return findings diff --git a/unittests/scans/gcloud_artifact_scan/many_vulns.json b/unittests/scans/gcloud_artifact_scan/many_vulns.json new file mode 100644 index 00000000000..2ab43ad9617 --- /dev/null +++ b/unittests/scans/gcloud_artifact_scan/many_vulns.json @@ -0,0 +1,514 @@ +{ + "discovery_summary": { + "discovery": [ + { + "createTime": "2023-08-23T16:57:29.302830Z", + "discovery": { + "analysisCompleted": { + "analysisType": [ + "OS", + "GO", + "MAVEN", + "PYPI", + "NPM" + ] + }, + "analysisStatus": "FINISHED_SUCCESS", + "continuousAnalysis": "ACTIVE", + "lastScanTime": "2023-08-23T16:57:34.358092699Z" + }, + "kind": "DISCOVERY", + "name": "projects/test/occurrences/1ae41139-7c9c-4c43-817e-9186d7583563", + "noteName": "projects/goog-analysis/notes/PACKAGE_VULNERABILITY", + "resourceUri": "https://northamerica-northeast1-docker.pkg.dev/testing/test-docker/test-image@sha256:deadbeef0000000000000000000000000000000000", + "updateTime": "2023-08-23T16:57:34.487918Z" + } + ] + }, + "image_summary": { + "digest": "sha256:d2eecb48a0d1c6be1ec96d2d0a52c3b95936c4cdde2208299c04d6106b769658", + "fully_qualified_digest": "northamerica-northeast1-docker.pkg.dev/testing/test-docker/test-image@sha256:deadbeef0000000000000000000000000000000000", + "registry": "northamerica-northeast1-docker.pkg.dev", + "repository": "testing", + "slsa_build_level": "unknown" + }, + "package_vulnerability_summary": { + "vulnerabilities": { + "CRITICAL": [ + { + "createTime": "2023-08-23T16:57:34.258042Z", + "kind": "VULNERABILITY", + "name": "projects/test/occurrences/17762f5b-88a9-4e15-b92d-ce5b4de56519", + "noteName": "projects/goog-vulnz/notes/CVE-2023-29405", + "resourceUri": "https://northamerica-northeast1-docker.pkg.dev/testing/test-docker/test-image@sha256:deadbeef0000000000000000000000000000000000", + "updateTime": "2023-08-23T16:57:34.258042Z", + "vulnerability": { + "cvssScore": 9.8, + "cvssVersion": "CVSS_VERSION_3", + "cvssv3": { + "attackComplexity": "ATTACK_COMPLEXITY_LOW", + "attackVector": "ATTACK_VECTOR_NETWORK", + "availabilityImpact": "IMPACT_HIGH", + "baseScore": 9.8, + "confidentialityImpact": "IMPACT_HIGH", + "exploitabilityScore": 3.9, + "impactScore": 5.9, + "integrityImpact": "IMPACT_HIGH", + "privilegesRequired": "PRIVILEGES_REQUIRED_NONE", + "scope": "SCOPE_UNCHANGED", + "userInteraction": "USER_INTERACTION_NONE" + }, + "effectiveSeverity": "CRITICAL", + "fixAvailable": true, + "longDescription": "NIST vectors: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "packageIssue": [ + { + "affectedCpeUri": "cpe:/o:debian:debian_linux:12", + "affectedPackage": "go", + "affectedVersion": { + "fullName": "1.17.6", + "kind": "NORMAL", + "name": "1.17.6" + }, + "effectiveSeverity": "CRITICAL", + "fileLocation": [ + { + "filePath": "/tmp/pdscan" + } + ], + "fixAvailable": true, + "fixedCpeUri": "cpe:/o:debian:debian_linux:12", + "fixedPackage": "go", + "fixedVersion": { + "fullName": "1.19.10", + "kind": "NORMAL", + "name": "1.19.10" + }, + "packageType": "GO_STDLIB" + } + ], + "relatedUrls": [ + { + "label": "More Info", + "url": "https://security-tracker.debian.org/tracker/CVE-2023-29405" + }, + { + "label": "More Info", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2023-29405" + } + ], + "severity": "CRITICAL", + "shortDescription": "CVE-2023-29405" + } + }, + { + "createTime": "2023-08-23T16:57:34.195901Z", + "kind": "VULNERABILITY", + "name": "projects/test/occurrences/9375502a-c7a7-4605-88f7-caf1ca8137ae", + "noteName": "projects/goog-vulnz/notes/CVE-2023-29402", + "resourceUri": "https://northamerica-northeast1-docker.pkg.dev/testing/test-docker/test-image@sha256:deadbeef0000000000000000000000000000000000", + "updateTime": "2023-08-23T16:57:34.195901Z", + "vulnerability": { + "cvssScore": 9.8, + "cvssVersion": "CVSS_VERSION_3", + "cvssv3": { + "attackComplexity": "ATTACK_COMPLEXITY_LOW", + "attackVector": "ATTACK_VECTOR_NETWORK", + "availabilityImpact": "IMPACT_HIGH", + "baseScore": 9.8, + "confidentialityImpact": "IMPACT_HIGH", + "exploitabilityScore": 3.9, + "impactScore": 5.9, + "integrityImpact": "IMPACT_HIGH", + "privilegesRequired": "PRIVILEGES_REQUIRED_NONE", + "scope": "SCOPE_UNCHANGED", + "userInteraction": "USER_INTERACTION_NONE" + }, + "effectiveSeverity": "CRITICAL", + "fixAvailable": true, + "longDescription": "NIST vectors: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "packageIssue": [ + { + "affectedCpeUri": "cpe:/o:debian:debian_linux:12", + "affectedPackage": "go", + "affectedVersion": { + "fullName": "1.17.6", + "kind": "NORMAL", + "name": "1.17.6" + }, + "effectiveSeverity": "CRITICAL", + "fileLocation": [ + { + "filePath": "/tmp/pdscan" + } + ], + "fixAvailable": true, + "fixedCpeUri": "cpe:/o:debian:debian_linux:12", + "fixedPackage": "go", + "fixedVersion": { + "fullName": "1.19.10", + "kind": "NORMAL", + "name": "1.19.10" + }, + "packageType": "GO_STDLIB" + } + ], + "relatedUrls": [ + { + "label": "More Info", + "url": "https://security-tracker.debian.org/tracker/CVE-2023-29402" + }, + { + "label": "More Info", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2023-29402" + } + ], + "severity": "CRITICAL", + "shortDescription": "CVE-2023-29402" + } + }, + { + "createTime": "2023-08-23T16:57:34.291202Z", + "kind": "VULNERABILITY", + "name": "projects/test/occurrences/94d3ba5b-8ea5-4df9-9e4b-6719f3549046", + "noteName": "projects/goog-vulnz/notes/CVE-2023-29404", + "resourceUri": "https://northamerica-northeast1-docker.pkg.dev/testing/test-docker/test-image@sha256:deadbeef0000000000000000000000000000000000", + "updateTime": "2023-08-23T16:57:34.291202Z", + "vulnerability": { + "cvssScore": 9.8, + "cvssVersion": "CVSS_VERSION_3", + "cvssv3": { + "attackComplexity": "ATTACK_COMPLEXITY_LOW", + "attackVector": "ATTACK_VECTOR_NETWORK", + "availabilityImpact": "IMPACT_HIGH", + "baseScore": 9.8, + "confidentialityImpact": "IMPACT_HIGH", + "exploitabilityScore": 3.9, + "impactScore": 5.9, + "integrityImpact": "IMPACT_HIGH", + "privilegesRequired": "PRIVILEGES_REQUIRED_NONE", + "scope": "SCOPE_UNCHANGED", + "userInteraction": "USER_INTERACTION_NONE" + }, + "effectiveSeverity": "CRITICAL", + "fixAvailable": true, + "longDescription": "NIST vectors: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "packageIssue": [ + { + "affectedCpeUri": "cpe:/o:debian:debian_linux:12", + "affectedPackage": "go", + "affectedVersion": { + "fullName": "1.17.6", + "kind": "NORMAL", + "name": "1.17.6" + }, + "effectiveSeverity": "CRITICAL", + "fileLocation": [ + { + "filePath": "/tmp/pdscan" + } + ], + "fixAvailable": true, + "fixedCpeUri": "cpe:/o:debian:debian_linux:12", + "fixedPackage": "go", + "fixedVersion": { + "fullName": "1.19.10", + "kind": "NORMAL", + "name": "1.19.10" + }, + "packageType": "GO_STDLIB" + } + ], + "relatedUrls": [ + { + "label": "More Info", + "url": "https://security-tracker.debian.org/tracker/CVE-2023-29404" + }, + { + "label": "More Info", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2023-29404" + } + ], + "severity": "CRITICAL", + "shortDescription": "CVE-2023-29404" + } + }, + { + "createTime": "2023-08-23T16:57:34.110140Z", + "kind": "VULNERABILITY", + "name": "projects/test/occurrences/9534a1c6-84cf-4141-b5d2-3b80fb6935cb", + "noteName": "projects/goog-vulnz/notes/CVE-2023-24540", + "resourceUri": "https://northamerica-northeast1-docker.pkg.dev/testing/test-docker/test-image@sha256:deadbeef0000000000000000000000000000000000", + "updateTime": "2023-08-23T16:57:34.110140Z", + "vulnerability": { + "cvssScore": 9.8, + "cvssVersion": "CVSS_VERSION_3", + "cvssv3": { + "attackComplexity": "ATTACK_COMPLEXITY_LOW", + "attackVector": "ATTACK_VECTOR_NETWORK", + "availabilityImpact": "IMPACT_HIGH", + "baseScore": 9.8, + "confidentialityImpact": "IMPACT_HIGH", + "exploitabilityScore": 3.9, + "impactScore": 5.9, + "integrityImpact": "IMPACT_HIGH", + "privilegesRequired": "PRIVILEGES_REQUIRED_NONE", + "scope": "SCOPE_UNCHANGED", + "userInteraction": "USER_INTERACTION_NONE" + }, + "effectiveSeverity": "CRITICAL", + "fixAvailable": true, + "longDescription": "NIST vectors: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "packageIssue": [ + { + "affectedCpeUri": "cpe:/o:debian:debian_linux:12", + "affectedPackage": "go", + "affectedVersion": { + "fullName": "1.17.6", + "kind": "NORMAL", + "name": "1.17.6" + }, + "effectiveSeverity": "CRITICAL", + "fileLocation": [ + { + "filePath": "/tmp/pdscan" + } + ], + "fixAvailable": true, + "fixedCpeUri": "cpe:/o:debian:debian_linux:12", + "fixedPackage": "go", + "fixedVersion": { + "fullName": "1.19.9", + "kind": "NORMAL", + "name": "1.19.9" + }, + "packageType": "GO_STDLIB" + } + ], + "relatedUrls": [ + { + "label": "More Info", + "url": "https://security-tracker.debian.org/tracker/CVE-2023-24540" + }, + { + "label": "More Info", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2023-24540" + } + ], + "severity": "CRITICAL", + "shortDescription": "CVE-2023-24540" + } + }, + { + "createTime": "2023-08-23T16:57:34.290433Z", + "kind": "VULNERABILITY", + "name": "projects/test/occurrences/99c6aa0f-018a-4cc9-bb93-1d90b0dbc97e", + "noteName": "projects/goog-vulnz/notes/CVE-2023-24538", + "resourceUri": "https://northamerica-northeast1-docker.pkg.dev/testing/test-docker/test-image@sha256:deadbeef0000000000000000000000000000000000", + "updateTime": "2023-08-23T16:57:34.290433Z", + "vulnerability": { + "cvssScore": 9.8, + "cvssVersion": "CVSS_VERSION_3", + "cvssv3": { + "attackComplexity": "ATTACK_COMPLEXITY_LOW", + "attackVector": "ATTACK_VECTOR_NETWORK", + "availabilityImpact": "IMPACT_HIGH", + "baseScore": 9.8, + "confidentialityImpact": "IMPACT_HIGH", + "exploitabilityScore": 3.9, + "impactScore": 5.9, + "integrityImpact": "IMPACT_HIGH", + "privilegesRequired": "PRIVILEGES_REQUIRED_NONE", + "scope": "SCOPE_UNCHANGED", + "userInteraction": "USER_INTERACTION_NONE" + }, + "effectiveSeverity": "CRITICAL", + "fixAvailable": true, + "longDescription": "NIST vectors: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "packageIssue": [ + { + "affectedCpeUri": "cpe:/o:debian:debian_linux:12", + "affectedPackage": "go", + "affectedVersion": { + "fullName": "1.17.6", + "kind": "NORMAL", + "name": "1.17.6" + }, + "effectiveSeverity": "CRITICAL", + "fileLocation": [ + { + "filePath": "/tmp/pdscan" + } + ], + "fixAvailable": true, + "fixedCpeUri": "cpe:/o:debian:debian_linux:12", + "fixedPackage": "go", + "fixedVersion": { + "fullName": "1.19.8", + "kind": "NORMAL", + "name": "1.19.8" + }, + "packageType": "GO_STDLIB" + } + ], + "relatedUrls": [ + { + "label": "More Info", + "url": "https://security-tracker.debian.org/tracker/CVE-2023-24538" + }, + { + "label": "More Info", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2023-24538" + } + ], + "severity": "CRITICAL", + "shortDescription": "CVE-2023-24538" + } + }, + { + "createTime": "2023-08-23T16:57:33.746649Z", + "kind": "VULNERABILITY", + "name": "projects/test/occurrences/b0e9e452-35cd-4c14-b929-3b5e6b270903", + "noteName": "projects/goog-vulnz/notes/CVE-2022-23806", + "resourceUri": "https://northamerica-northeast1-docker.pkg.dev/testing/test-docker/test-image@sha256:deadbeef0000000000000000000000000000000000", + "updateTime": "2023-08-23T16:57:33.746649Z", + "vulnerability": { + "cvssScore": 9.1, + "cvssV2": { + "attackComplexity": "ATTACK_COMPLEXITY_LOW", + "attackVector": "ATTACK_VECTOR_NETWORK", + "authentication": "AUTHENTICATION_NONE", + "availabilityImpact": "IMPACT_PARTIAL", + "baseScore": 6.4, + "confidentialityImpact": "IMPACT_NONE", + "integrityImpact": "IMPACT_PARTIAL" + }, + "cvssVersion": "CVSS_VERSION_3", + "cvssv3": { + "attackComplexity": "ATTACK_COMPLEXITY_LOW", + "attackVector": "ATTACK_VECTOR_NETWORK", + "availabilityImpact": "IMPACT_HIGH", + "baseScore": 9.1, + "confidentialityImpact": "IMPACT_NONE", + "exploitabilityScore": 3.9, + "impactScore": 5.2, + "integrityImpact": "IMPACT_HIGH", + "privilegesRequired": "PRIVILEGES_REQUIRED_NONE", + "scope": "SCOPE_UNCHANGED", + "userInteraction": "USER_INTERACTION_NONE" + }, + "effectiveSeverity": "CRITICAL", + "fixAvailable": true, + "longDescription": "NIST vectors: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:H", + "packageIssue": [ + { + "affectedCpeUri": "cpe:/o:debian:debian_linux:12", + "affectedPackage": "go", + "affectedVersion": { + "fullName": "1.17.6", + "kind": "NORMAL", + "name": "1.17.6" + }, + "effectiveSeverity": "CRITICAL", + "fileLocation": [ + { + "filePath": "/tmp/pdscan" + } + ], + "fixAvailable": true, + "fixedCpeUri": "cpe:/o:debian:debian_linux:12", + "fixedPackage": "go", + "fixedVersion": { + "fullName": "1.17.7", + "kind": "NORMAL", + "name": "1.17.7" + }, + "packageType": "GO_STDLIB" + } + ], + "relatedUrls": [ + { + "label": "More Info", + "url": "https://security-tracker.debian.org/tracker/CVE-2022-23806" + }, + { + "label": "More Info", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2022-23806" + } + ], + "severity": "CRITICAL", + "shortDescription": "CVE-2022-23806" + } + } + ], + "HIGH": [ + { + "createTime": "2023-08-23T16:57:34.166285Z", + "kind": "VULNERABILITY", + "name": "projects/test/occurrences/0339e7f1-7a8a-4a89-b121-65040b8d3c84", + "noteName": "projects/goog-vulnz/notes/CVE-2022-41715", + "resourceUri": "https://northamerica-northeast1-docker.pkg.dev/testing/test-docker/test-image@sha256:deadbeef0000000000000000000000000000000000", + "updateTime": "2023-08-23T16:57:34.166285Z", + "vulnerability": { + "cvssScore": 7.5, + "cvssVersion": "CVSS_VERSION_3", + "cvssv3": { + "attackComplexity": "ATTACK_COMPLEXITY_LOW", + "attackVector": "ATTACK_VECTOR_NETWORK", + "availabilityImpact": "IMPACT_HIGH", + "baseScore": 7.5, + "confidentialityImpact": "IMPACT_NONE", + "exploitabilityScore": 3.9, + "impactScore": 3.6, + "integrityImpact": "IMPACT_NONE", + "privilegesRequired": "PRIVILEGES_REQUIRED_NONE", + "scope": "SCOPE_UNCHANGED", + "userInteraction": "USER_INTERACTION_NONE" + }, + "effectiveSeverity": "HIGH", + "fixAvailable": true, + "longDescription": "NIST vectors: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "packageIssue": [ + { + "affectedCpeUri": "cpe:/o:debian:debian_linux:12", + "affectedPackage": "go", + "affectedVersion": { + "fullName": "1.17.6", + "kind": "NORMAL", + "name": "1.17.6" + }, + "effectiveSeverity": "HIGH", + "fileLocation": [ + { + "filePath": "/tmp/pdscan" + } + ], + "fixAvailable": true, + "fixedCpeUri": "cpe:/o:debian:debian_linux:12", + "fixedPackage": "go", + "fixedVersion": { + "fullName": "1.18.7", + "kind": "NORMAL", + "name": "1.18.7" + }, + "packageType": "GO_STDLIB" + } + ], + "relatedUrls": [ + { + "label": "More Info", + "url": "https://security-tracker.debian.org/tracker/CVE-2022-41715" + }, + { + "label": "More Info", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2022-41715" + } + ], + "severity": "HIGH", + "shortDescription": "CVE-2022-41715" + } + } + ] + } + } +} \ No newline at end of file diff --git a/unittests/tools/test_gcloud_artifact_scan_parser.py b/unittests/tools/test_gcloud_artifact_scan_parser.py new file mode 100644 index 00000000000..fc829bf70c4 --- /dev/null +++ b/unittests/tools/test_gcloud_artifact_scan_parser.py @@ -0,0 +1,20 @@ +from ..dojo_test_case import DojoTestCase, get_unit_tests_path +from dojo.tools.gcloud_artifact_scan.parser import GCloudArtifactScanParser +from dojo.models import Test + + +class TestGCloudArtifactScanParser(DojoTestCase): + def test_parse_file_with_multiple_vuln_has_multiple_findings(self): + with open(f"{get_unit_tests_path()}/scans/gcloud_artifact_scan/many_vulns.json") as testfile: + parser = GCloudArtifactScanParser() + findings = parser.get_findings(testfile, Test()) + self.assertTrue(7, len(findings)) + finding = findings[0] + self.assertEqual("projects/goog-vulnz/notes/CVE-2023-29405", finding.title) + self.assertEqual("Critical", finding.severity) + finding = findings[1] + self.assertEqual("projects/goog-vulnz/notes/CVE-2023-29402", finding.title) + self.assertEqual("Critical", finding.severity) + finding = findings[2] + self.assertEqual("projects/goog-vulnz/notes/CVE-2023-29404", finding.title) + self.assertEqual("Critical", finding.severity) From ddb8eccfe9854db886f84214b742f59b05a42a7c Mon Sep 17 00:00:00 2001 From: Cody Maffucci <46459665+Maffooch@users.noreply.github.com> Date: Thu, 18 Jan 2024 20:16:15 -0600 Subject: [PATCH 14/22] Adds ruff linter, fixes unused variables errors (#9123) * Adds ruff linter, fixes unused variables errors * Correct Flake8 * Correct some unit tests * Attempt to correct unit tests * Pull out dependencies --- .github/workflows/ruff.yml | 36 +++++++++++++++ .gitignore | 1 + dojo/api_v2/views.py | 37 +--------------- dojo/cred/views.py | 15 ------- dojo/endpoint/utils.py | 7 +-- dojo/engagement/views.py | 7 ++- dojo/filters.py | 4 +- dojo/forms.py | 17 ++++--- dojo/group/utils.py | 3 +- dojo/importers/importer/importer.py | 1 - dojo/importers/reimporter/reimporter.py | 1 - dojo/jira_link/helper.py | 44 +++++++------------ dojo/jira_link/views.py | 3 +- .../commands/csv_findings_export.py | 4 -- dojo/management/commands/migrate_surveys.py | 2 +- dojo/metrics/views.py | 1 - dojo/models.py | 3 +- dojo/note_type/views.py | 2 +- dojo/okta.py | 2 +- dojo/product/views.py | 20 --------- dojo/reports/views.py | 32 +------------- dojo/reports/widgets.py | 4 +- dojo/risk_acceptance/helper.py | 2 - dojo/survey/views.py | 4 -- dojo/templatetags/display_tags.py | 4 +- dojo/test/views.py | 3 +- dojo/tools/drheader/parser.py | 2 +- dojo/tools/humble/parser.py | 2 +- dojo/tools/mobsf/parser.py | 4 +- dojo/tools/outpost24/parser.py | 3 -- dojo/tools/qualys_webapp/parser.py | 2 - dojo/tools/ssh_audit/parser.py | 2 +- .../tools/sysdig_reports/sysdig_csv_parser.py | 2 +- dojo/tools/twistlock/parser.py | 2 +- dojo/tools/utils.py | 2 +- dojo/tools/wpscan/parser.py | 1 + dojo/user/views.py | 12 +++-- dojo/utils.py | 17 +++---- pyproject.toml | 44 +++++++++++++++++++ requirements-lint.txt | 1 + 40 files changed, 149 insertions(+), 206 deletions(-) create mode 100644 .github/workflows/ruff.yml create mode 100644 pyproject.toml create mode 100644 requirements-lint.txt diff --git a/.github/workflows/ruff.yml b/.github/workflows/ruff.yml new file mode 100644 index 00000000000..1e1882d4135 --- /dev/null +++ b/.github/workflows/ruff.yml @@ -0,0 +1,36 @@ +name: Ruff Linter + +on: + workflow_dispatch: + pull_request_target: + push: + +jobs: + ruff-linting: + runs-on: ubuntu-latest + steps: + - name: Checkout + if: github.event_name == 'pull_request' || github.event_name == 'pull_request_target' + uses: actions/checkout@v4 + # by default the pull_requst_target event checks out the base branch, i.e. dev + # so we need to explicitly checkout the head of the PR + # we use fetch-depth 0 to make sure the full history is checked out and we can compare against + # the base commit (branch) of the PR + # more info https://github.community/t/github-actions-are-severely-limited-on-prs/18179/16 + # we checkout merge_commit here as this contains all new code from dev also. we don't need to compare against base_commit + with: + persist-credentials: false + fetch-depth: 0 + ref: refs/pull/${{ github.event.pull_request.number }}/merge + # repository: ${{github.event.pull_request.head.repo.full_name}} + + - name: Checkout + # for non PR runs we just checkout the default, which is a sha on a branch probably + if: github.event_name != 'pull_request' && github.event_name != 'pull_request_target' + uses: actions/checkout@v4 + + - name: Install Ruff Linter + run: pip install -r requirements-lint.txt + + - name: Run Ruff Linter + run: ruff dojo \ No newline at end of file diff --git a/.gitignore b/.gitignore index 7edfe76d588..6eab69fb83e 100644 --- a/.gitignore +++ b/.gitignore @@ -38,6 +38,7 @@ pip-delete-this-directory.txt .tox/ .coverage .cache +.ruff_cache nosetests.xml coverage.xml diff --git a/dojo/api_v2/views.py b/dojo/api_v2/views.py index 47415125c24..40bc45b892b 100644 --- a/dojo/api_v2/views.py +++ b/dojo/api_v2/views.py @@ -111,7 +111,6 @@ from django.conf import settings from datetime import datetime from dojo.utils import ( - get_period_counts_legacy, get_system_setting, get_setting, async_delete, @@ -582,9 +581,6 @@ def notes(self, request, pk=None): serialized_note = serializers.NoteSerializer( {"author": author, "entry": entry, "private": private} ) - result = serializers.EngagementToNotesSerializer( - {"engagement_id": engagement, "notes": [serialized_note.data]} - ) return Response( serialized_note.data, status=status.HTTP_201_CREATED ) @@ -1229,9 +1225,6 @@ def notes(self, request, pk=None): serialized_note = serializers.NoteSerializer( {"author": author, "entry": entry, "private": private} ) - result = serializers.FindingToNotesSerializer( - {"finding_id": finding, "notes": [serialized_note.data]} - ) return Response( serialized_note.data, status=status.HTTP_201_CREATED ) @@ -2592,9 +2585,6 @@ def notes(self, request, pk=None): serialized_note = serializers.NoteSerializer( {"author": author, "entry": entry, "private": private} ) - result = serializers.TestToNotesSerializer( - {"test_id": test, "notes": [serialized_note.data]} - ) return Response( serialized_note.data, status=status.HTTP_201_CREATED ) @@ -3286,7 +3276,6 @@ def report_generate(request, obj, options): test = None endpoint = None endpoints = None - endpoint_monthly_counts = None include_finding_notes = False include_finding_images = False @@ -3320,16 +3309,7 @@ def report_generate(request, obj, options): ) ), ) - products = Product.objects.filter( - prod_type=product_type, engagement__test__finding__in=findings.qs - ).distinct() - engagements = Engagement.objects.filter( - product__prod_type=product_type, test__finding__in=findings.qs - ).distinct() - tests = Test.objects.filter( - engagement__product__prod_type=product_type, - finding__in=findings.qs, - ).distinct() + if len(findings.qs) > 0: start_date = timezone.make_aware( datetime.combine(findings.qs.last().date, datetime.min.time()) @@ -3344,15 +3324,6 @@ def report_generate(request, obj, options): # include current month months_between += 1 - endpoint_monthly_counts = get_period_counts_legacy( - findings.qs.order_by("numerical_severity"), - findings.qs.order_by("numerical_severity"), - None, - months_between, - start_date, - relative_delta="months", - ) - elif type(obj).__name__ == "Product": product = obj @@ -3365,11 +3336,6 @@ def report_generate(request, obj, options): Finding.objects.filter(test__engagement__product=product) ), ) - ids = set(finding.id for finding in findings.qs) - engagements = Engagement.objects.filter( - test__finding__id__in=ids - ).distinct() - tests = Test.objects.filter(finding__id__in=ids).distinct() ids = get_endpoint_ids( Endpoint.objects.filter(product=product).distinct() ) @@ -3387,7 +3353,6 @@ def report_generate(request, obj, options): report_name = "Engagement Report: " + str(engagement) ids = set(finding.id for finding in findings.qs) - tests = Test.objects.filter(finding__id__in=ids).distinct() ids = get_endpoint_ids( Endpoint.objects.filter(product=engagement.product).distinct() ) diff --git a/dojo/cred/views.py b/dojo/cred/views.py index 2c12c14d27d..53d3315be18 100644 --- a/dojo/cred/views.py +++ b/dojo/cred/views.py @@ -214,11 +214,6 @@ def view_cred_product_engagement(request, eid, ttid): title="Credential Manager", top_level=False, request=request) cred_type = "Engagement" edit_link = "" - view_link = reverse( - 'view_cred_product_engagement', args=( - eid, - cred.id, - )) delete_link = reverse( 'delete_cred_engagement', args=( eid, @@ -270,11 +265,6 @@ def view_cred_engagement_test(request, tid, ttid): title="Credential Manager", top_level=False, request=request) cred_type = "Test" edit_link = None - view_link = reverse( - 'view_cred_engagement_test', args=( - tid, - cred.id, - )) delete_link = reverse( 'delete_cred_test', args=( tid, @@ -326,11 +316,6 @@ def view_cred_finding(request, fid, ttid): title="Credential Manager", top_level=False, request=request) cred_type = "Finding" edit_link = None - view_link = reverse( - 'view_cred_finding', args=( - fid, - cred.id, - )) delete_link = reverse( 'delete_cred_finding', args=( fid, diff --git a/dojo/endpoint/utils.py b/dojo/endpoint/utils.py index 99da6fb33bf..06afb192424 100644 --- a/dojo/endpoint/utils.py +++ b/dojo/endpoint/utils.py @@ -11,6 +11,7 @@ from django.core.validators import validate_ipv46_address from django.core.exceptions import ValidationError from django.db.models import Q, Count +from django.http import HttpResponseRedirect from dojo.models import Endpoint, DojoMeta @@ -308,13 +309,12 @@ def endpoint_meta_import(file, product, create_endpoints, create_tags, create_me content = file.read() sig = content.decode('utf-8-sig') content = sig.encode("utf-8") - if type(content) is bytes: + if isinstance(content, bytes): content = content.decode('utf-8') reader = csv.DictReader(io.StringIO(content)) if 'hostname' not in reader.fieldnames: if origin == 'UI': - from django.http import HttpResponseRedirect messages.add_message( request, messages.ERROR, @@ -322,7 +322,6 @@ def endpoint_meta_import(file, product, create_endpoints, create_tags, create_me extra_tags='alert-danger') return HttpResponseRedirect(reverse('import_endpoint_meta', args=(product.id, ))) elif origin == 'API': - from rest_framework.serializers import ValidationError raise ValidationError('The column "hostname" must be present to map host to Endpoint.') keys = [key for key in reader.fieldnames if key != 'hostname'] @@ -368,8 +367,6 @@ def endpoint_meta_import(file, product, create_endpoints, create_tags, create_me def remove_broken_endpoint_statuses(apps): - Finding = apps.get_model('dojo', 'Finding') - Endpoint = apps.get_model('dojo', 'Endpoint') Endpoint_Status = apps.get_model('dojo', 'endpoint_status') broken_eps = Endpoint_Status.objects.filter(Q(endpoint=None) | Q(finding=None)) if broken_eps.count() == 0: diff --git a/dojo/engagement/views.py b/dojo/engagement/views.py index 45b45833e0b..20804e1fb06 100644 --- a/dojo/engagement/views.py +++ b/dojo/engagement/views.py @@ -213,7 +213,6 @@ def edit_engagement(request, eid): jira_project_form = None jira_epic_form = None jira_project = None - jira_error = False if request.method == 'POST': form = EngForm(request.POST, instance=engagement, cicd=is_ci_cd, product=engagement.product, user=request.user) @@ -430,7 +429,6 @@ def view_engagement(request, eid): form = TypedNoteForm(available_note_types=available_note_types) else: form = NoteForm() - url = request.build_absolute_uri(reverse("view_engagement", args=(eng.id,))) title = "Engagement: %s on %s" % (eng.name, eng.product.name) messages.add_message(request, messages.SUCCESS, @@ -1107,7 +1105,8 @@ def view_edit_risk_acceptance(request, eid, raid, edit_mode=False): @user_is_authorized(Engagement, Permissions.Risk_Acceptance, 'eid') def expire_risk_acceptance(request, eid, raid): risk_acceptance = get_object_or_404(prefetch_for_expiration(Risk_Acceptance.objects.all()), pk=raid) - eng = get_object_or_404(Engagement, pk=eid) + # Validate the engagement ID exists before moving forward + get_object_or_404(Engagement, pk=eid) ra_helper.expire_now(risk_acceptance) @@ -1231,7 +1230,7 @@ def engagement_ics(request, eid): def get_list_index(list, index): try: element = list[index] - except Exception as e: + except Exception: element = None return element diff --git a/dojo/filters.py b/dojo/filters.py index eb9dcbe389b..ebb7aeb1b9e 100644 --- a/dojo/filters.py +++ b/dojo/filters.py @@ -228,7 +228,7 @@ def cwe_options(queryset): cwe = dict() cwe = dict([cwe, cwe] for cwe in queryset.order_by().values_list('cwe', flat=True).distinct() - if type(cwe) is int and cwe is not None and cwe > 0) + if isinstance(cwe, int) and cwe is not None and cwe > 0) cwe = collections.OrderedDict(sorted(cwe.items())) return list(cwe.items()) @@ -267,7 +267,7 @@ def get_tags_model_from_field_name(field): parts = field.split('__') model_name = parts[-2] return apps.get_model('dojo.%s' % model_name, require_ready=True), exclude - except Exception as e: + except Exception: return None, exclude diff --git a/dojo/forms.py b/dojo/forms.py index fd2b6844ec3..b544c09d05f 100755 --- a/dojo/forms.py +++ b/dojo/forms.py @@ -49,6 +49,7 @@ from dojo.user.queries import get_authorized_users_for_product_and_product_type, get_authorized_users from dojo.user.utils import get_configuration_permissions_fields from dojo.group.queries import get_authorized_groups, get_group_member_roles +import dojo.jira_link.helper as jira_helper logger = logging.getLogger(__name__) @@ -111,7 +112,6 @@ def render(self, name, value, attrs=None, renderer=None): if match: year_val, month_val, - day_val = [int(v) for v in match.groups()] output = [] @@ -673,7 +673,7 @@ class MergeFindings(forms.ModelForm): help_text="The action to take on the merged finding. Set the findings to inactive or delete the findings.") def __init__(self, *args, **kwargs): - finding = kwargs.pop('finding') + _ = kwargs.pop('finding') findings = kwargs.pop('findings') super(MergeFindings, self).__init__(*args, **kwargs) @@ -2279,7 +2279,8 @@ def clean(self): form_data = self.cleaned_data try: - jira = jira_helper.get_jira_connection_raw(form_data['url'], form_data['username'], form_data['password']) + # Attempt to validate the credentials before moving forward + _ = jira_helper.get_jira_connection_raw(form_data['url'], form_data['username'], form_data['password']) logger.debug('valid JIRA config!') except Exception as e: # form only used by admins, so we can show full error message using str(e) which can help debug any problems @@ -2306,7 +2307,8 @@ def clean(self): form_data = self.cleaned_data try: - jira = jira_helper.get_jira_connection_raw(form_data['url'], form_data['username'], form_data['password'],) + # Attempt to validate the credentials before moving forward + _ = jira_helper.get_jira_connection_raw(form_data['url'], form_data['username'], form_data['password'],) logger.debug('valid JIRA config!') except Exception as e: # form only used by admins, so we can show full error message using str(e) which can help debug any problems @@ -2817,8 +2819,7 @@ def __init__(self, *args, **kwargs): def clean(self): logger.debug('jform clean') - import dojo.jira_link.helper as jira_helper - cleaned_data = super(JIRAFindingForm, self).clean() + super(JIRAFindingForm, self).clean() jira_issue_key_new = self.cleaned_data.get('jira_issue') finding = self.instance jira_project = self.jira_project @@ -3021,8 +3022,6 @@ def __init__(self, *args, **kwargs): initial=initial_answer, ) - answer = self.fields['answer'] - def save(self): if not self.is_valid(): raise forms.ValidationError('form is not valid') @@ -3095,7 +3094,7 @@ def clean_answer(self): real_answer = self.cleaned_data.get('answer') # for single choice questions, the selected answer is a single string - if type(real_answer) is not list: + if not isinstance(real_answer, list): real_answer = [real_answer] return real_answer diff --git a/dojo/group/utils.py b/dojo/group/utils.py index 67dc2868aee..be7f5ea1d63 100644 --- a/dojo/group/utils.py +++ b/dojo/group/utils.py @@ -15,7 +15,8 @@ def get_auth_group_name(group, attempt=0): auth_group_name = group.name + '_' + str(attempt) try: - auth_group = Group.objects.get(name=auth_group_name) + # Attempt to fetch an existing group before moving forward with the real operation + _ = Group.objects.get(name=auth_group_name) return get_auth_group_name(group, attempt + 1) except Group.DoesNotExist: return auth_group_name diff --git a/dojo/importers/importer/importer.py b/dojo/importers/importer/importer.py index baed2c8d421..cb7af1e728a 100644 --- a/dojo/importers/importer/importer.py +++ b/dojo/importers/importer/importer.py @@ -72,7 +72,6 @@ def process_parsed_findings(self, test, parsed_findings, scan_type, user, active new_findings = [] items = parsed_findings logger.debug('starting import of %i items.', len(items) if items else 0) - i = 0 group_names_to_findings_dict = {} for item in items: diff --git a/dojo/importers/reimporter/reimporter.py b/dojo/importers/reimporter/reimporter.py index 39db0d7e3e0..107068d11fa 100644 --- a/dojo/importers/reimporter/reimporter.py +++ b/dojo/importers/reimporter/reimporter.py @@ -49,7 +49,6 @@ def process_parsed_findings( items = parsed_findings original_items = list(test.finding_set.all()) new_items = [] - mitigated_count = 0 finding_count = 0 finding_added_count = 0 reactivated_count = 0 diff --git a/dojo/jira_link/helper.py b/dojo/jira_link/helper.py index 82ee5477be6..8a8b208d45f 100644 --- a/dojo/jira_link/helper.py +++ b/dojo/jira_link/helper.py @@ -99,7 +99,7 @@ def can_be_pushed_to_jira(obj, form=None): # findings or groups already having an existing jira issue can always be pushed return True, None, None - if type(obj) is Finding: + if isinstance(obj, Finding): if form: active = form['active'].value() verified = form['verified'].value() @@ -122,7 +122,7 @@ def can_be_pushed_to_jira(obj, form=None): if jira_minimum_threshold and jira_minimum_threshold > Finding.get_number_severity(severity): logger.debug('Finding below the minimum JIRA severity threshold (%s).' % System_Settings.objects.get().jira_minimum_severity) return False, 'Finding below the minimum JIRA severity threshold (%s).' % System_Settings.objects.get().jira_minimum_severity, 'below_minimum_threshold' - elif type(obj) is Finding_Group: + elif isinstance(obj, Finding_Group): if not obj.findings.all(): return False, '%s cannot be pushed to jira as it is empty.' % to_str_typed(obj), 'error_empty' if 'Active' not in obj.status(): @@ -383,8 +383,6 @@ def get_jira_connection_raw(jira_server, jira_username, jira_password): # Gets a connection to a Jira server based on the finding def get_jira_connection(obj): - jira = None - jira_instance = obj if not isinstance(jira_instance, JIRA_Instance): jira_instance = get_jira_instance(obj) @@ -521,10 +519,10 @@ def get_labels(obj): labels.append(prod_name_label) if system_settings.add_vulnerability_id_to_jira_label or jira_project and jira_project.add_vulnerability_id_to_jira_label: - if type(obj) is Finding and obj.vulnerability_ids: + if isinstance(obj, Finding) and obj.vulnerability_ids: for id in obj.vulnerability_ids: labels.append(id) - elif type(obj) is Finding_Group: + elif isinstance(obj, Finding_Group): for finding in obj.findings.all(): for id in finding.vulnerability_ids: labels.append(id) @@ -540,7 +538,7 @@ def get_tags(obj): if obj_tags: for tag in obj_tags: tags.append(str(tag.name.replace(' ', '-'))) - if type(obj) is Finding_Group: + if isinstance(obj, Finding_Group): for finding in obj.findings.all(): obj_tags = finding.tags.all() if obj_tags: @@ -553,11 +551,9 @@ def get_tags(obj): def jira_summary(obj): summary = '' - - if type(obj) is Finding: + if isinstance(obj, Finding): summary = obj.title - - if type(obj) is Finding_Group: + if isinstance(obj, Finding_Group): summary = obj.name return summary.replace('\r', '').replace('\n', '')[:255] @@ -584,9 +580,9 @@ def jira_priority(obj): def jira_environment(obj): - if type(obj) is Finding: + if isinstance(obj, Finding): return "\n".join([str(endpoint) for endpoint in obj.endpoints.all()]) - elif type(obj) is Finding_Group: + elif isinstance(obj, Finding_Group): return "\n".join([jira_environment(finding) for finding in obj.findings.all()]) else: return '' @@ -715,7 +711,7 @@ def add_jira_issue(obj, *args, **kwargs): obj_can_be_pushed_to_jira, error_message, error_code = can_be_pushed_to_jira(obj) if not obj_can_be_pushed_to_jira: - if type(obj) is Finding and obj.duplicate and not obj.active: + if isinstance(obj, Finding) and obj.duplicate and not obj.active: logger.warning("%s will not be pushed to JIRA as it's a duplicate finding", to_str_typed(obj)) else: log_jira_alert(error_message, obj) @@ -762,7 +758,7 @@ def add_jira_issue(obj, *args, **kwargs): # Upload dojo finding screenshots to Jira findings = [obj] - if type(obj) is Finding_Group: + if isinstance(obj, Finding_Group): findings = obj.findings.all() for find in findings: @@ -794,7 +790,7 @@ def add_jira_issue(obj, *args, **kwargs): j_issue.jira_creation = timezone.now() j_issue.jira_change = timezone.now() j_issue.save() - issue = jira.issue(new_issue.id) + jira.issue(new_issue.id) logger.info('Created the following jira issue for %d:%s', obj.id, to_str_typed(obj)) @@ -884,7 +880,7 @@ def update_jira_issue(obj, *args, **kwargs): # Upload dojo finding screenshots to Jira findings = [obj] - if type(obj) is Finding_Group: + if isinstance(obj, Finding_Group): findings = obj.findings.all() for find in findings: @@ -1030,12 +1026,12 @@ def get_issuetype_fields( project = None try: project = meta['projects'][0] - except Exception as e: + except Exception: raise JIRAError("Project misconfigured or no permissions in Jira ?") try: issuetype_fields = project['issuetypes'][0]['fields'].keys() - except Exception as e: + except Exception: raise JIRAError("Misconfigured default issue type ?") else: @@ -1062,7 +1058,7 @@ def get_issuetype_fields( try: issuetype_fields = [f['fieldId'] for f in issuetype_fields['values']] - except Exception as e: + except Exception: raise JIRAError("Misconfigured default issue type ?") except JIRAError as e: @@ -1080,7 +1076,7 @@ def is_jira_project_valid(jira_project): jira = get_jira_connection(jira_project) get_issuetype_fields(jira, jira_project.project_key, jira_project.jira_instance.default_issue_type) return True - except JIRAError as e: + except JIRAError: logger.debug("invalid JIRA Project Config, can't retrieve metadata for '%s'", jira_project) return False @@ -1345,8 +1341,6 @@ def finding_link_jira(request, finding, new_jira_issue_key): finding.save(push_to_jira=False, dedupe_option=False, issue_updater_option=False) - jira_issue_url = get_jira_url(finding) - return True @@ -1377,8 +1371,6 @@ def finding_group_link_jira(request, finding_group, new_jira_issue_key): finding_group.save() - jira_issue_url = get_jira_url(finding_group) - return True @@ -1390,8 +1382,6 @@ def unlink_jira(request, obj): logger.debug('removing linked jira issue %s for %i:%s', obj.jira_issue.jira_key, obj.id, to_str_typed(obj)) obj.jira_issue.delete() # finding.save(push_to_jira=False, dedupe_option=False, issue_updater_option=False) - # jira_issue_url = get_jira_url(finding) - return True # return True if no errors diff --git a/dojo/jira_link/views.py b/dojo/jira_link/views.py index 9f3aafda056..e05ea5ce219 100644 --- a/dojo/jira_link/views.py +++ b/dojo/jira_link/views.py @@ -326,7 +326,8 @@ def new_jira(request): jira_password = jform.cleaned_data.get('password') logger.debug('calling get_jira_connection_raw') - jira = jira_helper.get_jira_connection_raw(jira_server, jira_username, jira_password) + # Make sure the connection can be completed + jira_helper.get_jira_connection_raw(jira_server, jira_username, jira_password) new_j = jform.save(commit=False) new_j.url = jira_server diff --git a/dojo/management/commands/csv_findings_export.py b/dojo/management/commands/csv_findings_export.py index 009e57cbd80..80c2e2b591e 100644 --- a/dojo/management/commands/csv_findings_export.py +++ b/dojo/management/commands/csv_findings_export.py @@ -26,10 +26,6 @@ def handle(self, *args, **options): findings = Finding.objects.filter(verified=True, active=True).select_related( "test__engagement__product") - opts = findings.model._meta - model = findings.model - - model = findings.model writer = csv.writer(open(file_path, 'w')) headers = [] diff --git a/dojo/management/commands/migrate_surveys.py b/dojo/management/commands/migrate_surveys.py index bba80706323..25d38c028c7 100644 --- a/dojo/management/commands/migrate_surveys.py +++ b/dojo/management/commands/migrate_surveys.py @@ -39,7 +39,7 @@ def handle(self, *args, **options): # Get unique ploymorphic id for the system ctype_id = 0 # First create a temp question to pull the polymorphic_ctype_id from - created_question = TextQuestion.objects.create(optional=False, order=1, text='What is love?') + TextQuestion.objects.create(optional=False, order=1, text='What is love?') # Get the ID used in this system cursor.execute("select polymorphic_ctype_id from dojo_question;") row = cursor.fetchone() diff --git a/dojo/metrics/views.py b/dojo/metrics/views.py index 342c7b1229c..e00cbcb857a 100644 --- a/dojo/metrics/views.py +++ b/dojo/metrics/views.py @@ -390,7 +390,6 @@ def metrics(request, mtype): request.GET._mutable = True request.GET.appendlist('test__engagement__product__prod_type', mtype) request.GET._mutable = False - product = pt[0].name show_pt_filter = False page_name = _('%(product_type)s Metrics') % {'product_type': mtype} prod_type = pt diff --git a/dojo/models.py b/dojo/models.py index 71c6f7ad2df..527d58aac2c 100755 --- a/dojo/models.py +++ b/dojo/models.py @@ -2810,7 +2810,8 @@ def github(self): def has_github_issue(self): try: - issue = self.github_issue + # Attempt to access the github issue if it exists. If not, an exception will be caught + _ = self.github_issue return True except GITHUB_Issue.DoesNotExist: return False diff --git a/dojo/note_type/views.py b/dojo/note_type/views.py index 00a0ef663e8..76d9c051b99 100644 --- a/dojo/note_type/views.py +++ b/dojo/note_type/views.py @@ -111,7 +111,7 @@ def add_note_type(request): if request.method == 'POST': form = NoteTypeForm(request.POST) if form.is_valid(): - note_type = form.save() + form.save() messages.add_message(request, messages.SUCCESS, 'Note Type added successfully.', diff --git a/dojo/okta.py b/dojo/okta.py index e600668b397..c42b065250c 100644 --- a/dojo/okta.py +++ b/dojo/okta.py @@ -85,7 +85,7 @@ def validate_and_return_id_token(self, id_token, access_token): except ExpiredSignatureError: k = key break - except JWTError as e: + except JWTError: if k is None and client_id == 'a-key': k = self.get_jwks_keys()[0] pass diff --git a/dojo/product/views.py b/dojo/product/views.py index aeb6415ea69..be1b9afe0c8 100755 --- a/dojo/product/views.py +++ b/dojo/product/views.py @@ -61,15 +61,7 @@ def product(request): - # validate prod_type param - product_type = None - if 'prod_type' in request.GET: - p = request.GET.getlist('prod_type', []) - if len(p) == 1: - product_type = get_object_or_404(Product_Type, id=p[0]) - prods = get_authorized_products(Permissions.Product_View) - # perform all stuff for filtering and pagination first, before annotation/prefetching # otherwise the paginator will perform all the annotations/prefetching already only to count the total number of records # see https://code.djangoproject.com/ticket/23771 and https://code.djangoproject.com/ticket/25375 @@ -516,7 +508,6 @@ def view_product_metrics(request, pid): start_date = filters['start_date'] end_date = filters['end_date'] - week_date = filters['week'] tests = Test.objects.filter(engagement__product=prod).prefetch_related('finding_set', 'test_type') tests = tests.annotate(verified_finding_count=Count('finding__id', filter=Q(finding__verified=True))) @@ -535,7 +526,6 @@ def view_product_metrics(request, pid): add_breadcrumb(parent=prod, top_level=False, request=request) open_close_weekly = OrderedDict() - new_weekly = OrderedDict() severity_weekly = OrderedDict() critical_weekly = OrderedDict() high_weekly = OrderedDict() @@ -604,10 +594,6 @@ def view_product_metrics(request, pid): open_objs_by_severity[v.severity] += 1 for a in filters.get('accepted', None): - if view == 'Finding': - finding = a - elif view == 'Endpoint': - finding = v.finding iso_cal = a.date.isocalendar() x = iso_to_gregorian(iso_cal[0], iso_cal[1], 1) y = x.strftime("%m/%d
        %Y
        ") @@ -888,7 +874,6 @@ def edit_product(request, pid): jira_project = jira_helper.get_jira_project(product) if form.is_valid(): form.save() - tags = request.POST.getlist('tags') messages.add_message(request, messages.SUCCESS, _('Product updated successfully.'), @@ -1002,16 +987,13 @@ def delete_product(request, pid): @user_is_authorized(Product, Permissions.Engagement_Add, 'pid') def new_eng_for_app(request, pid, cicd=False): - jira_project = None jira_project_form = None jira_epic_form = None product = Product.objects.get(id=pid) - jira_error = False if request.method == 'POST': form = EngForm(request.POST, cicd=cicd, product=product, user=request.user) - jira_project = jira_helper.get_jira_project(product) logger.debug('new_eng_for_app') if form.is_valid(): @@ -1070,7 +1052,6 @@ def new_eng_for_app(request, pid, cicd=False): product=product, user=request.user) if get_system_setting('enable_jira'): - jira_project = jira_helper.get_jira_project(product) logger.debug('showing jira-project-form') jira_project_form = JIRAProjectForm(target='engagement', product=product) logger.debug('showing jira-epic-form') @@ -1376,7 +1357,6 @@ def process_jira_form(self, request: HttpRequest, finding: Finding, context: dic # if the jira issue key was changed, update database new_jira_issue_key = context["jform"].cleaned_data.get('jira_issue') if finding.has_jira_issue: - jira_issue = finding.jira_issue # everything in DD around JIRA integration is based on the internal id of the issue in JIRA # instead of on the public jira issue key. # I have no idea why, but it means we have to retrieve the issue from JIRA to get the internal JIRA id. diff --git a/dojo/reports/views.py b/dojo/reports/views.py index 119f099d3c9..d4697dd2dd9 100644 --- a/dojo/reports/views.py +++ b/dojo/reports/views.py @@ -130,12 +130,6 @@ def report_findings(request): paged_findings = get_page_items(request, findings.qs.distinct().order_by('numerical_severity'), 25) - product_type = None - if 'test__engagement__product__prod_type' in request.GET: - p = request.GET.getlist('test__engagement__product__prod_type', []) - if len(p) == 1: - product_type = get_object_or_404(Product_Type, id=p[0]) - return render(request, 'dojo/report_findings.html', {"findings": paged_findings, @@ -221,7 +215,6 @@ def endpoint_host_report(request, eid): @user_is_authorized(Product, Permissions.Product_View, 'pid') def product_endpoint_report(request, pid): - user = Dojo_User.objects.get(id=request.user.id) product = get_object_or_404(Product.objects.all().prefetch_related('engagement_set__test_set__test_type', 'engagement_set__test_set__environment'), id=pid) endpoint_ids = Endpoint.objects.filter(product=product, finding__active=True, @@ -247,13 +240,7 @@ def product_endpoint_report(request, pid): generate = "_generate" in request.GET add_breadcrumb(parent=product, title="Vulnerable Product Endpoints Report", top_level=False, request=request) report_form = ReportOptionsForm() - template = "dojo/product_endpoint_pdf_report.html" - report_name = "Product Endpoint Report: " + str(product) - report_title = "Product Endpoint Report" - report_subtitle = str(product) - report_info = "Generated By %s on %s" % ( - user.get_full_name(), (timezone.now().strftime("%m/%d/%Y %I:%M%p %Z"))) try: start_date = Finding.objects.filter(endpoints__in=endpoints.qs).order_by('date')[:1][0].date @@ -354,14 +341,7 @@ def generate_report(request, obj, host_view=False): test = None endpoint = None endpoints = None - accepted_findings = None - open_findings = None - closed_findings = None - verified_findings = None report_title = None - report_subtitle = None - report_info = "Generated By %s on %s" % ( - user.get_full_name(), (timezone.now().strftime("%m/%d/%Y %I:%M%p %Z"))) if type(obj).__name__ == "Product_Type": user_has_permission_or_403(request.user, obj, Permissions.Product_Type_View) @@ -393,14 +373,12 @@ def generate_report(request, obj, host_view=False): disclaimer = 'Please configure in System Settings.' generate = "_generate" in request.GET report_name = str(obj) - report_type = type(obj).__name__ add_breadcrumb(title="Generate Report", top_level=False, request=request) if type(obj).__name__ == "Product_Type": product_type = obj template = "dojo/product_type_pdf_report.html" report_name = "Product Type Report: " + str(product_type) report_title = "Product Type Report" - report_subtitle = str(product_type) findings = ReportFindingFilter(request.GET, prod_type=product_type, queryset=prefetch_related_findings_for_report(Finding.objects.filter( test__engagement__product__prod_type=product_type))) @@ -452,7 +430,6 @@ def generate_report(request, obj, host_view=False): template = "dojo/product_pdf_report.html" report_name = "Product Report: " + str(product) report_title = "Product Report" - report_subtitle = str(product) findings = ReportFindingFilter(request.GET, product=product, queryset=prefetch_related_findings_for_report(Finding.objects.filter( test__engagement__product=product))) ids = set(finding.id for finding in findings.qs) @@ -485,7 +462,6 @@ def generate_report(request, obj, host_view=False): report_name = "Engagement Report: " + str(engagement) template = 'dojo/engagement_pdf_report.html' report_title = "Engagement Report" - report_subtitle = str(engagement) ids = set(finding.id for finding in findings.qs) tests = Test.objects.filter(finding__id__in=ids).distinct() @@ -515,7 +491,6 @@ def generate_report(request, obj, host_view=False): template = "dojo/test_pdf_report.html" report_name = "Test Report: " + str(test) report_title = "Test Report" - report_subtitle = str(test) context = {'test': test, 'report_name': report_name, @@ -539,13 +514,10 @@ def generate_report(request, obj, host_view=False): endpoints = Endpoint.objects.filter(host=endpoint.host, product=endpoint.product).distinct() report_title = "Endpoint Host Report" - report_subtitle = endpoint.host else: report_name = "Endpoint Report: " + str(endpoint) endpoints = Endpoint.objects.filter(pk=endpoint.id).distinct() report_title = "Endpoint Report" - report_subtitle = str(endpoint) - report_type = "Endpoint" template = 'dojo/endpoint_pdf_report.html' findings = ReportFindingFilter(request.GET, queryset=prefetch_related_findings_for_report(Finding.objects.filter(endpoints__in=endpoints))) @@ -568,10 +540,8 @@ def generate_report(request, obj, host_view=False): elif type(obj).__name__ in ["QuerySet", "CastTaggedQuerySet", "TagulousCastTaggedQuerySet"]: findings = ReportFindingFilter(request.GET, queryset=prefetch_related_findings_for_report(obj).distinct()) report_name = 'Finding' - report_type = 'Finding' template = 'dojo/finding_pdf_report.html' report_title = "Finding Report" - report_subtitle = '' context = {'findings': findings.qs.distinct().order_by('numerical_severity'), 'report_name': report_name, @@ -726,7 +696,7 @@ def generate_quick_report(request, findings, obj=None): def get_list_index(list, index): try: element = list[index] - except Exception as e: + except Exception: element = None return element diff --git a/dojo/reports/widgets.py b/dojo/reports/widgets.py index 6715e8fbd70..8de81af33be 100644 --- a/dojo/reports/widgets.py +++ b/dojo/reports/widgets.py @@ -28,7 +28,7 @@ class CustomReportJsonForm(forms.Form): def clean_json(self): jdata = self.cleaned_data['json'] try: - json_data = json.loads(jdata) + json.loads(jdata) except: raise forms.ValidationError("Invalid data in json") return jdata @@ -405,8 +405,6 @@ def report_widget_factory(json_data=None, request=None, user=None, finding_notes d.appendlist(item['name'], item['value']) else: d[item['name']] = item['value'] - from dojo.endpoint.views import get_endpoint_ids - ids = get_endpoint_ids(endpoints) endpoints = Endpoint.objects.filter(id__in=endpoints) endpoints = EndpointFilter(d, queryset=endpoints, user=request.user) diff --git a/dojo/risk_acceptance/helper.py b/dojo/risk_acceptance/helper.py index a27529e68ee..1412d7a230b 100644 --- a/dojo/risk_acceptance/helper.py +++ b/dojo/risk_acceptance/helper.py @@ -278,8 +278,6 @@ def risk_unaccept(finding, perform_save=True): logger.debug('unaccepting finding %i:%s if it is currently risk accepted', finding.id, finding) if finding.risk_accepted: logger.debug('unaccepting finding %i:%s', finding.id, finding) - # keep reference to ra to for posting comments later - risk_acceptance = finding.risk_acceptance # removing from ManyToMany will not fail for non-existing entries remove_from_any_risk_acceptance(finding) if not finding.mitigated and not finding.false_p and not finding.out_of_scope: diff --git a/dojo/survey/views.py b/dojo/survey/views.py index d1647e7ddea..f3043b1b757 100644 --- a/dojo/survey/views.py +++ b/dojo/survey/views.py @@ -71,7 +71,6 @@ def delete_engagement_survey(request, eid, sid): def answer_questionnaire(request, eid, sid): survey = get_object_or_404(Answered_Survey, id=sid) engagement = get_object_or_404(Engagement, id=eid) - prod = engagement.product system_settings = System_Settings.objects.all()[0] if not system_settings.allow_anonymous_survey_repsonse: @@ -398,13 +397,11 @@ def edit_questionnaire_questions(request, sid): @user_is_configuration_authorized('dojo.view_engagement_survey') def questionnaire(request): - user = request.user surveys = Engagement_Survey.objects.all() surveys = QuestionnaireFilter(request.GET, queryset=surveys) paged_surveys = get_page_items(request, surveys.qs, 25) general_surveys = General_Survey.objects.all() for survey in general_surveys: - survey_exp = survey.expiration if survey.expiration < tz.now(): survey.delete() @@ -503,7 +500,6 @@ def create_question(request): @user_is_configuration_authorized('dojo.change_question') def edit_question(request, qid): - error = False question = get_object_or_404(Question, id=qid) survey = Engagement_Survey.objects.filter(questions__in=[question]) reverted = False diff --git a/dojo/templatetags/display_tags.py b/dojo/templatetags/display_tags.py index fd5b88ca80a..d0251eaad43 100644 --- a/dojo/templatetags/display_tags.py +++ b/dojo/templatetags/display_tags.py @@ -986,9 +986,9 @@ def import_history(finding, autoescape=True): return '' if autoescape: - esc = conditional_escape + conditional_escape else: - esc = lambda x: x + lambda x: x # prefetched, so no filtering here status_changes = finding.test_import_finding_action_set.all() diff --git a/dojo/test/views.py b/dojo/test/views.py index 9ad18d9091c..36a7080c312 100644 --- a/dojo/test/views.py +++ b/dojo/test/views.py @@ -256,7 +256,7 @@ def edit_test(request, tid): if request.method == 'POST': form = TestForm(request.POST, instance=test) if form.is_valid(): - new_test = form.save() + form.save() messages.add_message(request, messages.SUCCESS, _('Test saved.'), @@ -532,7 +532,6 @@ def process_jira_form(self, request: HttpRequest, finding: Finding, context: dic # if the jira issue key was changed, update database new_jira_issue_key = context["jform"].cleaned_data.get('jira_issue') if finding.has_jira_issue: - jira_issue = finding.jira_issue # everything in DD around JIRA integration is based on the internal id of the issue in JIRA # instead of on the public jira issue key. # I have no idea why, but it means we have to retrieve the issue from JIRA to get the internal JIRA id. diff --git a/dojo/tools/drheader/parser.py b/dojo/tools/drheader/parser.py index 50fd5554f6d..eeeed1e5e17 100644 --- a/dojo/tools/drheader/parser.py +++ b/dojo/tools/drheader/parser.py @@ -42,7 +42,7 @@ def get_findings(self, filename, test): items = [] try: data = json.load(filename) - except ValueError as err: + except ValueError: data = {} if data != {} and data[0].get("url") is not None: for item in data: diff --git a/dojo/tools/humble/parser.py b/dojo/tools/humble/parser.py index 689ce080187..68ec2741bd3 100644 --- a/dojo/tools/humble/parser.py +++ b/dojo/tools/humble/parser.py @@ -18,7 +18,7 @@ def get_findings(self, filename, test): items = [] try: data = json.load(filename) - except ValueError as err: + except ValueError: data = {} if data != {}: url = data['[0. Info]']['URL'] diff --git a/dojo/tools/mobsf/parser.py b/dojo/tools/mobsf/parser.py index 09ce4ab9b7c..5560a2f79b6 100644 --- a/dojo/tools/mobsf/parser.py +++ b/dojo/tools/mobsf/parser.py @@ -88,7 +88,7 @@ def get_findings(self, filename, test): # Mobile Permissions if "permissions" in data: # for permission, details in data["permissions"].items(): - if type(data["permissions"]) is list: + if isinstance(data["permissions"], list): for details in data["permissions"]: mobsf_item = { "category": "Mobile Permissions", @@ -204,7 +204,7 @@ def get_findings(self, filename, test): # Binary Analysis if "binary_analysis" in data: - if type(data["binary_analysis"]) is list: + if isinstance(data["binary_analysis"], list): for details in data["binary_analysis"]: for binary_analysis_type in details: if "name" != binary_analysis_type: diff --git a/dojo/tools/outpost24/parser.py b/dojo/tools/outpost24/parser.py index 8fd244cc425..af07759f1ec 100644 --- a/dojo/tools/outpost24/parser.py +++ b/dojo/tools/outpost24/parser.py @@ -57,9 +57,6 @@ def get_findings(self, file, test): else: severity = "Critical" cvss_description = detail.findtext("cvss_vector_description") - cvss_vector = detail.findtext("cvss_v3_vector") or detail.findtext( - "cvss_vector" - ) severity_justification = "{}\n{}".format( cvss_score, cvss_description ) diff --git a/dojo/tools/qualys_webapp/parser.py b/dojo/tools/qualys_webapp/parser.py index 843d497a5bb..c564c76cd22 100644 --- a/dojo/tools/qualys_webapp/parser.py +++ b/dojo/tools/qualys_webapp/parser.py @@ -193,7 +193,6 @@ def get_unique_vulnerabilities( # Iterate through all vulnerabilites to pull necessary info for vuln in vulnerabilities: urls = [] - requests = response = "" qid = int(vuln.findtext("QID")) url = vuln.findtext("URL") if url is not None: @@ -261,7 +260,6 @@ def get_vulnerabilities( # Iterate through all vulnerabilites to pull necessary info for vuln in vulnerabilities: urls = [] - requests = response = "" qid = int(vuln.findtext("QID")) url = vuln.findtext("URL") if url is not None: diff --git a/dojo/tools/ssh_audit/parser.py b/dojo/tools/ssh_audit/parser.py index 3bcac5e5eed..1c0868b4c88 100644 --- a/dojo/tools/ssh_audit/parser.py +++ b/dojo/tools/ssh_audit/parser.py @@ -35,7 +35,7 @@ def get_findings(self, filename, test): items = [] try: data = json.load(filename) - except ValueError as err: + except ValueError: data = {} if data != {}: title = data['banner']['raw'] diff --git a/dojo/tools/sysdig_reports/sysdig_csv_parser.py b/dojo/tools/sysdig_reports/sysdig_csv_parser.py index 84fee6daac1..21d5e946fa2 100644 --- a/dojo/tools/sysdig_reports/sysdig_csv_parser.py +++ b/dojo/tools/sysdig_reports/sysdig_csv_parser.py @@ -14,7 +14,7 @@ def parse(self, filename) -> SysdigData: return () content = filename.read() - if type(content) is bytes: + if isinstance(content, bytes): content = content.decode('utf-8') reader = csv.DictReader(io.StringIO(content), delimiter=',', quotechar='"') diff --git a/dojo/tools/twistlock/parser.py b/dojo/tools/twistlock/parser.py index 2c8a3e335d0..5c7c23d887d 100644 --- a/dojo/tools/twistlock/parser.py +++ b/dojo/tools/twistlock/parser.py @@ -22,7 +22,7 @@ def parse_issue(self, row, test): row.get("Id", "") data_severity = row.get("Severity", "") data_cvss = row.get("CVSS", "") - data_description = description_column = row.get("Description", "") + data_description = row.get("Description", "") if data_vulnerability_id and data_package_name: title = ( diff --git a/dojo/tools/utils.py b/dojo/tools/utils.py index 8a26b44302d..4820382ef8f 100644 --- a/dojo/tools/utils.py +++ b/dojo/tools/utils.py @@ -14,7 +14,7 @@ def get_npm_cwe(item_node): """ cwe_node = item_node.get('cwe') if cwe_node: - if type(cwe_node) == list: + if isinstance(cwe_node, list): return int(cwe_node[0][4:]) elif cwe_node.startswith('CWE-'): cwe_string = cwe_node[4:] diff --git a/dojo/tools/wpscan/parser.py b/dojo/tools/wpscan/parser.py index 1792de7700b..b6f3bd01afe 100644 --- a/dojo/tools/wpscan/parser.py +++ b/dojo/tools/wpscan/parser.py @@ -138,6 +138,7 @@ def get_findings(self, file, test): finding = Finding( title=f"Interesting finding: {interesting_finding.get('to_s')}", description=description, + references=references, severity="Info", dynamic_finding=True, static_finding=False, diff --git a/dojo/user/views.py b/dojo/user/views.py index ebbd6cad258..f021aa00460 100644 --- a/dojo/user/views.py +++ b/dojo/user/views.py @@ -181,12 +181,12 @@ def delete_alerts(request): alerts = Alerts.objects.filter(user_id=request.user) if request.method == 'POST': - removed_alerts = request.POST.getlist('alert_select') alerts.filter().delete() - messages.add_message(request, - messages.SUCCESS, - _('Alerts removed.'), - extra_tags='alert-success') + messages.add_message( + request, + messages.SUCCESS, + _('Alerts removed.'), + extra_tags='alert-success') return HttpResponseRedirect('alerts') return render(request, @@ -270,9 +270,7 @@ def change_password(request): if request.method == 'POST': form = ChangePasswordForm(request.POST, user=user) if form.is_valid(): - current_password = form.cleaned_data['current_password'] new_password = form.cleaned_data['new_password'] - confirm_password = form.cleaned_data['confirm_password'] user.set_password(new_password) Dojo_User.disable_force_password_reset(user) diff --git a/dojo/utils.py b/dojo/utils.py index 4d32d416c13..eac65b08a47 100644 --- a/dojo/utils.py +++ b/dojo/utils.py @@ -665,7 +665,6 @@ def add_breadcrumb(parent=None, url=None, request=None, clear=False): - title_done = False if clear: request.session['dojo_breadcrumbs'] = None return @@ -682,7 +681,6 @@ def add_breadcrumb(parent=None, if parent is not None and getattr(parent, "get_breadcrumbs", None): crumbs += parent.get_breadcrumbs() else: - title_done = True crumbs += [{ 'title': title, 'url': request.get_full_path() if url is None else url @@ -697,7 +695,6 @@ def add_breadcrumb(parent=None, 'url': request.get_full_path() if url is None else url }] else: - title_done = True obj_crumbs = [{ 'title': title, 'url': request.get_full_path() if url is None else url @@ -903,7 +900,7 @@ def get_period_counts_legacy(findings, else: risks_a = None - crit_count, high_count, med_count, low_count, closed_count = [ + crit_count, high_count, med_count, low_count, _ = [ 0, 0, 0, 0, 0 ] for finding in findings: @@ -923,7 +920,7 @@ def get_period_counts_legacy(findings, [(tcalendar.timegm(new_date.timetuple()) * 1000), new_date, crit_count, high_count, med_count, low_count, total, closed_in_range_count]) - crit_count, high_count, med_count, low_count, closed_count = [ + crit_count, high_count, med_count, low_count, _ = [ 0, 0, 0, 0, 0 ] if risks_a is not None: @@ -1000,13 +997,13 @@ def get_period_counts(findings, else: risks_a = None - f_crit_count, f_high_count, f_med_count, f_low_count, f_closed_count = [ + f_crit_count, f_high_count, f_med_count, f_low_count, _ = [ 0, 0, 0, 0, 0 ] - ra_crit_count, ra_high_count, ra_med_count, ra_low_count, ra_closed_count = [ + ra_crit_count, ra_high_count, ra_med_count, ra_low_count, _ = [ 0, 0, 0, 0, 0 ] - active_crit_count, active_high_count, active_med_count, active_low_count, active_closed_count = [ + active_crit_count, active_high_count, active_med_count, active_low_count, _ = [ 0, 0, 0, 0, 0 ] @@ -1490,8 +1487,6 @@ def prepare_for_view(encrypted_value): encrypted_values = encrypted_value.split(":") if len(encrypted_values) > 1: - type = encrypted_values[0] - iv = binascii.a2b_hex(encrypted_values[1]) value = encrypted_values[2] @@ -1747,7 +1742,7 @@ def user_post_save(sender, instance, created, **kwargs): notifications.template = False notifications.user = instance logger.info('creating default set (from template) of notifications for: ' + str(instance)) - except Exception as err: + except Exception: notifications = Notifications(user=instance) logger.info('creating default set of notifications for: ' + str(instance)) diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 00000000000..9207b1fce1d --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,44 @@ +[tool.ruff] + # Enable the pycodestyle (`E`) and Pyflakes (`F`) rules by default. + # Unlike Flake8, Ruff doesn't enable pycodestyle warnings (`W`) or + # McCabe complexity (`C901`) by default. + select = ["E", "F"] + ignore = ["E501", "E722", "E402", "E731", "E713", "F821", "F601", "F403"] + + # Allow autofix for all enabled rules (when `--fix`) is provided. + fixable = ["ALL"] + unfixable = [] + + # Exclude a variety of commonly ignored directories. + exclude = [ + ".bzr", + ".direnv", + ".eggs", + ".git", + ".git-rewrite", + ".hg", + ".mypy_cache", + ".nox", + ".pants.d", + ".pytype", + ".ruff_cache", + ".svn", + ".tox", + ".venv", + "__pypackages__", + "_build", + "buck-out", + "build", + "dist", + "node_modules", + "venv", + # Not for the dojo specific stuff + "dojo/db_migrations" + ] + per-file-ignores = {} + + # Same as Black. + line-length = 120 + + # Allow unused variables when underscore-prefixed. + dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$" \ No newline at end of file diff --git a/requirements-lint.txt b/requirements-lint.txt new file mode 100644 index 00000000000..543c49a9782 --- /dev/null +++ b/requirements-lint.txt @@ -0,0 +1 @@ +ruff==0.1.7 \ No newline at end of file From d86fd43ebeb65d0c313087a90c6dbb17feeba4d2 Mon Sep 17 00:00:00 2001 From: manuelsommer <47991713+manuel-sommer@users.noreply.github.com> Date: Fri, 19 Jan 2024 05:45:58 +0100 Subject: [PATCH 15/22] Update ASFF parser to create endpoints (#9346) * :construction: asff * :bug: fix --- dojo/tools/asff/parser.py | 51 +- unittests/scans/asff/many_vulns.json | 766 +++++++++++++++++++++++++++ unittests/scans/asff/one_vuln.json | 147 +++++ unittests/tools/test_asff_parser.py | 151 ++---- 4 files changed, 998 insertions(+), 117 deletions(-) create mode 100644 unittests/scans/asff/many_vulns.json create mode 100644 unittests/scans/asff/one_vuln.json diff --git a/dojo/tools/asff/parser.py b/dojo/tools/asff/parser.py index 6cbe527ff45..e66102d0f46 100644 --- a/dojo/tools/asff/parser.py +++ b/dojo/tools/asff/parser.py @@ -1,10 +1,8 @@ import json - import dateutil +from netaddr import IPAddress +from dojo.models import Endpoint, Finding -from dojo.models import Finding - -# https://docs.aws.amazon.com/securityhub/1.0/APIReference/API_Severity.html SEVERITY_MAPPING = { "INFORMATIONAL": "Info", # No issue was found. "LOW": "Low", # The issue does not require action on its own. @@ -36,18 +34,41 @@ def get_findings(self, file, test): else: mitigation = None references = None - result.append( - Finding( - title=item.get("Title"), - description=item.get("Description"), - date=dateutil.parser.parse(item.get("CreatedAt")), - mitigation=mitigation, - references=references, - severity=self.get_severity(item.get("Severity")), - active=True, # TODO manage attribute 'RecordState' - unique_id_from_tool=item.get("Id"), - ) + + finding = Finding( + title=item.get("Title"), + description=item.get("Description"), + date=dateutil.parser.parse(item.get("CreatedAt")), + mitigation=mitigation, + references=references, + severity=self.get_severity(item.get("Severity")), + active=True, # TODO: manage attribute 'RecordState' + unique_id_from_tool=item.get("Id"), ) + + if "Resources" in item: + endpoints = [] + for resource in item["Resources"]: + if resource["Type"] == "AwsEc2Instance" and "Details" in resource: + details = resource["Details"]["AwsEc2Instance"] + for ip in details.get("IpV4Addresses", []): + # Adding only private IP addresses as endpoints: + # + # 1. **Stability**: In AWS, the private IP address of an EC2 instance remains consistent + # unless the instance is terminated. In contrast, public IP addresses in AWS are separate + # resources from the EC2 instances and can change (e.g., when an EC2 instance stops and starts). + # + # 2. **Reliability**: By focusing on private IP addresses, we reduce potential ambiguities. + # If we were to include every IP address, DefectDojo would create an endpoint for each, + # leading to potential redundancies and confusion. + # + # By limiting our endpoints to private IP addresses, we're ensuring that the data remains + # relevant even if the AWS resources undergo changes, and we also ensure a cleaner representation. + if IPAddress(ip).is_private(): + endpoints.append(Endpoint(host=ip)) + finding.unsaved_endpoints = endpoints + + result.append(finding) return result def get_severity(self, data): diff --git a/unittests/scans/asff/many_vulns.json b/unittests/scans/asff/many_vulns.json new file mode 100644 index 00000000000..bf22112af9f --- /dev/null +++ b/unittests/scans/asff/many_vulns.json @@ -0,0 +1,766 @@ +[ + { + "SchemaVersion": "2018-10-08", + "Id": "arn:aws:inspector2:eu-west-1:123456789123:finding/e7dd7a6979b7ce39de463533b1e6cd44", + "ProductArn": "arn:aws:securityhub:eu-west-1::product/aws/inspector", + "ProductName": "Inspector", + "CompanyName": "Amazon", + "Region": "eu-west-1", + "GeneratorId": "AWSInspector", + "AwsAccountId": "123456789123", + "Types": [ + "Software and Configuration Checks/Vulnerabilities/CVE" + ], + "FirstObservedAt": "2023-08-30T20:07:14Z", + "LastObservedAt": "2023-09-15T07:00:24Z", + "CreatedAt": "2023-08-30T20:07:14Z", + "UpdatedAt": "2023-09-15T07:00:24Z", + "Severity": { + "Label": "HIGH", + "Normalized": 70 + }, + "Title": "CVE-2017-9735 - org.eclipse.jetty:jetty-server, org.eclipse.jetty:jetty-util", + "Description": "Jetty through 9.4.x is prone to a timing channel in util/security/Password.java, which makes it easier for remote attackers to obtain access by observing elapsed times before rejection of incorrect passwords.", + "Remediation": { + "Recommendation": { + "Text": "Remediation is available. Please refer to the Fixed version in the vulnerability details section above.For detailed remediation guidance for each of the affected packages, refer to the vulnerabilities section of the detailed finding JSON." + } + }, + "ProductFields": { + "aws/inspector/ProductVersion": "2", + "aws/inspector/FindingStatus": "ACTIVE", + "aws/inspector/inspectorScore": "7.5", + "aws/inspector/instanceId": "i-0asd2da21c8csd28s", + "aws/inspector/resources/1/resourceDetails/awsEc2InstanceDetails/platform": "UBUNTU_20_04", + "aws/securityhub/FindingId": "arn:aws:securityhub:eu-west-1::product/aws/inspector/arn:aws:inspector2:eu-west-1:123456789123:finding/e7dd7a6979b7ce39de463533b1e6cd44", + "aws/securityhub/ProductName": "Inspector", + "aws/securityhub/CompanyName": "Amazon" + }, + "Resources": [ + { + "Type": "AwsEc2Instance", + "Id": "arn:aws:ec2:eu-west-1:123456789123:instance/i-0asd2da21c8csd28s", + "Partition": "aws", + "Region": "eu-west-1", + "Tags": { + "OS": "Ubuntu", + "envtype": "production", + "name": "MyServer1 - new", + "OS-version": "18.04", + "department": "it", + "envcategory": "production", + "Name": "MyServer1" + }, + "Details": { + "AwsEc2Instance": { + "Type": "m5d.large", + "ImageId": "ami-1234shgh268csd28s", + "IpV4Addresses": [ + "123.123.123.123", + "172.31.0.31" + ], + "KeyName": "MySSHkey", + "IamInstanceProfileArn": "arn:aws:iam::123456789123:instance-profile/AmazonSSMRole", + "VpcId": "vpc-12kk2qwe", + "SubnetId": "subnet-s12u28as", + "LaunchedAt": "2023-08-30T05:09:41Z" + } + } + } + ], + "WorkflowState": "NEW", + "Workflow": { + "Status": "NEW" + }, + "RecordState": "ACTIVE", + "Vulnerabilities": [ + { + "Id": "CVE-2017-9735", + "VulnerablePackages": [ + { + "Name": "org.eclipse.jetty:jetty-server", + "Version": "8.1.14.v20131031", + "Epoch": "0", + "PackageManager": "JAR", + "FilePath": "/usr/lib/jvm/java-8-oracle/lib/missioncontrol/plugins/org.eclipse.jetty.server_8.1.14.v20131031.jar", + "FixedInVersion": "9.4.6.v20170531", + "Remediation": "Update jetty-server to 9.4.6.v20170531" + }, + { + "Name": "org.eclipse.jetty:jetty-util", + "Version": "8.1.14.v20131031", + "Epoch": "0", + "PackageManager": "JAR", + "FilePath": "/usr/lib/jvm/java-8-oracle/lib/missioncontrol/plugins/org.eclipse.jetty.util_8.1.14.v20131031.jar", + "FixedInVersion": "9.4.6.v20170531", + "Remediation": "Update jetty-util to 9.4.6.v20170531" + } + ], + "Cvss": [ + { + "Version": "2.0", + "BaseScore": 5, + "BaseVector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "Source": "NVD" + }, + { + "Version": "3.1", + "BaseScore": 7.5, + "BaseVector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", + "Source": "NVD" + }, + { + "Version": "3.1", + "BaseScore": 7.5, + "BaseVector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", + "Source": "NVD" + } + ], + "Vendor": { + "Name": "NVD", + "Url": "https://nvd.nist.gov/vuln/detail/CVE-2017-9735", + "VendorSeverity": "HIGH", + "VendorCreatedAt": "2017-06-16T21:29:00Z", + "VendorUpdatedAt": "2022-03-15T14:55:00Z" + }, + "ReferenceUrls": [ + "https://lists.debian.org/debian-lts-announce/2021/05/msg00016.html", + "https://lists.apache.org/thread.html/053d9ce4d579b02203db18545fee5e33f35f2932885459b74d1e4272@%3Cissues.activemq.apache.org%3E", + "https://lists.apache.org/thread.html/36870f6c51f5bc25e6f7bb1fcace0e57e81f1524019b11f466738559@%3Ccommon-dev.hadoop.apache.org%3E", + "https://www.oracle.com/technetwork/security-advisory/cpuoct2019-5072832.html", + "https://bugs.debian.org/864631", + "https://www.oracle.com/security-alerts/cpuoct2020.html", + "https://lists.apache.org/thread.html/ff8dcfe29377088ab655fda9d585dccd5b1f07fabd94ae84fd60a7f8@%3Ccommits.pulsar.apache.org%3E", + "https://lists.apache.org/thread.html/519eb0fd45642dcecd9ff74cb3e71c20a4753f7d82e2f07864b5108f@%3Cdev.drill.apache.org%3E", + "https://www.oracle.com//security-alerts/cpujul2021.html", + "https://lists.apache.org/thread.html/f887a5978f5e4c62b9cfe876336628385cff429e796962649649ec8a@%3Ccommon-issues.hadoop.apache.org%3E", + "https://lists.apache.org/thread.html/f9bc3e55f4e28d1dcd1a69aae6d53e609a758e34d2869b4d798e13cc@%3Cissues.drill.apache.org%3E" + ], + "FixAvailable": "YES", + "ExploitAvailable": "YES" + } + ], + "FindingProviderFields": { + "Severity": { + "Label": "HIGH" + }, + "Types": [ + "Software and Configuration Checks/Vulnerabilities/CVE" + ] + } + }, + { + "SchemaVersion": "2018-10-08", + "Id": "arn:aws:inspector2:eu-west-1:123456789123:finding/96a4d357714e4eb40e17e4a9c6171ce4", + "ProductArn": "arn:aws:securityhub:eu-west-1::product/aws/inspector", + "ProductName": "Inspector", + "CompanyName": "Amazon", + "Region": "eu-west-1", + "GeneratorId": "AWSInspector", + "AwsAccountId": "123456789123", + "Types": [ + "Software and Configuration Checks/Vulnerabilities/CVE" + ], + "FirstObservedAt": "2023-08-30T20:07:14Z", + "LastObservedAt": "2023-09-15T07:00:24Z", + "CreatedAt": "2023-08-30T20:07:14Z", + "UpdatedAt": "2023-09-15T07:00:24Z", + "Severity": { + "Label": "MEDIUM", + "Normalized": 40 + }, + "Title": "CVE-2019-10247 - org.eclipse.jetty:jetty-server", + "Description": "In Eclipse Jetty version 7.x, 8.x, 9.2.27 and older, 9.3.26 and older, and 9.4.16 and older, the server running on any OS and Jetty version combination will reveal the configured fully qualified directory base resource location on the output of the 404 error for not finding a Context that matches the requested path. The default server behavior on jetty-distribution and jetty-home will include at the end of the Handler tree a DefaultHandler, which is responsible for reporting this 404 error, it presents the various configured contexts as HTML for users to click through to. This produced HTML includes output that contains the configured fully qualified directory base resource location for each context.", + "Remediation": { + "Recommendation": { + "Text": "Remediation is available. Please refer to the Fixed version in the vulnerability details section above.For detailed remediation guidance for each of the affected packages, refer to the vulnerabilities section of the detailed finding JSON." + } + }, + "ProductFields": { + "aws/inspector/ProductVersion": "2", + "aws/inspector/FindingStatus": "ACTIVE", + "aws/inspector/inspectorScore": "5.3", + "aws/inspector/instanceId": "i-0asd2da21c8csd28s", + "aws/inspector/resources/1/resourceDetails/awsEc2InstanceDetails/platform": "UBUNTU_20_04", + "aws/securityhub/FindingId": "arn:aws:securityhub:eu-west-1::product/aws/inspector/arn:aws:inspector2:eu-west-1:123456789123:finding/96a4d357714e4eb40e17e4a9c6171ce4", + "aws/securityhub/ProductName": "Inspector", + "aws/securityhub/CompanyName": "Amazon" + }, + "Resources": [ + { + "Type": "AwsEc2Instance", + "Id": "arn:aws:ec2:eu-west-1:123456789123:instance/i-0asd2da21c8csd28s", + "Partition": "aws", + "Region": "eu-west-1", + "Tags": { + "Name": "MyServer1" + }, + "Details": { + "AwsEc2Instance": { + "Type": "m5d.large", + "ImageId": "ami-1234shgh268csd28s", + "IpV4Addresses": [ + "123.123.123.123", + "172.31.0.31" + ], + "KeyName": "MySSHkey", + "IamInstanceProfileArn": "arn:aws:iam::123456789123:instance-profile/AmazonSSMRole", + "VpcId": "vpc-12kk2qwe", + "SubnetId": "subnet-s12u28as", + "LaunchedAt": "2023-08-30T05:09:41Z" + } + } + } + ], + "WorkflowState": "NEW", + "Workflow": { + "Status": "NEW" + }, + "RecordState": "ACTIVE", + "Vulnerabilities": [ + { + "Id": "CVE-2019-10247", + "VulnerablePackages": [ + { + "Name": "org.eclipse.jetty:jetty-server", + "Version": "8.1.14.v20131031", + "Epoch": "0", + "PackageManager": "JAR", + "FilePath": "/usr/lib/jvm/java-8-oracle/lib/missioncontrol/plugins/org.eclipse.jetty.server_8.1.14.v20131031.jar", + "FixedInVersion": "9.4.17.v20190418", + "Remediation": "Update jetty-server to 9.4.17.v20190418" + } + ], + "Cvss": [ + { + "Version": "2.0", + "BaseScore": 5, + "BaseVector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "Source": "NVD" + }, + { + "Version": "3.1", + "BaseScore": 5.3, + "BaseVector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "Source": "NVD" + }, + { + "Version": "3.1", + "BaseScore": 5.3, + "BaseVector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "Source": "NVD" + } + ], + "Vendor": { + "Name": "NVD", + "Url": "https://nvd.nist.gov/vuln/detail/CVE-2019-10247", + "VendorSeverity": "MEDIUM", + "VendorCreatedAt": "2019-04-22T20:29:00Z", + "VendorUpdatedAt": "2022-04-22T20:09:00Z" + }, + "ReferenceUrls": [ + "https://lists.apache.org/thread.html/053d9ce4d579b02203db18545fee5e33f35f2932885459b74d1e4272@%3Cissues.activemq.apache.org%3E", + "https://www.oracle.com/security-alerts/cpuapr2020.html", + "https://www.oracle.com/technetwork/security-advisory/cpuoct2019-5072832.html", + "https://www.oracle.com/security-alerts/cpuApr2021.html", + "https://www.oracle.com/security-alerts/cpuoct2020.html", + "https://lists.apache.org/thread.html/bcce5a9c532b386c68dab2f6b3ce8b0cc9b950ec551766e76391caa3@%3Ccommits.nifi.apache.org%3E", + "https://lists.apache.org/thread.html/ac51944aef91dd5006b8510b0bef337adaccfe962fb90e7af9c22db4@%3Cissues.activemq.apache.org%3E", + "https://www.oracle.com/security-alerts/cpujan2021.html", + "https://lists.debian.org/debian-lts-announce/2021/05/msg00016.html", + "https://lists.apache.org/thread.html/rca37935d661f4689cb4119f1b3b224413b22be161b678e6e6ce0c69b@%3Ccommits.nifi.apache.org%3E", + "https://www.debian.org/security/2021/dsa-4949", + "https://lists.apache.org/thread.html/519eb0fd45642dcecd9ff74cb3e71c20a4753f7d82e2f07864b5108f@%3Cdev.drill.apache.org%3E", + "https://www.oracle.com/security-alerts/cpujul2020.html", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2020.html", + "https://lists.apache.org/thread.html/f9bc3e55f4e28d1dcd1a69aae6d53e609a758e34d2869b4d798e13cc@%3Cissues.drill.apache.org%3E", + "https://bugs.eclipse.org/bugs/show_bug.cgi?id=546577" + ], + "FixAvailable": "YES", + "ExploitAvailable": "NO" + } + ], + "FindingProviderFields": { + "Severity": { + "Label": "MEDIUM" + }, + "Types": [ + "Software and Configuration Checks/Vulnerabilities/CVE" + ] + } + }, + { + "SchemaVersion": "2018-10-08", + "Id": "arn:aws:inspector2:eu-west-1:123456789123:finding/957fcab569b7cfd5faa067a3be3c0728", + "ProductArn": "arn:aws:securityhub:eu-west-1::product/aws/inspector", + "ProductName": "Inspector", + "CompanyName": "Amazon", + "Region": "eu-west-1", + "GeneratorId": "AWSInspector", + "AwsAccountId": "123456789123", + "Types": [ + "Software and Configuration Checks/Vulnerabilities/CVE" + ], + "FirstObservedAt": "2023-08-30T20:07:14Z", + "LastObservedAt": "2023-09-15T07:00:24Z", + "CreatedAt": "2023-08-30T20:07:14Z", + "UpdatedAt": "2023-09-15T07:00:24Z", + "Severity": { + "Label": "MEDIUM", + "Normalized": 40 + }, + "Title": "CVE-2023-26048 - org.eclipse.jetty:jetty-server", + "Description": "Jetty is a java based web server and servlet engine. In affected versions servlets with multipart support (e.g. annotated with `@MultipartConfig`) that call `HttpServletRequest.getParameter()` or `HttpServletRequest.getParts()` may cause `OutOfMemoryError` when the client sends a multipart request with a part that has a name but no filename and very large content. This happens even with the default settings of `fileSizeThreshold=0` which should stream the whole part content to disk. An attacker client may send a large multipart request and cause the server to throw `OutOfMemoryError`. However, the server may be able to recover after the `OutOfMemoryError` and continue its service -- although it may take some time. This issue has been patched in versions 9.4.51, 10.0.14, and 11.0.14. Users are advised to upgrade. Users unable to upgrade may set the multipart parameter `maxRequestSize` which must be set to a non-negative value, so the whole multipart content is limited (although still read into memory).", + "Remediation": { + "Recommendation": { + "Text": "Remediation is available. Please refer to the Fixed version in the vulnerability details section above.For detailed remediation guidance for each of the affected packages, refer to the vulnerabilities section of the detailed finding JSON." + } + }, + "ProductFields": { + "aws/inspector/ProductVersion": "2", + "aws/inspector/FindingStatus": "ACTIVE", + "aws/inspector/inspectorScore": "5.3", + "aws/inspector/instanceId": "i-0asd2da21c8csd28s", + "aws/inspector/resources/1/resourceDetails/awsEc2InstanceDetails/platform": "UBUNTU_20_04", + "aws/securityhub/FindingId": "arn:aws:securityhub:eu-west-1::product/aws/inspector/arn:aws:inspector2:eu-west-1:123456789123:finding/957fcab569b7cfd5faa067a3be3c0728", + "aws/securityhub/ProductName": "Inspector", + "aws/securityhub/CompanyName": "Amazon" + }, + "Resources": [ + { + "Type": "AwsEc2Instance", + "Id": "arn:aws:ec2:eu-west-1:123456789123:instance/i-0asd2da21c8csd28s", + "Partition": "aws", + "Region": "eu-west-1", + "Tags": { + "Name": "MyServer1" + }, + "Details": { + "AwsEc2Instance": { + "Type": "m5d.large", + "ImageId": "ami-1234shgh268csd28s", + "IpV4Addresses": [ + "123.123.123.123", + "172.31.0.31" + ], + "KeyName": "MySSHkey", + "IamInstanceProfileArn": "arn:aws:iam::123456789123:instance-profile/AmazonSSMRole", + "VpcId": "vpc-12kk2qwe", + "SubnetId": "subnet-s12u28as", + "LaunchedAt": "2023-08-30T05:09:41Z" + } + } + } + ], + "WorkflowState": "NEW", + "Workflow": { + "Status": "NEW" + }, + "RecordState": "ACTIVE", + "Vulnerabilities": [ + { + "Id": "CVE-2023-26048", + "VulnerablePackages": [ + { + "Name": "org.eclipse.jetty:jetty-server", + "Version": "8.1.14.v20131031", + "Epoch": "0", + "PackageManager": "JAR", + "FilePath": "/usr/lib/jvm/java-8-oracle/lib/missioncontrol/plugins/org.eclipse.jetty.server_8.1.14.v20131031.jar", + "FixedInVersion": "12.0.0.beta0", + "Remediation": "Update jetty-server to 12.0.0.beta0" + } + ], + "Cvss": [ + { + "Version": "3.1", + "BaseScore": 5.3, + "BaseVector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "Source": "NVD" + }, + { + "Version": "3.1", + "BaseScore": 5.3, + "BaseVector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "Source": "NVD" + } + ], + "Vendor": { + "Name": "NVD", + "Url": "https://nvd.nist.gov/vuln/detail/CVE-2023-26048", + "VendorSeverity": "MEDIUM", + "VendorCreatedAt": "2023-04-18T21:15:00Z", + "VendorUpdatedAt": "2023-05-26T20:15:00Z" + }, + "FixAvailable": "YES", + "ExploitAvailable": "YES" + } + ], + "FindingProviderFields": { + "Severity": { + "Label": "MEDIUM" + }, + "Types": [ + "Software and Configuration Checks/Vulnerabilities/CVE" + ] + } + }, + { + "SchemaVersion": "2018-10-08", + "Id": "arn:aws:inspector2:eu-west-1:123456789123:finding/723630f6ce983dbf1b8d2a5f3d6df888", + "ProductArn": "arn:aws:securityhub:eu-west-1::product/aws/inspector", + "ProductName": "Inspector", + "CompanyName": "Amazon", + "Region": "eu-west-1", + "GeneratorId": "AWSInspector", + "AwsAccountId": "123456789123", + "Types": [ + "Software and Configuration Checks/Vulnerabilities/CVE" + ], + "FirstObservedAt": "2023-08-30T20:07:14Z", + "LastObservedAt": "2023-09-15T07:00:24Z", + "CreatedAt": "2023-08-30T20:07:14Z", + "UpdatedAt": "2023-09-15T07:00:24Z", + "Severity": { + "Label": "HIGH", + "Normalized": 70 + }, + "Title": "CVE-2021-28165 - org.eclipse.jetty:jetty-io", + "Description": "In Eclipse Jetty 7.2.2 to 9.4.38, 10.0.0.alpha0 to 10.0.1, and 11.0.0.alpha0 to 11.0.1, CPU usage can reach 100% upon receiving a large invalid TLS frame.", + "Remediation": { + "Recommendation": { + "Text": "Remediation is available. Please refer to the Fixed version in the vulnerability details section above.For detailed remediation guidance for each of the affected packages, refer to the vulnerabilities section of the detailed finding JSON." + } + }, + "ProductFields": { + "aws/inspector/ProductVersion": "2", + "aws/inspector/FindingStatus": "ACTIVE", + "aws/inspector/inspectorScore": "7.5", + "aws/inspector/instanceId": "i-0asd2da21c8csd28s", + "aws/inspector/resources/1/resourceDetails/awsEc2InstanceDetails/platform": "UBUNTU_20_04", + "aws/securityhub/FindingId": "arn:aws:securityhub:eu-west-1::product/aws/inspector/arn:aws:inspector2:eu-west-1:123456789123:finding/723630f6ce983dbf1b8d2a5f3d6df888", + "aws/securityhub/ProductName": "Inspector", + "aws/securityhub/CompanyName": "Amazon" + }, + "Resources": [ + { + "Type": "AwsEc2Instance", + "Id": "arn:aws:ec2:eu-west-1:123456789123:instance/i-0asd2da21c8csd28s", + "Partition": "aws", + "Region": "eu-west-1", + "Tags": { + "Name": "MyServer1" + }, + "Details": { + "AwsEc2Instance": { + "Type": "m5d.large", + "ImageId": "ami-1234shgh268csd28s", + "IpV4Addresses": [ + "123.123.123.123", + "172.31.0.31" + ], + "KeyName": "MySSHkey", + "IamInstanceProfileArn": "arn:aws:iam::123456789123:instance-profile/AmazonSSMRole", + "VpcId": "vpc-12kk2qwe", + "SubnetId": "subnet-s12u28as", + "LaunchedAt": "2023-08-30T05:09:41Z" + } + } + } + ], + "WorkflowState": "NEW", + "Workflow": { + "Status": "NEW" + }, + "RecordState": "ACTIVE", + "Vulnerabilities": [ + { + "Id": "CVE-2021-28165", + "VulnerablePackages": [ + { + "Name": "org.eclipse.jetty:jetty-io", + "Version": "8.1.14.v20131031", + "Epoch": "0", + "PackageManager": "JAR", + "FilePath": "/usr/lib/jvm/java-8-oracle/lib/missioncontrol/plugins/org.eclipse.jetty.io_8.1.14.v20131031.jar", + "FixedInVersion": "11.0.2", + "Remediation": "Update jetty-io to 11.0.2" + } + ], + "Cvss": [ + { + "Version": "2.0", + "BaseScore": 7.8, + "BaseVector": "AV:N/AC:L/Au:N/C:N/I:N/A:C", + "Source": "NVD" + }, + { + "Version": "3.1", + "BaseScore": 7.5, + "BaseVector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "Source": "NVD" + }, + { + "Version": "3.1", + "BaseScore": 7.5, + "BaseVector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "Source": "NVD" + } + ], + "Vendor": { + "Name": "NVD", + "Url": "https://nvd.nist.gov/vuln/detail/CVE-2021-28165", + "VendorSeverity": "HIGH", + "VendorCreatedAt": "2021-04-01T15:15:00Z", + "VendorUpdatedAt": "2022-07-29T17:05:00Z" + }, + "ReferenceUrls": [ + "https://lists.apache.org/thread.html/r7c40fb3a66a39b6e6c83b0454bc6917ffe6c69e3131322be9c07a1da@%3Cissues.spark.apache.org%3E", + "https://lists.apache.org/thread.html/r6f256a1d15505f79f4050a69bb8f27b34cb353604dd2f765c9da5df7@%3Cjira.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r9db72e9c33b93eba45a214af588f1d553839b5c3080fc913854a49ab@%3Cnotifications.zookeeper.apache.org%3E", + "https://lists.apache.org/thread.html/r520c56519b8820955a86966f499e7a0afcbcf669d6f7da59ef1eb155@%3Ccommits.pulsar.apache.org%3E", + "https://lists.apache.org/thread.html/ra9dd15ba8a4fb7e42c7fe948a6d6b3868fd6bbf8e3fb37fcf33b2cd0@%3Cnotifications.zookeeper.apache.org%3E", + "https://lists.apache.org/thread.html/r90327f55db8f1d079f9a724aabf1f5eb3c00c1de49dc7fd04cad1ebc@%3Ccommits.pulsar.apache.org%3E", + "https://lists.apache.org/thread.html/r5b3693da7ecb8a75c0e930b4ca26a5f97aa0207d9dae4aa8cc65fe6b@%3Cissues.ignite.apache.org%3E", + "https://lists.apache.org/thread.html/rd0471252aeb3384c3cfa6d131374646d4641b80dd313e7b476c47a9c@%3Cissues.solr.apache.org%3E", + "https://lists.apache.org/thread.html/re0545ecced2d468c94ce4dcfa37d40a9573cc68ef5f6839ffca9c1c1@%3Ccommits.hbase.apache.org%3E", + "https://lists.apache.org/thread.html/rc4779abc1cface47e956cf9f8910f15d79c24477e7b1ac9be076a825@%3Cjira.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r002258611ed0c35b82b839d284b43db9dcdec120db8afc1c993137dc@%3Cnotifications.zookeeper.apache.org%3E", + "https://www.oracle.com/security-alerts/cpuoct2021.html", + "https://lists.apache.org/thread.html/r06d54a297cb8217c66e5190912a955fb870ba47da164002bf2baffe5@%3Creviews.spark.apache.org%3E", + "https://lists.apache.org/thread.html/rb2d34abb67cdf525945fe4b821c5cdbca29a78d586ae1f9f505a311c@%3Creviews.spark.apache.org%3E", + "https://lists.apache.org/thread.html/rd755dfe5f658c42704540ad7950cebd136739089c3231658e398cf38@%3Cjira.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/rdde34d53aa80193cda016272d61e6749f8a9044ccb37a30768938f7e@%3Creviews.spark.apache.org%3E", + "https://lists.apache.org/thread.html/ra21b3e6bd9669377139fe33fb46edf6fece3f31375bc42a0dcc964b2@%3Cnotifications.zookeeper.apache.org%3E", + "https://lists.apache.org/thread.html/r0a241b0649beef90d422b42a26a2470d336e59e66970eafd54f9c3e2@%3Ccommits.zookeeper.apache.org%3E", + "https://lists.apache.org/thread.html/r72bf813ed4737196ea3ed26494e949577be587fd5939fe8be09907c7@%3Creviews.spark.apache.org%3E", + "https://lists.apache.org/thread.html/rc6c43c3180c0efe00497c73dd374cd34b62036cb67987ad42c1f2dce@%3Creviews.spark.apache.org%3E", + "https://lists.apache.org/thread.html/r05db8e0ef01e1280cc7543575ae0fa1c2b4d06a8b928916ef65dd2ad@%3Creviews.spark.apache.org%3E", + "https://www.oracle.com/security-alerts/cpujan2022.html", + "https://lists.apache.org/thread.html/r33eb3889ca0aa12720355e64fc2f8f1e8c0c28a4d55b3b4b8891becb@%3Ccommits.zookeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rfc9f51b4e21022b3cd6cb6f90791a6a6999560212e519b5f09db0aed@%3Ccommits.pulsar.apache.org%3E", + "https://lists.apache.org/thread.html/re3a1617d16a7367f767b8209b2151f4c19958196354b39568c532f26@%3Creviews.spark.apache.org%3E", + "https://lists.apache.org/thread.html/rf1b02dfccd27b8bbc3afd119b212452fa32e9ed7d506be9357a3a7ec@%3Creviews.spark.apache.org%3E", + "https://lists.apache.org/thread.html/r17e26cf9a1e3cbc09522d15ece5d7c7a00cdced7641b92a22a783287@%3Cissues.zookeeper.apache.org%3E", + "https://lists.apache.org/thread.html/re577736ca7da51952c910b345a500b7676ea9931c9b19709b87f292b@%3Cissues.zookeeper.apache.org%3E", + "https://lists.apache.org/thread.html/r077b76cafb61520c14c87c4fc76419ed664002da0ddac5ad851ae7e7@%3Cjira.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r83453ec252af729996476e5839d0b28f07294959d60fea1bd76f7d81@%3Cissues.spark.apache.org%3E", + "https://lists.apache.org/thread.html/r4abbd760d24bab2b8f1294c5c9216ae915100099c4391ad64e9ae38b@%3Cdev.hbase.apache.org%3E", + "https://lists.apache.org/thread.html/r81748d56923882543f5be456043c67daef84d631cf54899082058ef1@%3Cjira.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r694e57d74fcaa48818a03c282aecfa13ae68340c798dfcb55cb7acc7@%3Cdev.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r0bf3aa065abd23960fc8bdc8090d6bc00d5e391cf94ec4e1f4537ae3@%3Cjira.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/rbba0b02a3287e34af328070dd58f7828612f96e2e64992137f4dc63d@%3Cnotifications.zookeeper.apache.org%3E", + "https://lists.apache.org/thread.html/r411d75dc6bcefadaaea246549dd18e8d391a880ddf28a796f09ce152@%3Creviews.spark.apache.org%3E", + "https://lists.apache.org/thread.html/rbcd7b477df55857bb6cae21fcc4404683ac98aac1a47551f0dc55486@%3Cissues.zookeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rb8f5a6ded384eb00608e6137e87110e7dd7d5054cc34561cb89b81af@%3Creviews.spark.apache.org%3E", + "https://lists.apache.org/thread.html/r4891d45625cc522fe0eb764ac50d48bcca9c0db4805ea4a998d4c225@%3Cissues.hbase.apache.org%3E", + "https://lists.apache.org/thread.html/raea6e820644e8c5a577f77d4e2044f8ab52183c2536b00c56738beef@%3Creviews.spark.apache.org%3E", + "https://lists.apache.org/thread.html/r71031d0acb1de55c9ab32f4750c50ce2f28543252e887ca03bd5621e@%3Creviews.spark.apache.org%3E", + "https://lists.apache.org/thread.html/r65daad30d13f7c56eb5c3d7733ad8dddbf62c469175410777a78d812@%3Cjira.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r6b070441871a4e6ce8bb63e190c879bb60da7c5e15023de29ebd4f9f@%3Cjira.kafka.apache.org%3E", + "https://www.oracle.com//security-alerts/cpujul2021.html", + "https://lists.apache.org/thread.html/r0f02034a33076fd7243cf3a8807d2766e373f5cb2e7fd0c9a78f97c4@%3Cissues.hbase.apache.org%3E", + "https://lists.apache.org/thread.html/r401b1c592f295b811608010a70792b11c91885b72af9f9410cffbe35@%3Creviews.spark.apache.org%3E", + "https://lists.apache.org/thread.html/r4a66bfbf62281e31bc1345ebecbfd96f35199eecd77bfe4e903e906f@%3Cissues.ignite.apache.org%3E", + "https://lists.apache.org/thread.html/r7bf7004c18c914fae3d5a6a0191d477e5b6408d95669b3afbf6efa36@%3Ccommits.zookeeper.apache.org%3E", + "https://lists.apache.org/thread.html/r0a4797ba6ceea8074f47574a4f3cc11493d514c1fab8203ebd212add@%3Creviews.spark.apache.org%3E", + "https://lists.apache.org/thread.html/rdf4fe435891e8c35e70ea5da033b4c3da78760f15a8c4212fad89d9f@%3Ccommits.zookeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rb1624b9777a3070135e94331a428c6653a6a1edccd56fa9fb7a547f2@%3Creviews.spark.apache.org%3E", + "https://lists.apache.org/thread.html/rc907ed7b089828364437de5ed57fa062330970dc1bc5cd214b711f77@%3Ccommits.zookeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rfd3ff6e66b6bbcfb2fefa9f5a20328937c0369b2e142e3e1c6774743@%3Creviews.spark.apache.org%3E", + "https://lists.apache.org/thread.html/rd6c1eb9a8a94b3ac8a525d74d792924e8469f201b77e1afcf774e7a6@%3Creviews.spark.apache.org%3E", + "https://lists.apache.org/thread.html/ree1895a256a9db951e0d97a76222909c2e1f28c1a3d89933173deed6@%3Creviews.spark.apache.org%3E", + "https://lists.apache.org/thread.html/rb66ed0b4bb74836add60dd5ddf9172016380b2aeefb7f96fe348537b@%3Creviews.spark.apache.org%3E", + "https://lists.apache.org/thread.html/re6614b4fe7dbb945409daadb9e1cc73c02383df68bf9334736107a6e@%3Cdev.zookeeper.apache.org%3E", + "https://lists.apache.org/thread.html/r6ce2907b2691c025250ba010bc797677ef78d5994d08507a2e5477c9@%3Creviews.spark.apache.org%3E", + "https://lists.apache.org/thread.html/rd9ea411a58925cc82c32e15f541ead23cb25b4b2d57a2bdb0341536e@%3Cjira.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/ra210e38ae0bf615084390b26ba01bb5d66c0a76f232277446ae0948a@%3Cnotifications.zookeeper.apache.org%3E", + "https://lists.apache.org/thread.html/r5f172f2dd8fb02f032ef4437218fd4f610605a3dd4f2a024c1e43b94@%3Cissues.zookeeper.apache.org%3E", + "https://lists.apache.org/thread.html/r5d1f16dca2e010193840068f1a1ec17b7015e91acc646607cbc0a4da@%3Creviews.spark.apache.org%3E", + "https://lists.apache.org/thread.html/rb11a13e623218c70b9f2a2d0d122fdaaf905e04a2edcd23761894464@%3Cnotifications.zookeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rb00345f6b1620b553d2cc1acaf3017aa75cea3776b911e024fa3b187@%3Creviews.spark.apache.org%3E", + "https://lists.apache.org/thread.html/r03ca0b69db1e3e5f72fe484b71370d537cd711cbf334e2913332730a@%3Cissues.spark.apache.org%3E", + "https://lists.apache.org/thread.html/r940f15db77a96f6aea92d830bc94d8d95f26cc593394d144755824da@%3Creviews.spark.apache.org%3E", + "https://lists.apache.org/thread.html/r2ea2f0541121f17e470a0184843720046c59d4bde6d42bf5ca6fad81@%3Cissues.solr.apache.org%3E", + "https://lists.apache.org/thread.html/r4b1fef117bccc7f5fd4c45fd2cabc26838df823fe5ca94bc42a4fd46@%3Cissues.ignite.apache.org%3E", + "https://lists.apache.org/thread.html/rdbf2a2cd1800540ae50dd78b57411229223a6172117d62b8e57596aa@%3Cissues.hbase.apache.org%3E", + "https://lists.apache.org/thread.html/r9fae5a4087d9ed1c9d4f0c7493b6981a4741cfb4bebb2416da638424@%3Cissues.spark.apache.org%3E", + "https://lists.apache.org/thread.html/r0841b06b48324cfc81325de3c05a92e53f997185f9d71ff47734d961@%3Cissues.solr.apache.org%3E", + "https://lists.apache.org/thread.html/r111f1ce28b133a8090ca4f809a1bdf18a777426fc058dc3a16c39c66@%3Cissues.solr.apache.org%3E", + "https://lists.apache.org/thread.html/r6ac9e263129328c0db9940d72b4a6062e703c58918dd34bd22cdf8dd@%3Cissues.ignite.apache.org%3E", + "https://lists.apache.org/thread.html/r0cd1a5e3f4ad4770b44f8aa96572fc09d5b35bec149c0cc247579c42@%3Creviews.spark.apache.org%3E", + "https://lists.apache.org/thread.html/rcdea97f4d3233298296aabc103c9fcefbf629425418c2b69bb16745f@%3Ccommits.pulsar.apache.org%3E", + "https://lists.apache.org/thread.html/r6535b2beddf0ed2d263ab64ff365a5f790df135a1a2f45786417adb7@%3Cdev.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/rf6de4c249bd74007f5f66f683c110535f46e719d2f83a41e8faf295f@%3Creviews.spark.apache.org%3E", + "https://lists.apache.org/thread.html/rf99f9a25ca24fe519c9346388f61b5b3a09be31b800bf37f01473ad7@%3Cnotifications.zookeeper.apache.org%3E", + "https://lists.apache.org/thread.html/r7189bf41cb0c483629917a01cf296f9fbdbda3987084595192e3845d@%3Cissues.hbase.apache.org%3E", + "https://lists.apache.org/thread.html/r40136c2010fccf4fb2818a965e5d7ecca470e5f525c232ec5b8eb83a@%3Cjira.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r23785214d47673b811ef119ca3a40f729801865ea1e891572d15faa6@%3Creviews.spark.apache.org%3E", + "https://lists.apache.org/thread.html/r47a7542ab61da865fff3db0fe74bfe76c89a37b6e6d2c2a423f8baee@%3Creviews.spark.apache.org%3E", + "https://lists.apache.org/thread.html/r780c3c210a05c5bf7b4671303f46afc3fe56758e92864e1a5f0590d0@%3Cjira.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r2afc72af069a7fe89ca2de847f3ab3971cb1d668a9497c999946cd78@%3Ccommits.spark.apache.org%3E", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://lists.apache.org/thread.html/rbab9e67ec97591d063905bc7d4743e6a673f1bc457975fc0445ac97f@%3Cissues.hbase.apache.org%3E", + "https://lists.apache.org/thread.html/rbc075a4ac85e7a8e47420b7383f16ffa0af3b792b8423584735f369f@%3Cissues.solr.apache.org%3E", + "https://lists.apache.org/thread.html/rdfe5f1c071ba9dadba18d7fb0ff13ea6ecb33da624250c559999eaeb@%3Creviews.spark.apache.org%3E", + "https://lists.apache.org/thread.html/r56e5568ac73daedcb3b5affbb4b908999f03d3c1b1ada3920b01e959@%3Cdev.zookeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rd7c8fb305a8637480dc943ba08424c8992dccad018cd1405eb2afe0e@%3Cdev.ignite.apache.org%3E", + "https://lists.apache.org/thread.html/ra50519652b0b7f869a14fbfb4be9758a29171d7fe561bb7e036e8449@%3Cissues.hbase.apache.org%3E", + "https://lists.apache.org/thread.html/r64ff94118f6c80e6c085c6e2d51bbb490eaefad0642db8c936e4f0b7@%3Creviews.spark.apache.org%3E", + "https://lists.apache.org/thread.html/r746434be6abff9ad321ff54ecae09e1f09c1c7c139021f40a5774090@%3Creviews.spark.apache.org%3E", + "https://lists.apache.org/thread.html/r9974f64723875052e02787b2a5eda689ac5247c71b827d455e5dc9a6@%3Cissues.solr.apache.org%3E", + "https://lists.apache.org/thread.html/rc4dbc9907b0bdd634200ac90a15283d9c143c11af66e7ec72128d020@%3Cjira.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r31f591a0deac927ede8ccc3eac4bb92697ee2361bf01549f9e3440ca@%3Creviews.spark.apache.org%3E", + "https://lists.apache.org/thread.html/rd24d8a059233167b4a5aebda4b3534ca1d86caa8a85b10a73403ee97@%3Ccommits.spark.apache.org%3E", + "https://lists.apache.org/thread.html/rae8bbc5a516f3e21b8a55e61ff6ad0ced03bdbd116d2170a3eed9f5c@%3Creviews.spark.apache.org%3E", + "https://lists.apache.org/thread.html/r769155244ca2da2948a44091bb3bb9a56e7e1c71ecc720b8ecf281f0@%3Creviews.spark.apache.org%3E", + "https://www.debian.org/security/2021/dsa-4949", + "https://lists.apache.org/thread.html/r9b793db9f395b546e66fb9c44fe1cd75c7755029e944dfee31b8b779@%3Creviews.spark.apache.org%3E", + "https://lists.apache.org/thread.html/r942f4a903d0abb25ac75c592e57df98dea51350e8589269a72fd7913@%3Cissues.spark.apache.org%3E", + "https://lists.apache.org/thread.html/r2f2d9c3b7cc750a6763d6388bcf5db0c7b467bd8be6ac4d6aea4f0cf@%3Creviews.spark.apache.org%3E", + "https://lists.apache.org/thread.html/rbd9a837a18ca57ac0d9b4165a6eec95ee132f55d025666fe41099f33@%3Creviews.spark.apache.org%3E" + ], + "FixAvailable": "YES", + "ExploitAvailable": "YES" + } + ], + "FindingProviderFields": { + "Severity": { + "Label": "HIGH" + }, + "Types": [ + "Software and Configuration Checks/Vulnerabilities/CVE" + ] + } + }, + { + "SchemaVersion": "2018-10-08", + "Id": "arn:aws:inspector2:eu-west-1:123456789123:finding/71344c6204b894be7a0c28bed223bf9b", + "ProductArn": "arn:aws:securityhub:eu-west-1::product/aws/inspector", + "ProductName": "Inspector", + "CompanyName": "Amazon", + "Region": "eu-west-1", + "GeneratorId": "AWSInspector", + "AwsAccountId": "123456789123", + "Types": [ + "Software and Configuration Checks/Vulnerabilities/CVE" + ], + "FirstObservedAt": "2023-08-30T20:07:14Z", + "LastObservedAt": "2023-09-15T07:00:24Z", + "CreatedAt": "2023-08-30T20:07:14Z", + "UpdatedAt": "2023-09-15T07:00:24Z", + "Severity": { + "Label": "MEDIUM", + "Normalized": 40 + }, + "Title": "CVE-2023-26049 - org.eclipse.jetty:jetty-server, org.eclipse.jetty:jetty-http", + "Description": "Jetty is a java based web server and servlet engine. Nonstandard cookie parsing in Jetty may allow an attacker to smuggle cookies within other cookies, or otherwise perform unintended behavior by tampering with the cookie parsing mechanism. If Jetty sees a cookie VALUE that starts with `\"` (double quote), it will continue to read the cookie string until it sees a closing quote -- even if a semicolon is encountered. So, a cookie header such as: `DISPLAY_LANGUAGE=\"b; JSESSIONID=1337; c=d\"` will be parsed as one cookie, with the name DISPLAY_LANGUAGE and a value of b; JSESSIONID=1337; c=d instead of 3 separate cookies. This has security implications because if, say, JSESSIONID is an HttpOnly cookie, and the DISPLAY_LANGUAGE cookie value is rendered on the page, an attacker can smuggle the JSESSIONID cookie into the DISPLAY_LANGUAGE cookie and thereby exfiltrate it. This is significant when an intermediary is enacting some policy based on cookies, so a smuggled cookie can bypass that policy yet still ...Truncated", + "Remediation": { + "Recommendation": { + "Text": "Remediation is available. Please refer to the Fixed version in the vulnerability details section above.For detailed remediation guidance for each of the affected packages, refer to the vulnerabilities section of the detailed finding JSON." + } + }, + "ProductFields": { + "aws/inspector/ProductVersion": "2", + "aws/inspector/FindingStatus": "ACTIVE", + "aws/inspector/inspectorScore": "5.3", + "aws/inspector/instanceId": "i-0asd2da21c8csd28s", + "aws/inspector/resources/1/resourceDetails/awsEc2InstanceDetails/platform": "UBUNTU_20_04", + "aws/securityhub/FindingId": "arn:aws:securityhub:eu-west-1::product/aws/inspector/arn:aws:inspector2:eu-west-1:123456789123:finding/71344c6204b894be7a0c28bed223bf9b", + "aws/securityhub/ProductName": "Inspector", + "aws/securityhub/CompanyName": "Amazon" + }, + "Resources": [ + { + "Type": "AwsEc2Instance", + "Id": "arn:aws:ec2:eu-west-1:123456789123:instance/i-0asd2da21c8csd28s", + "Partition": "aws", + "Region": "eu-west-1", + "Tags": { + "Name": "MyServer1" + }, + "Details": { + "AwsEc2Instance": { + "Type": "m5d.large", + "ImageId": "ami-1234shgh268csd28s", + "IpV4Addresses": [ + "123.123.123.123", + "172.31.0.31" + ], + "KeyName": "MySSHkey", + "IamInstanceProfileArn": "arn:aws:iam::123456789123:instance-profile/AmazonSSMRole", + "VpcId": "vpc-12kk2qwe", + "SubnetId": "subnet-s12u28as", + "LaunchedAt": "2023-08-30T05:09:41Z" + } + } + } + ], + "WorkflowState": "NEW", + "Workflow": { + "Status": "NEW" + }, + "RecordState": "ACTIVE", + "Vulnerabilities": [ + { + "Id": "CVE-2023-26049", + "VulnerablePackages": [ + { + "Name": "org.eclipse.jetty:jetty-server", + "Version": "8.1.14.v20131031", + "Epoch": "0", + "PackageManager": "JAR", + "FilePath": "/usr/lib/jvm/java-8-oracle/lib/missioncontrol/plugins/org.eclipse.jetty.server_8.1.14.v20131031.jar", + "FixedInVersion": "12.0.0.beta0", + "Remediation": "Update jetty-server to 12.0.0.beta0" + }, + { + "Name": "org.eclipse.jetty:jetty-http", + "Version": "8.1.14.v20131031", + "Epoch": "0", + "PackageManager": "JAR", + "FilePath": "/usr/lib/jvm/java-8-oracle/lib/missioncontrol/plugins/org.eclipse.jetty.http_8.1.14.v20131031.jar", + "FixedInVersion": "12.0.0.beta0", + "Remediation": "Update jetty-http to 12.0.0.beta0" + } + ], + "Cvss": [ + { + "Version": "3.1", + "BaseScore": 5.3, + "BaseVector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "Source": "NVD" + }, + { + "Version": "3.1", + "BaseScore": 5.3, + "BaseVector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "Source": "NVD" + } + ], + "Vendor": { + "Name": "NVD", + "Url": "https://nvd.nist.gov/vuln/detail/CVE-2023-26049", + "VendorSeverity": "MEDIUM", + "VendorCreatedAt": "2023-04-18T21:15:00Z", + "VendorUpdatedAt": "2023-05-26T20:15:00Z" + }, + "ReferenceUrls": [ + "https://www.rfc-editor.org/rfc/rfc6265", + "https://www.rfc-editor.org/rfc/rfc2965" + ], + "FixAvailable": "YES", + "ExploitAvailable": "YES" + } + ], + "FindingProviderFields": { + "Severity": { + "Label": "MEDIUM" + }, + "Types": [ + "Software and Configuration Checks/Vulnerabilities/CVE" + ] + } + } +] \ No newline at end of file diff --git a/unittests/scans/asff/one_vuln.json b/unittests/scans/asff/one_vuln.json new file mode 100644 index 00000000000..6b339bd32fb --- /dev/null +++ b/unittests/scans/asff/one_vuln.json @@ -0,0 +1,147 @@ +[ + { + "SchemaVersion": "2018-10-08", + "Id": "arn:aws:inspector2:eu-west-1:123456789123:finding/e7dd7a6979b7ce39de463533b1e6cd44", + "ProductArn": "arn:aws:securityhub:eu-west-1::product/aws/inspector", + "ProductName": "Inspector", + "CompanyName": "Amazon", + "Region": "eu-west-1", + "GeneratorId": "AWSInspector", + "AwsAccountId": "123456789123", + "Types": [ + "Software and Configuration Checks/Vulnerabilities/CVE" + ], + "FirstObservedAt": "2023-08-30T20:07:14Z", + "LastObservedAt": "2023-09-15T07:00:24Z", + "CreatedAt": "2023-08-30T20:07:14Z", + "UpdatedAt": "2023-09-15T07:00:24Z", + "Severity": { + "Label": "HIGH", + "Normalized": 70 + }, + "Title": "CVE-2017-9735 - org.eclipse.jetty:jetty-server, org.eclipse.jetty:jetty-util", + "Description": "Jetty through 9.4.x is prone to a timing channel in util/security/Password.java, which makes it easier for remote attackers to obtain access by observing elapsed times before rejection of incorrect passwords.", + "Remediation": { + "Recommendation": { + "Text": "Remediation is available. Please refer to the Fixed version in the vulnerability details section above.For detailed remediation guidance for each of the affected packages, refer to the vulnerabilities section of the detailed finding JSON." + } + }, + "ProductFields": { + "aws/inspector/ProductVersion": "2", + "aws/inspector/FindingStatus": "ACTIVE", + "aws/inspector/inspectorScore": "7.5", + "aws/inspector/instanceId": "i-0sdg8sa1k2l3j11m2", + "aws/inspector/resources/1/resourceDetails/awsEc2InstanceDetails/platform": "UBUNTU_20_04", + "aws/securityhub/FindingId": "arn:aws:securityhub:eu-west-1::product/aws/inspector/arn:aws:inspector2:eu-west-1:123456789123:finding/e7dd7a6979b7ce39de463533b1e6cd44", + "aws/securityhub/ProductName": "Inspector", + "aws/securityhub/CompanyName": "Amazon" + }, + "Resources": [ + { + "Type": "AwsEc2Instance", + "Id": "arn:aws:ec2:eu-west-1:123456789123:instance/i-0sdg8sa1k2l3j11m2", + "Partition": "aws", + "Region": "eu-west-1", + "Tags": { + "Name": "MyWebServer" + }, + "Details": { + "AwsEc2Instance": { + "Type": "m5d.large", + "ImageId": "ami-0211k2j12l987bg2h7", + "IpV4Addresses": [ + "123.123.123.123", + "172.31.0.31" + ], + "KeyName": "MySSHkey", + "IamInstanceProfileArn": "arn:aws:iam::123456789123:instance-profile/AmazonSSMRole", + "VpcId": "vpc-12jh8mgg", + "SubnetId": "subnet-k12i88jh", + "LaunchedAt": "2023-08-30T05:09:41Z" + } + } + } + + ], + "WorkflowState": "NEW", + "Workflow": { + "Status": "NEW" + }, + "RecordState": "ACTIVE", + "Vulnerabilities": [ + { + "Id": "CVE-2017-9735", + "VulnerablePackages": [ + { + "Name": "org.eclipse.jetty:jetty-server", + "Version": "8.1.14.v20131031", + "Epoch": "0", + "PackageManager": "JAR", + "FilePath": "/usr/lib/jvm/java-8-oracle/lib/missioncontrol/plugins/org.eclipse.jetty.server_8.1.14.v20131031.jar", + "FixedInVersion": "9.4.6.v20170531", + "Remediation": "Update jetty-server to 9.4.6.v20170531" + }, + { + "Name": "org.eclipse.jetty:jetty-util", + "Version": "8.1.14.v20131031", + "Epoch": "0", + "PackageManager": "JAR", + "FilePath": "/usr/lib/jvm/java-8-oracle/lib/missioncontrol/plugins/org.eclipse.jetty.util_8.1.14.v20131031.jar", + "FixedInVersion": "9.4.6.v20170531", + "Remediation": "Update jetty-util to 9.4.6.v20170531" + } + ], + "Cvss": [ + { + "Version": "2.0", + "BaseScore": 5, + "BaseVector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "Source": "NVD" + }, + { + "Version": "3.1", + "BaseScore": 7.5, + "BaseVector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", + "Source": "NVD" + }, + { + "Version": "3.1", + "BaseScore": 7.5, + "BaseVector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", + "Source": "NVD" + } + ], + "Vendor": { + "Name": "NVD", + "Url": "https://nvd.nist.gov/vuln/detail/CVE-2017-9735", + "VendorSeverity": "HIGH", + "VendorCreatedAt": "2017-06-16T21:29:00Z", + "VendorUpdatedAt": "2022-03-15T14:55:00Z" + }, + "ReferenceUrls": [ + "https://lists.debian.org/debian-lts-announce/2021/05/msg00016.html", + "https://lists.apache.org/thread.html/053d9ce4d579b02203db18545fee5e33f35f2932885459b74d1e4272@%3Cissues.activemq.apache.org%3E", + "https://lists.apache.org/thread.html/36870f6c51f5bc25e6f7bb1fcace0e57e81f1524019b11f466738559@%3Ccommon-dev.hadoop.apache.org%3E", + "https://www.oracle.com/technetwork/security-advisory/cpuoct2019-5072832.html", + "https://bugs.debian.org/864631", + "https://www.oracle.com/security-alerts/cpuoct2020.html", + "https://lists.apache.org/thread.html/ff8dcfe29377088ab655fda9d585dccd5b1f07fabd94ae84fd60a7f8@%3Ccommits.pulsar.apache.org%3E", + "https://lists.apache.org/thread.html/519eb0fd45642dcecd9ff74cb3e71c20a4753f7d82e2f07864b5108f@%3Cdev.drill.apache.org%3E", + "https://www.oracle.com//security-alerts/cpujul2021.html", + "https://lists.apache.org/thread.html/f887a5978f5e4c62b9cfe876336628385cff429e796962649649ec8a@%3Ccommon-issues.hadoop.apache.org%3E", + "https://lists.apache.org/thread.html/f9bc3e55f4e28d1dcd1a69aae6d53e609a758e34d2869b4d798e13cc@%3Cissues.drill.apache.org%3E" + ], + "FixAvailable": "YES", + "ExploitAvailable": "YES" + } + ], + "FindingProviderFields": { + "Severity": { + "Label": "HIGH" + }, + "Types": [ + "Software and Configuration Checks/Vulnerabilities/CVE" + ] + } + } +] \ No newline at end of file diff --git a/unittests/tools/test_asff_parser.py b/unittests/tools/test_asff_parser.py index 0527dd424fe..9426cd3fb61 100644 --- a/unittests/tools/test_asff_parser.py +++ b/unittests/tools/test_asff_parser.py @@ -1,114 +1,61 @@ -import datetime import os.path - -from dojo.models import Test +import json +from datetime import datetime +from dojo.models import Test, Endpoint from dojo.tools.asff.parser import AsffParser - from ..dojo_test_case import DojoTestCase, get_unit_tests_path def sample_path(file_name): - return os.path.join("/scans/asff", file_name) + return os.path.join(get_unit_tests_path(), "scans/asff", file_name) class TestAsffParser(DojoTestCase): - def test_get_severity(self): - """To designate severity, the finding must have either the Label or Normalized field populated. - Label is the preferred attribute. If neither attribute is populated, then the finding is not valid.""" - parser = AsffParser() - - with self.subTest(type="invalid"): - self.assertEqual(None, parser.get_severity({"Seveiryt": 3})) - - with self.subTest(type="label low"): - self.assertEqual("Low", parser.get_severity({"Label": "LOW", "Normalized": 40, "Product": 2})) - with self.subTest(type="label medium"): - self.assertEqual("Medium", parser.get_severity({"Label": "MEDIUM", "Normalized": 50, "Product": 5})) - with self.subTest(type="label"): - self.assertEqual("Low", parser.get_severity({"Label": "LOW", "Normalized": 40, "Product": 2})) - - # 0 - INFORMATIONAL - # 1–39 - LOW - # 40–69 - MEDIUM - # 70–89 - HIGH - # 90–100 - CRITICAL - with self.subTest(type="normalized low"): - self.assertEqual("Low", parser.get_severity({"Normalized": 20, "Product": 2})) - with self.subTest(type="normalized medium"): - self.assertEqual("Medium", parser.get_severity({"Normalized": 50, "Product": 5})) - with self.subTest(type="normalized high"): - self.assertEqual("High", parser.get_severity({"Normalized": 80, "Product": 2})) - with self.subTest(type="normalizedinfo"): - self.assertEqual("Info", parser.get_severity({"Normalized": 0, "Product": 2})) - - def test_prowler_finding(self): - with open(get_unit_tests_path() + sample_path("prowler-output.asff.json")) as test_file: + def load_sample_json(self, file_name): + with open(sample_path(file_name), "r") as file: + return json.load(file) + + def common_check_finding(self, finding, data, index, guarddutydate=False): + self.assertEqual(finding.title, data[index]["Title"]) + self.assertEqual(finding.description, data[index]["Description"]) + if guarddutydate: + self.assertEqual(finding.date.date(), + datetime.strptime(data[0]["CreatedAt"], "%Y-%m-%dT%H:%M:%S.%fZ").date()) + else: + self.assertEqual(finding.date.date(), + datetime.strptime(data[0]["CreatedAt"], "%Y-%m-%dT%H:%M:%SZ").date()) + self.assertEqual(finding.severity.lower(), data[index]["Severity"]["Label"].lower()) + self.assertTrue(finding.active) + expected_ipv4s = data[0]["Resources"][0]["Details"]["AwsEc2Instance"][ + "IpV4Addresses" + ] + for endpoint in finding.unsaved_endpoints: + self.assertTrue(endpoint, expected_ipv4s) + endpoint.clean() + + def test_asff_one_vuln(self): + data = self.load_sample_json("one_vuln.json") + with open(sample_path("one_vuln.json"), "r") as file: parser = AsffParser() - findings = parser.get_findings(test_file, Test()) - self.assertEqual(731, len(findings)) - for finding in findings: - self.common_check_finding(finding) - with self.subTest(i=0): - finding = findings[0] - self.assertIn("Check if IAM Access Analyzer is enabled", finding.title) - self.assertIn("IAM Access Analyzer in account 123456789012 is not enabled", finding.description) - self.assertEqual(datetime.date(2023, 3, 18), finding.date.date()) - self.assertEqual("Low", finding.severity) - self.assertTrue(finding.active) - self.assertEqual( - "prowler-accessanalyzer_enabled-123456789012-ap-northeast-1-fb33278bd", finding.unique_id_from_tool - ) - - with self.subTest(i=300): - finding = findings[300] - self.assertIn( - "Ensure no security groups allow ingress from 0.0.0.0/0 or ::/0 to Elasticsearch/Kibana ports", - finding.title, - ) - self.assertIn( - "Security group default (sg-3965844c) has not Elasticsearch/Kibana ports 9200, 9300 and 5601 open to the Internet", - finding.description, - ) - self.assertEqual(datetime.date(2023, 3, 18), finding.date.date()) - self.assertEqual("High", finding.severity) - self.assertTrue(finding.active) - self.assertEqual( - "prowler-ec2_securitygroup_allow_ingress_from_internet_to_tcp_port_elasticsearch_kibana_9200_9300_5601-123456789012-sa-east-1-49c27aa6d", - finding.unique_id_from_tool, - ) - - with self.subTest(i=700): - finding = findings[700] - self.assertIn("Check if Security Hub is enabled and its standard subscriptions", finding.title) - self.assertIn("Security Hub is not enabled", finding.description) - self.assertEqual(datetime.date(2023, 3, 18), finding.date.date()) - self.assertEqual("Medium", finding.severity) - self.assertTrue(finding.active) - self.assertEqual( - "prowler-securityhub_enabled-123456789012-ap-southeast-1-d053c2dfc", finding.unique_id_from_tool - ) + findings = parser.get_findings(file, Test()) + self.assertEqual(1, len(findings)) + self.common_check_finding(findings[0], data, 0) - def test_guardduty_finding(self): - with open( - get_unit_tests_path() - + sample_path("guardduty/Unusual Behaviors-User-Persistence IAMUser-NetworkPermissions.json") - ) as test_file: + def test_asff_many_vulns(self): + data = self.load_sample_json("many_vulns.json") + with open(sample_path("many_vulns.json"), "r") as file: parser = AsffParser() - findings = parser.get_findings(test_file, Test()) - self.assertEqual(1, len(findings)) - for finding in findings: - self.common_check_finding(finding) - with self.subTest(i=0): - finding = findings[0] - self.assertIn("Unusual changes to network permissions by GeneratedFindingUserName", finding.title) - self.assertIn( - "APIs commonly used to change the network access permissions for security groups, routes and ACLs, was invoked by IAM principal GeneratedFindingUserName", - finding.description, - ) - self.assertEqual(datetime.date(2020, 11, 11), finding.date.date()) - self.assertEqual("Medium", finding.severity) - self.assertTrue(finding.active) - self.assertEqual( - "arn:aws:guardduty:eu-west-1:123456789012:detector/cab6a714deb3b739eaddacbdfd5ef2f2/finding/d6badb90e557d4bd811488a53ca89895", - finding.unique_id_from_tool, - ) + findings = parser.get_findings(file, Test()) + self.assertEqual(len(findings), 5) + for index, finding in enumerate(findings): + self.common_check_finding(finding, data, index) + + def test_asff_guardduty(self): + data = self.load_sample_json("guardduty/Unusual Behaviors-User-Persistence IAMUser-NetworkPermissions.json") + with open(sample_path("guardduty/Unusual Behaviors-User-Persistence IAMUser-NetworkPermissions.json"), "r") as file: + parser = AsffParser() + findings = parser.get_findings(file, Test()) + self.assertEqual(len(findings), 1) + for index, finding in enumerate(findings): + self.common_check_finding(finding, data, index, guarddutydate=True) + self.assertEqual(finding.unsaved_endpoints[0], Endpoint(host="10.0.0.1")) From 223ae56c78c3799f6ceef97678fadc7be8c52bd8 Mon Sep 17 00:00:00 2001 From: Cody Maffucci <46459665+Maffooch@users.noreply.github.com> Date: Thu, 18 Jan 2024 22:46:29 -0600 Subject: [PATCH 16/22] Update to Node 20.x in all the places (#9349) --- .github/workflows/gh-pages.yml | 2 +- Dockerfile.nginx-alpine | 2 +- Dockerfile.nginx-debian | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index bc92b1571e1..84d7800bed7 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -23,7 +23,7 @@ jobs: - name: Setup Node uses: actions/setup-node@v4 with: - node-version: '16.x' + node-version: '20.x' - name: Cache dependencies uses: actions/cache@v4 diff --git a/Dockerfile.nginx-alpine b/Dockerfile.nginx-alpine index 3d479106c11..faa244612be 100644 --- a/Dockerfile.nginx-alpine +++ b/Dockerfile.nginx-alpine @@ -34,7 +34,7 @@ RUN CPUCOUNT=1 pip3 wheel --wheel-dir=/tmp/wheels -r ./requirements.txt FROM build AS collectstatic # Node installation from https://github.com/nodejs/docker-node -ENV NODE_VERSION 14.21.2 +ENV NODE_VERSION 20.11.0 RUN addgroup -g 1000 node \ && adduser -u 1000 -G node -s /bin/sh -D node \ diff --git a/Dockerfile.nginx-debian b/Dockerfile.nginx-debian index 7af6520fc31..acec5dd551e 100644 --- a/Dockerfile.nginx-debian +++ b/Dockerfile.nginx-debian @@ -44,8 +44,8 @@ RUN \ apt-get -y update && \ apt-get -y install --no-install-recommends apt-transport-https ca-certificates curl wget gnupg && \ curl -sSL https://deb.nodesource.com/gpgkey/nodesource.gpg.key | apt-key add --no-tty - && \ - echo 'deb https://deb.nodesource.com/node_14.x bullseye main' > /etc/apt/sources.list.d/nodesource.list && \ - echo 'deb-src https://deb.nodesource.com/node_14.x bullseye main' >> /etc/apt/sources.list.d/nodesource.list && \ + echo 'deb https://deb.nodesource.com/node_20.x bullseye main' > /etc/apt/sources.list.d/nodesource.list && \ + echo 'deb-src https://deb.nodesource.com/node_20.x bullseye main' >> /etc/apt/sources.list.d/nodesource.list && \ apt-get update -y -o Dir::Etc::sourcelist="sources.list.d/nodesource.list" \ -o Dir::Etc::sourceparts="-" -o APT::Get::List-Cleanup="0" && \ curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - && \ From a002f73bb739886f3332f9bfff9f030e35eea632 Mon Sep 17 00:00:00 2001 From: Antoine Ruffino <138585151+a-ruff@users.noreply.github.com> Date: Fri, 19 Jan 2024 05:48:29 +0100 Subject: [PATCH 17/22] Enhancements to Govulncheck parser (#9339) * enhance govulncheck parser * Reverting changes in many_vulns_new_version.json --- dojo/tools/govulncheck/parser.py | 115 ++++++++-- ...any_vulns_new_version_custom_severity.json | 196 ++++++++++++++++++ .../govulncheck/no_vulns_new_version.json | 18 ++ unittests/tools/test_govulncheck_parser.py | 79 +++++-- 4 files changed, 378 insertions(+), 30 deletions(-) create mode 100644 unittests/scans/govulncheck/many_vulns_new_version_custom_severity.json create mode 100644 unittests/scans/govulncheck/no_vulns_new_version.json diff --git a/dojo/tools/govulncheck/parser.py b/dojo/tools/govulncheck/parser.py index a10f5759649..1e3716309a1 100644 --- a/dojo/tools/govulncheck/parser.py +++ b/dojo/tools/govulncheck/parser.py @@ -37,6 +37,38 @@ def get_location(data, node): def get_version(data, node): return data["Requires"]["Modules"][str(node)]["Version"] + def get_finding_trace_info(self, data, osv_id): + # Browse the findings to look for matching OSV-id. If the OSV-id is matching, extract traces. + trace_info_strs = [] + for elem in data: + if 'finding' in elem.keys(): + finding = elem["finding"] + if finding.get("osv") == osv_id: + trace_info = finding.get("trace", []) + for trace in trace_info: + module = trace.get("module", "Unknown module") + version = trace.get("version", "Unknown version") + package = trace.get("module", "Unknown package") + function = trace.get("function", "Unknown function") + filename = filename = trace.get("position", {}).get("filename", "Unknown filename") + line = trace.get("position", {}).get("line", "Unknown line") + trace_info_str = f"\tModule: {module}, Version: {version}, Package: {package}, Function: {function}, File: {filename}, Line: {line}" + trace_info_strs.append(trace_info_str) + return "\n".join(trace_info_strs) + + def get_affected_version(self, data, osv_id): + # Browse the findings to look for matching OSV-id. If the OSV-id is matching, extract the first affected version. + trace_info_strs = [] + for elem in data: + if 'finding' in elem.keys(): + finding = elem["finding"] + if finding.get("osv") == osv_id: + trace_info = finding.get("trace", []) + for trace in trace_info: + if 'version' in trace.keys(): + return trace.get("version") + return "" + def get_findings(self, scan_file, test): findings = [] try: @@ -46,6 +78,7 @@ def get_findings(self, scan_file, test): else: if isinstance(data, dict): if data["Vulns"]: + # Parsing for old govulncheck output format list_vulns = data["Vulns"] for cve, elems in groupby( list_vulns, key=lambda vuln: vuln["OSV"]["aliases"][0] @@ -92,26 +125,78 @@ def get_findings(self, scan_file, test): ] = f"Vulnerable functions: {'; '.join(vuln_methods)}" findings.append(Finding(**d)) elif isinstance(data, list): + # Parsing for new govulncheck output format for elem in data: if 'osv' in elem.keys(): cve = elem["osv"]["aliases"][0] + osv_data = elem["osv"] + affected_package = osv_data["affected"][0]["package"] + affected_ranges = osv_data["affected"][0]["ranges"] + affected_ecosystem = affected_package.get("ecosystem", "Unknown") + impact = osv_data.get('details', 'Unknown') + formatted_ranges = [] + summary = osv_data.get('summary', 'Unknown') + component_name = affected_package["name"] + id = osv_data["id"] + + for r in affected_ranges: + events = r['events'] + event_pairs = [] + for i in range(0, len(events), 2): + # Events come in pairs: introduced, then fixed + introduced = events[i].get('introduced', 'Unknown') + fixed = events[i + 1].get('fixed', 'Unknown') if i + 1 < len(events) else 'Unknown' + event_pairs.append(f"\n\t\tIntroduced in {introduced}, fixed in {fixed}") + formatted_ranges.append(f"type {r['type']}: {'. '.join(event_pairs)}") + range_info = "\n ".join(formatted_ranges) + + vuln_functions = ", ".join( + set(osv_data["affected"][0]["ecosystem_specific"]["imports"][0].get("symbols", [])) + ) + + description = ( + f"**Summary:** {summary}\n" + f"**Vulnerable functions:** {vuln_functions}\n" + f"**Affected Ecosystem:** {affected_ecosystem}\n" + f"**Affected Versions:** {range_info}\n" + f"**Vulnerable Package:** {affected_package['name']}\n" + f"**Traces found :**\n{self.get_finding_trace_info(data, osv_data['id'])}" + ) + + references = [f"{ref['type']}: {ref['url']}" for ref in osv_data["references"]] + db_specific_url = osv_data["database_specific"].get("url", "Unknown") + if db_specific_url: + references.append(f"Database: {db_specific_url}") + references = "\n".join(references) + + ecosystem_specific = osv_data["affected"][0].get("ecosystem_specific", {}) + imports = ecosystem_specific.get("imports", [{}]) + path = imports[0].get("path", "") if imports else "" + if path: + title = f"{osv_data['id']} - {affected_package['name']} - {path}" + else: + title = f"{osv_data['id']} - {affected_package['name']}" + + affected_version = self.get_affected_version(data, osv_data['id']) + + if 'severity' in elem["osv"].keys(): + severity = elem["osv"]["severity"] + else: + severity = SEVERITY + d = { "cve": cve, - "severity": SEVERITY, - "title": elem["osv"]["id"], - "component_name": elem["osv"]["affected"][0]["package"]["name"], - "component_version": elem["osv"]["schema_version"] + "severity": severity, + "title": title, + "component_name": component_name, + "component_version": affected_version, + "description": description, + "impact": impact, + "references": references, + "file_path": path, + "url": db_specific_url, + "unique_id_from_tool": id } - d["references"] = elem["osv"]["references"][0]["url"] - d["url"] = elem["osv"]["database_specific"]["url"] - d["unique_id_from_tool"] = elem["osv"]["id"] - vuln_methods = set( - elem["osv"]["affected"][0][ - "ecosystem_specific" - ]["imports"][0].get("symbols", []) - ) - d[ - "description" - ] = f"Vulnerable functions: {'; '.join(vuln_methods)}" + findings.append(Finding(**d)) return findings diff --git a/unittests/scans/govulncheck/many_vulns_new_version_custom_severity.json b/unittests/scans/govulncheck/many_vulns_new_version_custom_severity.json new file mode 100644 index 00000000000..4f37dbeb652 --- /dev/null +++ b/unittests/scans/govulncheck/many_vulns_new_version_custom_severity.json @@ -0,0 +1,196 @@ +[ + { + "config": { + "protocol_version": "v1.0.0", + "scanner_name": "govulncheck", + "scanner_version": "v1.0.1", + "db": "https://vuln.go.dev", + "db_last_modified": "2024-01-04T18:39:51Z", + "go_version": "go1.21.4", + "scan_level": "symbol" + } + }, + { + "progress": { + "message": "Scanning your code and 47 packages across 1 dependent module for known vulnerabilities..." + } + }, + { + "osv": { + "schema_version": "1.3.1", + "id": "GO-2021-0113", + "modified": "2023-06-12T18:45:41Z", + "published": "2021-10-06T17:51:21Z", + "severity":"Low", + "aliases": [ + "CVE-2021-38561", + "GHSA-ppp9-7jff-5vj2" + ], + "summary": "Out-of-bounds read in golang.org/x/text/language", + "details": "Due to improper index calculation, an incorrectly formatted language tag can cause Parse to panic via an out of bounds read. If Parse is used to process untrusted user inputs, this may be used as a vector for a denial of service attack.", + "affected": [ + { + "package": { + "name": "golang.org/x/text", + "ecosystem": "Go" + }, + "ranges": [ + { + "type": "SEMVER", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "0.3.7" + } + ] + } + ], + "ecosystem_specific": { + "imports": [ + { + "path": "golang.org/x/text/language", + "symbols": [ + "MatchStrings", + "MustParse", + "Parse", + "ParseAcceptLanguage" + ] + } + ] + } + } + ], + "references": [ + { + "type": "FIX", + "url": "https://go.dev/cl/340830" + }, + { + "type": "FIX", + "url": "https://go.googlesource.com/text/+/383b2e75a7a4198c42f8f87833eefb772868a56f" + } + ], + "credits": [ + { + "name": "Guido Vranken" + } + ], + "database_specific": { + "url": "https://pkg.go.dev/vuln/GO-2021-0113" + } + } + }, + { + "finding": { + "osv": "GO-2021-0113", + "fixed_version": "v0.3.7", + "trace": [ + { + "module": "golang.org/x/text", + "version": "v0.3.5", + "package": "golang.org/x/text/language", + "function": "Parse" + }, + { + "module": "vuln.tutorial", + "package": "vuln.tutorial", + "function": "main", + "position": { + "filename": "govulncheck/vulnerable/main.go", + "offset": 189, + "line": 12, + "column": 43 + } + } + ] + } + }, + { + "osv": { + "schema_version": "1.3.1", + "id": "GO-2022-1059", + "modified": "2023-06-12T18:45:41Z", + "published": "2022-10-11T18:16:24Z", + "severity": "High", + "aliases": [ + "CVE-2022-32149", + "GHSA-69ch-w2m2-3vjp" + ], + "summary": "Denial of service via crafted Accept-Language header in golang.org/x/text/language", + "details": "An attacker may cause a denial of service by crafting an Accept-Language header which ParseAcceptLanguage will take significant time to parse.", + "affected": [ + { + "package": { + "name": "golang.org/x/text", + "ecosystem": "Go" + }, + "ranges": [ + { + "type": "SEMVER", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "0.3.8" + } + ] + } + ], + "ecosystem_specific": { + "imports": [ + { + "path": "golang.org/x/text/language", + "symbols": [ + "MatchStrings", + "ParseAcceptLanguage" + ] + } + ] + } + } + ], + "references": [ + { + "type": "REPORT", + "url": "https://go.dev/issue/56152" + }, + { + "type": "FIX", + "url": "https://go.dev/cl/442235" + }, + { + "type": "WEB", + "url": "https://groups.google.com/g/golang-announce/c/-hjNw559_tE/m/KlGTfid5CAAJ" + } + ], + "credits": [ + { + "name": "Adam Korczynski (ADA Logics)" + }, + { + "name": "OSS-Fuzz" + } + ], + "database_specific": { + "url": "https://pkg.go.dev/vuln/GO-2022-1059" + } + } + }, + { + "finding": { + "osv": "GO-2022-1059", + "fixed_version": "v0.3.8", + "trace": [ + { + "module": "golang.org/x/text", + "version": "v0.3.5", + "package": "golang.org/x/text/language" + } + ] + } + } +] + \ No newline at end of file diff --git a/unittests/scans/govulncheck/no_vulns_new_version.json b/unittests/scans/govulncheck/no_vulns_new_version.json new file mode 100644 index 00000000000..4ff229e385c --- /dev/null +++ b/unittests/scans/govulncheck/no_vulns_new_version.json @@ -0,0 +1,18 @@ +[ + { + "config": { + "protocol_version": "v1.0.0", + "scanner_name": "govulncheck", + "scanner_version": "v1.0.1", + "db": "https://vuln.go.dev", + "db_last_modified": "2024-01-04T18:39:51Z", + "go_version": "go1.21.4", + "scan_level": "symbol" + } + }, + { + "progress": { + "message": "Scanning your code and 0 packages across 0 dependent modules for known vulnerabilities..." + } + } +] \ No newline at end of file diff --git a/unittests/tools/test_govulncheck_parser.py b/unittests/tools/test_govulncheck_parser.py index b046e24a1c1..55dc9bf84f0 100644 --- a/unittests/tools/test_govulncheck_parser.py +++ b/unittests/tools/test_govulncheck_parser.py @@ -20,21 +20,6 @@ def test_parse_no_findings(self): findings = parser.get_findings(testfile, Test()) self.assertEqual(0, len(findings)) - def test_parse_new_version_findings(self): - testfile = open("unittests/scans/govulncheck/many_vulns_new_version.json") - parser = GovulncheckParser() - findings = parser.get_findings(testfile, Test()) - self.assertEqual(1, len(findings)) - with self.subTest(i=0): - finding = findings[0] - self.assertEqual("GO-2023-1840", finding.title) - self.assertEqual("Info", finding.severity) - self.assertEqual("CVE-2023-29403", finding.cve) - self.assertEqual("stdlib", finding.component_name) - self.assertEqual("1.3.1", finding.component_version) - self.assertIsNotNone(finding.description) - self.assertEqual("https://go.dev/issue/60272", finding.references) - def test_parse_many_findings(self): testfile = open("unittests/scans/govulncheck/many_vulns.json") parser = GovulncheckParser() @@ -81,3 +66,67 @@ def test_parse_many_findings(self): self.assertIsNotNone(finding.impact) self.assertIsNotNone(finding.description) self.assertEqual("https://groups.google.com/g/golang-announce/c/x49AQzIVX-s", finding.references) + + def test_parse_new_version_no_findings(self): + testfile = open("unittests/scans/govulncheck/no_vulns_new_version.json") + parser = GovulncheckParser() + findings = parser.get_findings(testfile, Test()) + self.assertEqual(0, len(findings)) + + def test_parse_new_version_many_findings(self): + testfile = open("unittests/scans/govulncheck/many_vulns_new_version.json") + parser = GovulncheckParser() + findings = parser.get_findings(testfile, Test()) + testfile.close() + + self.assertEqual(1, len(findings)) + + with self.subTest(i=0): + finding = findings[0] + self.assertEqual("GO-2023-1840 - stdlib - runtime", finding.title) + self.assertEqual("Info", finding.severity) + self.assertEqual("CVE-2023-29403", finding.cve) + self.assertEqual("stdlib", finding.component_name) + self.assertEqual("v1.20.1", finding.component_version) + self.assertEqual("GO-2023-1840", finding.unique_id_from_tool) + self.assertEqual("runtime", finding.file_path) + self.assertEqual("https://pkg.go.dev/vuln/GO-2023-1840", finding.url) + self.assertIsNotNone(finding.impact) + self.assertIsNotNone(finding.description) + self.assertIsNotNone(finding.references) + + def test_parse_new_version_many_findings_custom_severity(self): + testfile = open("unittests/scans/govulncheck/many_vulns_new_version_custom_severity.json") + parser = GovulncheckParser() + findings = parser.get_findings(testfile, Test()) + testfile.close() + + self.assertEqual(2, len(findings)) + + with self.subTest(i=0): + finding = findings[0] + self.assertEqual("Low", finding.severity) + self.assertEqual("GO-2021-0113 - golang.org/x/text - golang.org/x/text/language", finding.title) + self.assertEqual("CVE-2021-38561", finding.cve) + self.assertEqual("golang.org/x/text", finding.component_name) + self.assertEqual("v0.3.5", finding.component_version) + self.assertEqual("GO-2021-0113", finding.unique_id_from_tool) + self.assertEqual("golang.org/x/text/language", finding.file_path) + self.assertEqual("https://pkg.go.dev/vuln/GO-2021-0113", finding.url) + self.assertIsNotNone(finding.impact) + self.assertIsNotNone(finding.description) + self.assertIsNotNone(finding.references) + + with self.subTest(i=1): + finding = findings[1] + self.assertEqual("High", finding.severity) + self.assertEqual("GO-2022-1059 - golang.org/x/text - golang.org/x/text/language", finding.title) + self.assertEqual("CVE-2022-32149", finding.cve) + self.assertEqual("golang.org/x/text", finding.component_name) + self.assertEqual("v0.3.5", finding.component_version) + self.assertEqual("GO-2022-1059", finding.unique_id_from_tool) + self.assertEqual("golang.org/x/text/language", finding.file_path) + self.assertEqual("https://pkg.go.dev/vuln/GO-2022-1059", finding.url) + self.assertIsNotNone(finding.impact) + self.assertIsNotNone(finding.description) + self.assertIsNotNone(finding.references) From f1e435e5900c7e7456f12631f5510cc3ea28f804 Mon Sep 17 00:00:00 2001 From: manuelsommer <47991713+manuel-sommer@users.noreply.github.com> Date: Fri, 19 Jan 2024 16:41:32 +0100 Subject: [PATCH 18/22] :sparkles: advance parser docs to provide sample scan data (#9347) * :sparkles: advance parser docs to provide sample scan data * update according to review comment * remove openvas-md from commit --- docs/content/en/integrations/parsers/file/acunetix.md | 3 +++ docs/content/en/integrations/parsers/file/acunetix360.md | 3 +++ .../en/integrations/parsers/file/anchore_enterprise.md | 3 +++ docs/content/en/integrations/parsers/file/anchore_grype.md | 1 - .../en/integrations/parsers/file/anchorectl_policies.md | 5 ++++- .../en/integrations/parsers/file/anchorectl_vulns.md | 5 ++++- docs/content/en/integrations/parsers/file/appspider.md | 3 +++ docs/content/en/integrations/parsers/file/aqua.md | 3 +++ docs/content/en/integrations/parsers/file/arachni.md | 3 +++ docs/content/en/integrations/parsers/file/asff.md | 3 +++ docs/content/en/integrations/parsers/file/auditjs.md | 3 +++ docs/content/en/integrations/parsers/file/aws_prowler.md | 3 +++ .../content/en/integrations/parsers/file/aws_prowler_v3.md | 1 - docs/content/en/integrations/parsers/file/aws_scout2.md | 3 +++ .../content/en/integrations/parsers/file/awssecurityhub.md | 1 - .../parsers/file/azure_security_center_recommendations.md | 3 +++ docs/content/en/integrations/parsers/file/bandit.md | 1 - docs/content/en/integrations/parsers/file/blackduck.md | 5 ++++- .../integrations/parsers/file/blackduck_binary_analysis.md | 3 +++ .../integrations/parsers/file/blackduck_component_risk.md | 5 ++++- docs/content/en/integrations/parsers/file/brakeman.md | 3 +++ docs/content/en/integrations/parsers/file/bugcrowd.md | 3 +++ docs/content/en/integrations/parsers/file/bundler_audit.md | 3 +++ docs/content/en/integrations/parsers/file/burp_api.md | 5 ++++- .../en/integrations/parsers/file/burp_enterprise.md | 5 ++--- docs/content/en/integrations/parsers/file/burp_graphql.md | 2 ++ docs/content/en/integrations/parsers/file/cargo_audit.md | 5 ++++- docs/content/en/integrations/parsers/file/checkmarx.md | 3 +++ docs/content/en/integrations/parsers/file/checkov.md | 2 +- docs/content/en/integrations/parsers/file/clair.md | 3 +++ docs/content/en/integrations/parsers/file/clair_klar.md | 5 ++++- docs/content/en/integrations/parsers/file/cloudsploit.md | 5 ++++- docs/content/en/integrations/parsers/file/cobalt.md | 3 +++ docs/content/en/integrations/parsers/file/codechecker.md | 3 +++ docs/content/en/integrations/parsers/file/contrast.md | 3 +++ docs/content/en/integrations/parsers/file/coverity_api.md | 3 +++ .../en/integrations/parsers/file/crashtest_security.md | 3 +++ docs/content/en/integrations/parsers/file/cred_scan.md | 3 +++ docs/content/en/integrations/parsers/file/cyclonedx.md | 5 ++++- docs/content/en/integrations/parsers/file/dawnscanner.md | 3 +++ .../en/integrations/parsers/file/dependency_check.md | 3 +++ .../en/integrations/parsers/file/dependency_track.md | 3 +++ .../content/en/integrations/parsers/file/detect_secrets.md | 5 ++++- docs/content/en/integrations/parsers/file/dockerbench.md | 5 ++++- docs/content/en/integrations/parsers/file/dockle.md | 5 ++++- docs/content/en/integrations/parsers/file/drheader.md | 3 +++ docs/content/en/integrations/parsers/file/dsop.md | 5 ++++- docs/content/en/integrations/parsers/file/edgescan.md | 1 + docs/content/en/integrations/parsers/file/eslint.md | 3 +++ docs/content/en/integrations/parsers/file/fortify.md | 3 +++ docs/content/en/integrations/parsers/file/generic.md | 3 +++ docs/content/en/integrations/parsers/file/ggshield.md | 5 ++++- .../en/integrations/parsers/file/github_vulnerability.md | 3 +++ .../en/integrations/parsers/file/gitlab_api_fuzzing.md | 5 ++++- .../en/integrations/parsers/file/gitlab_container_scan.md | 5 ++++- docs/content/en/integrations/parsers/file/gitlab_dast.md | 5 ++++- .../en/integrations/parsers/file/gitlab_dep_scan.md | 5 ++++- docs/content/en/integrations/parsers/file/gitlab_sast.md | 5 ++++- .../parsers/file/gitlab_secret_detection_report.md | 5 ++++- docs/content/en/integrations/parsers/file/gitleaks.md | 3 +++ docs/content/en/integrations/parsers/file/gosec.md | 3 +++ docs/content/en/integrations/parsers/file/govulncheck.md | 5 ++++- docs/content/en/integrations/parsers/file/h1.md | 5 ++++- docs/content/en/integrations/parsers/file/hadolint.md | 3 +++ .../en/integrations/parsers/file/harbor_vulnerability.md | 5 ++++- docs/content/en/integrations/parsers/file/hcl_appscan.md | 3 +++ docs/content/en/integrations/parsers/file/horusec.md | 4 +++- docs/content/en/integrations/parsers/file/humble.md | 5 ++++- docs/content/en/integrations/parsers/file/huskyci.md | 5 ++++- docs/content/en/integrations/parsers/file/hydra.md | 3 +++ docs/content/en/integrations/parsers/file/ibm_app.md | 3 +++ docs/content/en/integrations/parsers/file/immuniweb.md | 3 +++ docs/content/en/integrations/parsers/file/intsights.md | 3 +++ .../parsers/file/jfrog_xray_api_summary_artifact.md | 2 +- .../parsers/file/jfrog_xray_on_demand_binary_scan.md | 7 +++++-- .../en/integrations/parsers/file/jfrog_xray_unified.md | 3 +++ docs/content/en/integrations/parsers/file/jfrogxray.md | 3 +++ docs/content/en/integrations/parsers/file/kics.md | 3 +++ docs/content/en/integrations/parsers/file/kiuwan.md | 3 +++ docs/content/en/integrations/parsers/file/kubebench.md | 3 +++ docs/content/en/integrations/parsers/file/kubehunter.md | 3 +++ docs/content/en/integrations/parsers/file/meterian.md | 3 +++ .../en/integrations/parsers/file/microfocus_webinspect.md | 3 +++ docs/content/en/integrations/parsers/file/mobsf.md | 3 +++ docs/content/en/integrations/parsers/file/mobsfscan.md | 3 +++ .../en/integrations/parsers/file/mozilla_observatory.md | 3 +++ docs/content/en/integrations/parsers/file/ms_defender.md | 5 ++++- docs/content/en/integrations/parsers/file/netsparker.md | 3 +++ docs/content/en/integrations/parsers/file/neuvector.md | 5 ++++- .../en/integrations/parsers/file/neuvector_compliance.md | 5 ++++- docs/content/en/integrations/parsers/file/nexpose.md | 3 +++ docs/content/en/integrations/parsers/file/nikto.md | 5 ++++- docs/content/en/integrations/parsers/file/nmap.md | 3 +++ docs/content/en/integrations/parsers/file/npm_audit.md | 3 +++ docs/content/en/integrations/parsers/file/nsp.md | 3 +++ docs/content/en/integrations/parsers/file/nuclei.md | 3 +++ docs/content/en/integrations/parsers/file/openscap.md | 3 +++ docs/content/en/integrations/parsers/file/ort.md | 5 ++++- .../en/integrations/parsers/file/ossindex_devaudit.md | 5 ++++- docs/content/en/integrations/parsers/file/outpost24.md | 5 ++++- .../en/integrations/parsers/file/php_security_audit_v2.md | 3 +++ .../parsers/file/php_symfony_security_check.md | 3 +++ docs/content/en/integrations/parsers/file/pip_audit.md | 5 ++++- docs/content/en/integrations/parsers/file/pmd.md | 5 ++++- docs/content/en/integrations/parsers/file/popeye.md | 2 ++ docs/content/en/integrations/parsers/file/pwn_sast.md | 5 ++++- docs/content/en/integrations/parsers/file/qualys.md | 3 +++ .../integrations/parsers/file/qualys_infrascan_webgui.md | 5 ++++- docs/content/en/integrations/parsers/file/qualys_webapp.md | 3 +++ docs/content/en/integrations/parsers/file/retirejs.md | 3 +++ docs/content/en/integrations/parsers/file/risk_recon.md | 3 +++ docs/content/en/integrations/parsers/file/rubocop.md | 3 +++ docs/content/en/integrations/parsers/file/rusty_hog.md | 5 ++++- docs/content/en/integrations/parsers/file/sarif.md | 3 +++ docs/content/en/integrations/parsers/file/scantist.md | 5 ++++- docs/content/en/integrations/parsers/file/scout_suite.md | 5 ++++- docs/content/en/integrations/parsers/file/semgrep.md | 3 +++ docs/content/en/integrations/parsers/file/skf.md | 3 +++ docs/content/en/integrations/parsers/file/snyk.md | 3 +++ .../en/integrations/parsers/file/solar_appscreener.md | 5 ++++- docs/content/en/integrations/parsers/file/sonarqube.md | 3 +++ docs/content/en/integrations/parsers/file/sonatype.md | 3 +++ docs/content/en/integrations/parsers/file/spotbugs.md | 3 +++ docs/content/en/integrations/parsers/file/ssh_audit.md | 5 ++++- docs/content/en/integrations/parsers/file/ssl_labs.md | 3 +++ docs/content/en/integrations/parsers/file/sslscan.md | 3 +++ docs/content/en/integrations/parsers/file/sslyze.md | 5 +++-- docs/content/en/integrations/parsers/file/stackhawk.md | 5 ++++- .../content/en/integrations/parsers/file/sysdig_reports.md | 5 ++++- docs/content/en/integrations/parsers/file/talisman.md | 5 ++++- docs/content/en/integrations/parsers/file/tenable.md | 4 +++- docs/content/en/integrations/parsers/file/terrascan.md | 3 +++ docs/content/en/integrations/parsers/file/testssl.md | 3 +++ docs/content/en/integrations/parsers/file/tfsec.md | 3 +++ docs/content/en/integrations/parsers/file/trivy.md | 3 +++ .../content/en/integrations/parsers/file/trivy_operator.md | 3 +++ docs/content/en/integrations/parsers/file/trufflehog.md | 3 +++ docs/content/en/integrations/parsers/file/trufflehog3.md | 3 +++ docs/content/en/integrations/parsers/file/trustwave.md | 3 +++ .../en/integrations/parsers/file/trustwave_fusion_api.md | 5 ++++- docs/content/en/integrations/parsers/file/twistlock.md | 3 +++ docs/content/en/integrations/parsers/file/vcg.md | 1 + docs/content/en/integrations/parsers/file/veracode.md | 3 +++ docs/content/en/integrations/parsers/file/veracode_sca.md | 3 +++ docs/content/en/integrations/parsers/file/wapiti.md | 3 +++ docs/content/en/integrations/parsers/file/wazuh.md | 3 +++ docs/content/en/integrations/parsers/file/wfuzz.md | 5 ++++- docs/content/en/integrations/parsers/file/whispers.md | 4 +++- .../en/integrations/parsers/file/whitehat_sentinel.md | 5 ++++- docs/content/en/integrations/parsers/file/whitesource.md | 3 +++ docs/content/en/integrations/parsers/file/wpscan.md | 3 +++ docs/content/en/integrations/parsers/file/xanitizer.md | 5 ++++- docs/content/en/integrations/parsers/file/yarn_audit.md | 3 +++ docs/content/en/integrations/parsers/file/zap.md | 3 +++ 154 files changed, 489 insertions(+), 64 deletions(-) diff --git a/docs/content/en/integrations/parsers/file/acunetix.md b/docs/content/en/integrations/parsers/file/acunetix.md index 9bc0122928f..96a2c2005cc 100644 --- a/docs/content/en/integrations/parsers/file/acunetix.md +++ b/docs/content/en/integrations/parsers/file/acunetix.md @@ -3,3 +3,6 @@ title: "Acunetix Scanner" toc_hide: true --- XML format + +### Sample Scan Data +Sample Acunetix Scanner scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/acunetix). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/acunetix360.md b/docs/content/en/integrations/parsers/file/acunetix360.md index 135dff88981..01b208bbeaa 100644 --- a/docs/content/en/integrations/parsers/file/acunetix360.md +++ b/docs/content/en/integrations/parsers/file/acunetix360.md @@ -3,3 +3,6 @@ title: "Acunetix 360 Scanner" toc_hide: true --- Vulnerabilities List - JSON report + +### Sample Scan Data +Sample Acunetix 360 Scanner scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/acunetix360). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/anchore_enterprise.md b/docs/content/en/integrations/parsers/file/anchore_enterprise.md index 7aff9a7c4ab..78d3441eb5c 100644 --- a/docs/content/en/integrations/parsers/file/anchore_enterprise.md +++ b/docs/content/en/integrations/parsers/file/anchore_enterprise.md @@ -3,3 +3,6 @@ title: "Anchore Enterprise Policy Check" toc_hide: true --- Anchore-CLI JSON policy check report format. + +### Sample Scan Data +Sample Anchore Enterprise Policy Check scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/anchore_enterprise). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/anchore_grype.md b/docs/content/en/integrations/parsers/file/anchore_grype.md index 1316d69c544..02bb647384f 100644 --- a/docs/content/en/integrations/parsers/file/anchore_grype.md +++ b/docs/content/en/integrations/parsers/file/anchore_grype.md @@ -12,7 +12,6 @@ Anchore Grype JSON files are created using the Grype CLI, using the '-o json' op grype yourApp/example-page -o json > example_vulns.json {{< /highlight >}} - ### Acceptable JSON Format All properties are expected as strings and are required by the parser. diff --git a/docs/content/en/integrations/parsers/file/anchorectl_policies.md b/docs/content/en/integrations/parsers/file/anchorectl_policies.md index 809ddbbd477..8ff36f72396 100644 --- a/docs/content/en/integrations/parsers/file/anchorectl_policies.md +++ b/docs/content/en/integrations/parsers/file/anchorectl_policies.md @@ -2,4 +2,7 @@ title: "AnchoreCTL Policies Report" toc_hide: true --- -AnchoreCTLs JSON policies report format \ No newline at end of file +AnchoreCTLs JSON policies report format + +### Sample Scan Data +Sample AnchoreCTL Policies Report scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/anchorectl_policies). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/anchorectl_vulns.md b/docs/content/en/integrations/parsers/file/anchorectl_vulns.md index 09d9d3ff90b..7f41b0e0a47 100644 --- a/docs/content/en/integrations/parsers/file/anchorectl_vulns.md +++ b/docs/content/en/integrations/parsers/file/anchorectl_vulns.md @@ -2,4 +2,7 @@ title: "AnchoreCTL Vuln Report" toc_hide: true --- -AnchoreCTLs JSON vulnerability report format \ No newline at end of file +AnchoreCTLs JSON vulnerability report format + +### Sample Scan Data +Sample AnchoreCTL Vuln Report scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/anchorectl_vulns). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/appspider.md b/docs/content/en/integrations/parsers/file/appspider.md index 6a030ca4cc1..0fd952c0f0d 100644 --- a/docs/content/en/integrations/parsers/file/appspider.md +++ b/docs/content/en/integrations/parsers/file/appspider.md @@ -4,3 +4,6 @@ toc_hide: true --- Use the VulnerabilitiesSummary.xml file found in the zipped report download. + +### Sample Scan Data +Sample AppSpider (Rapid7) scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/appspider). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/aqua.md b/docs/content/en/integrations/parsers/file/aqua.md index 0186d3bf63d..78b5f0cb384 100644 --- a/docs/content/en/integrations/parsers/file/aqua.md +++ b/docs/content/en/integrations/parsers/file/aqua.md @@ -3,3 +3,6 @@ title: "Aqua" toc_hide: true --- JSON report format. + +### Sample Scan Data +Sample Aqua scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/aqua). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/arachni.md b/docs/content/en/integrations/parsers/file/arachni.md index 296b0495dac..0c48e534d13 100644 --- a/docs/content/en/integrations/parsers/file/arachni.md +++ b/docs/content/en/integrations/parsers/file/arachni.md @@ -9,3 +9,6 @@ Reports are generated with `arachni_reporter` tool this way: {{< highlight bash >}} arachni_reporter --reporter 'json' js.com.afr {{< /highlight >}} + +### Sample Scan Data +Sample Arachni Scanner scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/arachni). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/asff.md b/docs/content/en/integrations/parsers/file/asff.md index 75dafff9715..de830908aa2 100644 --- a/docs/content/en/integrations/parsers/file/asff.md +++ b/docs/content/en/integrations/parsers/file/asff.md @@ -8,3 +8,6 @@ AWS Security Hub consumes, aggregates, organizes, and prioritizes findings from Reference: https://docs.aws.amazon.com/securityhub/latest/userguide/securityhub-findings-format.html Prowler tool can generate this format with option `-M json-asff`. + +### Sample Scan Data +Sample AWS Security Finding Format (ASFF) scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/asff). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/auditjs.md b/docs/content/en/integrations/parsers/file/auditjs.md index 7fadb7be0e4..03ed4e4bf8e 100644 --- a/docs/content/en/integrations/parsers/file/auditjs.md +++ b/docs/content/en/integrations/parsers/file/auditjs.md @@ -7,3 +7,6 @@ AuditJS scanning tool using OSSIndex database and generated with `--json` or `-j {{< highlight bash >}} auditjs ossi --json > auditjs_report.json {{< /highlight >}} + +### Sample Scan Data +Sample AuditJS (OSSIndex) scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/auditjs). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/aws_prowler.md b/docs/content/en/integrations/parsers/file/aws_prowler.md index 1d20fb615de..628b657ef07 100644 --- a/docs/content/en/integrations/parsers/file/aws_prowler.md +++ b/docs/content/en/integrations/parsers/file/aws_prowler.md @@ -3,3 +3,6 @@ title: "AWS Prowler Scanner" toc_hide: true --- Prowler file can be imported as a CSV (`-M csv`) or JSON (`-M json`) file. + +### Sample Scan Data +Sample AWS Prowler Scanner scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/aws_prowler). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/aws_prowler_v3.md b/docs/content/en/integrations/parsers/file/aws_prowler_v3.md index 7e98fb826e9..17dcf9698ae 100644 --- a/docs/content/en/integrations/parsers/file/aws_prowler_v3.md +++ b/docs/content/en/integrations/parsers/file/aws_prowler_v3.md @@ -8,7 +8,6 @@ DefectDojo parser accepts a .json file. Please note: earlier versions of AWS Pr JSON reports can be created from the [AWS Prowler V3 CLI](https://docs.prowler.cloud/en/latest/tutorials/reporting/#json) using the following command: `prowler -M json` - ### Acceptable JSON Format Parser expects an array of assessments. All properties are strings and are required by the parser. diff --git a/docs/content/en/integrations/parsers/file/aws_scout2.md b/docs/content/en/integrations/parsers/file/aws_scout2.md index ef2ce4d8f1c..2a5cbbf7157 100644 --- a/docs/content/en/integrations/parsers/file/aws_scout2.md +++ b/docs/content/en/integrations/parsers/file/aws_scout2.md @@ -12,3 +12,6 @@ Please switch to the new parser for ScoutSuite. {{% alert title="Warning" color="warning" %}} This parser is disactivated by default in releases >= 2.3.1 and will be removed in release >= 3.x.x. {{% /alert %}} + +### Sample Scan Data +Sample AWS Scout2 Scanner (deprecated) scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/aws_scout2). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/awssecurityhub.md b/docs/content/en/integrations/parsers/file/awssecurityhub.md index 826eae53a5c..dc2a2f06b4d 100644 --- a/docs/content/en/integrations/parsers/file/awssecurityhub.md +++ b/docs/content/en/integrations/parsers/file/awssecurityhub.md @@ -7,7 +7,6 @@ DefectDojo parser accepts a .json file. JSON reports can be created from the [AWS Security Hub CLI](https://docs.aws.amazon.com/cli/latest/reference/securityhub/get-findings.html) using the following command: `aws securityhub get-findings`. - ### Acceptable JSON Format Parser expects a .json file, with an array of Findings contained within a single JSON object. All properties are strings and are required by the parser. diff --git a/docs/content/en/integrations/parsers/file/azure_security_center_recommendations.md b/docs/content/en/integrations/parsers/file/azure_security_center_recommendations.md index 8220d347e3b..c4bffbd7a3a 100644 --- a/docs/content/en/integrations/parsers/file/azure_security_center_recommendations.md +++ b/docs/content/en/integrations/parsers/file/azure_security_center_recommendations.md @@ -3,3 +3,6 @@ title: "Azure Security Center Recommendations Scan" toc_hide: true --- Azure Security Center recommendations can be exported from the user interface in CSV format. + +### Sample Scan Data +Sample Azure Security Center Recommendations Scan scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/azure_security_center_recommendations). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/bandit.md b/docs/content/en/integrations/parsers/file/bandit.md index cf2734e0f57..604bbdffb3c 100644 --- a/docs/content/en/integrations/parsers/file/bandit.md +++ b/docs/content/en/integrations/parsers/file/bandit.md @@ -9,7 +9,6 @@ DefectDojo parser accepts a .json file. To export a .json file from Bandit, you will need to install and run the .json report formatter from your Bandit instance. See Bandit documentation: https://bandit.readthedocs.io/en/latest/formatters/index.html - ### Acceptable JSON Format All properties are expected as strings, except "metrics" properties, which are expected as numbers. All properties are required by the parser. diff --git a/docs/content/en/integrations/parsers/file/blackduck.md b/docs/content/en/integrations/parsers/file/blackduck.md index 232d817ad10..7f8226fd1e6 100644 --- a/docs/content/en/integrations/parsers/file/blackduck.md +++ b/docs/content/en/integrations/parsers/file/blackduck.md @@ -8,4 +8,7 @@ toc_hide: true The zip file must contain the security.csv and files.csv in order to produce findings that bear file locations information. * Import a single security.csv file. Findings will not have any file location -information. \ No newline at end of file +information. + +### Sample Scan Data +Sample Blackduck Hub scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/blackduck). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/blackduck_binary_analysis.md b/docs/content/en/integrations/parsers/file/blackduck_binary_analysis.md index af573a1f0f7..a51cea701a3 100644 --- a/docs/content/en/integrations/parsers/file/blackduck_binary_analysis.md +++ b/docs/content/en/integrations/parsers/file/blackduck_binary_analysis.md @@ -18,3 +18,6 @@ Black Duck Binary Analysis can also detect if sensitive information like email a #### **How** #### * Initiate Black Duck Binary Analysis scans using the UI, REST API, or drivers such as [pwn_bdba_scan](https://github.com/0dayinc/pwn/blob/master/bin/pwn_bdba_scan) found within the security automation framework, [PWN](https://github.com/0dayinc/pwn) * Import a single BDBA vulnerabilty csv results file into DefectDojo leveraging the UI, REST API, or drivers such as [pwn_defectdojo_importscan](https://github.com/0dayInc/pwn/blob/master/bin/pwn_defectdojo_importscan) or [pwn_defectdojo_reimportscan](https://github.com/0dayInc/pwn/blob/master/bin/pwn_defectdojo_reimportscan). + +### Sample Scan Data +Sample Blackduck Binary Analysis scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/blackduck_binary_analysis). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/blackduck_component_risk.md b/docs/content/en/integrations/parsers/file/blackduck_component_risk.md index 7344a94f775..0a8ff1e7b1e 100644 --- a/docs/content/en/integrations/parsers/file/blackduck_component_risk.md +++ b/docs/content/en/integrations/parsers/file/blackduck_component_risk.md @@ -2,4 +2,7 @@ title: "Blackduck Component Risk" toc_hide: true --- -Upload the zip file containing the security.csv and files.csv. \ No newline at end of file +Upload the zip file containing the security.csv and files.csv. + +### Sample Scan Data +Sample Blackduck Component Risk scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/blackduck_component_risk). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/brakeman.md b/docs/content/en/integrations/parsers/file/brakeman.md index 1a45149caf7..ca708641383 100644 --- a/docs/content/en/integrations/parsers/file/brakeman.md +++ b/docs/content/en/integrations/parsers/file/brakeman.md @@ -3,3 +3,6 @@ title: "Brakeman Scan" toc_hide: true --- Import Brakeman Scanner findings in JSON format. + +### Sample Scan Data +Sample Brakeman Scan scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/brakeman). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/bugcrowd.md b/docs/content/en/integrations/parsers/file/bugcrowd.md index bd7bf343273..a04076f853e 100644 --- a/docs/content/en/integrations/parsers/file/bugcrowd.md +++ b/docs/content/en/integrations/parsers/file/bugcrowd.md @@ -3,3 +3,6 @@ title: "Bugcrowd" toc_hide: true --- Import Bugcrowd results in CSV format. + +### Sample Scan Data +Sample Bugcrowd scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/bugcrowd). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/bundler_audit.md b/docs/content/en/integrations/parsers/file/bundler_audit.md index f1d94ef7f37..04d8bceb423 100644 --- a/docs/content/en/integrations/parsers/file/bundler_audit.md +++ b/docs/content/en/integrations/parsers/file/bundler_audit.md @@ -3,3 +3,6 @@ title: "Bundler-Audit" toc_hide: true --- Import the text output generated with bundle-audit check + +### Sample Scan Data +Sample Bundler-Audit scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/bundler_audit). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/burp_api.md b/docs/content/en/integrations/parsers/file/burp_api.md index 887895437ed..686e781b043 100644 --- a/docs/content/en/integrations/parsers/file/burp_api.md +++ b/docs/content/en/integrations/parsers/file/burp_api.md @@ -2,4 +2,7 @@ title: "Burp REST API" toc_hide: true --- -Import Burp REST API scan data in JSON format (/scan/[task_id] endpoint). \ No newline at end of file +Import Burp REST API scan data in JSON format (/scan/[task_id] endpoint). + +### Sample Scan Data +Sample Burp REST API scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/burp_api). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/burp_enterprise.md b/docs/content/en/integrations/parsers/file/burp_enterprise.md index 18338bbb5d5..a328ac1b135 100644 --- a/docs/content/en/integrations/parsers/file/burp_enterprise.md +++ b/docs/content/en/integrations/parsers/file/burp_enterprise.md @@ -9,6 +9,5 @@ DefectDojo parser accepts a Standard Report as an HTML file. To parse an XML fi See also Burp documentation for info on how to export a Standard Report: https://portswigger.net/burp/documentation/enterprise/work-with-scan-results/generate-reports - -### Sample Reports -A standard Burp Enterprise HTML Report can be found at https://github.com/DefectDojo/django-DefectDojo/blob/master/unittests/scans/burp_enterprise/many_vulns.html. +### Sample Scan Data +Sample Burp Enterprise Scan scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/burp_enterprise). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/burp_graphql.md b/docs/content/en/integrations/parsers/file/burp_graphql.md index 3ac18b987c3..90d60c4394b 100644 --- a/docs/content/en/integrations/parsers/file/burp_graphql.md +++ b/docs/content/en/integrations/parsers/file/burp_graphql.md @@ -104,3 +104,5 @@ Example GraphQL query to get issue details: } {{< /highlight >}} +### Sample Scan Data +Sample Burp GraphQL scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/burp_graphql). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/cargo_audit.md b/docs/content/en/integrations/parsers/file/cargo_audit.md index 37d7089c416..d56b41200c8 100644 --- a/docs/content/en/integrations/parsers/file/cargo_audit.md +++ b/docs/content/en/integrations/parsers/file/cargo_audit.md @@ -2,4 +2,7 @@ title: "CargoAudit Scan" toc_hide: true --- -Import JSON output of cargo-audit scan report \ No newline at end of file +Import JSON output of cargo-audit scan report + +### Sample Scan Data +Sample CargoAudit Scan scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/cargo_audit). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/checkmarx.md b/docs/content/en/integrations/parsers/file/checkmarx.md index df62aae8032..679adf935f9 100644 --- a/docs/content/en/integrations/parsers/file/checkmarx.md +++ b/docs/content/en/integrations/parsers/file/checkmarx.md @@ -12,3 +12,6 @@ That will generate three files, two of which are needed for defectdojo. Build th `jq -s . CxOSAVulnerabilities.json CxOSALibraries.json` Data for SAST, SCA and KICS are supported. + +### Sample Scan Data +Sample Checkmarx scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/checkmarx). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/checkov.md b/docs/content/en/integrations/parsers/file/checkov.md index 8a34d1e969f..8c45815da14 100644 --- a/docs/content/en/integrations/parsers/file/checkov.md +++ b/docs/content/en/integrations/parsers/file/checkov.md @@ -49,4 +49,4 @@ JSON files can be created from the Checkov CLI: https://www.checkov.io/2.Basics/ ~~~ ### Sample Scan Data -Sample Checkov scans can be found at https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/checkov +Sample Checkov scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/checkov). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/clair.md b/docs/content/en/integrations/parsers/file/clair.md index e2e9bd6dc5a..235f801ee94 100644 --- a/docs/content/en/integrations/parsers/file/clair.md +++ b/docs/content/en/integrations/parsers/file/clair.md @@ -3,3 +3,6 @@ title: "Clair Scan" toc_hide: true --- Import JSON reports of Docker image vulnerabilities. + +### Sample Scan Data +Sample Clair Scan scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/clair). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/clair_klar.md b/docs/content/en/integrations/parsers/file/clair_klar.md index 4328a17bda8..05651bf267c 100644 --- a/docs/content/en/integrations/parsers/file/clair_klar.md +++ b/docs/content/en/integrations/parsers/file/clair_klar.md @@ -3,4 +3,7 @@ title: "Clair Klar Scan" toc_hide: true --- Import JSON reports of Docker image vulnerabilities from clair klar -client. \ No newline at end of file +client. + +### Sample Scan Data +Sample Clair Klar Scan scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/clair_klar). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/cloudsploit.md b/docs/content/en/integrations/parsers/file/cloudsploit.md index 653a3b32899..8e178efdffa 100644 --- a/docs/content/en/integrations/parsers/file/cloudsploit.md +++ b/docs/content/en/integrations/parsers/file/cloudsploit.md @@ -2,4 +2,7 @@ title: "Cloudsploit (AquaSecurity)" toc_hide: true --- -From: https://github.com/aquasecurity/cloudsploit . Import the JSON output. \ No newline at end of file +From: https://github.com/aquasecurity/cloudsploit . Import the JSON output. + +### Sample Scan Data +Sample Cloudsploit (AquaSecurity) scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/cloudsploit). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/cobalt.md b/docs/content/en/integrations/parsers/file/cobalt.md index 59a7d2d4db1..c17f0f662a5 100644 --- a/docs/content/en/integrations/parsers/file/cobalt.md +++ b/docs/content/en/integrations/parsers/file/cobalt.md @@ -3,3 +3,6 @@ title: "Cobalt.io Scan" toc_hide: true --- CSV Report + +### Sample Scan Data +Sample Cobalt.io Scan scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/cobalt). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/codechecker.md b/docs/content/en/integrations/parsers/file/codechecker.md index 71c2fb6c229..912fdcab269 100644 --- a/docs/content/en/integrations/parsers/file/codechecker.md +++ b/docs/content/en/integrations/parsers/file/codechecker.md @@ -19,3 +19,6 @@ then analyze it ```shell CodeChecker analyze ./codechecker.log -o /path/to/codechecker/analyzer/output/directory ``` + +### Sample Scan Data +Sample Codechecker Report native scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/codechecker). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/contrast.md b/docs/content/en/integrations/parsers/file/contrast.md index bfd1315b295..bf667bc7bd0 100644 --- a/docs/content/en/integrations/parsers/file/contrast.md +++ b/docs/content/en/integrations/parsers/file/contrast.md @@ -3,3 +3,6 @@ title: "Contrast Scanner" toc_hide: true --- CSV Report + +### Sample Scan Data +Sample Contrast Scanner scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/contrast). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/coverity_api.md b/docs/content/en/integrations/parsers/file/coverity_api.md index afc3d4ae494..8d72942a292 100644 --- a/docs/content/en/integrations/parsers/file/coverity_api.md +++ b/docs/content/en/integrations/parsers/file/coverity_api.md @@ -11,3 +11,6 @@ Currently these columns are mandatory: * `firstDetected` (`First Detected` in the UI) Other supported attributes: `cwe`, `displayFile`, `occurrenceCount` and `firstDetected` + +### Sample Scan Data +Sample Coverity API scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/coverity_api). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/crashtest_security.md b/docs/content/en/integrations/parsers/file/crashtest_security.md index 9c7c0f4a19f..cce1b524cf6 100644 --- a/docs/content/en/integrations/parsers/file/crashtest_security.md +++ b/docs/content/en/integrations/parsers/file/crashtest_security.md @@ -3,3 +3,6 @@ title: "Crashtest Security" toc_hide: true --- Import JSON Report Import XML Report in JUnit Format + +### Sample Scan Data +Sample Crashtest Security scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/crashtest_security). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/cred_scan.md b/docs/content/en/integrations/parsers/file/cred_scan.md index f3031bee281..7a52a74b141 100644 --- a/docs/content/en/integrations/parsers/file/cred_scan.md +++ b/docs/content/en/integrations/parsers/file/cred_scan.md @@ -3,3 +3,6 @@ title: "CredScan Report" toc_hide: true --- Import CSV credential scanner reports + +### Sample Scan Data +Sample CredScan Report scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/cred_scan). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/cyclonedx.md b/docs/content/en/integrations/parsers/file/cyclonedx.md index 543e70ee56c..d0d6a4e61a2 100644 --- a/docs/content/en/integrations/parsers/file/cyclonedx.md +++ b/docs/content/en/integrations/parsers/file/cyclonedx.md @@ -25,4 +25,7 @@ cyclonedx-py -i - the alternate filename to a frozen requirements.txt -o - the bom file to create -j - generate JSON instead of XML -{{< /highlight >}} \ No newline at end of file +{{< /highlight >}} + +### Sample Scan Data +Sample CycloneDX scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/cyclonedx). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/dawnscanner.md b/docs/content/en/integrations/parsers/file/dawnscanner.md index 931d6417327..bc3682cf9a8 100644 --- a/docs/content/en/integrations/parsers/file/dawnscanner.md +++ b/docs/content/en/integrations/parsers/file/dawnscanner.md @@ -3,3 +3,6 @@ title: "DawnScanner" toc_hide: true --- Import report in JSON generated with -j option + +### Sample Scan Data +Sample DawnScanner scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/dawnscanner). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/dependency_check.md b/docs/content/en/integrations/parsers/file/dependency_check.md index 0882a748857..ddc631a1279 100644 --- a/docs/content/en/integrations/parsers/file/dependency_check.md +++ b/docs/content/en/integrations/parsers/file/dependency_check.md @@ -8,3 +8,6 @@ OWASP Dependency Check output can be imported in Xml format. This parser ingests * Suppressed vulnerabilities are marked as mitigated. * If the suppression is missing any `` tag, it tags them as `no_suppression_document`. * Related vulnerable dependencies are tagged with `related` tag. + +### Sample Scan Data +Sample Dependency Check scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/dependency_check). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/dependency_track.md b/docs/content/en/integrations/parsers/file/dependency_track.md index 10e90f28e06..147d0afe4b5 100644 --- a/docs/content/en/integrations/parsers/file/dependency_track.md +++ b/docs/content/en/integrations/parsers/file/dependency_track.md @@ -9,3 +9,6 @@ https://docs.dependencytrack.org/integrations/defectdojo/ Alternatively, the Finding Packaging Format (FPF) from OWASP Dependency Track can be imported in JSON format. See here for more info on this JSON format: + +### Sample Scan Data +Sample Dependency Track scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/dependency_track). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/detect_secrets.md b/docs/content/en/integrations/parsers/file/detect_secrets.md index 7d0f9ae2ff3..b9a54199389 100644 --- a/docs/content/en/integrations/parsers/file/detect_secrets.md +++ b/docs/content/en/integrations/parsers/file/detect_secrets.md @@ -2,4 +2,7 @@ title: "Detect-secrets" toc_hide: true --- -Import of JSON report from \ No newline at end of file +Import of JSON report from + +### Sample Scan Data +Sample Detect-secrets scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/detect_secrets). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/dockerbench.md b/docs/content/en/integrations/parsers/file/dockerbench.md index 793850a1cbc..f4f2840fa75 100644 --- a/docs/content/en/integrations/parsers/file/dockerbench.md +++ b/docs/content/en/integrations/parsers/file/dockerbench.md @@ -3,4 +3,7 @@ title: "docker-bench-security Scanner" toc_hide: true --- Import JSON reports of OWASP [docker-bench-security](https://github.com/docker/docker-bench-security). -docker-bench-security is a script that make tests based on [CIS Docker Benchmark](https://www.cisecurity.org/benchmark/docker/). \ No newline at end of file +docker-bench-security is a script that make tests based on [CIS Docker Benchmark](https://www.cisecurity.org/benchmark/docker/). + +### Sample Scan Data +Sample docker-bench-security Scanner scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/dockerbench). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/dockle.md b/docs/content/en/integrations/parsers/file/dockle.md index f3732f225e6..b3944b174da 100644 --- a/docs/content/en/integrations/parsers/file/dockle.md +++ b/docs/content/en/integrations/parsers/file/dockle.md @@ -3,4 +3,7 @@ title: "Dockle Report" toc_hide: true --- Import JSON container image linter reports - \ No newline at end of file + + +### Sample Scan Data +Sample Dockle Report scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/dockle). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/drheader.md b/docs/content/en/integrations/parsers/file/drheader.md index b6c775ad2dc..26789703c9f 100644 --- a/docs/content/en/integrations/parsers/file/drheader.md +++ b/docs/content/en/integrations/parsers/file/drheader.md @@ -4,3 +4,6 @@ toc_hide: true --- Import of JSON report from + +### Sample Scan Data +Sample DrHeader scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/drheader). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/dsop.md b/docs/content/en/integrations/parsers/file/dsop.md index 0fe62eaf4d4..cbee05be1b1 100644 --- a/docs/content/en/integrations/parsers/file/dsop.md +++ b/docs/content/en/integrations/parsers/file/dsop.md @@ -2,4 +2,7 @@ title: "DSOP Scan" toc_hide: true --- -Import XLSX findings from DSOP vulnerability scan pipelines. \ No newline at end of file +Import XLSX findings from DSOP vulnerability scan pipelines. + +### Sample Scan Data +Sample DSOP Scan scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/dsop). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/edgescan.md b/docs/content/en/integrations/parsers/file/edgescan.md index a208320f378..aca05133a74 100644 --- a/docs/content/en/integrations/parsers/file/edgescan.md +++ b/docs/content/en/integrations/parsers/file/edgescan.md @@ -3,3 +3,4 @@ title: "Edgescan" toc_hide: true --- Import Edgescan vulnerabilities by JSON file or [API - no file required](../../api/edgescan.md) + diff --git a/docs/content/en/integrations/parsers/file/eslint.md b/docs/content/en/integrations/parsers/file/eslint.md index 27d5e6b845c..8bf3dbcafa0 100644 --- a/docs/content/en/integrations/parsers/file/eslint.md +++ b/docs/content/en/integrations/parsers/file/eslint.md @@ -3,3 +3,6 @@ title: "ESLint" toc_hide: true --- ESLint Json report format (-f json) + +### Sample Scan Data +Sample ESLint scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/eslint). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/fortify.md b/docs/content/en/integrations/parsers/file/fortify.md index 3f47bb64f3b..bbd44f4fff3 100644 --- a/docs/content/en/integrations/parsers/file/fortify.md +++ b/docs/content/en/integrations/parsers/file/fortify.md @@ -3,3 +3,6 @@ title: "Fortify" toc_hide: true --- Import Findings from XML file format. + +### Sample Scan Data +Sample Fortify scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/fortify). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/generic.md b/docs/content/en/integrations/parsers/file/generic.md index 062f96ba637..36e90ab6557 100644 --- a/docs/content/en/integrations/parsers/file/generic.md +++ b/docs/content/en/integrations/parsers/file/generic.md @@ -110,3 +110,6 @@ Example: ] } ``` + +### Sample Scan Data +Sample Generic Findings Import scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/generic). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/ggshield.md b/docs/content/en/integrations/parsers/file/ggshield.md index 6552df96b8e..4f106162e5e 100644 --- a/docs/content/en/integrations/parsers/file/ggshield.md +++ b/docs/content/en/integrations/parsers/file/ggshield.md @@ -2,4 +2,7 @@ title: "Ggshield" toc_hide: true --- -Import [Ggshield](https://github.com/GitGuardian/ggshield) findings in JSON format. \ No newline at end of file +Import [Ggshield](https://github.com/GitGuardian/ggshield) findings in JSON format. + +### Sample Scan Data +Sample Ggshield scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/ggshield). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/github_vulnerability.md b/docs/content/en/integrations/parsers/file/github_vulnerability.md index fdde6cc3e02..8e4f3a8222e 100644 --- a/docs/content/en/integrations/parsers/file/github_vulnerability.md +++ b/docs/content/en/integrations/parsers/file/github_vulnerability.md @@ -209,3 +209,6 @@ def get_dependabot_alerts_repository(repo, owner): ) return json.dumps(output_result, indent=2) ``` + +### Sample Scan Data +Sample Github Vulnerability scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/github_vulnerability). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/gitlab_api_fuzzing.md b/docs/content/en/integrations/parsers/file/gitlab_api_fuzzing.md index cfa8afbc4ec..9ef8535dace 100644 --- a/docs/content/en/integrations/parsers/file/gitlab_api_fuzzing.md +++ b/docs/content/en/integrations/parsers/file/gitlab_api_fuzzing.md @@ -2,4 +2,7 @@ title: "GitLab API Fuzzing Report Scan" toc_hide: true --- -GitLab API Fuzzing Report report file can be imported in JSON format (option --json) \ No newline at end of file +GitLab API Fuzzing Report report file can be imported in JSON format (option --json) + +### Sample Scan Data +Sample GitLab API Fuzzing Report Scan scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/gitlab_api_fuzzing). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/gitlab_container_scan.md b/docs/content/en/integrations/parsers/file/gitlab_container_scan.md index 8d3a546f8fb..5ff26c7573a 100644 --- a/docs/content/en/integrations/parsers/file/gitlab_container_scan.md +++ b/docs/content/en/integrations/parsers/file/gitlab_container_scan.md @@ -2,4 +2,7 @@ title: "GitLab Container Scan" toc_hide: true --- -GitLab Container Scan report file can be imported in JSON format (option --json) \ No newline at end of file +GitLab Container Scan report file can be imported in JSON format (option --json) + +### Sample Scan Data +Sample GitLab Container Scan scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/gitlab_container_scan). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/gitlab_dast.md b/docs/content/en/integrations/parsers/file/gitlab_dast.md index 000ad7760db..b3abcfcc8a4 100644 --- a/docs/content/en/integrations/parsers/file/gitlab_dast.md +++ b/docs/content/en/integrations/parsers/file/gitlab_dast.md @@ -2,4 +2,7 @@ title: "GitLab DAST Report" toc_hide: true --- -GitLab DAST Report in JSON format (option --json) \ No newline at end of file +GitLab DAST Report in JSON format (option --json) + +### Sample Scan Data +Sample GitLab DAST Report scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/gitlab_dast). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/gitlab_dep_scan.md b/docs/content/en/integrations/parsers/file/gitlab_dep_scan.md index 46179e96e8d..bb5e9bfe30b 100644 --- a/docs/content/en/integrations/parsers/file/gitlab_dep_scan.md +++ b/docs/content/en/integrations/parsers/file/gitlab_dep_scan.md @@ -2,4 +2,7 @@ title: "GitLab Dependency Scanning Report" toc_hide: true --- -Import Dependency Scanning Report vulnerabilities in JSON format: https://docs.gitlab.com/ee/user/application_security/dependency_scanning/#reports-json-format \ No newline at end of file +Import Dependency Scanning Report vulnerabilities in JSON format: https://docs.gitlab.com/ee/user/application_security/dependency_scanning/#reports-json-format + +### Sample Scan Data +Sample GitLab Dependency Scanning Report scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/gitlab_dep_scan). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/gitlab_sast.md b/docs/content/en/integrations/parsers/file/gitlab_sast.md index 926b62a2043..e592da480a4 100644 --- a/docs/content/en/integrations/parsers/file/gitlab_sast.md +++ b/docs/content/en/integrations/parsers/file/gitlab_sast.md @@ -2,4 +2,7 @@ title: "GitLab SAST Report" toc_hide: true --- -Import SAST Report vulnerabilities in JSON format: https://docs.gitlab.com/ee/user/application_security/sast/#reports-json-format \ No newline at end of file +Import SAST Report vulnerabilities in JSON format: https://docs.gitlab.com/ee/user/application_security/sast/#reports-json-format + +### Sample Scan Data +Sample GitLab SAST Report scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/gitlab_sast). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/gitlab_secret_detection_report.md b/docs/content/en/integrations/parsers/file/gitlab_secret_detection_report.md index 919227db94d..f3a0d2dc99a 100644 --- a/docs/content/en/integrations/parsers/file/gitlab_secret_detection_report.md +++ b/docs/content/en/integrations/parsers/file/gitlab_secret_detection_report.md @@ -2,4 +2,7 @@ title: "GitLab Secret Detection Report" toc_hide: true --- -GitLab Secret Detection Report file can be imported in JSON format (option --json). \ No newline at end of file +GitLab Secret Detection Report file can be imported in JSON format (option --json). + +### Sample Scan Data +Sample GitLab Secret Detection Report scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/gitlab_secret_detection_report). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/gitleaks.md b/docs/content/en/integrations/parsers/file/gitleaks.md index ed0555972e8..00b067e4677 100644 --- a/docs/content/en/integrations/parsers/file/gitleaks.md +++ b/docs/content/en/integrations/parsers/file/gitleaks.md @@ -3,3 +3,6 @@ title: "Gitleaks" toc_hide: true --- Import Gitleaks findings in JSON format. + +### Sample Scan Data +Sample Gitleaks scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/gitleaks). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/gosec.md b/docs/content/en/integrations/parsers/file/gosec.md index 5c4cec0be5f..fbe5bcbf2e2 100644 --- a/docs/content/en/integrations/parsers/file/gosec.md +++ b/docs/content/en/integrations/parsers/file/gosec.md @@ -3,3 +3,6 @@ title: "Gosec Scanner" toc_hide: true --- Import Gosec Scanner findings in JSON format. + +### Sample Scan Data +Sample Gosec Scanner scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/gosec). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/govulncheck.md b/docs/content/en/integrations/parsers/file/govulncheck.md index 47eb5df7494..8637fc2a429 100644 --- a/docs/content/en/integrations/parsers/file/govulncheck.md +++ b/docs/content/en/integrations/parsers/file/govulncheck.md @@ -2,4 +2,7 @@ title: "Govulncheck" toc_hide: true --- -JSON vulnerability report generated by govulncheck tool, using a command like `govulncheck -json . >> report.json` \ No newline at end of file +JSON vulnerability report generated by govulncheck tool, using a command like `govulncheck -json . >> report.json` + +### Sample Scan Data +Sample Govulncheck scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/govulncheck). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/h1.md b/docs/content/en/integrations/parsers/file/h1.md index 3d93271a801..da01131f9c1 100644 --- a/docs/content/en/integrations/parsers/file/h1.md +++ b/docs/content/en/integrations/parsers/file/h1.md @@ -2,4 +2,7 @@ title: "HackerOne Cases" toc_hide: true --- -Import HackerOne cases findings in JSON format \ No newline at end of file +Import HackerOne cases findings in JSON format + +### Sample Scan Data +Sample HackerOne Cases scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/h1). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/hadolint.md b/docs/content/en/integrations/parsers/file/hadolint.md index 0f884b58ec6..ccc60f7b637 100644 --- a/docs/content/en/integrations/parsers/file/hadolint.md +++ b/docs/content/en/integrations/parsers/file/hadolint.md @@ -3,3 +3,6 @@ title: "Hadolint" toc_hide: true --- Hadolint Dockerfile scan in json format. + +### Sample Scan Data +Sample Hadolint scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/hadolint). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/harbor_vulnerability.md b/docs/content/en/integrations/parsers/file/harbor_vulnerability.md index 12ff2a1c6a2..33878003bd0 100644 --- a/docs/content/en/integrations/parsers/file/harbor_vulnerability.md +++ b/docs/content/en/integrations/parsers/file/harbor_vulnerability.md @@ -3,4 +3,7 @@ title: "Harbor Vulnerability" toc_hide: true --- Import findings from Harbor registry container scan: - \ No newline at end of file + + +### Sample Scan Data +Sample Harbor Vulnerability scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/harbor_vulnerability). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/hcl_appscan.md b/docs/content/en/integrations/parsers/file/hcl_appscan.md index ef2f68c5999..aae796606f3 100644 --- a/docs/content/en/integrations/parsers/file/hcl_appscan.md +++ b/docs/content/en/integrations/parsers/file/hcl_appscan.md @@ -3,3 +3,6 @@ title: "HCL Appscan" toc_hide: true --- The HCL Appscan has the possibiilty to export the results in PDF, XML and CSV formats within the portal. However, this parser only supports the import of XML generated from HCL Appscan on cloud. + +### Sample Scan Data +Sample HCL Appscan scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/hcl_appscan). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/horusec.md b/docs/content/en/integrations/parsers/file/horusec.md index 7a6a4fecd19..b347bef33e0 100644 --- a/docs/content/en/integrations/parsers/file/horusec.md +++ b/docs/content/en/integrations/parsers/file/horusec.md @@ -10,4 +10,6 @@ Import findings from Horusec scan. References: * [GitHub repository](https://github.com/ZupIT/horusec) - \ No newline at end of file + +### Sample Scan Data +Sample Horusec scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/horusec). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/humble.md b/docs/content/en/integrations/parsers/file/humble.md index 56c3f73b52e..e2e4faaec80 100644 --- a/docs/content/en/integrations/parsers/file/humble.md +++ b/docs/content/en/integrations/parsers/file/humble.md @@ -3,4 +3,7 @@ title: "Humble Report" toc_hide: true --- Import JSON report of the Humble scanner - \ No newline at end of file + + +### Sample Scan Data +Sample Humble Report scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/humble). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/huskyci.md b/docs/content/en/integrations/parsers/file/huskyci.md index 4ccdb31b570..660e00505b4 100644 --- a/docs/content/en/integrations/parsers/file/huskyci.md +++ b/docs/content/en/integrations/parsers/file/huskyci.md @@ -3,4 +3,7 @@ title: "HuskyCI Report" toc_hide: true --- Import JSON reports from -[HuskyCI]() \ No newline at end of file +[HuskyCI]() + +### Sample Scan Data +Sample HuskyCI Report scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/huskyci). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/hydra.md b/docs/content/en/integrations/parsers/file/hydra.md index 701e8569a6e..abd5a644d89 100644 --- a/docs/content/en/integrations/parsers/file/hydra.md +++ b/docs/content/en/integrations/parsers/file/hydra.md @@ -38,3 +38,6 @@ Sample JSON report: "success": false } ``` + +### Sample Scan Data +Sample Hydra scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/hydra). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/ibm_app.md b/docs/content/en/integrations/parsers/file/ibm_app.md index e97d9f785db..71ffd51815a 100644 --- a/docs/content/en/integrations/parsers/file/ibm_app.md +++ b/docs/content/en/integrations/parsers/file/ibm_app.md @@ -3,3 +3,6 @@ title: "IBM AppScan DAST" toc_hide: true --- XML file from IBM App Scanner. + +### Sample Scan Data +Sample IBM AppScan DAST scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/ibm_app). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/immuniweb.md b/docs/content/en/integrations/parsers/file/immuniweb.md index 503bb8a7131..6ab2cd139ad 100644 --- a/docs/content/en/integrations/parsers/file/immuniweb.md +++ b/docs/content/en/integrations/parsers/file/immuniweb.md @@ -3,3 +3,6 @@ title: "Immuniweb Scan" toc_hide: true --- XML Scan Result File from Immuniweb Scan. + +### Sample Scan Data +Sample Immuniweb Scan scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/immuniweb). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/intsights.md b/docs/content/en/integrations/parsers/file/intsights.md index f6dd6cbba61..64b6e58860e 100644 --- a/docs/content/en/integrations/parsers/file/intsights.md +++ b/docs/content/en/integrations/parsers/file/intsights.md @@ -60,3 +60,6 @@ Example: } ] } + +### Sample Scan Data +Sample IntSights Report scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/intsights). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/jfrog_xray_api_summary_artifact.md b/docs/content/en/integrations/parsers/file/jfrog_xray_api_summary_artifact.md index 609a0a4da0c..748b77ea6ab 100644 --- a/docs/content/en/integrations/parsers/file/jfrog_xray_api_summary_artifact.md +++ b/docs/content/en/integrations/parsers/file/jfrog_xray_api_summary_artifact.md @@ -10,4 +10,4 @@ Accepts a JSON File, generated from the JFrog Artifact Summary API Call. See unit test example: https://github.com/DefectDojo/django-DefectDojo/blob/master/unittests/scans/jfrog_xray_api_summary_artifact/one_vuln.json ### Link To Tool -See JFrog Documentation: https://jfrog.com/help/r/jfrog-rest-apis/summary +See JFrog Documentation: https://jfrog.com/help/r/jfrog-rest-apis/summary \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/jfrog_xray_on_demand_binary_scan.md b/docs/content/en/integrations/parsers/file/jfrog_xray_on_demand_binary_scan.md index 2b877b1b04c..438bf065a39 100644 --- a/docs/content/en/integrations/parsers/file/jfrog_xray_on_demand_binary_scan.md +++ b/docs/content/en/integrations/parsers/file/jfrog_xray_on_demand_binary_scan.md @@ -3,7 +3,10 @@ title: "JFrog Xray On Demand Binary Scan" toc_hide: true --- Import the JSON format for the \"JFrog Xray On Demand Binary Scan\" file. Use this importer for Xray version 3.X --- - JFrog file documentation: + +JFrog file documentation: https://jfrog.com/help/r/jfrog-cli/on-demand-binary-scan + +### Sample Scan Data +Sample JFrog Xray On Demand Binary Scan scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/jfrog_xray_on_demand_binary_scan). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/jfrog_xray_unified.md b/docs/content/en/integrations/parsers/file/jfrog_xray_unified.md index cdc5708ff29..b8b55db0e79 100644 --- a/docs/content/en/integrations/parsers/file/jfrog_xray_unified.md +++ b/docs/content/en/integrations/parsers/file/jfrog_xray_unified.md @@ -3,3 +3,6 @@ title: "JFrog XRay Unified" toc_hide: true --- Import the JSON format for the \"Security & Compliance | Reports\" export. Jfrog's Xray tool is an add-on to their Artifactory repository that does Software Composition Analysis, see https://www.jfrog.com/confluence/display/JFROG/JFrog+Xray for more information. \"Xray Unified\" refers to Xray Version 3.0 and later. + +### Sample Scan Data +Sample JFrog XRay Unified scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/jfrog_xray_unified). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/jfrogxray.md b/docs/content/en/integrations/parsers/file/jfrogxray.md index 251c47dfb31..c3cb126fa20 100644 --- a/docs/content/en/integrations/parsers/file/jfrogxray.md +++ b/docs/content/en/integrations/parsers/file/jfrogxray.md @@ -3,3 +3,6 @@ title: "JFrogXRay" toc_hide: true --- Import the JSON format for the \"Security Export\" file. Use this importer for Xray version 2.X + +### Sample Scan Data +Sample JFrogXRay scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/jfrogxray). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/kics.md b/docs/content/en/integrations/parsers/file/kics.md index a0dbdd0b746..370421cce84 100644 --- a/docs/content/en/integrations/parsers/file/kics.md +++ b/docs/content/en/integrations/parsers/file/kics.md @@ -3,3 +3,6 @@ title: "KICS Scanner" toc_hide: true --- Import of JSON report from + +### Sample Scan Data +Sample KICS Scanner scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/kics). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/kiuwan.md b/docs/content/en/integrations/parsers/file/kiuwan.md index 6ba50c6dca7..00189e87726 100644 --- a/docs/content/en/integrations/parsers/file/kiuwan.md +++ b/docs/content/en/integrations/parsers/file/kiuwan.md @@ -3,3 +3,6 @@ title: "Kiuwan Scanner" toc_hide: true --- Import Kiuwan Scan in CSV format. Export as CSV Results on Kiuwan. + +### Sample Scan Data +Sample Kiuwan Scanner scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/kiuwan). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/kubebench.md b/docs/content/en/integrations/parsers/file/kubebench.md index 38b865e5936..89e1e3c3a6b 100644 --- a/docs/content/en/integrations/parsers/file/kubebench.md +++ b/docs/content/en/integrations/parsers/file/kubebench.md @@ -3,3 +3,6 @@ title: "kube-bench Scanner" toc_hide: true --- Import JSON reports of Kubernetes CIS benchmark scans. + +### Sample Scan Data +Sample kube-bench Scanner scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/kubebench). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/kubehunter.md b/docs/content/en/integrations/parsers/file/kubehunter.md index 7b3de0a55b3..08f932d5f86 100644 --- a/docs/content/en/integrations/parsers/file/kubehunter.md +++ b/docs/content/en/integrations/parsers/file/kubehunter.md @@ -3,3 +3,6 @@ title: "kubeHunter Scanner" toc_hide: true --- Import JSON reports of kube-hunter scans. Use "kube-hunter --report json" to produce the report in json format. + +### Sample Scan Data +Sample kubeHunter Scanner scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/kubehunter). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/meterian.md b/docs/content/en/integrations/parsers/file/meterian.md index f07d16dc0a4..bf2d3bea8bc 100644 --- a/docs/content/en/integrations/parsers/file/meterian.md +++ b/docs/content/en/integrations/parsers/file/meterian.md @@ -3,3 +3,6 @@ title: "Meterian Scanner" toc_hide: true --- The Meterian JSON report output file can be imported. + +### Sample Scan Data +Sample Meterian Scanner scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/meterian). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/microfocus_webinspect.md b/docs/content/en/integrations/parsers/file/microfocus_webinspect.md index 91fc0cf3538..e087e4267e8 100644 --- a/docs/content/en/integrations/parsers/file/microfocus_webinspect.md +++ b/docs/content/en/integrations/parsers/file/microfocus_webinspect.md @@ -3,3 +3,6 @@ title: "Microfocus Webinspect Scanner" toc_hide: true --- Import XML report + +### Sample Scan Data +Sample Microfocus Webinspect Scanner scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/microfocus_webinspect). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/mobsf.md b/docs/content/en/integrations/parsers/file/mobsf.md index 63dcf20564f..44985929fdb 100644 --- a/docs/content/en/integrations/parsers/file/mobsf.md +++ b/docs/content/en/integrations/parsers/file/mobsf.md @@ -3,3 +3,6 @@ title: "MobSF Scanner" toc_hide: true --- Export a JSON file using the API, api/v1/report\_json. + +### Sample Scan Data +Sample MobSF Scanner scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/mobsf). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/mobsfscan.md b/docs/content/en/integrations/parsers/file/mobsfscan.md index 626d90f2949..7209f80b403 100644 --- a/docs/content/en/integrations/parsers/file/mobsfscan.md +++ b/docs/content/en/integrations/parsers/file/mobsfscan.md @@ -3,3 +3,6 @@ title: "Mobsfscan" toc_hide: true --- Import JSON report from + +### Sample Scan Data +Sample Mobsfscan scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/mobsfscan). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/mozilla_observatory.md b/docs/content/en/integrations/parsers/file/mozilla_observatory.md index c36ce869a8e..3d1150821d3 100644 --- a/docs/content/en/integrations/parsers/file/mozilla_observatory.md +++ b/docs/content/en/integrations/parsers/file/mozilla_observatory.md @@ -3,3 +3,6 @@ title: "Mozilla Observatory Scanner" toc_hide: true --- Import JSON report. + +### Sample Scan Data +Sample Mozilla Observatory Scanner scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/mozilla_observatory). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/ms_defender.md b/docs/content/en/integrations/parsers/file/ms_defender.md index 0a2f7b480fb..2bf8c436ffd 100644 --- a/docs/content/en/integrations/parsers/file/ms_defender.md +++ b/docs/content/en/integrations/parsers/file/ms_defender.md @@ -4,4 +4,7 @@ toc_hide: true --- This parser helps to parse Microsoft Defender Findings and supports two types of imports: - You can import a JSON output file from the api/vulnerabilities/machinesVulnerabilities endpoint of Microsoft defender. -- You can upload a custom zip file which include multiple JSON files from two Microsoft Defender Endpoints. For that you have to make your own zip file and include two folders (machines/ and vulnerabilities/) within the zip file. For vulnerabilities/ you can attach multiple JSON files from the api/vulnerabilities/machinesVulnerabilities REST API endpoint of Microsoft Defender. Furthermore, in machines/ you can attach the JSON output from the api/machines REST API endpoint of Microsoft Defender. Then, the parser uses the information in both folders to add more specific information like the affected IP Address to the finding. \ No newline at end of file +- You can upload a custom zip file which include multiple JSON files from two Microsoft Defender Endpoints. For that you have to make your own zip file and include two folders (machines/ and vulnerabilities/) within the zip file. For vulnerabilities/ you can attach multiple JSON files from the api/vulnerabilities/machinesVulnerabilities REST API endpoint of Microsoft Defender. Furthermore, in machines/ you can attach the JSON output from the api/machines REST API endpoint of Microsoft Defender. Then, the parser uses the information in both folders to add more specific information like the affected IP Address to the finding. + +### Sample Scan Data +Sample MS Defender Parser scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/ms_defender). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/netsparker.md b/docs/content/en/integrations/parsers/file/netsparker.md index 255f7ef9750..7e46af07b12 100644 --- a/docs/content/en/integrations/parsers/file/netsparker.md +++ b/docs/content/en/integrations/parsers/file/netsparker.md @@ -3,3 +3,6 @@ title: "Netsparker" toc_hide: true --- Vulnerabilities List - JSON report + +### Sample Scan Data +Sample Netsparker scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/netsparker). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/neuvector.md b/docs/content/en/integrations/parsers/file/neuvector.md index 083adf707fb..5acf03267a2 100644 --- a/docs/content/en/integrations/parsers/file/neuvector.md +++ b/docs/content/en/integrations/parsers/file/neuvector.md @@ -2,4 +2,7 @@ title: "NeuVector (compliance)" toc_hide: true --- -Imports compliance scans returned by REST API. \ No newline at end of file +Imports compliance scans returned by REST API. + +### Sample Scan Data +Sample NeuVector (compliance) scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/neuvector). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/neuvector_compliance.md b/docs/content/en/integrations/parsers/file/neuvector_compliance.md index 0a6e8cac660..cce614b2f90 100644 --- a/docs/content/en/integrations/parsers/file/neuvector_compliance.md +++ b/docs/content/en/integrations/parsers/file/neuvector_compliance.md @@ -2,4 +2,7 @@ title: "NeuVector (REST)" toc_hide: true --- -JSON output of /v1/scan/{entity}/{id} endpoint \ No newline at end of file +JSON output of /v1/scan/{entity}/{id} endpoint + +### Sample Scan Data +Sample NeuVector (REST) scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/neuvector_compliance). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/nexpose.md b/docs/content/en/integrations/parsers/file/nexpose.md index d85810d926b..f2380a3666e 100644 --- a/docs/content/en/integrations/parsers/file/nexpose.md +++ b/docs/content/en/integrations/parsers/file/nexpose.md @@ -3,3 +3,6 @@ title: "Nexpose XML 2.0 (Rapid7)" toc_hide: true --- Use the full XML export template from Nexpose. + +### Sample Scan Data +Sample Nexpose XML 2.0 (Rapid7) scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/nexpose). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/nikto.md b/docs/content/en/integrations/parsers/file/nikto.md index 3389e3d4018..09bcce9c10a 100644 --- a/docs/content/en/integrations/parsers/file/nikto.md +++ b/docs/content/en/integrations/parsers/file/nikto.md @@ -9,4 +9,7 @@ The current parser support 3 sources: - new XML output (with nxvmlversion=\"1.2\" type) - JSON output -See: https://github.com/sullo/nikto \ No newline at end of file +See: https://github.com/sullo/nikto + +### Sample Scan Data +Sample Nikto scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/nikto). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/nmap.md b/docs/content/en/integrations/parsers/file/nmap.md index 9404d70acdc..cada9ad2d3c 100644 --- a/docs/content/en/integrations/parsers/file/nmap.md +++ b/docs/content/en/integrations/parsers/file/nmap.md @@ -3,3 +3,6 @@ title: "Nmap" toc_hide: true --- XML output (use -oX) + +### Sample Scan Data +Sample Nmap scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/nmap). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/npm_audit.md b/docs/content/en/integrations/parsers/file/npm_audit.md index 44de32b6ab2..ebf280da964 100644 --- a/docs/content/en/integrations/parsers/file/npm_audit.md +++ b/docs/content/en/integrations/parsers/file/npm_audit.md @@ -4,3 +4,6 @@ toc_hide: true --- Node Package Manager (NPM) Audit plugin output file can be imported in JSON format. Only imports the \'advisories\' subtree. + +### Sample Scan Data +Sample NPM Audit scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/npm_audit). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/nsp.md b/docs/content/en/integrations/parsers/file/nsp.md index ab7fdf54e18..916495ecdf2 100644 --- a/docs/content/en/integrations/parsers/file/nsp.md +++ b/docs/content/en/integrations/parsers/file/nsp.md @@ -3,3 +3,6 @@ title: "Node Security Platform" toc_hide: true --- Node Security Platform (NSP) output file can be imported in JSON format. + +### Sample Scan Data +Sample Node Security Platform scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/nsp). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/nuclei.md b/docs/content/en/integrations/parsers/file/nuclei.md index edf1f765879..3e63a2b9429 100644 --- a/docs/content/en/integrations/parsers/file/nuclei.md +++ b/docs/content/en/integrations/parsers/file/nuclei.md @@ -3,3 +3,6 @@ title: "Nuclei" toc_hide: true --- Import JSON output of nuclei scan report + +### Sample Scan Data +Sample Nuclei scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/nuclei). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/openscap.md b/docs/content/en/integrations/parsers/file/openscap.md index 7bab7e5335d..220f27d66e0 100644 --- a/docs/content/en/integrations/parsers/file/openscap.md +++ b/docs/content/en/integrations/parsers/file/openscap.md @@ -3,3 +3,6 @@ title: "Openscap Vulnerability Scan" toc_hide: true --- Import Openscap Vulnerability Scan in XML formats. + +### Sample Scan Data +Sample Openscap Vulnerability Scan scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/openscap). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/ort.md b/docs/content/en/integrations/parsers/file/ort.md index e12181ade4c..2aac161efd3 100644 --- a/docs/content/en/integrations/parsers/file/ort.md +++ b/docs/content/en/integrations/parsers/file/ort.md @@ -2,4 +2,7 @@ title: "ORT evaluated model Importer" toc_hide: true --- -Import Outpost24 endpoint vulnerability scan in XML format. \ No newline at end of file +Import Outpost24 endpoint vulnerability scan in XML format. + +### Sample Scan Data +Sample ORT evaluated model Importer scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/ort). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/ossindex_devaudit.md b/docs/content/en/integrations/parsers/file/ossindex_devaudit.md index f21c5f20e33..cb007e5a3e3 100644 --- a/docs/content/en/integrations/parsers/file/ossindex_devaudit.md +++ b/docs/content/en/integrations/parsers/file/ossindex_devaudit.md @@ -3,4 +3,7 @@ title: "OssIndex Devaudit" toc_hide: true --- Import JSON formatted output from \[OSSIndex -Devaudit\](). \ No newline at end of file +Devaudit\](). + +### Sample Scan Data +Sample OssIndex Devaudit scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/ossindex_devaudit). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/outpost24.md b/docs/content/en/integrations/parsers/file/outpost24.md index e87ce615304..2c0f974f02e 100644 --- a/docs/content/en/integrations/parsers/file/outpost24.md +++ b/docs/content/en/integrations/parsers/file/outpost24.md @@ -2,4 +2,7 @@ title: "Outpost24 Scan" toc_hide: true --- -Import Outpost24 endpoint vulnerability scan in XML format. \ No newline at end of file +Import Outpost24 endpoint vulnerability scan in XML format. + +### Sample Scan Data +Sample Outpost24 Scan scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/outpost24). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/php_security_audit_v2.md b/docs/content/en/integrations/parsers/file/php_security_audit_v2.md index 33760aec450..1abcb0e741c 100644 --- a/docs/content/en/integrations/parsers/file/php_security_audit_v2.md +++ b/docs/content/en/integrations/parsers/file/php_security_audit_v2.md @@ -3,3 +3,6 @@ title: "PHP Security Audit v2" toc_hide: true --- Import PHP Security Audit v2 Scan in JSON format. + +### Sample Scan Data +Sample PHP Security Audit v2 scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/php_security_audit_v2). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/php_symfony_security_check.md b/docs/content/en/integrations/parsers/file/php_symfony_security_check.md index 912522e83d7..27552cb8395 100644 --- a/docs/content/en/integrations/parsers/file/php_symfony_security_check.md +++ b/docs/content/en/integrations/parsers/file/php_symfony_security_check.md @@ -3,3 +3,6 @@ title: "PHP Symfony Security Checker" toc_hide: true --- Import results from the PHP Symfony Security Checker. + +### Sample Scan Data +Sample PHP Symfony Security Checker scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/php_symfony_security_check). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/pip_audit.md b/docs/content/en/integrations/parsers/file/pip_audit.md index 50156ee1acc..df24cdbe7a3 100644 --- a/docs/content/en/integrations/parsers/file/pip_audit.md +++ b/docs/content/en/integrations/parsers/file/pip_audit.md @@ -2,4 +2,7 @@ title: "pip-audit Scan" toc_hide: true --- -Import pip-audit JSON scan report \ No newline at end of file +Import pip-audit JSON scan report + +### Sample Scan Data +Sample pip-audit Scan scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/pip_audit). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/pmd.md b/docs/content/en/integrations/parsers/file/pmd.md index aea80c507a9..ebb4d951764 100644 --- a/docs/content/en/integrations/parsers/file/pmd.md +++ b/docs/content/en/integrations/parsers/file/pmd.md @@ -2,4 +2,7 @@ title: "PMD Scan" toc_hide: true --- -CSV Report \ No newline at end of file +CSV Report + +### Sample Scan Data +Sample PMD Scan scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/pmd). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/popeye.md b/docs/content/en/integrations/parsers/file/popeye.md index f36e62cddcb..82dbdd89582 100644 --- a/docs/content/en/integrations/parsers/file/popeye.md +++ b/docs/content/en/integrations/parsers/file/popeye.md @@ -64,3 +64,5 @@ To match it to DefectDojo severity formula, Secerity 0 (Ok) findings from Popeye - Severity 2 (Warning) Popeye findings will be created as Severity "Low" findings in DefectDojo. - Severity 3 (Errors) Popeye findings will be created as Severity "High" findingsi in DefectDojo. +### Sample Scan Data +Sample Popeye scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/popeye). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/pwn_sast.md b/docs/content/en/integrations/parsers/file/pwn_sast.md index 7de6b3e7139..241f2c0ca6d 100644 --- a/docs/content/en/integrations/parsers/file/pwn_sast.md +++ b/docs/content/en/integrations/parsers/file/pwn_sast.md @@ -4,4 +4,7 @@ toc_hide: true --- - (Main Page)\[\] - pwn_sast: Import the JSON results generated by the pwn_sast Driver. This driver scans source code repositories for security anti-patterns that may result in vulnerability identification. -- More driver results coming soon... \ No newline at end of file +- More driver results coming soon... + +### Sample Scan Data +Sample PWN Security Automation Framework scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/pwn_sast). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/qualys.md b/docs/content/en/integrations/parsers/file/qualys.md index 870f4633753..7fd532c79a8 100644 --- a/docs/content/en/integrations/parsers/file/qualys.md +++ b/docs/content/en/integrations/parsers/file/qualys.md @@ -16,3 +16,6 @@ A CSV formatted Qualys Scan Report can also be used. Ensure the following values * Patches and Workarounds * Virtual Patches and Mitigating Controls * Results + +### Sample Scan Data +Sample Qualys Scan scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/qualys). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/qualys_infrascan_webgui.md b/docs/content/en/integrations/parsers/file/qualys_infrascan_webgui.md index 67e8c8a44f0..bba44904df1 100644 --- a/docs/content/en/integrations/parsers/file/qualys_infrascan_webgui.md +++ b/docs/content/en/integrations/parsers/file/qualys_infrascan_webgui.md @@ -2,4 +2,7 @@ title: "Qualys Infrastructure Scan (WebGUI XML)" toc_hide: true --- -Qualys WebGUI output files can be imported in XML format. \ No newline at end of file +Qualys WebGUI output files can be imported in XML format. + +### Sample Scan Data +Sample Qualys Infrastructure Scan (WebGUI XML) scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/qualys_infrascan_webgui). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/qualys_webapp.md b/docs/content/en/integrations/parsers/file/qualys_webapp.md index 44ce03d98b2..b8a4017b113 100644 --- a/docs/content/en/integrations/parsers/file/qualys_webapp.md +++ b/docs/content/en/integrations/parsers/file/qualys_webapp.md @@ -3,3 +3,6 @@ title: "Qualys Webapp Scan" toc_hide: true --- Qualys WebScan output files can be imported in XML format. + +### Sample Scan Data +Sample Qualys Webapp Scan scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/qualys_webapp). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/retirejs.md b/docs/content/en/integrations/parsers/file/retirejs.md index cc9e626a8b1..b975aa7b603 100644 --- a/docs/content/en/integrations/parsers/file/retirejs.md +++ b/docs/content/en/integrations/parsers/file/retirejs.md @@ -3,3 +3,6 @@ title: "Retire.js" toc_hide: true --- Retire.js JavaScript scan (\--js) output file can be imported in JSON format. + +### Sample Scan Data +Sample Retire.js scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/retirejs). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/risk_recon.md b/docs/content/en/integrations/parsers/file/risk_recon.md index 79231f3c808..917b7ed3bc5 100644 --- a/docs/content/en/integrations/parsers/file/risk_recon.md +++ b/docs/content/en/integrations/parsers/file/risk_recon.md @@ -55,3 +55,6 @@ Import findings from Risk Recon via the API. Configure your own JSON report as f the \"companies\" field. - Removing both fields will allow retrieval of all findings in the Risk Recon instance. + +### Sample Scan Data +Sample Risk Recon API Importer scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/risk_recon). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/rubocop.md b/docs/content/en/integrations/parsers/file/rubocop.md index 1faf68d8612..8a90bd8eda4 100644 --- a/docs/content/en/integrations/parsers/file/rubocop.md +++ b/docs/content/en/integrations/parsers/file/rubocop.md @@ -3,3 +3,6 @@ title: "Rubocop Scan" toc_hide: true --- Import Rubocop JSON scan report (with option -f json). + +### Sample Scan Data +Sample Rubocop Scan scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/rubocop). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/rusty_hog.md b/docs/content/en/integrations/parsers/file/rusty_hog.md index ee10c565e8f..52849c8d99b 100644 --- a/docs/content/en/integrations/parsers/file/rusty_hog.md +++ b/docs/content/en/integrations/parsers/file/rusty_hog.md @@ -12,4 +12,7 @@ DefectDojo currently supports the parsing of the following Rusty Hog JSON output - Essex Hog: Scans for secrets in a Confluence page. RustyHog scans only one target at a time. This is not efficient if you want to scan all targets (e.g. all JIRA tickets) and upload each single report to DefectDojo. -[Rusty-Hog-Wrapper](https://github.com/manuel-sommer/Rusty-Hog-Wrapper) deals with this and scans a whole JIRA Project or Confluence Space, merges the findings into a valid file which can be uploaded to DefectDojo. (This is no official recommendation from DefectDojo, but rather a pointer in a direction on how to use this vulnerability scanner in a more efficient way.) \ No newline at end of file +[Rusty-Hog-Wrapper](https://github.com/manuel-sommer/Rusty-Hog-Wrapper) deals with this and scans a whole JIRA Project or Confluence Space, merges the findings into a valid file which can be uploaded to DefectDojo. (This is no official recommendation from DefectDojo, but rather a pointer in a direction on how to use this vulnerability scanner in a more efficient way.) + +### Sample Scan Data +Sample Rusty Hog parser scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/rusty_hog). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/sarif.md b/docs/content/en/integrations/parsers/file/sarif.md index b3b189f2a7f..2b7f2d1009e 100644 --- a/docs/content/en/integrations/parsers/file/sarif.md +++ b/docs/content/en/integrations/parsers/file/sarif.md @@ -24,3 +24,6 @@ It's possible to activate de-duplication based on this data by customizing setti # in your settings.py file DEDUPLICATION_ALGORITHM_PER_PARSER["SARIF"] = DEDUPE_ALGO_UNIQUE_ID_FROM_TOOL_OR_HASH_CODE ``` + +### Sample Scan Data +Sample SARIF scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/sarif). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/scantist.md b/docs/content/en/integrations/parsers/file/scantist.md index b0894ac9eb0..a29f1392d58 100644 --- a/docs/content/en/integrations/parsers/file/scantist.md +++ b/docs/content/en/integrations/parsers/file/scantist.md @@ -3,4 +3,7 @@ title: "Scantist Scan" toc_hide: true --- Scantist is an open source management platform. Scan and remediate open source security, licensing and compliance risks across your software development lifecycle. -Here you can find more information: \ No newline at end of file +Here you can find more information: + +### Sample Scan Data +Sample Scantist Scan scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/scantist). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/scout_suite.md b/docs/content/en/integrations/parsers/file/scout_suite.md index d68c20089fc..7e97dbfd309 100644 --- a/docs/content/en/integrations/parsers/file/scout_suite.md +++ b/docs/content/en/integrations/parsers/file/scout_suite.md @@ -6,4 +6,7 @@ Multi-Cloud security auditing tool. It uses APIs exposed by cloud providers. Scan results are located at `scan-reports/scoutsuite-results/scoutsuite\_\*.json` files. Multiple scans will create multiple files if they are runing agains -different Cloud projects. See \ No newline at end of file +different Cloud projects. See + +### Sample Scan Data +Sample ScoutSuite scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/scout_suite). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/semgrep.md b/docs/content/en/integrations/parsers/file/semgrep.md index f174f130a06..b88c8ed9d66 100644 --- a/docs/content/en/integrations/parsers/file/semgrep.md +++ b/docs/content/en/integrations/parsers/file/semgrep.md @@ -3,3 +3,6 @@ title: "Semgrep JSON Report" toc_hide: true --- Import Semgrep output (--json) + +### Sample Scan Data +Sample Semgrep JSON Report scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/semgrep). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/skf.md b/docs/content/en/integrations/parsers/file/skf.md index c3b3faa9416..c2fcfa27411 100644 --- a/docs/content/en/integrations/parsers/file/skf.md +++ b/docs/content/en/integrations/parsers/file/skf.md @@ -3,3 +3,6 @@ title: "SKF Scan" toc_hide: true --- Output of SKF Sprint summary export. + +### Sample Scan Data +Sample SKF Scan scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/skf). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/snyk.md b/docs/content/en/integrations/parsers/file/snyk.md index 21dcff4d8e9..f8cc7463789 100644 --- a/docs/content/en/integrations/parsers/file/snyk.md +++ b/docs/content/en/integrations/parsers/file/snyk.md @@ -4,3 +4,6 @@ toc_hide: true --- Snyk output file (snyk test \--json \> snyk.json) can be imported in JSON format. Only SCA (Software Composition Analysis) report is supported (SAST report not supported yet). + +### Sample Scan Data +Sample Snyk scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/snyk). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/solar_appscreener.md b/docs/content/en/integrations/parsers/file/solar_appscreener.md index 1fe049b3a75..80ab6a894d1 100644 --- a/docs/content/en/integrations/parsers/file/solar_appscreener.md +++ b/docs/content/en/integrations/parsers/file/solar_appscreener.md @@ -2,4 +2,7 @@ title: "Solar Appscreener Scan" toc_hide: true --- -Solar Appscreener report file can be imported in CSV format from Detailed_Results.csv \ No newline at end of file +Solar Appscreener report file can be imported in CSV format from Detailed_Results.csv + +### Sample Scan Data +Sample Solar Appscreener Scan scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/solar_appscreener). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/sonarqube.md b/docs/content/en/integrations/parsers/file/sonarqube.md index 5b5ae90e923..9e4da8c6f99 100644 --- a/docs/content/en/integrations/parsers/file/sonarqube.md +++ b/docs/content/en/integrations/parsers/file/sonarqube.md @@ -19,3 +19,6 @@ To generate the report, see Version: \>= 1.1.0 + +### Sample Scan Data +Sample SonarQube scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/sonarqube). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/sonatype.md b/docs/content/en/integrations/parsers/file/sonatype.md index aa317c00aa0..c993fdd3f15 100644 --- a/docs/content/en/integrations/parsers/file/sonatype.md +++ b/docs/content/en/integrations/parsers/file/sonatype.md @@ -3,3 +3,6 @@ title: "Sonatype" toc_hide: true --- JSON output. + +### Sample Scan Data +Sample Sonatype scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/sonatype). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/spotbugs.md b/docs/content/en/integrations/parsers/file/spotbugs.md index 049d1b78372..69a288e5b5b 100644 --- a/docs/content/en/integrations/parsers/file/spotbugs.md +++ b/docs/content/en/integrations/parsers/file/spotbugs.md @@ -3,3 +3,6 @@ title: "SpotBugs" toc_hide: true --- XML report of textui cli. + +### Sample Scan Data +Sample SpotBugs scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/spotbugs). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/ssh_audit.md b/docs/content/en/integrations/parsers/file/ssh_audit.md index e5877f79380..29f95a82260 100644 --- a/docs/content/en/integrations/parsers/file/ssh_audit.md +++ b/docs/content/en/integrations/parsers/file/ssh_audit.md @@ -2,4 +2,7 @@ title: "SSH Audit" toc_hide: true --- -Import JSON output of ssh_audit report. See \ No newline at end of file +Import JSON output of ssh_audit report. See + +### Sample Scan Data +Sample SSH Audit scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/ssh_audit). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/ssl_labs.md b/docs/content/en/integrations/parsers/file/ssl_labs.md index 41544357653..cd5972e126b 100644 --- a/docs/content/en/integrations/parsers/file/ssl_labs.md +++ b/docs/content/en/integrations/parsers/file/ssl_labs.md @@ -3,3 +3,6 @@ title: "SSL Labs" toc_hide: true --- JSON Output of ssllabs-scan cli. + +### Sample Scan Data +Sample SSL Labs scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/ssl_labs). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/sslscan.md b/docs/content/en/integrations/parsers/file/sslscan.md index 056c7ebcda9..0255e5858ab 100644 --- a/docs/content/en/integrations/parsers/file/sslscan.md +++ b/docs/content/en/integrations/parsers/file/sslscan.md @@ -3,3 +3,6 @@ title: "Sslscan" toc_hide: true --- Import XML output of sslscan report. + +### Sample Scan Data +Sample Sslscan scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/sslscan). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/sslyze.md b/docs/content/en/integrations/parsers/file/sslyze.md index c46209e11f9..8abfd44b8fa 100644 --- a/docs/content/en/integrations/parsers/file/sslyze.md +++ b/docs/content/en/integrations/parsers/file/sslyze.md @@ -3,9 +3,10 @@ title: "Sslyze Scan" toc_hide: true --- ## Sslyze Scan - XML report of SSLyze version 2 scan ## SSLyze 3 Scan (JSON) +JSON report of SSLyze version 3 scan -JSON report of SSLyze version 3 scan \ No newline at end of file +### Sample Scan Data +Sample Sslyze Scan scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/sslyze). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/stackhawk.md b/docs/content/en/integrations/parsers/file/stackhawk.md index 281f5dde890..4f66fb5a82c 100644 --- a/docs/content/en/integrations/parsers/file/stackhawk.md +++ b/docs/content/en/integrations/parsers/file/stackhawk.md @@ -3,4 +3,7 @@ title: "StackHawk HawkScan" toc_hide: true --- Import the JSON webhook event from StackHawk. -For more information, check out our [docs on hooking up StackHawk to Defect Dojo](https://docs.stackhawk.com/workflow-integrations/defect-dojo.html) \ No newline at end of file +For more information, check out our [docs on hooking up StackHawk to Defect Dojo](https://docs.stackhawk.com/workflow-integrations/defect-dojo.html) + +### Sample Scan Data +Sample StackHawk HawkScan scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/stackhawk). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/sysdig_reports.md b/docs/content/en/integrations/parsers/file/sysdig_reports.md index 39037ad8068..1560f445cee 100644 --- a/docs/content/en/integrations/parsers/file/sysdig_reports.md +++ b/docs/content/en/integrations/parsers/file/sysdig_reports.md @@ -5,4 +5,7 @@ toc_hide: true Import CSV report files from Sysdig. Parser will accept Pipeline, Registry and Runtime reports created from the UI -More information available at [our reporting docs page](https://docs.sysdig.com/en/docs/sysdig-secure/vulnerabilities/reporting) \ No newline at end of file +More information available at [our reporting docs page](https://docs.sysdig.com/en/docs/sysdig-secure/vulnerabilities/reporting) + +### Sample Scan Data +Sample Sysdig Vulnerability Reports scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/sysdig_reports). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/talisman.md b/docs/content/en/integrations/parsers/file/talisman.md index 851618dcd85..c542a1f0f2d 100644 --- a/docs/content/en/integrations/parsers/file/talisman.md +++ b/docs/content/en/integrations/parsers/file/talisman.md @@ -38,4 +38,7 @@ else # If talisman did not find any issues, exit with a zero status code exit 0 fi -``` \ No newline at end of file +``` + +### Sample Scan Data +Sample Talisman scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/talisman). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/tenable.md b/docs/content/en/integrations/parsers/file/tenable.md index d4666ee9017..a4f0ad59030 100644 --- a/docs/content/en/integrations/parsers/file/tenable.md +++ b/docs/content/en/integrations/parsers/file/tenable.md @@ -3,5 +3,7 @@ title: "Tenable" toc_hide: true --- Reports can be imported in the CSV, and .nessus (XML) report formats. - Legacy Nessus and Nessus WAS reports are supported + +### Sample Scan Data +Sample Tenable scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/tenable). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/terrascan.md b/docs/content/en/integrations/parsers/file/terrascan.md index 8f900e7b32b..c5d6016c5a0 100644 --- a/docs/content/en/integrations/parsers/file/terrascan.md +++ b/docs/content/en/integrations/parsers/file/terrascan.md @@ -3,3 +3,6 @@ title: "Terrascan" toc_hide: true --- Import JSON output of terrascan scan report + +### Sample Scan Data +Sample Terrascan scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/terrascan). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/testssl.md b/docs/content/en/integrations/parsers/file/testssl.md index 0cec96fc113..501cb8b8a7a 100644 --- a/docs/content/en/integrations/parsers/file/testssl.md +++ b/docs/content/en/integrations/parsers/file/testssl.md @@ -3,3 +3,6 @@ title: "Testssl Scan" toc_hide: true --- Import CSV output of testssl scan report. + +### Sample Scan Data +Sample Testssl Scan scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/testssl). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/tfsec.md b/docs/content/en/integrations/parsers/file/tfsec.md index 256a291b62f..7a0aca9d57a 100644 --- a/docs/content/en/integrations/parsers/file/tfsec.md +++ b/docs/content/en/integrations/parsers/file/tfsec.md @@ -3,3 +3,6 @@ title: "TFSec" toc_hide: true --- Import of JSON report from + +### Sample Scan Data +Sample TFSec scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/tfsec). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/trivy.md b/docs/content/en/integrations/parsers/file/trivy.md index 78a6aef1be8..01823598b70 100644 --- a/docs/content/en/integrations/parsers/file/trivy.md +++ b/docs/content/en/integrations/parsers/file/trivy.md @@ -3,3 +3,6 @@ title: "Trivy" toc_hide: true --- JSON report of [trivy scanner](https://github.com/aquasecurity/trivy). + +### Sample Scan Data +Sample Trivy scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/trivy). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/trivy_operator.md b/docs/content/en/integrations/parsers/file/trivy_operator.md index 47a93f7ebdf..1433b8231fe 100644 --- a/docs/content/en/integrations/parsers/file/trivy_operator.md +++ b/docs/content/en/integrations/parsers/file/trivy_operator.md @@ -5,3 +5,6 @@ toc_hide: true JSON report of [trivy operator scanner](https://github.com/aquasecurity/trivy-operator). To import the generated Vulnerability Reports, you can also use the [trivy-dojo-report-operator](https://github.com/telekom-mms/trivy-dojo-report-operator). + +### Sample Scan Data +Sample Trivy Operator scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/trivy_operator). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/trufflehog.md b/docs/content/en/integrations/parsers/file/trufflehog.md index 14673a7214b..c787e8e8105 100644 --- a/docs/content/en/integrations/parsers/file/trufflehog.md +++ b/docs/content/en/integrations/parsers/file/trufflehog.md @@ -3,3 +3,6 @@ title: "Trufflehog" toc_hide: true --- JSON Output of Trufflehog. Supports version 2 and 3 of https://github.com/trufflesecurity/trufflehog + +### Sample Scan Data +Sample Trufflehog scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/trufflehog). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/trufflehog3.md b/docs/content/en/integrations/parsers/file/trufflehog3.md index 58f1811f257..44fd436d541 100644 --- a/docs/content/en/integrations/parsers/file/trufflehog3.md +++ b/docs/content/en/integrations/parsers/file/trufflehog3.md @@ -3,3 +3,6 @@ title: "Trufflehog3" toc_hide: true --- JSON Output of Trufflehog3, a fork of TruffleHog located at https://github.com/feeltheajf/truffleHog3 + +### Sample Scan Data +Sample Trufflehog3 scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/trufflehog3). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/trustwave.md b/docs/content/en/integrations/parsers/file/trustwave.md index 0b463123b32..e5c6305ea7b 100644 --- a/docs/content/en/integrations/parsers/file/trustwave.md +++ b/docs/content/en/integrations/parsers/file/trustwave.md @@ -3,3 +3,6 @@ title: "Trustwave" toc_hide: true --- CSV output of Trustwave vulnerability scan. + +### Sample Scan Data +Sample Trustwave scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/trustwave). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/trustwave_fusion_api.md b/docs/content/en/integrations/parsers/file/trustwave_fusion_api.md index 47967276535..d4f61fd0570 100644 --- a/docs/content/en/integrations/parsers/file/trustwave_fusion_api.md +++ b/docs/content/en/integrations/parsers/file/trustwave_fusion_api.md @@ -2,4 +2,7 @@ title: "Trustwave Fusion API Scan" toc_hide: true --- -Trustwave Fusion API report file can be imported in JSON format \ No newline at end of file +Trustwave Fusion API report file can be imported in JSON format + +### Sample Scan Data +Sample Trustwave Fusion API Scan scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/trustwave_fusion_api). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/twistlock.md b/docs/content/en/integrations/parsers/file/twistlock.md index 027e931ff9b..e682da7402b 100644 --- a/docs/content/en/integrations/parsers/file/twistlock.md +++ b/docs/content/en/integrations/parsers/file/twistlock.md @@ -9,3 +9,6 @@ JSON output of the `twistcli` tool. Example: {{< /highlight >}} The CSV output from the UI is now also accepted. + +### Sample Scan Data +Sample Twistlock scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/twistlock). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/vcg.md b/docs/content/en/integrations/parsers/file/vcg.md index ed44be99d60..568b57bffd8 100644 --- a/docs/content/en/integrations/parsers/file/vcg.md +++ b/docs/content/en/integrations/parsers/file/vcg.md @@ -3,3 +3,4 @@ title: "Visual Code Grepper (VCG)" toc_hide: true --- VCG output can be imported in CSV or Xml formats. + diff --git a/docs/content/en/integrations/parsers/file/veracode.md b/docs/content/en/integrations/parsers/file/veracode.md index 54978e23059..77237860413 100644 --- a/docs/content/en/integrations/parsers/file/veracode.md +++ b/docs/content/en/integrations/parsers/file/veracode.md @@ -46,3 +46,6 @@ Veracode reports can be ingested in either XML or JSON Format } } ``` + +### Sample Scan Data +Sample Veracode scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/veracode). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/veracode_sca.md b/docs/content/en/integrations/parsers/file/veracode_sca.md index fd855d52694..59db59d2a31 100644 --- a/docs/content/en/integrations/parsers/file/veracode_sca.md +++ b/docs/content/en/integrations/parsers/file/veracode_sca.md @@ -3,3 +3,6 @@ title: "Veracode SourceClear" toc_hide: true --- Import Project CSV or JSON report + +### Sample Scan Data +Sample Veracode SourceClear scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/veracode_sca). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/wapiti.md b/docs/content/en/integrations/parsers/file/wapiti.md index d15d6581e40..53a4cd619b0 100644 --- a/docs/content/en/integrations/parsers/file/wapiti.md +++ b/docs/content/en/integrations/parsers/file/wapiti.md @@ -3,3 +3,6 @@ title: "Wapiti Scan" toc_hide: true --- Import XML report. + +### Sample Scan Data +Sample Wapiti Scan scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/wapiti). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/wazuh.md b/docs/content/en/integrations/parsers/file/wazuh.md index bbf191840ab..01bb0a0aa79 100644 --- a/docs/content/en/integrations/parsers/file/wazuh.md +++ b/docs/content/en/integrations/parsers/file/wazuh.md @@ -3,3 +3,6 @@ title: "Wazuh Scanner" toc_hide: true --- Import JSON report. + +### Sample Scan Data +Sample Wazuh Scanner scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/wazuh). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/wfuzz.md b/docs/content/en/integrations/parsers/file/wfuzz.md index c7a198d87e2..2aa4add793b 100644 --- a/docs/content/en/integrations/parsers/file/wfuzz.md +++ b/docs/content/en/integrations/parsers/file/wfuzz.md @@ -12,4 +12,7 @@ HTTP Return Code | Severity 401 | Medium 403 | Medium 407 | Medium -500 | Low \ No newline at end of file +500 | Low + +### Sample Scan Data +Sample Wfuzz JSON importer scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/wfuzz). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/whispers.md b/docs/content/en/integrations/parsers/file/whispers.md index 7da1946550f..dfa5b104ef7 100644 --- a/docs/content/en/integrations/parsers/file/whispers.md +++ b/docs/content/en/integrations/parsers/file/whispers.md @@ -3,5 +3,7 @@ title: "Whispers" toc_hide: true --- Import Whispers JSON results. +https://github.com/adeptex/whispers -https://github.com/adeptex/whispers \ No newline at end of file +### Sample Scan Data +Sample Whispers scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/whispers). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/whitehat_sentinel.md b/docs/content/en/integrations/parsers/file/whitehat_sentinel.md index 61a79fd7b01..756fac5069a 100644 --- a/docs/content/en/integrations/parsers/file/whitehat_sentinel.md +++ b/docs/content/en/integrations/parsers/file/whitehat_sentinel.md @@ -2,4 +2,7 @@ title: "WhiteHat Sentinel" toc_hide: true --- -WhiteHat Sentinel output from api/vuln/query_site can be imported in JSON format. \ No newline at end of file +WhiteHat Sentinel output from api/vuln/query_site can be imported in JSON format. + +### Sample Scan Data +Sample WhiteHat Sentinel scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/whitehat_sentinel). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/whitesource.md b/docs/content/en/integrations/parsers/file/whitesource.md index d647d7cc96f..62b9a4b8420 100644 --- a/docs/content/en/integrations/parsers/file/whitesource.md +++ b/docs/content/en/integrations/parsers/file/whitesource.md @@ -3,3 +3,6 @@ title: "Whitesource Scan" toc_hide: true --- Import JSON report + +### Sample Scan Data +Sample Whitesource Scan scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/whitesource). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/wpscan.md b/docs/content/en/integrations/parsers/file/wpscan.md index 7a26c51cbb3..3e47e2bc6f8 100644 --- a/docs/content/en/integrations/parsers/file/wpscan.md +++ b/docs/content/en/integrations/parsers/file/wpscan.md @@ -3,3 +3,6 @@ title: "Wpscan Scanner" toc_hide: true --- Import JSON report. + +### Sample Scan Data +Sample Wpscan Scanner scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/wpscan). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/xanitizer.md b/docs/content/en/integrations/parsers/file/xanitizer.md index 705f0aa869b..553292b5928 100644 --- a/docs/content/en/integrations/parsers/file/xanitizer.md +++ b/docs/content/en/integrations/parsers/file/xanitizer.md @@ -3,4 +3,7 @@ title: "Xanitizer" toc_hide: true --- Import XML findings list report, preferably with parameter -\'generateDetailsInFindingsListReport=true\'. \ No newline at end of file +\'generateDetailsInFindingsListReport=true\'. + +### Sample Scan Data +Sample Xanitizer scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/xanitizer). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/yarn_audit.md b/docs/content/en/integrations/parsers/file/yarn_audit.md index 7e8e4f6efc5..e7de450a756 100644 --- a/docs/content/en/integrations/parsers/file/yarn_audit.md +++ b/docs/content/en/integrations/parsers/file/yarn_audit.md @@ -3,3 +3,6 @@ title: "Yarn Audit" toc_hide: true --- Import Yarn Audit scan report in JSON format. Use something like `yarn audit --json > yarn_report.json`. + +### Sample Scan Data +Sample Yarn Audit scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/yarn_audit). \ No newline at end of file diff --git a/docs/content/en/integrations/parsers/file/zap.md b/docs/content/en/integrations/parsers/file/zap.md index e31268b16ca..43fd58e05c7 100644 --- a/docs/content/en/integrations/parsers/file/zap.md +++ b/docs/content/en/integrations/parsers/file/zap.md @@ -3,3 +3,6 @@ title: "Zed Attack Proxy" toc_hide: true --- ZAP XML report format (with or without requests and responses). + +### Sample Scan Data +Sample Zed Attack Proxy scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/zap). \ No newline at end of file From 60009cd250bcbe469258eb2c1cf6978d0c72ec6e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 19 Jan 2024 11:02:07 -0600 Subject: [PATCH 19/22] Bump drf-spectacular from 0.27.0 to 0.27.1 (#9369) Bumps [drf-spectacular](https://github.com/tfranzel/drf-spectacular) from 0.27.0 to 0.27.1. - [Release notes](https://github.com/tfranzel/drf-spectacular/releases) - [Changelog](https://github.com/tfranzel/drf-spectacular/blob/master/CHANGELOG.rst) - [Commits](https://github.com/tfranzel/drf-spectacular/compare/0.27.0...0.27.1) --- updated-dependencies: - dependency-name: drf-spectacular dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 8d7c028e87f..1ff6308b59c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -73,7 +73,7 @@ django-fieldsignals==0.7.0 hyperlink==21.0.0 django-test-migrations==1.3.0 djangosaml2==1.9.0 -drf-spectacular==0.27.0 +drf-spectacular==0.27.1 drf-spectacular-sidecar==2024.1.1 django-ratelimit==4.1.0 argon2-cffi==23.1.0 From d1a3e1e2f23dce1a19560420c0709ffba6a472ab Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 19 Jan 2024 11:04:08 -0600 Subject: [PATCH 20/22] Bump boto3 from 1.34.21 to 1.34.22 (#9368) Bumps [boto3](https://github.com/boto/boto3) from 1.34.21 to 1.34.22. - [Release notes](https://github.com/boto/boto3/releases) - [Changelog](https://github.com/boto/boto3/blob/develop/CHANGELOG.rst) - [Commits](https://github.com/boto/boto3/compare/1.34.21...1.34.22) --- updated-dependencies: - dependency-name: boto3 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 1ff6308b59c..6fea96c1f2b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -79,7 +79,7 @@ django-ratelimit==4.1.0 argon2-cffi==23.1.0 blackduck==1.1.0 pycurl==7.45.2 # Required for Celery Broker AWS (SQS) support -boto3==1.34.21 # Required for Celery Broker AWS (SQS) support +boto3==1.34.22 # Required for Celery Broker AWS (SQS) support netaddr==0.8.0 vulners==2.1.2 fontawesomefree==6.5.1 From a5c40ff3c7cd00b683e997b1ba3fdb4dd6fd4c5e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 19 Jan 2024 11:05:21 -0600 Subject: [PATCH 21/22] Bump ruff from 0.1.7 to 0.1.13 (#9367) Bumps [ruff](https://github.com/astral-sh/ruff) from 0.1.7 to 0.1.13. - [Release notes](https://github.com/astral-sh/ruff/releases) - [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md) - [Commits](https://github.com/astral-sh/ruff/compare/v0.1.7...v0.1.13) --- updated-dependencies: - dependency-name: ruff dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements-lint.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements-lint.txt b/requirements-lint.txt index 543c49a9782..418a3037fb1 100644 --- a/requirements-lint.txt +++ b/requirements-lint.txt @@ -1 +1 @@ -ruff==0.1.7 \ No newline at end of file +ruff==0.1.13 \ No newline at end of file From f25a06b57fb4204b41231cc18cc842ee48bb4af5 Mon Sep 17 00:00:00 2001 From: Cody Maffucci <46459665+Maffooch@users.noreply.github.com> Date: Fri, 19 Jan 2024 16:03:39 -0600 Subject: [PATCH 22/22] Resolve new Ruff issues (#9364) * Resolve new Ruff issues * Another one --- dojo/system_settings/views.py | 2 +- dojo/tools/blackduck_binary_analysis/importer.py | 1 - dojo/tools/govulncheck/parser.py | 1 - dojo/tools/mobsf/parser.py | 2 +- dojo/tools/nikto/parser.py | 2 +- 5 files changed, 3 insertions(+), 5 deletions(-) diff --git a/dojo/system_settings/views.py b/dojo/system_settings/views.py index f2c570211fe..d8e885599de 100644 --- a/dojo/system_settings/views.py +++ b/dojo/system_settings/views.py @@ -71,7 +71,7 @@ def system_settings(request): 'Settings cannot be saved: Retroactive false positive history can not be set without False positive history.', extra_tags='alert-warning') else: - new_settings = form.save() + form.save() messages.add_message(request, messages.SUCCESS, 'Settings saved.', diff --git a/dojo/tools/blackduck_binary_analysis/importer.py b/dojo/tools/blackduck_binary_analysis/importer.py index b6bf1aff89b..fcbe4d49a88 100644 --- a/dojo/tools/blackduck_binary_analysis/importer.py +++ b/dojo/tools/blackduck_binary_analysis/importer.py @@ -42,7 +42,6 @@ def _process_vuln_results( Process findings for each project. """ for sha1_hash_key in sha1_hash_keys: - locations = set() for vuln in vulnerabilities[sha1_hash_key]: vuln_dict = dict(vuln) diff --git a/dojo/tools/govulncheck/parser.py b/dojo/tools/govulncheck/parser.py index 1e3716309a1..31b8ec0c75b 100644 --- a/dojo/tools/govulncheck/parser.py +++ b/dojo/tools/govulncheck/parser.py @@ -58,7 +58,6 @@ def get_finding_trace_info(self, data, osv_id): def get_affected_version(self, data, osv_id): # Browse the findings to look for matching OSV-id. If the OSV-id is matching, extract the first affected version. - trace_info_strs = [] for elem in data: if 'finding' in elem.keys(): finding = elem["finding"] diff --git a/dojo/tools/mobsf/parser.py b/dojo/tools/mobsf/parser.py index 5560a2f79b6..da355496fd5 100644 --- a/dojo/tools/mobsf/parser.py +++ b/dojo/tools/mobsf/parser.py @@ -153,7 +153,7 @@ def get_findings(self, filename, test): # Manifest Analysis if "manifest_analysis" in data: - if data["manifest_analysis"] != {} and type(data["manifest_analysis"]) is dict: + if data["manifest_analysis"] != {} and isinstance(data["manifest_analysis"], dict): if data["manifest_analysis"]["manifest_findings"]: for details in data["manifest_analysis"]["manifest_findings"]: mobsf_item = { diff --git a/dojo/tools/nikto/parser.py b/dojo/tools/nikto/parser.py index b5c9cafe4b9..0fad521af11 100644 --- a/dojo/tools/nikto/parser.py +++ b/dojo/tools/nikto/parser.py @@ -43,7 +43,7 @@ def get_findings(self, filename, test): def process_json(self, file, test): data = json.load(file) - if len(data) == 1 and type(data) is list: + if len(data) == 1 and isinstance(data, list): data = data[0] dupes = dict() host = data.get("host")