From 10d855ced507110f25d0fd1474e0a455c80568a9 Mon Sep 17 00:00:00 2001 From: kelson42 Date: Sat, 1 Sep 2012 11:54:23 +0000 Subject: [PATCH] + first version of stopwords support --- src/common/kiwix/indexer.cpp | 34 +- src/common/kiwix/indexer.h | 11 +- src/common/kiwix/xapianIndexer.cpp | 10 + src/common/resourceTools.h | 1035 +++++++++++++++++++--------- 4 files changed, 729 insertions(+), 361 deletions(-) diff --git a/src/common/kiwix/indexer.cpp b/src/common/kiwix/indexer.cpp index 65610307b..eb5a1bf49 100644 --- a/src/common/kiwix/indexer.cpp +++ b/src/common/kiwix/indexer.cpp @@ -51,9 +51,18 @@ namespace kiwix { pthread_mutex_init(&indexPathMutex, NULL); pthread_mutex_init(&progressionMutex, NULL); pthread_mutex_init(&verboseMutex, NULL); - - /* Read the stopwords file */ - //this->readStopWordsFile("/home/kelson/kiwix/moulinkiwix/stopwords/fr"); + } + + /* Read the stopwords */ + void Indexer::readStopWords(const string languageCode) { + std::string stopWord; + std::istringstream file(getResourceAsString("stopwords/" + languageCode)); + + this->stopWords.clear(); + + while (getline(file, stopWord, '\n')) { + this->stopWords.push_back(stopWord); + } } /* Article extractor methods */ @@ -66,6 +75,9 @@ namespace kiwix { unsigned int articleCount = reader.getArticleCount(); self->setArticleCount(articleCount); + /* StopWords */ + self->readStopWords(reader.getLanguage()); + /* Goes trough all articles */ zim::File *zimHandler = reader.getZimFileHandler(); unsigned int currentOffset = zimHandler->getNamespaceBeginOffset('A'); @@ -390,7 +402,6 @@ namespace kiwix { /* Manage */ bool Indexer::start(const string zimPath, const string indexPath) { - if (this->getVerboseFlag()) { std::cout << "Indexing of '" << zimPath << "' starting..." <stopWords.clear(); - - while (getline(file, stopWord, '\n')) { - this->stopWords.push_back(stopWord); - } - - std::cout << "Read " << this->stopWords.size() << " lines.\n"; - return true; - } - /* Manage the verboseFlag */ void Indexer::setVerboseFlag(const bool value) { pthread_mutex_lock(&verboseMutex); diff --git a/src/common/kiwix/indexer.h b/src/common/kiwix/indexer.h index 49650038b..f69d4933b 100644 --- a/src/common/kiwix/indexer.h +++ b/src/common/kiwix/indexer.h @@ -36,6 +36,7 @@ #include #include +#include #include #include #include @@ -79,14 +80,14 @@ namespace kiwix { const string &wordCount) = 0; virtual void flush() = 0; virtual void indexingPostlude() = 0; - + + /* Stop words */ + std::vector stopWords; + void readStopWords(const string languageCode); + /* Others */ unsigned int countWords(const string &text); - /* Stopwords */ - bool readStopWordsFile(const string path); - std::vector stopWords; - /* Boost factor */ unsigned int keywordsBoostFactor; inline unsigned int getTitleBoostFactor(const unsigned int contentLength) { diff --git a/src/common/kiwix/xapianIndexer.cpp b/src/common/kiwix/xapianIndexer.cpp index 908015193..72a1d6060 100644 --- a/src/common/kiwix/xapianIndexer.cpp +++ b/src/common/kiwix/xapianIndexer.cpp @@ -44,6 +44,16 @@ namespace kiwix { void XapianIndexer::indexingPrelude(const string indexPath) { this->writableDatabase = Xapian::WritableDatabase(indexPath, Xapian::DB_CREATE_OR_OVERWRITE); this->writableDatabase.begin_transaction(true); + + /* Insert the stopwords */ + if (!this->stopWords.empty()) { + typename std::vector::iterator it = this->stopWords.begin(); + for( ; it != this->stopWords.end(); ++it) { + this->stopper.add(*it); + } + + this->indexer.set_stopper(&(this->stopper)); + } } void XapianIndexer::index(const string &url, diff --git a/src/common/resourceTools.h b/src/common/resourceTools.h index 948c796ba..644a67166 100644 --- a/src/common/resourceTools.h +++ b/src/common/resourceTools.h @@ -7,231 +7,119 @@ std::string getResourceAsString(const std::string &name); -const unsigned char results_tmpl[]={ - 0x3c,0x21,0x44,0x4f,0x43,0x54,0x59,0x50,0x45,0x20,0x68,0x74,0x6d,0x6c,0x20,0x50, - 0x55,0x42,0x4c,0x49,0x43,0x20,0x22,0x2d,0x2f,0x2f,0x57,0x33,0x43,0x2f,0x2f,0x44, - 0x54,0x44,0x20,0x58,0x48,0x54,0x4d,0x4c,0x20,0x31,0x2e,0x30,0x20,0x54,0x72,0x61, - 0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x61,0x6c,0x2f,0x2f,0x45,0x4e,0x22,0x20,0x22, - 0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72, - 0x67,0x2f,0x54,0x52,0x2f,0x78,0x68,0x74,0x6d,0x6c,0x31,0x2f,0x44,0x54,0x44,0x2f, - 0x78,0x68,0x74,0x6d,0x6c,0x31,0x2d,0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f, - 0x6e,0x61,0x6c,0x2e,0x64,0x74,0x64,0x22,0x3e,0x0a,0x3c,0x68,0x74,0x6d,0x6c,0x20, - 0x6c,0x61,0x6e,0x67,0x3d,0x22,0x66,0x72,0x22,0x20,0x78,0x6d,0x6c,0x3a,0x6c,0x61, - 0x6e,0x67,0x3d,0x22,0x66,0x72,0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3d,0x22,0x68, - 0x74,0x74,0x70,0x3a,0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,0x67, - 0x2f,0x31,0x39,0x39,0x39,0x2f,0x78,0x68,0x74,0x6d,0x6c,0x22,0x20,0x78,0x6d,0x6c, - 0x6e,0x73,0x3a,0x57,0x65,0x62,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x73, - 0x63,0x68,0x65,0x6d,0x61,0x73,0x2e,0x6c,0x69,0x76,0x65,0x2e,0x63,0x6f,0x6d,0x2f, - 0x57,0x65,0x62,0x2f,0x22,0x3e,0x0a,0x20,0x20,0x3c,0x68,0x65,0x61,0x64,0x3e,0x0a, - 0x20,0x20,0x20,0x20,0x3c,0x6d,0x65,0x74,0x61,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e, - 0x74,0x3d,0x22,0x74,0x65,0x78,0x74,0x2f,0x68,0x74,0x6d,0x6c,0x3b,0x20,0x63,0x68, - 0x61,0x72,0x73,0x65,0x74,0x3d,0x75,0x74,0x66,0x2d,0x38,0x22,0x20,0x68,0x74,0x74, - 0x70,0x2d,0x65,0x71,0x75,0x69,0x76,0x3d,0x22,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74, - 0x2d,0x74,0x79,0x70,0x65,0x22,0x20,0x2f,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x73, - 0x74,0x79,0x6c,0x65,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x2f, - 0x63,0x73,0x73,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x62,0x6f,0x64,0x79, - 0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x23, - 0x30,0x30,0x30,0x30,0x30,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x6f,0x6e, - 0x74,0x3a,0x20,0x73,0x6d,0x61,0x6c,0x6c,0x2f,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x20, - 0x41,0x72,0x69,0x61,0x6c,0x2c,0x48,0x65,0x6c,0x76,0x65,0x74,0x69,0x63,0x61,0x2c, - 0x53,0x61,0x6e,0x73,0x2d,0x53,0x65,0x72,0x69,0x66,0x3b,0x0a,0x20,0x20,0x20,0x20, - 0x20,0x20,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x20,0x30,0x2e, - 0x35,0x65,0x6d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x6f,0x6e,0x74,0x2d, - 0x73,0x69,0x7a,0x65,0x3a,0x20,0x39,0x30,0x25,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20, - 0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, - 0x61,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20, - 0x23,0x30,0x34,0x63,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20, - 0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x3a,0x76,0x69,0x73, - 0x69,0x74,0x65,0x64,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6c, - 0x6f,0x72,0x3a,0x20,0x23,0x36,0x33,0x39,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x7d, - 0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x3a, - 0x68,0x6f,0x76,0x65,0x72,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x65, - 0x78,0x74,0x2d,0x64,0x65,0x63,0x6f,0x72,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x20,0x75, - 0x6e,0x64,0x65,0x72,0x6c,0x69,0x6e,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x7d, - 0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x2e,0x68, - 0x65,0x61,0x64,0x65,0x72,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x6f, - 0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x20,0x31,0x32,0x30,0x25,0x3b,0x0a,0x20, - 0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x6c, - 0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a, - 0x30,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x61,0x64,0x64,0x69,0x6e,0x67, - 0x3a,0x30,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20, - 0x20,0x20,0x20,0x2e,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x7b,0x0a,0x20,0x20, - 0x20,0x20,0x20,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x20,0x31, - 0x31,0x30,0x25,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20, - 0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x2e,0x72,0x65,0x73,0x75,0x6c, - 0x74,0x73,0x20,0x6c,0x69,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x69, - 0x73,0x74,0x2d,0x73,0x74,0x79,0x6c,0x65,0x2d,0x74,0x79,0x70,0x65,0x3a,0x6e,0x6f, - 0x6e,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x6d,0x61,0x72,0x67,0x69,0x6e, - 0x2d,0x74,0x6f,0x70,0x3a,0x20,0x30,0x2e,0x35,0x65,0x6d,0x3b,0x0a,0x20,0x20,0x20, - 0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x2e,0x72,0x65,0x73, - 0x75,0x6c,0x74,0x73,0x20,0x61,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x66, - 0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x20,0x31,0x31,0x30,0x25,0x3b,0x0a, - 0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x65,0x78,0x74,0x2d,0x64,0x65,0x63,0x6f,0x72, - 0x61,0x74,0x69,0x6f,0x6e,0x3a,0x20,0x75,0x6e,0x64,0x65,0x72,0x6c,0x69,0x6e,0x65, - 0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, - 0x63,0x69,0x74,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x6f,0x6e, - 0x74,0x2d,0x73,0x74,0x79,0x6c,0x65,0x3a,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x3b,0x0a, - 0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x6f,0x72,0x64,0x2d,0x77,0x72,0x61,0x70,0x3a, - 0x62,0x72,0x65,0x61,0x6b,0x2d,0x77,0x6f,0x72,0x64,0x3b,0x0a,0x20,0x20,0x20,0x20, - 0x20,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x20,0x62,0x6c,0x6f,0x63,0x6b, - 0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a, - 0x65,0x3a,0x20,0x31,0x30,0x30,0x25,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x7d, - 0x20,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x2e,0x69,0x6e,0x66,0x6f,0x72,0x6d, - 0x61,0x74,0x69,0x6f,0x6e,0x73,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x63, - 0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x23,0x33,0x38,0x38,0x32,0x32,0x32,0x3b,0x0a,0x20, - 0x20,0x20,0x20,0x20,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x20, - 0x31,0x30,0x30,0x25,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20, - 0x20,0x20,0x20,0x20,0x20,0x2e,0x66,0x6f,0x6f,0x74,0x65,0x72,0x20,0x7b,0x0a,0x20, - 0x20,0x20,0x20,0x20,0x20,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x20,0x30,0x3b, - 0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f, - 0x70,0x3a,0x20,0x31,0x65,0x6d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x69, - 0x64,0x74,0x68,0x3a,0x20,0x31,0x30,0x30,0x25,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20, - 0x20,0x66,0x6c,0x6f,0x61,0x74,0x3a,0x20,0x6c,0x65,0x66,0x74,0x0a,0x20,0x20,0x20, - 0x20,0x20,0x20,0x7d,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20, - 0x20,0x20,0x20,0x2e,0x66,0x6f,0x6f,0x74,0x65,0x72,0x20,0x61,0x2c,0x20,0x2e,0x66, - 0x6f,0x6f,0x74,0x65,0x72,0x20,0x73,0x70,0x61,0x6e,0x20,0x7b,0x0a,0x20,0x20,0x20, - 0x20,0x20,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x20,0x62,0x6c,0x6f,0x63, - 0x6b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x61,0x64,0x64,0x69,0x6e,0x67, - 0x3a,0x20,0x2e,0x33,0x65,0x6d,0x20,0x2e,0x37,0x65,0x6d,0x3b,0x0a,0x20,0x20,0x20, - 0x20,0x20,0x20,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x20,0x30,0x20,0x2e,0x33,0x38, - 0x65,0x6d,0x20,0x30,0x20,0x30,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x65, - 0x78,0x74,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x63,0x65,0x6e,0x74,0x65,0x72,0x3b, - 0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x65,0x78,0x74,0x2d,0x64,0x65,0x63,0x6f, - 0x72,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x20,0x6e,0x6f,0x6e,0x65,0x3b,0x0a,0x20,0x20, - 0x20,0x20,0x20,0x20,0x7d,0x20,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x2e,0x66, - 0x6f,0x6f,0x74,0x65,0x72,0x20,0x61,0x3a,0x68,0x6f,0x76,0x65,0x72,0x20,0x7b,0x0a, - 0x20,0x20,0x20,0x20,0x20,0x20,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64, - 0x3a,0x20,0x23,0x65,0x64,0x65,0x64,0x65,0x64,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20, - 0x20,0x7d,0x20,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x2e,0x66,0x6f,0x6f,0x74, - 0x65,0x72,0x20,0x75,0x6c,0x2c,0x20,0x2e,0x66,0x6f,0x6f,0x74,0x65,0x72,0x20,0x6c, - 0x69,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x69,0x73,0x74,0x2d,0x73, - 0x74,0x79,0x6c,0x65,0x3a,0x6e,0x6f,0x6e,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20, - 0x20,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x20,0x30,0x3b,0x0a,0x20,0x20,0x20,0x20, - 0x20,0x20,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x20,0x30,0x3b,0x0a,0x20,0x20, - 0x20,0x20,0x20,0x20,0x7d,0x20,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x2e,0x66, - 0x6f,0x6f,0x74,0x65,0x72,0x20,0x6c,0x69,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20, - 0x20,0x66,0x6c,0x6f,0x61,0x74,0x3a,0x20,0x6c,0x65,0x66,0x74,0x3b,0x0a,0x20,0x20, - 0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x2e,0x73,0x65, - 0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x62, - 0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x3a,0x20,0x23,0x65,0x64,0x65,0x64, - 0x65,0x64,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x0a,0x0a,0x20,0x20, - 0x20,0x20,0x3c,0x2f,0x73,0x74,0x79,0x6c,0x65,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c, - 0x74,0x69,0x74,0x6c,0x65,0x3e,0x53,0x65,0x61,0x72,0x63,0x68,0x3a,0x20,0x3c,0x54, - 0x4d,0x50,0x4c,0x5f,0x76,0x61,0x72,0x20,0x73,0x65,0x61,0x72,0x63,0x68,0x50,0x61, - 0x74,0x74,0x65,0x72,0x6e,0x3e,0x3c,0x2f,0x74,0x69,0x74,0x6c,0x65,0x3e,0x0a,0x20, - 0x20,0x3c,0x2f,0x68,0x65,0x61,0x64,0x3e,0x0a,0x20,0x20,0x3c,0x62,0x6f,0x64,0x79, - 0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73, - 0x3d,0x22,0x68,0x65,0x61,0x64,0x65,0x72,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20, - 0x20,0x3c,0x54,0x4d,0x50,0x4c,0x5f,0x69,0x66,0x20,0x72,0x65,0x73,0x75,0x6c,0x74, - 0x73,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x52,0x65,0x73,0x75,0x6c,0x74,0x73, - 0x20,0x3c,0x62,0x3e,0x3c,0x54,0x4d,0x50,0x4c,0x5f,0x76,0x61,0x72,0x20,0x72,0x65, - 0x73,0x75,0x6c,0x74,0x53,0x74,0x61,0x72,0x74,0x3e,0x2d,0x3c,0x54,0x4d,0x50,0x4c, - 0x5f,0x76,0x61,0x72,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x45,0x6e,0x64,0x3e,0x3c, - 0x2f,0x62,0x3e,0x20,0x6f,0x66,0x20,0x3c,0x62,0x3e,0x3c,0x54,0x4d,0x50,0x4c,0x5f, - 0x76,0x61,0x72,0x20,0x63,0x6f,0x75,0x6e,0x74,0x3e,0x3c,0x2f,0x62,0x3e,0x20,0x66, - 0x6f,0x72,0x20,0x3c,0x62,0x3e,0x3c,0x54,0x4d,0x50,0x4c,0x5f,0x76,0x61,0x72,0x20, - 0x73,0x65,0x61,0x72,0x63,0x68,0x50,0x61,0x74,0x74,0x65,0x72,0x6e,0x3e,0x3c,0x2f, - 0x62,0x3e,0x3c,0x54,0x4d,0x50,0x4c,0x5f,0x65,0x6c,0x73,0x65,0x3e,0x4e,0x6f,0x20, - 0x72,0x65,0x73,0x75,0x6c,0x74,0x20,0x77,0x65,0x72,0x65,0x20,0x66,0x6f,0x75,0x6e, - 0x64,0x20,0x66,0x6f,0x72,0x20,0x3c,0x62,0x3e,0x3c,0x54,0x4d,0x50,0x4c,0x5f,0x76, - 0x61,0x72,0x20,0x73,0x65,0x61,0x72,0x63,0x68,0x50,0x61,0x74,0x74,0x65,0x72,0x6e, - 0x3e,0x3c,0x2f,0x62,0x3e,0x3c,0x2f,0x54,0x4d,0x50,0x4c,0x5f,0x69,0x66,0x3e,0x0a, - 0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20, - 0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x72,0x65,0x73,0x75, - 0x6c,0x74,0x73,0x22,0x3e,0x09,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x75,0x6c, - 0x3e,0x0a,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x3c,0x54,0x4d,0x50,0x4c, - 0x5f,0x6c,0x6f,0x6f,0x70,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x3e,0x0a,0x09, - 0x20,0x20,0x3c,0x6c,0x69,0x3e,0x0a,0x09,0x20,0x20,0x20,0x20,0x3c,0x61,0x20,0x68, - 0x72,0x65,0x66,0x3d,0x22,0x3c,0x54,0x4d,0x50,0x4c,0x5f,0x76,0x61,0x72,0x20,0x70, - 0x72,0x6f,0x74,0x6f,0x63,0x6f,0x6c,0x50,0x72,0x65,0x66,0x69,0x78,0x3e,0x3c,0x54, - 0x4d,0x50,0x4c,0x5f,0x76,0x61,0x72,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x49, - 0x64,0x3e,0x2f,0x3c,0x54,0x4d,0x50,0x4c,0x5f,0x76,0x61,0x72,0x20,0x75,0x72,0x6c, - 0x3e,0x22,0x3e,0x3c,0x54,0x4d,0x50,0x4c,0x5f,0x76,0x61,0x72,0x20,0x74,0x69,0x74, - 0x6c,0x65,0x3e,0x3c,0x2f,0x61,0x3e,0x0a,0x09,0x20,0x20,0x20,0x20,0x3c,0x63,0x69, - 0x74,0x65,0x3e,0x3c,0x54,0x4d,0x50,0x4c,0x5f,0x69,0x66,0x20,0x73,0x6e,0x69,0x70, - 0x70,0x65,0x74,0x3e,0x3c,0x54,0x4d,0x50,0x4c,0x5f,0x76,0x61,0x72,0x20,0x73,0x6e, - 0x69,0x70,0x70,0x65,0x74,0x3e,0x2e,0x2e,0x2e,0x3c,0x2f,0x54,0x4d,0x50,0x4c,0x5f, - 0x69,0x66,0x3e,0x3c,0x2f,0x63,0x69,0x74,0x65,0x3e,0x0a,0x09,0x20,0x20,0x20,0x20, - 0x3c,0x54,0x4d,0x50,0x4c,0x5f,0x69,0x66,0x20,0x77,0x6f,0x72,0x64,0x43,0x6f,0x75, - 0x6e,0x74,0x3e,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69, - 0x6e,0x66,0x6f,0x72,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x73,0x22,0x3e,0x3c,0x54,0x4d, - 0x50,0x4c,0x5f,0x76,0x61,0x72,0x20,0x77,0x6f,0x72,0x64,0x43,0x6f,0x75,0x6e,0x74, - 0x3e,0x20,0x77,0x6f,0x72,0x64,0x73,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x3c,0x2f,0x54, - 0x4d,0x50,0x4c,0x5f,0x69,0x66,0x3e,0x0a,0x09,0x20,0x20,0x3c,0x2f,0x6c,0x69,0x3e, - 0x0a,0x20,0x20,0x20,0x20,0x3c,0x2f,0x54,0x4d,0x50,0x4c,0x5f,0x6c,0x6f,0x6f,0x70, - 0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x2f,0x75,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20, - 0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63, - 0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x6f,0x74,0x65,0x72,0x22,0x3e,0x0a,0x20, - 0x20,0x20,0x20,0x3c,0x75,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x54, - 0x4d,0x50,0x4c,0x5f,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x4c,0x61, - 0x73,0x74,0x50,0x61,0x67,0x65,0x53,0x74,0x61,0x72,0x74,0x3e,0x30,0x29,0x3e,0x0a, - 0x09,0x3c,0x6c,0x69,0x3e,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x3c,0x54, - 0x4d,0x50,0x4c,0x5f,0x76,0x61,0x72,0x20,0x73,0x65,0x61,0x72,0x63,0x68,0x50,0x72, - 0x6f,0x74,0x6f,0x63,0x6f,0x6c,0x50,0x72,0x65,0x66,0x69,0x78,0x3e,0x63,0x6f,0x6e, - 0x74,0x65,0x6e,0x74,0x3d,0x3c,0x54,0x4d,0x50,0x4c,0x5f,0x76,0x61,0x72,0x20,0x63, - 0x6f,0x6e,0x74,0x65,0x6e,0x74,0x49,0x64,0x3e,0x26,0x70,0x61,0x74,0x74,0x65,0x72, - 0x6e,0x3d,0x3c,0x54,0x4d,0x50,0x4c,0x5f,0x76,0x61,0x72,0x20,0x73,0x65,0x61,0x72, - 0x63,0x68,0x50,0x61,0x74,0x74,0x65,0x72,0x6e,0x3e,0x26,0x73,0x74,0x61,0x72,0x74, - 0x3d,0x30,0x26,0x65,0x6e,0x64,0x3d,0x3c,0x54,0x4d,0x50,0x4c,0x5f,0x76,0x61,0x72, - 0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x52,0x61,0x6e,0x67,0x65,0x3e,0x22,0x3e,0xe2, - 0x97,0x80,0x3c,0x2f,0x61,0x3e,0x3c,0x2f,0x6c,0x69,0x3e,0x0a,0x20,0x20,0x20,0x20, - 0x20,0x20,0x3c,0x2f,0x54,0x4d,0x50,0x4c,0x5f,0x69,0x66,0x3e,0x0a,0x20,0x20,0x20, - 0x20,0x20,0x20,0x3c,0x54,0x4d,0x50,0x4c,0x5f,0x6c,0x6f,0x6f,0x70,0x20,0x70,0x61, - 0x67,0x65,0x73,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x69,0x3e,0x3c, - 0x61,0x20,0x3c,0x54,0x4d,0x50,0x4c,0x5f,0x69,0x66,0x20,0x73,0x65,0x6c,0x65,0x63, - 0x74,0x65,0x64,0x3e,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x65,0x6c,0x65,0x63, - 0x74,0x65,0x64,0x22,0x3c,0x2f,0x54,0x4d,0x50,0x4c,0x5f,0x69,0x66,0x3e,0x20,0x68, - 0x72,0x65,0x66,0x3d,0x22,0x3c,0x54,0x4d,0x50,0x4c,0x5f,0x76,0x61,0x72,0x20,0x73, - 0x65,0x61,0x72,0x63,0x68,0x50,0x72,0x6f,0x74,0x6f,0x63,0x6f,0x6c,0x50,0x72,0x65, - 0x66,0x69,0x78,0x3e,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3d,0x3c,0x54,0x4d,0x50, - 0x4c,0x5f,0x76,0x61,0x72,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x49,0x64,0x3e, - 0x26,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x3d,0x3c,0x54,0x4d,0x50,0x4c,0x5f,0x76, - 0x61,0x72,0x20,0x73,0x65,0x61,0x72,0x63,0x68,0x50,0x61,0x74,0x74,0x65,0x72,0x6e, - 0x3e,0x26,0x73,0x74,0x61,0x72,0x74,0x3d,0x3c,0x54,0x4d,0x50,0x4c,0x5f,0x76,0x61, - 0x72,0x20,0x73,0x74,0x61,0x72,0x74,0x3e,0x26,0x65,0x6e,0x64,0x3d,0x3c,0x54,0x4d, - 0x50,0x4c,0x5f,0x76,0x61,0x72,0x20,0x65,0x6e,0x64,0x3e,0x22,0x3e,0x3c,0x54,0x4d, - 0x50,0x4c,0x5f,0x76,0x61,0x72,0x20,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x3c,0x2f,0x61, - 0x3e,0x3c,0x2f,0x6c,0x69,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x54, - 0x4d,0x50,0x4c,0x5f,0x4c,0x4f,0x4f,0x50,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, - 0x3c,0x54,0x4d,0x50,0x4c,0x5f,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x75,0x6c,0x74, - 0x4c,0x61,0x73,0x74,0x50,0x61,0x67,0x65,0x53,0x74,0x61,0x72,0x74,0x3e,0x30,0x29, - 0x3e,0x0a,0x09,0x3c,0x6c,0x69,0x3e,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22, - 0x3c,0x54,0x4d,0x50,0x4c,0x5f,0x76,0x61,0x72,0x20,0x73,0x65,0x61,0x72,0x63,0x68, - 0x50,0x72,0x6f,0x74,0x6f,0x63,0x6f,0x6c,0x50,0x72,0x65,0x66,0x69,0x78,0x3e,0x63, - 0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3d,0x3c,0x54,0x4d,0x50,0x4c,0x5f,0x76,0x61,0x72, - 0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x49,0x64,0x3e,0x26,0x70,0x61,0x74,0x74, - 0x65,0x72,0x6e,0x3d,0x3c,0x54,0x4d,0x50,0x4c,0x5f,0x76,0x61,0x72,0x20,0x73,0x65, - 0x61,0x72,0x63,0x68,0x50,0x61,0x74,0x74,0x65,0x72,0x6e,0x3e,0x26,0x73,0x74,0x61, - 0x72,0x74,0x3d,0x3c,0x54,0x4d,0x50,0x4c,0x5f,0x76,0x61,0x72,0x20,0x72,0x65,0x73, - 0x75,0x6c,0x74,0x4c,0x61,0x73,0x74,0x50,0x61,0x67,0x65,0x53,0x74,0x61,0x72,0x74, - 0x3e,0x26,0x65,0x6e,0x64,0x3d,0x3c,0x54,0x4d,0x50,0x4c,0x5f,0x76,0x61,0x72,0x20, - 0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x4c,0x61,0x73,0x74,0x50,0x61,0x67,0x65,0x53, - 0x74,0x61,0x72,0x74,0x2b,0x72,0x65,0x73,0x75,0x6c,0x74,0x52,0x61,0x6e,0x67,0x65, - 0x29,0x3e,0x22,0x3e,0xe2,0x96,0xb6,0x3c,0x2f,0x61,0x3e,0x3c,0x2f,0x6c,0x69,0x3e, - 0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x54,0x4d,0x50,0x4c,0x5f,0x69,0x66, - 0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x2f,0x75,0x6c,0x3e,0x20,0x0a,0x20,0x3c,0x2f, - 0x64,0x69,0x76,0x3e,0x0a,0x3c,0x2f,0x62,0x6f,0x64,0x79,0x3e,0x0a,0x3c,0x2f,0x68, - 0x74,0x6d,0x6c,0x3e,0x0a +const unsigned char server_taskbar_css[]={ + 0x23,0x6b,0x69,0x77,0x69,0x78,0x74,0x6f,0x6f,0x6c,0x62,0x61,0x72,0x20,0x7b,0x0a, + 0x20,0x20,0x20,0x20,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x20,0x66,0x69, + 0x78,0x65,0x64,0x3b,0x0a,0x20,0x20,0x20,0x20,0x70,0x61,0x64,0x64,0x69,0x6e,0x67, + 0x3a,0x20,0x34,0x70,0x78,0x20,0x31,0x35,0x70,0x78,0x20,0x35,0x70,0x78,0x20,0x31, + 0x35,0x70,0x78,0x3b,0x0a,0x20,0x20,0x20,0x20,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d, + 0x6c,0x65,0x66,0x74,0x3a,0x20,0x2d,0x31,0x30,0x70,0x78,0x3b,0x0a,0x20,0x20,0x20, + 0x20,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x20,0x2d, + 0x31,0x30,0x70,0x78,0x3b,0x0a,0x20,0x20,0x20,0x20,0x6c,0x65,0x66,0x74,0x3a,0x30, + 0x3b,0x0a,0x20,0x20,0x20,0x20,0x72,0x69,0x67,0x68,0x74,0x3a,0x30,0x3b,0x0a,0x20, + 0x20,0x20,0x20,0x74,0x6f,0x70,0x3a,0x20,0x31,0x30,0x70,0x78,0x3b,0x0a,0x20,0x20, + 0x20,0x20,0x7a,0x2d,0x69,0x6e,0x64,0x65,0x78,0x3a,0x31,0x30,0x30,0x3b,0x0a,0x7d, + 0x0a,0x0a,0x23,0x6b,0x69,0x77,0x69,0x78,0x68,0x6f,0x6d,0x65,0x20,0x7b,0x0a,0x20, + 0x20,0x20,0x20,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x20,0x30,0x70,0x78,0x3b,0x0a, + 0x20,0x20,0x20,0x20,0x66,0x6c,0x6f,0x61,0x74,0x3a,0x20,0x6c,0x65,0x66,0x74,0x3b, + 0x0a,0x7d,0x0a,0x0a,0x23,0x6b,0x69,0x77,0x69,0x78,0x6c,0x69,0x62,0x72,0x61,0x72, + 0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x20, + 0x30,0x70,0x78,0x3b,0x0a,0x20,0x20,0x20,0x20,0x66,0x6c,0x6f,0x61,0x74,0x3a,0x20, + 0x6c,0x65,0x66,0x74,0x3b,0x0a,0x7d,0x0a,0x0a,0x23,0x6b,0x69,0x77,0x69,0x78,0x73, + 0x65,0x61,0x72,0x63,0x68,0x62,0x6f,0x78,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x6d, + 0x61,0x72,0x67,0x69,0x6e,0x3a,0x20,0x30,0x70,0x78,0x3b,0x0a,0x20,0x20,0x20,0x20, + 0x66,0x6c,0x6f,0x61,0x74,0x3a,0x20,0x72,0x69,0x67,0x68,0x74,0x3b,0x0a,0x7d,0x0a, + 0x0a,0x23,0x6b,0x69,0x77,0x69,0x78,0x73,0x65,0x61,0x72,0x63,0x68,0x20,0x7b,0x0a, + 0x20,0x20,0x20,0x20,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x20,0x30,0x70,0x78,0x3b, + 0x0a,0x20,0x20,0x20,0x20,0x66,0x6c,0x6f,0x61,0x74,0x3a,0x20,0x72,0x69,0x67,0x68, + 0x74,0x3b,0x0a,0x7d,0x0a }; -const unsigned char jqueryui_include_html_part[]={ - 0x3c,0x6c,0x69,0x6e,0x6b,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x74,0x65,0x78,0x74, - 0x2f,0x63,0x73,0x73,0x22,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x2f,0x73,0x6b,0x69, - 0x6e,0x2f,0x6a,0x71,0x75,0x65,0x72,0x79,0x75,0x69,0x2f,0x63,0x73,0x73,0x2f,0x73, - 0x6d,0x6f,0x6f,0x74,0x68,0x6e,0x65,0x73,0x73,0x2f,0x6a,0x71,0x75,0x65,0x72,0x79, - 0x2d,0x75,0x69,0x2e,0x63,0x75,0x73,0x74,0x6f,0x6d,0x2e,0x63,0x73,0x73,0x22,0x20, - 0x72,0x65,0x6c,0x3d,0x22,0x53,0x74,0x79,0x6c,0x65,0x73,0x68,0x65,0x65,0x74,0x22, - 0x20,0x2f,0x3e,0x0a,0x3c,0x73,0x63,0x72,0x69,0x70,0x74,0x20,0x74,0x79,0x70,0x65, - 0x3d,0x22,0x74,0x65,0x78,0x74,0x2f,0x6a,0x61,0x76,0x61,0x73,0x63,0x72,0x69,0x70, - 0x74,0x22,0x20,0x73,0x72,0x63,0x3d,0x22,0x2f,0x73,0x6b,0x69,0x6e,0x2f,0x6a,0x71, - 0x75,0x65,0x72,0x79,0x75,0x69,0x2f,0x6a,0x73,0x2f,0x6a,0x71,0x75,0x65,0x72,0x79, - 0x2e,0x6d,0x69,0x6e,0x2e,0x6a,0x73,0x22,0x3e,0x3c,0x2f,0x73,0x63,0x72,0x69,0x70, - 0x74,0x3e,0x0a,0x3c,0x73,0x63,0x72,0x69,0x70,0x74,0x20,0x74,0x79,0x70,0x65,0x3d, - 0x22,0x74,0x65,0x78,0x74,0x2f,0x6a,0x61,0x76,0x61,0x73,0x63,0x72,0x69,0x70,0x74, - 0x22,0x20,0x73,0x72,0x63,0x3d,0x22,0x2f,0x73,0x6b,0x69,0x6e,0x2f,0x6a,0x71,0x75, - 0x65,0x72,0x79,0x75,0x69,0x2f,0x6a,0x73,0x2f,0x6a,0x71,0x75,0x65,0x72,0x79,0x2d, - 0x75,0x69,0x2e,0x63,0x75,0x73,0x74,0x6f,0x6d,0x2e,0x6d,0x69,0x6e,0x2e,0x6a,0x73, - 0x22,0x3e,0x3c,0x2f,0x73,0x63,0x72,0x69,0x70,0x74,0x3e,0x0a +const unsigned char server_taskbar_html_part[]={ + 0x3c,0x73,0x63,0x72,0x69,0x70,0x74,0x3e,0x0a,0x20,0x20,0x24,0x28,0x66,0x75,0x6e, + 0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x24,0x28,0x20,0x22, + 0x23,0x6b,0x69,0x77,0x69,0x78,0x73,0x65,0x61,0x72,0x63,0x68,0x62,0x6f,0x78,0x22, + 0x20,0x29,0x2e,0x61,0x75,0x74,0x6f,0x63,0x6f,0x6d,0x70,0x6c,0x65,0x74,0x65,0x28, + 0x7b,0x0a,0x0a,0x20,0x20,0x73,0x6f,0x75,0x72,0x63,0x65,0x3a,0x20,0x22,0x2f,0x73, + 0x75,0x67,0x67,0x65,0x73,0x74,0x3f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3d,0x5f, + 0x5f,0x43,0x4f,0x4e,0x54,0x45,0x4e,0x54,0x5f,0x5f,0x22,0x2c,0x0a,0x20,0x20,0x64, + 0x61,0x74,0x61,0x54,0x79,0x70,0x65,0x3a,0x20,0x22,0x6a,0x73,0x6f,0x6e,0x22,0x2c, + 0x0a,0x20,0x20,0x63,0x61,0x63,0x68,0x65,0x3a,0x20,0x66,0x61,0x6c,0x73,0x65,0x2c, + 0x0a,0x0a,0x20,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x3a,0x20,0x66,0x75,0x6e,0x63, + 0x74,0x69,0x6f,0x6e,0x28,0x65,0x76,0x65,0x6e,0x74,0x2c,0x20,0x75,0x69,0x29,0x20, + 0x7b,0x0a,0x20,0x20,0x24,0x28,0x20,0x22,0x23,0x6b,0x69,0x77,0x69,0x78,0x73,0x65, + 0x61,0x72,0x63,0x68,0x66,0x6f,0x72,0x6d,0x22,0x20,0x29,0x2e,0x73,0x75,0x62,0x6d, + 0x69,0x74,0x28,0x29,0x3b,0x0a,0x20,0x20,0x7d,0x2c,0x0a,0x0a,0x20,0x20,0x7d,0x29, + 0x3b,0x0a,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x3c,0x2f,0x73,0x63,0x72,0x69,0x70,0x74, + 0x3e,0x0a,0x0a,0x3c,0x73,0x70,0x61,0x6e,0x20,0x69,0x64,0x3d,0x22,0x6b,0x69,0x77, + 0x69,0x78,0x74,0x6f,0x6f,0x6c,0x62,0x61,0x72,0x22,0x20,0x63,0x6c,0x61,0x73,0x73, + 0x3d,0x22,0x75,0x69,0x2d,0x77,0x69,0x64,0x67,0x65,0x74,0x2d,0x68,0x65,0x61,0x64, + 0x65,0x72,0x20,0x75,0x69,0x2d,0x63,0x6f,0x72,0x6e,0x65,0x72,0x2d,0x61,0x6c,0x6c, + 0x22,0x3e,0x0a,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x69,0x64,0x3d, + 0x22,0x6b,0x69,0x77,0x69,0x78,0x6c,0x69,0x62,0x72,0x61,0x72,0x79,0x22,0x20,0x6f, + 0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6c, + 0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x68,0x72,0x65,0x66,0x3d,0x27,0x2f,0x27, + 0x3b,0x22,0x3e,0x4c,0x69,0x62,0x72,0x61,0x72,0x79,0x3c,0x2f,0x62,0x75,0x74,0x74, + 0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x69,0x64, + 0x3d,0x22,0x6b,0x69,0x77,0x69,0x78,0x68,0x6f,0x6d,0x65,0x22,0x20,0x6f,0x6e,0x63, + 0x6c,0x69,0x63,0x6b,0x3d,0x22,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6c,0x6f,0x63, + 0x61,0x74,0x69,0x6f,0x6e,0x2e,0x68,0x72,0x65,0x66,0x3d,0x27,0x2f,0x5f,0x5f,0x43, + 0x4f,0x4e,0x54,0x45,0x4e,0x54,0x5f,0x5f,0x2f,0x27,0x3b,0x22,0x3e,0x48,0x6f,0x6d, + 0x65,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x3c,0x66,0x6f, + 0x72,0x6d,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x3d,0x22,0x47,0x45,0x54,0x22,0x20, + 0x61,0x63,0x74,0x69,0x6f,0x6e,0x3d,0x22,0x2f,0x73,0x65,0x61,0x72,0x63,0x68,0x22, + 0x20,0x69,0x64,0x3d,0x22,0x6b,0x69,0x77,0x69,0x78,0x73,0x65,0x61,0x72,0x63,0x68, + 0x66,0x6f,0x72,0x6d,0x22,0x2f,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x69,0x6e,0x70, + 0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x68,0x69,0x64,0x64,0x65,0x6e,0x22, + 0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x22,0x20, + 0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x5f,0x5f,0x43,0x4f,0x4e,0x54,0x45,0x4e,0x54, + 0x5f,0x5f,0x22,0x20,0x2f,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x69,0x6e,0x70,0x75, + 0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x73,0x75,0x62,0x6d,0x69,0x74,0x22,0x20, + 0x69,0x64,0x3d,0x22,0x6b,0x69,0x77,0x69,0x78,0x73,0x65,0x61,0x72,0x63,0x68,0x22, + 0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x53,0x65,0x61,0x72,0x63,0x68,0x22,0x20, + 0x2f,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x69,0x64, + 0x3d,0x22,0x6b,0x69,0x77,0x69,0x78,0x73,0x65,0x61,0x72,0x63,0x68,0x62,0x6f,0x78, + 0x22,0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x22, + 0x2f,0x3e,0x0a,0x20,0x20,0x3c,0x2f,0x66,0x6f,0x72,0x6d,0x3e,0x0a,0x3c,0x2f,0x73, + 0x70,0x61,0x6e,0x3e,0x0a,0x3c,0x64,0x69,0x76,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d, + 0x22,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x3b, + 0x20,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x20,0x34,0x30,0x70,0x78,0x3b,0x22,0x3e, + 0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a + }; + +const unsigned char server_home_html_tmpl[]={ + 0x3c,0x68,0x74,0x6d,0x6c,0x3e,0x0a,0x3c,0x68,0x65,0x61,0x64,0x3e,0x0a,0x20,0x20, + 0x3c,0x6d,0x65,0x74,0x61,0x20,0x63,0x68,0x61,0x72,0x73,0x65,0x74,0x3d,0x22,0x55, + 0x54,0x46,0x2d,0x38,0x22,0x20,0x2f,0x3e,0x0a,0x20,0x20,0x3c,0x74,0x69,0x74,0x6c, + 0x65,0x3e,0x57,0x65,0x6c,0x63,0x6f,0x6d,0x65,0x20,0x74,0x6f,0x20,0x4b,0x69,0x77, + 0x69,0x78,0x20,0x53,0x65,0x72,0x76,0x65,0x72,0x3c,0x2f,0x74,0x69,0x74,0x6c,0x65, + 0x3e,0x0a,0x20,0x20,0x3c,0x6c,0x69,0x6e,0x6b,0x20,0x74,0x79,0x70,0x65,0x3d,0x22, + 0x74,0x65,0x78,0x74,0x2f,0x63,0x73,0x73,0x22,0x20,0x68,0x72,0x65,0x66,0x3d,0x22, + 0x2f,0x73,0x6b,0x69,0x6e,0x2f,0x6a,0x71,0x75,0x65,0x72,0x79,0x75,0x69,0x2f,0x63, + 0x73,0x73,0x2f,0x73,0x6d,0x6f,0x6f,0x74,0x68,0x6e,0x65,0x73,0x73,0x2f,0x6a,0x71, + 0x75,0x65,0x72,0x79,0x2d,0x75,0x69,0x2e,0x63,0x75,0x73,0x74,0x6f,0x6d,0x2e,0x63, + 0x73,0x73,0x22,0x20,0x72,0x65,0x6c,0x3d,0x22,0x53,0x74,0x79,0x6c,0x65,0x73,0x68, + 0x65,0x65,0x74,0x22,0x20,0x2f,0x3e,0x0a,0x20,0x20,0x3c,0x73,0x63,0x72,0x69,0x70, + 0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x2f,0x6a,0x61,0x76, + 0x61,0x73,0x63,0x72,0x69,0x70,0x74,0x22,0x20,0x73,0x72,0x63,0x3d,0x22,0x2f,0x73, + 0x6b,0x69,0x6e,0x2f,0x6a,0x71,0x75,0x65,0x72,0x79,0x75,0x69,0x2f,0x6a,0x73,0x2f, + 0x6a,0x71,0x75,0x65,0x72,0x79,0x2e,0x6d,0x69,0x6e,0x2e,0x6a,0x73,0x22,0x3e,0x3c, + 0x2f,0x73,0x63,0x72,0x69,0x70,0x74,0x3e,0x0a,0x20,0x20,0x3c,0x73,0x63,0x72,0x69, + 0x70,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x2f,0x6a,0x61, + 0x76,0x61,0x73,0x63,0x72,0x69,0x70,0x74,0x22,0x20,0x73,0x72,0x63,0x3d,0x22,0x2f, + 0x73,0x6b,0x69,0x6e,0x2f,0x6a,0x71,0x75,0x65,0x72,0x79,0x75,0x69,0x2f,0x6a,0x73, + 0x2f,0x6a,0x71,0x75,0x65,0x72,0x79,0x2d,0x75,0x69,0x2e,0x63,0x75,0x73,0x74,0x6f, + 0x6d,0x2e,0x6d,0x69,0x6e,0x2e,0x6a,0x73,0x22,0x3e,0x3c,0x2f,0x73,0x63,0x72,0x69, + 0x70,0x74,0x3e,0x0a,0x3c,0x73,0x63,0x72,0x69,0x70,0x74,0x3e,0x0a,0x24,0x28,0x66, + 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x20,0x7b,0x0a,0x24,0x28,0x20,0x22, + 0x23,0x61,0x63,0x63,0x6f,0x72,0x64,0x69,0x6f,0x6e,0x22,0x20,0x29,0x2e,0x61,0x63, + 0x63,0x6f,0x72,0x64,0x69,0x6f,0x6e,0x28,0x29,0x3b,0x0a,0x7d,0x29,0x3b,0x0a,0x3c, + 0x2f,0x73,0x63,0x72,0x69,0x70,0x74,0x3e,0x0a,0x3c,0x2f,0x68,0x65,0x61,0x64,0x3e, + 0x0a,0x3c,0x62,0x6f,0x64,0x79,0x3e,0x0a,0x0a,0x3c,0x64,0x69,0x76,0x20,0x69,0x64, + 0x3d,0x22,0x61,0x63,0x63,0x6f,0x72,0x64,0x69,0x6f,0x6e,0x22,0x3e,0x0a,0x20,0x20, + 0x5f,0x5f,0x42,0x4f,0x4f,0x4b,0x53,0x5f,0x5f,0x0a,0x3c,0x2f,0x64,0x69,0x76,0x3e, + 0x0a,0x3c,0x2f,0x62,0x6f,0x64,0x79,0x3e,0x0a,0x3c,0x2f,0x68,0x74,0x6d,0x6c,0x3e, + 0x0a }; const unsigned char jqueryui_css_smoothness_jquery_ui_custom_css[]={ @@ -21107,131 +20995,604 @@ const unsigned char jqueryui_js_jquery_min_js[]={ 0x29,0x7d,0x29,0x28,0x77,0x69,0x6e,0x64,0x6f,0x77,0x29,0x3b }; -const unsigned char server_taskbar_css[]={ - 0x23,0x6b,0x69,0x77,0x69,0x78,0x74,0x6f,0x6f,0x6c,0x62,0x61,0x72,0x20,0x7b,0x0a, - 0x20,0x20,0x20,0x20,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x20,0x66,0x69, - 0x78,0x65,0x64,0x3b,0x0a,0x20,0x20,0x20,0x20,0x70,0x61,0x64,0x64,0x69,0x6e,0x67, - 0x3a,0x20,0x34,0x70,0x78,0x20,0x31,0x35,0x70,0x78,0x20,0x35,0x70,0x78,0x20,0x31, - 0x35,0x70,0x78,0x3b,0x0a,0x20,0x20,0x20,0x20,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d, - 0x6c,0x65,0x66,0x74,0x3a,0x20,0x2d,0x31,0x30,0x70,0x78,0x3b,0x0a,0x20,0x20,0x20, - 0x20,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x20,0x2d, - 0x31,0x30,0x70,0x78,0x3b,0x0a,0x20,0x20,0x20,0x20,0x6c,0x65,0x66,0x74,0x3a,0x30, - 0x3b,0x0a,0x20,0x20,0x20,0x20,0x72,0x69,0x67,0x68,0x74,0x3a,0x30,0x3b,0x0a,0x20, - 0x20,0x20,0x20,0x74,0x6f,0x70,0x3a,0x20,0x31,0x30,0x70,0x78,0x3b,0x0a,0x20,0x20, - 0x20,0x20,0x7a,0x2d,0x69,0x6e,0x64,0x65,0x78,0x3a,0x31,0x30,0x30,0x3b,0x0a,0x7d, - 0x0a,0x0a,0x23,0x6b,0x69,0x77,0x69,0x78,0x68,0x6f,0x6d,0x65,0x20,0x7b,0x0a,0x20, - 0x20,0x20,0x20,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x20,0x30,0x70,0x78,0x3b,0x0a, - 0x20,0x20,0x20,0x20,0x66,0x6c,0x6f,0x61,0x74,0x3a,0x20,0x6c,0x65,0x66,0x74,0x3b, - 0x0a,0x7d,0x0a,0x0a,0x23,0x6b,0x69,0x77,0x69,0x78,0x6c,0x69,0x62,0x72,0x61,0x72, - 0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x20, - 0x30,0x70,0x78,0x3b,0x0a,0x20,0x20,0x20,0x20,0x66,0x6c,0x6f,0x61,0x74,0x3a,0x20, - 0x6c,0x65,0x66,0x74,0x3b,0x0a,0x7d,0x0a,0x0a,0x23,0x6b,0x69,0x77,0x69,0x78,0x73, - 0x65,0x61,0x72,0x63,0x68,0x62,0x6f,0x78,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x6d, - 0x61,0x72,0x67,0x69,0x6e,0x3a,0x20,0x30,0x70,0x78,0x3b,0x0a,0x20,0x20,0x20,0x20, - 0x66,0x6c,0x6f,0x61,0x74,0x3a,0x20,0x72,0x69,0x67,0x68,0x74,0x3b,0x0a,0x7d,0x0a, - 0x0a,0x23,0x6b,0x69,0x77,0x69,0x78,0x73,0x65,0x61,0x72,0x63,0x68,0x20,0x7b,0x0a, - 0x20,0x20,0x20,0x20,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x20,0x30,0x70,0x78,0x3b, - 0x0a,0x20,0x20,0x20,0x20,0x66,0x6c,0x6f,0x61,0x74,0x3a,0x20,0x72,0x69,0x67,0x68, - 0x74,0x3b,0x0a,0x7d,0x0a +const unsigned char jqueryui_include_html_part[]={ + 0x3c,0x6c,0x69,0x6e,0x6b,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x74,0x65,0x78,0x74, + 0x2f,0x63,0x73,0x73,0x22,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x2f,0x73,0x6b,0x69, + 0x6e,0x2f,0x6a,0x71,0x75,0x65,0x72,0x79,0x75,0x69,0x2f,0x63,0x73,0x73,0x2f,0x73, + 0x6d,0x6f,0x6f,0x74,0x68,0x6e,0x65,0x73,0x73,0x2f,0x6a,0x71,0x75,0x65,0x72,0x79, + 0x2d,0x75,0x69,0x2e,0x63,0x75,0x73,0x74,0x6f,0x6d,0x2e,0x63,0x73,0x73,0x22,0x20, + 0x72,0x65,0x6c,0x3d,0x22,0x53,0x74,0x79,0x6c,0x65,0x73,0x68,0x65,0x65,0x74,0x22, + 0x20,0x2f,0x3e,0x0a,0x3c,0x73,0x63,0x72,0x69,0x70,0x74,0x20,0x74,0x79,0x70,0x65, + 0x3d,0x22,0x74,0x65,0x78,0x74,0x2f,0x6a,0x61,0x76,0x61,0x73,0x63,0x72,0x69,0x70, + 0x74,0x22,0x20,0x73,0x72,0x63,0x3d,0x22,0x2f,0x73,0x6b,0x69,0x6e,0x2f,0x6a,0x71, + 0x75,0x65,0x72,0x79,0x75,0x69,0x2f,0x6a,0x73,0x2f,0x6a,0x71,0x75,0x65,0x72,0x79, + 0x2e,0x6d,0x69,0x6e,0x2e,0x6a,0x73,0x22,0x3e,0x3c,0x2f,0x73,0x63,0x72,0x69,0x70, + 0x74,0x3e,0x0a,0x3c,0x73,0x63,0x72,0x69,0x70,0x74,0x20,0x74,0x79,0x70,0x65,0x3d, + 0x22,0x74,0x65,0x78,0x74,0x2f,0x6a,0x61,0x76,0x61,0x73,0x63,0x72,0x69,0x70,0x74, + 0x22,0x20,0x73,0x72,0x63,0x3d,0x22,0x2f,0x73,0x6b,0x69,0x6e,0x2f,0x6a,0x71,0x75, + 0x65,0x72,0x79,0x75,0x69,0x2f,0x6a,0x73,0x2f,0x6a,0x71,0x75,0x65,0x72,0x79,0x2d, + 0x75,0x69,0x2e,0x63,0x75,0x73,0x74,0x6f,0x6d,0x2e,0x6d,0x69,0x6e,0x2e,0x6a,0x73, + 0x22,0x3e,0x3c,0x2f,0x73,0x63,0x72,0x69,0x70,0x74,0x3e,0x0a }; -const unsigned char server_home_html_tmpl[]={ - 0x3c,0x68,0x74,0x6d,0x6c,0x3e,0x0a,0x3c,0x68,0x65,0x61,0x64,0x3e,0x0a,0x20,0x20, - 0x3c,0x6d,0x65,0x74,0x61,0x20,0x63,0x68,0x61,0x72,0x73,0x65,0x74,0x3d,0x22,0x55, - 0x54,0x46,0x2d,0x38,0x22,0x20,0x2f,0x3e,0x0a,0x20,0x20,0x3c,0x74,0x69,0x74,0x6c, - 0x65,0x3e,0x57,0x65,0x6c,0x63,0x6f,0x6d,0x65,0x20,0x74,0x6f,0x20,0x4b,0x69,0x77, - 0x69,0x78,0x20,0x53,0x65,0x72,0x76,0x65,0x72,0x3c,0x2f,0x74,0x69,0x74,0x6c,0x65, - 0x3e,0x0a,0x20,0x20,0x3c,0x6c,0x69,0x6e,0x6b,0x20,0x74,0x79,0x70,0x65,0x3d,0x22, - 0x74,0x65,0x78,0x74,0x2f,0x63,0x73,0x73,0x22,0x20,0x68,0x72,0x65,0x66,0x3d,0x22, - 0x2f,0x73,0x6b,0x69,0x6e,0x2f,0x6a,0x71,0x75,0x65,0x72,0x79,0x75,0x69,0x2f,0x63, - 0x73,0x73,0x2f,0x73,0x6d,0x6f,0x6f,0x74,0x68,0x6e,0x65,0x73,0x73,0x2f,0x6a,0x71, - 0x75,0x65,0x72,0x79,0x2d,0x75,0x69,0x2e,0x63,0x75,0x73,0x74,0x6f,0x6d,0x2e,0x63, - 0x73,0x73,0x22,0x20,0x72,0x65,0x6c,0x3d,0x22,0x53,0x74,0x79,0x6c,0x65,0x73,0x68, - 0x65,0x65,0x74,0x22,0x20,0x2f,0x3e,0x0a,0x20,0x20,0x3c,0x73,0x63,0x72,0x69,0x70, - 0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x2f,0x6a,0x61,0x76, - 0x61,0x73,0x63,0x72,0x69,0x70,0x74,0x22,0x20,0x73,0x72,0x63,0x3d,0x22,0x2f,0x73, - 0x6b,0x69,0x6e,0x2f,0x6a,0x71,0x75,0x65,0x72,0x79,0x75,0x69,0x2f,0x6a,0x73,0x2f, - 0x6a,0x71,0x75,0x65,0x72,0x79,0x2e,0x6d,0x69,0x6e,0x2e,0x6a,0x73,0x22,0x3e,0x3c, - 0x2f,0x73,0x63,0x72,0x69,0x70,0x74,0x3e,0x0a,0x20,0x20,0x3c,0x73,0x63,0x72,0x69, - 0x70,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x2f,0x6a,0x61, - 0x76,0x61,0x73,0x63,0x72,0x69,0x70,0x74,0x22,0x20,0x73,0x72,0x63,0x3d,0x22,0x2f, - 0x73,0x6b,0x69,0x6e,0x2f,0x6a,0x71,0x75,0x65,0x72,0x79,0x75,0x69,0x2f,0x6a,0x73, - 0x2f,0x6a,0x71,0x75,0x65,0x72,0x79,0x2d,0x75,0x69,0x2e,0x63,0x75,0x73,0x74,0x6f, - 0x6d,0x2e,0x6d,0x69,0x6e,0x2e,0x6a,0x73,0x22,0x3e,0x3c,0x2f,0x73,0x63,0x72,0x69, - 0x70,0x74,0x3e,0x0a,0x3c,0x73,0x63,0x72,0x69,0x70,0x74,0x3e,0x0a,0x24,0x28,0x66, - 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x20,0x7b,0x0a,0x24,0x28,0x20,0x22, - 0x23,0x61,0x63,0x63,0x6f,0x72,0x64,0x69,0x6f,0x6e,0x22,0x20,0x29,0x2e,0x61,0x63, - 0x63,0x6f,0x72,0x64,0x69,0x6f,0x6e,0x28,0x29,0x3b,0x0a,0x7d,0x29,0x3b,0x0a,0x3c, - 0x2f,0x73,0x63,0x72,0x69,0x70,0x74,0x3e,0x0a,0x3c,0x2f,0x68,0x65,0x61,0x64,0x3e, - 0x0a,0x3c,0x62,0x6f,0x64,0x79,0x3e,0x0a,0x0a,0x3c,0x64,0x69,0x76,0x20,0x69,0x64, - 0x3d,0x22,0x61,0x63,0x63,0x6f,0x72,0x64,0x69,0x6f,0x6e,0x22,0x3e,0x0a,0x20,0x20, - 0x5f,0x5f,0x42,0x4f,0x4f,0x4b,0x53,0x5f,0x5f,0x0a,0x3c,0x2f,0x64,0x69,0x76,0x3e, - 0x0a,0x3c,0x2f,0x62,0x6f,0x64,0x79,0x3e,0x0a,0x3c,0x2f,0x68,0x74,0x6d,0x6c,0x3e, - 0x0a +const unsigned char stopwords_fra[]={ + 0x61,0x6c,0x6f,0x72,0x73,0x0a,0x61,0x75,0x0a,0x61,0x75,0x63,0x75,0x6e,0x73,0x0a, + 0x61,0x75,0x73,0x73,0x69,0x0a,0x61,0x75,0x74,0x72,0x65,0x0a,0x61,0x76,0x61,0x6e, + 0x74,0x0a,0x61,0x76,0x65,0x63,0x0a,0x61,0x76,0x6f,0x69,0x72,0x0a,0x62,0x6f,0x6e, + 0x0a,0x63,0x61,0x72,0x0a,0x63,0x65,0x0a,0x63,0x65,0x6c,0x61,0x0a,0x63,0x65,0x73, + 0x0a,0x63,0x65,0x75,0x78,0x0a,0x63,0x68,0x61,0x71,0x75,0x65,0x0a,0x63,0x69,0x0a, + 0x63,0x6f,0x6d,0x6d,0x65,0x0a,0x63,0x6f,0x6d,0x6d,0x65,0x6e,0x74,0x0a,0x64,0x61, + 0x6e,0x73,0x0a,0x64,0x65,0x73,0x0a,0x64,0x75,0x0a,0x64,0x65,0x64,0x61,0x6e,0x73, + 0x0a,0x64,0x65,0x68,0x6f,0x72,0x73,0x0a,0x64,0x65,0x70,0x75,0x69,0x73,0x0a,0x64, + 0x65,0x75,0x78,0x0a,0x64,0x65,0x76,0x72,0x61,0x69,0x74,0x0a,0x64,0x6f,0x69,0x74, + 0x0a,0x64,0x6f,0x6e,0x63,0x0a,0x64,0x6f,0x73,0x0a,0x64,0x72,0x6f,0x69,0x74,0x65, + 0x0a,0x64,0xc3,0xa9,0x62,0x75,0x74,0x0a,0x65,0x6c,0x6c,0x65,0x0a,0x65,0x6c,0x6c, + 0x65,0x73,0x0a,0x65,0x6e,0x0a,0x65,0x6e,0x63,0x6f,0x72,0x65,0x0a,0x65,0x73,0x73, + 0x61,0x69,0x0a,0x65,0x73,0x74,0x0a,0x65,0x74,0x0a,0x65,0x75,0x0a,0x66,0x61,0x69, + 0x74,0x0a,0x66,0x61,0x69,0x74,0x65,0x73,0x0a,0x66,0x6f,0x69,0x73,0x0a,0x66,0x6f, + 0x6e,0x74,0x0a,0x66,0x6f,0x72,0x63,0x65,0x0a,0x68,0x61,0x75,0x74,0x0a,0x68,0x6f, + 0x72,0x73,0x0a,0x69,0x63,0x69,0x0a,0x69,0x6c,0x0a,0x69,0x6c,0x73,0x0a,0x6a,0x65, + 0x0a,0x6c,0x61,0x0a,0x6c,0x65,0x0a,0x6c,0x65,0x73,0x0a,0x6c,0x65,0x75,0x72,0x0a, + 0x6c,0xc3,0xa0,0x0a,0x6d,0x61,0x0a,0x6d,0x61,0x69,0x6e,0x74,0x65,0x6e,0x61,0x6e, + 0x74,0x0a,0x6d,0x61,0x69,0x73,0x0a,0x6d,0x65,0x73,0x0a,0x6d,0x69,0x6e,0x65,0x0a, + 0x6d,0x6f,0x69,0x6e,0x73,0x0a,0x6d,0x6f,0x6e,0x0a,0x6d,0x6f,0x74,0x0a,0x6d,0xc3, + 0xaa,0x6d,0x65,0x0a,0x6e,0x69,0x0a,0x6e,0x6f,0x6d,0x6d,0xc3,0xa9,0x73,0x0a,0x6e, + 0x6f,0x74,0x72,0x65,0x0a,0x6e,0x6f,0x75,0x73,0x0a,0x6e,0x6f,0x75,0x76,0x65,0x61, + 0x75,0x78,0x0a,0x6f,0x75,0x0a,0x6f,0xc3,0xb9,0x0a,0x70,0x61,0x72,0x0a,0x70,0x61, + 0x72,0x63,0x65,0x0a,0x70,0x61,0x72,0x6f,0x6c,0x65,0x0a,0x70,0x61,0x73,0x0a,0x70, + 0x65,0x72,0x73,0x6f,0x6e,0x6e,0x65,0x73,0x0a,0x70,0x65,0x75,0x74,0x0a,0x70,0x65, + 0x75,0x0a,0x70,0x69,0xc3,0xa8,0x63,0x65,0x0a,0x70,0x6c,0x75,0x70,0x61,0x72,0x74, + 0x0a,0x70,0x6f,0x75,0x72,0x0a,0x70,0x6f,0x75,0x72,0x71,0x75,0x6f,0x69,0x0a,0x71, + 0x75,0x61,0x6e,0x64,0x0a,0x71,0x75,0x65,0x0a,0x71,0x75,0x65,0x6c,0x0a,0x71,0x75, + 0x65,0x6c,0x6c,0x65,0x0a,0x71,0x75,0x65,0x6c,0x6c,0x65,0x73,0x0a,0x71,0x75,0x65, + 0x6c,0x73,0x0a,0x71,0x75,0x69,0x0a,0x73,0x61,0x0a,0x73,0x61,0x6e,0x73,0x0a,0x73, + 0x65,0x73,0x0a,0x73,0x65,0x75,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x0a,0x73,0x69,0x0a, + 0x73,0x69,0x65,0x6e,0x0a,0x73,0x6f,0x6e,0x0a,0x73,0x6f,0x6e,0x74,0x0a,0x73,0x6f, + 0x75,0x73,0x0a,0x73,0x6f,0x79,0x65,0x7a,0x0a,0x73,0x75,0x72,0x0a,0x74,0x61,0x0a, + 0x74,0x61,0x6e,0x64,0x69,0x73,0x0a,0x74,0x65,0x6c,0x6c,0x65,0x6d,0x65,0x6e,0x74, + 0x0a,0x74,0x65,0x6c,0x73,0x0a,0x74,0x65,0x73,0x0a,0x74,0x6f,0x6e,0x0a,0x74,0x6f, + 0x75,0x73,0x0a,0x74,0x6f,0x75,0x74,0x0a,0x74,0x72,0x6f,0x70,0x0a,0x74,0x72,0xc3, + 0xa8,0x73,0x0a,0x74,0x75,0x0a,0x76,0x61,0x6c,0x65,0x75,0x72,0x0a,0x76,0x6f,0x69, + 0x65,0x0a,0x76,0x6f,0x69,0x65,0x6e,0x74,0x0a,0x76,0x6f,0x6e,0x74,0x0a,0x76,0x6f, + 0x74,0x72,0x65,0x0a,0x76,0x6f,0x75,0x73,0x0a,0x76,0x75,0x0a,0xc3,0xa7,0x61,0x0a, + 0xc3,0xa9,0x74,0x61,0x69,0x65,0x6e,0x74,0x0a,0xc3,0xa9,0x74,0x61,0x74,0x0a,0xc3, + 0xa9,0x74,0x69,0x6f,0x6e,0x73,0x0a,0xc3,0xa9,0x74,0xc3,0xa9,0x0a,0xc3,0xaa,0x74, + 0x72,0x65,0x0a }; -const unsigned char server_taskbar_html_part[]={ - 0x3c,0x73,0x63,0x72,0x69,0x70,0x74,0x3e,0x0a,0x20,0x20,0x24,0x28,0x66,0x75,0x6e, - 0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x24,0x28,0x20,0x22, - 0x23,0x6b,0x69,0x77,0x69,0x78,0x73,0x65,0x61,0x72,0x63,0x68,0x62,0x6f,0x78,0x22, - 0x20,0x29,0x2e,0x61,0x75,0x74,0x6f,0x63,0x6f,0x6d,0x70,0x6c,0x65,0x74,0x65,0x28, - 0x7b,0x0a,0x0a,0x20,0x20,0x73,0x6f,0x75,0x72,0x63,0x65,0x3a,0x20,0x22,0x2f,0x73, - 0x75,0x67,0x67,0x65,0x73,0x74,0x3f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3d,0x5f, - 0x5f,0x43,0x4f,0x4e,0x54,0x45,0x4e,0x54,0x5f,0x5f,0x22,0x2c,0x0a,0x20,0x20,0x64, - 0x61,0x74,0x61,0x54,0x79,0x70,0x65,0x3a,0x20,0x22,0x6a,0x73,0x6f,0x6e,0x22,0x2c, - 0x0a,0x20,0x20,0x63,0x61,0x63,0x68,0x65,0x3a,0x20,0x66,0x61,0x6c,0x73,0x65,0x2c, - 0x0a,0x0a,0x20,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x3a,0x20,0x66,0x75,0x6e,0x63, - 0x74,0x69,0x6f,0x6e,0x28,0x65,0x76,0x65,0x6e,0x74,0x2c,0x20,0x75,0x69,0x29,0x20, - 0x7b,0x0a,0x20,0x20,0x24,0x28,0x20,0x22,0x23,0x6b,0x69,0x77,0x69,0x78,0x73,0x65, - 0x61,0x72,0x63,0x68,0x66,0x6f,0x72,0x6d,0x22,0x20,0x29,0x2e,0x73,0x75,0x62,0x6d, - 0x69,0x74,0x28,0x29,0x3b,0x0a,0x20,0x20,0x7d,0x2c,0x0a,0x0a,0x20,0x20,0x7d,0x29, - 0x3b,0x0a,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x3c,0x2f,0x73,0x63,0x72,0x69,0x70,0x74, - 0x3e,0x0a,0x0a,0x3c,0x73,0x70,0x61,0x6e,0x20,0x69,0x64,0x3d,0x22,0x6b,0x69,0x77, - 0x69,0x78,0x74,0x6f,0x6f,0x6c,0x62,0x61,0x72,0x22,0x20,0x63,0x6c,0x61,0x73,0x73, - 0x3d,0x22,0x75,0x69,0x2d,0x77,0x69,0x64,0x67,0x65,0x74,0x2d,0x68,0x65,0x61,0x64, - 0x65,0x72,0x20,0x75,0x69,0x2d,0x63,0x6f,0x72,0x6e,0x65,0x72,0x2d,0x61,0x6c,0x6c, - 0x22,0x3e,0x0a,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x69,0x64,0x3d, - 0x22,0x6b,0x69,0x77,0x69,0x78,0x6c,0x69,0x62,0x72,0x61,0x72,0x79,0x22,0x20,0x6f, - 0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6c, - 0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x68,0x72,0x65,0x66,0x3d,0x27,0x2f,0x27, - 0x3b,0x22,0x3e,0x4c,0x69,0x62,0x72,0x61,0x72,0x79,0x3c,0x2f,0x62,0x75,0x74,0x74, - 0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x69,0x64, - 0x3d,0x22,0x6b,0x69,0x77,0x69,0x78,0x68,0x6f,0x6d,0x65,0x22,0x20,0x6f,0x6e,0x63, - 0x6c,0x69,0x63,0x6b,0x3d,0x22,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6c,0x6f,0x63, - 0x61,0x74,0x69,0x6f,0x6e,0x2e,0x68,0x72,0x65,0x66,0x3d,0x27,0x2f,0x5f,0x5f,0x43, - 0x4f,0x4e,0x54,0x45,0x4e,0x54,0x5f,0x5f,0x2f,0x27,0x3b,0x22,0x3e,0x48,0x6f,0x6d, - 0x65,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x3c,0x66,0x6f, - 0x72,0x6d,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x3d,0x22,0x47,0x45,0x54,0x22,0x20, - 0x61,0x63,0x74,0x69,0x6f,0x6e,0x3d,0x22,0x2f,0x73,0x65,0x61,0x72,0x63,0x68,0x22, - 0x20,0x69,0x64,0x3d,0x22,0x6b,0x69,0x77,0x69,0x78,0x73,0x65,0x61,0x72,0x63,0x68, - 0x66,0x6f,0x72,0x6d,0x22,0x2f,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x69,0x6e,0x70, - 0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x68,0x69,0x64,0x64,0x65,0x6e,0x22, - 0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x22,0x20, - 0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x5f,0x5f,0x43,0x4f,0x4e,0x54,0x45,0x4e,0x54, - 0x5f,0x5f,0x22,0x20,0x2f,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x69,0x6e,0x70,0x75, - 0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x73,0x75,0x62,0x6d,0x69,0x74,0x22,0x20, - 0x69,0x64,0x3d,0x22,0x6b,0x69,0x77,0x69,0x78,0x73,0x65,0x61,0x72,0x63,0x68,0x22, - 0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x53,0x65,0x61,0x72,0x63,0x68,0x22,0x20, - 0x2f,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x69,0x64, - 0x3d,0x22,0x6b,0x69,0x77,0x69,0x78,0x73,0x65,0x61,0x72,0x63,0x68,0x62,0x6f,0x78, - 0x22,0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x22, - 0x2f,0x3e,0x0a,0x20,0x20,0x3c,0x2f,0x66,0x6f,0x72,0x6d,0x3e,0x0a,0x3c,0x2f,0x73, - 0x70,0x61,0x6e,0x3e,0x0a,0x3c,0x64,0x69,0x76,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d, - 0x22,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x3b, - 0x20,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x20,0x34,0x30,0x70,0x78,0x3b,0x22,0x3e, - 0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a +const unsigned char stopwords_en[]={ + 0x61,0x0a,0x61,0x62,0x6c,0x65,0x0a,0x61,0x62,0x6f,0x75,0x74,0x0a,0x61,0x62,0x6f, + 0x76,0x65,0x0a,0x61,0x62,0x73,0x74,0x0a,0x61,0x63,0x63,0x6f,0x72,0x64,0x61,0x6e, + 0x63,0x65,0x0a,0x61,0x63,0x63,0x6f,0x72,0x64,0x69,0x6e,0x67,0x0a,0x61,0x63,0x63, + 0x6f,0x72,0x64,0x69,0x6e,0x67,0x6c,0x79,0x0a,0x61,0x63,0x72,0x6f,0x73,0x73,0x0a, + 0x61,0x63,0x74,0x0a,0x61,0x63,0x74,0x75,0x61,0x6c,0x6c,0x79,0x0a,0x61,0x64,0x64, + 0x65,0x64,0x0a,0x61,0x64,0x6a,0x0a,0x61,0x64,0x6f,0x70,0x74,0x65,0x64,0x0a,0x61, + 0x66,0x66,0x65,0x63,0x74,0x65,0x64,0x0a,0x61,0x66,0x66,0x65,0x63,0x74,0x69,0x6e, + 0x67,0x0a,0x61,0x66,0x66,0x65,0x63,0x74,0x73,0x0a,0x61,0x66,0x74,0x65,0x72,0x0a, + 0x61,0x66,0x74,0x65,0x72,0x77,0x61,0x72,0x64,0x73,0x0a,0x61,0x67,0x61,0x69,0x6e, + 0x0a,0x61,0x67,0x61,0x69,0x6e,0x73,0x74,0x0a,0x61,0x68,0x0a,0x61,0x6c,0x6c,0x0a, + 0x61,0x6c,0x6d,0x6f,0x73,0x74,0x0a,0x61,0x6c,0x6f,0x6e,0x65,0x0a,0x61,0x6c,0x6f, + 0x6e,0x67,0x0a,0x61,0x6c,0x72,0x65,0x61,0x64,0x79,0x0a,0x61,0x6c,0x73,0x6f,0x0a, + 0x61,0x6c,0x74,0x68,0x6f,0x75,0x67,0x68,0x0a,0x61,0x6c,0x77,0x61,0x79,0x73,0x0a, + 0x61,0x6d,0x0a,0x61,0x6d,0x6f,0x6e,0x67,0x0a,0x61,0x6d,0x6f,0x6e,0x67,0x73,0x74, + 0x0a,0x61,0x6e,0x0a,0x61,0x6e,0x64,0x0a,0x61,0x6e,0x6e,0x6f,0x75,0x6e,0x63,0x65, + 0x0a,0x61,0x6e,0x6f,0x74,0x68,0x65,0x72,0x0a,0x61,0x6e,0x79,0x0a,0x61,0x6e,0x79, + 0x62,0x6f,0x64,0x79,0x0a,0x61,0x6e,0x79,0x68,0x6f,0x77,0x0a,0x61,0x6e,0x79,0x6d, + 0x6f,0x72,0x65,0x0a,0x61,0x6e,0x79,0x6f,0x6e,0x65,0x0a,0x61,0x6e,0x79,0x74,0x68, + 0x69,0x6e,0x67,0x0a,0x61,0x6e,0x79,0x77,0x61,0x79,0x0a,0x61,0x6e,0x79,0x77,0x61, + 0x79,0x73,0x0a,0x61,0x6e,0x79,0x77,0x68,0x65,0x72,0x65,0x0a,0x61,0x70,0x70,0x61, + 0x72,0x65,0x6e,0x74,0x6c,0x79,0x0a,0x61,0x70,0x70,0x72,0x6f,0x78,0x69,0x6d,0x61, + 0x74,0x65,0x6c,0x79,0x0a,0x61,0x72,0x65,0x0a,0x61,0x72,0x65,0x6e,0x0a,0x61,0x72, + 0x65,0x6e,0x74,0x0a,0x61,0x72,0x69,0x73,0x65,0x0a,0x61,0x72,0x6f,0x75,0x6e,0x64, + 0x0a,0x61,0x73,0x0a,0x61,0x73,0x69,0x64,0x65,0x0a,0x61,0x73,0x6b,0x0a,0x61,0x73, + 0x6b,0x69,0x6e,0x67,0x0a,0x61,0x74,0x0a,0x61,0x75,0x74,0x68,0x0a,0x61,0x76,0x61, + 0x69,0x6c,0x61,0x62,0x6c,0x65,0x0a,0x61,0x77,0x61,0x79,0x0a,0x61,0x77,0x66,0x75, + 0x6c,0x6c,0x79,0x0a,0x62,0x0a,0x62,0x61,0x63,0x6b,0x0a,0x62,0x65,0x0a,0x62,0x65, + 0x63,0x61,0x6d,0x65,0x0a,0x62,0x65,0x63,0x61,0x75,0x73,0x65,0x0a,0x62,0x65,0x63, + 0x6f,0x6d,0x65,0x0a,0x62,0x65,0x63,0x6f,0x6d,0x65,0x73,0x0a,0x62,0x65,0x63,0x6f, + 0x6d,0x69,0x6e,0x67,0x0a,0x62,0x65,0x65,0x6e,0x0a,0x62,0x65,0x66,0x6f,0x72,0x65, + 0x0a,0x62,0x65,0x66,0x6f,0x72,0x65,0x68,0x61,0x6e,0x64,0x0a,0x62,0x65,0x67,0x69, + 0x6e,0x0a,0x62,0x65,0x67,0x69,0x6e,0x6e,0x69,0x6e,0x67,0x0a,0x62,0x65,0x67,0x69, + 0x6e,0x6e,0x69,0x6e,0x67,0x73,0x0a,0x62,0x65,0x67,0x69,0x6e,0x73,0x0a,0x62,0x65, + 0x68,0x69,0x6e,0x64,0x0a,0x62,0x65,0x69,0x6e,0x67,0x0a,0x62,0x65,0x6c,0x69,0x65, + 0x76,0x65,0x0a,0x62,0x65,0x6c,0x6f,0x77,0x0a,0x62,0x65,0x73,0x69,0x64,0x65,0x0a, + 0x62,0x65,0x73,0x69,0x64,0x65,0x73,0x0a,0x62,0x65,0x74,0x77,0x65,0x65,0x6e,0x0a, + 0x62,0x65,0x79,0x6f,0x6e,0x64,0x0a,0x62,0x69,0x6f,0x6c,0x0a,0x62,0x6f,0x74,0x68, + 0x0a,0x62,0x72,0x69,0x65,0x66,0x0a,0x62,0x72,0x69,0x65,0x66,0x6c,0x79,0x0a,0x62, + 0x75,0x74,0x0a,0x62,0x79,0x0a,0x63,0x0a,0x63,0x61,0x0a,0x63,0x61,0x6d,0x65,0x0a, + 0x63,0x61,0x6e,0x0a,0x63,0x61,0x6e,0x6e,0x6f,0x74,0x0a,0x63,0x61,0x6e,0x27,0x74, + 0x0a,0x63,0x61,0x75,0x73,0x65,0x0a,0x63,0x61,0x75,0x73,0x65,0x73,0x0a,0x63,0x65, + 0x72,0x74,0x61,0x69,0x6e,0x0a,0x63,0x65,0x72,0x74,0x61,0x69,0x6e,0x6c,0x79,0x0a, + 0x63,0x6f,0x0a,0x63,0x6f,0x6d,0x0a,0x63,0x6f,0x6d,0x65,0x0a,0x63,0x6f,0x6d,0x65, + 0x73,0x0a,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x0a,0x63,0x6f,0x6e,0x74,0x61,0x69, + 0x6e,0x69,0x6e,0x67,0x0a,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x73,0x0a,0x63,0x6f, + 0x75,0x6c,0x64,0x0a,0x63,0x6f,0x75,0x6c,0x64,0x6e,0x74,0x0a,0x64,0x0a,0x64,0x61, + 0x74,0x65,0x0a,0x64,0x69,0x64,0x0a,0x64,0x69,0x64,0x6e,0x27,0x74,0x0a,0x64,0x69, + 0x66,0x66,0x65,0x72,0x65,0x6e,0x74,0x0a,0x64,0x6f,0x0a,0x64,0x6f,0x65,0x73,0x0a, + 0x64,0x6f,0x65,0x73,0x6e,0x27,0x74,0x0a,0x64,0x6f,0x69,0x6e,0x67,0x0a,0x64,0x6f, + 0x6e,0x65,0x0a,0x64,0x6f,0x6e,0x27,0x74,0x0a,0x64,0x6f,0x77,0x6e,0x0a,0x64,0x6f, + 0x77,0x6e,0x77,0x61,0x72,0x64,0x73,0x0a,0x64,0x75,0x65,0x0a,0x64,0x75,0x72,0x69, + 0x6e,0x67,0x0a,0x65,0x0a,0x65,0x61,0x63,0x68,0x0a,0x65,0x64,0x0a,0x65,0x64,0x75, + 0x0a,0x65,0x66,0x66,0x65,0x63,0x74,0x0a,0x65,0x67,0x0a,0x65,0x69,0x67,0x68,0x74, + 0x0a,0x65,0x69,0x67,0x68,0x74,0x79,0x0a,0x65,0x69,0x74,0x68,0x65,0x72,0x0a,0x65, + 0x6c,0x73,0x65,0x0a,0x65,0x6c,0x73,0x65,0x77,0x68,0x65,0x72,0x65,0x0a,0x65,0x6e, + 0x64,0x0a,0x65,0x6e,0x64,0x69,0x6e,0x67,0x0a,0x65,0x6e,0x6f,0x75,0x67,0x68,0x0a, + 0x65,0x73,0x70,0x65,0x63,0x69,0x61,0x6c,0x6c,0x79,0x0a,0x65,0x74,0x0a,0x65,0x74, + 0x2d,0x61,0x6c,0x0a,0x65,0x74,0x63,0x0a,0x65,0x76,0x65,0x6e,0x0a,0x65,0x76,0x65, + 0x72,0x0a,0x65,0x76,0x65,0x72,0x79,0x0a,0x65,0x76,0x65,0x72,0x79,0x62,0x6f,0x64, + 0x79,0x0a,0x65,0x76,0x65,0x72,0x79,0x6f,0x6e,0x65,0x0a,0x65,0x76,0x65,0x72,0x79, + 0x74,0x68,0x69,0x6e,0x67,0x0a,0x65,0x76,0x65,0x72,0x79,0x77,0x68,0x65,0x72,0x65, + 0x0a,0x65,0x78,0x0a,0x65,0x78,0x63,0x65,0x70,0x74,0x0a,0x66,0x0a,0x66,0x61,0x72, + 0x0a,0x66,0x65,0x77,0x0a,0x66,0x66,0x0a,0x66,0x69,0x66,0x74,0x68,0x0a,0x66,0x69, + 0x72,0x73,0x74,0x0a,0x66,0x69,0x76,0x65,0x0a,0x66,0x69,0x78,0x0a,0x66,0x6f,0x6c, + 0x6c,0x6f,0x77,0x65,0x64,0x0a,0x66,0x6f,0x6c,0x6c,0x6f,0x77,0x69,0x6e,0x67,0x0a, + 0x66,0x6f,0x6c,0x6c,0x6f,0x77,0x73,0x0a,0x66,0x6f,0x72,0x0a,0x66,0x6f,0x72,0x6d, + 0x65,0x72,0x0a,0x66,0x6f,0x72,0x6d,0x65,0x72,0x6c,0x79,0x0a,0x66,0x6f,0x72,0x74, + 0x68,0x0a,0x66,0x6f,0x75,0x6e,0x64,0x0a,0x66,0x6f,0x75,0x72,0x0a,0x66,0x72,0x6f, + 0x6d,0x0a,0x66,0x75,0x72,0x74,0x68,0x65,0x72,0x0a,0x66,0x75,0x72,0x74,0x68,0x65, + 0x72,0x6d,0x6f,0x72,0x65,0x0a,0x67,0x0a,0x67,0x61,0x76,0x65,0x0a,0x67,0x65,0x74, + 0x0a,0x67,0x65,0x74,0x73,0x0a,0x67,0x65,0x74,0x74,0x69,0x6e,0x67,0x0a,0x67,0x69, + 0x76,0x65,0x0a,0x67,0x69,0x76,0x65,0x6e,0x0a,0x67,0x69,0x76,0x65,0x73,0x0a,0x67, + 0x69,0x76,0x69,0x6e,0x67,0x0a,0x67,0x6f,0x0a,0x67,0x6f,0x65,0x73,0x0a,0x67,0x6f, + 0x6e,0x65,0x0a,0x67,0x6f,0x74,0x0a,0x67,0x6f,0x74,0x74,0x65,0x6e,0x0a,0x68,0x0a, + 0x68,0x61,0x64,0x0a,0x68,0x61,0x70,0x70,0x65,0x6e,0x73,0x0a,0x68,0x61,0x72,0x64, + 0x6c,0x79,0x0a,0x68,0x61,0x73,0x0a,0x68,0x61,0x73,0x6e,0x27,0x74,0x0a,0x68,0x61, + 0x76,0x65,0x0a,0x68,0x61,0x76,0x65,0x6e,0x27,0x74,0x0a,0x68,0x61,0x76,0x69,0x6e, + 0x67,0x0a,0x68,0x65,0x0a,0x68,0x65,0x64,0x0a,0x68,0x65,0x6e,0x63,0x65,0x0a,0x68, + 0x65,0x72,0x0a,0x68,0x65,0x72,0x65,0x0a,0x68,0x65,0x72,0x65,0x61,0x66,0x74,0x65, + 0x72,0x0a,0x68,0x65,0x72,0x65,0x62,0x79,0x0a,0x68,0x65,0x72,0x65,0x69,0x6e,0x0a, + 0x68,0x65,0x72,0x65,0x73,0x0a,0x68,0x65,0x72,0x65,0x75,0x70,0x6f,0x6e,0x0a,0x68, + 0x65,0x72,0x73,0x0a,0x68,0x65,0x72,0x73,0x65,0x6c,0x66,0x0a,0x68,0x65,0x73,0x0a, + 0x68,0x69,0x0a,0x68,0x69,0x64,0x0a,0x68,0x69,0x6d,0x0a,0x68,0x69,0x6d,0x73,0x65, + 0x6c,0x66,0x0a,0x68,0x69,0x73,0x0a,0x68,0x69,0x74,0x68,0x65,0x72,0x0a,0x68,0x6f, + 0x6d,0x65,0x0a,0x68,0x6f,0x77,0x0a,0x68,0x6f,0x77,0x62,0x65,0x69,0x74,0x0a,0x68, + 0x6f,0x77,0x65,0x76,0x65,0x72,0x0a,0x68,0x75,0x6e,0x64,0x72,0x65,0x64,0x0a,0x69, + 0x0a,0x69,0x64,0x0a,0x69,0x65,0x0a,0x69,0x66,0x0a,0x69,0x27,0x6c,0x6c,0x0a,0x69, + 0x6d,0x0a,0x69,0x6d,0x6d,0x65,0x64,0x69,0x61,0x74,0x65,0x0a,0x69,0x6d,0x6d,0x65, + 0x64,0x69,0x61,0x74,0x65,0x6c,0x79,0x0a,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e, + 0x63,0x65,0x0a,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x0a,0x69,0x6e,0x0a, + 0x69,0x6e,0x63,0x0a,0x69,0x6e,0x64,0x65,0x65,0x64,0x0a,0x69,0x6e,0x64,0x65,0x78, + 0x0a,0x69,0x6e,0x66,0x6f,0x72,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x0a,0x69,0x6e,0x73, + 0x74,0x65,0x61,0x64,0x0a,0x69,0x6e,0x74,0x6f,0x0a,0x69,0x6e,0x76,0x65,0x6e,0x74, + 0x69,0x6f,0x6e,0x0a,0x69,0x6e,0x77,0x61,0x72,0x64,0x0a,0x69,0x73,0x0a,0x69,0x73, + 0x6e,0x27,0x74,0x0a,0x69,0x74,0x0a,0x69,0x74,0x64,0x0a,0x69,0x74,0x27,0x6c,0x6c, + 0x0a,0x69,0x74,0x73,0x0a,0x69,0x74,0x73,0x65,0x6c,0x66,0x0a,0x69,0x27,0x76,0x65, + 0x0a,0x6a,0x0a,0x6a,0x75,0x73,0x74,0x0a,0x6b,0x0a,0x6b,0x65,0x65,0x70,0x0a,0x6b, + 0x65,0x65,0x70,0x73,0x0a,0x6b,0x65,0x70,0x74,0x0a,0x6b,0x65,0x79,0x73,0x0a,0x6b, + 0x67,0x0a,0x6b,0x6d,0x0a,0x6b,0x6e,0x6f,0x77,0x0a,0x6b,0x6e,0x6f,0x77,0x6e,0x0a, + 0x6b,0x6e,0x6f,0x77,0x73,0x0a,0x6c,0x0a,0x6c,0x61,0x72,0x67,0x65,0x6c,0x79,0x0a, + 0x6c,0x61,0x73,0x74,0x0a,0x6c,0x61,0x74,0x65,0x6c,0x79,0x0a,0x6c,0x61,0x74,0x65, + 0x72,0x0a,0x6c,0x61,0x74,0x74,0x65,0x72,0x0a,0x6c,0x61,0x74,0x74,0x65,0x72,0x6c, + 0x79,0x0a,0x6c,0x65,0x61,0x73,0x74,0x0a,0x6c,0x65,0x73,0x73,0x0a,0x6c,0x65,0x73, + 0x74,0x0a,0x6c,0x65,0x74,0x0a,0x6c,0x65,0x74,0x73,0x0a,0x6c,0x69,0x6b,0x65,0x0a, + 0x6c,0x69,0x6b,0x65,0x64,0x0a,0x6c,0x69,0x6b,0x65,0x6c,0x79,0x0a,0x6c,0x69,0x6e, + 0x65,0x0a,0x6c,0x69,0x74,0x74,0x6c,0x65,0x0a,0x27,0x6c,0x6c,0x0a,0x6c,0x6f,0x6f, + 0x6b,0x0a,0x6c,0x6f,0x6f,0x6b,0x69,0x6e,0x67,0x0a,0x6c,0x6f,0x6f,0x6b,0x73,0x0a, + 0x6c,0x74,0x64,0x0a,0x6d,0x0a,0x6d,0x61,0x64,0x65,0x0a,0x6d,0x61,0x69,0x6e,0x6c, + 0x79,0x0a,0x6d,0x61,0x6b,0x65,0x0a,0x6d,0x61,0x6b,0x65,0x73,0x0a,0x6d,0x61,0x6e, + 0x79,0x0a,0x6d,0x61,0x79,0x0a,0x6d,0x61,0x79,0x62,0x65,0x0a,0x6d,0x65,0x0a,0x6d, + 0x65,0x61,0x6e,0x0a,0x6d,0x65,0x61,0x6e,0x73,0x0a,0x6d,0x65,0x61,0x6e,0x74,0x69, + 0x6d,0x65,0x0a,0x6d,0x65,0x61,0x6e,0x77,0x68,0x69,0x6c,0x65,0x0a,0x6d,0x65,0x72, + 0x65,0x6c,0x79,0x0a,0x6d,0x67,0x0a,0x6d,0x69,0x67,0x68,0x74,0x0a,0x6d,0x69,0x6c, + 0x6c,0x69,0x6f,0x6e,0x0a,0x6d,0x69,0x73,0x73,0x0a,0x6d,0x6c,0x0a,0x6d,0x6f,0x72, + 0x65,0x0a,0x6d,0x6f,0x72,0x65,0x6f,0x76,0x65,0x72,0x0a,0x6d,0x6f,0x73,0x74,0x0a, + 0x6d,0x6f,0x73,0x74,0x6c,0x79,0x0a,0x6d,0x72,0x0a,0x6d,0x72,0x73,0x0a,0x6d,0x75, + 0x63,0x68,0x0a,0x6d,0x75,0x67,0x0a,0x6d,0x75,0x73,0x74,0x0a,0x6d,0x79,0x0a,0x6d, + 0x79,0x73,0x65,0x6c,0x66,0x0a,0x6e,0x0a,0x6e,0x61,0x0a,0x6e,0x61,0x6d,0x65,0x0a, + 0x6e,0x61,0x6d,0x65,0x6c,0x79,0x0a,0x6e,0x61,0x79,0x0a,0x6e,0x64,0x0a,0x6e,0x65, + 0x61,0x72,0x0a,0x6e,0x65,0x61,0x72,0x6c,0x79,0x0a,0x6e,0x65,0x63,0x65,0x73,0x73, + 0x61,0x72,0x69,0x6c,0x79,0x0a,0x6e,0x65,0x63,0x65,0x73,0x73,0x61,0x72,0x79,0x0a, + 0x6e,0x65,0x65,0x64,0x0a,0x6e,0x65,0x65,0x64,0x73,0x0a,0x6e,0x65,0x69,0x74,0x68, + 0x65,0x72,0x0a,0x6e,0x65,0x76,0x65,0x72,0x0a,0x6e,0x65,0x76,0x65,0x72,0x74,0x68, + 0x65,0x6c,0x65,0x73,0x73,0x0a,0x6e,0x65,0x77,0x0a,0x6e,0x65,0x78,0x74,0x0a,0x6e, + 0x69,0x6e,0x65,0x0a,0x6e,0x69,0x6e,0x65,0x74,0x79,0x0a,0x6e,0x6f,0x0a,0x6e,0x6f, + 0x62,0x6f,0x64,0x79,0x0a,0x6e,0x6f,0x6e,0x0a,0x6e,0x6f,0x6e,0x65,0x0a,0x6e,0x6f, + 0x6e,0x65,0x74,0x68,0x65,0x6c,0x65,0x73,0x73,0x0a,0x6e,0x6f,0x6f,0x6e,0x65,0x0a, + 0x6e,0x6f,0x72,0x0a,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x6c,0x79,0x0a,0x6e,0x6f,0x73, + 0x0a,0x6e,0x6f,0x74,0x0a,0x6e,0x6f,0x74,0x65,0x64,0x0a,0x6e,0x6f,0x74,0x68,0x69, + 0x6e,0x67,0x0a,0x6e,0x6f,0x77,0x0a,0x6e,0x6f,0x77,0x68,0x65,0x72,0x65,0x0a,0x6f, + 0x0a,0x6f,0x62,0x74,0x61,0x69,0x6e,0x0a,0x6f,0x62,0x74,0x61,0x69,0x6e,0x65,0x64, + 0x0a,0x6f,0x62,0x76,0x69,0x6f,0x75,0x73,0x6c,0x79,0x0a,0x6f,0x66,0x0a,0x6f,0x66, + 0x66,0x0a,0x6f,0x66,0x74,0x65,0x6e,0x0a,0x6f,0x68,0x0a,0x6f,0x6b,0x0a,0x6f,0x6b, + 0x61,0x79,0x0a,0x6f,0x6c,0x64,0x0a,0x6f,0x6d,0x69,0x74,0x74,0x65,0x64,0x0a,0x6f, + 0x6e,0x0a,0x6f,0x6e,0x63,0x65,0x0a,0x6f,0x6e,0x65,0x0a,0x6f,0x6e,0x65,0x73,0x0a, + 0x6f,0x6e,0x6c,0x79,0x0a,0x6f,0x6e,0x74,0x6f,0x0a,0x6f,0x72,0x0a,0x6f,0x72,0x64, + 0x0a,0x6f,0x74,0x68,0x65,0x72,0x0a,0x6f,0x74,0x68,0x65,0x72,0x73,0x0a,0x6f,0x74, + 0x68,0x65,0x72,0x77,0x69,0x73,0x65,0x0a,0x6f,0x75,0x67,0x68,0x74,0x0a,0x6f,0x75, + 0x72,0x0a,0x6f,0x75,0x72,0x73,0x0a,0x6f,0x75,0x72,0x73,0x65,0x6c,0x76,0x65,0x73, + 0x0a,0x6f,0x75,0x74,0x0a,0x6f,0x75,0x74,0x73,0x69,0x64,0x65,0x0a,0x6f,0x76,0x65, + 0x72,0x0a,0x6f,0x76,0x65,0x72,0x61,0x6c,0x6c,0x0a,0x6f,0x77,0x69,0x6e,0x67,0x0a, + 0x6f,0x77,0x6e,0x0a,0x70,0x0a,0x70,0x61,0x67,0x65,0x0a,0x70,0x61,0x67,0x65,0x73, + 0x0a,0x70,0x61,0x72,0x74,0x0a,0x70,0x61,0x72,0x74,0x69,0x63,0x75,0x6c,0x61,0x72, + 0x0a,0x70,0x61,0x72,0x74,0x69,0x63,0x75,0x6c,0x61,0x72,0x6c,0x79,0x0a,0x70,0x61, + 0x73,0x74,0x0a,0x70,0x65,0x72,0x0a,0x70,0x65,0x72,0x68,0x61,0x70,0x73,0x0a,0x70, + 0x6c,0x61,0x63,0x65,0x64,0x0a,0x70,0x6c,0x65,0x61,0x73,0x65,0x0a,0x70,0x6c,0x75, + 0x73,0x0a,0x70,0x6f,0x6f,0x72,0x6c,0x79,0x0a,0x70,0x6f,0x73,0x73,0x69,0x62,0x6c, + 0x65,0x0a,0x70,0x6f,0x73,0x73,0x69,0x62,0x6c,0x79,0x0a,0x70,0x6f,0x74,0x65,0x6e, + 0x74,0x69,0x61,0x6c,0x6c,0x79,0x0a,0x70,0x70,0x0a,0x70,0x72,0x65,0x64,0x6f,0x6d, + 0x69,0x6e,0x61,0x6e,0x74,0x6c,0x79,0x0a,0x70,0x72,0x65,0x73,0x65,0x6e,0x74,0x0a, + 0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x6c,0x79,0x0a,0x70,0x72,0x69,0x6d,0x61, + 0x72,0x69,0x6c,0x79,0x0a,0x70,0x72,0x6f,0x62,0x61,0x62,0x6c,0x79,0x0a,0x70,0x72, + 0x6f,0x6d,0x70,0x74,0x6c,0x79,0x0a,0x70,0x72,0x6f,0x75,0x64,0x0a,0x70,0x72,0x6f, + 0x76,0x69,0x64,0x65,0x73,0x0a,0x70,0x75,0x74,0x0a,0x71,0x0a,0x71,0x75,0x65,0x0a, + 0x71,0x75,0x69,0x63,0x6b,0x6c,0x79,0x0a,0x71,0x75,0x69,0x74,0x65,0x0a,0x71,0x76, + 0x0a,0x72,0x0a,0x72,0x61,0x6e,0x0a,0x72,0x61,0x74,0x68,0x65,0x72,0x0a,0x72,0x64, + 0x0a,0x72,0x65,0x0a,0x72,0x65,0x61,0x64,0x69,0x6c,0x79,0x0a,0x72,0x65,0x61,0x6c, + 0x6c,0x79,0x0a,0x72,0x65,0x63,0x65,0x6e,0x74,0x0a,0x72,0x65,0x63,0x65,0x6e,0x74, + 0x6c,0x79,0x0a,0x72,0x65,0x66,0x0a,0x72,0x65,0x66,0x73,0x0a,0x72,0x65,0x67,0x61, + 0x72,0x64,0x69,0x6e,0x67,0x0a,0x72,0x65,0x67,0x61,0x72,0x64,0x6c,0x65,0x73,0x73, + 0x0a,0x72,0x65,0x67,0x61,0x72,0x64,0x73,0x0a,0x72,0x65,0x6c,0x61,0x74,0x65,0x64, + 0x0a,0x72,0x65,0x6c,0x61,0x74,0x69,0x76,0x65,0x6c,0x79,0x0a,0x72,0x65,0x73,0x65, + 0x61,0x72,0x63,0x68,0x0a,0x72,0x65,0x73,0x70,0x65,0x63,0x74,0x69,0x76,0x65,0x6c, + 0x79,0x0a,0x72,0x65,0x73,0x75,0x6c,0x74,0x65,0x64,0x0a,0x72,0x65,0x73,0x75,0x6c, + 0x74,0x69,0x6e,0x67,0x0a,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x0a,0x72,0x69,0x67, + 0x68,0x74,0x0a,0x72,0x75,0x6e,0x0a,0x73,0x0a,0x73,0x61,0x69,0x64,0x0a,0x73,0x61, + 0x6d,0x65,0x0a,0x73,0x61,0x77,0x0a,0x73,0x61,0x79,0x0a,0x73,0x61,0x79,0x69,0x6e, + 0x67,0x0a,0x73,0x61,0x79,0x73,0x0a,0x73,0x65,0x63,0x0a,0x73,0x65,0x63,0x74,0x69, + 0x6f,0x6e,0x0a,0x73,0x65,0x65,0x0a,0x73,0x65,0x65,0x69,0x6e,0x67,0x0a,0x73,0x65, + 0x65,0x6d,0x0a,0x73,0x65,0x65,0x6d,0x65,0x64,0x0a,0x73,0x65,0x65,0x6d,0x69,0x6e, + 0x67,0x0a,0x73,0x65,0x65,0x6d,0x73,0x0a,0x73,0x65,0x65,0x6e,0x0a,0x73,0x65,0x6c, + 0x66,0x0a,0x73,0x65,0x6c,0x76,0x65,0x73,0x0a,0x73,0x65,0x6e,0x74,0x0a,0x73,0x65, + 0x76,0x65,0x6e,0x0a,0x73,0x65,0x76,0x65,0x72,0x61,0x6c,0x0a,0x73,0x68,0x61,0x6c, + 0x6c,0x0a,0x73,0x68,0x65,0x0a,0x73,0x68,0x65,0x64,0x0a,0x73,0x68,0x65,0x27,0x6c, + 0x6c,0x0a,0x73,0x68,0x65,0x73,0x0a,0x73,0x68,0x6f,0x75,0x6c,0x64,0x0a,0x73,0x68, + 0x6f,0x75,0x6c,0x64,0x6e,0x27,0x74,0x0a,0x73,0x68,0x6f,0x77,0x0a,0x73,0x68,0x6f, + 0x77,0x65,0x64,0x0a,0x73,0x68,0x6f,0x77,0x6e,0x0a,0x73,0x68,0x6f,0x77,0x6e,0x73, + 0x0a,0x73,0x68,0x6f,0x77,0x73,0x0a,0x73,0x69,0x67,0x6e,0x69,0x66,0x69,0x63,0x61, + 0x6e,0x74,0x0a,0x73,0x69,0x67,0x6e,0x69,0x66,0x69,0x63,0x61,0x6e,0x74,0x6c,0x79, + 0x0a,0x73,0x69,0x6d,0x69,0x6c,0x61,0x72,0x0a,0x73,0x69,0x6d,0x69,0x6c,0x61,0x72, + 0x6c,0x79,0x0a,0x73,0x69,0x6e,0x63,0x65,0x0a,0x73,0x69,0x78,0x0a,0x73,0x6c,0x69, + 0x67,0x68,0x74,0x6c,0x79,0x0a,0x73,0x6f,0x0a,0x73,0x6f,0x6d,0x65,0x0a,0x73,0x6f, + 0x6d,0x65,0x62,0x6f,0x64,0x79,0x0a,0x73,0x6f,0x6d,0x65,0x68,0x6f,0x77,0x0a,0x73, + 0x6f,0x6d,0x65,0x6f,0x6e,0x65,0x0a,0x73,0x6f,0x6d,0x65,0x74,0x68,0x61,0x6e,0x0a, + 0x73,0x6f,0x6d,0x65,0x74,0x68,0x69,0x6e,0x67,0x0a,0x73,0x6f,0x6d,0x65,0x74,0x69, + 0x6d,0x65,0x0a,0x73,0x6f,0x6d,0x65,0x74,0x69,0x6d,0x65,0x73,0x0a,0x73,0x6f,0x6d, + 0x65,0x77,0x68,0x61,0x74,0x0a,0x73,0x6f,0x6d,0x65,0x77,0x68,0x65,0x72,0x65,0x0a, + 0x73,0x6f,0x6f,0x6e,0x0a,0x73,0x6f,0x72,0x72,0x79,0x0a,0x73,0x70,0x65,0x63,0x69, + 0x66,0x69,0x63,0x61,0x6c,0x6c,0x79,0x0a,0x73,0x70,0x65,0x63,0x69,0x66,0x69,0x65, + 0x64,0x0a,0x73,0x70,0x65,0x63,0x69,0x66,0x79,0x0a,0x73,0x70,0x65,0x63,0x69,0x66, + 0x79,0x69,0x6e,0x67,0x0a,0x73,0x74,0x61,0x74,0x65,0x0a,0x73,0x74,0x61,0x74,0x65, + 0x73,0x0a,0x73,0x74,0x69,0x6c,0x6c,0x0a,0x73,0x74,0x6f,0x70,0x0a,0x73,0x74,0x72, + 0x6f,0x6e,0x67,0x6c,0x79,0x0a,0x73,0x75,0x62,0x0a,0x73,0x75,0x62,0x73,0x74,0x61, + 0x6e,0x74,0x69,0x61,0x6c,0x6c,0x79,0x0a,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66, + 0x75,0x6c,0x6c,0x79,0x0a,0x73,0x75,0x63,0x68,0x0a,0x73,0x75,0x66,0x66,0x69,0x63, + 0x69,0x65,0x6e,0x74,0x6c,0x79,0x0a,0x73,0x75,0x67,0x67,0x65,0x73,0x74,0x0a,0x73, + 0x75,0x70,0x0a,0x73,0x75,0x72,0x65,0x0a,0x09,0x74,0x0a,0x74,0x61,0x6b,0x65,0x0a, + 0x74,0x61,0x6b,0x65,0x6e,0x0a,0x74,0x61,0x6b,0x69,0x6e,0x67,0x0a,0x74,0x65,0x6c, + 0x6c,0x0a,0x74,0x65,0x6e,0x64,0x73,0x0a,0x74,0x68,0x0a,0x74,0x68,0x61,0x6e,0x0a, + 0x74,0x68,0x61,0x6e,0x6b,0x0a,0x74,0x68,0x61,0x6e,0x6b,0x73,0x0a,0x74,0x68,0x61, + 0x6e,0x78,0x0a,0x74,0x68,0x61,0x74,0x0a,0x74,0x68,0x61,0x74,0x27,0x6c,0x6c,0x0a, + 0x74,0x68,0x61,0x74,0x73,0x0a,0x74,0x68,0x61,0x74,0x27,0x76,0x65,0x0a,0x74,0x68, + 0x65,0x0a,0x74,0x68,0x65,0x69,0x72,0x0a,0x74,0x68,0x65,0x69,0x72,0x73,0x0a,0x74, + 0x68,0x65,0x6d,0x0a,0x74,0x68,0x65,0x6d,0x73,0x65,0x6c,0x76,0x65,0x73,0x0a,0x74, + 0x68,0x65,0x6e,0x0a,0x74,0x68,0x65,0x6e,0x63,0x65,0x0a,0x74,0x68,0x65,0x72,0x65, + 0x0a,0x74,0x68,0x65,0x72,0x65,0x61,0x66,0x74,0x65,0x72,0x0a,0x74,0x68,0x65,0x72, + 0x65,0x62,0x79,0x0a,0x74,0x68,0x65,0x72,0x65,0x64,0x0a,0x74,0x68,0x65,0x72,0x65, + 0x66,0x6f,0x72,0x65,0x0a,0x74,0x68,0x65,0x72,0x65,0x69,0x6e,0x0a,0x74,0x68,0x65, + 0x72,0x65,0x27,0x6c,0x6c,0x0a,0x74,0x68,0x65,0x72,0x65,0x6f,0x66,0x0a,0x74,0x68, + 0x65,0x72,0x65,0x72,0x65,0x0a,0x74,0x68,0x65,0x72,0x65,0x73,0x0a,0x74,0x68,0x65, + 0x72,0x65,0x74,0x6f,0x0a,0x74,0x68,0x65,0x72,0x65,0x75,0x70,0x6f,0x6e,0x0a,0x74, + 0x68,0x65,0x72,0x65,0x27,0x76,0x65,0x0a,0x74,0x68,0x65,0x73,0x65,0x0a,0x74,0x68, + 0x65,0x79,0x0a,0x74,0x68,0x65,0x79,0x64,0x0a,0x74,0x68,0x65,0x79,0x27,0x6c,0x6c, + 0x0a,0x74,0x68,0x65,0x79,0x72,0x65,0x0a,0x74,0x68,0x65,0x79,0x27,0x76,0x65,0x0a, + 0x74,0x68,0x69,0x6e,0x6b,0x0a,0x74,0x68,0x69,0x73,0x0a,0x74,0x68,0x6f,0x73,0x65, + 0x0a,0x74,0x68,0x6f,0x75,0x0a,0x74,0x68,0x6f,0x75,0x67,0x68,0x0a,0x74,0x68,0x6f, + 0x75,0x67,0x68,0x68,0x0a,0x74,0x68,0x6f,0x75,0x73,0x61,0x6e,0x64,0x0a,0x74,0x68, + 0x72,0x6f,0x75,0x67,0x0a,0x74,0x68,0x72,0x6f,0x75,0x67,0x68,0x0a,0x74,0x68,0x72, + 0x6f,0x75,0x67,0x68,0x6f,0x75,0x74,0x0a,0x74,0x68,0x72,0x75,0x0a,0x74,0x68,0x75, + 0x73,0x0a,0x74,0x69,0x6c,0x0a,0x74,0x69,0x70,0x0a,0x74,0x6f,0x0a,0x74,0x6f,0x67, + 0x65,0x74,0x68,0x65,0x72,0x0a,0x74,0x6f,0x6f,0x0a,0x74,0x6f,0x6f,0x6b,0x0a,0x74, + 0x6f,0x77,0x61,0x72,0x64,0x0a,0x74,0x6f,0x77,0x61,0x72,0x64,0x73,0x0a,0x74,0x72, + 0x69,0x65,0x64,0x0a,0x74,0x72,0x69,0x65,0x73,0x0a,0x74,0x72,0x75,0x6c,0x79,0x0a, + 0x74,0x72,0x79,0x0a,0x74,0x72,0x79,0x69,0x6e,0x67,0x0a,0x74,0x73,0x0a,0x74,0x77, + 0x69,0x63,0x65,0x0a,0x74,0x77,0x6f,0x0a,0x75,0x0a,0x75,0x6e,0x0a,0x75,0x6e,0x64, + 0x65,0x72,0x0a,0x75,0x6e,0x66,0x6f,0x72,0x74,0x75,0x6e,0x61,0x74,0x65,0x6c,0x79, + 0x0a,0x75,0x6e,0x6c,0x65,0x73,0x73,0x0a,0x75,0x6e,0x6c,0x69,0x6b,0x65,0x0a,0x75, + 0x6e,0x6c,0x69,0x6b,0x65,0x6c,0x79,0x0a,0x75,0x6e,0x74,0x69,0x6c,0x0a,0x75,0x6e, + 0x74,0x6f,0x0a,0x75,0x70,0x0a,0x75,0x70,0x6f,0x6e,0x0a,0x75,0x70,0x73,0x0a,0x75, + 0x73,0x0a,0x75,0x73,0x65,0x0a,0x75,0x73,0x65,0x64,0x0a,0x75,0x73,0x65,0x66,0x75, + 0x6c,0x0a,0x75,0x73,0x65,0x66,0x75,0x6c,0x6c,0x79,0x0a,0x75,0x73,0x65,0x66,0x75, + 0x6c,0x6e,0x65,0x73,0x73,0x0a,0x75,0x73,0x65,0x73,0x0a,0x75,0x73,0x69,0x6e,0x67, + 0x0a,0x75,0x73,0x75,0x61,0x6c,0x6c,0x79,0x0a,0x76,0x0a,0x76,0x61,0x6c,0x75,0x65, + 0x0a,0x76,0x61,0x72,0x69,0x6f,0x75,0x73,0x0a,0x27,0x76,0x65,0x0a,0x76,0x65,0x72, + 0x79,0x0a,0x76,0x69,0x61,0x0a,0x76,0x69,0x7a,0x0a,0x76,0x6f,0x6c,0x0a,0x76,0x6f, + 0x6c,0x73,0x0a,0x76,0x73,0x0a,0x77,0x0a,0x77,0x61,0x6e,0x74,0x0a,0x77,0x61,0x6e, + 0x74,0x73,0x0a,0x77,0x61,0x73,0x0a,0x77,0x61,0x73,0x6e,0x27,0x74,0x0a,0x77,0x61, + 0x79,0x0a,0x77,0x65,0x0a,0x77,0x65,0x64,0x0a,0x77,0x65,0x6c,0x63,0x6f,0x6d,0x65, + 0x0a,0x77,0x65,0x27,0x6c,0x6c,0x0a,0x77,0x65,0x6e,0x74,0x0a,0x77,0x65,0x72,0x65, + 0x0a,0x77,0x65,0x72,0x65,0x6e,0x27,0x74,0x0a,0x77,0x65,0x27,0x76,0x65,0x0a,0x77, + 0x68,0x61,0x74,0x0a,0x77,0x68,0x61,0x74,0x65,0x76,0x65,0x72,0x0a,0x77,0x68,0x61, + 0x74,0x27,0x6c,0x6c,0x0a,0x77,0x68,0x61,0x74,0x73,0x0a,0x77,0x68,0x65,0x6e,0x0a, + 0x77,0x68,0x65,0x6e,0x63,0x65,0x0a,0x77,0x68,0x65,0x6e,0x65,0x76,0x65,0x72,0x0a, + 0x77,0x68,0x65,0x72,0x65,0x0a,0x77,0x68,0x65,0x72,0x65,0x61,0x66,0x74,0x65,0x72, + 0x0a,0x77,0x68,0x65,0x72,0x65,0x61,0x73,0x0a,0x77,0x68,0x65,0x72,0x65,0x62,0x79, + 0x0a,0x77,0x68,0x65,0x72,0x65,0x69,0x6e,0x0a,0x77,0x68,0x65,0x72,0x65,0x73,0x0a, + 0x77,0x68,0x65,0x72,0x65,0x75,0x70,0x6f,0x6e,0x0a,0x77,0x68,0x65,0x72,0x65,0x76, + 0x65,0x72,0x0a,0x77,0x68,0x65,0x74,0x68,0x65,0x72,0x0a,0x77,0x68,0x69,0x63,0x68, + 0x0a,0x77,0x68,0x69,0x6c,0x65,0x0a,0x77,0x68,0x69,0x6d,0x0a,0x77,0x68,0x69,0x74, + 0x68,0x65,0x72,0x0a,0x77,0x68,0x6f,0x0a,0x77,0x68,0x6f,0x64,0x0a,0x77,0x68,0x6f, + 0x65,0x76,0x65,0x72,0x0a,0x77,0x68,0x6f,0x6c,0x65,0x0a,0x77,0x68,0x6f,0x27,0x6c, + 0x6c,0x0a,0x77,0x68,0x6f,0x6d,0x0a,0x77,0x68,0x6f,0x6d,0x65,0x76,0x65,0x72,0x0a, + 0x77,0x68,0x6f,0x73,0x0a,0x77,0x68,0x6f,0x73,0x65,0x0a,0x77,0x68,0x79,0x0a,0x77, + 0x69,0x64,0x65,0x6c,0x79,0x0a,0x77,0x69,0x6c,0x6c,0x69,0x6e,0x67,0x0a,0x77,0x69, + 0x73,0x68,0x0a,0x77,0x69,0x74,0x68,0x0a,0x77,0x69,0x74,0x68,0x69,0x6e,0x0a,0x77, + 0x69,0x74,0x68,0x6f,0x75,0x74,0x0a,0x77,0x6f,0x6e,0x27,0x74,0x0a,0x77,0x6f,0x72, + 0x64,0x73,0x0a,0x77,0x6f,0x72,0x6c,0x64,0x0a,0x77,0x6f,0x75,0x6c,0x64,0x0a,0x77, + 0x6f,0x75,0x6c,0x64,0x6e,0x27,0x74,0x0a,0x77,0x77,0x77,0x0a,0x78,0x0a,0x79,0x0a, + 0x79,0x65,0x73,0x0a,0x79,0x65,0x74,0x0a,0x79,0x6f,0x75,0x0a,0x79,0x6f,0x75,0x64, + 0x0a,0x79,0x6f,0x75,0x27,0x6c,0x6c,0x0a,0x79,0x6f,0x75,0x72,0x0a,0x79,0x6f,0x75, + 0x72,0x65,0x0a,0x79,0x6f,0x75,0x72,0x73,0x0a,0x79,0x6f,0x75,0x72,0x73,0x65,0x6c, + 0x66,0x0a,0x79,0x6f,0x75,0x72,0x73,0x65,0x6c,0x76,0x65,0x73,0x0a,0x79,0x6f,0x75, + 0x27,0x76,0x65,0x0a,0x7a,0x0a,0x7a,0x65,0x72,0x6f,0x0a + }; + +const unsigned char stopwords_he[]={ + 0xd7,0xa9,0xd7,0x9c,0x0d,0x0a,0xd7,0x90,0xd7,0xaa,0x0d,0x0a,0xd7,0xa2,0xd7,0x9c, + 0x0d,0x0a,0xd7,0x9c,0xd7,0x90,0x0d,0x0a,0xd7,0x9b,0xd7,0x99,0x0d,0x0a,0xd7,0xa2, + 0xd7,0x9d,0x0d,0x0a,0xd7,0x94,0xd7,0x95,0xd7,0x90,0x0d,0x0a,0xd7,0x92,0xd7,0x9d, + 0x0d,0x0a,0xd7,0x91,0x0d,0x0a,0xd7,0x96,0xd7,0x94,0x0d,0x0a,0xd7,0x94,0xd7,0x99, + 0xd7,0x90,0x0d,0x0a,0xd7,0x9b,0xd7,0x9c,0x0d,0x0a,0xd7,0x99,0xd7,0x95,0xd7,0xaa, + 0xd7,0xa8,0x0d,0x0a,0xd7,0x90,0xd7,0x95,0x0d,0x0a,0xd7,0x90,0xd7,0x91,0xd7,0x9c, + 0x0d,0x0a,0xd7,0x91,0xd7,0x99,0xd7,0x9f,0x0d,0x0a,0xd7,0x94,0xd7,0x99,0xd7,0x94, + 0x0d,0x0a,0xd7,0x90,0xd7,0x9d,0x0d,0x0a,0xd7,0x9e,0xd7,0x99,0xd7,0x9c,0xd7,0x99, + 0xd7,0x95,0xd7,0x9f,0x0d,0x0a,0xd7,0x99,0xd7,0xa9,0x0d,0x0a,0xd7,0x9b,0xd7,0x9a, + 0x0d,0x0a,0xd7,0x90,0xd7,0xa0,0xd7,0x99,0x0d,0x0a,0xd7,0x94,0xd7,0x9d,0x0d,0x0a, + 0xd7,0x93,0xd7,0x95,0xd7,0x9c,0xd7,0xa8,0x0d,0x0a,0xd7,0x90,0xd7,0x9e,0xd7,0xa8, + 0x0d,0x0a,0xd7,0xa2,0xd7,0x93,0x0d,0x0a,0xd7,0x9c,0xd7,0x90,0xd7,0x97,0xd7,0xa8, + 0x0d,0x0a,0xd7,0x99,0xd7,0xa9,0xd7,0xa8,0xd7,0x90,0xd7,0x9c,0x0d,0x0a,0xd7,0xa8, + 0xd7,0xa7,0x0d,0x0a,0xd7,0xa9,0xd7,0xa7,0xd7,0x9c,0x0d,0x0a,0xd7,0x9b,0xd7,0x93, + 0xd7,0x99,0x0d,0x0a,0xd7,0x9e,0xd7,0x94,0x0d,0x0a,0xd7,0x9c,0xd7,0xa4,0xd7,0xa0, + 0xd7,0x99,0x0d,0x0a,0xd7,0x90,0xd7,0x97,0xd7,0x93,0x0d,0x0a,0xd7,0x94,0xd7,0x97, + 0xd7,0x91,0xd7,0xa8,0xd7,0x94,0x0d,0x0a,0xd7,0x9b,0xd7,0x9e,0xd7,0x95,0x0d,0x0a, + 0xd7,0x96,0xd7,0x90,0xd7,0xaa,0x0d,0x0a,0xd7,0x94,0xd7,0x99,0xd7,0x95,0xd7,0x9d, + 0x0d,0x0a,0xd7,0x90,0xd7,0x9a,0x0d,0x0a,0xd7,0x9c,0x0d,0x0a,0xd7,0x94,0x0d,0x0a, + 0xd7,0x9b,0x0d,0x0a,0xd7,0x90,0xd7,0x99,0xd7,0x9f,0x0d,0x0a,0xd7,0x90,0xd7,0xaa, + 0xd7,0x9e,0xd7,0x95,0xd7,0x9c,0x0d,0x0a,0xd7,0xa9,0xd7,0x9c,0xd7,0x90,0x0d,0x0a, + 0xd7,0x9b,0xd7,0x91,0xd7,0xa8,0x0d,0x0a,0xd7,0xa2,0xd7,0x95,0xd7,0x93,0x0d,0x0a, + 0xd7,0x9c,0xd7,0x95,0x0d,0x0a,0xd7,0x96,0xd7,0x95,0x0d,0x0a,0xd7,0x90,0xd7,0x9c, + 0x0d,0x0a,0xd7,0x91,0xd7,0x9f,0x0d,0x0a,0xd7,0x90,0xd7,0x95,0xd7,0xaa,0xd7,0x95, + 0x0d,0x0a,0xd7,0xa9,0xd7,0xa0,0xd7,0x99,0x0d,0x0a,0xd7,0x91,0xd7,0x99,0xd7,0xaa, + 0x0d,0x0a,0xd7,0x99,0xd7,0x93,0xd7,0x99,0x0d,0x0a,0xd7,0x9b,0xd7,0x9e,0xd7,0x94, + 0x0d,0x0a,0xd7,0x91,0xd7,0x99,0xd7,0x95,0xd7,0xaa,0xd7,0xa8,0x0d,0x0a,0xd7,0x95, + 0xd7,0x9c,0xd7,0x90,0x0d,0x0a,0xd7,0x94,0xd7,0x9e,0xd7,0x9e,0xd7,0xa9,0xd7,0x9c, + 0xd7,0x94,0x0d,0x0a,0xd7,0x90,0xd7,0x97,0xd7,0xa8,0xd7,0x99,0x0d,0x0a,0xd7,0x97, + 0xd7,0x91,0xd7,0xa8,0xd7,0xaa,0x0d,0x0a,0xd7,0x94,0xd7,0x99,0xd7,0xaa,0xd7,0x94, + 0x0d,0x0a,0xd7,0xa9,0xd7,0x9c,0xd7,0x95,0x0d,0x0a,0xd7,0x94,0xd7,0x99,0xd7,0x95, + 0x0d,0x0a,0xd7,0xa0,0xd7,0x92,0xd7,0x93,0x0d,0x0a,0xd7,0x91,0xd7,0x9b,0xd7,0x9c, + 0x0d,0x0a,0xd7,0x90,0xd7,0x91,0xd7,0x99,0xd7,0x91,0x0d,0x0a,0xd7,0xa8,0xd7,0x90, + 0xd7,0xa9,0x0d,0x0a,0xd7,0x91,0xd7,0x99,0xd7,0xa9,0xd7,0xa8,0xd7,0x90,0xd7,0x9c, + 0x0d,0x0a,0xd7,0x9c,0xd7,0x99,0x0d,0x0a,0xd7,0xa9,0xd7,0xa0,0xd7,0x99,0xd7,0x9d, + 0x0d,0x0a,0xd7,0xa4,0xd7,0x99,0x0d,0x0a,0xd7,0x91,0xd7,0x95,0x0d,0x0a,0xd7,0x9e, + 0x0d,0x0a,0xd7,0x9e,0xd7,0x90,0xd7,0x95,0xd7,0x93,0x0d,0x0a,0xd7,0x9c,0xd7,0x94, + 0xd7,0x99,0xd7,0x95,0xd7,0xaa,0x0d,0x0a,0xd7,0xa9,0xd7,0x94,0xd7,0x95,0xd7,0x90, + 0x0d,0x0a,0xd7,0x9e,0xd7,0x99,0x0d,0x0a,0xd7,0x90,0xd7,0x9c,0xd7,0xa3,0x0d,0x0a, + 0xd7,0x90,0xd7,0x9c,0xd7,0x90,0x0d,0x0a,0xd7,0x90,0xd7,0xa3,0x0d,0x0a,0xd7,0x90, + 0xd7,0x97,0xd7,0xa8,0x0d,0x0a,0xd7,0x94,0xd7,0x96,0xd7,0x94,0x0d,0x0a,0xd7,0x90, + 0xd7,0x97,0xd7,0xaa,0x0d,0x0a,0xd7,0x91,0xd7,0x91,0xd7,0x99,0xd7,0xaa,0x0d,0x0a, + 0xd7,0x90,0xd7,0x9c,0xd7,0x94,0x0d,0x0a,0xd7,0x90,0xd7,0xa0,0xd7,0x97,0xd7,0xa0, + 0xd7,0x95,0x0d,0x0a + }; + +const unsigned char results_tmpl[]={ + 0x3c,0x21,0x44,0x4f,0x43,0x54,0x59,0x50,0x45,0x20,0x68,0x74,0x6d,0x6c,0x20,0x50, + 0x55,0x42,0x4c,0x49,0x43,0x20,0x22,0x2d,0x2f,0x2f,0x57,0x33,0x43,0x2f,0x2f,0x44, + 0x54,0x44,0x20,0x58,0x48,0x54,0x4d,0x4c,0x20,0x31,0x2e,0x30,0x20,0x54,0x72,0x61, + 0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x61,0x6c,0x2f,0x2f,0x45,0x4e,0x22,0x20,0x22, + 0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72, + 0x67,0x2f,0x54,0x52,0x2f,0x78,0x68,0x74,0x6d,0x6c,0x31,0x2f,0x44,0x54,0x44,0x2f, + 0x78,0x68,0x74,0x6d,0x6c,0x31,0x2d,0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f, + 0x6e,0x61,0x6c,0x2e,0x64,0x74,0x64,0x22,0x3e,0x0a,0x3c,0x68,0x74,0x6d,0x6c,0x20, + 0x6c,0x61,0x6e,0x67,0x3d,0x22,0x66,0x72,0x22,0x20,0x78,0x6d,0x6c,0x3a,0x6c,0x61, + 0x6e,0x67,0x3d,0x22,0x66,0x72,0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3d,0x22,0x68, + 0x74,0x74,0x70,0x3a,0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,0x67, + 0x2f,0x31,0x39,0x39,0x39,0x2f,0x78,0x68,0x74,0x6d,0x6c,0x22,0x20,0x78,0x6d,0x6c, + 0x6e,0x73,0x3a,0x57,0x65,0x62,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x73, + 0x63,0x68,0x65,0x6d,0x61,0x73,0x2e,0x6c,0x69,0x76,0x65,0x2e,0x63,0x6f,0x6d,0x2f, + 0x57,0x65,0x62,0x2f,0x22,0x3e,0x0a,0x20,0x20,0x3c,0x68,0x65,0x61,0x64,0x3e,0x0a, + 0x20,0x20,0x20,0x20,0x3c,0x6d,0x65,0x74,0x61,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e, + 0x74,0x3d,0x22,0x74,0x65,0x78,0x74,0x2f,0x68,0x74,0x6d,0x6c,0x3b,0x20,0x63,0x68, + 0x61,0x72,0x73,0x65,0x74,0x3d,0x75,0x74,0x66,0x2d,0x38,0x22,0x20,0x68,0x74,0x74, + 0x70,0x2d,0x65,0x71,0x75,0x69,0x76,0x3d,0x22,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74, + 0x2d,0x74,0x79,0x70,0x65,0x22,0x20,0x2f,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x73, + 0x74,0x79,0x6c,0x65,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x2f, + 0x63,0x73,0x73,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x62,0x6f,0x64,0x79, + 0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x23, + 0x30,0x30,0x30,0x30,0x30,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x6f,0x6e, + 0x74,0x3a,0x20,0x73,0x6d,0x61,0x6c,0x6c,0x2f,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x20, + 0x41,0x72,0x69,0x61,0x6c,0x2c,0x48,0x65,0x6c,0x76,0x65,0x74,0x69,0x63,0x61,0x2c, + 0x53,0x61,0x6e,0x73,0x2d,0x53,0x65,0x72,0x69,0x66,0x3b,0x0a,0x20,0x20,0x20,0x20, + 0x20,0x20,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x20,0x30,0x2e, + 0x35,0x65,0x6d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x6f,0x6e,0x74,0x2d, + 0x73,0x69,0x7a,0x65,0x3a,0x20,0x39,0x30,0x25,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20, + 0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, + 0x61,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20, + 0x23,0x30,0x34,0x63,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20, + 0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x3a,0x76,0x69,0x73, + 0x69,0x74,0x65,0x64,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6c, + 0x6f,0x72,0x3a,0x20,0x23,0x36,0x33,0x39,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x7d, + 0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x3a, + 0x68,0x6f,0x76,0x65,0x72,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x65, + 0x78,0x74,0x2d,0x64,0x65,0x63,0x6f,0x72,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x20,0x75, + 0x6e,0x64,0x65,0x72,0x6c,0x69,0x6e,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x7d, + 0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x2e,0x68, + 0x65,0x61,0x64,0x65,0x72,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x6f, + 0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x20,0x31,0x32,0x30,0x25,0x3b,0x0a,0x20, + 0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x6c, + 0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a, + 0x30,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x61,0x64,0x64,0x69,0x6e,0x67, + 0x3a,0x30,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20, + 0x20,0x20,0x20,0x2e,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x7b,0x0a,0x20,0x20, + 0x20,0x20,0x20,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x20,0x31, + 0x31,0x30,0x25,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20, + 0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x2e,0x72,0x65,0x73,0x75,0x6c, + 0x74,0x73,0x20,0x6c,0x69,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x69, + 0x73,0x74,0x2d,0x73,0x74,0x79,0x6c,0x65,0x2d,0x74,0x79,0x70,0x65,0x3a,0x6e,0x6f, + 0x6e,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x6d,0x61,0x72,0x67,0x69,0x6e, + 0x2d,0x74,0x6f,0x70,0x3a,0x20,0x30,0x2e,0x35,0x65,0x6d,0x3b,0x0a,0x20,0x20,0x20, + 0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x2e,0x72,0x65,0x73, + 0x75,0x6c,0x74,0x73,0x20,0x61,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x66, + 0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x20,0x31,0x31,0x30,0x25,0x3b,0x0a, + 0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x65,0x78,0x74,0x2d,0x64,0x65,0x63,0x6f,0x72, + 0x61,0x74,0x69,0x6f,0x6e,0x3a,0x20,0x75,0x6e,0x64,0x65,0x72,0x6c,0x69,0x6e,0x65, + 0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, + 0x63,0x69,0x74,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x6f,0x6e, + 0x74,0x2d,0x73,0x74,0x79,0x6c,0x65,0x3a,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x3b,0x0a, + 0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x6f,0x72,0x64,0x2d,0x77,0x72,0x61,0x70,0x3a, + 0x62,0x72,0x65,0x61,0x6b,0x2d,0x77,0x6f,0x72,0x64,0x3b,0x0a,0x20,0x20,0x20,0x20, + 0x20,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x20,0x62,0x6c,0x6f,0x63,0x6b, + 0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a, + 0x65,0x3a,0x20,0x31,0x30,0x30,0x25,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x7d, + 0x20,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x2e,0x69,0x6e,0x66,0x6f,0x72,0x6d, + 0x61,0x74,0x69,0x6f,0x6e,0x73,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x63, + 0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x23,0x33,0x38,0x38,0x32,0x32,0x32,0x3b,0x0a,0x20, + 0x20,0x20,0x20,0x20,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x20, + 0x31,0x30,0x30,0x25,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20, + 0x20,0x20,0x20,0x20,0x20,0x2e,0x66,0x6f,0x6f,0x74,0x65,0x72,0x20,0x7b,0x0a,0x20, + 0x20,0x20,0x20,0x20,0x20,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x20,0x30,0x3b, + 0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f, + 0x70,0x3a,0x20,0x31,0x65,0x6d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x69, + 0x64,0x74,0x68,0x3a,0x20,0x31,0x30,0x30,0x25,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20, + 0x20,0x66,0x6c,0x6f,0x61,0x74,0x3a,0x20,0x6c,0x65,0x66,0x74,0x0a,0x20,0x20,0x20, + 0x20,0x20,0x20,0x7d,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20, + 0x20,0x20,0x20,0x2e,0x66,0x6f,0x6f,0x74,0x65,0x72,0x20,0x61,0x2c,0x20,0x2e,0x66, + 0x6f,0x6f,0x74,0x65,0x72,0x20,0x73,0x70,0x61,0x6e,0x20,0x7b,0x0a,0x20,0x20,0x20, + 0x20,0x20,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x20,0x62,0x6c,0x6f,0x63, + 0x6b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x61,0x64,0x64,0x69,0x6e,0x67, + 0x3a,0x20,0x2e,0x33,0x65,0x6d,0x20,0x2e,0x37,0x65,0x6d,0x3b,0x0a,0x20,0x20,0x20, + 0x20,0x20,0x20,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x20,0x30,0x20,0x2e,0x33,0x38, + 0x65,0x6d,0x20,0x30,0x20,0x30,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x65, + 0x78,0x74,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x63,0x65,0x6e,0x74,0x65,0x72,0x3b, + 0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x65,0x78,0x74,0x2d,0x64,0x65,0x63,0x6f, + 0x72,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x20,0x6e,0x6f,0x6e,0x65,0x3b,0x0a,0x20,0x20, + 0x20,0x20,0x20,0x20,0x7d,0x20,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x2e,0x66, + 0x6f,0x6f,0x74,0x65,0x72,0x20,0x61,0x3a,0x68,0x6f,0x76,0x65,0x72,0x20,0x7b,0x0a, + 0x20,0x20,0x20,0x20,0x20,0x20,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64, + 0x3a,0x20,0x23,0x65,0x64,0x65,0x64,0x65,0x64,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20, + 0x20,0x7d,0x20,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x2e,0x66,0x6f,0x6f,0x74, + 0x65,0x72,0x20,0x75,0x6c,0x2c,0x20,0x2e,0x66,0x6f,0x6f,0x74,0x65,0x72,0x20,0x6c, + 0x69,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x69,0x73,0x74,0x2d,0x73, + 0x74,0x79,0x6c,0x65,0x3a,0x6e,0x6f,0x6e,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20, + 0x20,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x20,0x30,0x3b,0x0a,0x20,0x20,0x20,0x20, + 0x20,0x20,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x20,0x30,0x3b,0x0a,0x20,0x20, + 0x20,0x20,0x20,0x20,0x7d,0x20,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x2e,0x66, + 0x6f,0x6f,0x74,0x65,0x72,0x20,0x6c,0x69,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20, + 0x20,0x66,0x6c,0x6f,0x61,0x74,0x3a,0x20,0x6c,0x65,0x66,0x74,0x3b,0x0a,0x20,0x20, + 0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x2e,0x73,0x65, + 0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x62, + 0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x3a,0x20,0x23,0x65,0x64,0x65,0x64, + 0x65,0x64,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x0a,0x0a,0x20,0x20, + 0x20,0x20,0x3c,0x2f,0x73,0x74,0x79,0x6c,0x65,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c, + 0x74,0x69,0x74,0x6c,0x65,0x3e,0x53,0x65,0x61,0x72,0x63,0x68,0x3a,0x20,0x3c,0x54, + 0x4d,0x50,0x4c,0x5f,0x76,0x61,0x72,0x20,0x73,0x65,0x61,0x72,0x63,0x68,0x50,0x61, + 0x74,0x74,0x65,0x72,0x6e,0x3e,0x3c,0x2f,0x74,0x69,0x74,0x6c,0x65,0x3e,0x0a,0x20, + 0x20,0x3c,0x2f,0x68,0x65,0x61,0x64,0x3e,0x0a,0x20,0x20,0x3c,0x62,0x6f,0x64,0x79, + 0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73, + 0x3d,0x22,0x68,0x65,0x61,0x64,0x65,0x72,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20, + 0x20,0x3c,0x54,0x4d,0x50,0x4c,0x5f,0x69,0x66,0x20,0x72,0x65,0x73,0x75,0x6c,0x74, + 0x73,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x52,0x65,0x73,0x75,0x6c,0x74,0x73, + 0x20,0x3c,0x62,0x3e,0x3c,0x54,0x4d,0x50,0x4c,0x5f,0x76,0x61,0x72,0x20,0x72,0x65, + 0x73,0x75,0x6c,0x74,0x53,0x74,0x61,0x72,0x74,0x3e,0x2d,0x3c,0x54,0x4d,0x50,0x4c, + 0x5f,0x76,0x61,0x72,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x45,0x6e,0x64,0x3e,0x3c, + 0x2f,0x62,0x3e,0x20,0x6f,0x66,0x20,0x3c,0x62,0x3e,0x3c,0x54,0x4d,0x50,0x4c,0x5f, + 0x76,0x61,0x72,0x20,0x63,0x6f,0x75,0x6e,0x74,0x3e,0x3c,0x2f,0x62,0x3e,0x20,0x66, + 0x6f,0x72,0x20,0x3c,0x62,0x3e,0x3c,0x54,0x4d,0x50,0x4c,0x5f,0x76,0x61,0x72,0x20, + 0x73,0x65,0x61,0x72,0x63,0x68,0x50,0x61,0x74,0x74,0x65,0x72,0x6e,0x3e,0x3c,0x2f, + 0x62,0x3e,0x3c,0x54,0x4d,0x50,0x4c,0x5f,0x65,0x6c,0x73,0x65,0x3e,0x4e,0x6f,0x20, + 0x72,0x65,0x73,0x75,0x6c,0x74,0x20,0x77,0x65,0x72,0x65,0x20,0x66,0x6f,0x75,0x6e, + 0x64,0x20,0x66,0x6f,0x72,0x20,0x3c,0x62,0x3e,0x3c,0x54,0x4d,0x50,0x4c,0x5f,0x76, + 0x61,0x72,0x20,0x73,0x65,0x61,0x72,0x63,0x68,0x50,0x61,0x74,0x74,0x65,0x72,0x6e, + 0x3e,0x3c,0x2f,0x62,0x3e,0x3c,0x2f,0x54,0x4d,0x50,0x4c,0x5f,0x69,0x66,0x3e,0x0a, + 0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20, + 0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x72,0x65,0x73,0x75, + 0x6c,0x74,0x73,0x22,0x3e,0x09,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x75,0x6c, + 0x3e,0x0a,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x3c,0x54,0x4d,0x50,0x4c, + 0x5f,0x6c,0x6f,0x6f,0x70,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x3e,0x0a,0x09, + 0x20,0x20,0x3c,0x6c,0x69,0x3e,0x0a,0x09,0x20,0x20,0x20,0x20,0x3c,0x61,0x20,0x68, + 0x72,0x65,0x66,0x3d,0x22,0x3c,0x54,0x4d,0x50,0x4c,0x5f,0x76,0x61,0x72,0x20,0x70, + 0x72,0x6f,0x74,0x6f,0x63,0x6f,0x6c,0x50,0x72,0x65,0x66,0x69,0x78,0x3e,0x3c,0x54, + 0x4d,0x50,0x4c,0x5f,0x76,0x61,0x72,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x49, + 0x64,0x3e,0x2f,0x3c,0x54,0x4d,0x50,0x4c,0x5f,0x76,0x61,0x72,0x20,0x75,0x72,0x6c, + 0x3e,0x22,0x3e,0x3c,0x54,0x4d,0x50,0x4c,0x5f,0x76,0x61,0x72,0x20,0x74,0x69,0x74, + 0x6c,0x65,0x3e,0x3c,0x2f,0x61,0x3e,0x0a,0x09,0x20,0x20,0x20,0x20,0x3c,0x63,0x69, + 0x74,0x65,0x3e,0x3c,0x54,0x4d,0x50,0x4c,0x5f,0x69,0x66,0x20,0x73,0x6e,0x69,0x70, + 0x70,0x65,0x74,0x3e,0x3c,0x54,0x4d,0x50,0x4c,0x5f,0x76,0x61,0x72,0x20,0x73,0x6e, + 0x69,0x70,0x70,0x65,0x74,0x3e,0x2e,0x2e,0x2e,0x3c,0x2f,0x54,0x4d,0x50,0x4c,0x5f, + 0x69,0x66,0x3e,0x3c,0x2f,0x63,0x69,0x74,0x65,0x3e,0x0a,0x09,0x20,0x20,0x20,0x20, + 0x3c,0x54,0x4d,0x50,0x4c,0x5f,0x69,0x66,0x20,0x77,0x6f,0x72,0x64,0x43,0x6f,0x75, + 0x6e,0x74,0x3e,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69, + 0x6e,0x66,0x6f,0x72,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x73,0x22,0x3e,0x3c,0x54,0x4d, + 0x50,0x4c,0x5f,0x76,0x61,0x72,0x20,0x77,0x6f,0x72,0x64,0x43,0x6f,0x75,0x6e,0x74, + 0x3e,0x20,0x77,0x6f,0x72,0x64,0x73,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x3c,0x2f,0x54, + 0x4d,0x50,0x4c,0x5f,0x69,0x66,0x3e,0x0a,0x09,0x20,0x20,0x3c,0x2f,0x6c,0x69,0x3e, + 0x0a,0x20,0x20,0x20,0x20,0x3c,0x2f,0x54,0x4d,0x50,0x4c,0x5f,0x6c,0x6f,0x6f,0x70, + 0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x2f,0x75,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20, + 0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63, + 0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x6f,0x74,0x65,0x72,0x22,0x3e,0x0a,0x20, + 0x20,0x20,0x20,0x3c,0x75,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x54, + 0x4d,0x50,0x4c,0x5f,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x4c,0x61, + 0x73,0x74,0x50,0x61,0x67,0x65,0x53,0x74,0x61,0x72,0x74,0x3e,0x30,0x29,0x3e,0x0a, + 0x09,0x3c,0x6c,0x69,0x3e,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x3c,0x54, + 0x4d,0x50,0x4c,0x5f,0x76,0x61,0x72,0x20,0x73,0x65,0x61,0x72,0x63,0x68,0x50,0x72, + 0x6f,0x74,0x6f,0x63,0x6f,0x6c,0x50,0x72,0x65,0x66,0x69,0x78,0x3e,0x63,0x6f,0x6e, + 0x74,0x65,0x6e,0x74,0x3d,0x3c,0x54,0x4d,0x50,0x4c,0x5f,0x76,0x61,0x72,0x20,0x63, + 0x6f,0x6e,0x74,0x65,0x6e,0x74,0x49,0x64,0x3e,0x26,0x70,0x61,0x74,0x74,0x65,0x72, + 0x6e,0x3d,0x3c,0x54,0x4d,0x50,0x4c,0x5f,0x76,0x61,0x72,0x20,0x73,0x65,0x61,0x72, + 0x63,0x68,0x50,0x61,0x74,0x74,0x65,0x72,0x6e,0x3e,0x26,0x73,0x74,0x61,0x72,0x74, + 0x3d,0x30,0x26,0x65,0x6e,0x64,0x3d,0x3c,0x54,0x4d,0x50,0x4c,0x5f,0x76,0x61,0x72, + 0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x52,0x61,0x6e,0x67,0x65,0x3e,0x22,0x3e,0xe2, + 0x97,0x80,0x3c,0x2f,0x61,0x3e,0x3c,0x2f,0x6c,0x69,0x3e,0x0a,0x20,0x20,0x20,0x20, + 0x20,0x20,0x3c,0x2f,0x54,0x4d,0x50,0x4c,0x5f,0x69,0x66,0x3e,0x0a,0x20,0x20,0x20, + 0x20,0x20,0x20,0x3c,0x54,0x4d,0x50,0x4c,0x5f,0x6c,0x6f,0x6f,0x70,0x20,0x70,0x61, + 0x67,0x65,0x73,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x69,0x3e,0x3c, + 0x61,0x20,0x3c,0x54,0x4d,0x50,0x4c,0x5f,0x69,0x66,0x20,0x73,0x65,0x6c,0x65,0x63, + 0x74,0x65,0x64,0x3e,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x65,0x6c,0x65,0x63, + 0x74,0x65,0x64,0x22,0x3c,0x2f,0x54,0x4d,0x50,0x4c,0x5f,0x69,0x66,0x3e,0x20,0x68, + 0x72,0x65,0x66,0x3d,0x22,0x3c,0x54,0x4d,0x50,0x4c,0x5f,0x76,0x61,0x72,0x20,0x73, + 0x65,0x61,0x72,0x63,0x68,0x50,0x72,0x6f,0x74,0x6f,0x63,0x6f,0x6c,0x50,0x72,0x65, + 0x66,0x69,0x78,0x3e,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3d,0x3c,0x54,0x4d,0x50, + 0x4c,0x5f,0x76,0x61,0x72,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x49,0x64,0x3e, + 0x26,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x3d,0x3c,0x54,0x4d,0x50,0x4c,0x5f,0x76, + 0x61,0x72,0x20,0x73,0x65,0x61,0x72,0x63,0x68,0x50,0x61,0x74,0x74,0x65,0x72,0x6e, + 0x3e,0x26,0x73,0x74,0x61,0x72,0x74,0x3d,0x3c,0x54,0x4d,0x50,0x4c,0x5f,0x76,0x61, + 0x72,0x20,0x73,0x74,0x61,0x72,0x74,0x3e,0x26,0x65,0x6e,0x64,0x3d,0x3c,0x54,0x4d, + 0x50,0x4c,0x5f,0x76,0x61,0x72,0x20,0x65,0x6e,0x64,0x3e,0x22,0x3e,0x3c,0x54,0x4d, + 0x50,0x4c,0x5f,0x76,0x61,0x72,0x20,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x3c,0x2f,0x61, + 0x3e,0x3c,0x2f,0x6c,0x69,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x54, + 0x4d,0x50,0x4c,0x5f,0x4c,0x4f,0x4f,0x50,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, + 0x3c,0x54,0x4d,0x50,0x4c,0x5f,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x75,0x6c,0x74, + 0x4c,0x61,0x73,0x74,0x50,0x61,0x67,0x65,0x53,0x74,0x61,0x72,0x74,0x3e,0x30,0x29, + 0x3e,0x0a,0x09,0x3c,0x6c,0x69,0x3e,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22, + 0x3c,0x54,0x4d,0x50,0x4c,0x5f,0x76,0x61,0x72,0x20,0x73,0x65,0x61,0x72,0x63,0x68, + 0x50,0x72,0x6f,0x74,0x6f,0x63,0x6f,0x6c,0x50,0x72,0x65,0x66,0x69,0x78,0x3e,0x63, + 0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3d,0x3c,0x54,0x4d,0x50,0x4c,0x5f,0x76,0x61,0x72, + 0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x49,0x64,0x3e,0x26,0x70,0x61,0x74,0x74, + 0x65,0x72,0x6e,0x3d,0x3c,0x54,0x4d,0x50,0x4c,0x5f,0x76,0x61,0x72,0x20,0x73,0x65, + 0x61,0x72,0x63,0x68,0x50,0x61,0x74,0x74,0x65,0x72,0x6e,0x3e,0x26,0x73,0x74,0x61, + 0x72,0x74,0x3d,0x3c,0x54,0x4d,0x50,0x4c,0x5f,0x76,0x61,0x72,0x20,0x72,0x65,0x73, + 0x75,0x6c,0x74,0x4c,0x61,0x73,0x74,0x50,0x61,0x67,0x65,0x53,0x74,0x61,0x72,0x74, + 0x3e,0x26,0x65,0x6e,0x64,0x3d,0x3c,0x54,0x4d,0x50,0x4c,0x5f,0x76,0x61,0x72,0x20, + 0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x4c,0x61,0x73,0x74,0x50,0x61,0x67,0x65,0x53, + 0x74,0x61,0x72,0x74,0x2b,0x72,0x65,0x73,0x75,0x6c,0x74,0x52,0x61,0x6e,0x67,0x65, + 0x29,0x3e,0x22,0x3e,0xe2,0x96,0xb6,0x3c,0x2f,0x61,0x3e,0x3c,0x2f,0x6c,0x69,0x3e, + 0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x54,0x4d,0x50,0x4c,0x5f,0x69,0x66, + 0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x2f,0x75,0x6c,0x3e,0x20,0x0a,0x20,0x3c,0x2f, + 0x64,0x69,0x76,0x3e,0x0a,0x3c,0x2f,0x62,0x6f,0x64,0x79,0x3e,0x0a,0x3c,0x2f,0x68, + 0x74,0x6d,0x6c,0x3e,0x0a }; static std::map > createResourceMap() { std::map > m; - m["results.tmpl"] = std::pair (results_tmpl, sizeof results_tmpl); - m["jqueryui/include.html.part"] = std::pair (jqueryui_include_html_part, sizeof jqueryui_include_html_part); + m["server/taskbar.css"] = std::pair (server_taskbar_css, sizeof server_taskbar_css); + m["server/taskbar.html.part"] = std::pair (server_taskbar_html_part, sizeof server_taskbar_html_part); + m["server/home.html.tmpl"] = std::pair (server_home_html_tmpl, sizeof server_home_html_tmpl); m["jqueryui/css/smoothness/jquery-ui.custom.css"] = std::pair (jqueryui_css_smoothness_jquery_ui_custom_css, sizeof jqueryui_css_smoothness_jquery_ui_custom_css); m["jqueryui/js/jquery-ui.custom.min.js"] = std::pair (jqueryui_js_jquery_ui_custom_min_js, sizeof jqueryui_js_jquery_ui_custom_min_js); m["jqueryui/js/jquery.min.js"] = std::pair (jqueryui_js_jquery_min_js, sizeof jqueryui_js_jquery_min_js); - m["server/taskbar.css"] = std::pair (server_taskbar_css, sizeof server_taskbar_css); - m["server/home.html.tmpl"] = std::pair (server_home_html_tmpl, sizeof server_home_html_tmpl); - m["server/taskbar.html.part"] = std::pair (server_taskbar_html_part, sizeof server_taskbar_html_part); + m["jqueryui/include.html.part"] = std::pair (jqueryui_include_html_part, sizeof jqueryui_include_html_part); + m["stopwords/fra"] = std::pair (stopwords_fra, sizeof stopwords_fra); + m["stopwords/en"] = std::pair (stopwords_en, sizeof stopwords_en); + m["stopwords/he"] = std::pair (stopwords_he, sizeof stopwords_he); + m["results.tmpl"] = std::pair (results_tmpl, sizeof results_tmpl); return m; }