summaryrefslogtreecommitdiffstats
path: root/Source/WebKit/qt/tests/MIMESniffing
diff options
context:
space:
mode:
authorQt Forward Merge Bot <qt_forward_merge_bot@qt-project.org>2019-10-11 12:44:19 +0200
committerQt Forward Merge Bot <qt_forward_merge_bot@qt-project.org>2019-10-11 12:44:19 +0200
commitab1bd15209abaf7effc51dbc2f272c5681af7223 (patch)
tree680bfbc4ab13514a9d2288609377bd8461f1d9f6 /Source/WebKit/qt/tests/MIMESniffing
parent5909e6d0d10de3e1370b3ea0bc596f580101e3b4 (diff)
parent2eac3aeb98fca0e6c13aaaff481861c5ef679e68 (diff)
Merge remote-tracking branch 'origin/5.212' into devHEADdev
Diffstat (limited to 'Source/WebKit/qt/tests/MIMESniffing')
-rw-r--r--Source/WebKit/qt/tests/MIMESniffing/TestData.h984
-rw-r--r--Source/WebKit/qt/tests/MIMESniffing/resources.qrc23
-rw-r--r--Source/WebKit/qt/tests/MIMESniffing/resources/application_atom+xml17
-rw-r--r--Source/WebKit/qt/tests/MIMESniffing/resources/application_oggbin382185 -> 0 bytes
-rw-r--r--Source/WebKit/qt/tests/MIMESniffing/resources/application_pdfbin218882 -> 0 bytes
-rw-r--r--Source/WebKit/qt/tests/MIMESniffing/resources/application_postscript137
-rw-r--r--Source/WebKit/qt/tests/MIMESniffing/resources/application_rdf+xml50
-rw-r--r--Source/WebKit/qt/tests/MIMESniffing/resources/application_rss+xml45
-rw-r--r--Source/WebKit/qt/tests/MIMESniffing/resources/application_x-gzipbin268 -> 0 bytes
-rw-r--r--Source/WebKit/qt/tests/MIMESniffing/resources/application_x-rar-compressedbin1478 -> 0 bytes
-rw-r--r--Source/WebKit/qt/tests/MIMESniffing/resources/application_zipbin411 -> 0 bytes
-rw-r--r--Source/WebKit/qt/tests/MIMESniffing/resources/audio_x-wavebin184320 -> 0 bytes
-rw-r--r--Source/WebKit/qt/tests/MIMESniffing/resources/image_bmpbin46182 -> 0 bytes
-rw-r--r--Source/WebKit/qt/tests/MIMESniffing/resources/image_gifbin245 -> 0 bytes
-rw-r--r--Source/WebKit/qt/tests/MIMESniffing/resources/image_jpegbin10874 -> 0 bytes
-rw-r--r--Source/WebKit/qt/tests/MIMESniffing/resources/image_pngbin850 -> 0 bytes
-rw-r--r--Source/WebKit/qt/tests/MIMESniffing/resources/image_vnd.microsoft.iconbin9662 -> 0 bytes
-rw-r--r--Source/WebKit/qt/tests/MIMESniffing/resources/image_webpbin10474 -> 0 bytes
-rw-r--r--Source/WebKit/qt/tests/MIMESniffing/resources/text_html3
-rw-r--r--Source/WebKit/qt/tests/MIMESniffing/resources/text_xml19
-rw-r--r--Source/WebKit/qt/tests/MIMESniffing/resources/video_webmbin388027 -> 0 bytes
-rw-r--r--Source/WebKit/qt/tests/MIMESniffing/tst_MIMESniffing.cpp72
22 files changed, 0 insertions, 1350 deletions
diff --git a/Source/WebKit/qt/tests/MIMESniffing/TestData.h b/Source/WebKit/qt/tests/MIMESniffing/TestData.h
deleted file mode 100644
index c04bd6b89..000000000
--- a/Source/WebKit/qt/tests/MIMESniffing/TestData.h
+++ /dev/null
@@ -1,984 +0,0 @@
-/*
- Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies)
-
- This library is free software; you can redistribute it and/or
- modify it under the terms of the GNU Library General Public
- License as published by the Free Software Foundation; either
- version 2 of the License, or (at your option) any later version.
-
- This library is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- Library General Public License for more details.
-
- You should have received a copy of the GNU Library General Public License
- along with this library; see the file COPYING.LIB. If not, write to
- the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- Boston, MA 02110-1301, USA.
-*/
-
-#ifndef TestData_h
-#define TestData_h
-
-typedef struct _TestData {
- const char* file;
- const char* advertisedType;
- bool isImage;
- const char* sniffedType;
-} TestData;
-
-static const TestData testList[] = {
- {":/application_atom+xml", "text/plain", false, "text/plain"},
- {":/application_atom+xml", "text/plain", true, "text/plain"},
- {":/application_atom+xml", "unknown/unknown", false, "text/xml"},
- {":/application_atom+xml", "unknown/unknown", true, "text/xml"},
- {":/application_atom+xml", "application/unknown", false, "text/xml"},
- {":/application_atom+xml", "application/unknown", true, "text/xml"},
- {":/application_atom+xml", "*/*", false, "text/xml"},
- {":/application_atom+xml", "*/*", true, "text/xml"},
- {":/application_atom+xml", "text/xml", false, 0},
- {":/application_atom+xml", "text/xml", true, 0},
- {":/application_atom+xml", "application/xml", false, 0},
- {":/application_atom+xml", "application/xml", true, 0},
- {":/application_atom+xml", "text/html", false, "application/atom+xml"},
- {":/application_atom+xml", "text/html", true, 0},
- {":/application_atom+xml", "text/xml", false, 0},
- {":/application_atom+xml", "text/xml", true, 0},
- {":/application_atom+xml", "application/pdf", false, 0},
- {":/application_atom+xml", "application/pdf", true, 0},
- {":/application_atom+xml", "application/postscript", false, 0},
- {":/application_atom+xml", "application/postscript", true, 0},
- {":/application_atom+xml", "application/ogg", false, 0},
- {":/application_atom+xml", "application/ogg", true, 0},
- {":/application_atom+xml", "video/webm", false, 0},
- {":/application_atom+xml", "video/webm", true, 0},
- {":/application_atom+xml", "application/x-rar-compressed", false, 0},
- {":/application_atom+xml", "application/x-rar-compressed", true, 0},
- {":/application_atom+xml", "application/zip", false, 0},
- {":/application_atom+xml", "application/zip", true, 0},
- {":/application_atom+xml", "application/x-gzip", false, 0},
- {":/application_atom+xml", "application/x-gzip", true, 0},
- {":/application_atom+xml", "audio/x-wave", false, 0},
- {":/application_atom+xml", "audio/x-wave", true, 0},
- {":/application_atom+xml", "image/webp", false, 0},
- {":/application_atom+xml", "image/webp", true, 0},
- {":/application_atom+xml", "image/gif", false, 0},
- {":/application_atom+xml", "image/gif", true, 0},
- {":/application_atom+xml", "image/png", false, 0},
- {":/application_atom+xml", "image/png", true, 0},
- {":/application_atom+xml", "image/jpeg", false, 0},
- {":/application_atom+xml", "image/jpeg", true, 0},
- {":/application_atom+xml", "image/bmp", false, 0},
- {":/application_atom+xml", "image/bmp", true, 0},
- {":/application_atom+xml", "image/vnd.microsoft.icon", false, 0},
- {":/application_atom+xml", "image/vnd.microsoft.icon", true, 0},
- {":/application_atom+xml", "application/rdf+xml", false, 0},
- {":/application_atom+xml", "application/rdf+xml", true, 0},
- {":/application_atom+xml", "application/rss+xml", false, 0},
- {":/application_atom+xml", "application/rss+xml", true, 0},
- {":/application_atom+xml", "application/atom+xml", false, 0},
- {":/application_atom+xml", "application/atom+xml", true, 0},
- {":/application_ogg", "text/plain", false, "application/ogg"},
- {":/application_ogg", "text/plain", true, "application/ogg"},
- {":/application_ogg", "unknown/unknown", false, "application/ogg"},
- {":/application_ogg", "unknown/unknown", true, "application/ogg"},
- {":/application_ogg", "application/unknown", false, "application/ogg"},
- {":/application_ogg", "application/unknown", true, "application/ogg"},
- {":/application_ogg", "*/*", false, "application/ogg"},
- {":/application_ogg", "*/*", true, "application/ogg"},
- {":/application_ogg", "text/xml", false, 0},
- {":/application_ogg", "text/xml", true, 0},
- {":/application_ogg", "application/xml", false, 0},
- {":/application_ogg", "application/xml", true, 0},
- {":/application_ogg", "text/html", false, 0},
- {":/application_ogg", "text/html", true, 0},
- {":/application_ogg", "text/xml", false, 0},
- {":/application_ogg", "text/xml", true, 0},
- {":/application_ogg", "application/pdf", false, 0},
- {":/application_ogg", "application/pdf", true, 0},
- {":/application_ogg", "application/postscript", false, 0},
- {":/application_ogg", "application/postscript", true, 0},
- {":/application_ogg", "application/ogg", false, 0},
- {":/application_ogg", "application/ogg", true, 0},
- {":/application_ogg", "video/webm", false, 0},
- {":/application_ogg", "video/webm", true, 0},
- {":/application_ogg", "application/x-rar-compressed", false, 0},
- {":/application_ogg", "application/x-rar-compressed", true, 0},
- {":/application_ogg", "application/zip", false, 0},
- {":/application_ogg", "application/zip", true, 0},
- {":/application_ogg", "application/x-gzip", false, 0},
- {":/application_ogg", "application/x-gzip", true, 0},
- {":/application_ogg", "audio/x-wave", false, 0},
- {":/application_ogg", "audio/x-wave", true, 0},
- {":/application_ogg", "image/webp", false, 0},
- {":/application_ogg", "image/webp", true, 0},
- {":/application_ogg", "image/gif", false, 0},
- {":/application_ogg", "image/gif", true, 0},
- {":/application_ogg", "image/png", false, 0},
- {":/application_ogg", "image/png", true, 0},
- {":/application_ogg", "image/jpeg", false, 0},
- {":/application_ogg", "image/jpeg", true, 0},
- {":/application_ogg", "image/bmp", false, 0},
- {":/application_ogg", "image/bmp", true, 0},
- {":/application_ogg", "image/vnd.microsoft.icon", false, 0},
- {":/application_ogg", "image/vnd.microsoft.icon", true, 0},
- {":/application_ogg", "application/rdf+xml", false, 0},
- {":/application_ogg", "application/rdf+xml", true, 0},
- {":/application_ogg", "application/rss+xml", false, 0},
- {":/application_ogg", "application/rss+xml", true, 0},
- {":/application_ogg", "application/atom+xml", false, 0},
- {":/application_ogg", "application/atom+xml", true, 0},
- {":/application_pdf", "text/plain", false, "application/octet-stream"},
- {":/application_pdf", "text/plain", true, "application/octet-stream"},
- {":/application_pdf", "unknown/unknown", false, "application/pdf"},
- {":/application_pdf", "unknown/unknown", true, "application/pdf"},
- {":/application_pdf", "application/unknown", false, "application/pdf"},
- {":/application_pdf", "application/unknown", true, "application/pdf"},
- {":/application_pdf", "*/*", false, "application/pdf"},
- {":/application_pdf", "*/*", true, "application/pdf"},
- {":/application_pdf", "text/xml", false, 0},
- {":/application_pdf", "text/xml", true, 0},
- {":/application_pdf", "application/xml", false, 0},
- {":/application_pdf", "application/xml", true, 0},
- {":/application_pdf", "text/html", false, 0},
- {":/application_pdf", "text/html", true, 0},
- {":/application_pdf", "text/xml", false, 0},
- {":/application_pdf", "text/xml", true, 0},
- {":/application_pdf", "application/pdf", false, 0},
- {":/application_pdf", "application/pdf", true, 0},
- {":/application_pdf", "application/postscript", false, 0},
- {":/application_pdf", "application/postscript", true, 0},
- {":/application_pdf", "application/ogg", false, 0},
- {":/application_pdf", "application/ogg", true, 0},
- {":/application_pdf", "video/webm", false, 0},
- {":/application_pdf", "video/webm", true, 0},
- {":/application_pdf", "application/x-rar-compressed", false, 0},
- {":/application_pdf", "application/x-rar-compressed", true, 0},
- {":/application_pdf", "application/zip", false, 0},
- {":/application_pdf", "application/zip", true, 0},
- {":/application_pdf", "application/x-gzip", false, 0},
- {":/application_pdf", "application/x-gzip", true, 0},
- {":/application_pdf", "audio/x-wave", false, 0},
- {":/application_pdf", "audio/x-wave", true, 0},
- {":/application_pdf", "image/webp", false, 0},
- {":/application_pdf", "image/webp", true, 0},
- {":/application_pdf", "image/gif", false, 0},
- {":/application_pdf", "image/gif", true, 0},
- {":/application_pdf", "image/png", false, 0},
- {":/application_pdf", "image/png", true, 0},
- {":/application_pdf", "image/jpeg", false, 0},
- {":/application_pdf", "image/jpeg", true, 0},
- {":/application_pdf", "image/bmp", false, 0},
- {":/application_pdf", "image/bmp", true, 0},
- {":/application_pdf", "image/vnd.microsoft.icon", false, 0},
- {":/application_pdf", "image/vnd.microsoft.icon", true, 0},
- {":/application_pdf", "application/rdf+xml", false, 0},
- {":/application_pdf", "application/rdf+xml", true, 0},
- {":/application_pdf", "application/rss+xml", false, 0},
- {":/application_pdf", "application/rss+xml", true, 0},
- {":/application_pdf", "application/atom+xml", false, 0},
- {":/application_pdf", "application/atom+xml", true, 0},
- {":/application_postscript", "text/plain", false, "text/plain"},
- {":/application_postscript", "text/plain", true, "text/plain"},
- {":/application_postscript", "unknown/unknown", false, "application/postscript"},
- {":/application_postscript", "unknown/unknown", true, "application/postscript"},
- {":/application_postscript", "application/unknown", false, "application/postscript"},
- {":/application_postscript", "application/unknown", true, "application/postscript"},
- {":/application_postscript", "*/*", false, "application/postscript"},
- {":/application_postscript", "*/*", true, "application/postscript"},
- {":/application_postscript", "text/xml", false, 0},
- {":/application_postscript", "text/xml", true, 0},
- {":/application_postscript", "application/xml", false, 0},
- {":/application_postscript", "application/xml", true, 0},
- {":/application_postscript", "text/html", false, 0},
- {":/application_postscript", "text/html", true, 0},
- {":/application_postscript", "text/xml", false, 0},
- {":/application_postscript", "text/xml", true, 0},
- {":/application_postscript", "application/pdf", false, 0},
- {":/application_postscript", "application/pdf", true, 0},
- {":/application_postscript", "application/postscript", false, 0},
- {":/application_postscript", "application/postscript", true, 0},
- {":/application_postscript", "application/ogg", false, 0},
- {":/application_postscript", "application/ogg", true, 0},
- {":/application_postscript", "video/webm", false, 0},
- {":/application_postscript", "video/webm", true, 0},
- {":/application_postscript", "application/x-rar-compressed", false, 0},
- {":/application_postscript", "application/x-rar-compressed", true, 0},
- {":/application_postscript", "application/zip", false, 0},
- {":/application_postscript", "application/zip", true, 0},
- {":/application_postscript", "application/x-gzip", false, 0},
- {":/application_postscript", "application/x-gzip", true, 0},
- {":/application_postscript", "audio/x-wave", false, 0},
- {":/application_postscript", "audio/x-wave", true, 0},
- {":/application_postscript", "image/webp", false, 0},
- {":/application_postscript", "image/webp", true, 0},
- {":/application_postscript", "image/gif", false, 0},
- {":/application_postscript", "image/gif", true, 0},
- {":/application_postscript", "image/png", false, 0},
- {":/application_postscript", "image/png", true, 0},
- {":/application_postscript", "image/jpeg", false, 0},
- {":/application_postscript", "image/jpeg", true, 0},
- {":/application_postscript", "image/bmp", false, 0},
- {":/application_postscript", "image/bmp", true, 0},
- {":/application_postscript", "image/vnd.microsoft.icon", false, 0},
- {":/application_postscript", "image/vnd.microsoft.icon", true, 0},
- {":/application_postscript", "application/rdf+xml", false, 0},
- {":/application_postscript", "application/rdf+xml", true, 0},
- {":/application_postscript", "application/rss+xml", false, 0},
- {":/application_postscript", "application/rss+xml", true, 0},
- {":/application_postscript", "application/atom+xml", false, 0},
- {":/application_postscript", "application/atom+xml", true, 0},
- {":/application_rdf+xml", "text/plain", false, "text/plain"},
- {":/application_rdf+xml", "text/plain", true, "text/plain"},
- {":/application_rdf+xml", "unknown/unknown", false, "text/xml"},
- {":/application_rdf+xml", "unknown/unknown", true, "text/xml"},
- {":/application_rdf+xml", "application/unknown", false, "text/xml"},
- {":/application_rdf+xml", "application/unknown", true, "text/xml"},
- {":/application_rdf+xml", "*/*", false, "text/xml"},
- {":/application_rdf+xml", "*/*", true, "text/xml"},
- {":/application_rdf+xml", "text/xml", false, 0},
- {":/application_rdf+xml", "text/xml", true, 0},
- {":/application_rdf+xml", "application/xml", false, 0},
- {":/application_rdf+xml", "application/xml", true, 0},
- {":/application_rdf+xml", "text/html", false, "application/rdf+xml"},
- {":/application_rdf+xml", "text/html", true, 0},
- {":/application_rdf+xml", "text/xml", false, 0},
- {":/application_rdf+xml", "text/xml", true, 0},
- {":/application_rdf+xml", "application/pdf", false, 0},
- {":/application_rdf+xml", "application/pdf", true, 0},
- {":/application_rdf+xml", "application/postscript", false, 0},
- {":/application_rdf+xml", "application/postscript", true, 0},
- {":/application_rdf+xml", "application/ogg", false, 0},
- {":/application_rdf+xml", "application/ogg", true, 0},
- {":/application_rdf+xml", "video/webm", false, 0},
- {":/application_rdf+xml", "video/webm", true, 0},
- {":/application_rdf+xml", "application/x-rar-compressed", false, 0},
- {":/application_rdf+xml", "application/x-rar-compressed", true, 0},
- {":/application_rdf+xml", "application/zip", false, 0},
- {":/application_rdf+xml", "application/zip", true, 0},
- {":/application_rdf+xml", "application/x-gzip", false, 0},
- {":/application_rdf+xml", "application/x-gzip", true, 0},
- {":/application_rdf+xml", "audio/x-wave", false, 0},
- {":/application_rdf+xml", "audio/x-wave", true, 0},
- {":/application_rdf+xml", "image/webp", false, 0},
- {":/application_rdf+xml", "image/webp", true, 0},
- {":/application_rdf+xml", "image/gif", false, 0},
- {":/application_rdf+xml", "image/gif", true, 0},
- {":/application_rdf+xml", "image/png", false, 0},
- {":/application_rdf+xml", "image/png", true, 0},
- {":/application_rdf+xml", "image/jpeg", false, 0},
- {":/application_rdf+xml", "image/jpeg", true, 0},
- {":/application_rdf+xml", "image/bmp", false, 0},
- {":/application_rdf+xml", "image/bmp", true, 0},
- {":/application_rdf+xml", "image/vnd.microsoft.icon", false, 0},
- {":/application_rdf+xml", "image/vnd.microsoft.icon", true, 0},
- {":/application_rdf+xml", "application/rdf+xml", false, 0},
- {":/application_rdf+xml", "application/rdf+xml", true, 0},
- {":/application_rdf+xml", "application/rss+xml", false, 0},
- {":/application_rdf+xml", "application/rss+xml", true, 0},
- {":/application_rdf+xml", "application/atom+xml", false, 0},
- {":/application_rdf+xml", "application/atom+xml", true, 0},
- {":/application_rss+xml", "text/plain", false, "text/plain"},
- {":/application_rss+xml", "text/plain", true, "text/plain"},
- {":/application_rss+xml", "unknown/unknown", false, "text/xml"},
- {":/application_rss+xml", "unknown/unknown", true, "text/xml"},
- {":/application_rss+xml", "application/unknown", false, "text/xml"},
- {":/application_rss+xml", "application/unknown", true, "text/xml"},
- {":/application_rss+xml", "*/*", false, "text/xml"},
- {":/application_rss+xml", "*/*", true, "text/xml"},
- {":/application_rss+xml", "text/xml", false, 0},
- {":/application_rss+xml", "text/xml", true, 0},
- {":/application_rss+xml", "application/xml", false, 0},
- {":/application_rss+xml", "application/xml", true, 0},
- {":/application_rss+xml", "text/html", false, "application/rss+xml"},
- {":/application_rss+xml", "text/html", true, 0},
- {":/application_rss+xml", "text/xml", false, 0},
- {":/application_rss+xml", "text/xml", true, 0},
- {":/application_rss+xml", "application/pdf", false, 0},
- {":/application_rss+xml", "application/pdf", true, 0},
- {":/application_rss+xml", "application/postscript", false, 0},
- {":/application_rss+xml", "application/postscript", true, 0},
- {":/application_rss+xml", "application/ogg", false, 0},
- {":/application_rss+xml", "application/ogg", true, 0},
- {":/application_rss+xml", "video/webm", false, 0},
- {":/application_rss+xml", "video/webm", true, 0},
- {":/application_rss+xml", "application/x-rar-compressed", false, 0},
- {":/application_rss+xml", "application/x-rar-compressed", true, 0},
- {":/application_rss+xml", "application/zip", false, 0},
- {":/application_rss+xml", "application/zip", true, 0},
- {":/application_rss+xml", "application/x-gzip", false, 0},
- {":/application_rss+xml", "application/x-gzip", true, 0},
- {":/application_rss+xml", "audio/x-wave", false, 0},
- {":/application_rss+xml", "audio/x-wave", true, 0},
- {":/application_rss+xml", "image/webp", false, 0},
- {":/application_rss+xml", "image/webp", true, 0},
- {":/application_rss+xml", "image/gif", false, 0},
- {":/application_rss+xml", "image/gif", true, 0},
- {":/application_rss+xml", "image/png", false, 0},
- {":/application_rss+xml", "image/png", true, 0},
- {":/application_rss+xml", "image/jpeg", false, 0},
- {":/application_rss+xml", "image/jpeg", true, 0},
- {":/application_rss+xml", "image/bmp", false, 0},
- {":/application_rss+xml", "image/bmp", true, 0},
- {":/application_rss+xml", "image/vnd.microsoft.icon", false, 0},
- {":/application_rss+xml", "image/vnd.microsoft.icon", true, 0},
- {":/application_rss+xml", "application/rdf+xml", false, 0},
- {":/application_rss+xml", "application/rdf+xml", true, 0},
- {":/application_rss+xml", "application/rss+xml", false, 0},
- {":/application_rss+xml", "application/rss+xml", true, 0},
- {":/application_rss+xml", "application/atom+xml", false, 0},
- {":/application_rss+xml", "application/atom+xml", true, 0},
- {":/application_x-gzip", "text/plain", false, "application/x-gzip"},
- {":/application_x-gzip", "text/plain", true, "application/x-gzip"},
- {":/application_x-gzip", "unknown/unknown", false, "application/x-gzip"},
- {":/application_x-gzip", "unknown/unknown", true, "application/x-gzip"},
- {":/application_x-gzip", "application/unknown", false, "application/x-gzip"},
- {":/application_x-gzip", "application/unknown", true, "application/x-gzip"},
- {":/application_x-gzip", "*/*", false, "application/x-gzip"},
- {":/application_x-gzip", "*/*", true, "application/x-gzip"},
- {":/application_x-gzip", "text/xml", false, 0},
- {":/application_x-gzip", "text/xml", true, 0},
- {":/application_x-gzip", "application/xml", false, 0},
- {":/application_x-gzip", "application/xml", true, 0},
- {":/application_x-gzip", "text/html", false, 0},
- {":/application_x-gzip", "text/html", true, 0},
- {":/application_x-gzip", "text/xml", false, 0},
- {":/application_x-gzip", "text/xml", true, 0},
- {":/application_x-gzip", "application/pdf", false, 0},
- {":/application_x-gzip", "application/pdf", true, 0},
- {":/application_x-gzip", "application/postscript", false, 0},
- {":/application_x-gzip", "application/postscript", true, 0},
- {":/application_x-gzip", "application/ogg", false, 0},
- {":/application_x-gzip", "application/ogg", true, 0},
- {":/application_x-gzip", "video/webm", false, 0},
- {":/application_x-gzip", "video/webm", true, 0},
- {":/application_x-gzip", "application/x-rar-compressed", false, 0},
- {":/application_x-gzip", "application/x-rar-compressed", true, 0},
- {":/application_x-gzip", "application/zip", false, 0},
- {":/application_x-gzip", "application/zip", true, 0},
- {":/application_x-gzip", "application/x-gzip", false, 0},
- {":/application_x-gzip", "application/x-gzip", true, 0},
- {":/application_x-gzip", "audio/x-wave", false, 0},
- {":/application_x-gzip", "audio/x-wave", true, 0},
- {":/application_x-gzip", "image/webp", false, 0},
- {":/application_x-gzip", "image/webp", true, 0},
- {":/application_x-gzip", "image/gif", false, 0},
- {":/application_x-gzip", "image/gif", true, 0},
- {":/application_x-gzip", "image/png", false, 0},
- {":/application_x-gzip", "image/png", true, 0},
- {":/application_x-gzip", "image/jpeg", false, 0},
- {":/application_x-gzip", "image/jpeg", true, 0},
- {":/application_x-gzip", "image/bmp", false, 0},
- {":/application_x-gzip", "image/bmp", true, 0},
- {":/application_x-gzip", "image/vnd.microsoft.icon", false, 0},
- {":/application_x-gzip", "image/vnd.microsoft.icon", true, 0},
- {":/application_x-gzip", "application/rdf+xml", false, 0},
- {":/application_x-gzip", "application/rdf+xml", true, 0},
- {":/application_x-gzip", "application/rss+xml", false, 0},
- {":/application_x-gzip", "application/rss+xml", true, 0},
- {":/application_x-gzip", "application/atom+xml", false, 0},
- {":/application_x-gzip", "application/atom+xml", true, 0},
- {":/application_x-rar-compressed", "text/plain", false, "application/x-rar-compressed"},
- {":/application_x-rar-compressed", "text/plain", true, "application/x-rar-compressed"},
- {":/application_x-rar-compressed", "unknown/unknown", false, "application/x-rar-compressed"},
- {":/application_x-rar-compressed", "unknown/unknown", true, "application/x-rar-compressed"},
- {":/application_x-rar-compressed", "application/unknown", false, "application/x-rar-compressed"},
- {":/application_x-rar-compressed", "application/unknown", true, "application/x-rar-compressed"},
- {":/application_x-rar-compressed", "*/*", false, "application/x-rar-compressed"},
- {":/application_x-rar-compressed", "*/*", true, "application/x-rar-compressed"},
- {":/application_x-rar-compressed", "text/xml", false, 0},
- {":/application_x-rar-compressed", "text/xml", true, 0},
- {":/application_x-rar-compressed", "application/xml", false, 0},
- {":/application_x-rar-compressed", "application/xml", true, 0},
- {":/application_x-rar-compressed", "text/html", false, 0},
- {":/application_x-rar-compressed", "text/html", true, 0},
- {":/application_x-rar-compressed", "text/xml", false, 0},
- {":/application_x-rar-compressed", "text/xml", true, 0},
- {":/application_x-rar-compressed", "application/pdf", false, 0},
- {":/application_x-rar-compressed", "application/pdf", true, 0},
- {":/application_x-rar-compressed", "application/postscript", false, 0},
- {":/application_x-rar-compressed", "application/postscript", true, 0},
- {":/application_x-rar-compressed", "application/ogg", false, 0},
- {":/application_x-rar-compressed", "application/ogg", true, 0},
- {":/application_x-rar-compressed", "video/webm", false, 0},
- {":/application_x-rar-compressed", "video/webm", true, 0},
- {":/application_x-rar-compressed", "application/x-rar-compressed", false, 0},
- {":/application_x-rar-compressed", "application/x-rar-compressed", true, 0},
- {":/application_x-rar-compressed", "application/zip", false, 0},
- {":/application_x-rar-compressed", "application/zip", true, 0},
- {":/application_x-rar-compressed", "application/x-gzip", false, 0},
- {":/application_x-rar-compressed", "application/x-gzip", true, 0},
- {":/application_x-rar-compressed", "audio/x-wave", false, 0},
- {":/application_x-rar-compressed", "audio/x-wave", true, 0},
- {":/application_x-rar-compressed", "image/webp", false, 0},
- {":/application_x-rar-compressed", "image/webp", true, 0},
- {":/application_x-rar-compressed", "image/gif", false, 0},
- {":/application_x-rar-compressed", "image/gif", true, 0},
- {":/application_x-rar-compressed", "image/png", false, 0},
- {":/application_x-rar-compressed", "image/png", true, 0},
- {":/application_x-rar-compressed", "image/jpeg", false, 0},
- {":/application_x-rar-compressed", "image/jpeg", true, 0},
- {":/application_x-rar-compressed", "image/bmp", false, 0},
- {":/application_x-rar-compressed", "image/bmp", true, 0},
- {":/application_x-rar-compressed", "image/vnd.microsoft.icon", false, 0},
- {":/application_x-rar-compressed", "image/vnd.microsoft.icon", true, 0},
- {":/application_x-rar-compressed", "application/rdf+xml", false, 0},
- {":/application_x-rar-compressed", "application/rdf+xml", true, 0},
- {":/application_x-rar-compressed", "application/rss+xml", false, 0},
- {":/application_x-rar-compressed", "application/rss+xml", true, 0},
- {":/application_x-rar-compressed", "application/atom+xml", false, 0},
- {":/application_x-rar-compressed", "application/atom+xml", true, 0},
- {":/application_zip", "text/plain", false, "application/zip"},
- {":/application_zip", "text/plain", true, "application/zip"},
- {":/application_zip", "unknown/unknown", false, "application/zip"},
- {":/application_zip", "unknown/unknown", true, "application/zip"},
- {":/application_zip", "application/unknown", false, "application/zip"},
- {":/application_zip", "application/unknown", true, "application/zip"},
- {":/application_zip", "*/*", false, "application/zip"},
- {":/application_zip", "*/*", true, "application/zip"},
- {":/application_zip", "text/xml", false, 0},
- {":/application_zip", "text/xml", true, 0},
- {":/application_zip", "application/xml", false, 0},
- {":/application_zip", "application/xml", true, 0},
- {":/application_zip", "text/html", false, 0},
- {":/application_zip", "text/html", true, 0},
- {":/application_zip", "text/xml", false, 0},
- {":/application_zip", "text/xml", true, 0},
- {":/application_zip", "application/pdf", false, 0},
- {":/application_zip", "application/pdf", true, 0},
- {":/application_zip", "application/postscript", false, 0},
- {":/application_zip", "application/postscript", true, 0},
- {":/application_zip", "application/ogg", false, 0},
- {":/application_zip", "application/ogg", true, 0},
- {":/application_zip", "video/webm", false, 0},
- {":/application_zip", "video/webm", true, 0},
- {":/application_zip", "application/x-rar-compressed", false, 0},
- {":/application_zip", "application/x-rar-compressed", true, 0},
- {":/application_zip", "application/zip", false, 0},
- {":/application_zip", "application/zip", true, 0},
- {":/application_zip", "application/x-gzip", false, 0},
- {":/application_zip", "application/x-gzip", true, 0},
- {":/application_zip", "audio/x-wave", false, 0},
- {":/application_zip", "audio/x-wave", true, 0},
- {":/application_zip", "image/webp", false, 0},
- {":/application_zip", "image/webp", true, 0},
- {":/application_zip", "image/gif", false, 0},
- {":/application_zip", "image/gif", true, 0},
- {":/application_zip", "image/png", false, 0},
- {":/application_zip", "image/png", true, 0},
- {":/application_zip", "image/jpeg", false, 0},
- {":/application_zip", "image/jpeg", true, 0},
- {":/application_zip", "image/bmp", false, 0},
- {":/application_zip", "image/bmp", true, 0},
- {":/application_zip", "image/vnd.microsoft.icon", false, 0},
- {":/application_zip", "image/vnd.microsoft.icon", true, 0},
- {":/application_zip", "application/rdf+xml", false, 0},
- {":/application_zip", "application/rdf+xml", true, 0},
- {":/application_zip", "application/rss+xml", false, 0},
- {":/application_zip", "application/rss+xml", true, 0},
- {":/application_zip", "application/atom+xml", false, 0},
- {":/application_zip", "application/atom+xml", true, 0},
- {":/audio_x-wave", "text/plain", false, "audio/x-wave"},
- {":/audio_x-wave", "text/plain", true, "audio/x-wave"},
- {":/audio_x-wave", "unknown/unknown", false, "audio/x-wave"},
- {":/audio_x-wave", "unknown/unknown", true, "audio/x-wave"},
- {":/audio_x-wave", "application/unknown", false, "audio/x-wave"},
- {":/audio_x-wave", "application/unknown", true, "audio/x-wave"},
- {":/audio_x-wave", "*/*", false, "audio/x-wave"},
- {":/audio_x-wave", "*/*", true, "audio/x-wave"},
- {":/audio_x-wave", "text/xml", false, 0},
- {":/audio_x-wave", "text/xml", true, 0},
- {":/audio_x-wave", "application/xml", false, 0},
- {":/audio_x-wave", "application/xml", true, 0},
- {":/audio_x-wave", "text/html", false, 0},
- {":/audio_x-wave", "text/html", true, 0},
- {":/audio_x-wave", "text/xml", false, 0},
- {":/audio_x-wave", "text/xml", true, 0},
- {":/audio_x-wave", "application/pdf", false, 0},
- {":/audio_x-wave", "application/pdf", true, 0},
- {":/audio_x-wave", "application/postscript", false, 0},
- {":/audio_x-wave", "application/postscript", true, 0},
- {":/audio_x-wave", "application/ogg", false, 0},
- {":/audio_x-wave", "application/ogg", true, 0},
- {":/audio_x-wave", "video/webm", false, 0},
- {":/audio_x-wave", "video/webm", true, 0},
- {":/audio_x-wave", "application/x-rar-compressed", false, 0},
- {":/audio_x-wave", "application/x-rar-compressed", true, 0},
- {":/audio_x-wave", "application/zip", false, 0},
- {":/audio_x-wave", "application/zip", true, 0},
- {":/audio_x-wave", "application/x-gzip", false, 0},
- {":/audio_x-wave", "application/x-gzip", true, 0},
- {":/audio_x-wave", "audio/x-wave", false, 0},
- {":/audio_x-wave", "audio/x-wave", true, 0},
- {":/audio_x-wave", "image/webp", false, 0},
- {":/audio_x-wave", "image/webp", true, 0},
- {":/audio_x-wave", "image/gif", false, 0},
- {":/audio_x-wave", "image/gif", true, 0},
- {":/audio_x-wave", "image/png", false, 0},
- {":/audio_x-wave", "image/png", true, 0},
- {":/audio_x-wave", "image/jpeg", false, 0},
- {":/audio_x-wave", "image/jpeg", true, 0},
- {":/audio_x-wave", "image/bmp", false, 0},
- {":/audio_x-wave", "image/bmp", true, 0},
- {":/audio_x-wave", "image/vnd.microsoft.icon", false, 0},
- {":/audio_x-wave", "image/vnd.microsoft.icon", true, 0},
- {":/audio_x-wave", "application/rdf+xml", false, 0},
- {":/audio_x-wave", "application/rdf+xml", true, 0},
- {":/audio_x-wave", "application/rss+xml", false, 0},
- {":/audio_x-wave", "application/rss+xml", true, 0},
- {":/audio_x-wave", "application/atom+xml", false, 0},
- {":/audio_x-wave", "application/atom+xml", true, 0},
- {":/image_bmp", "text/plain", false, "image/bmp"},
- {":/image_bmp", "text/plain", true, "image/bmp"},
- {":/image_bmp", "unknown/unknown", false, "image/bmp"},
- {":/image_bmp", "unknown/unknown", true, "image/bmp"},
- {":/image_bmp", "application/unknown", false, "image/bmp"},
- {":/image_bmp", "application/unknown", true, "image/bmp"},
- {":/image_bmp", "*/*", false, "image/bmp"},
- {":/image_bmp", "*/*", true, "image/bmp"},
- {":/image_bmp", "text/xml", false, 0},
- {":/image_bmp", "text/xml", true, 0},
- {":/image_bmp", "application/xml", false, 0},
- {":/image_bmp", "application/xml", true, 0},
- {":/image_bmp", "text/html", false, 0},
- {":/image_bmp", "text/html", true, "image/bmp"},
- {":/image_bmp", "text/xml", false, 0},
- {":/image_bmp", "text/xml", true, 0},
- {":/image_bmp", "application/pdf", false, 0},
- {":/image_bmp", "application/pdf", true, "image/bmp"},
- {":/image_bmp", "application/postscript", false, 0},
- {":/image_bmp", "application/postscript", true, "image/bmp"},
- {":/image_bmp", "application/ogg", false, 0},
- {":/image_bmp", "application/ogg", true, "image/bmp"},
- {":/image_bmp", "video/webm", false, 0},
- {":/image_bmp", "video/webm", true, "image/bmp"},
- {":/image_bmp", "application/x-rar-compressed", false, 0},
- {":/image_bmp", "application/x-rar-compressed", true, "image/bmp"},
- {":/image_bmp", "application/zip", false, 0},
- {":/image_bmp", "application/zip", true, "image/bmp"},
- {":/image_bmp", "application/x-gzip", false, 0},
- {":/image_bmp", "application/x-gzip", true, "image/bmp"},
- {":/image_bmp", "audio/x-wave", false, 0},
- {":/image_bmp", "audio/x-wave", true, "image/bmp"},
- {":/image_bmp", "image/webp", false, 0},
- {":/image_bmp", "image/webp", true, "image/bmp"},
- {":/image_bmp", "image/gif", false, 0},
- {":/image_bmp", "image/gif", true, "image/bmp"},
- {":/image_bmp", "image/png", false, 0},
- {":/image_bmp", "image/png", true, "image/bmp"},
- {":/image_bmp", "image/jpeg", false, 0},
- {":/image_bmp", "image/jpeg", true, "image/bmp"},
- {":/image_bmp", "image/bmp", false, 0},
- {":/image_bmp", "image/bmp", true, "image/bmp"},
- {":/image_bmp", "image/vnd.microsoft.icon", false, 0},
- {":/image_bmp", "image/vnd.microsoft.icon", true, "image/bmp"},
- {":/image_bmp", "application/rdf+xml", false, 0},
- {":/image_bmp", "application/rdf+xml", true, 0},
- {":/image_bmp", "application/rss+xml", false, 0},
- {":/image_bmp", "application/rss+xml", true, 0},
- {":/image_bmp", "application/atom+xml", false, 0},
- {":/image_bmp", "application/atom+xml", true, 0},
- {":/image_gif", "text/plain", false, "image/gif"},
- {":/image_gif", "text/plain", true, "image/gif"},
- {":/image_gif", "unknown/unknown", false, "image/gif"},
- {":/image_gif", "unknown/unknown", true, "image/gif"},
- {":/image_gif", "application/unknown", false, "image/gif"},
- {":/image_gif", "application/unknown", true, "image/gif"},
- {":/image_gif", "*/*", false, "image/gif"},
- {":/image_gif", "*/*", true, "image/gif"},
- {":/image_gif", "text/xml", false, 0},
- {":/image_gif", "text/xml", true, 0},
- {":/image_gif", "application/xml", false, 0},
- {":/image_gif", "application/xml", true, 0},
- {":/image_gif", "text/html", false, 0},
- {":/image_gif", "text/html", true, "image/gif"},
- {":/image_gif", "text/xml", false, 0},
- {":/image_gif", "text/xml", true, 0},
- {":/image_gif", "application/pdf", false, 0},
- {":/image_gif", "application/pdf", true, "image/gif"},
- {":/image_gif", "application/postscript", false, 0},
- {":/image_gif", "application/postscript", true, "image/gif"},
- {":/image_gif", "application/ogg", false, 0},
- {":/image_gif", "application/ogg", true, "image/gif"},
- {":/image_gif", "video/webm", false, 0},
- {":/image_gif", "video/webm", true, "image/gif"},
- {":/image_gif", "application/x-rar-compressed", false, 0},
- {":/image_gif", "application/x-rar-compressed", true, "image/gif"},
- {":/image_gif", "application/zip", false, 0},
- {":/image_gif", "application/zip", true, "image/gif"},
- {":/image_gif", "application/x-gzip", false, 0},
- {":/image_gif", "application/x-gzip", true, "image/gif"},
- {":/image_gif", "audio/x-wave", false, 0},
- {":/image_gif", "audio/x-wave", true, "image/gif"},
- {":/image_gif", "image/webp", false, 0},
- {":/image_gif", "image/webp", true, "image/gif"},
- {":/image_gif", "image/gif", false, 0},
- {":/image_gif", "image/gif", true, "image/gif"},
- {":/image_gif", "image/png", false, 0},
- {":/image_gif", "image/png", true, "image/gif"},
- {":/image_gif", "image/jpeg", false, 0},
- {":/image_gif", "image/jpeg", true, "image/gif"},
- {":/image_gif", "image/bmp", false, 0},
- {":/image_gif", "image/bmp", true, "image/gif"},
- {":/image_gif", "image/vnd.microsoft.icon", false, 0},
- {":/image_gif", "image/vnd.microsoft.icon", true, "image/gif"},
- {":/image_gif", "application/rdf+xml", false, 0},
- {":/image_gif", "application/rdf+xml", true, 0},
- {":/image_gif", "application/rss+xml", false, 0},
- {":/image_gif", "application/rss+xml", true, 0},
- {":/image_gif", "application/atom+xml", false, 0},
- {":/image_gif", "application/atom+xml", true, 0},
- {":/image_jpeg", "text/plain", false, "image/jpeg"},
- {":/image_jpeg", "text/plain", true, "image/jpeg"},
- {":/image_jpeg", "unknown/unknown", false, "image/jpeg"},
- {":/image_jpeg", "unknown/unknown", true, "image/jpeg"},
- {":/image_jpeg", "application/unknown", false, "image/jpeg"},
- {":/image_jpeg", "application/unknown", true, "image/jpeg"},
- {":/image_jpeg", "*/*", false, "image/jpeg"},
- {":/image_jpeg", "*/*", true, "image/jpeg"},
- {":/image_jpeg", "text/xml", false, 0},
- {":/image_jpeg", "text/xml", true, 0},
- {":/image_jpeg", "application/xml", false, 0},
- {":/image_jpeg", "application/xml", true, 0},
- {":/image_jpeg", "text/html", false, 0},
- {":/image_jpeg", "text/html", true, "image/jpeg"},
- {":/image_jpeg", "text/xml", false, 0},
- {":/image_jpeg", "text/xml", true, 0},
- {":/image_jpeg", "application/pdf", false, 0},
- {":/image_jpeg", "application/pdf", true, "image/jpeg"},
- {":/image_jpeg", "application/postscript", false, 0},
- {":/image_jpeg", "application/postscript", true, "image/jpeg"},
- {":/image_jpeg", "application/ogg", false, 0},
- {":/image_jpeg", "application/ogg", true, "image/jpeg"},
- {":/image_jpeg", "video/webm", false, 0},
- {":/image_jpeg", "video/webm", true, "image/jpeg"},
- {":/image_jpeg", "application/x-rar-compressed", false, 0},
- {":/image_jpeg", "application/x-rar-compressed", true, "image/jpeg"},
- {":/image_jpeg", "application/zip", false, 0},
- {":/image_jpeg", "application/zip", true, "image/jpeg"},
- {":/image_jpeg", "application/x-gzip", false, 0},
- {":/image_jpeg", "application/x-gzip", true, "image/jpeg"},
- {":/image_jpeg", "audio/x-wave", false, 0},
- {":/image_jpeg", "audio/x-wave", true, "image/jpeg"},
- {":/image_jpeg", "image/webp", false, 0},
- {":/image_jpeg", "image/webp", true, "image/jpeg"},
- {":/image_jpeg", "image/gif", false, 0},
- {":/image_jpeg", "image/gif", true, "image/jpeg"},
- {":/image_jpeg", "image/png", false, 0},
- {":/image_jpeg", "image/png", true, "image/jpeg"},
- {":/image_jpeg", "image/jpeg", false, 0},
- {":/image_jpeg", "image/jpeg", true, "image/jpeg"},
- {":/image_jpeg", "image/bmp", false, 0},
- {":/image_jpeg", "image/bmp", true, "image/jpeg"},
- {":/image_jpeg", "image/vnd.microsoft.icon", false, 0},
- {":/image_jpeg", "image/vnd.microsoft.icon", true, "image/jpeg"},
- {":/image_jpeg", "application/rdf+xml", false, 0},
- {":/image_jpeg", "application/rdf+xml", true, 0},
- {":/image_jpeg", "application/rss+xml", false, 0},
- {":/image_jpeg", "application/rss+xml", true, 0},
- {":/image_jpeg", "application/atom+xml", false, 0},
- {":/image_jpeg", "application/atom+xml", true, 0},
- {":/image_png", "text/plain", false, "image/png"},
- {":/image_png", "text/plain", true, "image/png"},
- {":/image_png", "unknown/unknown", false, "image/png"},
- {":/image_png", "unknown/unknown", true, "image/png"},
- {":/image_png", "application/unknown", false, "image/png"},
- {":/image_png", "application/unknown", true, "image/png"},
- {":/image_png", "*/*", false, "image/png"},
- {":/image_png", "*/*", true, "image/png"},
- {":/image_png", "text/xml", false, 0},
- {":/image_png", "text/xml", true, 0},
- {":/image_png", "application/xml", false, 0},
- {":/image_png", "application/xml", true, 0},
- {":/image_png", "text/html", false, 0},
- {":/image_png", "text/html", true, "image/png"},
- {":/image_png", "text/xml", false, 0},
- {":/image_png", "text/xml", true, 0},
- {":/image_png", "application/pdf", false, 0},
- {":/image_png", "application/pdf", true, "image/png"},
- {":/image_png", "application/postscript", false, 0},
- {":/image_png", "application/postscript", true, "image/png"},
- {":/image_png", "application/ogg", false, 0},
- {":/image_png", "application/ogg", true, "image/png"},
- {":/image_png", "video/webm", false, 0},
- {":/image_png", "video/webm", true, "image/png"},
- {":/image_png", "application/x-rar-compressed", false, 0},
- {":/image_png", "application/x-rar-compressed", true, "image/png"},
- {":/image_png", "application/zip", false, 0},
- {":/image_png", "application/zip", true, "image/png"},
- {":/image_png", "application/x-gzip", false, 0},
- {":/image_png", "application/x-gzip", true, "image/png"},
- {":/image_png", "audio/x-wave", false, 0},
- {":/image_png", "audio/x-wave", true, "image/png"},
- {":/image_png", "image/webp", false, 0},
- {":/image_png", "image/webp", true, "image/png"},
- {":/image_png", "image/gif", false, 0},
- {":/image_png", "image/gif", true, "image/png"},
- {":/image_png", "image/png", false, 0},
- {":/image_png", "image/png", true, "image/png"},
- {":/image_png", "image/jpeg", false, 0},
- {":/image_png", "image/jpeg", true, "image/png"},
- {":/image_png", "image/bmp", false, 0},
- {":/image_png", "image/bmp", true, "image/png"},
- {":/image_png", "image/vnd.microsoft.icon", false, 0},
- {":/image_png", "image/vnd.microsoft.icon", true, "image/png"},
- {":/image_png", "application/rdf+xml", false, 0},
- {":/image_png", "application/rdf+xml", true, 0},
- {":/image_png", "application/rss+xml", false, 0},
- {":/image_png", "application/rss+xml", true, 0},
- {":/image_png", "application/atom+xml", false, 0},
- {":/image_png", "application/atom+xml", true, 0},
- {":/image_vnd.microsoft.icon", "text/plain", false, "image/vnd.microsoft.icon"},
- {":/image_vnd.microsoft.icon", "text/plain", true, "image/vnd.microsoft.icon"},
- {":/image_vnd.microsoft.icon", "unknown/unknown", false, "image/vnd.microsoft.icon"},
- {":/image_vnd.microsoft.icon", "unknown/unknown", true, "image/vnd.microsoft.icon"},
- {":/image_vnd.microsoft.icon", "application/unknown", false, "image/vnd.microsoft.icon"},
- {":/image_vnd.microsoft.icon", "application/unknown", true, "image/vnd.microsoft.icon"},
- {":/image_vnd.microsoft.icon", "*/*", false, "image/vnd.microsoft.icon"},
- {":/image_vnd.microsoft.icon", "*/*", true, "image/vnd.microsoft.icon"},
- {":/image_vnd.microsoft.icon", "text/xml", false, 0},
- {":/image_vnd.microsoft.icon", "text/xml", true, 0},
- {":/image_vnd.microsoft.icon", "application/xml", false, 0},
- {":/image_vnd.microsoft.icon", "application/xml", true, 0},
- {":/image_vnd.microsoft.icon", "text/html", false, 0},
- {":/image_vnd.microsoft.icon", "text/html", true, "image/vnd.microsoft.icon"},
- {":/image_vnd.microsoft.icon", "text/xml", false, 0},
- {":/image_vnd.microsoft.icon", "text/xml", true, 0},
- {":/image_vnd.microsoft.icon", "application/pdf", false, 0},
- {":/image_vnd.microsoft.icon", "application/pdf", true, "image/vnd.microsoft.icon"},
- {":/image_vnd.microsoft.icon", "application/postscript", false, 0},
- {":/image_vnd.microsoft.icon", "application/postscript", true, "image/vnd.microsoft.icon"},
- {":/image_vnd.microsoft.icon", "application/ogg", false, 0},
- {":/image_vnd.microsoft.icon", "application/ogg", true, "image/vnd.microsoft.icon"},
- {":/image_vnd.microsoft.icon", "video/webm", false, 0},
- {":/image_vnd.microsoft.icon", "video/webm", true, "image/vnd.microsoft.icon"},
- {":/image_vnd.microsoft.icon", "application/x-rar-compressed", false, 0},
- {":/image_vnd.microsoft.icon", "application/x-rar-compressed", true, "image/vnd.microsoft.icon"},
- {":/image_vnd.microsoft.icon", "application/zip", false, 0},
- {":/image_vnd.microsoft.icon", "application/zip", true, "image/vnd.microsoft.icon"},
- {":/image_vnd.microsoft.icon", "application/x-gzip", false, 0},
- {":/image_vnd.microsoft.icon", "application/x-gzip", true, "image/vnd.microsoft.icon"},
- {":/image_vnd.microsoft.icon", "audio/x-wave", false, 0},
- {":/image_vnd.microsoft.icon", "audio/x-wave", true, "image/vnd.microsoft.icon"},
- {":/image_vnd.microsoft.icon", "image/webp", false, 0},
- {":/image_vnd.microsoft.icon", "image/webp", true, "image/vnd.microsoft.icon"},
- {":/image_vnd.microsoft.icon", "image/gif", false, 0},
- {":/image_vnd.microsoft.icon", "image/gif", true, "image/vnd.microsoft.icon"},
- {":/image_vnd.microsoft.icon", "image/png", false, 0},
- {":/image_vnd.microsoft.icon", "image/png", true, "image/vnd.microsoft.icon"},
- {":/image_vnd.microsoft.icon", "image/jpeg", false, 0},
- {":/image_vnd.microsoft.icon", "image/jpeg", true, "image/vnd.microsoft.icon"},
- {":/image_vnd.microsoft.icon", "image/bmp", false, 0},
- {":/image_vnd.microsoft.icon", "image/bmp", true, "image/vnd.microsoft.icon"},
- {":/image_vnd.microsoft.icon", "image/vnd.microsoft.icon", false, 0},
- {":/image_vnd.microsoft.icon", "image/vnd.microsoft.icon", true, "image/vnd.microsoft.icon"},
- {":/image_vnd.microsoft.icon", "application/rdf+xml", false, 0},
- {":/image_vnd.microsoft.icon", "application/rdf+xml", true, 0},
- {":/image_vnd.microsoft.icon", "application/rss+xml", false, 0},
- {":/image_vnd.microsoft.icon", "application/rss+xml", true, 0},
- {":/image_vnd.microsoft.icon", "application/atom+xml", false, 0},
- {":/image_vnd.microsoft.icon", "application/atom+xml", true, 0},
- {":/image_webp", "text/plain", false, "image/webp"},
- {":/image_webp", "text/plain", true, "image/webp"},
- {":/image_webp", "unknown/unknown", false, "image/webp"},
- {":/image_webp", "unknown/unknown", true, "image/webp"},
- {":/image_webp", "application/unknown", false, "image/webp"},
- {":/image_webp", "application/unknown", true, "image/webp"},
- {":/image_webp", "*/*", false, "image/webp"},
- {":/image_webp", "*/*", true, "image/webp"},
- {":/image_webp", "text/xml", false, 0},
- {":/image_webp", "text/xml", true, 0},
- {":/image_webp", "application/xml", false, 0},
- {":/image_webp", "application/xml", true, 0},
- {":/image_webp", "text/html", false, 0},
- {":/image_webp", "text/html", true, "image/webp"},
- {":/image_webp", "text/xml", false, 0},
- {":/image_webp", "text/xml", true, 0},
- {":/image_webp", "application/pdf", false, 0},
- {":/image_webp", "application/pdf", true, "image/webp"},
- {":/image_webp", "application/postscript", false, 0},
- {":/image_webp", "application/postscript", true, "image/webp"},
- {":/image_webp", "application/ogg", false, 0},
- {":/image_webp", "application/ogg", true, "image/webp"},
- {":/image_webp", "video/webm", false, 0},
- {":/image_webp", "video/webm", true, "image/webp"},
- {":/image_webp", "application/x-rar-compressed", false, 0},
- {":/image_webp", "application/x-rar-compressed", true, "image/webp"},
- {":/image_webp", "application/zip", false, 0},
- {":/image_webp", "application/zip", true, "image/webp"},
- {":/image_webp", "application/x-gzip", false, 0},
- {":/image_webp", "application/x-gzip", true, "image/webp"},
- {":/image_webp", "audio/x-wave", false, 0},
- {":/image_webp", "audio/x-wave", true, "image/webp"},
- {":/image_webp", "image/webp", false, 0},
- {":/image_webp", "image/webp", true, "image/webp"},
- {":/image_webp", "image/gif", false, 0},
- {":/image_webp", "image/gif", true, "image/webp"},
- {":/image_webp", "image/png", false, 0},
- {":/image_webp", "image/png", true, "image/webp"},
- {":/image_webp", "image/jpeg", false, 0},
- {":/image_webp", "image/jpeg", true, "image/webp"},
- {":/image_webp", "image/bmp", false, 0},
- {":/image_webp", "image/bmp", true, "image/webp"},
- {":/image_webp", "image/vnd.microsoft.icon", false, 0},
- {":/image_webp", "image/vnd.microsoft.icon", true, "image/webp"},
- {":/image_webp", "application/rdf+xml", false, 0},
- {":/image_webp", "application/rdf+xml", true, 0},
- {":/image_webp", "application/rss+xml", false, 0},
- {":/image_webp", "application/rss+xml", true, 0},
- {":/image_webp", "application/atom+xml", false, 0},
- {":/image_webp", "application/atom+xml", true, 0},
- {":/text_html", "text/plain", false, "text/plain"},
- {":/text_html", "text/plain", true, "text/plain"},
- {":/text_html", "unknown/unknown", false, "text/html"},
- {":/text_html", "unknown/unknown", true, "text/html"},
- {":/text_html", "application/unknown", false, "text/html"},
- {":/text_html", "application/unknown", true, "text/html"},
- {":/text_html", "*/*", false, "text/html"},
- {":/text_html", "*/*", true, "text/html"},
- {":/text_html", "text/xml", false, 0},
- {":/text_html", "text/xml", true, 0},
- {":/text_html", "application/xml", false, 0},
- {":/text_html", "application/xml", true, 0},
- {":/text_html", "text/html", false, 0},
- {":/text_html", "text/html", true, 0},
- {":/text_html", "text/xml", false, 0},
- {":/text_html", "text/xml", true, 0},
- {":/text_html", "application/pdf", false, 0},
- {":/text_html", "application/pdf", true, 0},
- {":/text_html", "application/postscript", false, 0},
- {":/text_html", "application/postscript", true, 0},
- {":/text_html", "application/ogg", false, 0},
- {":/text_html", "application/ogg", true, 0},
- {":/text_html", "video/webm", false, 0},
- {":/text_html", "video/webm", true, 0},
- {":/text_html", "application/x-rar-compressed", false, 0},
- {":/text_html", "application/x-rar-compressed", true, 0},
- {":/text_html", "application/zip", false, 0},
- {":/text_html", "application/zip", true, 0},
- {":/text_html", "application/x-gzip", false, 0},
- {":/text_html", "application/x-gzip", true, 0},
- {":/text_html", "audio/x-wave", false, 0},
- {":/text_html", "audio/x-wave", true, 0},
- {":/text_html", "image/webp", false, 0},
- {":/text_html", "image/webp", true, 0},
- {":/text_html", "image/gif", false, 0},
- {":/text_html", "image/gif", true, 0},
- {":/text_html", "image/png", false, 0},
- {":/text_html", "image/png", true, 0},
- {":/text_html", "image/jpeg", false, 0},
- {":/text_html", "image/jpeg", true, 0},
- {":/text_html", "image/bmp", false, 0},
- {":/text_html", "image/bmp", true, 0},
- {":/text_html", "image/vnd.microsoft.icon", false, 0},
- {":/text_html", "image/vnd.microsoft.icon", true, 0},
- {":/text_html", "application/rdf+xml", false, 0},
- {":/text_html", "application/rdf+xml", true, 0},
- {":/text_html", "application/rss+xml", false, 0},
- {":/text_html", "application/rss+xml", true, 0},
- {":/text_html", "application/atom+xml", false, 0},
- {":/text_html", "application/atom+xml", true, 0},
- {":/text_xml", "text/plain", false, "text/plain"},
- {":/text_xml", "text/plain", true, "text/plain"},
- {":/text_xml", "unknown/unknown", false, "text/xml"},
- {":/text_xml", "unknown/unknown", true, "text/xml"},
- {":/text_xml", "application/unknown", false, "text/xml"},
- {":/text_xml", "application/unknown", true, "text/xml"},
- {":/text_xml", "*/*", false, "text/xml"},
- {":/text_xml", "*/*", true, "text/xml"},
- {":/text_xml", "text/xml", false, 0},
- {":/text_xml", "text/xml", true, 0},
- {":/text_xml", "application/xml", false, 0},
- {":/text_xml", "application/xml", true, 0},
- {":/text_xml", "text/html", false, 0},
- {":/text_xml", "text/html", true, 0},
- {":/text_xml", "text/xml", false, 0},
- {":/text_xml", "text/xml", true, 0},
- {":/text_xml", "application/pdf", false, 0},
- {":/text_xml", "application/pdf", true, 0},
- {":/text_xml", "application/postscript", false, 0},
- {":/text_xml", "application/postscript", true, 0},
- {":/text_xml", "application/ogg", false, 0},
- {":/text_xml", "application/ogg", true, 0},
- {":/text_xml", "video/webm", false, 0},
- {":/text_xml", "video/webm", true, 0},
- {":/text_xml", "application/x-rar-compressed", false, 0},
- {":/text_xml", "application/x-rar-compressed", true, 0},
- {":/text_xml", "application/zip", false, 0},
- {":/text_xml", "application/zip", true, 0},
- {":/text_xml", "application/x-gzip", false, 0},
- {":/text_xml", "application/x-gzip", true, 0},
- {":/text_xml", "audio/x-wave", false, 0},
- {":/text_xml", "audio/x-wave", true, 0},
- {":/text_xml", "image/webp", false, 0},
- {":/text_xml", "image/webp", true, 0},
- {":/text_xml", "image/gif", false, 0},
- {":/text_xml", "image/gif", true, 0},
- {":/text_xml", "image/png", false, 0},
- {":/text_xml", "image/png", true, 0},
- {":/text_xml", "image/jpeg", false, 0},
- {":/text_xml", "image/jpeg", true, 0},
- {":/text_xml", "image/bmp", false, 0},
- {":/text_xml", "image/bmp", true, 0},
- {":/text_xml", "image/vnd.microsoft.icon", false, 0},
- {":/text_xml", "image/vnd.microsoft.icon", true, 0},
- {":/text_xml", "application/rdf+xml", false, 0},
- {":/text_xml", "application/rdf+xml", true, 0},
- {":/text_xml", "application/rss+xml", false, 0},
- {":/text_xml", "application/rss+xml", true, 0},
- {":/text_xml", "application/atom+xml", false, 0},
- {":/text_xml", "application/atom+xml", true, 0},
- {":/video_webm", "text/plain", false, "video/webm"},
- {":/video_webm", "text/plain", true, "video/webm"},
- {":/video_webm", "unknown/unknown", false, "video/webm"},
- {":/video_webm", "unknown/unknown", true, "video/webm"},
- {":/video_webm", "application/unknown", false, "video/webm"},
- {":/video_webm", "application/unknown", true, "video/webm"},
- {":/video_webm", "*/*", false, "video/webm"},
- {":/video_webm", "*/*", true, "video/webm"},
- {":/video_webm", "text/xml", false, 0},
- {":/video_webm", "text/xml", true, 0},
- {":/video_webm", "application/xml", false, 0},
- {":/video_webm", "application/xml", true, 0},
- {":/video_webm", "text/html", false, 0},
- {":/video_webm", "text/html", true, 0},
- {":/video_webm", "text/xml", false, 0},
- {":/video_webm", "text/xml", true, 0},
- {":/video_webm", "application/pdf", false, 0},
- {":/video_webm", "application/pdf", true, 0},
- {":/video_webm", "application/postscript", false, 0},
- {":/video_webm", "application/postscript", true, 0},
- {":/video_webm", "application/ogg", false, 0},
- {":/video_webm", "application/ogg", true, 0},
- {":/video_webm", "video/webm", false, 0},
- {":/video_webm", "video/webm", true, 0},
- {":/video_webm", "application/x-rar-compressed", false, 0},
- {":/video_webm", "application/x-rar-compressed", true, 0},
- {":/video_webm", "application/zip", false, 0},
- {":/video_webm", "application/zip", true, 0},
- {":/video_webm", "application/x-gzip", false, 0},
- {":/video_webm", "application/x-gzip", true, 0},
- {":/video_webm", "audio/x-wave", false, 0},
- {":/video_webm", "audio/x-wave", true, 0},
- {":/video_webm", "image/webp", false, 0},
- {":/video_webm", "image/webp", true, 0},
- {":/video_webm", "image/gif", false, 0},
- {":/video_webm", "image/gif", true, 0},
- {":/video_webm", "image/png", false, 0},
- {":/video_webm", "image/png", true, 0},
- {":/video_webm", "image/jpeg", false, 0},
- {":/video_webm", "image/jpeg", true, 0},
- {":/video_webm", "image/bmp", false, 0},
- {":/video_webm", "image/bmp", true, 0},
- {":/video_webm", "image/vnd.microsoft.icon", false, 0},
- {":/video_webm", "image/vnd.microsoft.icon", true, 0},
- {":/video_webm", "application/rdf+xml", false, 0},
- {":/video_webm", "application/rdf+xml", true, 0},
- {":/video_webm", "application/rss+xml", false, 0},
- {":/video_webm", "application/rss+xml", true, 0},
- {":/video_webm", "application/atom+xml", false, 0},
- {":/video_webm", "application/atom+xml", true, 0}
-};
-static const size_t testListSize = sizeof(testList) / sizeof(testList[0]);
-
-#endif // TestData_h
diff --git a/Source/WebKit/qt/tests/MIMESniffing/resources.qrc b/Source/WebKit/qt/tests/MIMESniffing/resources.qrc
deleted file mode 100644
index b4afb321e..000000000
--- a/Source/WebKit/qt/tests/MIMESniffing/resources.qrc
+++ /dev/null
@@ -1,23 +0,0 @@
-<RCC>
- <qresource prefix="/">
- <file alias="application_atom+xml">resources/application_atom+xml</file>
- <file alias="application_ogg">resources/application_ogg</file>
- <file alias="application_pdf">resources/application_pdf</file>
- <file alias="application_postscript">resources/application_postscript</file>
- <file alias="application_rdf+xml">resources/application_rdf+xml</file>
- <file alias="application_rss+xml">resources/application_rss+xml</file>
- <file alias="application_x-gzip">resources/application_x-gzip</file>
- <file alias="application_x-rar-compressed">resources/application_x-rar-compressed</file>
- <file alias="application_zip">resources/application_zip</file>
- <file alias="audio_x-wave">resources/audio_x-wave</file>
- <file alias="image_bmp">resources/image_bmp</file>
- <file alias="image_gif">resources/image_gif</file>
- <file alias="image_jpeg">resources/image_jpeg</file>
- <file alias="image_png">resources/image_png</file>
- <file alias="image_vnd.microsoft.icon">resources/image_vnd.microsoft.icon</file>
- <file alias="image_webp">resources/image_webp</file>
- <file alias="text_html">resources/text_html</file>
- <file alias="text_xml">resources/text_xml</file>
- <file alias="video_webm">resources/video_webm</file>
- </qresource>
-</RCC>
diff --git a/Source/WebKit/qt/tests/MIMESniffing/resources/application_atom+xml b/Source/WebKit/qt/tests/MIMESniffing/resources/application_atom+xml
deleted file mode 100644
index 54086a7be..000000000
--- a/Source/WebKit/qt/tests/MIMESniffing/resources/application_atom+xml
+++ /dev/null
@@ -1,17 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<feed xmlns="http://www.w3.org/2005/Atom">
- <title>Example Feed</title>
- <link href="http://example.org/"/>
- <updated>2003-12-13T18:30:02Z</updated>
- <author>
- <name>John Doe</name>
- </author>
- <id>urn:uuid:60a76c80-d399-11d9-b93C-0003939e0af6</id>
- <entry>
- <title>Atom-Powered Robots Run Amok</title>
- <link href="http://example.org/2003/12/13/atom03"/>
- <id>urn:uuid:1225c695-cfb8-4ebb-aaaa-80da344efa6a</id>
- <updated>2003-12-13T18:30:02Z</updated>
- <summary>Some text.</summary>
- </entry>
-</feed>
diff --git a/Source/WebKit/qt/tests/MIMESniffing/resources/application_ogg b/Source/WebKit/qt/tests/MIMESniffing/resources/application_ogg
deleted file mode 100644
index b9cc1b291..000000000
--- a/Source/WebKit/qt/tests/MIMESniffing/resources/application_ogg
+++ /dev/null
Binary files differ
diff --git a/Source/WebKit/qt/tests/MIMESniffing/resources/application_pdf b/Source/WebKit/qt/tests/MIMESniffing/resources/application_pdf
deleted file mode 100644
index 7f8996f6a..000000000
--- a/Source/WebKit/qt/tests/MIMESniffing/resources/application_pdf
+++ /dev/null
Binary files differ
diff --git a/Source/WebKit/qt/tests/MIMESniffing/resources/application_postscript b/Source/WebKit/qt/tests/MIMESniffing/resources/application_postscript
deleted file mode 100644
index c4b9ae6cb..000000000
--- a/Source/WebKit/qt/tests/MIMESniffing/resources/application_postscript
+++ /dev/null
@@ -1,137 +0,0 @@
-%!PS-Adobe-2.0 EPSF-1.2
-%%Creator: HiJaak 2.1
-%%CreationDate: 12/29/93 13:52:08
-%%BoundingBox:126 216 486 576
-%%EndComments
-/ld {load def} bind def
-/s /stroke ld /f /fill ld /m /moveto ld /l /lineto ld /c /curveto ld /rgb {255 div 3 1 roll 255 div 3 1 roll 255 div 3 1 roll setrgbcolor} def
-126 216 translate
-360.0000 360.0000 scale
-/picstr 124 string def
-124 124 8 [124 0 0 -124 0 124] {currentfile picstr readhexstring pop} image
-65656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565ADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADAD1B1B1B1B1B1B1B1B1B1BFF
-65656565656565656565656565656565656565656565656565656565656565006565656565006565656500656565656565000000656565656565656565656565656565656565656565656565656565656565ADADAD00ADADAD000000ADAD00ADADADADAD00AD00ADADADAD00ADADADAD00000000001B1B001B1B1BFF
-65656565656565656565656565656565656565656565656565656565656565000065656500006565650065006565656500656565006565656565656565656565656565656565656565656565656565656565ADADAD00ADAD00ADADAD00ADAD00ADADAD00ADAD0000ADADAD00ADADADAD001B1B1B1B001B001B1B1BFF
-65656565656565656565656565656565656565656565656565656565656565000065656500006565650065006565650065656565650065656565656565656565656565656565656565656565656565656565ADADAD00AD00ADADADADADADAD00ADADAD00ADAD00AD00ADAD00ADADADAD001B1B1B1B001B001B1B1BFF
-65656565656565656565656565656565656565656565656565656565656565006500650065006565650065006565650065656565656565656565656565656565656565656565656565656565656565656565ADADAD00AD00ADADADADADADADAD00AD00ADADAD00AD00ADAD00ADADADAD00000000001B1B001B1B1BFF
-65656565656565656565656565656565656565656565656565656565656565006500650065006565006565650065650065656500000065656565656565656565656565656565656565656565656565656565ADADAD00AD00ADADADADADADADADAD00ADADADAD00ADAD00AD00ADADADAD001B1B1B1B001B001B1B1BFF
-65656565656565656565656565656565656565656565656565656565656565006500650065006565000000000065650065656565650065656565656565656565656565656565656565656565656565656565ADADAD00AD00ADADADADADADADADAD00ADADADAD00ADAD00AD00ADADADAD001B1B1B1B001B001B1B1BFF
-65656565656565656565656565656565656565656565656565656565656565006565006565006500656565656500656500656565006565656565656565656565656565656565656565656565656565656565ADADAD00ADAD00ADADAD00ADADADAD00ADADADAD00ADADAD0000ADADADAD001B1B1B1B001B001B1B1BFF
-65656565656565656565656565656565656565656565656565656565656565006565006565006500656565656500656565000000656565656565656565656565656565656565656565656565656565656565ADADAD00ADADAD000000ADADADADAD00ADADADAD00ADADADAD00ADADADAD00000000001B1B00000000FF
-65656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565ADADAD00ADADADADADADADADADADADADADADADADADADADADADADADADADADAD1B1B1B1B1B1B1B1B1B1BFF
-65656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565ADADAD00ADADADADADADADADADADADADADADADADADADADADADADADADADADAD1B1B1B1B1B1B1B1B1B1BFF
-DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC92929292929292929292929292929292929292929292929292929292929292ADADADADADADADADADADFF
-DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC92929292929292929292929292929292929292929292929292929292929292ADADADADADADADADADADFF
-DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC92929292929292929292929292929292929292929292929292929292929292ADADADADADADADADADADFF
-DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC92929292929292929292929292929292929292929292929292929292929292ADADADADADADADADADADFF
-DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC92929292929292929292929292929292929292929292929292929292929292ADADADADADADADADADADFF
-DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC92929292929292929292929292929292929292929292929292929292929292ADADADADADADADADADADFF
-DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC92929292929292929292929292929292929292929292929292929292929292ADADADADADADADADADADFF
-DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC92929292929292929292929292929292929292929292929292929292929292ADADADADADADADADADADFF
-DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC92929292929292929292929292929292929292929292929292929292929292ADADADADADADADADADADFF
-DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC0000DCDC0000DC0000000000DC0000DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC92929292929292000000009292000000000092920000929200009292929292ADADADAD00000000ADADFF
-DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC0000DCDC0000DC0000DCDCDCDC0000DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC92929292929200009292000092000092920000920000929200009292929292ADADAD0000ADAD0000ADFF
-DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC00DCDC00DCDC0000DCDCDCDC0000DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC92929292920000929292929292000092920000920000009200009292929292ADAD0000ADADADADADADFF
-DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC00000000DCDC0000000000DC0000DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC92929292920000929292929292000092920000920000009200009292929292ADAD0000ADADADADADADFF
-DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC0000DCDCDC0000DCDCDCDC0000DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC92929292920000929200000092000000000092920000920000009292929292ADAD0000ADADADADADADFF
-DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC0000DCDCDC0000DCDCDCDC0000DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC92929292920000929292000092000092000092920000920000009292929292ADAD0000ADADADADADADFF
-DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC0000DCDCDC0000DCDCDCDC0000DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC92929292929200009292000092000092920000920000929200009292929292ADADAD0000ADAD0000ADFF
-DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC0000DCDCDC0000000000DC000000000000DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC92929292929292000000009292000092929200000000929200009292929292ADADADAD00000000ADADFF
-DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC92929292929292929292929292929292929292929292929292929292929292ADADADADADADADADADADFF
-DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC92929292929292929292929292929292929292929292929292929292929292ADADADADADADADADADADFF
-DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC92929292929292929292929292929292929292929292929292929292929292ADADADADADADADADADADFF
-DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC92929292929292929292929292929292929292929292929292929292929292ADADADADADADADADADADFF
-DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC92929292929292929292929292929292929292929292929292929292929292ADADADADADADADADADADFF
-DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC92929292929292929292929292929292929292929292929292929292929292ADADADADADADADADADADFF
-DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC92929292929292929292929292929292929292929292929292929292929292ADADADADADADADADADADFF
-DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC92929292929292929292929292929292929292929292929292929292929292ADADADADADADADADADADFF
-DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC92929292929292929292929292929292929292929292929292929292929292ADADADADADADADADADADFF
-DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC92929292929292929292929292929292929292929292929292929292929292ADADADADADADADADADADFF
-DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC92929292929292929292929292929292929292929292929292929292929292ADADADADADADADADADADFF
-DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC92929292929292929292929292929292929292929292929292929292929292ADADADADADADADADADADFF
-DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC92929292929292929292929292929292929292929292929292929292929292ADADADADADADADADADADFF
-DCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC92929292929292929292929292929292929292929292929292929292929292ADADADADADADADADADADFF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A00000000004A4A00000000004A00000000004A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDC0000DCDC0000DC0000000000DC0000DCDCDCDCDCDCDCDCDCDCDC00000065656500000065FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A00004A4A00004A00004A4A4A4A00004A4A00004A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDC0000DCDC0000DC0000DCDCDCDC0000DCDCDCDCDCDCDCDCDCDCDC00000065656500000065FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A00004A4A00004A00004A4A4A4A00004A4A00004A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDC00DCDC00DCDC0000DCDCDCDC0000DCDCDCDCDCDCDCDCDCDCDC00000000650000000065FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A00004A4A00004A00000000004A00004A4A00004A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDC00000000DCDC0000000000DC0000DCDCDCDCDCDCDCDCDCDCDC00000000650000000065FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A00000000004A4A00004A4A4A4A00004A4A00004A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDC0000DCDCDC0000DCDCDCDC0000DCDCDCDCDCDCDCDCDCDCDC00006500650065000065FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A00004A00004A4A00004A4A4A4A00004A4A00004A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDC0000DCDCDC0000DCDCDCDC0000DCDCDCDCDCDCDCDCDCDCDC00006500000065000065FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A00004A4A00004A00004A4A4A4A00004A4A00004A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDC0000DCDCDC0000DCDCDCDC0000DCDCDCDCDCDCDCDCDCDCDC00006500000065000065FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A00004A4A4A000000000000004A00000000004A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDC0000DCDCDC0000000000DC000000000000DCDCDCDCDCDCDC00006565006565000065FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A00000000004A4A4A4A0000004A4A4A00000000004A4A4A4A004A4A4A4A4A00000000004A00000000004A00000000004A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A004A4A4A4A004A4A004A4A4A004A4A4A4A004A4A4A4A4A4A004A4A4A4A4A004A4A4A4A4A004A4A4A4A4A4A4A004A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A004A4A4A4A004A004A4A4A4A4A004A4A4A004A4A4A4A4A4A004A4A4A4A4A004A4A4A4A4A004A4A4A4A4A4A4A004A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A00000000004A4A004A4A4A4A4A004A4A4A004A4A4A4A4A4A004A4A4A4A4A00000000004A000000004A4A4A4A004A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A004A4A4A4A004A004A4A4A4A4A004A4A4A004A4A4A4A4A4A004A4A4A4A4A004A4A4A4A4A004A4A4A4A4A4A4A004A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A004A4A4A4A004A004A4A4A4A4A004A4A4A004A4A4A4A4A4A004A4A4A4A4A004A4A4A4A4A004A4A4A4A4A4A4A004A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A004A4A4A4A004A4A004A4A4A004A4A4A4A004A4A4A4A4A4A004A4A4A4A4A004A4A4A4A4A004A4A4A4A4A4A4A004A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A00000000004A4A4A4A0000004A4A4A4A4A004A4A4A4A4A4A00000000004A00000000004A004A4A4A4A4A4A4A004A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4A4ADCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDCDC65656565656565656565FF
-showpage
- \ No newline at end of file
diff --git a/Source/WebKit/qt/tests/MIMESniffing/resources/application_rdf+xml b/Source/WebKit/qt/tests/MIMESniffing/resources/application_rdf+xml
deleted file mode 100644
index e21414543..000000000
--- a/Source/WebKit/qt/tests/MIMESniffing/resources/application_rdf+xml
+++ /dev/null
@@ -1,50 +0,0 @@
-<?xml version="1.0"?>
-
-<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/">
-
- <channel rdf:about="http://www.xml.com/xml/news.rss">
- <title>XML.com</title>
- <link>http://xml.com/pub</link>
- <description>
- XML.com features a rich mix of information and services
- for the XML community.
- </description>
-
- <image rdf:resource="http://xml.com/universal/images/xml_tiny.gif" />
-
- <items>
- <rdf:Seq>
- <rdf:li resource="http://xml.com/pub/2000/08/09/xslt/xslt.html" />
- <rdf:li resource="http://xml.com/pub/2000/08/09/rdfdb/index.html" />
- </rdf:Seq>
- </items>
-
- </channel>
-
- <image rdf:about="http://xml.com/universal/images/xml_tiny.gif">
- <title>XML.com</title>
- <link>http://www.xml.com</link>
- <url>http://xml.com/universal/images/xml_tiny.gif</url>
- </image>
-
- <item rdf:about="http://xml.com/pub/2000/08/09/xslt/xslt.html">
- <title>Processing Inclusions with XSLT</title>
- <link>http://xml.com/pub/2000/08/09/xslt/xslt.html</link>
- <description>
- Processing document inclusions with general XML tools can be
- problematic. This article proposes a way of preserving inclusion
- information through SAX-based processing.
- </description>
- </item>
-
- <item rdf:about="http://xml.com/pub/2000/08/09/rdfdb/index.html">
- <title>Putting RDF to Work</title>
- <link>http://xml.com/pub/2000/08/09/rdfdb/index.html</link>
- <description>
- Tool and API support for the Resource Description Framework
- is slowly coming of age. Edd Dumbill takes a look at RDFDB,
- one of the most exciting new RDF toolkits.
- </description>
- </item>
-
-</rdf:RDF>
diff --git a/Source/WebKit/qt/tests/MIMESniffing/resources/application_rss+xml b/Source/WebKit/qt/tests/MIMESniffing/resources/application_rss+xml
deleted file mode 100644
index 3537c41c5..000000000
--- a/Source/WebKit/qt/tests/MIMESniffing/resources/application_rss+xml
+++ /dev/null
@@ -1,45 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1" ?>
-<rss version="0.91">
-<channel>
-
-<title>Folha.com - Ambiente - Principal</title>
-<link>http://redir.folha.com.br/redir/online/ambiente/rss091/*http://www1.folha.uol.com.br/ambiente/</link>
-<description>Primeiro jornal em tempo real em língua portuguesa</description>
-<language>pt-br</language>
-<copyright>Copyright Folha.com. Todos os direitos reservados.</copyright>
-<docs>http://redir.folha.com.br/redir/online/ambiente/rss091/*http://www1.folha.uol.com.br/folha/conheca/arquivo_e_copyright.shtml</docs>
-<webMaster>webmaster@grupofolha.com.br (Webmaster Folha.com)</webMaster>
-
-<image>
-<title>Folha.com - Ambiente - Principal</title>
-<url>http://www1.folha.uol.com.br/folha/images/lgo-folha_com-88x31.gif</url>
-<link>http://redir.folha.com.br/redir/online/ambiente/rss091/*http://www1.folha.uol.com.br/ambiente/</link>
-<width>88</width>
-<height>31</height>
-<description>Primeiro jornal em tempo real em língua portuguesa</description>
-</image>
-
-<item>
-<title>Nasa dimensiona danos da seca na Amazônia em 2,4 mi de km2</title>
-<link>http://redir.folha.com.br/redir/online/ambiente/rss091/*http://www1.folha.uol.com.br/ambiente/895526-nasa-dimensiona-danos-da-seca-na-amazonia-em-24-mi-de-km2.shtml</link>
-<description>
-Os satélites da Nasa (agência espacial americana) forneceram material para uma análise dos estragos provocados pela &lt;a href=&quot;http://www1.folha.uol.com.br/ambiente/870588-amazonia-teve-a-pior-seca-dos-ultimos-cem-anos.shtml&quot;&gt;pior seca a atingir a Amazônia em 2010&lt;/a&gt;.
-Pela tomada aérea, estima-se que foram 2,5 milhões de quilômetros quadrados afetados --pouco menos da metade do ecossistema amazônico.
-&lt;table class=&quot;articleGraphic&quot;&gt;
-&lt;tr&gt;
-&lt;td rowspan=&quot;3&quot; class=&quot;articleGraphicSpace&quot;&gt;&lt;/td&gt;
-&lt;td class=&quot;articleGraphicCredit&quot;&gt;Universidade de Boston/Nasa&lt;/td&gt;
-&lt;td rowspan=&quot;3&quot; class=&quot;articleGraphicSpace&quot;&gt;&lt;/td&gt;
-&lt;/tr&gt;
-&lt;tr&gt;
-&lt;td class=&quot;articleGraphicImage&quot;&gt;&lt;img src=&quot;http://f.i.uol.com.br/folha/ambiente/images/11090120.jpeg&quot; alt=&quot;Área (vermelho) mostra redução do índice do verdor, onde a vegetação ficou menos verde e mais seca&quot; border=&quot;0&quot; /&gt;&lt;/td&gt;
-&lt;/tr&gt;
-&lt;tr&gt;
-&lt;td class=&quot;articleGraphicCaption&quot;&gt;Área (vermelho) mostra redução do índice do verdor, onde a vegetação ficou menos verde e mais seca&lt;/td&gt;
-&lt;/tr&gt;
-&lt;/table&gt;
-&lt;a href=&quot;http://redir.folha.com.br/redir/online/ambiente/rss091/*http://www1.folha.uol.com.br/ambiente/895526-nasa-dimensiona-danos-da-seca-na-amazonia-em-24-mi-de-km2.shtml&quot;&gt;Leia mais&lt;/a&gt; (29/03/2011 - 18h04)</description>
-<pubDate>29 Mar 2011 18:04:00 -0300</pubDate>
-</item>
-</channel>
-</rss>
diff --git a/Source/WebKit/qt/tests/MIMESniffing/resources/application_x-gzip b/Source/WebKit/qt/tests/MIMESniffing/resources/application_x-gzip
deleted file mode 100644
index a5e7d3131..000000000
--- a/Source/WebKit/qt/tests/MIMESniffing/resources/application_x-gzip
+++ /dev/null
Binary files differ
diff --git a/Source/WebKit/qt/tests/MIMESniffing/resources/application_x-rar-compressed b/Source/WebKit/qt/tests/MIMESniffing/resources/application_x-rar-compressed
deleted file mode 100644
index d9cb6ae25..000000000
--- a/Source/WebKit/qt/tests/MIMESniffing/resources/application_x-rar-compressed
+++ /dev/null
Binary files differ
diff --git a/Source/WebKit/qt/tests/MIMESniffing/resources/application_zip b/Source/WebKit/qt/tests/MIMESniffing/resources/application_zip
deleted file mode 100644
index 8aec52fb2..000000000
--- a/Source/WebKit/qt/tests/MIMESniffing/resources/application_zip
+++ /dev/null
Binary files differ
diff --git a/Source/WebKit/qt/tests/MIMESniffing/resources/audio_x-wave b/Source/WebKit/qt/tests/MIMESniffing/resources/audio_x-wave
deleted file mode 100644
index a0f9b85ff..000000000
--- a/Source/WebKit/qt/tests/MIMESniffing/resources/audio_x-wave
+++ /dev/null
Binary files differ
diff --git a/Source/WebKit/qt/tests/MIMESniffing/resources/image_bmp b/Source/WebKit/qt/tests/MIMESniffing/resources/image_bmp
deleted file mode 100644
index b61d3688f..000000000
--- a/Source/WebKit/qt/tests/MIMESniffing/resources/image_bmp
+++ /dev/null
Binary files differ
diff --git a/Source/WebKit/qt/tests/MIMESniffing/resources/image_gif b/Source/WebKit/qt/tests/MIMESniffing/resources/image_gif
deleted file mode 100644
index 32b1ea23f..000000000
--- a/Source/WebKit/qt/tests/MIMESniffing/resources/image_gif
+++ /dev/null
Binary files differ
diff --git a/Source/WebKit/qt/tests/MIMESniffing/resources/image_jpeg b/Source/WebKit/qt/tests/MIMESniffing/resources/image_jpeg
deleted file mode 100644
index 187457663..000000000
--- a/Source/WebKit/qt/tests/MIMESniffing/resources/image_jpeg
+++ /dev/null
Binary files differ
diff --git a/Source/WebKit/qt/tests/MIMESniffing/resources/image_png b/Source/WebKit/qt/tests/MIMESniffing/resources/image_png
deleted file mode 100644
index bef59c785..000000000
--- a/Source/WebKit/qt/tests/MIMESniffing/resources/image_png
+++ /dev/null
Binary files differ
diff --git a/Source/WebKit/qt/tests/MIMESniffing/resources/image_vnd.microsoft.icon b/Source/WebKit/qt/tests/MIMESniffing/resources/image_vnd.microsoft.icon
deleted file mode 100644
index 58921b8bb..000000000
--- a/Source/WebKit/qt/tests/MIMESniffing/resources/image_vnd.microsoft.icon
+++ /dev/null
Binary files differ
diff --git a/Source/WebKit/qt/tests/MIMESniffing/resources/image_webp b/Source/WebKit/qt/tests/MIMESniffing/resources/image_webp
deleted file mode 100644
index 0da983e2c..000000000
--- a/Source/WebKit/qt/tests/MIMESniffing/resources/image_webp
+++ /dev/null
Binary files differ
diff --git a/Source/WebKit/qt/tests/MIMESniffing/resources/text_html b/Source/WebKit/qt/tests/MIMESniffing/resources/text_html
deleted file mode 100644
index 21eeee345..000000000
--- a/Source/WebKit/qt/tests/MIMESniffing/resources/text_html
+++ /dev/null
@@ -1,3 +0,0 @@
-
-<!-- saved from url=(0017)http://127.0.0.1/ -->
-<HTML><HEAD><META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"></HEAD><BODY><H1>It works!</H1></BODY></HTML> \ No newline at end of file
diff --git a/Source/WebKit/qt/tests/MIMESniffing/resources/text_xml b/Source/WebKit/qt/tests/MIMESniffing/resources/text_xml
deleted file mode 100644
index 38a9fe548..000000000
--- a/Source/WebKit/qt/tests/MIMESniffing/resources/text_xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<CATALOG>
- <CD>
- <TITLE>Empire Burlesque</TITLE>
- <ARTIST>Bob Dylan</ARTIST>
- <COUNTRY>USA</COUNTRY>
- <COMPANY>Columbia</COMPANY>
- <PRICE>10.90</PRICE>
- <YEAR>1985</YEAR>
- </CD>
- <CD>
- <TITLE>Unchain my heart</TITLE>
- <ARTIST>Joe Cocker</ARTIST>
- <COUNTRY>USA</COUNTRY>
- <COMPANY>EMI</COMPANY>
- <PRICE>8.20</PRICE>
- <YEAR>1987</YEAR>
- </CD>
-</CATALOG>
diff --git a/Source/WebKit/qt/tests/MIMESniffing/resources/video_webm b/Source/WebKit/qt/tests/MIMESniffing/resources/video_webm
deleted file mode 100644
index 95d5031a8..000000000
--- a/Source/WebKit/qt/tests/MIMESniffing/resources/video_webm
+++ /dev/null
Binary files differ
diff --git a/Source/WebKit/qt/tests/MIMESniffing/tst_MIMESniffing.cpp b/Source/WebKit/qt/tests/MIMESniffing/tst_MIMESniffing.cpp
deleted file mode 100644
index 8c5417f26..000000000
--- a/Source/WebKit/qt/tests/MIMESniffing/tst_MIMESniffing.cpp
+++ /dev/null
@@ -1,72 +0,0 @@
-/*
- Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies)
-
- This library is free software; you can redistribute it and/or
- modify it under the terms of the GNU Library General Public
- License as published by the Free Software Foundation; either
- version 2 of the License, or (at your option) any later version.
-
- This library is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- Library General Public License for more details.
-
- You should have received a copy of the GNU Library General Public License
- along with this library; see the file COPYING.LIB. If not, write to
- the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- Boston, MA 02110-1301, USA.
-*/
-
-#include "config.h"
-#include "MIMESniffing.h"
-
-#include "TestData.h"
-
-#include <QtCore/QFile>
-#include <QtCore/QString>
-#include <QtTest/QtTest>
-
-class tst_MIMESniffing : public QObject {
- Q_OBJECT
-
-public:
- tst_MIMESniffing();
-
-private Q_SLOTS:
- void testCase1();
-};
-
-tst_MIMESniffing::tst_MIMESniffing()
-{
-}
-
-static inline const char* errorText(const TestData& data, const char* sniffedType)
-{
- return QString("file: %1, advertised: %2, image: %3. sniffed mime type was expected to be \"%4\" but instead was \"%5\"").arg(data.file).arg(data.advertisedType).arg(data.isImage).arg(data.sniffedType).arg(sniffedType).toLatin1();
-}
-
-void tst_MIMESniffing::testCase1()
-{
-
- for (int i = 0; i < testListSize; ++i) {
- QFile file(testList[i].file);
- QVERIFY2(file.open(QIODevice::ReadOnly), QString("unable to open file %1").arg(file.fileName()).toLatin1());
-
- MIMESniffer sniffer(testList[i].advertisedType, testList[i].isImage);
- QByteArray data = file.peek(sniffer.dataSize());
-
- const char* sniffedType = sniffer.sniff(data.constData(), data.size());
-
- QVERIFY2(!(sniffedType || testList[i].sniffedType) || (sniffedType && testList[i].sniffedType), errorText(testList[i], sniffedType));
-
- if (sniffedType)
- QVERIFY2(!strcmp(sniffedType, testList[i].sniffedType), errorText(testList[i], sniffedType));
-
- }
-
- QVERIFY2(true, "Failure");
-}
-
-QTEST_APPLESS_MAIN(tst_MIMESniffing);
-
-#include "tst_MIMESniffing.moc"