zegrapher-2.0.orig/0000700000175000017500000000000012105437437014473 5ustar georgeskgeorgeskzegrapher-2.0.orig/src/0000755000175000017500000000000012105437423015267 5ustar georgeskgeorgeskzegrapher-2.0.orig/src/Structures.h0000644000175000017500000000611712105437153017630 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #ifndef STRUCTURES_H #define STRUCTURES_H #include #include #define FROM_CURRENT_GRAPHIC 0 #define MANUAL_ENTRY 1 #define PREDEFINED_ENTRY 2 #define NORMAL 0 #define ZOOMER 1 #define DEZOOMER 2 #define ZOOMBOX 3 #define DEPLACER 4 #define NO_CURSOR 5 #define FUNCTION 1 #define SEQUENCE 2 #define PARAMETRIC_EQ 3 #define NORMAL_EXPR 4 #define MIN_RANGE 0.000001 #define NUM_PREC 7 // default precision while displaying decimal numbers #define MAX_NUM_PREC 8 // the maximum precision in decimal come from imprecision on integration and derivation #define INIT_FREQ 20 //animation update ferquence #define INIT_INCR_PERIOD 100 //animation incremental period #define PAR_DRAW_LIMIT 100 #define INVALID_COLOR "#FF3030" #define VALID_COLOR "#70FF55" #define EPSILON 0.001 struct GraphRange { double Xmin, Xmax, Ymin, Ymax, Xscale, Yscale; }; struct Point { double x, y; }; struct Rectangle { Point pt1, pt2; }; struct FastTree { short type; double *value; FastTree *left; FastTree *right; }; struct Options { QColor couleurDesAxes; QColor couleurDuFond; QColor couleurQuadrillage; short epaisseurDesCourbes; short numSize; double distanceEntrePoints; bool lissage; }; struct CurveSelection { bool tangentSelection; bool isSomethingSelected; bool isParametric; int funcType, tangentPtSelection, id, kPos; }; struct FuncMap { bool funcType; short id; }; struct MouseState { bool tangentHovering; bool hovering; bool isParametric; short tangentPtSelection; short funcType; short kPos; short id; }; struct Range { double start, end, step; }; struct TangentPoints { Point left, center, right; //the "center" point is the tangent point between the curve and the tangent }; struct ParametricInfo { bool isParametric; Range range; int originalDrawsNum, currentDrawsNum; }; struct Color { short r, g, b; }; struct ValuesTableParameters { short funcType, id, entryType, emptyCellsCount; Range range; QString name; }; struct ParEqValues { QList tValues, xValues, yValues; }; #endif // STRUCTURES_H zegrapher-2.0.orig/src/fentableauvaleurs.cpp0000644000175000017500000000464412105437153021513 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #include "fentableauvaleurs.h" FenTableauValeurs::FenTableauValeurs(Informations *info) { informations = info; setWindowTitle(tr("Tableaux de valeurs")); setWindowIcon(QIcon(":/icons/tableauDeValeurs.png")); QHBoxLayout *principalLayout = new QHBoxLayout(); QPushButton *addButton = new QPushButton(tr("Ajouter")); addButton->setFixedSize(80,80); connect(addButton, SIGNAL(released()), this, SLOT(addValuesTable())); QScrollArea *scrollArea = new QScrollArea(); scrollArea->setWidgetResizable(true); scrollArea->setMinimumSize(400,400); principalLayout->addWidget(scrollArea); principalLayout->addWidget(addButton); setLayout(principalLayout); widget = new QWidget(); widget->setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Preferred); QHBoxLayout *widgetLayout = new QHBoxLayout; widgetLayout->setMargin(0); tablesLayout = new QHBoxLayout(); tablesLayout->setSpacing(25); widgetLayout->addLayout(tablesLayout); widgetLayout->addStretch(); widget->setLayout(widgetLayout); scrollArea->setWidget(widget); addValuesTable(); } void FenTableauValeurs::addValuesTable() { ValuesTable *table = new ValuesTable(informations); valuesTableList << table; connect(table, SIGNAL(remove(ValuesTable*)), this, SLOT(removeTable(ValuesTable*))); tablesLayout->addWidget(table); } void FenTableauValeurs::removeTable(ValuesTable *table) { table->close(); delete table; } zegrapher-2.0.orig/src/graphiquegl.h0000644000175000017500000000603611613522150017750 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2011, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #ifndef GRAPHIQUEGL_H #define GRAPHIQUEGL_H #include "Structures.h" // les includes sont dans ce header #include "calcul.h" class GraphiqueGl : public QGLWidget { Q_OBJECT public: explicit GraphiqueGl(); ~GraphiqueGl(); void afficherPtX(double X); void zoomX(double valeur); void zoomY(double valeur); char curseur(); void typeCurseurChange(char type); double y(int n, double X); bool estExistante(int n); void setCalculator(Calcul *calculator); StructFenetre bornes(); signals: void bornesChangent(StructFenetre laFenetre); void couleurChange(const QColor &couleur, short pos); void zoomBoxActive(bool active); void afficherXY(double X, double Y); void sizeChanged(int H, int W); public slots: void changerOptions(Options opt); void nouvelleFenetre(const StructFenetre &newFenetre); void newEtatQuadrillage(bool etat); void changerEtatFonction(int numFonc, bool etat); void changerCouleurFonction(int numFonc, const QColor &couleur); void doNotDraw(); protected: void paintEvent(QPaintEvent *event); void mousePressEvent(QMouseEvent *event); void mouseMoveEvent(QMouseEvent *event); void mouseReleaseEvent(QMouseEvent *event); void wheelEvent(QWheelEvent *event); void miseEnTampon(bool toutCalculer, double nbPixels = 0); void tracerAxes(); void tracerCoubres(); void determinerCentreEtUnites(); void placerGraduations(); void afficherPoint(); QPainter painter; QPen pen; StructFenetre fenetre; Point centre, lastPosSouris, pointPx, pointUnit; double uniteX, uniteY, y1, y2, Xmax, Xmin, posXpx, deplacement; Fonction fonctions[6]; bool dispPoint, boutonPresse, sourisSurUneCourbe, courbeClique, dispRectangle, nePasCalculer, quadrillage; char typeCurseur; short mouseX, mouseY, courbeActuelle, courbeSurvole; Options parametres; QLineF segment; QLinkedList listeDesY[6]; QLinkedList::const_iterator accesseur; QSize windowSize; Calcul *calculatrice; QRect rectReel; }; #endif // GraphiqueGl_H zegrapher-2.0.orig/src/parconfwidget.h0000644000175000017500000000464412105437153020304 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #ifndef PARCONFWIDGET_H #define PARCONFWIDGET_H #include "Structures.h" #include "treecreator.h" #include "exprcalculator.h" class ParConfWidget : public QGroupBox { Q_OBJECT public: explicit ParConfWidget(QChar parName, bool withAnimateButton = false, bool withKeepTracksButton = false); ~ParConfWidget(); void validate(); void setAnimationEnabled(bool enabled); void setAnimationChecked(bool checked); void setFuncsList(QList list); bool isValid(); bool doesKeepTracks(); bool isAnimateChecked(); Range getRange(double k = 0); signals: void k_typed(bool is_k_present); void animateToggled(bool toggled); void returnPressed(); protected slots: void checkExprForK(QString expr); void resetPaletteForStartLineEdit(); void resetPaletteForStepLineEdit(); void resetPaletteForEndLineEdit(); protected: void addConfWidgets(QHBoxLayout *layout); void updateTreeWithExpr(QString &lastExpr, QLineEdit *line, FastTree **treePointerAdress, bool &isExprGood); QLineEdit *start, *step, *end; QCheckBox *animate, *keepTracks; TreeCreator treeCreator; ExprCalculator *calculator; FastTree *startTree, *stepTree, *endTree; QString lastStartExpr, lastStepExpr, lastEndExpr; QPalette validPalette, invalidPalette, neutralPalette; Range defaultRange; bool kState, valid, keepTracksButtonAvailable, isStepGood, isEndGood, isStartGood; }; #endif // PARCONFWIDGET_H zegrapher-2.0.orig/src/window.ui0000644000175000017500000000165011635150464017143 0ustar georgeskgeorgesk Window 0 0 800 500 800 500 ZeGrapher 0 0 800 29 zegrapher-2.0.orig/src/print.cpp0000644000175000017500000001413612105437153017134 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #include "print.h" #include "ui_print.h" Print::Print(Informations *info) : ui(new Ui::Print) { ui->setupUi(this); setWindowTitle(tr("Imprimer")); scene = new PrintPreview(info); orthonormal = false; scene->setMinimumSize(210,297); ui->scrollArea->setWidget(scene); timer.setInterval(4000); timer.setSingleShot(true); printersList = QPrinterInfo::availablePrinters(); for(short i = 0; i < printersList.size(); i++) ui->printer->insertItem(i, printersList[i].printerName()); connect(ui->view, SIGNAL(currentIndexChanged(int)), this, SLOT(viewChanged(int))); connect(ui->height, SIGNAL(valueChanged(double)), scene, SLOT(setGraphHeight(double))); connect(ui->width, SIGNAL(valueChanged(double)), scene, SLOT(setGraphWidth(double))); connect(scene, SIGNAL(newGraphSize(double,double)), this, SLOT(setGraphSize(double,double))); connect(ui->print, SIGNAL(released()), this, SLOT(print())); connect(&timer, SIGNAL(timeout()), this, SLOT(enablePrintButton())); connect(ui->chooseLocation, SIGNAL(released()), this, SLOT(getPDFname())); connect(ui->inPDF, SIGNAL(toggled(bool)), this, SLOT(setPrintButtonText(bool))); connect(ui->scaleGroupBox, SIGNAL(toggled(bool)), this, SLOT(checkScaleWidgets(bool))); connect(ui->xscale, SIGNAL(valueChanged(double)), scene, SLOT(setxscale(double))); connect(ui->yscale, SIGNAL(valueChanged(double)), scene, SLOT(setyscale(double))); connect(ui->legendBox, SIGNAL(toggled(bool)), scene, SLOT(setLegendState(bool))); connect(ui->legendSize, SIGNAL(valueChanged(int)), scene, SLOT(setlegendFontSize(int))); connect(ui->xLegend, SIGNAL(textChanged(QString)), scene, SLOT(setXaxisLegend(QString))); connect(ui->yLegend, SIGNAL(textChanged(QString)), scene, SLOT(setYaxisLegend(QString))); connect(ui->bold, SIGNAL(toggled(bool)), scene, SLOT(setBold(bool))); connect(ui->italic, SIGNAL(toggled(bool)), scene, SLOT(setItalic(bool))); connect(ui->underline, SIGNAL(toggled(bool)), scene, SLOT(setUnderline(bool))); connect(ui->numPrec, SIGNAL(valueChanged(int)), scene, SLOT(setNumPrec(int))); connect(info, SIGNAL(newOrthonormalityState(bool)), this, SLOT(setOrthonormal(bool))); } void Print::getPDFname() { PDFname = QFileDialog::getSaveFileName(this, tr("Créer un PDF"), QString(), "PDF (*.pdf);;PostScript (*.ps)"); if(!PDFname.isEmpty()) { if(!PDFname.endsWith(".ps") && !PDFname.endsWith(".pdf")) PDFname.append(".pdf"); ui->PDFname->setText(PDFname); scene->setPDFname(PDFname); } } void Print::setOrthonormal(bool state) { orthonormal = state; if(!orthonormal) ui->orthInfoLabel->setText(tr("Repère non orthonormal")); else ui->orthInfoLabel->setText(tr("Repère orthonormal")); if(ui->scaleGroupBox->isChecked()) { ui->Ylabel->setEnabled(!state); ui->yscale->setEnabled(!state); } } void Print::checkScaleWidgets(bool state) { if(state && orthonormal) { ui->Ylabel->setEnabled(false); ui->yscale->setEnabled(false); } scene->setScaleStatus(state); } void Print::setPrintButtonText(bool inFileRadioButtonState) { if(inFileRadioButtonState) ui->print->setText(tr("Enregistrer")); else ui->print->setText(tr("Imprimer")); } void Print::enablePrintButton() { ui->print->setEnabled(true); } void Print::print() { if(printersList.isEmpty() && ui->inPaper->isChecked()) return; if(ui->inPaper->isChecked()) { int reponse = QMessageBox::question(this, "Attention", "Vous êtes sur le point d'imprimer, voulez vous continuer ?\n Veuillez vérifier les informations saises avant de continuer.", QMessageBox::Yes | QMessageBox::No); if (reponse == QMessageBox::No) return; } ui->print->setEnabled(false); timer.start(); if(!printersList.isEmpty()) scene->setPrinter(printersList[ui->printer->currentIndex()]); bool resType; if(ui->screenRes->isChecked()) resType = SCREEN_RESOLUTION; else resType = CUSTOM_RESOLUTION; bool colorType; if(ui->colorType->currentIndex() == 0) colorType = COLOR; else colorType = GRAYSCALE; bool printType; if(ui->inPaper->isChecked()) printType = PRINT_SHEET; else { if(ui->PDFname->text().isEmpty()) { QMessageBox::warning(this, tr("Erreur"), tr("Aucun emplacement n'a été saisi pour le fichier PDF à créer.")); return; } printType = PRINT_FILE; } scene->print(ui->numPages->value(), colorType, printType, resType, ui->resolution->value()); } void Print::setGraphSize(double H, double W) { ui->height->setValue(H); ui->width->setValue(W); } void Print::viewChanged(int pos) { if(pos == 0) { ui->width->setMaximum(20); ui->height->setMaximum(28.7); scene->setViewType(PORTRAIT); scene->setMinimumSize(210,297); } else { ui->width->setMaximum(28.7); ui->height->setMaximum(20); scene->setViewType(PAYSAGE); scene->setMinimumSize(297,210); } } Print::~Print() { delete ui; } zegrapher-2.0.orig/src/parconfwidget.cpp0000644000175000017500000001457012105437153020636 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #include "parconfwidget.h" ParConfWidget::ParConfWidget(QChar parName, bool withAnimateButton, bool withKeepTracksButton) : QGroupBox(), treeCreator(NORMAL_EXPR) { setTitle(tr("Réglages du paramètre ") + parName + " :"); keepTracksButtonAvailable = withKeepTracksButton; defaultRange.start = 0; defaultRange.step = 1; defaultRange.end = 0.5; keepTracks = NULL; QHBoxLayout *widgetsLayout = new QHBoxLayout; widgetsLayout->setSpacing(3); addConfWidgets(widgetsLayout); startTree = endTree = stepTree = NULL; kState = valid = isStepGood = isEndGood = isStartGood = false; QColor color; color.setNamedColor(VALID_COLOR); validPalette.setColor(QPalette::Base, color); color.setNamedColor(INVALID_COLOR); invalidPalette.setColor(QPalette::Base, color); if(withAnimateButton) { QVBoxLayout *principalLayout = new QVBoxLayout; principalLayout->setSpacing(3); principalLayout->addLayout(widgetsLayout); QHBoxLayout *animateLayout = new QHBoxLayout; animate = new QCheckBox(tr("Animer")); connect(animate, SIGNAL(toggled(bool)), this, SIGNAL(animateToggled(bool))); animateLayout->addWidget(animate); if(withKeepTracksButton) { keepTracks = new QCheckBox(tr("Garder la trace")); animateLayout->addWidget(keepTracks); treeCreator.allow_k(true); } animateLayout->addStretch(); principalLayout->addLayout(animateLayout); setLayout(principalLayout); } else setLayout(widgetsLayout); } void ParConfWidget::setFuncsList(QList list) { calculator = new ExprCalculator(keepTracksButtonAvailable, list); } bool ParConfWidget::doesKeepTracks() { return keepTracks->isChecked(); } void ParConfWidget::addConfWidgets(QHBoxLayout *layout) { QLabel *startTxt = new QLabel(tr("Début:")); QLabel *endTxt = new QLabel(tr(" Fin:")); QLabel *stepTxt = new QLabel(tr(" Pas:")); start = new QLineEdit; start->setMaximumHeight(25); connect(start, SIGNAL(textChanged(QString)), this, SLOT(checkExprForK(QString))); connect(start, SIGNAL(textChanged(QString)), this, SLOT(resetPaletteForStartLineEdit())); connect(start, SIGNAL(returnPressed()), this, SIGNAL(returnPressed())); end = new QLineEdit; end->setMaximumHeight(25); connect(end, SIGNAL(textChanged(QString)), this, SLOT(checkExprForK(QString))); connect(end, SIGNAL(textChanged(QString)), this, SLOT(resetPaletteForEndLineEdit())); connect(end, SIGNAL(returnPressed()), this, SIGNAL(returnPressed())); step = new QLineEdit; step->setMaximumHeight(25); connect(step, SIGNAL(textChanged(QString)), this, SLOT(checkExprForK(QString))); connect(step, SIGNAL(textChanged(QString)), this, SLOT(resetPaletteForStepLineEdit())); connect(step, SIGNAL(returnPressed()), this, SIGNAL(returnPressed())); layout->addWidget(startTxt); layout->addWidget(start); layout->addWidget(endTxt); layout->addWidget(end); layout->addWidget(stepTxt); layout->addWidget(step); } void ParConfWidget::checkExprForK(QString expr) { bool is_k_present = expr.contains('k'); if(is_k_present != kState) emit k_typed(is_k_present); kState = is_k_present; } void ParConfWidget::updateTreeWithExpr(QString &lastExpr, QLineEdit *line, FastTree **treePointerAdress, bool &isExprGood) { if(lastExpr != line->text()) { lastExpr = line->text(); isExprGood = calculator->checkCalledFuncsValidity(lastExpr); if(isExprGood) { if(*treePointerAdress != NULL) treeCreator.deleteFastTree(*treePointerAdress); *treePointerAdress = treeCreator.getTreeFromExpr(lastExpr, isExprGood); } if(isExprGood) line->setPalette(validPalette); else line->setPalette(invalidPalette); } } void ParConfWidget::resetPaletteForStartLineEdit() { start->setPalette(neutralPalette); } void ParConfWidget::resetPaletteForStepLineEdit() { step->setPalette(neutralPalette); } void ParConfWidget::resetPaletteForEndLineEdit() { end->setPalette(neutralPalette); } void ParConfWidget::validate() { updateTreeWithExpr(lastStartExpr, start, &startTree, isStartGood); updateTreeWithExpr(lastEndExpr, end, &endTree, isEndGood); updateTreeWithExpr(lastStepExpr, step, &stepTree, isStepGood); valid = isStartGood && isStepGood && isEndGood; } void ParConfWidget::setAnimationEnabled(bool enabled) { animate->setEnabled(enabled); if(keepTracks != NULL) keepTracks->setEnabled(enabled); } void ParConfWidget::setAnimationChecked(bool checked) { animate->setChecked(checked); } bool ParConfWidget::isValid() { return valid || isHidden(); } bool ParConfWidget::isAnimateChecked() { return animate->isChecked(); } Range ParConfWidget::getRange(double k) { if(!valid || isHidden()) return defaultRange; Range range; calculator->setK(k); range.start = calculator->calculateFromTree(startTree); range.step = calculator->calculateFromTree(stepTree); range.end = calculator->calculateFromTree(endTree); return range; } ParConfWidget::~ParConfWidget() { if(stepTree != NULL) treeCreator.deleteFastTree(stepTree); if(endTree != NULL) treeCreator.deleteFastTree(endTree); if(startTree != NULL) treeCreator.deleteFastTree(startTree); delete calculator; } zegrapher-2.0.orig/src/colorsaver.h0000644000175000017500000000270512105437153017623 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #ifndef COLORSAVER_H #define COLORSAVER_H #include class ColorSaver : public QObject { Q_OBJECT public: ColorSaver(QColor firstANDlast = Qt::black); void setCurvesNum(double num); QColor getColor(int index); public slots: void setFristColor(QColor col); void setLastColor(QColor col); signals: void colorsChanged(); protected: void saveColors(); double curvesNum; QColor firstColor, lastColor; QList colorsList; }; #endif // COLORSAVER_H zegrapher-2.0.orig/src/treecreator.cpp0000644000175000017500000002715612105437153020325 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #include "treecreator.h" TreeCreator::TreeCreator(short callingObjectType) { funcType = callingObjectType; refFunctions << "acos" << "asin" << "atan" << "cos" << "sin" << "tan" << "sqrt" << "log" << "ln" << "abs" << "exp" << "floor" << "ceil" << "cosh" << "sinh" << "tanh" << "E" << "e"; functions << "f" << "g" << "h" << "p" << "r" << "m"; antiderivatives << "F" << "G" << "H" << "P" << "R" << "M"; derivatives << "f'" << "g'" << "h'" << "p'" << "r'" << "m'"; sequences << "u" << "v" << "l" << "w" << "q" << "z"; vars << "x" << "t" << "n" << "k" << "π" << "pi" << "Pi" << "PI"; authorizedVars << false << false << false << false << true << true << true << true; operators << '^' << '*' << '/' << '+' << '-'; operatorsPriority << POW << OP_HIGH << OP_HIGH << OP_LOW << OP_LOW; operatorsTypes << POW << MULTIPLY << DIVIDE << PLUS << MINUS; refreshAuthorizedVars(); } void TreeCreator::refreshAuthorizedVars() { if(funcType == FUNCTION) { authorizedVars[0] = authorizedVars[3] = true; // x and k } else if(funcType == SEQUENCE) { authorizedVars[2] = authorizedVars[3] = true; // k and n } else if(funcType == PARAMETRIC_EQ) { authorizedVars[1] = authorizedVars[3] = true; // k and t } } FastTree* TreeCreator::getTreeFromExpr(QString expr, bool &ok) { FastTree *tree = NULL; insertMultiplySigns(expr); ok = check(expr); if(ok) tree = createFastTree(decompTypes.size()-1, 0); return tree; } void TreeCreator::allow_k(bool state) { authorizedVars[3] = state; } void TreeCreator::insertMultiplySigns(QString &formule) { for(int i = 0 ; i < formule.size()-1; i++) { if((formule[i].isDigit() && formule[i+1].isLetter()) || (formule[i].isLetter() && formule[i+1].isDigit()) || (formule[i].isDigit() && formule[i+1] == '(') || (formule[i] == ')' && formule[i+1] == '(') || (formule[i] == ')' && (formule[i+1].isDigit() || formule[i+1].isLetter())) || (vars.contains(QString(formule[i])) && vars.contains(QString(formule[i+1]))) || (i != 0 && !formule[i-1].isLetter() && vars.contains(QString(formule[i])) && formule[i+1] == '(')) { formule.insert(i+1, QString("*")); i++; } else if(formule[i] == '-' && formule[i+1].isLetter()) { formule.insert(i+1, QString("1*")); i++; } } } QList TreeCreator::getCalledFuncs(QString expr) { QList calledFuncs; if(expr.isEmpty()) return calledFuncs; bool doesContain = false; int i = 0, letterStart; QStringList calledObjects; while(i < expr.size()) { if(expr[i].isLetter()) { letterStart = i; while(expr[i].isLetter() && i < expr.size()) i++; calledObjects << expr.mid(letterStart, i - letterStart); } i++; } for(i = 0 ; i < functions.size() ; i++) { doesContain = false; doesContain = doesContain || calledObjects.contains(antiderivatives[i]); doesContain = doesContain || calledObjects.contains(functions[i]); doesContain = doesContain || calledObjects.contains(derivatives[i]); if(doesContain && !calledFuncs.contains(i)) calledFuncs << i; } return calledFuncs; } QList TreeCreator::getCalledSeqs(QString expr) { QList calledSeqs; if(expr.isEmpty()) return calledSeqs; int i = 0, letterStart; QStringList calledObjects; while(i < expr.size()) { if(expr[i].isLetter()) { letterStart = i; while(expr[i].isLetter() && i < expr.size()) i++; calledObjects << expr.mid(letterStart, i - letterStart); } i++; } for(i = 0 ; i < sequences.size() ; i++) { if(calledObjects.contains(sequences[i]) && !calledSeqs.contains(i)) calledSeqs << i; } return calledSeqs; } bool TreeCreator::check(QString formule) { formule.remove(' '); formule.replace("²", "^2"); decompPriorites.clear(); decompTypes.clear(); decompValeurs.clear(); if(formule.isEmpty()) return false; bool chiffre = true, ouvrepth = true, numberSign = true, varOrFunc = true, canEnd = false, operateur = false, fermepth = false; short pth = 0; for(int i = 0 ; i < formule.size(); i++) { if((formule[i].isDigit() && chiffre) || ((formule[i]=='-' || formule[i] == '+') && numberSign && i < formule.size() -1 && formule[i+1].isDigit())) { bool ok = false, dejavirgule = false; int numStart = i, numDigits = 1; i++; while(!ok && i < formule.size()) { if(formule[i].isDigit()) i++; else if((formule[i]==',' || formule[i]=='.') && !dejavirgule) { dejavirgule = true; i++; } else ok = true; } numDigits = i - numStart; i--; QString nombre = formule.mid(numStart, numDigits); decompPriorites << NOMBRE; decompTypes << NOMBRE; decompValeurs << nombre.toDouble(&ok); if(!ok) return false; ouvrepth = varOrFunc = numberSign = false; chiffre = operateur = fermepth = canEnd = true; } else if(formule[i].isLetter() && varOrFunc) { int letterPosStart = i; while(formule[i+1].isLetter() && i+1 < formule.size()) { i++ ; } if(i != formule.size() && formule[i+1] == '\'') i++; int numLetters = i - letterPosStart + 1; QString name = formule.mid(letterPosStart, numLetters); if(refFunctions.contains(name) || antiderivatives.contains(name) || functions.contains(name) || derivatives.contains(name) || sequences.contains(name)) { if(i+1 >= formule.size() || formule[i+1] != '(') return false; decompPriorites << FONC; decompValeurs << 0.0; ouvrepth = true; chiffre = operateur = canEnd = fermepth = varOrFunc = numberSign = false; } if(refFunctions.contains(name)) { decompTypes << refFunctions.indexOf(name) + REF_FUNC_START; if(name == "E" || name == "e") chiffre = numberSign = ouvrepth = true; } else if(antiderivatives.contains(name) && funcType == FUNCTION) decompTypes << antiderivatives.indexOf(name) + INTEGRATION_FUNC_START; else if(functions.contains(name)) decompTypes << functions.indexOf(name) + FUNC_START; else if(derivatives.contains(name)) decompTypes << derivatives.indexOf(name) + DERIV_START; else if(sequences.contains(name) && funcType == SEQUENCE) decompTypes << sequences.indexOf(name) + SEQUENCES_START; else if(vars.contains(name)) { if(!authorizedVars[vars.indexOf(name)]) return false; decompTypes << vars.indexOf(name) + VARS_START; decompPriorites << VAR; decompValeurs << 0.0; varOrFunc = numberSign = false; ouvrepth = chiffre = operateur = fermepth = canEnd = true; } else return false; } else if(operators.contains(formule[i]) && operateur) { short pos = operators.indexOf(formule[i]); decompTypes << operatorsTypes[pos]; decompPriorites << operatorsPriority[pos]; decompValeurs << 0.0 ; ouvrepth = chiffre = varOrFunc = true; operateur = numberSign = fermepth = canEnd = false; } else if(formule[i]=='(' && ouvrepth) { pth++; decompTypes << PTHO ; decompPriorites << PTHO; decompValeurs << 0.0 ; numberSign = chiffre = varOrFunc = ouvrepth = true; operateur = fermepth = canEnd = false; } else if(formule[i]==')' && fermepth && pth > 0) { pth--; decompTypes << PTHF ; decompPriorites << PTHF ; decompValeurs << 0.0 ; operateur = fermepth = canEnd = true; chiffre = numberSign = ouvrepth = varOrFunc = false; } else return false; } return pth == 0 && canEnd; } FastTree* TreeCreator::createFastTree(int debut, int fin) { FastTree *racine = new FastTree; racine->right = NULL; racine->left = NULL; racine->value = NULL; short pths = 0, posPthFerme = 0, posPthOuvert = 0; bool debutPthFerme = false; if(debut == fin) { if(decompPriorites[debut] == NOMBRE) { racine->type = NOMBRE; racine->value = new double; *racine->value = decompValeurs[debut]; } else racine->type = decompTypes[debut]; return racine; } for(char op = 0; op < 5; op++) { for(short i = debut ; i >= fin ; i--) { if(decompPriorites[i] == PTHF) { if(!debutPthFerme) { debutPthFerme = true; posPthFerme = i - 1; } pths--; } else if(decompPriorites[i] == PTHO) { pths++; if(pths == 0) { posPthOuvert = i + 1; if(op == PTHO) { delete racine; racine = createFastTree(posPthFerme, posPthOuvert); return racine; } } } else if(pths == 0 && decompPriorites[i] == op) { racine->type = decompTypes[i]; racine->right = createFastTree(debut, i + 1); if(op != FONC) racine->left = createFastTree(i - 1, fin); return racine; } } } return racine; } void TreeCreator::deleteFastTree(FastTree *tree) { delete tree->value; if(tree->left != NULL) deleteFastTree(tree->left); if(tree->right != NULL) deleteFastTree(tree->right); delete tree; } zegrapher-2.0.orig/src/maingraph.h0000644000175000017500000000730212105437153017410 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #ifndef MainGraph_H #define MainGraph_H #include "graphdraw.h" #define FUNC_HOVER 0 #define SEQ_HOVER 1 #define TANGENT_RESIZE_HOVER 2 #define TANGENT_MOVE_HOVER 3 class MainGraph : public GraphDraw { Q_OBJECT public: explicit MainGraph(Informations *info); ~MainGraph(); void afficherPtX(double x); signals: void zoomBoxActive(bool active); void sizeChanged(int H, int W); public slots: void showHorWidget(); void showVerWidget(); void showXYWidgets(); void hideHorWidget(); void hideVerWidget(); void hideXYWidgets(); void reactivateSmoothing(); void updateParEq(); void updateGraph(); protected slots: void zoomX(); void stop_X_zoom(); void zoomY(); void stop_Y_Zoom(); protected: void paintEvent(QPaintEvent *event); void mousePressEvent(QMouseEvent *event); void mouseMoveEvent(QMouseEvent *event); void mouseReleaseEvent(QMouseEvent *event); void wheelEvent(QWheelEvent *event); void addOtherWidgets(); void mouseMoveWithActiveSelection(double x, double y); void mouseFuncHoverTest(double x, double y); void mouseSeqHoverTest(double x, double y); void mouseTangentHoverTest(double x, double y); void resaveImageBuffer(); void addTangentToBuffer(); void drawHoveringConsequence(); void newWindowSize(); void directPaint(); void indirectPaint(); void drawAxes(); void drawAnimatedParEq(); void drawAllParEq(); void determinerCentreEtUnites(); void placerGraduations(); void afficherPoint(); Point lastPosSouris, pointPx, pointUnit; QSlider *hSlider, *vSlider; QLineEdit *lineX, *lineY; double y1, y2, mouseX, mouseY; bool dispPoint, boutonPresse, sourisSurUneCourbe, dispRectangle, vWidgetState, hWidgetState, xyWidgetsState, hHideStarted, vHideStarted, hoveredCurveType, resaveGraph, cancelUpdateSignal, resaveTangent, animationUpdate; char typeCurseur; int hBottom, vBottom, xyBottom; QTimer timerX, timerY; QPolygonF polygon; QSize windowSize; CurveSelection selectedCurve; MouseState mouseState; QRect rectReel, hWidgetRect, vWidgetRect; QImage *savedGraph; QList customFunctions; QList customSequences; QLabel *xTextLabel, *yTextLabel; QLabel kLabel; QWidget *hWidget, *vWidget, *xWidget, *yWidget; QTimer mouseNotOnHWidget, mouseNotOnVWidget, vWidgetHideTransition, hWidgetHideTransition,vWidgetShowTransition, hWidgetShowTransition, xyWidgetsShowTransition, xyWidgetsHideTransition, timeWaitForXYWidgets, repaintTimer; QPoint hTopLeft, vTopLeft, xTopLeft, yTopLeft; Point axesIntersec; }; #endif // MainGraph_H zegrapher-2.0.orig/src/informations.h0000644000175000017500000000524112105437153020152 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #ifndef INFORMATIONS_H #define INFORMATIONS_H #include #include "pareqwidget.h" #include "seqcalculator.h" #include "funccalculator.h" #include "straightlinewidget.h" #include "tangentwidget.h" #include "colorsaver.h" class Informations: public QObject { Q_OBJECT public: Informations(); GraphRange getRange(); bool getGridState(); bool isOrthonormal(); Options getOptions(); void setParEqsListPointer(QList *list); QList* getParEqsList(); void setTangentsListPointer(QList *list); QList* getTangentsList(); void setStraightLinesListPointer(QList *list); QList* getStraightLinesList(); void checkParametricEquations(); void setSequencesList(QList list); QList getSeqsList(); void setFunctionsList(QList list); QList getFuncsList(); public slots: void emitUpdateSignal(); void emitDrawStateUpdate(); void emitAnimationUpdate(); signals: void newOrthonormalityState(bool orth); void updateOccured(); void drawStateUpdateOccured(); void animationUpdate(); public slots: void setRange(const GraphRange &newFenetre); void setGridState(bool etat); void setOrthonormal(bool state); void setOptions(Options opt); private: QList *tangents; QList *lines; QList functions; QList sequences; GraphRange range; Options parametres; bool orthonormal, gridState, updatingLock; QList *parEqWidgets; }; #endif // INFORMATIONS_H zegrapher-2.0.orig/src/funcwidget.h0000644000175000017500000000406712105437153017606 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #ifndef FUNCWIDGET_H #define FUNCWIDGET_H #include "Structures.h" #include "funccalculator.h" #include "abstractfuncwidget.h" #include "integrationwidget.h" #include "colorsaver.h" class FuncWidget : public AbstractFuncWidget { Q_OBJECT public: explicit FuncWidget(QChar name, int id, QColor color, QWidget *parentWindow); void firstValidation(); void secondValidation(); void setFuncsCalcsList(QList list); void setFuncWidgets(QList widgets); bool isFuncParametric(); bool validateIntegrationPoints(); FuncCalculator* getCalculator(); public slots: void checkCalledFuncsParametric(); protected slots: void resetToNeutralPalette(); void checkExprLineEdit(); signals: void drawStateChanged(); void newParametricState(int funcNum); protected: void updateParametricState(); QList funcWidgets; FuncCalculator *calculator; IntegrationWidget *integrationWidget; ColorSaver colorSaver; QChar funcName; int funcNum; bool areCalledFuncsParametric, isExprParametric; }; #endif // FUNCWIDGET_H zegrapher-2.0.orig/src/fentableauvaleurs.h0000644000175000017500000000516512105437153021157 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #ifndef FENTABLEAUVALEURS_H #define FENTABLEAUVALEURS_H #include "informations.h" #include "valuestable.h" namespace Ui { class FenTableauValeurs; } class FenTableauValeurs : public QWidget { Q_OBJECT public: explicit FenTableauValeurs(Informations *info); protected slots: void addValuesTable(); void removeTable(ValuesTable *table); protected: QHBoxLayout *tablesLayout; QList valuesTableList; Informations *informations; QWidget *widget; /* void setCalculator(Calcul *calc); void setInfoClass(Informations *info); public slots: void appliquer(); void setPrecision(int prec); private slots: void fromCurrentWindow(); void manual(); void semiAutomatic(); void manuelClicked(bool etat); void nouvelleFenetreClicked(bool etat); void funcSeqItemChanged(QStandardItem *item); void parametricItemChanged(QStandardItem *item); bool updateRange(); void updateWithNewRange(); void addEntries(QList &liste); void manualParEq(); void fillFromRange(); protected: void addFuncValues(); void addSeqValues(); Informations *informations; Ui::FenTableauValeurs *ui; QStandardItemModel *funcSeqModel; QStandardItemModel *parametricModel; StructFenetre fenetre; Calcul *calculator; QStringList funcsNameList; QStringList seqsNameList; QTableView *tableView; short precision, colonne; QList funcMaps; QList xValues; QFont bold; QBrush blueBackground; QTimer timer; Range fillRange; bool funcsState[6]; bool seqsState[6]; */ }; #endif // FENTABLEAUVALEURS_H zegrapher-2.0.orig/src/zegrapher.h0000644000175000017500000000372312105437153017434 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #ifndef ZEGRAPHER_H #define ZEGRAPHER_H #include "Structures.h" // les includes sont dans ce header #include "maingraph.h" #include "fenetrebornes.h" #include "fenetrefonctions.h" #include "fenetreoptions.h" #include "fentableauvaleurs.h" #include "apropos.h" #include "imagesave.h" #include "printpreview.h" #include "print.h" #include "keyboard.h" class MainWindow : public QMainWindow { Q_OBJECT public: explicit MainWindow(); ~MainWindow(); protected: void closeEvent(QCloseEvent *evenement); void makeConnects(); void createMenus(); void createZoomWidgets(); private: Informations *informations; MainGraph *scene; GraphRange window; FenetreFonctions *fenFonctions; FenetreBornes *fenBornes; FenetreOptions *fenOptions; FenTableauValeurs *fenValeurs; Keyboard *keyboard; ImageSave *fenImage; apropos *fenAPropos; Print *fenPrint; QAction *boutonGrille; ImagePreview *fenImageScene; PrintPreview *fenPrintScene; }; #endif // ZEGRAPHER_H zegrapher-2.0.orig/src/abstractfuncwidget.h0000644000175000017500000000316512105437153021330 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #ifndef ABSTRACTFUNCWIDGET_H #define ABSTRACTFUNCWIDGET_H #include "Structures.h" #include "parconfwidget.h" #include "qcolorbutton.h" class AbstractFuncWidget : public QWidget { Q_OBJECT public: explicit AbstractFuncWidget(); signals: void returnPressed(); protected: void addMainWidgets(); QCheckBox *drawCheckBox; QHBoxLayout *secondContainerLayout; QLabel *nameLabel; QLineEdit *expressionLineEdit; QColorButton *colorButton, *secondColorButton; ParConfWidget *kConfWidget; TreeCreator treeCreator; bool isParametric, isValid; QPalette invalidPalette, validPalette, neutralPalette; }; #endif // ABSTRACTFUNCWIDGET_H zegrapher-2.0.orig/src/valuestableconf.cpp0000644000175000017500000002430212105437153021151 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #include "valuestableconf.h" ValuesTableConf::ValuesTableConf(Informations *info, QWidget *parent) : QWidget(parent) { infoClass = info; funcs = info->getFuncsList(); seqs = info->getSeqsList(); parEqs = info->getParEqsList(); exprCalc = new ExprCalculator(false, funcs); connect(infoClass, SIGNAL(updateOccured()), this, SLOT(updateNameCombo())); functions << "f" << "g" << "h" << "p" << "r" << "m"; sequences << "u" << "v" << "l" << "w" << "q" << "z"; QVBoxLayout *principalLayout = new QVBoxLayout(); principalLayout->addStretch(); QFormLayout *typeLayout = new QFormLayout(); typeCombo = new QComboBox(); typeCombo->addItem(""); typeCombo->addItem(tr("Fonction")); typeCombo->addItem(tr("Suite")); typeCombo->addItem(tr("Equation paramétrique")); typeCombo->setCurrentIndex(0); connect(typeCombo, SIGNAL(currentIndexChanged(int)), this, SLOT(updateNameCombo())); nameCombo = new QComboBox(); nameCombo->setEnabled(false); typeLayout->addRow(tr("Type :"), typeCombo); typeLayout->addRow(tr("Nom :"), nameCombo); principalLayout->addLayout(typeLayout); QGroupBox *entryValues = new QGroupBox(tr("Valeurs d'entrée :")); QVBoxLayout *entryValuesLayout = new QVBoxLayout(); //------------- From current graphic fromCurrentGraphic = new QRadioButton(tr("Valeurs du graphique.")); fromCurrentGraphic->setChecked(true); //--------------- Manual Entry QVBoxLayout *manualEntryLayout = new QVBoxLayout(); manualEntryLayout->setSpacing(3); manualEntry = new QRadioButton(tr("Manuellement.")); QHBoxLayout *emptyCellsNumLayout = new QHBoxLayout(); emptyCellsNumLayout->setMargin(0); emptyCellsNumLayout->setSpacing(6); QLabel *emptyCellsNumText = new QLabel(tr("Cases vides :")); emptyCellsNumText->setEnabled(false); connect(manualEntry, SIGNAL(toggled(bool)), emptyCellsNumText, SLOT(setEnabled(bool))); emptyCellsNum = new QSpinBox(); emptyCellsNum->setValue(10); emptyCellsNum->setMinimum(10); emptyCellsNum->setMaximum(100); emptyCellsNum->setMaximumHeight(25); emptyCellsNum->setEnabled(false); connect(manualEntry, SIGNAL(toggled(bool)), emptyCellsNum, SLOT(setEnabled(bool))); emptyCellsNumLayout->addSpacing(15); emptyCellsNumLayout->addWidget(emptyCellsNumText); emptyCellsNumLayout->addWidget(emptyCellsNum); emptyCellsNumLayout->addStretch(); manualEntryLayout->addWidget(manualEntry); manualEntryLayout->addLayout(emptyCellsNumLayout); //------------------- Predefined Entry QVBoxLayout *predefinedEntryLayout = new QVBoxLayout(); predefinedEntryLayout->setSpacing(3); predefined = new QRadioButton(tr("Prédéfinis")); QHBoxLayout *start_step_Layout = new QHBoxLayout(); start_step_Layout->setSpacing(6); QLabel *startText = new QLabel(tr("Début:")); startText->setEnabled(false); connect(predefined, SIGNAL(toggled(bool)), startText, SLOT(setEnabled(bool))); startValue = new QLineEdit(); startValue->setMaximumHeight(25); startValue->setEnabled(false); connect(predefined, SIGNAL(toggled(bool)), startValue, SLOT(setEnabled(bool))); QLabel *stepText = new QLabel(tr("Pas:")); stepText->setEnabled(false); connect(predefined, SIGNAL(toggled(bool)), stepText, SLOT(setEnabled(bool))); stepValue = new QLineEdit(); stepValue->setMaximumHeight(25); stepValue->setEnabled(false); connect(predefined, SIGNAL(toggled(bool)), stepValue, SLOT(setEnabled(bool))); start_step_Layout->addSpacing(15); start_step_Layout->addWidget(startText); start_step_Layout->addWidget(startValue); start_step_Layout->addWidget(stepText); start_step_Layout->addWidget(stepValue); start_step_Layout->addStretch(); QHBoxLayout *cellsNumLayout = new QHBoxLayout(); cellsNumLayout->setSpacing(6); QLabel *cellsNumText = new QLabel(tr("Cases :")); cellsNumText->setEnabled(false); connect(predefined, SIGNAL(toggled(bool)), cellsNumText, SLOT(setEnabled(bool))); cellsNum = new QSpinBox(); cellsNum->setMaximumHeight(25); cellsNum->setValue(10); cellsNum->setMinimum(10); cellsNum->setMaximum(200); cellsNum->setEnabled(false); connect(predefined, SIGNAL(toggled(bool)), cellsNum, SLOT(setEnabled(bool))); cellsNumLayout->addSpacing(15); cellsNumLayout->addWidget(cellsNumText); cellsNumLayout->addWidget(cellsNum); cellsNumLayout->addStretch(); predefinedEntryLayout->addWidget(predefined); predefinedEntryLayout->addLayout(start_step_Layout); predefinedEntryLayout->addLayout(cellsNumLayout); //---------------------------------------- Add them to the layout for QGroupBox entryValuesLayout->addWidget(fromCurrentGraphic); entryValuesLayout->addLayout(manualEntryLayout); entryValuesLayout->addLayout(predefinedEntryLayout); entryValues->setLayout(entryValuesLayout); //----------------------------------------- Add QGroupBox to the principal Layout and a "apply" button principalLayout->addWidget(entryValues); QHBoxLayout *applyButtonLayout = new QHBoxLayout(); QPushButton *applyButton = new QPushButton(tr("Appliquer")); connect(applyButton, SIGNAL(released()), this, SLOT(apply())); applyButtonLayout->addStretch(); applyButtonLayout->addWidget(applyButton); applyButtonLayout->addStretch(); principalLayout->addLayout(applyButtonLayout); principalLayout->addStretch(); setLayout(principalLayout); } void ValuesTableConf::updateNameCombo() { int index = typeCombo->currentIndex(); nameCombo->clear(); nameCombo->addItem(""); typesNameMap.clear(); typesNameMap << 0; if(index == FUNCTION)// FUNCTION { nameCombo->setEnabled(true); for(short i = 0; i < funcs.size(); i++) { if(funcs[i]->isFuncValid()) { typesNameMap << i; nameCombo->addItem(functions[i]); } } } else if(index == SEQUENCE)// SEQUENCE in the combo is 2, and also the case in the defines in "structures.h" { nameCombo->setEnabled(true); for(short i = 0; i < seqs.size(); i++) { if(seqs[i]->isSeqValid()) { typesNameMap << i; nameCombo->addItem(sequences[i]); } } } else if(index == PARAMETRIC_EQ) { nameCombo->setEnabled(true); for(short i = 0; i < parEqs->size(); i++) { if(parEqs->at(i)->isValid()) { typesNameMap << i; nameCombo->addItem("(P" + QString::number(i+1) + ")"); } } } else nameCombo->setEnabled(false); nameCombo->setCurrentIndex(0); } static double fipart(double x) { if(x < 0) { return ceil(x); } else { return floor(x); } } bool ValuesTableConf::verifySeqInfo(double start, double step) { if(start != fipart(start)) { QMessageBox::warning(window(), tr("Erreur"), tr("La valeur de départ doit être un entier.")); return false; } if(start < seqs[0]->get_nMin()) { QMessageBox::warning(window(), tr("Erreur"), tr("La valeur de départ doit être supérieure à nmin.")); return false; } if(step != fipart(step) || step < 0) { QMessageBox::warning(window(), tr("Erreur"), tr("La valeur du pas doit être un entier positif.")); return false; } return true; } void ValuesTableConf::apply() { if(typeCombo->currentIndex() == 0) { QMessageBox::warning(this, tr("Erreur"), tr("Veuillez selectionner un type")); return; } else if(nameCombo->currentIndex() == 0) { QMessageBox::warning(this, tr("Erreur"), tr("Veuillez selectionner un nom")); return; } ValuesTableParameters parameters; if(fromCurrentGraphic->isChecked()) { parameters.entryType = FROM_CURRENT_GRAPHIC; } else if(manualEntry->isChecked()) { parameters.entryType = MANUAL_ENTRY; parameters.emptyCellsCount = emptyCellsNum->value(); } else //predefined entry { parameters.entryType = PREDEFINED_ENTRY; bool ok = true; parameters.range.start = exprCalc->calculateExpression(startValue->text(), ok); if(!ok) { QMessageBox::warning(this, tr("Erreur"), tr("Erreur de saisie dans la valeur de départ.")); return; } parameters.range.step = exprCalc->calculateExpression(stepValue->text(), ok); if(!ok) { QMessageBox::warning(this, tr("Erreur"), tr("Erreur de saisie dans la valeur du pas.")); return; } if(typeCombo->currentIndex() == SEQUENCE) if(!verifySeqInfo(parameters.range.start, parameters.range.step)) return; parameters.range.end = parameters.range.start + parameters.range.step * (double)cellsNum->value(); } parameters.funcType = typeCombo->currentIndex(); parameters.id = typesNameMap[nameCombo->currentIndex()]; parameters.name = nameCombo->currentText(); emit next(parameters); } ValuesTableConf::~ValuesTableConf() { delete exprCalc; } zegrapher-2.0.orig/src/qcolorbutton.cpp0000644000175000017500000000311412105437153020525 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #include "qcolorbutton.h" QColorButton::QColorButton(QColor color) { setColor(color); setFixedSize(15, 15); setFocusPolicy(Qt::NoFocus); connect(this, SIGNAL(released()), this, SLOT(openColorDialog())); } void QColorButton::openColorDialog() { setColor(QColorDialog::getColor(currentColor, window())); } void QColorButton::setColor(QColor color) { currentColor = color; setStyleSheet("background-color:"+color.name()+"; border-width: 1px; border-color: grey; border-style: solid; border-radius: 5;"); emit colorChanged(currentColor); } QColor QColorButton::getCurrentColor() { return currentColor; } zegrapher-2.0.orig/src/seqtable.cpp0000644000175000017500000002151012105437153017572 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #include "seqtable.h" static double fipart(double x) { if(x < 0) { return ceil(x); } else { return floor(x); } } SeqTable::SeqTable(Informations *info) : AbstractTable(), exprCalculator(false, info->getFuncsList()) { informations = info; updateTimer->setInterval(2000); updateTimer->setSingleShot(true); QColor color; color.setNamedColor(VALID_COLOR); validPalette.setColor(QPalette::Base, color); color.setNamedColor(INVALID_COLOR); invalidPalette.setColor(QPalette::Base, color); connect(informations, SIGNAL(updateOccured()), updateTimer, SLOT(start())); connect(updateTimer, SIGNAL(timeout()), this, SLOT(updateTable())); connect(precision, SIGNAL(valueChanged(int)), this, SLOT(precisionEdited())); connect(model, SIGNAL(itemChanged(QStandardItem*)), this, SLOT(cellEdited(QStandardItem*))); } void SeqTable::setTableParameters(ValuesTableParameters par) { parameters = par; title->setText(tr("Suite: ") + "(" + parameters.name + "n)"); seq = informations->getSeqsList()[parameters.id]; if(parameters.entryType == FROM_CURRENT_GRAPHIC) connect(informations, SIGNAL(updateOccured()), updateTimer, SLOT(start())); if(seq->isSeqParametric()) { k = seq->getKRange().start; k_parameter_widget->show(); k_value->setText(QString::number(k, 'g', precision->value())); connect(k_value, SIGNAL(returnPressed()), this, SLOT(kValueEdited())); } updateTable(); } void SeqTable::precisionEdited() { disableCellEdit = true; for(int i = 0; i < xValues.size(); i++) { if(!isnan(xValues[i])) { model->item(i+1, 0)->setText(QString::number(xValues[i], 'g', precision->value())); model->item(i+1, 1)->setText(QString::number(yValues[i], 'g', precision->value())); } } disableCellEdit = false; } void SeqTable::kValueEdited() { bool ok = true; double temp = exprCalculator.calculateExpression(k_value->text(), ok); if(!ok) k_value->setPalette(invalidPalette); else k_value->setPalette(validPalette); k = temp; updateTable(); } void SeqTable::updateTable() { model->clear(); xValues.clear(); yValues.clear(); if(!seq->isSeqValid()) return; if(seq->isSeqParametric() && k_parameter_widget->isHidden()) { k = seq->getKRange().start; k_parameter_widget->show(); k_value->setText(QString::number(k, 'g', precision->value())); connect(k_value, SIGNAL(returnPressed()), this, SLOT(kValueEdited())); } if(parameters.entryType == FROM_CURRENT_GRAPHIC || parameters.entryType == PREDEFINED_ENTRY) fillFromRange(); else emptyCellsFill(); tableView->setModel(model); for(short i = 0; i < model->columnCount(); i++) tableView->setColumnWidth(i, 140); } void SeqTable::fillFromRange() { if(parameters.entryType == FROM_CURRENT_GRAPHIC) { GraphRange range = informations->getRange(); parameters.range.start = fipart(range.Xmin / range.Xscale) * range.Xscale; parameters.range.step = range.Xscale; parameters.range.end = range.Xmax; if(seq->get_nMin() > parameters.range.end) return; if(seq->get_nMin() > parameters.range.start) parameters.range.start = seq->get_nMin(); if(parameters.range.step != ceil(parameters.range.step)) parameters.range.step = ceil(parameters.range.step); } add_x_values(); if(seq->isSeqParametric()) add_parSeq_y_values(); else add_y_values(); tableView->setModel(model); } void SeqTable::cellEdited(QStandardItem *item) { if(item->text().isEmpty() || item->column() != 0 || disableCellEdit) return; bool ok = true; double x = exprCalculator.calculateExpression(item->text(), ok), y; if(!ok) { QMessageBox::warning(this, tr("Erreur"), tr("Erreur de syntaxe dans cette entrée")); return; } if(x != floor(x) || x < seq->get_nMin()) { QMessageBox::warning(this, tr("Erreur"), tr("Vous devez saisir un nombre entier supérieur à nmin")); return; } if(seq->isSeqParametric()) { y = seq->getCustomSeqValue(x, ok, k); if(!ok) { QMessageBox::critical(this, tr("Erreur"), tr("Erreur dans le calcul des termes de cette suite paramètrique, changer la valeur du paramètre pourrait résoudre le problème.")); model->item(item->row(), 1)->setText(""); return; } } else y = seq->getSeqValue(x, ok); if(!ok) return; xValues[item->row()-1] = x; // row-1 because there is a "x" cell on the first cell of the first column yValues[item->row()-1] = y; model->item(item->row(), 1)->setText(QString::number(y, 'g', precision->value())); } void SeqTable::add_x_values() { QList liste; liste.reserve(100); QStandardItem *item2 = new QStandardItem("n"); item2->setFont(boldFont); item2->setEditable(false); liste.append(item2); double x = parameters.range.start; while(x <= parameters.range.end) { QStandardItem *item = new QStandardItem(QString::number(x, 'g', precision->value())); liste.append(item); xValues << x; x += parameters.range.step; } model->appendColumn(liste); } void SeqTable::add_y_values() { QList liste; double x = parameters.range.start, y; bool ok = true; QStandardItem *funcNameCell = new QStandardItem(parameters.name.toUpper() + "n"); funcNameCell->setFont(boldFont); funcNameCell->setEditable(false); liste.append(funcNameCell); while(x <= parameters.range.end) { y = seq->getSeqValue(x, ok); if(!ok) return; yValues << y; QStandardItem *item = new QStandardItem(); item->setEditable(false); item->setText(QString::number(y, 'g', precision->value())); liste.append(item); x += parameters.range.step; } model->appendColumn(liste); } void SeqTable::add_parSeq_y_values() { QList liste; double x = parameters.range.start, y; bool ok = true; QStandardItem *funcNameCell = new QStandardItem(parameters.name.toUpper() + "n"); funcNameCell->setFont(boldFont); funcNameCell->setEditable(false); liste.append(funcNameCell); while(x <= parameters.range.end) { y = seq->getCustomSeqValue(x, ok, k); if(!ok) { QMessageBox::critical(this, tr("Erreur"), tr("Erreur dans le calcul des termes de cette suite paramètrique, changer la valeur du paramètre pourrait résoudre le problème.")); model->clear(); return; } yValues << y; QStandardItem *item = new QStandardItem(); item->setEditable(false); item->setText(QString::number(y, 'g', precision->value())); liste.append(item); x += parameters.range.step; } model->appendColumn(liste); } void SeqTable::emptyCellsFill() { QListliste; liste.reserve(100); QStandardItem *item2 = new QStandardItem("x"); item2->setFont(boldFont); item2->setEditable(false); liste.append(item2); for(int i = 0 ; i < parameters.emptyCellsCount; i++) { QStandardItem *item = new QStandardItem(); liste << item; xValues << NAN; yValues << NAN; } model->appendColumn(liste); liste.clear(); QStandardItem *item4 = new QStandardItem(parameters.name + "(x)"); item4->setFont(boldFont); item4->setEditable(false); liste.append(item4); for(int i = 0 ; i < parameters.emptyCellsCount; i++) { QStandardItem *item = new QStandardItem(); item->setEditable(false); liste << item; } model->appendColumn(liste); } zegrapher-2.0.orig/src/tangentwidget.cpp0000644000175000017500000002021112105437153020633 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #include "tangentwidget.h" TangentWidget::TangentWidget(int id, QList calcsList, QList list) { tangentID = id; funcNames << "f" << "g" << "h" << "p" << "r" << "m"; isValid = false; funcCalculators = calcsList; funcWidgets = list; for(int i = 0 ; i < funcWidgets.size(); i++) connect(funcWidgets[i], SIGNAL(newParametricState(int)), this, SLOT(newFuncParState(int))); exprCalculator = new ExprCalculator(false, funcCalculators); lenght = 3; QColor color; color.setNamedColor(VALID_COLOR); validPalette.setColor(QPalette::Base, color); color.setNamedColor(INVALID_COLOR); invalidPalette.setColor(QPalette::Base, color); addWidgets(); } void TangentWidget::newFuncChoosen(int funcNum) { kTextLabel->setShown(funcWidgets[funcNum]->isFuncParametric()); kValueLineEdit->setShown(funcWidgets[funcNum]->isFuncParametric()); } void TangentWidget::newFuncParState(int funcNum) { if(funcNum != functionsComboBox->currentIndex()) return; kTextLabel->setShown(funcWidgets[funcNum]->isFuncParametric()); kValueLineEdit->setShown(funcWidgets[funcNum]->isFuncParametric()); } void TangentWidget::changeID(int id) { tangentID = id; nameLabel->setText("(T" + QString::number(tangentID + 1) + ") " + tr("tangente à :")); } QColor TangentWidget::getColor() { return colorButton->getCurrentColor(); } void TangentWidget::addWidgets() { drawCheckBox = new QCheckBox; drawCheckBox->setChecked(true); drawCheckBox->setMaximumSize(20,20); connect(drawCheckBox, SIGNAL(released()), this, SIGNAL(drawStateChanged())); nameLabel = new QLabel(); changeID(tangentID); functionsComboBox = new QComboBox; functionsComboBox->addItems(funcNames); functionsComboBox->setFixedSize(40,25); connect(functionsComboBox, SIGNAL(currentIndexChanged(int)), this, SLOT(newFuncChoosen(int))); for(int i = 0 ; i < funcNames.size(); i++){functionsComboBox->addItem(funcNames[i]);} QLabel *label2 = new QLabel(tr("en: a =")); tangentPos = new QLineEdit; tangentPos->setMaximumSize(80,25); connect(tangentPos, SIGNAL(returnPressed()), this, SIGNAL(returnPressed())); colorButton = new QColorButton(Qt::black); connect(colorButton, SIGNAL(colorChanged(QColor)), this, SIGNAL(drawStateChanged())); QPushButton *removeButton = new QPushButton; removeButton->setFixedSize(25,25); removeButton->setIconSize(QSize(25,25)); removeButton->setFlat(true); removeButton->setIcon(QIcon(":/icons/remove.png")); connect(removeButton, SIGNAL(released()), this, SLOT(emitRemoveMeSignal())); QVBoxLayout *layout1 = new QVBoxLayout; QHBoxLayout *layout2 = new QHBoxLayout; QHBoxLayout *layout3 = new QHBoxLayout; QHBoxLayout *layout4 = new QHBoxLayout; layout2->addWidget(drawCheckBox); layout2->addWidget(nameLabel); layout2->addWidget(functionsComboBox); layout2->addWidget(label2); layout2->addWidget(tangentPos); layout2->addStretch(); layout2->addWidget(colorButton); layout2->addWidget(removeButton); layout2->setSpacing(3); layout2->setMargin(1); QLabel *yLabel = new QLabel("y = "); yLabel->setMaximumHeight(25); QLabel *xLabel = new QLabel("x + "); xLabel->setMaximumHeight(25); slopeLineEdit = new QLineEdit(); slopeLineEdit->setMaximumHeight(25); slopeLineEdit->setFrame(false); slopeLineEdit->setReadOnly(true); ordinateAtOriginLineEdit = new QLineEdit(); ordinateAtOriginLineEdit->setMaximumHeight(25); ordinateAtOriginLineEdit->setFrame(false); ordinateAtOriginLineEdit->setReadOnly(true); layout3->addSpacing(25); layout3->addWidget(yLabel); layout3->addWidget(slopeLineEdit); layout3->addWidget(xLabel); layout3->addWidget(ordinateAtOriginLineEdit); layout3->addSpacing(5); kValueLineEdit = new QLineEdit; kValueLineEdit->setMaximumHeight(25); kValueLineEdit->setShown(funcWidgets[0]->isFuncParametric()); connect(kValueLineEdit, SIGNAL(textChanged(QString)), this, SLOT(kValueLineEdited())); connect(kValueLineEdit, SIGNAL(returnPressed()), this, SIGNAL(returnPressed())); kTextLabel = new QLabel(tr("Pour k =")); kTextLabel->setMaximumHeight(25); kTextLabel->setShown(funcWidgets[0]->isFuncParametric()); layout4->addStretch(); layout4->addWidget(kTextLabel); layout4->addWidget(kValueLineEdit); layout4->addStretch(); QFrame *frame = new QFrame; frame->setFrameShape(QFrame::HLine); frame->setFrameShadow(QFrame::Sunken); layout1->setSpacing(3); layout1->setMargin(1); layout1->addLayout(layout2); layout1->addLayout(layout3); layout1->addLayout(layout4); layout1->addWidget(frame); setLayout(layout1); } void TangentWidget::kValueLineEdited() { kValueLineEdit->setPalette(neutralPalette); } void TangentWidget::emitRemoveMeSignal() { emit removeMe(this); } void TangentWidget::resetPalette() { tangentPos->setPalette(neutralPalette); } void TangentWidget::validate() { funcID = functionsComboBox->currentIndex(); isValid = funcCalculators[funcID]->isFuncValid(); if(!isValid) { slopeLineEdit->setText(tr("Fonction choisie")); ordinateAtOriginLineEdit->setText(tr("Invalide")); return; } pos = exprCalculator->calculateExpression(tangentPos->text(), isValid); if(!isValid) { tangentPos->setPalette(invalidPalette); ordinateAtOriginLineEdit->clear(); slopeLineEdit->clear(); return; } else tangentPos->setPalette(validPalette); if(kValueLineEdit->isVisible()) { k = exprCalculator->calculateExpression(kValueLineEdit->text(), isValid); if(!isValid) { kValueLineEdit->setPalette(invalidPalette); ordinateAtOriginLineEdit->clear(); slopeLineEdit->clear(); return; } else kValueLineEdit->setPalette(validPalette); } else k = 0; } void TangentWidget::calculateTangentPoints(double xUnit, double yUnit) { if(!isValid) return; raty = (yUnit/xUnit+1)/2; ratx = (xUnit/yUnit+1)/2; a = funcCalculators[funcID]->getDerivativeValue(pos, k); double b = -pos*a + funcCalculators[funcID]->getFuncValue(pos, k); slopeLineEdit->setText(QString::number(a, 'g', NUM_PREC)); ordinateAtOriginLineEdit->setText(QString::number(b, 'g', NUM_PREC)); double d = 0.5 * lenght * sqrt(1/(a*a*raty*raty + ratx*ratx)); tangentPoints.center.x = pos; tangentPoints.center.y = funcCalculators[funcID]->getFuncValue(pos, k); tangentPoints.right.x = pos + d; tangentPoints.right.y = a*tangentPoints.right.x + b; tangentPoints.left.x = pos - d; tangentPoints.left.y = a*tangentPoints.left.x + b; } bool TangentWidget::isTangentValid() { return isValid && drawCheckBox->isChecked(); } void TangentWidget::move(double newPos) { pos = newPos; tangentPos->setText(QString::number(pos, 'g', NUM_PREC)); } TangentPoints TangentWidget::getCaracteristicPoints() { return tangentPoints; } void TangentWidget::resizeTangent(double dx, double side) // side = -1 for resize with left point, +1 for right point { lenght += 2 * side * dx * sqrt(a*a*raty*raty + ratx*ratx); } zegrapher-2.0.orig/src/keyboard.h0000644000175000017500000000272412105437153017245 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #ifndef KEYBOARD_H #define KEYBOARD_H #include "Structures.h" namespace Ui { class Keyboard; } class Keyboard : public QDialog { Q_OBJECT public: explicit Keyboard(QWidget *parent = 0); ~Keyboard(); void makeKeyboardConnects(); public slots: void keyboardPressed(QWidget *widget); void changeFuncButtonsText(); void removeChar(); void clearLine(); private: Ui::Keyboard *ui; QSignalMapper *keyboardButtons; QList buttons; }; #endif // KEYBOARD_H zegrapher-2.0.orig/src/zegrapher.cpp0000644000175000017500000001535712105437153017775 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #include "zegrapher.h" MainWindow::MainWindow() { informations = new Informations(); fenFonctions = new FenetreFonctions(informations); fenBornes = new FenetreBornes(informations); fenOptions = new FenetreOptions(informations); fenAPropos = new apropos(); fenImage = new ImageSave(informations); fenValeurs = new FenTableauValeurs(informations); fenPrint = new Print(informations); scene = new MainGraph(informations); keyboard = new Keyboard(); setWindowIcon(QIcon(":/icons/logoLogiciel.png")); setMinimumSize(800,600); setWindowTitle("ZeGrapher"); createMenus(); window.Xmax = window.Ymax = 10; window.Xmin = window.Ymin = -10; window.Xscale = window.Yscale = 1; setCentralWidget(scene); fenImage->setSize(scene->width(), scene->height()); makeConnects(); } void MainWindow::createMenus() { QMenu *menuFichier = menuBar()->addMenu(tr("Fichier")); QMenu *menuOutils = menuBar()->addMenu(tr("Outils")); QMenu *menuAffichage = menuBar()->addMenu(tr("Fenêtres")); QMenu *menuAide = menuBar()->addMenu("?"); boutonGrille = menuOutils->addAction(QIcon(":/icons/quadrillage.png"), tr("Afficher/Cacher le quadrillage")); boutonGrille->setCheckable(true); QAction *actionRepereOrthonorme = menuOutils->addAction(tr("Base orthonormale")); actionRepereOrthonorme->setCheckable(true); connect(actionRepereOrthonorme, SIGNAL(triggered(bool)), informations, SLOT(setOrthonormal(bool))); connect(informations, SIGNAL(newOrthonormalityState(bool)), actionRepereOrthonorme, SLOT(setChecked(bool))); QAction *afficherFenAPropos = menuAide->addAction(tr("à Propos...")); connect(afficherFenAPropos, SIGNAL(triggered()), fenAPropos, SLOT(show())); QAction *print = menuFichier->addAction(QIcon(":/icons/print.png"), tr("Imprimer...")); print->setShortcut(QKeySequence("Ctrl+P")); connect(print, SIGNAL(triggered()), fenPrint, SLOT(show())); QAction *saveImage = menuFichier->addAction(QIcon(":/icons/enregistrerImage.png"), tr("Enregistrer image...")); saveImage->setShortcut(QKeySequence("Ctrl+S")); connect(saveImage, SIGNAL(triggered()), fenImage, SLOT(show())); QAction *actionAfficherFenOptions = menuFichier->addAction(tr("Options")); actionAfficherFenOptions->setShortcut(QKeySequence("Ctrl+O")); connect(actionAfficherFenOptions, SIGNAL(triggered()), fenOptions, SLOT(show())); menuFichier->addSeparator(); QAction *actionQuitter = menuFichier->addAction(QIcon(":/icons/quitter.png"), tr("Quitter")); actionQuitter->setShortcut(QKeySequence("Ctrl+Q")); connect(actionQuitter, SIGNAL(triggered()), this, SLOT(close())); QAction *actionAfficherFenFonctions = menuAffichage->addAction(QIcon(":/icons/fonctions.png"), tr("Fonctions")); actionAfficherFenFonctions->setShortcut(QKeySequence("Ctrl+F")); connect(actionAfficherFenFonctions, SIGNAL(triggered()), fenFonctions, SLOT(show())); QAction *actionAfficherFenBornes = menuAffichage->addAction(QIcon(":/icons/bornes.png"), tr("Bornes")); actionAfficherFenBornes->setShortcut(QKeySequence("Ctrl+B")); connect(actionAfficherFenBornes, SIGNAL(triggered()), fenBornes, SLOT(show())); QAction *tabValeurs = menuAffichage->addAction(QIcon(":/icons/tableauDeValeurs.png"), tr("Tableau de valeurs")); tabValeurs->setShortcut(QKeySequence("Ctrl+Tab")); connect(tabValeurs, SIGNAL(triggered()), fenValeurs, SLOT(show())); QAction *dispKeyboard = menuAffichage->addAction(QIcon(":/icons/keyboard.png"), tr("Clavier numérique")); dispKeyboard->setShortcut(QKeySequence("Ctrl+K")); connect(dispKeyboard, SIGNAL(triggered()), keyboard, SLOT(show())); QToolBar *toolBar = addToolBar("fenetres"); toolBar->addAction(boutonGrille); toolBar->addSeparator(); toolBar->addAction(actionAfficherFenFonctions); toolBar->addSeparator(); toolBar->addAction(actionAfficherFenBornes); toolBar->addSeparator(); toolBar->addAction(tabValeurs); toolBar->addSeparator(); toolBar->addAction(saveImage); toolBar->addSeparator(); toolBar->addAction(print); toolBar->addSeparator(); toolBar->addAction(dispKeyboard); statusBar(); actionAfficherFenBornes->setStatusTip(tr("Affiche la fenêtre où l'on peut modifier les bornes de représentation: Xmin, Xmax...")); actionAfficherFenFonctions->setStatusTip(tr("Affiche le fenêtre où l'on peut écrire les expressions des fonctions à représenter.")); actionQuitter->setStatusTip(tr("Quitte l'application.")); actionAfficherFenOptions->setStatusTip(tr("Affiche la fenêtre où l'on peut modifier les options de représentation.")); tabValeurs->setStatusTip(tr("Affiche une fenêtre contenant le tableau de valeurs pour chaque fonction.")); boutonGrille->setStatusTip(tr("Afficher/Cacher le quadrillage.")); saveImage->setStatusTip(tr("Enregistrer le graphique dans une image.")); dispKeyboard->setStatusTip(tr("Affiche un clavier numérique virtuel.")); print->setStatusTip(tr("Imprimer ou exporter le graphique vers fichier PDF.")); } void MainWindow::makeConnects() { connect(boutonGrille, SIGNAL(triggered(bool)), informations, SLOT(setGridState(bool))); connect(scene, SIGNAL(sizeChanged(int,int)), fenImage, SLOT(setSize(int,int))); connect(fenFonctions, SIGNAL(displayKeyboard()), keyboard, SLOT(show())); } void MainWindow::closeEvent(QCloseEvent *evenement) { fenBornes->close(); fenFonctions->close(); fenOptions->close(); fenAPropos->close(); fenValeurs->close(); fenImage->close(); fenPrint->close(); keyboard->close(); evenement->accept(); } MainWindow::~MainWindow() { delete fenValeurs; delete scene; delete fenBornes; delete fenFonctions; delete fenOptions; delete fenAPropos; delete fenImage; } zegrapher-2.0.orig/src/seqcalculator.h0000644000175000017500000000642412105437153020310 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #ifndef SEQCALCULATOR_H #define SEQCALCULATOR_H #include "Structures.h" #include "treecreator.h" #include "funccalculator.h" #include "colorsaver.h" class SeqCalculator : public QObject { Q_OBJECT public: SeqCalculator(int id, QString name, QWidget *parent); bool validateFirstValsExpr(QString expr); bool validateSeqExpr(QString expr); bool check_called_funcs_and_seqs_validity(); bool checkByCalculatingFirstValuesTrees(); bool checkByCalculatingValues(); bool canBeCalled(); bool isSeqValid(); bool isSeqParametric(); bool getDrawState(); void setFuncsPointers(QList otherFuncs); void setSeqsPointers(QList otherSeqs); void setParametricInfo(bool parametric, Range parRange); void setInvalid(); void setColorSaver(ColorSaver *colsaver); ColorSaver* getColorSaver(); int getDrawsNum(); int get_nMin(); Range getKRange(); double getSeqValue(double n, bool &ok, int index_k = 0); double getCustomSeqValue(double n, bool &ok, double k_value); public slots: void set_nMin(int val); void setDrawState(bool draw); signals: void colorChanged(int id); protected: void addRefFuncsPointers(); void deleteFirstValsTrees(); bool check_called_funcs_validity(QString str); bool check_called_seqs_validity(QString str); bool calculateAndSaveFirstValuesTrees(); void updateSeqValuesSize(); double calculateFromTree(FastTree *tree, double n, bool &ok); bool validateSeqFirstValsTrees(); bool saveSeqValues(double nMax); bool saveCustomSeqValues(double nMax); bool verifyAskedTerm(double n); bool verifyOtherSeqAskedTerm(double n, int id); int seqNum, kPos, nMin, drawsNum; bool isExprValidated, areFirstValsValidated, isParametric, isValid, blockCalculatingFromTree, drawState, isKRangeValid; double custom_k, k; ColorSaver *colorSaver; Range kRange; TreeCreator treeCreator, firstValsTreeCreator; FastTree *seqTree; QString expression, firstValsExpr, seqName; QStringList seqsNames; QList funcCalculatorsList; QList seqCalculatorsList; QList refFuncs; QList firstValsTrees; QList< QList > seqValues; QWidget *parentWidget; }; #endif // SEQCALCULATOR_H zegrapher-2.0.orig/src/straightlinewidget.cpp0000644000175000017500000001256512105437153021705 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #include "straightlinewidget.h" StraightLineWidget::StraightLineWidget(int id, QList calcsList) { lineID = id; funcCalculators = calcsList; exprCalculator = new ExprCalculator(false, funcCalculators); valid = false; QColor color; color.setNamedColor(VALID_COLOR); validPalette.setColor(QPalette::Base, color); color.setNamedColor(INVALID_COLOR); invalidPalette.setColor(QPalette::Base, color); addWidgets(); } void StraightLineWidget::changeID(int id) { lineID = id; nameLabel->setText("(D" + QString::number(lineID + 1) + "): "); } QColor StraightLineWidget::getColor() { return colorButton->getCurrentColor(); } void StraightLineWidget::resetPaletteForLineEditA() { a->setPalette(neutralPalette); } void StraightLineWidget::resetPaletteForLineEditB() { b->setPalette(neutralPalette); } void StraightLineWidget::resetPaletteForLineEditC() { c->setPalette(neutralPalette); } void StraightLineWidget::addWidgets() { drawCheckBox = new QCheckBox; drawCheckBox->setChecked(true); drawCheckBox->setMinimumSize(20,20); connect(drawCheckBox, SIGNAL(released()), this, SIGNAL(drawStateChanged())); nameLabel = new QLabel(); changeID(lineID); a = new QLineEdit; a->setMaximumHeight(25); a->setFrame(false); connect(a, SIGNAL(textChanged(QString)), this, SLOT(resetPaletteForLineEditA())); connect(a, SIGNAL(returnPressed()), this, SIGNAL(returnPressed())); QLabel *x = new QLabel("x +"); b = new QLineEdit; b->setMaximumHeight(25); b->setFrame(false); connect(b, SIGNAL(textChanged(QString)), this, SLOT(resetPaletteForLineEditB())); connect(b, SIGNAL(returnPressed()), this, SIGNAL(returnPressed())); QLabel *y = new QLabel(" y ="); c = new QLineEdit; c->setMaximumHeight(25); c->setFrame(false); connect(c, SIGNAL(textChanged(QString)), this, SLOT(resetPaletteForLineEditC())); connect(c, SIGNAL(returnPressed()), this, SIGNAL(returnPressed())); colorButton = new QColorButton(); connect(colorButton, SIGNAL(colorChanged(QColor)), this, SIGNAL(drawStateChanged())); QPushButton *removeButton = new QPushButton; removeButton->setFixedSize(25,25); removeButton->setIconSize(QSize(24,24)); removeButton->setFlat(true); removeButton->setIcon(QIcon(":/icons/remove.png")); connect(removeButton, SIGNAL(released()), this, SLOT(emitRemoveMeSignal())); QVBoxLayout *layout1 = new QVBoxLayout; QHBoxLayout *layout2 = new QHBoxLayout; layout2->addWidget(drawCheckBox); layout2->addStretch(); layout2->addWidget(nameLabel); layout2->addWidget(a); layout2->addWidget(x); layout2->addWidget(b); layout2->addWidget(y); layout2->addWidget(c); layout2->addStretch(); layout2->addWidget(colorButton); layout2->addWidget(removeButton); layout2->setSpacing(3); layout2->setMargin(1); QFrame *frame = new QFrame; frame->setFrameShape(QFrame::HLine); frame->setFrameShadow(QFrame::Sunken); layout1->setSpacing(3); layout1->setMargin(1); layout1->addLayout(layout2); layout1->addWidget(frame); setLayout(layout1); } void StraightLineWidget::emitRemoveMeSignal() { emit removeMe(this); } void StraightLineWidget::validate() { val_a = exprCalculator->calculateExpression(a->text(), valid); if(!valid) { a->setPalette(invalidPalette); return; } else a->setPalette(validPalette); val_b = exprCalculator->calculateExpression(b->text(), valid); if(!valid) { b->setPalette(invalidPalette); return; } else b->setPalette(validPalette); val_c = exprCalculator->calculateExpression(c->text(), valid); if(!valid) { c->setPalette(invalidPalette); return; } else c->setPalette(validPalette); valid = !(val_a == 0 && val_b == 0); if(!valid) { QMessageBox::warning(window(), tr("Erreur"), tr("Erreur dans la droite") + "D" + QString::number(lineID)+ "" + tr("Les coeficients des variables x et y ne peuvent être nuls simultanèment.")); } } double StraightLineWidget::getOrdinate(double abscissa) { return (val_c - val_a * abscissa)/val_b; } double StraightLineWidget::getVerticalPos() { return val_c / val_a; } bool StraightLineWidget::isValid() { return valid && drawCheckBox->isChecked(); } bool StraightLineWidget::isVertical() { return val_b == 0; } zegrapher-2.0.orig/src/imagesave.cpp0000644000175000017500000000651612105437153017744 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #include "imagesave.h" #include "ui_imagesave.h" ImageSave::ImageSave(Informations *info) : ui(new Ui::ImageSave) { ui->setupUi(this); window.Xmax = window.Ymax = 10; window.Xmin = window.Ymin = -10; window.Xscale = window.Yscale = 1; scene = new ImagePreview(info); scene->setMinimumSize(150,150); ui->scrollArea->setWidget(scene); connect(ui->height, SIGNAL(valueChanged(int)), this, SLOT(setH(int))); connect(ui->width, SIGNAL(valueChanged(int)), this, SLOT(setW(int))); connect(ui->save, SIGNAL(released()), this, SLOT(save())); connect(ui->legendBox, SIGNAL(toggled(bool)), scene, SLOT(setLegendState(bool))); connect(ui->legendSize, SIGNAL(valueChanged(int)), scene, SLOT(setlegendFontSize(int))); connect(ui->xLegend, SIGNAL(textChanged(QString)), scene, SLOT(setXaxisLegend(QString))); connect(ui->yLegend, SIGNAL(textChanged(QString)), scene, SLOT(setYaxisLegend(QString))); connect(ui->bold, SIGNAL(toggled(bool)), scene, SLOT(setBold(bool))); connect(ui->italic, SIGNAL(toggled(bool)), scene, SLOT(setItalic(bool))); connect(ui->underline, SIGNAL(toggled(bool)), scene, SLOT(setUnderline(bool))); connect(ui->numPrec, SIGNAL(valueChanged(int)), scene, SLOT(setNumPrec(int))); } void ImageSave::save() { scene->repaint(); QImage *image = scene->drawImage(); QString fichier; fichier = fileDialog.getSaveFileName(this, tr("Enregistrer une image"), QString(), "Images (*.ppm *.tiff *.bmp *.png *.gif *.jpg *.jpeg)"); if(fichier.isEmpty()) return; else if(!(fichier.endsWith(".ppm") || fichier.endsWith(".tiff") || fichier.endsWith(".bmp") || fichier.endsWith(".png") || fichier.endsWith(".gif") || fichier.endsWith(".jpg") || fichier.endsWith(".jpeg"))) { fichier.append(".png"); } image->save(fichier); hide(); } void ImageSave::setSize(int W, int H) { if(ui->defaultSize->isChecked()) { ui->width->setValue(W); ui->height->setValue(H); scene->setFixedSize(W, H); } } void ImageSave::setW(int W) { scene->setFixedWidth(W); } void ImageSave::setH(int H) { scene->setFixedHeight(H); } void ImageSave::setWindow(GraphRange fenetre) { window = fenetre; } void ImageSave::setPrecision(short prec) { precision = prec; } ImageSave::~ImageSave() { delete ui; } zegrapher-2.0.orig/src/zegrapherIcon.ico0000644000175000017500000000325111672373742020577 0ustar georgeskgeorgesk00 PNG  IHDR00WZIDAThKh\U<2ƶb$J4vM w]ut%nT*хݹBVn,XZ[ 2F$y{{dy$6a}ss |A*R:q<\0ϗ&`X@Z#J P| `$4~L@HYRh{PÀ~#*z!ma ͢3_@#%yaDAJ)P9y7@48B8i <0M*qxXGi|{f&6B\!~)%J)*{gfXZ_ k{:EI>|G5\<{[ϟGJ֚ȧ׍XZ0L&HZ,kZTjL5P`7[JW>i ?"_'p_|1vx6QL_жR㧑Q R"u)c0n}v,J$B}1LMF8Br.^p&5)l6Ս_%Xcrɗˑ֏?bRJ䤌wvtCoS`&:fK/qX\}%-2>G!DOJQ|] 黈?$#Gelc% ZZ4, 41 5R.Hohp/>u ;>xZ}9k!n=x)% }:sƟբfX͹"c3 4^R <|NL zO9:KnxwoFFH駜;h>]7 ˲ S`Kр6 ɐٿhԉ1`h|&WVy# y5:Ca˕o!#~%1k54W\KB_RJnv Ms\X,)zW*Q2G ٪R|_VBaԍ-tFoMOFP? ұ z6|ovb2 Ng7 P'~ I#J5`fJdXx@x&RN}Cpx/{ >$tp-uKhIENDB`zegrapher-2.0.orig/src/valuestable.cpp0000644000175000017500000001105312105437153020302 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #include "valuestable.h" ValuesTable::ValuesTable(Informations *info, QWidget *parent) : QWidget(parent) { infoClass = info; seqTable = NULL; parEqTable = NULL; funcTable = NULL; QHBoxLayout *layout = new QHBoxLayout(); layout->setMargin(0); containerLayout = new QVBoxLayout; containerLayout->setMargin(0); setFixedWidth(300); QHBoxLayout *removeButtonLayout = new QHBoxLayout; QPushButton *removeButton = new QPushButton; removeButton->setFixedSize(25,25); removeButton->setFlat(true); removeButton->setIconSize(QSize(25,25)); removeButton->setIcon(QIcon(":/icons/remove.png")); connect(removeButton, SIGNAL(released()), this, SLOT(emitRemoveSignal())); removeButtonLayout->addStretch(); removeButtonLayout->addWidget(removeButton); confWidget = new ValuesTableConf(infoClass); connect(confWidget, SIGNAL(next(ValuesTableParameters)), this, SLOT(apply(ValuesTableParameters))); containerLayout->addLayout(removeButtonLayout); containerLayout->addWidget(confWidget); QFrame *frame1 = new QFrame(); frame1->setFrameShape(QFrame::VLine); frame1->setFrameShadow(QFrame::Sunken); QFrame *frame2 = new QFrame(); frame2->setFrameShape(QFrame::VLine); frame2->setFrameShadow(QFrame::Sunken); layout->addWidget(frame1); layout->addLayout(containerLayout); layout->addWidget(frame2); setLayout(layout); } void ValuesTable::emitRemoveSignal() { emit remove(this); } void ValuesTable::previous() { if(funcTable != NULL) funcTable->close(); else if(seqTable != NULL) seqTable->close(); else parEqTable->close(); setFixedWidth(300); confWidget->show(); } void ValuesTable::apply(ValuesTableParameters parameters) { confWidget->close(); if(parameters.funcType == FUNCTION) { if(funcTable == NULL) { funcTable = new FuncTable(infoClass); containerLayout->addWidget(funcTable); connect(funcTable, SIGNAL(previous()), this, SLOT(previous())); } setFixedWidth(310); funcTable->setTableParameters(parameters); funcTable->show(); if(seqTable != NULL) { delete seqTable; seqTable = NULL; } else if(parEqTable != NULL) { delete parEqTable; parEqTable = NULL; } } else if(parameters.funcType == SEQUENCE) { if(seqTable == NULL) { seqTable = new SeqTable(infoClass); containerLayout->addWidget(seqTable); connect(seqTable, SIGNAL(previous()), this, SLOT(previous())); } seqTable->setTableParameters(parameters); seqTable->show(); setFixedWidth(310); if(funcTable != NULL) { delete funcTable; funcTable = NULL; } else if(parEqTable != NULL) { delete parEqTable; parEqTable = NULL; } } else { if(parEqTable == NULL) { parEqTable = new ParEqTable(infoClass); containerLayout->addWidget(parEqTable); connect(parEqTable, SIGNAL(previous()), this, SLOT(previous())); } parEqTable->setTableParameters(parameters); parEqTable->show(); setFixedWidth(460); if(funcTable != NULL) { delete funcTable; funcTable = NULL; } else if(seqTable != NULL) { delete seqTable; seqTable = NULL; } } } ValuesTable::~ValuesTable() { } zegrapher-2.0.orig/src/icons/0000700000175000017500000000000011777237444016407 5ustar georgeskgeorgeskzegrapher-2.0.orig/src/icons/add.png0000644000175000017500000000213211714241660017637 0ustar georgeskgeorgeskPNG  IHDRw=tEXtSoftwareAdobe ImageReadyqe<IDATxڴU]hUٝm7٤(DPl"Q' Ri B}|*Ԅj4"BPH]7ߙlF}e{99߽gF9ڲҀ M P)cDD Vŵ:Ji[*[p5"ISpMlbD,䣠\ȂgN[$CIf5# :T25K\ՠV9:J} bmwUҲFgJT(UJ2(1Lwɓ|rZTİF!Gײ -$QTUB%aV T\<˜%N8Uso iL_C)XUȰsdkKֈl@\3GYɥ)kf%$ps:8Dp"b7Ǚ%Of 1Vⓟԉ|_OAXBUlgBbsJKG24PJؖ,MN.*aiz;3,T4 9Rg)S7iͬ7S,'?đ1mZ\(tdhk qTp5!>5 nGݘ-YA1qN^7ՑD?"n6vv vq`ޔU_gջbR!b{'?kɶnOyBX&|y ntk{Lmn:b\Ɔj+?x/d:ttV4tI:{3n{ %c)~J&r02Մv_Pw5EY|3S@~xsD5"D=d z-|>&ދOt[/!K_y9ٽGA<`X22IENDB`zegrapher-2.0.orig/src/icons/play.png0000644000175000017500000000204411756200476020064 0ustar georgeskgeorgeskPNG  IHDRJLtEXtSoftwareAdobe ImageReadyqe<"iTXtXML:com.adobe.xmp <IDATxb?=Edl&&&/Ƴg> Pl  "tA,f&A=l M $[Hi#Bj%oR;, 1.JYIDATxb?=EC"@JIٳgc9s 68BX5-*hԢQF-} 'VhU>j*0>/ 6B"IENDB`zegrapher-2.0.orig/src/icons/curseur_normal.png0000644000175000017500000001346311555262310022156 0ustar georgeskgeorgeskPNG  IHDR00W iTXtXML:com.adobe.xmp Creative Commons Attribution Non-Commercial No Derivatives Alexander Kiselev This is the icon from Gentleface.com free icons set. icon pictogram gentleface.com free icon set Creative Commons Attribution Non-Commercial No Derivatives v pHYs   OiCCPPhotoshop ICC profilexڝSgTS=BKKoR RB&*! J!QEEȠQ, !{kּ> H3Q5 B.@ $pd!s#~<<+"x M0B\t8K@zB@F&S`cbP-`'{[! eDh;VEX0fK9-0IWfH  0Q){`##xFW<+*x<$9E[-qWW.(I+6aa@.y24x6_-"bbϫp@t~,/;m%h^ uf@Wp~<5j>{-]cK'Xto(hw?G%fIq^D$.Tʳ?D*A, `6B$BB dr`)B(Ͱ*`/@4Qhp.U=pa( Aa!ڈbX#!H$ ɈQ"K5H1RT UH=r9\F;2G1Q= C7F dt1r=6Ыhڏ>C03l0.B8, c˱" VcϱwE 6wB aAHXLXNH $4 7 Q'"K&b21XH,#/{C7$C2'ITFnR#,4H#dk9, +ȅ3![ b@qS(RjJ4e2AURݨT5ZBRQ4u9̓IKhhitݕNWGw Ljg(gwLӋT071oUX**| J&*/Tު UUT^S}FU3S ԖUPSSg;goT?~YYLOCQ_ cx,!k u5&|v*=9C3J3WRf?qtN (~))4L1e\kXHQG6EYAJ'\'GgSSݧ M=:.kDwn^Loy}/TmG X $ <5qo</QC]@Caaᄑ.ȽJtq]zۯ6iܟ4)Y3sCQ? 0k߬~OCOg#/c/Wװwa>>r><72Y_7ȷOo_C#dz%gA[z|!?:eAAA!h쐭!ΑiP~aa~ 'W?pX15wCsDDDޛg1O9-J5*>.j<74?.fYXXIlK9.*6nl {/]py.,:@LN8A*%w% yg"/6шC\*NH*Mz쑼5y$3,幄'L Lݛ:v m2=:1qB!Mggfvˬen/kY- BTZ(*geWf͉9+̳ې7ᒶKW-X潬j9(xoʿܔĹdff-[n ڴ VE/(ۻCɾUUMfeI?m]Nmq#׹=TR+Gw- 6 U#pDy  :v{vg/jBFS[b[O>zG499?rCd&ˮ/~јѡ򗓿m|x31^VwwO| (hSЧc3- cHRMz%u0`:o_FoIDATxԚ[n1#$cH¥t8;`+(;pP+H[xaF_&H\:2t4:5$tn~wp8vLo{$VKyAdT\5h4 )$eVS:U:VJg777JgJEy`2Y. ,(JJgbQ Z J P((@Ry3H\.w>uHMfYF;X*d )$e*R:L&H]L]x`82~<K(d=9u> |5I>8M>D"qE@n2|&?pc2 b1@nj:NgP.xopZh4б,kLF"_:eY+rqe;rݳ+8k7vP(u͘Q5•0ұmٖ玺pf>9mS[KgJ{y pT{-gwm*lbHx5 ٠i]S&Q=$&6wuIENDB`zegrapher-2.0.orig/src/icons/tableauDeValeurs.png0000644000175000017500000000133411601615224022336 0ustar georgeskgeorgeskPNG  IHDR@@iqsRGBbKGD pHYs  tIME(TgCtEXtCommentCreated with GIMPW7IDATxKTQ?:DĠHtZ҂'Z2G6E$ ? Z$D~B7 f97xoP{]=7{}9.%K+Uԛ:S=S]@ @S>dk)ڝ~J%&jF]~U~';M2mZ!: H7I?Z* 4׀uBMBGG 0U2\mtҽ9 wRu/yt}BhP`8a#|Uey> ]때84 `B`2 l{64-5[=WS$tM(>Q7#80)FjO(h@E>ކ|@72|n8R JHOe)@M2?!-y l~lj[oCŔؿ@s  >J4\``%8J*@?_.CIENDB`zegrapher-2.0.orig/src/icons/print.png0000644000175000017500000000446511616225204020253 0ustar georgeskgeorgeskPNG  IHDR00WIDATxڽ{LWϽ Oa((nݵ.vk5E*֊.kZY DzIj׍EQT@4[c_K@ܻE~M7~{?|Ϲ܁$ۑ#GdL"R7[<=a@0/JwAKXW*,ǽyucc3>o0lu55(\p +kW3ɤJbW4Kq@DrѨj5z\c. H6<<4 |:嗗CtlhhHV%0XZN#u@LL$Sz-P( -C ~E$I%0 %q_+P\\.0ι3nV\c27xy̘=f4*t=m={hŲ/]/sBnv nnn'6l0L=>=.5`4L @\#4* c4n)xH`d\z`0l=zt 66/Y&XqH.DXeɅF 2ckpzP^^N<==Kwڕ8 p̙o޼Sbb"Hr,+D ahC*~nBQ E@հЦC8*BѮ.lxA-[+1yfLMV!^}R d4N7̣#X8gMRs +dY֯_/6;40xy@Ӳ})Yzae{?p 4DDQ\}>oqX!ǭ%i& `%!|)FH0}xx(:=Y0 ؑ0tm-`Yv®$xBBѫ_df!ѮYlܸQBfJUN5mpqw#0M_l?o6J6 0I] ;\ ^[ s06["UV{^ˌ&fWB%%%L($n@WK$D1SU,p-I/Ol@$q`D/;K?wts!Jh5*"~ J )++кu븿,!{1[8 Tl%yZ|huS&a`Z[ &&ϝ;W BGo6Xƶ-:}5@tt43g7'svM7PY3%%M垇miiB ¬f>w5-csx&,VUUem5kiNFÒo=2x z.$p ZRIF%$&4HQXj`2G!'''J^ />9댘>{))9 0,}Iuu01y ,Ӻ@qI TSC аPtvv6mnjF%/KGqvvZu 某#C?rpI 5?0%Xȱc&HAAA\18<ň9VIҁ`Xh\ʡ.)Aj0d? Rdѣd uvv4*[CXΝ;vܹŲ =w޵{.A0tpPlTb|P+,_.KZ%1pf9IIIgmRmOz|:ƶ"VFbɡ RM $ƕƟ ٞ}2 uOCQB#B>'DX8UQ5)mbP NASP+&lMLpYBJ~'$$|@N<|p(,,i:6p;{xXH=_t Io&Ѧ ٽ;Ks<&vS/%%mt"3&hiUЉ}IENDB`zegrapher-2.0.orig/src/icons/zoom-in-icon.png0000644000175000017500000020006411547573500021436 0ustar georgeskgeorgeskPNG  IHDR~UsRGBbKGD pHYs  tIME5%g IDATxY$Y&6_7ȭ]O=^@Tu=47K$x 40Fb ݕUKfRy3#ndܸwsǎ]w~##3+Hs3s;w~F=~!cB>ǏHafwy8/A5fmsWO>w_=~t 3|G={bGڳ=17BZƔ<H)R JFF16Q>ovc?Hyץ|f=H,f@bH9/RpSJ!, 4s0Ɗ`cX4!UneZkH)vn߿]H)ڵk@ LB< G=a{W~-h_xݻ?۷oOܹswܩg<0>yw?1!w2!$ (0[n۰sfsvU]ؽ5X}dŻo_zgۅ!β 7)C]A~eV9dzYf+_ O,CLjI@)J)A+#E=^XfA|8o!oVwz-ܹs1|{[bn{y&ܹ7o֗g`֣Gԃa7=.\ulq(7g"мתqr`|uLfw-`mlnnbkk J)p'd;;;>sBoq="1 o6?$ 2ܼyZkܼyqzyis֭[5VE@"'vl]JuS{5L.BTnRJpΑ_+&ӪfxaEeTcsܺu ov J*3yyяZ)p֪ews+3=0`0@EB]}F=^DTz> G(h6h6B,:̫3n1K#|YM)Ɩu,kXZf<\2+ hh11 )c~ܘF=̚,滗1 {Quh6hpQE316Bӆ\M1.eyl%KUR+i)KhR PReAC[r[§>+uVTŭـZ=2XFA|>XT}W\i4Nh,/}}K+dVz|{{dĂD*$7:YUUYp&[?2dI(,60vzf {ZJpI$J)9]pAiv6OjgY׷r)%0DC$h6to Q,^0X+_a@??R"t:blc4g]Z6K,姌eeHib)dM>8eFvXW c jvӣC9%hdvC)*<Bƞ@2>X4OkKjM 8::Aܽ|i3(5ۨG BfqjV_ 8J][,UoW_]5BQ!ƅ,L,C-VֹlD29uw+h4Bc ~][.*iM,MQJjl69/ Xy_2Ɩr#*gcDQhY/NjTR+dQ(xT{T,ftʽL]2PFQ^xfz֣5X|K#)%|Gۅ8Sf1r?VE5 C CcdYԤ\p'1aƔpآ83 p|rxaZA"B)T"JC)9͌8fGDBق/HVAP^_,踮F f-;.*Xg p5q:5X Aq=zn79t:hZ림j-Cـc gj(01խjP&@Rp4p8QπCahJR\;RʷPLZT5ZkHz Ln-2,C(\Kv V +6A'2c}hYjޚR g]$I˗/7Dm=jF?ivxr}9* Q4dc'"`G'q:YqSga1BDEk ,*4&ET4ZJP8C3h`ڪ}ZTcȮ sAf ~z\-¬7888!yڵWJ^p=Q7SMs󝝝Eяjq,ReSLMA^虒`$/LSr~x~0 \=hhm~ ;G1(4 Y"ct`N`SJ0BL)}6&Q.\宧,} x2W%(@&c'8ZM\@݄r0V4la_p\4|G@\r$+ e2n6$ >z\K/hj]P4~p3 ggg!6VWWTelMUk5T JѹтaQ``8B2ɳ844%!SG<Cy"cM`:{ɋ߄p"9 yt.EyDjUQyl$ 8 ,4L@Ki\P-=\\Dž t *+@RYa}nF5Rh(,[6}U, f[{XI:dJΠG _k>gY.Z֩4E 3˯(ZeB01 q25Ѡ9 L}<{_|@([9 :)қD5%Q0Re|f4" <8)$6>g L%7RfI4@Ajk("˒Pj nnQ,P DGXfLC9= 6c* C+W42 2Q(H08h4yXYYA( PUbQaq5FkLτ,* y(X?pxx{ӧIyw7蜡 { ; xW-jaUDT+g]kIRO5#IMSa" C#'Z& SRBY)ea|YjǥM\|k(RB[-g^m8UTr[V*[7ùL7nhidffF + BH$Iv XmT^b tjɽ7+_P`#JC{O!𬋉輎 w f@4iNGT EJm[$wJx1}^:g$E$BF)"$ICUYfiB& 8#X[E\@C dfzrsB יyh Ӵw֕eβGuX1 x$ё͘k׮I5fQC=jBy睛omJ) _uQ! %IFᴱ&px'Oc!30ZPaV~ 1q$Lv 3qDu]lʕ+aesHBgJg`Qw  UMiֶ.\SJ)ҀA8qx|p$0R\v# `1N^ gɃTl jKEQVK.J#PF=j8 !=(c4繩,' {'HN .>y| os8ju\n w($#j$6.'L`׃[6ʀa.:E) qpSgynP93D+z%\vM, 9琙iz隊T5VS-hfӕchGGZK[WbՓ}G?cssTi3`?N(p||qZw<~}OB0qՕ.]Ki0,M0Fax J2PESR HU%2nxh!"/h 'h>^{e\rҼgHBbA9h?!a`#ȴ)RR"PYK6믣HSPO`eeJQn2Y"zVK/TFiW bݽnv:lllL.p+ew …Ó^&㘀gplKQAKq:jL aSuJ=E~k3/)ѓ>YpGG'cR!&H Ydz;\W_+Z% V:љ*"pJ.U.x7lлȒX[53SO<ǹTӪa%fW![^q<޺(up 8\`ss VTU|;Ey9(kTo)Q^?C :<#XT3q?M|7iHpx|LY2n{onNiqcuuvMz/3Ӿ6Mo+:?W(3foG=q5 H)1#Cx)L LRWǁu`l-&*MUȋǁ"ge?5)k:(0d4ߋ:8}{lfQ=d743+{,x?ӃCJ(!A4Ap^ŕ%dq8Ll:r,ה=9IBO>ɥKè/ >._lUz3݂Je8<<4@4q7{zn1 \_X@b=[M)EctBUyƼxW qXLY7y %J"Jrؾ7 p50D(8BELڍqL!e BLncmmp["hT>cPJћou?zp`QVݻ',իWh4^ePLURkprr21ބ|߾avk$;Jlta׮\H>ՆaJS= 8Q,Y军eli:mǣ$АFsYs9 U8#x$H;K"\ݺ*LAP &.^h,uB 2?,a"4X ߿(:zVv#~?_Xk >-d>4ֻ\ٺ.8t`ys<d?8VVVpEtZm$&V6ylj -Ү2}\`PVU/[w^@ Pcxii&PfI!S aif*C$I ƫ\JE= ڵ}}:E\Q1c qÇ _wIʻfvE5lleeEEK#C.MA{޺ 7z\ǁ'(67nk&4?6B1:{|x ʆ{KnT@e %4 jwc\}D&STyyylbGxQ8Fd# }u4|,c;pq J`ރ_|&_jez|PV~u]\zu!Wi`L@GGGOA !Ǹ}7-08#h.WWpe"w y^F 1" yk\ -[ƛd.y×wHg:bHӤ]ʆZJ, 88:AoGGfHdpC3 _&csc\Qe NNNcbkk`Q/;7&J'#|XJYaYF5]h[Ap,bJ| _ʐ/b$Qw+~f}ݟ&ǯ!(,3=~J 4c[:F8B{h4 zÛ79Th!Twz7YERvGGGϵ6wV1Ç1^v4MDY)˲S)Օr=*OSAsq`}u/^& L#A A+hhQ53ewj~jS6 $9ː)wyγ?OC׼_y\:-%'RoF1wT*L#LbQhf{}F`,ShZXYY)j*x,Ͳr .8wzTz|kEYIvww1666l6Ram6rCmypp`dB9pߠl  uq6VL1렔B 24M @yVgqtӧ[ڂVQ]r+}ڐ,fZy5"m4f1YyƬs^K0^V0Vo2,!ǽdTCpi{O|Low1A)JX9#|'CBHQ]zN0*{|u]KZI 2QdDeP.~{/ooy> pq}vA9# v Sn)w), L"RH9* KCp6aPuaF.e.YEԹo:94e?HLRR;d1B2 m67_@%y3%!.\2,C( ,GGG*.]DJsn/zkc``ZkY޽{c.^x>#BXENMK ?hW.\XG,v8PJ#|[M83 TP ª$Ưd#zQ&Z, b^ ~cUCurlf<:\ )Pf aeeTZAB6Et&pO(*E5l68(NW5m+RʢZ~-x~ 1nah5|\Vf htyNq'JH6qbGҬ`Jk({c9lL.o{Eќ5,ºX:ۭv> Dc0fu>:V0BAY4M~')h421p.\|BqJLB@Qok?25XL\j-[,`LcE|-c^vhE? 0۟; L PNK,3X/^vvvvC $r!?M)-ެ_j/`E>~яBiqt2ĿR u 54t#rp88XYEyI[4yc ϚgeESw:{VȂPB8X3.8Ckmh >\_L M" xs]rޞamm g?Ϛ]Jn)xaz||k׮AqJ6vR !p<,p1 $=QnAk q@эL&GpaFy-] i*P>3hb/kKXaEy{ޚϼv؂Yu[Ppg shR HD\^碓@5L?" 6>y!^p<.4666NsVQ"" B4_k*5Wӟ7xkkkh4SY)Uet!q\q&w>]+( t;--Њ<f#j g,7 RfЌ NDy , #/0Xװ+\q-gfײu ҢEr%dy-Yr|҉+rR`<l&IMDeo5E ȸ4=ާXLR1zvmooP(w <~/kYz+ Z?!D[X__?BLP,IRvB8Ti|bA*v N q0jݎ+fi 6 {E!$4il02gϟx=^ʅsͼNӴXPByC-mK'TOةnU |\ý{FIA+|j~_7$/=y,J)$^W^dz Թ*G)1L![<mq\.Jfk(@( ZX (dU)Jq#Nb9fr ,S/exl+7z`vi?ϊbV 3Y~ipѱ TC1)&e锉-gTHs,>w8Bd *%{prr>w_\g$ǓxbQ]i :(q?^Go/Z6M4vafbic(ZkF Rqg~֕yyysuBQdf/_q 0D=`R+?J> Kg-6Mz<|wIm.5ds,0(X]]!;;;+FXzЯ(>޽{}E e̔P>(B׃"3ɸAou I& (p*EՂSS%Vg\ZI ;Њ J3a!䙫F,wr4n<s Rl r&|YU;)W)U4-2׀V܋g'LJV)&yhh5BM4c{'4"H@َ2cohZ8<z`Tk޶dV:o*Ɏc0Ɛi\<l;]9EqL';F48Xρ1#ܖ) ʌ* 09'8| F|"=jLE).(Q9hZ85JȍF G'}P Aj]׺ (t^5X`LDwooh4S:-ďFEpp qSg!D1AZ6@@r9imQ`8#w jg Y~@ 3S]l8Yp(MBOmK3%3`ΪJ6kS}G*`Qvs霡!9 gBviPqa?k?CmKRJt:Z-z]`Lo)ky?!QfJ '`L=fܴ 2I$ uTHEHjcṾ|zZTǖhJY$MRWB @\qvى%rQ,/tchD+k\SA0ƣ1r8  9Y2é7iZ Ifw5P,@Q|lϢhn[d2ٺ QWy2@gU*xxCpp Vfi (F3B7{ހDAA .׈"ARiB?J mP8u 'b.~akB5p2쁩 WbLpL1 Cth.r)K]7N:KR1w\d8M D1P0 f>L(ΏV{`t:z=\v-Zk3ErS^[Ѹ}vѧ꿝_1#pf^/?9SEwEB)NN:sI0J0$I Pddt _ey%g $CT\ǻ?.8TZ TtquFEe[ƛ7U4DڇKRSeڷ.[]u6@I1Vn-p):ŔmkU&ܴ͕8hw/E[ 3~BXU#ek7T=j汬z4_.2 X,xU RӧO!$F? qoW8yJxap&?=c#<Ls!sų*WP(E@Țk:? O@]g*(fS|"+ƸzPq{Oud!F YBpOϗ+a& O T hM 0I ip IDAT(,3y(Ġ?BEQY^{e\܀)V(ke2@Z?~۞:,f8*, .G/.2{4xۈ^+ VaהRJ)AEB(m`Tiب<Ǣ@1fs}RB+ %&pI %bYm`0:Z0lX05"eTo_ rGp.pkuڰjSFGZ!{OudZJi)PB8R:dLQ9׃􌰥$Xipc//Jc8VeY4C<|0J 5Pԃ>ZCVWWOJU(S4ͳL{z#p0q {* N ac0(ٸL 28_6==Vv[AB8O訇?o7т@b$( P (qSɮAOmJ@;/IB( yn-}t.ygeL-Se龜UHl){)vN& GeQ4i{OLå<6 C)2{dQ`RyG=Rg !pnk|e1kbΊI)~=(W.8B{[*OJ~D)Rs"&p6ٛ}@Gj@#SkC8GJ$b@ b(Bpp0WyI\u%WRdʃV+A2~uVCc:aJY1A+be$fGjRB R\)5 Gép8Dǧ\P @Du}E= ,ʬD<PJnj*jߺPVRѨs!h } ? (A~e@Ʒ'!ݦʔDMQPE;W\ތ+Id?>$ B,3*tHo #zj^%jujk[ Ah'3OggH"̸}2i `Bq pA3HPS׆aZ-[jr zQr4CɼeX= fO h("ĤÊ* #M4C%Рy)=7! [I*" kX#`s8 +x.(WQ62X,PJaww7Y7e=J(hZKjLJ q10orYe}!dN) c!BQ.`0" {8Fq4r)g/]?\5 mY=x7]" ҭ&;R'M0a?w sE \&M3ʀ ^ H2pW BFg, ϲ>677[V=x\Zqo|[a`EqWWB!0 8-`v[~jCI^ ɪ:*)˪ӔSmCC1*G1~*^ !Y\S=ȍg1GK;AP>8VVKcxg™x\hkc(,],&V O?uTTg,jc@3= )%4EDQ?aWfK. %fc ^J㤠2`:6G74(yeglRDUDG5sm kq{g)R\3%k0p<B oYT[jQ @"x,u J]sW_X__Gxn+E.Vf x<.IL&| za~[*8d#l 12@qjzQ77(Κ 3ș6sT7|C,h:ז%QdF0T4O.m6OݝZ1M)؎$qq`-Nʦ1֫՟茅OAɝ} dY6SQ}FH:m)۴NLq~fy9Wl7| +Zv^6>pRP{/:JLBЮ~ߡ^ISlT,HԥBGip\͒tV3 .vww]ڢ$IM{6" Ww?$e5q{c^د<}O8 |xޣ̻EQv<@("Hbawt(uL4Zڼɳ]DuG$ټS9LV u ax.y2BiossEiq+2cP04LBTpo e~ @2^(!86{yM'`< A},8tƢ4vOKV~ªyu yI !?~| -ٟ``s;r2Ƙ; qbU"̡]zu[_DMj!D hכwvra]mVF΢4c$dnPx0 ]}22ejaN3fq9i5sVhyi͑ AK!" r^oqW$PM1uKE4LHI}U:Gۂe)B@8x\Iֶ9e !>} !c,P%E5arAd frg],/dI4iu *ͺs<ʛ$(љr-SDM!YIObâǽ.VݻvCϲ ᰄ3Of)ly =zLaQu:e ڶRD yZ1d|g,jƅE qc4`yO\L}9NxAY $T]KCubR-ak۶x{ϳiul69 R2ZPB\ι-.}9c"XtbS8`@FA`{ ν]h=9χ![+bMgN$!'h0d(( Ak0$V:-c4{" 9qs~BQ<6y9a f=$"0 i`/i:Z532 !&`B5sQ=3D<ם`|!GJVț(z=pq޽kN+ػ4}tcs-ϛ.j<u9yV2-E&lB!f)0% )RCd=Yu 3Bcm X>f $ AU=,cs= 09Jk0v^C6N9eXhٳ fm]۞cN%.U5nlƣeRz]\pcZ#i{ϝ,0q`<Z ?<l̈́R4FۀN3(8NaC 1Պ):ϕcJ$Ar#$ 3`!AK1R96, $0)z2ƀCQ!4DH]Q0bvL.窱SX2@{)fl$IȖ,R,MLR3]L h,~7I#/$5HcU uDDRHB@Fe:C$ܸy l<(HQY)q1?(o(B)Kӌc>"0 i^2" ཪ4h10-BT&uU0D=P,1Xò׿>րM꜃z x}<0.XED,0{=CaL J}/4T'> s_^?}\ˠ4H4;/ge7di::PITmX؛SFzXL'd\88Aj+T@|7HZqlEHX4A"Z>?' 4~9$*K6xH"dPlE>ac=>_;񯾆oq4iN3x!㌃05—1YPPjl6++2k,:#q cVg)hFr\W4*`y9_0 ~5(qLK׬U#HerD' 40 9;UQ!R`:8!!Sa")hmLIJ(Υ. U6V:EfS/ \DgE3 VH49ݸ4)qU4c0ڸ=+~6L\49`e%Fc^;???PpZ)0)iڿUPz1 +6e!@JJVQdLN 7 Q fmlŗ}gJY< *OKV IDAT-QuZ۴m²}u eK= mh4420'1d5zG7E2)" eD"Ptű[U<1Lfk5#hƀ4oC`:+9,B r5W3d xCFgc(D%PY⋶7m %4E(R $ӮE]R߾ia*uefNb)s|ϣME۶sjSeI °Fh.8^<~RG^F0͞]jٟ_l[]VBRKt"{?|K]uDuh1%v^^'=ũ**b4uFOSW ܭ0MUi&VyR!o~\㛢R0~&T|Wp"IR`.8L2~w14c8;-qpr |v,n<§nL\Kgfl9 :dV77 n\ddePJУܸJJQA@&GΈPу36CwnL|oNrwOCBփv5"S7Cabh psΡ d uc}@׋ QWlQ~(07E6EǪ ٶ`7Vwh~;cTє Q9Uͤ׹uTN(Hb/7lVjA4MK D !\_ \3XJ~'] m;ȑq泞u߮:[jc~*m°Aa,¼b,]*fϛ1JKg|rFR`2(2SDa!PTxi)V͠ jߡc!Wúuiik:qQMkm[h0Yme+B L ʾ[5N" a@\<׃9g4GqD(3GYI؏VrНynΑ)%4tG[ھ܅cȼ<.zF/>esI{nU Ϋ:Ɏ{Z^v#V3ήxXgLIlǦ}7S. 󵏲V34:~My°G<]qDbEJR[ okЇ$c_w8RpZcѦO<)QWwZ4Lr>A8x=kJCjqq9xo_VΫ[X0Sz/vwPG`뼔:OgDSYwtEyݤț/T;_O.UB}e1hI !CXMwCy`I ^1P侐FxZmYI&l f~/KlrL6$iAH.mԍE&Y(SGO,ۣc,r`ċ@` p"'fp2`FӺB7d,:S"`.-81E6qM`Xi6=&~. (?W=p((;Ime9f]!EG~ǢdFAXfKg%Cބ4jEfk6i7VY7t;[mXD3Cuk`ʨ{]G^c|nl i9MrQU5ͽ6f1}܍9%R_LF8tUP>Xw)>$W ϣ[xG0T/(۬fMgybDX0IUE=*1Kx*IU]dNbufT7 ,Z;u P~_#˲_f%AVJϴ4ٴjNEykLcѷѫ6cqQ,{@hj :F͟7xhl{У~^[xeX,nZug6k"]@ަ<צ$Q;_]-,cK4m,|*pAn2F8{ʲngo(L>jUƚmj/k,8;n\ A c(EkfEu&% @0e*${ENW\hU7_ u^ /PLwA|01Oi>U\Vl֫qi][Y/`EA XUJ9j^(h\:2`f6f423dxQ<;/6YݸȂ~-ȲM z.۩ʉ3yPg(.ذ~\3snjcԆ""hm|[X; Ƙ(yc #ddV{'cm`]+ՋDAss^J1m>Ȣ3=Jv1V\\Lc ebXAW`L@g PA 3:V18y4[v!CG/LL0af`ftaHgBðZ@ 'ojY_7 2g2 z@aDD~EP\08yhj??G@ Q!`8`&Yڡy=vi 0P1mb ˈZVXk&0ϰϩײ4gw/2@o!fC*ЦP1sA{,z= 3 ӃL%B 2@ H6Vy10 ! , sxϰai@x}˟]I4QTטUaȲ&.mb ٰx<>>@<+Ġd,AܦpsO#C& Jo?wCo?^P|BR<آ0=P#)ۮU $z!.mZB@g OMCAk!0:76aj YeM9c\ZXfidY"͛77j+z j,`0`ooZkXeEg)]2MYuGY,d:C^/7~??q |6̿ߏ@e)bDB !V C f `S༡4 ĿIǾ&Rɺ)UT,ϑqˈ%qYxE2<;Cqьc}[r6 1O z0߬tBL0(=}pz_A7eYq S@PF@?/Ž{t׏ @) H)QmAuιpH4k)%"=GfMmOME:c)(wg.zD)~덚` t1i'4k7>Zg()\(w"wG2q8mX-Y70> 8My2D l-Tm66Ac*bBBB`\ d0,(bA̠yUdaR kkksEg4.(X.:i{obֆa~Ù:q=5KU+fP!zy@Ƨ2%`b 2h4c !KMp3% p%8L50,?u"A"Bf@hAS."p@B"nGJVFZ]Yep- `4MLAA+ \b{wLAUe:r%-}bɈ 0 pp+ l "cDĐw D&7Q }1AL1S&FxQp|/ETXj1'$J";T"ܺēj2aWϽn%ADD.?~g:,3yFTCIOs^~֎G5|XO;&1pXUX8q;~g.' -|HӴzvcu+& XDE_-#E ӭƴn]Wk{֔~3뼵Mb$ z0'm c>2WpN6ȲȚʡ_I|.jZZ?F5VkAy[FƮ4MNX?_B`2j^|o6FY__sƇ)S U7Jn.%p^GUm4Ee6cjbq"2__wJ[aQ^Gv1͒ukVYz΍RHjעUEh_ھmbm?!ˉ,Mr 4umm'1W6E,CVLд@TmZm %.?<[.h-+32Q^ϻp E#clkkUh.h3͉ D1ʽ_x@5Lp\$am׮]kfG`mm RJiD PU$1z{:Ne\Ca2Prk|zEXsh4ݔh,|(w?,)MZ2vi0 ޢ#MSz}W] 07n1[ͺYodOfӤ8) 13{z^M,f'5Adl&I Ax )%nݺbPJ^|E&3MJ>ϱyabkk_523mՍZ^Ó:Zs4塟6Wx2>?I]14yf_`gUNy?֫o+8p S<үKt(*'QA:X>5uMiꪹ} :FiI3 C\z`Vj`{wێO qخDUi9GE$R YZkbmm o߳{Dg0.<oƖͫ*]^)bBQ\zMlhk0'tq^k4qa3 -[ҶuNڗM#I$I-QVwt2PD3]xpxx8/ {6vsh4!V)Ai[JLVSJ/>8flQv15[Qyc<<0N0t"VK yqMkmlY8*Ig,*:t78d8q-0~P%@ׯ_G$N={kb'RSBիnZC8J;o{?'*y%ksz1D[@! "F#z=ܺukƩeCUADfkk%Ix4()FlF /"EMAkBę]8kA#Z Ea>kR a~6q U45M,pxx+WFuECKD/ *0ƔEZkcssIw^!8oT\ž7,59Uς(J(ʊ/BUg1h,K/9Ft" *~W/TG5ݣ_gc֣xKPh~{fR f;{9w5c30,VZW{Ӂ;88@sN+qECQ'/5Pu}(d  H3$[`8ؽ``yntj0XBSisK2;DqɍEpⳟ:DB?{:,C)dpD"m\Tsِ9@lz?burD0mS[<4 @5ds?"/swj0TuA^@Q>o֠gymd2RQ.-"4M1p0Mn\bcQc<^=iFTk׮uˆBW>3tVNձ?ڻb*\+SRMB V$p8, LQY nE ^CJ} PPCٍX/#MS.nh4JcccWrqA\.*{{P|ZF᢬E=U*밣1PXK5P6 q!-ztv?88|͟ż ݾ};\[[ޞ@|ur̰4֝۷ ~52h0V`(bՌ1g(|EWgQ1fum">+ӈX*Ӯi!0LO|&p5atBhDD٭[q+ ]:I)+v 8v"ynz^>JKFc;R6㤔0`:H%,KVMZ ꫯFLUp EM={͢QcFKD p<5/Sqxq*k^T!E+)wrºH%P"shۯޮE:uoo/2(2 (J);TF7nnktQUZkl$IYQI:qtT,(fCg0ڠݘsWSf(SOmbX.}QPc vww9w}wmԉ6u3Si'̝;w58E_g=$I@D<} eY*T-0U6kłJPݾ`3x0)\#d : RJ׮Պ޸qDtPG7uX,Dvܾ}1@ IDAT߸z* Եkò==glΰ1ǓP(B <3=p3 CI}'=( O%_|k:߃Z5E t)gg˿`L`T 1 !M~  觊´^`1S*\/fmؠ6ҰMK\TQ>Ob4 ǦU&W)7G*Ɲ;w0,4.m{Y ^1QƢzG{As>G@e `o hP$4B \ u7hAڃ$^y% "eѪRG0$qV`0p 씂(<8L&Fr |C8Ν;bssHӴ̶.1\n[৔°͛/"M(]J斊.Ut / t$@hA1~O[/ AJ c : 3)x 8`aC:2 ƏA_Rc#R6C%h4;h4kV~Fg,7?`<6xܴRib4H훷gM(SjFP8NksYdmu16U,bBJ]_m-!42" "1:1m7> ?J5<ҽIpEYZ*;^Tϳ);;;;wx'Eލ#H^~eW ?nqd/~ [**̶(;$6:$6E輧„ha 0k~ކ>&9e dA2(0@PlԱa$^y}&µ} OZߣU79iaK4ˀcm>8ƛoic]4GХl;ݻ~Ǖ+Wf~=,˰W"I0ZCѓRG& DL9a SKƽ&ucPg48B/3TP00~sPX! PI.h/ǛqaW8Ο_7 t !ENr E1($Rb9X[[s#I2jնwox_۷o TzVt< a1_Wd2;wV 76vmpRCCa`(D|`gηA)Gdg]Vp&`@ Oo=8i!Oyܺ:g^kW"s@+$ @C]3q^Ov"gk*4iY &I \048lAI{49jsM677qm}+::3ǣtZƘW1Ai14yӂ.!~^fxu<+<')"ab^T 1pP)u8TC[|fS_΁ͼ>fϫ!@40j5lAI50lF`#A^qu6妖;mD ?F0 :1Q)!LNٰO>x `RJ<{M,*L&k2cGy9o}l۾qYy^pVyYz:y6Z);,R RJ Z"#gזO !\Ν;uu8tT7,۷o[nǏxBެ`x$݂F='G|u J)$E-N FbtϟxcDcW`,#Z& .]BkLA%)X__w4 muv?~ ?GD=F,Nnsxۭ̪Wu,ŋׯƍF`RJBq5hI M^\:BMgQGrr'}e]ymDB3T=ocX[[sϞ=+e :Pqc*~Gkܓ(gԍA63} -{hlʟ],O>Ea6pm"E&i/@J|RdW+P=`k"NCuY]]a޽_69Լ9BDІڶLdi!>Ca iQtnj>pG-3$lٳg9<!^+R%5Ȓ݀zXټyE+Qwh8kSq*u{{ J);;;믿qa(atx`nٖWFövfqmʫL&1X$I A{ag3zq*XnPMYR+Nj-62MaY*6Fy@[0քR O>mӽlaߓ'O~7<=",P8Ucʕ+xVZtmm <~x0!qxq8#R'l2;/F Yr>5GVz qxnQm4{}*^!1L\B\tu8EW݌B8KPdxJ o?cZέ,zlH1J2 V=42 .fsGw;C]ZBYY6v/yF܍cڕ;nGzXH-4^0Tj|jK!VY; lKRm]5\G5RJloo;zs gϞakk ׮]:c_Ńim8l(;[oloo#"a'Eޞ˰=O#$I~vwwsL xiõo~b4_9/e2te7:E_ǼJe⏒ee;˄CyiB X H)]Pn򇇇. g!R{o#MS<}wEp8ǏR/ӍX$e|:J+WCd)v!- gppp 'iCe&i'I20IMaLQQCy41&pR4͢ G$>JV8Eu߯9QrR6=L1]i:)oQ~%]*^5 |F:]q*Ey6 D=z+=a.Aa (xSTJAׯ"2|vTq@Qa%$&ÀȴA:G,\-/ 5Z7X>OuN~e_Im]&n;5fam)>P 3&@FhV̶*X[[(gϞa49D6gхOQq1Sܽ{ FE7p5DnSXsX1Ϭ`o677K9m/DQ0 D[o0 ]U߇51&m5wWgэӠ~ <~M6d(JѣG{hY~~F#,&I5Nb$*ZS:W9[;,CI] Y)Rs"'Q[6imq2N*LfWȓsŬLշ3j?٦^qlnnBJօ|]@۾G}?9Ç$ >ʕ+Ng*a)%EV38o$ gJ)uӘ~/0 $ =z-[1kmf5F[[[ 8;[o%oݺ?%OZgQ4̽9h2A.g |giaAVH JTa*o`C~t` Ƚ˦ap" .pD A(X~TkrfׯiR;mϣAl3q`.cB dT000ФLD"BMQKQ[k}A(';nE5VQMXCaCxR^Wk7o?+שKũ AD~~5dDmjj6q.a1GrR *3LYZ4o{<^ ~gf# CDQ( yXKiF(vu,YTQ W+R]myh 1/>dYC6W_+𯇽> r/MS  }zF=zR-frY4 {oo1~m\re6U뙡uoݺUh(VqXf]L3 "]x-L&x,+e)I\]nܷ;cR" C}}z=WoA?.>A yJ> U&Uk[FgsfJtmvd^v24䱳ׯ#"׿"״_}n>-f˻w>OSL%wqk׮R_@wm! }]z_fgY(+`8Hvww(9`0gI@KVV(mD4M"]/3 "vZnܰc0l~B9m;?^c~-r9}krL?O}&kȲ ׮]C @xTpxxTam\#4e4{%Io~AWwaM{{{>& /(ohcuף½ 5OCPM߿w#Mza yKY #%|ω1*B؆H FEvyЌ-aܵ3d櫥V U[qg䱣s4oc9<:`NMSE" >'ih(.>!] Bۄ Njè)߿c /6f{2 c~&>0ierƘEBYuC'j0z ~)ݻw]apKi:޽( (b47M:ZGJ@JGAZ%> @(x\kڴס/01\߸eA/;ɌEQft#]=4 /~_t(3ު[{u@ *̈HT%$3əd&3sϜ/:Ǐ'h%Q IJEim轻z[K @9}|*&Éӭe,rfݛ޵sĵ[ zʵC[ې}sMKJgzj*,[_pgZ 4)kx9i??~ [VM@k@,+e۽p8$A}nv9e Nb]O$ nR(,z#G4d=F@FY^Յm۶%t]EEEDK߰ vf13Y߱c;yvYfʇ/|> ϗ*РCSgpAfB::Hξ考i#RpMS"s|م. 8, ~̤'AߪJco|>X@(,`Mm$ PdTi8}4"m&Y4@izzzp);\sa+uaqDQ8 DmߏNb1Vq3f ?^ ,.i=zT߿?~?Fo=JgAQx< >`逮 8sϤ]H.xn8#QJ6 6#ލ%ΐRKdYz2'-b,_f2ԝc<,LYhI &Qp شcW4X(ZBYY vI"L]]]"l<v(//_ώU(赦oR ***(J ]8rbΝ;0\ 5k`ܹ:Mz*6ee)4i0ydb1?8!#"T'%0bL?r2d,κVH8MęHS;}}9B;5ݏybiE "6Q ya>pKݦ]EtDUtQ9)d" 8Μ9vdAFoo/ZZZ pBF+Q&A&eZ^YYj^x3?~<N꺎^7;T}7oonY :MsNԩS(//GYYK)wLvJN1bһtIz/N .'H?2ҔAj[lOr8+J:.߲~-"xEQp_37?e i[3Y(fQOy# B4C;o,c-$# 'OBE\wu(--eСN8F,رcr "oϳYfa֬YhooLJ~p8lh*"/_}k ,,il⢁FܜB!mb2w.8[@PQQÇoCr񤪡qܐQrh7@\trWMO .sPj)?ՅfI;϶>L4D"HPRRZPӛ zOp---l&i'x]odt ( bȑe=.BH$XÙ%9e?<6lIzY]e֬YF$={p9|>vSQHV IDATsuaժUNI(,l}ovGF0dnwq]L慇qo(°arnPT΢y>ju))00ҔӦ4EwEYEIX,t{IA#m5Ah}X,YMe"nlp0n455A_Ө]Lxӧ̾ $I̙3Ǐ78 Ed2ɀ%%%_|O<(͖$I̙3( ۇӧOt Ν;k׮躞0mbЩ$o2 3Eo^gk# GYYJSi'AtO7!)Sz qtEtזx@sss??3^#@<GKK 0f͚I&b10@zgy6lzEV!Ku\}ը8p'NKe. Μ9wbY`1haqyp֭=pÇgڅPȿG@ F< 4$%IB"U,C(,,D0맬WUhkkcO4FEQڊv̜9SNE<I[5}$ cmlذ?8 ZVIY1c ̞=$2N'F)ujif ,ۼys8Ln?^DNUU*REI!=)+)HbjwJW4dc!e@7paAߓeJ~%meº ⦨>G\j:Z `,UQ x]nJ6i: '"Mᘴ-ZZZֆ3gb_Z) ѣG3>,y\.V4-E^` b7p=PWeeeQ6X JlڴiᨍLmnykLED~GXTTc\Êyp_N(.'>/\4`mMeBz go!.3\tZiֲ+s/E2l4 {s6@":3@Q<ә*DQD(D0A}Ξ=ϧfjs&|٪ ;@̙3ɓ1e;e,1cg>>qD̝;~ cs~TVVo}[;v`!el#B,.vQu.Ailϊ+yjۍ*'ϝŹَK$x;2II?uyig iV_Q4R4Le,\~ud!< ׯyC)jL'߿a~ ʇ2x"UUwPXXrMwb/2ؼ >ܡGWh1vL&qiD"L4 Ǐg 7mjLZd23@{'Ws[;NztR~x<j9 @p7 !]nf&f͚%A,.Zf?tttPȲj|du 1vX+ڍhDcS4MOf'1p) @ʸp-D&컽j}~ L^`W?Xdz>AsՐVקu,I]':D#P AؼMSs9?@Gm8ɜ$Leܸqd `0v4E"@UUJKKqO__BN)kztRٳ8pYt$ŋi4Suwm 4hG~㭭B4 >|gM9DN())(*;.$MMM vhnٗmiGHJ?Q迣&뒌tv;ՠkB#SN:F`aYV;sE3N^fCIsL#)! l.SŜMB 3)UUQ^^G00TUEYYYG~3'EQF3}a tr,]hooGmm-:;;Y=pk_`]R6X YfA{ǎ&ATTTr!L@ª)? 0lX%Rp8fqVpq-мF4 tB$cZ,,ƳFr #?h鮋vن!N|ݼqŰ(V6 'd9QQ  ! t\Ъ~VKL; ,-;san֐3ETBKë0_VS|Q)NmmC4$t q;4>à]3h&آo_n;%<hT m5o"_u]wˈPjG sMSBJ'#WX&6<<-hmmŨQFDR JtGŏTWĦŚ>C!EZgݗTDuAp аNbu`ʔ)ۿ۠am%'Ov 60r"L>PUUAEga#Cx\]ޗ3 K|-|_ַ;GjPȊIU1pFTWU&TS`+2P! hj#ˌ6"tcs[c:;; PZZ ,(4ɲx_ofg?5dx>;*#`1b$>S444@Ef`HBq?A!l/6X JұsD"R'3-sT%%%(--KJ;Ѣ)z{{{qp:|\:.'S~7<}=M8Ts=%09.b4 XlHOk lju~?y*4MてihooǹsR ]1w*N}QP} (xpj:^K5 χkGiǑ#GXC\Foۨ37nQ|> 6 ܏VffwCt'ꠊآBWAH(ej5/bԚmu2[H2d?"D_ 6 syxxYٗ~YLhB#Yu]NˬsYz7Etgh> ;ηLYl<ǹs y1EVT.((`pii){9'?auV T y#lne TÐ$ -¸qt:q9֢`}Nu]Lm  V#5{nرcp:(--ekfooVO5 QYY~0_UG,Coo/z") oЂgAV6<>'݂&#ͧrg|,Ph Q|nA|/LzOhfn"چlfSl` d`,~65 Jτ'ϥrlڴ aFPx01eE*|}=/\&L@ww7>tuuN.aٲeU`1@aU;-N<֢eee0W -*|Gyg)B JJJľ.]d3 DbǢ,ˬן.b_ .w;0sT,i|VUf)rBuu6BzGEah0KK/)J,[` {ZԬ:im3Ȇiz1e?Uf ]7?l8eDT >eaPwM,XI&Huvٳ)z믿+Wt.n,.e]G??_̦?\ȴ3" 3/05-%LID"ǢPTaYtp:DC P/\OuemU5 M]H{}w Ml>: L, ݂ ~cDŽ02~3Xd0aP\Rf-Ǽy0qDHD"z8qup80uT|躞& ,,LvuIx<! c~Zy1*VuIPXXfs:DӰN&LEd8 b"*#L\S/fgXpݏRvPs*m>,ÈD"hmmeIkVXIL&MLݍh4?O֤e@˄B!O>iY[̀8Īn1P4i4Ԛ|rN͂MS`qH5;9qℾ~DQ6E V9 N"*?`+uť4t)TԎOD)![j"w7HNæj-Ixi5?sutk+DWW0Drh(*;ȭ4 ,l~oreeAp\رc6lC+qh>*r0&=1sL8|0|> PwUUU֭[gm CR,tַ{H}}=0ޅv55+A?^? rJx݈ѲHhsc5h X%!Z)3R$dYFgg։D"nㅕv܁f~M;1hZ8݄,DLI ~nx<IYM~A@qq1><ӆao Fځu~xQl3fMwI8p5F"]cƌ~n 6˪BY;rxPTTdљyuv?ux 6<P+lLmί3 fKc"0h?z "dH-њ(--ECC{=I\.V{":e/r0EEExw'x)[a;ױ ,P5McYP՘1cmcc#XŃF mL0AZmbP3 Csg"_,5[_+(!ڂ,mFZ3ud0kxpr"@B^92E>cu3+(hDkk+&N{dObHTZ8fN@nxW 5  xL2%Wᛟ蘩؝OKh'5kOμ:::o>FQ(Xjjjj;bH |W3xECfNtH?l-V6};#9BB"e#r`u]gjt ONƙ9!H0mzn-3dU55f鳉)/N$I9SN6lL;vZ( ۷ogu1~ǦMrR.$s5sP_ƀ0SnKg vޭo߾ǎC<g,I j<6nܸ?[oŲ@ fl۶쭄x659S2>OYfxe˖[n6|/9) IDATڤ6X 5h>ǏCe!:zěYe`Zz^t!zE6b|l:vH$Յ^6#GSme  0rH26lPmۍ2؋y7WhxYb/wy8 [2ę3g EQPRR `4Ed^6?r:4M7vq74oun$2uLu&Lu-3d26(9s&뒪ӧY;-=Ν;k u]OrM,b CB^pp̙cǎGoo/\.FHpB`g\ΰh3f::l0:u*F;m1‚ )߾-$IW^-܂;3k0^˭2Ն$_?#j,ȑ#W_}56m0}_:!_(¦.Mf:ÇGEOOn#4wδ7LPz?VD"̚FI&uUVVe3XGJ?ٳ&M*ꪫpw"ɓ'Y:wV)+kSmkDRkԩS1w\hhh3tW9N;CAb(hkju544$qܹϡs4/TVul!ufm~12LT&}øq0gΜB]׻3J{c9~jն8lhh'LAd|_Ggg'^|E:uj( k+Ȧ)Eca)ˠcvڴi={6{ ٰ%^9^UUkvUUU@aťL3g?u'O,p:l7Dx.;lBZy_0[L,vuu!@UUTTT`ɘ8q@<ednh+,ftlN:O8sWXE6l@WWWN[0 +r5q,򙆮 0Sѣ8vaNыIm0lzeZs?_|ԨT۠-SBبg-AQ~3?:uhF3xXm7m(L7n\ω's^sEKK z)twwXAì02 xuaԩ7o;].pԀt6BXf *{ W^ٳg}ɓhoog}`]=fL*>g+ZE%.)s}`=\DW9Вvcȑ=z4F)P/~$֬Yѣx3 3Ȕe D3*zm1g^/Ξ=) OvZ̜9ӑ^l'NoWWߟ>}lҘg^J6VUVVu+ R#J`% .[]y4x x<رc1zh\[nfEm׋xSN_|pxȲ>#L-WnQ-܂Vaݺu(++ç~^xgG;˰j͔YXyJ2"tL_uU={68|>08ϳXK,ʕ+E+&ȶ5kݷ7:::ڊz &4e9g% ̥bc HK $I(//Gqq1*++1rH=d*2g.G_Ν;e˖!01bz!x^9r/\, fz)S`޼y{MP[[V$$ sŽ+. _|EֆDQC!qSEѼp[em,fuݠdBY Β$A`]bPwUUURW,JLl޼Y_z5͸q~zx<ݻ*dYF,B"-Enּ@y騩aW駟2{/mM&m bŕYK[qb0eݻwꍎtvv2#SA{5rzQPPߏr~TVV$xj !JJ̃6lؠ_@M>w<vڅ^{mH5ٲLV "= \My1^RG%]1i$] e"&*Ҧ` OCC:FKiOFs\N'\. F$MӒJA?аHϚ5 W(y!|۪N;[A3|N6 s5̱w88v ]R91b^|;lzarppmܸq܂ r-7Oi#Bhu.O>y{9JsaY$?MN .Ċ+( }pn0V ـcÓ̙p6~{uu5fϞ{<'OСC%7h]Q\\|#GLj整Ž ^,h1žVnDZEx_^y pM7o[o<[g l6 V4,2elsRpϘ1 PRUOͨcuƧk֬ɓ+Z,JS_  (}``c}Ӏ;#[neMӉ;555w}۷o7daO |bfLʕ]P@ $̙38xC,׋{55548IgŽ-3e-v=8u]WxH|a?dɒ;wr{Euu5$T˱y텀E5`&*S<[km.$I̙31c p%:::"LQ|mkyerufÏ»V>dM3]xZxј뽍[-[>c7raĉ[i{=ˈ2"K-6lekRUNHٜ߿ xb۷pblقH$#Uˣ͵f1*lŽ ϙ2ollT.\FF9+%SIwavO*W͂Zh].$I\.\}՘1ca]k.tuuY3n/Ɗ+\Vo ;euz@aYe>!mҥ`tQQ֯_*ql۶ }ѐgC*\4;TTPNsacYIG{AKK ^[JE̝;k֬qU y~L+7Xsώi*f 8 57?ГAf'x'u Uiya̘1b]@e={駟NprWkvqeDE.w˖-=Y(L<k֬,زe c1m|A tR)*+ZzlMӰh"L<279|0N#>|o&S6XseS`SQ<%M|8`Fځj0ٕ\.ura7n<(|hmmŁۋ`0f~Ȋ+p5@..%`aW XN5 -P Fv A"`ڴi=LJlF&}2z|y<yn,ZF25LAƭފnIUv;<~E1Hw駟ԩS( s_}o~0a^ si-#-eY6kDQD<|FYPQ;# a޼y(++C86NUU?[n%`ٙvqPT<r [o|>^z%vbf͗j lLv!k1vX.3,˨Css3S{cժUn]ד^ Y vz:xhmme|E(b^xGe\`M8 ޙ(tV`aQw… 1zhCA8x N:gx,ӉSbݺu]#Slݺի1a">Y1Ên)̪>Ξ=@21zqơ>===u,C4'ct/w,+&>a(ҍ7ވoͫD"xW ]RC^Z]gYdUu~e`PQQ. ngΜg}X,TZ|>~\uU]WP ;  nCA u֩Zu33eCb,LQzb͡뮻ΰoݺB @"$IVuF PPd5ab p8wy,s;dYF @MM ***X r2[ضmf!䝄-E,Î!.ҋpϯ~lj]י+cz}݇)S@QsjnͦѰ*f[f!@D"xwf%X `gFYYEA"0?cƍ R=434vq퉺kŋȊEEE1b$ K/>c {=[kn V$I,(++7 FRÙ3g؈[>j]6 @E@KMEٙv| ~bGضmBىwdEZۍ &M2PWCaЩF]}632zx<ǃ6[D"EL`رLG_2 <~G^ҝYaW ,̋/;wr *[^x`xWq,!z4MM_=xL&rpq:tn. $AuH2=z=s( GGdgva`uSxbM Eflܸ"c՘:u*TU2;,2E=sJctttprNx<]בL&1n8\}zYqY655):,m;jv__ zlڴA AwAêh=lD5h˅|H$l~}vD9ɲcORxgP__i('W ;,*A_??_`/_i_}U:t@Ea`dMM_( KD]O$Ip88{,EEr;̙3+4uH NavXPU Ν~a6?m݆H$xϠѠבL&1j(C!HچxWL&V@AVfvfav vVaa">,ke˖oD"@2톮ظq# P3fځf( fZ:p7"6eYG2$I'|D"n#IYlz9m[x;JАt]9e˖-i#DQūs:r@:t2ڑ#G⦛nHm;::P[[d2:<4M$IXt)n6<2w(l;@g&|- Ǭ KafoN4#`60XKPH( F[n^|B>ۍnݻei$# o];awCa,a^aG~֔)SbH$olG*x̞=g/g^i{,#HˢΜ9?ϐe-`b1`$EA2޽{s%ApsY(|KYa#ɇ777/Ɖ'n:TUUv۷oO,ÜqdZO$ XvI@v3t"`Ϟ=lb)5|p|{hB f,ܬ`6lo!@ /PL馛dɒK~2  Tg [T`IDAT^ xX_UUQvH$1gx^$ 6|F655?yĉuf bgva喁J 6 ֭C2dA. o&>CG~u|ٲ sMê.LEozM0a,Zn0H-?N,޽{Dz:31%%%Xv-|,EQ5D29s`𯉊?<8Ŋbh n;ff+twwO(ÇcXr%[iA[AQ=ROқW3eFedaN4RCCDQĵ^ ͌Ʉynsa?kH$yKJ2 !\ ;c@47G.Z[[~-wf &e˖AECD |o6 2VAEQxpQ躎EE"`F#봲j罣񸡸4("Hv3*b޼yطo"QVroEqz/!PvaǗ.%Jz\2e +V ᅬm۶]OMG* F(I( pcʔ)X` UUyr8صkX v1{lu] vaP-O$typ=;wdp˅UVꫯF,38J>۶måZrٛgmFku;?Oaԩ,R2"+H࣏>B<$I"Ik*ꪫvڀ둋>kwCaot<'Ws=شišL&kѣx Pַ0bD"\.z^|غu+"JJ^̙E6KlA ½I&kaFR,ގ`0^3p`ORN=Wav1(`!駟&z?]_ZZ|EEEP,3nb׮]ضmdY6b25Vk޴ȓdXh2|sD"ؿ?zzzvYFF5Iz~Df ,Î <-%sNnCOO]EEoeTuؽ{7l4CNe7,2 O/7Li'2kjuP`Dw^@rP8nHxƍ8"=fav\H1tAEoYΝ;7lSu % ,X7XqMde xA,C$?~;wD<g ǙP@seYEa ,##_ÇZJٙvqIi~Z_~o7ZBIi ~lܸ9^מ1T3,#9 ڜ)? .d NIFw^ɧ--_sejopt;֙>uu넟gl箪*N8M6BIՅӧgq2\Ɓ b HH<޾ѣصk`fBqq18?YB|֭裏tDeqngva~Ò~?00hdw<$I=^zMFMg+uTN0$2&N2 u(`Eo;raʕ={X,ÎSr'?z!\ݻw㭷ނaY]$IL:{/^ êfIaEktac%IV?vveP},(((̙3 ٠9eYo/083NE,Îޥ O=ʕL-?cl4-x'NĪUv Mxo(i/ݹDZ{nJt=ͼAaa!P%2ӬP+~D,Î Gz-%KL{=OB(b (+dSLo(R2TR_՜lu]gy(Njp+D4|- ;c(w|fW^3g MӰ}vOe|}2(Ø0a֬YghI{ZgseVkeU̙3>B ,B6 2JJQQ: ɓ'3uD6XaCNAʢM6a̘1L; ?b׮],{ X 'NĚ5k.[ $ 1gV: UU.O>1t:pPmӧOgt-wށUG vaP.*0f7Dii)[`˖-v ED"H$cbm2|&+Je86Hà A@"(F@ii)(ףQ偝?ov1Ez5tL>o0S>#f-2\.[G>09Z?駟\j 4kF*Ç#H p98py,Î!4qv׊/%Ӣ| bFx@f]>P*[.!r 'N`N>H0 B"$ x? ;cHi(5Ӽ{]|㩧2(UU͛Q[[ (*ŲfMbk.zgu-Sv@ӧOIHmfwFjvae&ڷ-fA֭[w^x<0RFQRRիWBN42[ 7R|M((j8<QRL-HK CqH$SNuY,l;츼(*]pG?2`۶mؽ{7 0퐋b j|( eRwtte\(i]Ef E iv\N4uJzʠ#x3f` J<GII nvlٲCV?sroFAサœYFiTj߅:kv\TqO=gʕC2G2(,,w܁KVO1N(̵X,f[͆PBY(p\5jTy ev\T+'^ŋTUG(`0e˖L۳jy#j t__Pџ(#ͩSYglܸqp,Î (q3f`@;o>"FQPP[oDa0rD&  Zz@[[=>6(TU_]UꀢĦÎˍb-ԨQV3f PȾwa D fwmQm-X+975jRmJE)Rz"F ^xwMT xaPJ JZCDC%b*bJS't;3;;3i{c&|>x 53`ά"#&Czz:@H-躎H$~A(uzHi{EEE,YYCΈ^~ֆ _YΠVgJDQdddґV kTUޓ8mZ"ax^$hA47|^CmWn6 p \ͩ c񠠠 m۲B… |cN*--Enn#|sZ;U^ jYRj{e ~W̉P(TTT7|0B& FD;y$,˒ʂ·~_~eazغu+V\)?Cw>tmSU눂z W\p}}} b1gšC2$d`0 (Z__;v̱|.]Bgg',˒hrB!ˁ@9$D0] rAQ2lذH0 q={׮]i :b˖-8tP", RP\{W{O*)w}Ni8q0œO>)0dGiD HKKS7x<444d*T\`0Ѕbش[nÇC|H$w]rSO=WbxxxN0%ޞwL?8*++FeͅE(—_~x^I"TH$PVVl!DH"n(dM=Ha>|X?pàR˸z Й6l@8-<0ZZZ%c)2=z4٤T, ƢdF-Y7B&/@gg'D1yO4Yi:VsZKFTaP(42MA?ݲބH'qرL!DhV<͵ > ؾ}$1޴i~a9ǁHa_QbxJ'/(Fzz:0Ξ=z2 C*"hll̚-Q`0^iYMtj f8F$@ KZ Z >OJΝ;8w`7::*;v@cc@$ f5Wɂ`,:50*JmF<G__n޼) ctta ++Asto0MS4Q__"##``T!Tm6***'d'bFL cQ ڦBDYYqqx<iF|CCCyWIub1 +3T\g[pe!׮]x<2b-eeehjjZAj!#X4z)괏>1~VxCCCq6X #++kN'Q\<  ,^eɖ&8sWqMb7d`0 Tp?rC% Cݿ;J'ܹhAŐ)\{ ;w`---鿤}k.d=&`0JQLO#Ax r8[ܺu `Pk zS`&ʑKj6AIγj*:Q~ݥ]ܹ0z.XnCW #Յw_{5Ix<i a۶Ъ]5jƽ ,8 / ++ m#ԩSr|>Bsn`0?GV}}X RP,x =pPgO,(kI{JSUUիWKҙ3g088~㨭W!(`,!ea$MՄ2'J߱cGŋz/, aHyJ~NeWUc5MömH$Ԅy+(M~- RRn}Zp+#r);0lF,sPgvwu>(***c``@^ ]cmm-@%L c M-KRꮪիsaӦMPMS]Q3=V䠦e! 2Mڶj?~%c{e`0BO*S:_lkkC=$VE=f$f8Tm{Ń>P(O?T* ˲u]GMM @r?xX2Pj57Ms((([[[2A))vꊢ/ETTA޽mmmY"TxCCC = Wj(.._`|0*Af7`8 Poooڵkb7) B^^n߾ ':( 3Y0 0`2퉢"rT"۷quR]T,B\ `0ܦSsojj* wJie=ɂE\, cR 0Q[鑪B% IXhBM I,؇n/~`̧x5 s8ܶEEE}a$0믿. [C`,?T\2@W?Պߥ:/N<7(t]Gnn.JKKꫯb۶mR]\솚gCqf0KTf>+c7#<BMҗjở,RL #bi'F5hI#0$6l & 7i0Ќ @7)eg0 f__&fH$PR=k19ݪD c@`#a4FVOG,rt=II[3+haƍ= ߷oO?My+Vx,˚R0{nAսs wO@mm j=Tb)_reϩ+T_UEBRn*.HCSɎK4M?vˏ ?{vIENDB`zegrapher-2.0.orig/src/icons/enregistrerImage.png0000644000175000017500000000275611613014276022416 0ustar georgeskgeorgeskPNG  IHDR szztEXtSoftwareAdobe ImageReadyqe<IDATxڴWY\E=U^gqN$A?Eq\&P1A~K$F?BD$(`&&pI4.b22==TN/ӳїֹ޺uKpz铏DH W]oX _w-GMQ,8#V(#r6< !l2 /Y l4< [Q!9jFB = zܚrEW N}A?O6z=$Ռ"_B3}øo7+`\_X)mtB$5 +cPht2qDjzg"Ueo]V~I*ԅS3P^3DmFPL 5,s+e`]%Pv7DR22R="QGra'8߫ r0r1Vs#羃Ft[}^{U{xVz; OMGz=Rj'30? e%.gr(3 ј'b@+0=P4晒P(4k>,.1L4BUa@ j*6ip>Bׅ(hP’M)0P>Md ǃ#'졚@'`0:'Ƃ| E2X~ qY3`?cQ 2h>XOD9|řC4hHaXeRi 'G?45'*Hdh|OD.%+"ʜ||=wjh00ZE5-'').LQTpF0Q_^IENDB`zegrapher-2.0.orig/src/icons/curseur_deplacer.png0000644000175000017500000001500211555262406022442 0ustar georgeskgeorgeskPNG  IHDR00W iTXtXML:com.adobe.xmp Creative Commons Attribution Non-Commercial No Derivatives Alexander Kiselev This is the icon from Gentleface.com free icons set. icon pictogram gentleface.com free icon set Creative Commons Attribution Non-Commercial No Derivatives .z pHYs   OiCCPPhotoshop ICC profilexڝSgTS=BKKoR RB&*! J!QEEȠQ, !{kּ> H3Q5 B.@ $pd!s#~<<+"x M0B\t8K@zB@F&S`cbP-`'{[! eDh;VEX0fK9-0IWfH  0Q){`##xFW<+*x<$9E[-qWW.(I+6aa@.y24x6_-"bbϫp@t~,/;m%h^ uf@Wp~<5j>{-]cK'Xto(hw?G%fIq^D$.Tʳ?D*A, `6B$BB dr`)B(Ͱ*`/@4Qhp.U=pa( Aa!ڈbX#!H$ ɈQ"K5H1RT UH=r9\F;2G1Q= C7F dt1r=6Ыhڏ>C03l0.B8, c˱" VcϱwE 6wB aAHXLXNH $4 7 Q'"K&b21XH,#/{C7$C2'ITFnR#,4H#dk9, +ȅ3![ b@qS(RjJ4e2AURݨT5ZBRQ4u9̓IKhhitݕNWGw Ljg(gwLӋT071oUX**| J&*/Tު UUT^S}FU3S ԖUPSSg;goT?~YYLOCQ_ cx,!k u5&|v*=9C3J3WRf?qtN (~))4L1e\kXHQG6EYAJ'\'GgSSݧ M=:.kDwn^Loy}/TmG X $ <5qo</QC]@Caaᄑ.ȽJtq]zۯ6iܟ4)Y3sCQ? 0k߬~OCOg#/c/Wװwa>>r><72Y_7ȷOo_C#dz%gA[z|!?:eAAA!h쐭!ΑiP~aa~ 'W?pX15wCsDDDޛg1O9-J5*>.j<74?.fYXXIlK9.*6nl {/]py.,:@LN8A*%w% yg"/6шC\*NH*Mz쑼5y$3,幄'L Lݛ:v m2=:1qB!Mggfvˬen/kY- BTZ(*geWf͉9+̳ې7ᒶKW-X潬j9(xoʿܔĹdff-[n ڴ VE/(ۻCɾUUMfeI?m]Nmq#׹=TR+Gw- 6 U#pDy  :v{vg/jBFS[b[O>zG499?rCd&ˮ/~јѡ򗓿m|x31^VwwO| (hSЧc3- cHRMz%u0`:o_F>IDATxYOO"YntZD13jDAO{7t?p'Xm񸧅/4-:N&9Ag؍3T^^icc# @&â6=N)Z__Or''掎~w]T*FFqe5F*h]@2TW@0e=^*|1&)մH}j ~InD:;;k r3bf!O qJP"2@sYJ]p~~n`IwD˗/Qe( +svdsmҹ[X)Kh}{ϫ[l<( =ڐՕT< >Z4-(s}}hnng7m sҎU=U[{wVjEb]3 HِUI 5=333jZb&/a鋃^׋1l=TҺyjEcr5C6hb^7r6Jtziy:==5dr5LOOi {M777EF7Wll"Ũ#D"3D"ĿGMP6禦*YJ=8?99&zZo=p8 ۣ !Pj6[n$M{Ȳu:Q; 2C,N_I4ޙ$I$t: Iկ_,|T>Re${BQUQb{BP~BPhؼ|`0 n9 `0ਭ@ # @ Ml\:'~gO'{G˲ʲ|)2D7ey}v ]M|n9 bw ݲdv|>ߦcݽsX':m>>,TDϞد\N4IENDB`zegrapher-2.0.orig/src/icons/zoom-out-icon.png0000644000175000017500000017322611547573636021662 0ustar georgeskgeorgeskPNG  IHDR?usRGBbKGD pHYs  tIME7 UC IDATxI$Yv.&=#222쪞I 7-գAJ|V5 GVwkʚ*3#3#+Fݦ{׮YY5 ᓙFUzի^ECPzի^*/^?"}Bm_Gaf7|W/JvqB@)og_k$?44+}goS>Z.11먡o*"JrQ! Cijsx@XCUWNT%/4>}:Zk!><σ[y}7\94M!98W՟_}u)X;WƄZY^1oggoksʨhu]Bz)|E!(+8Ab:Bq/keѸW@zP• qf3eޯ˰b[@Y*4^DPn+RQJ)ccH)m.޽i P_^{ !y뭷1Z-4ͼJoMe_~sFiQa<c>OL6Jxzի ET~ATY\L.Hz*C-<.߈}(qlt,HGQd|)%<۷[ŎZ˩^58k#@XPϞ= 1(}V 5E϶g1lUn_x#r*(RL&LSq uqv*b^58ԫ`zd9&:Β2EN.-Nt}zn9U_9B+Km</Z!lTGٳgt J)ZZ4U/vYg$ɿ{YQOeS5Vo}65fF8c JNWBjpbAaUJlnCuZ1rX2 if2%mF{XjDi)A7qX'g("gqoً~Qa9)$h0I)!HVNK(2SA\ExA U rM_X,_Jdh~___WG [ bY*=<<_ȣ!D.]mϦ 2dG٢ b8!d0,@(͍RH4c>0 yKr%uU9(b110h4pppZOηzիoxB44cA7nq$ITXNXZ mQ'FadlDRQF/)(LAILs C .fH5و)WmIhF*@.FA rf n5j5^LdȂsAd[5t]Tpگ\f%:;;! ,TDjpvFΓ'O~5~N)ZVA[ #I%\zY,|>l6d2A$kF  JLŏd2x4p`pY8 "ܜ*V->CUAVZ0yZk&*!Yt:Z-{t-l& @g(+L{UHf)MnsuXZLVM+[3. ȩ"}𼫘t'(FdQ3OpzzODQ󤪠tox><̝[Yq.8::st]t]0qN؈`q({z6驵Ft:aYX)Ǥ"Vxxc<C1ɸqJ)DFpBA`;͠nitχxq0QKҴSWUDRGTQ&=cUHXH(E1&F)& 8$cLiI)4:7z]tp]d_16d1m?KAY)mr=Qa1w_Wj W _a@|͟۔R}4/ztaq`tj % X:Cx| ~ggHw]ǃK(g `p\/zxeV'X G sHYȪXs _JcrR V0< ]8L> CLfFɿ!4r@"@FgE<#M"t:ܺun!pF!Ry^)rZHІ[KDEa:`ZGzի1d4of]E׃K@in\4bx/)gN>qttsj-%l΀1f"FW_}ܺy*Th+zWSˉr gU5Wvw5\!{t(K0iwqGQ,d2p{8P3Ƴ [A]ٿ^sMҔP(%F[iAXogIkBzT Lx] Ldy RÁՎ,z FvQnW^nq A^V~*硪Ӻ)ϑ)xz^DjpA|qyuFT+Tks_b6S `2çp ' )fG<77oĭ=tm4<b{qsmS7V1%!$th$LuN;/Fɓhܹ{/A6RLɕ<8Ո 7vR*F( >qzz(GqT֫5E1_[ 31tMmt[M8NbL.*`ݬoYW͔o"WRh"c!FYAo*T VHSۅ 5 ?x|%4}:ocRV t)T9(! & 6n߾͵6ɕPyzP0y%!=e͛9?ldi+Tʃ,d:s  p|r{s3 w/4m:F(`^5+d4L`rRwyb]k %Kɪ*)K10p1pIVDrC&!j; 4P NnarUj.//l6K/ =]G a f>z C_B,yZ3769>8FS8B@P hx-n5 сR|-M" i`D]J$@L-UݧŸp~yl8UYUU#")zo5̨.!DqW{Vi'''/RkoW +<% m͛7AU緡5RB C|B#M.\R# c8A3lJL<`^{nLBFBk dCrLsw5/)n/)j -dAͬ%Xa>r8 4rQ8)vPI FJ2 q&Lse(Kj]*L4!NOO!CCjpW /ӧ ßm^S0MH[`0X eg8|p*1F&^{[7oi-x9iʐGG @a>CѸ(d6*UI\(Fac2c2c0Ix'aTU86i )~x5޿A pGVRBUjҜk$Y,s^{-Z눡^58Tc=t'F-9&I~?:O>p:G.8| 2VW_LV-N*sR؈HTr%T ڡ&ۡ Q 0x44dùfus?v|ZU}hQʥeaC~00L_@USmMZ~WE/]&iѤ!Lb>=A*chak|8[>?zfOp'(]t vK̃ټGCy}^6P}l*,QNa#'\Ty:JbsH*^8 bzڋk%RUv*'OCWk 4ʻDsC巟={!.R} ˞U Ys\\"ӈV f?8¯~6~f>`ؽ믿N|IRU =y(Hn3a[pziɗsQĸ̆L'8b0< H+ɡ J&x>^&{'Q~*=\ c믿nemP+{^)Zӧ z=ܸq 㥾sP+.6p\JJ|M&fJF1~ɧ .B+/|yĦM."8⡒j1J/Sr4l8ftf !JRh5='?N2 o$M5z!J+b慟1{bmPz}',]|xxEQ c($KQC(̘KSBAɂ8p*M|<;[o'ǧh4[|P <{{sn $8$HM"q'o[u:l9TQI2Ij{>Ij*.1N0eq Nf1JqB:+|\X cNx1\Ž{iQ8} 6bh[bOC8&""}hRJS$>xo1 t=[p0J N;pMLbA/$<AJ3 U 58l>rEai1N1pr9p8 QAtX)?|G 1`ggȅgQ% ' ~B\'A; IDATnW_{&&b!EʓLJ߿>b݊NZ3Œ#|^6n$(hgfG&fd2A2'?zNI8;FQ~v מ?'''h4{n C{Cvr>Ñ8 p1$ 2rmlp8Cjx_<8:ypr-ܾ{Zs*( :lݡZo}udIos͑CywTAo8;Q$J'G1PaxBp^HIq8Lv~U3QY%@(ͅl:@I`4c< qvqpKo 9p SxKFU\nƍWg(xUfU )...Wσ׷z$,888@bφeLY]$O`w08~g~ nLcs8 {x6<5%s@j#o&w;Ό`WҕЌ$2Wn&\ T>Fv|R*DI<.C3qNJ$I0I87~RhRMsSksUUa#4Mqrrp>OT]c7VI BÇ|>.JɁrt٫2= FW^Țυŧ?[yRA@Fw)̔y*$y xcBX!xU5vdҫPxd7ED]S챓 Y,њF)I%&_^ #3\(M!D|>~pmsNe.,F6ENNN0BXTz}# w.//A)b(RQXkm G" CiO!hx>'c蓮9(EN]QJ@]+^ *K=UFz¨~/IT/)+ƿX-UM\:.T6 #_W{0!ʫR)A|>7*IͮNS)0BO427w_~D%Z*,Qqe3!^|p(_ӟ^7o+W4ŋ,5@.NOO1<8HR#x?¯~oFMLNtiXVI-<h*g t^q Wd֐X/!([+Q>HHsa/R]d8tI+M4PL&8=9t"Nd^";!n}G?D PPI wpso`_lD\t_c<~f/2[z4gॗ^ʅE ;˞yZZg߾~psS4|;^ڿuskgCYh4p]§XbIm*91,ĕ'3'tk/}Xg̯6҂NmU822w)QFc] 0񤉒f,ib>jg?ruMs t,QW_Y&}L8yN~> t;' 1(x2;ヌLAF)f1.(2*J$WT.n 5mm::: ///q]A@K5{jibC~Qh ;uVv-$ \ׅ M?@f (KJU24R.M$59dT"U߶L@~,r '+y4t㐐h5f&!@% yo`2?hVbF7ɂ=ߋbQtPkvww)f_BZimbFvwwjeX)#ep <σ248xߙ ܁`]{7yc:- D0i> 9f ^E/ Xea> FEjH%ܖ6UPT-Ft/$ʊ︐EhixJn\G ) sqhӟ;&IM1#] U, 24Ý?ɏP EFK4ͬHCճ&4EB8;;AGk=,4 jו-Hde4 C}4µ6V0bfM|ה//7xALH4{7wn6r^ %M\Z-xPh0J""bDQy Lv]})ST5%BEfFnɮG?-9\.P(贚p5Qh6۸/E6<{ )[)·Ԗz=x?p@qheW50k<(RL)>z^^uot~vb"EӋK aF5skg)l,]&b#5 O(M0 瘆$] m2FuwhJE*%Rr@Xvon6) -\F3^8 !pvrxre*ܺK1a}$IF/>=i%K)|B~8$/qq\l%Q ˣQe>?rzsx>p0j,8u]z3=A4SYhJ T.oA?]7]:ܫȪU=Ob{ SاM9ucVd'߃~=8T#B0#(A a Dix=3m6Akm((g'mtZp>h42AN+((7.vvvpzzÿŨJ2$I 2lsQ:5c_~D*0s8#z4 hraqun{@$(a; TE1fy(\MiO 5g=y&lFM*WmC);-y>Z*rҜ׾fkjj>6\)Ļp$IMqhwgc)>l" _BsToD~^  !VU48Ӷp=TxWnBpFv V+BjJm5͘,r 2UJQH BDQ7^H1 =:l^}&o^_B&mY< oBLOɺ6 !Dhbb^J"R@I|Gvvv)Ŗ$ѸW)... u]$J&h2t:#?Wl6LÛJi#|1bE@Y*=U&Ceסy8b4g4)[*&0_@K8\DBsV~D3|'$P1 8Qe,OFMc47wd1گWZpJ8>>gP5E߲|8NGGO!=ǁ4@J9@o70 NDRa21@QTo42*JI*U+ ]]X65Mkue+r²|LWm$(DS]7onK10Nip V#;a3F)X1C 8Vt;06< Nqoa*9Jgg8+'ٞ~ mB- bR,('!?99͛7LgXzc4!O(HA@=PM!X6bT8Jy"b(;(Iib:"r$ŋ=|¦D.ϪP}ˍo0A)ÇKׯJ^LΡp˥1,呉y`%#CQ<oHe6;3zN' AjwD.d9wAa8IW4?] 6%vF˛8Vm_G3[635׫D[VJm*Y6%祚NZ=Z`Brb|u-4 S p1/N {\Kq%*h1{ :Z...@ ց@-]Ë95 U>lӾDD}$pr>@h2? v8st;m?% o(y`2b3c HMVV]ǫ^oȡ(ۀ6@p|:|٤BBYb\ ,0(5͘f Aˣ J)ڝ@>{0Ϋ՘ %ʯ^<SK'XSJ58~Vfy-<2Ih xt>xF \oIBFo䐵JIr(B1O0] TJ{(~m9 ѥ湊R A OpPUmJ)hv1x䩩f'I`zT[]*^=z&^bș < !nj&LſeIpŹifo;H,Br!y^zSJJU*VG Y&1fT^)Cx/ [{6\HcGVNmf#*vŗ8UVgʬ\Ejd$?m!$FS\9 1癊ǁyxpMXNDF݆NԔ(.vBe_%\t.ᗷ౺BklfmgAl"BыW)NeVI'pd|1fc?p^.a= xT/iƶ~F6jx(ո3׃39RiCPb&ceGsc/Rɍ(%kM[YߝԪ:[W.,S=n~ jv)AhtuXH5&e@s|$ x)."5=(4hd6ޕ4ms1ԭ2qc2^{8>g $borN6y^ Mq֘!Rr%㢡u9Gs6ò竟;3i>-e% EtpXMڹX TkT楡Bp"9o Ҝ{2. 8A1p]jhG#MS&xz ^~)|tJWE ݱ3ki`n7P*V]@[N7L5DqR p8.Ax#+ɓ'c,т뺈<4y׭F$̶snm2\߅k,Wv%\gPEPL T\F #\ٲn%mJ^0*Pp~~$Uʢ^_#h4l/An3Vĵٌ1r}Y^"K q| ZDQ8N@ÛSm5F8mmë7('QN(9d+}B5ϫ@O+$խ3"P;!NsT1f:m-l#L&@(ϋ?)$YI9dW*0^.ۅz}#;v{y J&fY.ǭ?:`41BzوO-r h4=M?0Y``2e .U-6>|-Ni+v#/@o <AyF,pR¾ܹ\ʻ pNXN٢.1Lٹ)wD9`3g:4FzHQS|"[f{=g޶&KQD5@j)${aٲinЬtq Fty@P3ғ@:v! LyMPCW]5Sm\Jj=lKQ.wEl!u hdA*D$\~? !j@ +#k3A)01 50mu~ ^\O;x~`G$Aï\\ӣR Lfu3EÑ:)*Y&JoXIZ-p[@FIzhs7o)' <ܹcannn)kRysD{%ݻ #5p!ؠSPafql(I[Ȧ{*v6BCEV5}c{{12z8& @Z"8|bf܄w{1%|G-0 kځz2a8s4- Lo=!G+hs7&DvMEZgJ44?ݯnJՁG8̙3\ll6H OpHưƃ4wPC*uDJig;ю)SHOFZS/@^ǟ' '$F1֨V4Uv-CLCi62DC!^#NKJ>cIʦhnC<7Sbzn߾\{i'8rG^grF$F*#5F!|ܿ)%TLkHWRZm2<TӣG0Eu$vk{$!|Ni}D2D.gsRDl2jx#Rc7zGvY Nv @?l`ccXTj+=AKdyV FUcp7#RF-r{]TU{ػUw@DnĐU8YmYZ8%6Ht06L!diک<>ǕEZƍodG8h42i(]6?@"5*xYy2$I9BԹ NM9n.:8H"V*PcV , 4 <#Vw3HibJxLk;%G5(URjME/aYsx>7o޽{7M‚U^x(3c7<@[@ <'Vj9C HZkߧ~lQ+E%b΍K+8)Tg$R q(6P*z ioTlF"=!i%J-5M)PDQj)6*A {0.4=2QUFMlQpMmH:TnDOo9tJUvIK *0>zN@p{ժO.w1(W :\iDA=1r=ʔa0s/@kqB;{Y$I G>Fܹ[ZГ sIXCoQ=2C(܍{xju$wg憫1a6JJ='%`CA_C :C0NŒzO?J&V!<-8d2ԩ@F&`Q@k)LQkmVU6= @2tԆΦu)wfQ>װ/s#K@(a? (ysΡ9̅Dv2)Py%t"JO7\QTKE餴VrUIJl)e)1l6y1^*Dӣ\:iIv:K>*Lu̡~9h؏{O{}#*Np΃?3+=+C4RR[8WCt+ƅux!RM0O+H EOzg^fDAEl>J%QRc#z}fI !h(Q(gKI@(`@܋ыb4*2qT!Zc-RI8=i%XL[s2J F7n7޺!+>("Q@@$fH ^2X VAvOOVV"Qu %Pv5Yը"5Vz|c*&57LtBH:1K)}IXEY& +c!lh hvր9+; %&$CJA&¯ 6&ΫلYJLC3\/v#QU@B@&h^C=p*"Zwz<H&I1,m< CQ̀Mc}x)LXbPzP3@@]$P(;pV|]pVEEC_|l6FRtx>ޜdϜO~Iϧ~BHQ Xx)gCDq+M`@"sͧtFq c4&"4M%cG^ώ̏x80b۝.4㙙 L FI)P*J@^7o_l*̦6 c0k}~K3v/.)/T!课?˿ÿQwG0Ywx^<-(hE4c*!#"%zlx2tB1/ͧMxRNgHcÅQ@a*}[$ \o?DEst!-x/9 ?ȆXs۳P q@ _ g$5v*h=3s?"rR  ڃ ҉"HtXRJoڽ.I@(ʪ͹ǵX D+t _[h#<~[.iUd!Ћ8 ]"5އOC'ԅ_4# 3Dq l 8V:w4c#f Q(-j$h7D@EH[kʔ^{vWxO"|>O#J׳qD>xLfkhnRRA#&.|l6tBT}@,-HpэdRϾ*j̃CL$r/]PtO#z,4yA氰$5s#xi?rVМAj &*V";SY6ΰ# 2G>4üܯ :ar$zǛȴ{g`8`C/[Gk ,Siasz%xo)4P*RrL4ClhFvVLGIQD :/NhE#CA}+QDc=Jpnd$ 2Nߧ2tܗFcFJ0Q-5[a'? y1Ji7e8e9i$u"6*JQrs9rC $Qyz\X{dUI҆P:J2 hbN} FR5Ís&MM)%o>{NX@~YAIz2qOFR~ IDAT4Q7\%r*<ԑQ򨽗K!FO\W '!r,{zh|N*ʉM2,ӆª`)uƎ2jjM @pH`T0I akjFiI'4C}\Q,N̚]js*]0-铁lF Čj0jHZ+-9*Lq(ߦ(^=OiCu!Ҵ7<9|AZTHҺ_'e :ZC$怒MR)v!;ًzJ (}O51KDVuAJ1i?3҅*E~Q፹K& E944UDZ8LR`Ih)O98JôzJO2FI=}I)g\cT*C21>vRT0QZ H-q~RqQq;\)}}R IN*8x`)cj=<.`RIZ-c(o8 (J)΀D Vn ̰Q# w:DlD>+̤p& .c!pZ2z8!|_(c wK)]V3n7ALQ`Z Zld\X* .RrEV }F}HJʔ')AYg8a+t?m*0 X\*SspI馣c1O \e |'pKN: 5d!D!Q2}aJC9zsQgg>rO  )Z1d t >dҼIC>$/A =$Es?6p~4L\V6ɡ5NbpLMQ"Πb5ר`mgn1> C@^7l2h䀃 9r@' Y}Q!o#1uᏪpy'Mhv W^1"ah#xZ+Xp Pm|3oԬ<{FܽWM&G2IT* Zk} N'SJg )& Id3@G^xj[T|QSvQnP6j+ @$PJٳN%@z;;;RΔO9ְh4Fa.si?nS1 r;*DF<G1peG/9mX Rc-J'-Hi>']4'B}>I`nneJ!~Y;ǨmԨ\8WiPu)b+PfXFHCk=5 m1",,,̓^B4Q49 ~0YK HȤ =FN+* C~JḽJ3i]m8KpxJ1 (WngYJ ./-;P&J$.?8SGv3\aW.S z5i79}t6(dDC^YYAE:mO-;$*7ZxڃT'mWrQ~-OAC>r]J{EZիWdN888݌1ƖFS7pDZ5&B+Uh9`+I!{M]rA<-FࠔBO680i%^SJeݯ!m+!$ӧW{i H^qo*3;a/'A cJͽrءg ɫf3GJ )T+>i$RAt},//CtN~R/@:N7W+ ;]υNdX<6 u(9a.0@ܿ% Bv~~`iiPNr  ,o͛.gIDZ*<ժUr4Juضaޏ3T#UrKJjuMk9)zhԫ? ÑJL:8{l reUh2q/} 8w榩7~ rbC<cl(rK~yO ۳gքt:sC<(ϒ dAp`ue&Z*rr#yw姺} \itPVqنZnhH_Sazii aftT"ܝ5E W3gشS$_0}V (Hd/_?;bϤd]v+++ZwdN08\tG:v&t)OZ,UJa~~QRJDReBbS4"(sZD5仔Q# V_E]X$6u:$Is΍t&uJ2sΡnΛJ)!y9vww3OG9Upa4Q(͌(F74[ n*O3pZ3{279r~l.H\OJ6 'I(ɡF0(xNk{sWFUDQN ."YW,H?i)})4M0]PKu !Μ9ΙM+imjI?Q%@<9+ft[a {nq"L\FaAΈp<ϳ`?H\O(8KEvwwbJ)K%/haaW!RpA:yYd* Jgg5ƽ{"Y&H)!aiQ2hRQf_oTj^xgF5z6… &XI." Cq|p`膹tNx/x`p7*%8 Ed ϟSNaww71MBc ]#wgف`0ήkp al kRJ(L1.0`nZ+*i٨[cL[GI)B֦MR5C!U 9àK=~NNȞ?2Q,)%8 <7rZ'W\AE1sSDQj$L;)%.\F0 !#/NEyhcR*]8Γvz0 "*jP'lgg'sOk4`eeJ1!pႿL y0y\>J:/ԞOFs!|a"3|E)Y7^73t@1uNJ;U1]' \ppSJ$W2^g&/jDZjիTJp9< >ZVƨFya86a370DqZ,uN:'EQ e" 9i^ GO#NEdJX^^ƅ x %8̲2z*ZkSOyFǼq֎U?/׃ EQM7)8C(sRhN:cTQsRd18Cxǜ Ťd @Rz1m+i.0 /P25s͡HO>sh۶k aEQ4"4-5S++8s o01!5StRqXj>z¸:81Yj!?{Xa޳F FIqGq mnnAQ9iL(U?^m\Of0`D.ɿ/-4 TUWvSP<. fsl6!<σ-AG:MriǥƻGi< 6zM<43D)hH q+h4LÛTh5RIu;;;RڵkpWy^a$HZd4׮]CGӱCQ}4`j [[[Haii .\o=k!5MbT0~X&~6˳EdS1/?W9I5> @ѰBcww73D";l6XXXs\Y U-aVVytX^^֖e.hP@chugQkgNc)z}$`F1=^bid\iWo=zÀo3 oT$6ϸ՚Ma( lHTi])=-5CcT}42Z1( D2AĈ>ר+\y[3$Ilz)KC}|a^/SL%8w}Coay>|h=RrEx^ggQ8;يƊ;Iv FxڎZQESMuA!uW) cT*;ɔ$l&5Ѿ8&qܹ3Zkg)r=;[__ggϞ>2MPt LӧpP g@? IDAT(8ۣuqI32vRʲ`nnAYmfxSD0IX/Q+WJ_r~6}㭷;#j8s @@Z5)mt.[Gi8kZ [C;xJ3h0dia`S$grEZ']Փr G43M80%m&Ibkwj%"MLec?RW_ZkIi%XFepK+ҨjxLk#PTp6C)7nV)0g8z=q}\/JRNR ~ ИNt:(/x9}1xmg>|Z$D4WuG߷iz#pfi')`yyW0 {9 uiV9=J]u?l}dc+kZפw5/OeHoeH`4r$*:<.}loo#,S&|ǟ_n R^*ai%]-//ShL! ߿8inU)={OFG?26ZL6|{Fza^* җ2clKJ%KMqɇ~4Illl)J%t7KFL CDLS1רmFB(J[A!2a9&MB0{3)TR݃m*DZ`*6 ALOKާ(4ivƀ(ܤMױ7RM cPHDڨaqaß($A{d{><vXXX*%(ٵ<*KpOZ磈OoKժeM$`[6D@B0( 7$IFIA)H )3L6p;nt\ Mݏ?|Tyo~ޛԒ;XG`ŠH{ B۵4T<4+EÔz#9G Kyh4ܾ}[箿l+@"UTx%lllj8$ƥShMZT*fW"C>(s{^: ([VA!s`!OL*GdZ(Dn2.6_Y n}t7w'ۑ.RA#N)}l?ox!6~i,//cnnZ ~('wh\^5×eR0fܒ!O1!||Ҳ;#^uݾ}z/"|߇HLۗ2tуKcW_}{ٴE S!Q6lll J## AᣔUKZkoJ^Ae^g?՚@"c@x@ L޾};s=:ToggxgO9gD}߂CQ<*˴AE6,u=/po66772U"b6io<c kg U&g7#v38h10>Ix@>:rk71di8sMtjܛ&>>n^RI65jW7ɧcvրRq5Tlvp7U?`@jF2 S'G Cܽ{7r~7dG$*:ݻ%K6E)%*T,--AkepU 2|#޹s,s=,)\ϝvu vsB;C_{z(DHFKANwFTKGKSrn27eSАSCZ TcފELӏQ5W?QvPI \+1MJ 8O!Kc.St8k nĠI1$b 4JQΝ;0nP'3#$I ?7̵I;vM2(NQ|h!^ɷy R&KCc=j :$A3ӱB$ WrCJU yq ~@ޟsn RT094C)V4onФ4MsP]}&&EWMe!utH"4 XjvCݶ#qy|dM꫅ ^RJTU;wKAr9%J5TQhx!7zp򛑼{:@>޽^g7 zyj54M+j' 0F/ n lvq{\@0n##wZZznMfب`:gLV[*[*4iG3ݴbj@%u $b PAO܆7wSUf7ng>;^yG("! ҃; Yep{Tc7Mo} KKKX]]'5]{|2:.9$Rn`gg ^3Z1 u!6t> YqnQ<@cPi} zf2˜x\+ I[ uFvm3Ù D4ӧ€zJ%uI_MmR]G~0GD55!&nݺNO}S5uyu"run28a{OV vww|9uQK9q>ŋQE}3U\}2޽+u\̴:<0茗K=vÒ6pQحk\3S5\V㋶1 @H zDjIȧT4&7YNzO3(, I_J#`wCٴ`*DN[/ @}67^+!z(ۿ=X@vrS.U.#+v6M\t FcAͩC>,o/]d#(Q{h66My|σyJs9gFxYk :5 ]A :jy:ôzB^ˤu őJeeh7?9$NH)b`Ӟaiaܾ7nd\(o=@)3uosY ^V ~~MFԧI.:pe5tn$Jp0c/qοyΞ=kW,,RtqEj5,`H8{o`ccswXp2iM/m=$ΑC)p+m:'g>uRG<ӑÔR7(Qi"pͧFMM)0XlTTiׯ_G߷?iv mܼy*^|lȦVeQC{ggnX\\ĵk~vaaDXZZ¹s3O5Gi y}򗿌9\xq@&BRi)Z Σh@%K|p6n߾Fc>e(ߪ aRN4LP'1:^oě5(Y= $d fΊC4fbyOPm>, πD9}j $韛7ojeR?s6M|r ^uPG?^0 tyl@饍 |_0jz ??W2'jyzJp8;o|h48w\FK6vo؂>f}>>qAj #my|. -ְ4xy m3xwӳ*G~c51uRM~5q ODډ=9jbd?hiQ8}4*~`%3|GǸsm k&7obmm 'XaZSFӱ FwVe_z??EMrE2t<בjs=~[æxabsz=ܸaJqp1\:gyҕHWihd=J}>`t{=49S^&5~&mw;,snE9ܔL!ITޙOh,'yQDZbmm 7J0 qm<|JW;MMPNc~~ߍ ,,uJEQn )%Ξ=k0Č%|+_g?Y\~< 뻾 F~?3{j/Y` INPFWX]]ř3g2.y?t/byy9怜'!no84zZ34< 1K3C#Шo>4@m쬅XmdL"ۋc =$I,//CZ*A`:7o޴~Li^?E QoVWWm z# xʕ+VX߄yjx+`ccNcs~~JSʩJp8ZDݻwqy,..fڣ<Y>p9v.~`kk Aj ^C~[ s䫩7Bk (m;o28 ;;PF nY0ϔ۔JJ6|3T*!\t}/2>я"c9nܸFa T>ɟ sn&,Xp lPą `==7OHyFUZ^A8 [q( 0"(pyAJkJQ7Q[s؏85TVbTKtQׯccs * *AaoPQ|eo})oTd"GutN~ۙE40?o?g0ĭ[=Ĭs_K޽{׊ vփw#"W :3++_%H)1??#@ZOExk<[xwt~~n@"2r(@JnrnX[[ܜã򷜙.W!|HEAq;{Ǝwc_n0\x~:; ڦQ-_x馕pcZM&&e H\ *_|NcL^ j%(mSnoF2N@bjQ4iRG?Q\zԼgWW j&]Ȟ oy|cCZŷ-(my?;gϞ]jz=\thc<1)Zk,--a}}29h0nF)etPy \Ёhf&ѝf@sg(~\zgyӤ2"^tÜRGTUtfJh!V2,q水`AY{accbSwQV%'Iܹs;;;x /G[[uSDZ0Jn4fKs8:oV&J qiO\A 0~… 8F5'pWnzU>}vZs>|$1j /2}|7Nje!\cND7rBtjӁè!?~ficͥfAxVr%_9 M/RO?8q-;/M%IXɈtABn׮]O?mkAdHڮ^jg>GѰ =]0vr x 4 \~_lqq??_|A%o\Tjpg1ILJap󰺺gZXftWD#(5^ u q< vG<ԏ)UX<-d!@+\ Ւ"))lӗ  XՎ>$JPڧ0pV4cIy<Oo]p/^sc=C:e*>}pC>}@1ļ`0H$n=V+yoWUUU-HL塲pكFk?M&2!@ȕ IDATxuuuG=Mi׽B$ VTĵ;j?hhhU?tMbH-$ۀEէ5eWvͬ,efL%LZQa@4%%%upTR<(++c =~ d*ncr\H$JFp0FxŘ>}: Q__{!)4(jŜ9s0w\1I`pEj&^O>$|Y|>g# }Jͽ-~ ରVPΜE4MR4KEtH+]$4lb (u("H.#C6UX`^\V&(fQux&"A~N.A8Q7N>jV_0;NB#ס.\i۷/uNzX<$5SO=z/X#9+DDmcԩ(++Ccc#كzl,.OOMɞpebHv;蘨fS2EEYVEEE|F?ZUU1.]…:Q(fj) Z9=1Eat@x:]Sh͜mZ]MAG, Im%#8z{2K-sʽn; OQU--M8w.9bzEAt NFͨjE~h4ʙ"YB0JJJPXXUS~iL%S5rt}Ś8(Kn ňD"صkjkkĘ1c[y dAlScٞ={t:QZZCێDIcN: ǃ'N$A%puuVn6ژ^21 وv?m_={[QX-: b倃(Thjkcc  ƚt 9'7nwż~(B]%՝4Ԍfԑmak/7uPTTX/~ ɡ9g:Nrb98! ۍ3fX CMMi1x`G?1$8tUWW;v@Q+;vٝԊ]PP\ ͨÝ-VgZUS9c#FPkvOkLSSYnQF@)@0 5 i{_E4$bqQr<^nO!jX .]B]]B) .DN92Y7$e͢8t$)]d,& N.zz`[@_Rئ"3wRŅE(..ݙZʿ hmm%X9HXL̑ +2g*,fꨤ1VIJՆ`Q꾖@H rΔE~UxhE^ //կtX0l)r 0#ܔ)SP^^UU9Zؒ<(//Wӥ+VV۷Ǐ?Պ$!39lNI\Yl,))AII ʋ:'P0455!x CԯkhžIJRKeLEDf5!$2zB"'6$))C8} ㋠;=PJ|N*w:u FͥD"h4]XX ۍg}ou2ƚY)dH,EiZQYY>}@Q={_|A5χ%K`РA$GCtq`|رcl׮]4 EEEm'֙C\B0vuDB#9P}x+|X ԝ᷿-~kp8Qh-eli%EGz+z UUQ__/h/4Mŋ1f{% W*RUWW믿qkk+n7owĕ(oL?Bjѣ|O ?f+~J?zUS@a;ivHj3q9YtdoLe8NrNZ/K)8:txad'v$D]pBy %%%Xb~_E6(2tS|'OF~`Xڊ;wGQ̙K W Fϟ:u޽87]1jX,$Nt%< ܏&>0Z"q 1-S/'}m5ku%YsTm 3immEkk+.]j/ymna`*he+HӵommmD (#͹\.\.y`ڵ`lQAJN4,(H(]GłcРA\&dΝhhh\qX`1i% ݙzlݺ|>NKo&&:Ď\CZUҊt"''\ܯ Hڤ2Œ[Z[ M$tb%K{Xbi!QtxdiSZe,Q4Ess3ajLtH.]G$V(yPf"v>~!z)]t*rl7c!]`V0FBtm[M0qD 4pɓ'rx+1ƌ%K8cts!$NCő#G{E8FQQ\YT\qvt5.J{MII <n7OAGI"ZBJY\+TcN|`8pfQBx{) Dֳtv$6́i#1CKK H$oǬ#˘Z |!i;ߏA477# rj^ySqvC4x^x^_x(m̊FEBm+df"Y,L0r l$믿Ɖ'8v; nXAH`Хi(EQr>fZӋs/I\|>򐛛5ǯ$=:v"Hr s.F4VNhfQ(`)(KDu+ZrĘuXmqh`L0hmMI ӁY9sTc"6G IeZFt+TGbƍ;@H@4}F00YݡnuQUQQ ~-ߏSNq2a͆~o}nZ0  &w1w^B! //^񔔳(QˬЛW!=rڡ*V(UԶ¥ -U@ X0 3I[-mYu얶b|8***6y: =z'%8t}:gG1 T.TtȢ#LLB,F@\|><äl%j|SM'g}1h].o%4X.'5%m&s.ng<_9 # ºnޅҭ͜{&g344MEQ0x`??<5ի( 0xv;ك+W"G@PȹfVkb䐉$M=z4 £رFFbђ,'kRK&vj8ݻw/v#??n;iɱii_i,@OV6=yPWל|ƑH$ExT@@ӚF<dՑh'lgdJu4b3 hhh@,CϞ=1t}7t(e{"| LDAII 6mڔ#rȑ#XreH:^2ti3K=Qڑ>GQ8H`ر1b]SSvڅ{. .Ĕ)S$'j/?~^ rt? 䴻ŒсQT<$[ȸj3 BGxfN5qq|8FD :5μy0sLEj21C =;v4;v X RQ sf]ƴۨ&j٘o6輈8ti9cE+WӉH$FIHqq1***ЫW/>sf +bٱcǼp팱ĔK&֯_|/.uo\@Ed4Œ/Mfʈ#PQQ4 ;wDmm-& RU^Υc'>cǎx<|`hd:cwDw9?~3gotJK&$ FKX*!DsqFuQQ&MrEuQ2J]όiKԭc3f@ss3/Ɗ:pH'n$TzG0ޓ#@"ѣyi̘18|0ymۆ7|SST[:4 ]5 $ɓ'+gΜշo=GAkk+ ǥ2 :L̜C,+9}"K9 @PZZW^4[ )fm 5,];5y̚5 ,@$Çu).^niA#Jڛx->tsEԵE)*DS  1D"/K/EE0ƂbNL+uO&''G'gLQEWƀ͎;#7^ER$i1p@ 8 k0npe‘1VHKBJN: e4ϟS/2JweaEk&%ib+c Cu8|0'"%%%xGѧOIнtBj8tPĉ(p\px<\`Ϭ`w%LRYf>Yg:ʎ6T ЫW/_~ Nxkܷ(د_j/qy,]ݚ3vNH.S&o 2d&N@UU={I\,^Cd9 4(1rQs >h]L]7Nl>sR6rGmv}KDY#:tW^իmj'? o~faѢE4i=^{OwgHrRIj,EQxNؽ{7oMv\ZV<#5jwpOI:t蟃sNBss3WtpݜL-{1"wX30ȉ@!>.vd%/Jd*>.>o hS<Oar%?O>(//w2" ג;wn9s*8= <ƲeʯUWMm&MȞ3DEcܸq|F}}=vťWH .ĭު)=vpDepMMM9sɑ$@Ϥ/j+}:.CG;/'P#]Pft@ h4L{ꅒ u435ɓ555z;ʕ+#tழR+"8pda^9%I՗7x`3F7{Ekk+"ܹs1sLEhi 0jI?~yաh|$EMY?z6G.HZ7/F)1ΆH)p=&)**BYY\.YG6PEٷovw_â"<(**Çs^Z=wñ ՙ4 0tP;GPwŋy- , Mς ]蚮E𘽪GDF4Lu|N&L(j3х"K$: ` 2塴{0Ƃ"yZq IDAT-[hwu0˞={'Łb |wYG+M$5M  Ӊ;wbŊ<ԕ,jc/]Mj#juA$NS;v[VV A>/!c %j/ N JBlp\ɁFII ^/JKK=G*&K45f^{-wСxGaٰ}vZ[et-=$` H$>|8&LX,3;r> U]< y)4iM矉'awZþmUUU?p477#Y҉DHD7"lNTq(n!zMeeeb4pwf45V"POرc~}֮]>%cڲjeRFc9r$ƎX,8z(`XRZ tMxG|i9"+ +M4v' )IEZZZ2dȫ)큗Z__gyF瘧N{1ņ sb$U"0D: \l9Jk9Fjb~V'NxfS3PXXݻ".„4mIHpj:kwt}6fSi' ZV̜93g΄(شi6mڤKvTtd5NFpHW0n( F#Fp> Mϝ;{µ"[PPŋcРA FEHpSYٜ.ݪUQ… k׮Eh͆ `PAJ)~rQ ҁDgϘ1c0j(vl}jt:xb5JI7[oy7u6j ݩKH]א(9ӦMkϑH$Fzj\.1s|ǺҕH3 ̞olm&w:Fسg`ȑP(28Nl߾aF"~|r2&\f9L5W J(rPcMf;pTUE4Ŋ+`1h ̚5 a˖-|ĕ:B[#Q|LLuLc"@ ۍX,ݻwFA) ''z+v܉Vn BXv-}@m˴JCeVF:0-a9}t|ҤI8{,gH>`0 6o[>VVCGuҥ @UU7#F@KX 9rt-NSNw>FH%IpvEz$.2I߁J466Vも,YzB0ڵksn 2s"u+KxG7cbĈ_6 ;wDmmHMƍÃ>hCREY8GI{!e}$0\Vچ|B>|vZ>åKb \xǎ{ΧAV$RO$Z};ƫڵ UUU{4 ǏG޽ tlD";vW^ ݍ3X+'JE rvC=ǃX,իW/N[zj'LL!SNF5W1'bȐ!ObW_}'N<4`?~ 痱3O2r&MeGBD)bUE? /t 1{=CQS+#zl}c >.0.lumm-SŚ:7.u"D* *A#r O98|I駟guA[O7oƍWn*:Ԓt"8dO30ٱc?B'Б D"$ 9s*Ν;K4!5畸^QU#rWL %ŅP.\{9>syz9s&^q߿ , 6W#dfRY'X,m۶AQۗfC(Ba8Yd6".]?8rHb&*Kp&: D y $iꫯZG}Ӊnda߾}ixw0T~ f|m6b۶m`a\|b  wްlػw/0dfkXx1CRb U9ղ -M >|EQ . YFWh~0vX0F;૯wŵt"wppEVEQ)SO>fCnuuuؽ{7~?|>n>1ydHp&MZCjHw뭷l߾rV+~a >O{7Q]]kaFp0/rpr8XVTVVk1҂={^hٳ1sLL>z&ʂ4iO:T΄:dk}77l0=q8qW)[n9>/ĂqGnX,C#t c>Sjp999?~<ƍ.K}f2r&MM͞=ǎ۹n?Dii)o\|9:ѱw0$8jf q"oaʔ)۷/TرX ǹst:uljEQ0qD<Xre%8H&Kllƌݜ=rssTVV⦛nB,㯉F\èF,Ц#UTT{ 7|iⵚZ4iP@J0(C2mܸq۷/~?v;b6ߏ @>͐*+x9Hv;>36k,B!J/++?ۍp8 ߏw}_5o dORt)KKKQYY|DQ$ x<D"8cǎp:len-Zt ^A4iWt Nո*6muŊ<%( Ν;+V Hv`wYhn1>֕!ȚDUl=ucX,8{,lقP(#UU{a|Lϖ,[ {eRIf_WJp&M9UY?v؁>;G˅ŋcԨQPUGA3DLmIdZ8{,>cr @}ѣydA@Ͽ;/Ud ֲ -M4$9^x ]Œ3xtB4XE ݩNʚI)(!OkłRqH$0Gz C nD4q]kH=Ip&MdywLj̟??f͚d!m1qD> MQ\{сBwu4et4ulk޽1sL]$eaZ9~ܹxD"j1w\>kIoQ;eʔ۷s'O1cc<*xi2DYEW'M H$гgOy睰X,\n%I˅F|bp8:L81]I5iҤ$9pXKXs=`G"^ǎ,!Ƙ1cxNwJu :2A.4x

Ϝ9vm׋'xlP EQl޼[lZ60F$62Sl6'Q$ nw6QDE, v؁H$Ln㦛ncc,(`6CFҤIb@YՌ1ֳgOe|荢(x뭷W6 3f@eeՊv(#uSx$i0\.=O>G*ΞFz0a\.""gg >}z-V% ҤI gʌPɊ ˊ+zy`0]Eܹs1m4HҚmh6u<<QljfO?^@G{%8zXE7"݈X ҤI⑅4|^i?իWsPp\|wb̙ *lKK?tD@رcFyw( 㑛P($# !7p # |U~I"p 477|tb…I"̙3i>cN"']X5J}P$CQ hoP\6mv;(KMMvvcƌΝ;9QHN'yA6qD$Dj3VW ҤIPZ)6IJ ݎŋSO=;x0g* }f$E,-~im|.R#GAj.G^999?~/$A4i,jQjù`К5kZCɓ t4n݊_iǘtQ)B^2 @)=5x`Lc({=9r. @@ NyCv#wu-"vT3P_}v؁X,֮PO'ͥ1chx*ꫯK/V\9JDfKp&MZWF8q>}@8onb1vqaL6 s+DĠƅHbsNDQN") fQF!777BahոxC}w$i%iҤ]iWUUE*++qExaa!~ 77GIt:m6F( A+Sb5W.S6L$yN+bԩ|{N9DQ\.~ٳ---\IUUx<.dQB5BIv%*tD b]j6.]oP(gDp8)S஻R9tvt!d7, >[mZ4n5 . `Z[[$8^z%;v:41d6'#iҤuH:֮]~_r<\XVvڵ W愰pDΥtEbTZm6b [onhD+EVسgzyGjvh" :b9v3Ip&MJd{9bxGy&M, <KZKK\!C:H'mn#aРA4i'1Q:@"`޽hllnR$r0o<?^,D+\eZI4iW"- dK,Qy~?HVc ҂ ,Z;ͫp>b2 2v.e$dW_}Ź 5CEExEP(c֭LTM*ҤI0¹Ƴ>;kݎ T # z"UѨJԄFƵ<}l6.MÇi'(唛ѣGs ӉX,; 6m-e MFdӘx3+N3uvNuG;ͧ&@8~8v>u3DP^cǎENNB8y(;&֋$8H&[!x«VM>]㏱yfVb4h~a.[MN"1V3[sf1_c߾}@7rTQ\.5 |` C?͹2 ҤIʄ˛F )͛yf8N[F[CdUCGҙ@$t<q@Ҿ}pY^O$(|>F\>ȇD_PzIIv[JKK׮]}@UU|ؾ}; $e8nt޴iҤuGZd-{V׭[=zhYv-oSHӧ|A|n)4R4]:Zu0E"X,9sǏi( Q\\Y!piQ] MrÇ[}]x^NbaÆ ضmgBUUA|XhnUAd0GQk(2ꫯxHt"Lii)m8AEݻW M7JcԩSe˖,E7nݻyʉ$9޽{GZlʬqaP__jJ|"uN$9P@:#yQ4iҺ˙ wԗ_~Ě5kk.b"=&JKK?mWFfrf=;E"_RJbHUUDQb1:uG];~a`FyGS8m.]8A4iҮ x߬( ֭[]vFg B(..?|:"ّkwFFG.$>O^Q… H$"|4E(pQSSLiI&MڵrRc{; _@2w^PP磨;UEQx*;q"\ EX,%Pu.Q8Im%iҤ] *T(lҥ: 6 bرGA0DQQ^^MMMEwEdNcכv;wꊢÜmLQ+,IIF)PdAZ4i@K:.\spX 6m®]xBc(((*G5:ҩDh1::i&q%XvZPp8P^^+$8H&I- ){M6Mؼy3vJb="''w}7 qd YXЦ<GliZ2ޔ^"R]4E>} (| ҤIA!@k~79rb1/]x&9x<`0̞=Df 2IgqTO|=A`*PUU[Wi;q̘1AIp&MڵR31 ݻʖ8`޽|X)jp8 ǃٳg#''jW;DG^:hut:zy4AJP9hkGx@˰yf޽GI\raԩ(,,VHguk&` M:Y,~lڴ ǏmO'ct̞iҤ]v뭷*˖-zJ{֭ؿ?v.O$8NL4Gdəvg)wJqp1:x<>NҵƎXDI:Ip&MucS^|Eg}ZWT Ĉ#x+]q5"[X&´iP^^.5kȑ#Z\ɕj ac,X%8H&0*>c6ק~*#$~?<LQLc `GƸq555|XR0ĸX,'׿1& &&A4iMjps :¶mp!.G+n )NgZ1l0trtٺB ;E"8lܸ#&L_>X Fgv&3Iv=E԰ 1466_|QbRU_~%(MݎСC|hL,q;b. ~Q]] ;EO4 h%eUFҤIAfAɟ/t0ÇaZu<gnjFC9mq= 77pV"`Æ 8z(l6י4["ԩS /]t&A4iKZCVUVnv])}b+'Y,N]zebjH;}>- ֬Ycǎ.X,ƣ"^Xc5Hp&Mu &'x C(ɓq} rp8N1"MtG FD0uTTTTHj%~_ǎkD2}tt3.+o\-a*iҤI\3DSNJ:E}AII gOJF3>|8,X˝N' ֮]Ǐpjpw7^.0A4im$!E+|t@©SpE^r@. 999lWEUV%%%5kp8ڊk$tG-4MCee%x ] ҤIVG f"0tPo].R/'N@]])^|5]3!TUI[V̟?\`/`\aj ߎz˗-\O4iҮh 6Ƙvmӟ3rt{bjtG@wߍ^z!f! bŊ:u?*Z.Dn7niJ bJ8直UU-܂o$zwPSSÏRJJ{qFcO-$8H&=(j$QQ4ժUݻwU?9pJ;gMg1dh?;w.Գb E-T4"0Xx ҤITjdi)0PD`vyy>@QQqׁ:d9> p; fUUܹsqF/ E ]Г M(bV6 c,1deE b:ITI5Nh 0fϞcŊ8uMΚ5 6l(&$7 ҤIaB?!ޚ^L\~Bn. 0P(]gر4i90mgqgƇ~by qa;9H&MڕyQ}ݖ_]8#` n'EE}=܃Z 'NЁ.f‡~vU ҤIѣ &NU#Xy<\;S+4Dj?>(-[Ɓϙ36m&I4in;(_J(/^dO?4wԔN DnUUżyx|r9sFWAiܹذaCuA4inx BA! @[ti;/Fb[4񖢂ٳggϞXloWwܹԮ*25i%iҤpXA/&ҥK}ZqロUBcvU9H&MZW mq ŅTXW^ȑ#;-!&n7fϞu֡Z`۸qm<RCG+͑&MIjjjw܁j.}!(:TNCUU:+f?PƿCAJ$BG7_IAq @n@8mD2k:")Iv @q'YlK=ߛϩh`B;p $ TUv;,'=xeYoZV$$pR#@XLL&y#pg\xEuPvb/fe'onIA!p.=JrYYR} NcqODZkv]!Š󐰒 `VCh[9.NYumwWg \Um'zMϪE:߮Ww>~Kp+ݴCX}|EnztVcۙnv|=cf|7`[1;/&yގ1 A'սŶm':߶;ϫvtӪr۶|Z=Zg"XNoW?Y%Εnz>L"7=o{`U1kmw|z3x>MfW-pӳtg',_`J7mP=V&p7]=}?< IENDB`zegrapher-2.0.orig/src/icons/bornes.png0000644000175000017500000000375611547101212020404 0ustar georgeskgeorgeskPNG  IHDR<<MsRGBbKGD pHYs  tIME &tEXtCommentCreated with GIMPWIIDAThilUE]KY* BE!PbT1 "!K4K\HDE?K@AI 1`BQ4ڂlT$\?̹tZE˻wf̜s@p22 LJa n$MzO}'=g +b !jq%r%gez#O`1|F&_yj U #$y|J{nӜҝ82hHUm /%loS{>ix c\h$nC C^%hIt~ 3WI/ތHA*~o o&qUq07%Z-EUu-s`p8V_EƋܰوTVf=ѥa:a'1tn:-F4}s/}HNJ!7=Z俽,:KgJ& &xuaMbX oai&PmSDmȳT `7\Ejh3#u`Ǿ1]B=z >2,:UidzoL8s]`%>Q>W޻{=ua\hlq\N>R7y"~vnmb두-M2g%PaFZ`AԆ %pOD5wz-9{aBW]KwDi>a>S8c E{n'egs{܆{ː KmjǕurdϼwP=.5ʋpeDEf&3GiXg;6N+48so (XEcEY(ř *>-2ciXSTfC6/9:nF(i:C_@tF*xx,Eb},ԉC@wJ1\5ţG%G&2e_>ӧe2fg㖆{qLcv ͹u]ALbLk4wٗ5GWl9հSZH@b)Klq Z⩛p"YV5HP uT&_),|y;*ihLF KTU-eK~ !^m;cBdRIv/*Y_y};N71ZЏRH+?7QJ. }줩.V1}ZAT..kYҹ9~!*0b4A'&'/)ZNCVwkg] Կ\ 9@@qY7@ݼ,[*$ny2ղtAu38E?\;$dwmequePT4t&˩`{`phMS(@ݾ#팤[YI;Í\oʐ*M\Q2s9ր]wIENDB`zegrapher-2.0.orig/src/icons/fonctions.png0000644000175000017500000000056011632342204021107 0ustar georgeskgeorgeskPNG  IHDR;0sRGBbKGD pHYs  tIME / htEXtCommentCreated with GIMPWIDATHc`` 🁁%0u wj3e Uf``x58=? r_  P V MmeBg``x (o$hݐx'30lC:E],,T c5|H&Fţ` ?REVOFwIENDB`zegrapher-2.0.orig/src/icons/logoLogiciel.png0000644000175000017500000001210711551046260021520 0ustar georgeskgeorgeskPNG  IHDR>aIDATx휉{EE]9HH& 1@!E]nBbp}VA}]}]vA@ \BH"GD]_SU=]=S4<9f&3>;ۼۼۼۼ,nJ߉鎹[롮k+. _ Yi#O24BMk%dO{e!ɚNFOL&Ryy` 㨛)汷UwچSիMBr yѼv ,!aRJ%44da<%TN*/sp0%/Q7 5omX٥ J]#GQJ%DVGM<'TBE|m@M<jED|(]|uPEQ.>IhHQJ;Iw"V5FJJv|[5Fh<_&]|uP#7x2&^Pkܺ&VSC(!!Cׯ `2QE:7P(񉉉h+))B7TS7pdT㲚Ƣ!>FDZZGzz: !A\*L$_&s@Z0T!1u%p;d(=Q9=LxX}hcG|7s&sss9h 4cЌoo9B*%9lH%W[9@Ĩ 9puqpe //CCt '#JZO/Z$n[A**?Kh8̤ _i۷_@5U($VWr5$_vp6l<)ѯnWe" 6AW_A &K!t$<{A/AVK\>ϑQUBv3!:`~}p`{9v l?>MBa=p?a9&(I%;:;'~?ڴKuɾ&ҩpطKXtO~8d/)~ͥ %ՒKs @ u:I!o8,`|Z?~Y聛WjߧoۄbRc !f]yfJEM:JMƶN%Yϻr7<} L]zx*lM-ޗ~!3vB؎DCl5 j:bRg?ٻv"A.K! JśGПxZ2sz𗿰d̂Ztoy91 !f) *uLj"'W*7&Y=,srvu_ޅɇQ^L*`ZרMvܸfq/| yLϗUR/4Iu 5P34udxO%_Nq1֙J[Ɠ(n}  (5-yH-JKWϯ 5ruP'@~ ә?{ =3n*o8 3(|gn\*hm JJ%kBM$&~RRX1UG3'<6*Z?Y&\ԡBas%p,Uv*<K夝R.b{h|Y6h|dU z:\[ JR &oފE~JGX@6^M6zNJhqZ(*&/jh϶V֏#n+d2ĬX5@&t@Pd34op}p2%%m7?.@KcJ9+#jPhrc7 j9 Ha/s ~1rӄZ(⤢(*/ G9نY8iKIvlCaRβm,cxf& ttr(tP{PID:B$CYPDC|C(8Z4~T4̶Vh<^ @$pT#@Blv{Rz *qń#8ZCwk6˖BUp{8N;Hu t;lQg#JןYZb/-ElLlN*W>01:@NjpҪ/"0܃b}m|{3ʅ)j2.z00gxiWY]*'Pm-p`WyRtqcC^A+dtTvTBV{QZN=a ~DUW5xRC<~52 'qt wO7`4 UuZ,7; Fio BP2QGc +/xLA ?Uiέz7G//^Fp*'Q~=tnBaKAU)GYf=<QMlвW*1;|97{=?p_z$#gmk[,35sz  ݋>4NG 5TK+;@ _yܬm= ;Qz,=x~z->9BWTJ+Nq?4k#$Io+Uox*JJNn!j`:m⶛}3yڙ?΅́.^FEsi"*|_6PKatXh!XHc%c .΀i3M5ECW ze˭eAW qtFK#u xmNv󧇰; d+5 ڤz&I#}tǎlhG"+FnCOC<Ç[ENE =م d{B:V.4{M?{ 4\IG)Cp7[܈yAf~>L0C`z(< XJwu:.x=tza[Y`&'gGYpP6BO?BCAO}T\e2jتhBC{!/G&TQ 'NDE*QI<ʉhk6k3Ԇ GJr ?&_K%їۃ_p;q(Jj?D|BkFHg>GCS~0Ԁ^<^܊jvA[ϣ<&G$#TQףN.NgN'FNQmྐvvH&R#F[h{x 57RHu(;( '4UT*a6);ElDm<.9L @G$]!jUixR u*:Dl2$Pd uPElQIB)" WR/4uz"" v]%ՖM '5Byg#xB#T<P.>Iu<덨 W ykxU*<1f;j \&%G( kx֭QhJ:*jE㨛I&^Go^5xBYNuh:kVI$]}uД5+yV[&]|uPEM*Bn nFyռ:@'=B@Y bJ}y$11?0fyK_a^Ŭp j^^<-мkc4Cco333Syu,jj|wHnwbzb0"8YcgHS6t)m#YD I6-1<(Ki-YC܅Tm, j֗ K;=<\u]|Q    /!."#$%&'()*+,-09A12345678:O;<=>?@BPCDEFGHIJKLMNQRSTUVRoot Entry 0n[_162c3'   !"#$%&()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOQRSTUVWXYZ[\]^_`abcdefghijklmopqnstuvwxyz{|}~ *JFIF``C     C   00" }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr $4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz ?S?ࠟ?g&|/}.l0_"}uH#ȯ / _l__1Dxr}.#e`gU =Ϗ(yk ]lqݔ/aZ)us_o;PxW$\GJc62cqJᇸ zuQ@~if%P{l~W?_+Ѿ~)<}k lq݌/aZ)ur+UhaU^_V ZtV5ƷS(yV Q@ &_'kwkV{-bDН { k ^>u_wSAXt3F U6cp|@?[N[-5 .-$2=ƭW~ ïk/:j |r7Ix3,ϗ;?|}¼cvymii^´s*^/uӖ]z>|z5f7\ wC>ݷןj(fAux[caYד$i_?7W.#|G<~VaT$e0EppTWv{< CEW~g  JFIF``C     C   <<" }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr $4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz ?S(Gm~u$xSe [{px)]G|(g|~Bk7m n{6W;Ae$+`_*@>|c&|Ie̚<3rg_mGLafBbKˀKd.׉[dGM{Ǟ'hЊ7F'RF@{;Wo~8ldľ+e7+aTtp˹>>d^~[+<0(XTīsH)9hA`> gzwiOqus (cPK; * $۫>0s Zk[Qo:<2„7!\XB_ut]{:歠#[E|¶c'k_4;]s~e[M*|;e/ڮq"8'Pÿ o|{кf/KКMHRlpy \q+m]o /?=3xzP+b ${pC xSмg R%̎"%e=a q}_[f|U'ed/%[{{4R8^< 8>-DRFK Bšo?q}DQy>n|; ،ppz><5xc)|!ƟHow[m#X$O*Б]z(E 31gxkG[mcA-5* 4R`pH8 A@r? |>w CRm*5aN90ܟS^7O.L2տӴ{m]Am$^+!bc )%|'siSM^>e2ojm#ъGvn8H5oK|Kg ^<"\FY*:+ݿ@>*eI%ZkA2 No};]ьsI@dcrh}yZG_UŭXXΧj!L6HŵG c |bߴoiqV(K+e*_DG{xwGԆu[LV*$wCU ~Zuֱq[\xS῍5Ŀ:Y#%Brv'몎+;x$$qFU ;T߶t~[8aΡw42)$hzT?'  !㳎öZ̷³M+fwbI@+|Ym/>|7E,ﭼƏ΂T1ț\ ASFօkGy<"@% e'@6Km:<3 g{tFDA,[rϯ@!o9u? NZ[ulwR\e# M8{4/p&0jcE32pq'Wm>.5^ dlp@PUA 2N1Wg@Q@4PQCatalogn56r EJFIF``C     C   00" }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr $4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz ?R¿xQ{m&H-mi88888pk OGς?~iY1Hh$Ǖ!π ^/hym0@P[gOIw|Qaw=#D $l&> ׫|U|U~ 'ZO8? ў mchk$/PU^br\#_ߴß?jO Rwc$o.qˑU䁹r _4Bt-s췥V^%u =֜PA CX4_~ m4i,?"K:?)2@o|QmOXx m ޮդ^v̸mhEe^a ]|=s@^<)Poqj17$+b1CbI0YA⟌Vk!#.,d4h@]".޼"4~^q2M26OH'ݐ.eϫ@)~?a߭oGRҼ5FDQie. A#m3 WI7~繛Ŷ8?%}YG+ &~$Hb|gy 8}_'Ut]'zYk[ |rb|.9+WfOc\W-~6gօ-t]m.vǾO ($uWQ1xPԭ!]k]λj[[ndDe*xSANQ^ |J.~? O:2Z\\Hr5Ķc$?GMW>: +ixrp]$t]ǵx/K_N_s㯈^~mY]8$@~pSL^,7b"<0-}ik 6$QE@``8L Zcurseur_normal.png"Vadd.png(9bornes.png<[curseur_deplacer.png*(;[quitter.png, JFIF``C     C   '3" }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz JFIF``C     C   ``" }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr $4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz ?MOT%/$6T Oa^'||C,qi JO0 Qs?^xw1K}S̽[ 5;q#&Ut5>#Ǚ&#QxTWZ֗*>)U}[o}_2)ѧyVw['y2mQqj>z_ #v oL%n.<_9Ǩ־ai"ѴY'Ȟ؅9R'IzG{Oo ʝ|a&'+f{$B[eJjޑ#_[g _L@|(g}`"?Jh_ZU=NyjV, ~"gXeBp#$9@^FGJbK%Εt{7WЎz9|Qn^Mr[&o-w!>FݍtSyh>TNl7uWi]vnXxů0SW.chma?cq^Mg?iP]> ˥e<{ vfxޑ$ujznduʼl\^/xzp_S>ſgPefl!rO޿BJyxm-,*F~@^xZ=mP-ֵq5ԌzW1?*>$Mo[S`s^Xl7~~{Fw}J>U_Cѫ2GŠZ[c]06;/\?rO7W[?U-~kCӚWY!|6λǣ6׹ȎdyZ@Cz`Wsr_}do † j2MWM?mkqFV*؜8#iO.l6p$ndcrkȿj/ďvM]*d.{{}@+e9ut27u]Qdrv.}{B6ujVuer$Q=c__Χaζv8r zJ?dHn$/ krǩ3?Rso"~]>R3vfMO {~L N-2n/7j޶K!UyU17u6xkWVٌv.<\~T><BJO_xP4U\ƌok3w? |2S~Hx)'m_\@%wY!L^m۱{: E>7.Ğd&kip E3=E~w 0࿈Z}X v-b\O*Zx&kC/]b[)ݩ&=_x oEtCKozab?Yp}#޽WŴ6<Ѯ4jf=gQ~5zGyo[eF3kfDWR[|?[?1o‘)S[^.q^O+<ޣxTѼ=bLSʪ>~<:\jZrU65$] _d|$Sf>b+.C0}I?]M7L.-uB+BW쓣l[\N$ n\O:K?/1hSշWYk;iQŸ"_^U$cMY M߼jw1β?)7j^IY_{O|,v_U:|.o Au Mcm`gYȝgw?O>+V/ѭ?)gBuuf~?mU.d֣uD^-eޜ[O~'Ήx?nY|>! c].{~f?&-{^L?jO=_ோhmnŚw-<1_o E#ŘFwFI5ε8|`hvI>/{DYzo+pn|sgvZxg q>☬яO?MGg V]*)ݥ|0|R"xoMKPu)R@HJ! +h-+MJmPk\X_n@\W owka@G$d֬'|@wV,uR/t$Qo>\pۭ`7%ry:NMjw:~gf?`h28cg?X7#ҷm, O&zښ\.~Ē{,Rgc:U79xIfTZ_2'yGLܺ[>O xD>"ɩŦEy8SLcpw.H8  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr $4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz ?N+{t]d/Q.<)Q8 ٣`cBkz^iHAڣT"<9m-HNEj >6kCqKtk[?7[%R8YP){~hܶj7g#?^j_b!{-nDeimFzGxϮx]4o[K*!Y8^ܕ>!gCH?Z2NJG{5u륞x,=\63Օ?|1 s τ'6"0^GnW~3?qgQo@iz q|0^1h<4.glmd<,v<֤ R?[e+15n"xy&_.W{?WNwkkvo+N5 Ag. t[o XxV/ykKO1:z|`nop9zVxKQּG5iɧ۰{fMI> #[?K?ڶs4vvyiw"8lªK|J >B8|B¨{-o EJFIF``C     C   " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr $4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz ?S.o|pԼ_:Sڴv4k dGr~~־#xX|b%TZ='BЁ `voGM̴-<_ :"QC>ȔQ?̎٘}I``ׁ?Nџq??2SgnL  JFIF``C     C   " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr $4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz ?|Sg;hcVsN7 "#\~.6 ou{kg4JB `d3^AuOBӿl|QiU>c~j꺌߈ xG¯kWUeys8i B0#!jWa6j>€ϧLem B c7|:Žc.nS\M(P‹-8P~4՝ˬMpːd3Hr1EP 2 JFIF``C     C   ``" }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr $4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz ?>/-<+K^0TeHƸ_>WfQpE_>޾/Qs{߂?^,l/+R]g/+U9<U)izy?O}xsy_ߥ?}oy_ߥqM7>eaFϿ>}~_*l7>sZ_Xo??O?~ky_ߥ?xky_ߥsL7>ea"KKWy6 Kyu0@>Y}EFVe8μK ʝg}Gh.?<-|n}Ex=O4_W?iC)vD|_P?vou=8!? f&MS>0ѿ/c)5ߵs5"њ>I_Lcpc_b_EVuq&NSY^; F'Sw][n?KX,䑎 ' wfoᦎq,2H"8.K}hަ~\⎑qd-ʊySYOhʝ} N,Lu,r"/?FMǽ!sTu_Qz\J~d׸mYhX|ZCq^z$ŚAbp]5k@'$2SR2ަj5F澱wx_x8k\u/lF}$OWF޾g\I+/{ѕQ~'8sf;_T3sZW,` K!ªI޾`>.Bs&sS+O=kЯ nl̛&c!zuyψq)dJs}j/_"-e?*=f//58@LiW'ՇOn{޼)6~&}fTd (۫]<׼TUkT[r1BDž?#{.zw8 xxĚ/!Zgǐ@&b) 1iP- <1,D~5 }s(vBkj,W+v_&w,|?jZ%Ə\\Xay!X1\~|,XPOZQ6%:y9^#`9:J^zK|;+q_qΧw(+4wS0jS$fkvsM"ы_w-vDylΟ{_T?WTofݕe G< a?]->M3*NBdw>_ ,m⹝݁s\e{q_ .+ԭw⏡2bc VuCVU[i"i8k)$cQn}| /?5ه_^WZm/d|^c Mf 7WjO K5Л[qo+J?U#|m;+o"0$7VpQw ӥtޙa=2};SK)'=A'ɪYj?m𦸃byxu᾿/T50Zj9YO.TU)|2{5ӦoÚ7P6!:Ͻy, f(V+Fmu4n0ϫB9^l MZ*)6 \c=}*#SH*8 .5g&Rm&W78=k_ټYXE~{_٠MX'ˋ>ܟiZ\SlMxޒCROF^I8ٍ7H7M7n)޽;FRz7qr#L~Yޚn=\diCsn3ސr#K>/1t#nn}Z'>Sn .*SoY@'RO ~+l.2?د֭OJQ c=At,6^}Lǖ( fzҒi[Kwo}Sq|Cjq|JW| _ S<;?:>>U~l?5@>Sy~~X`j)?U~l?5@>Sy}GsW?5 _ _GתvCS_/Ƴ+]>rǀ6WWϧk ^6+OF l kNX`Ak 筈d&+Qmko# JFIF``C     C   1121 3141&a      !"#$%'()*+,-./0123456789:;<=>?ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmopqrstvwxyz{|}~" }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr $4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz ?/"GtMCUY//cNe2G4L([l/H$ Zf%<3ܛ~]>WDe|c|I?^tң6I$,JD<ٞ}86_¯M4\x{mKSMH,h@$Wspߵ?kMxq&u+  SEei#*r8xk3?`o :|'Jnk1g ~_ .|ȥHse['2x<1O=#kEv?lWNKrqhX{E$CGmKRg5U@0rv'$I(? JFIF``C     C   " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr $4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz ? WH%WoyuiW2DC\WO)k6>{"[=>YYNQasAм{npcG u%M ͇'5x"wlT;uf$o~P~_ uoMTͨ; E3n(+ y"⿅_\k$-Ŕҵh7D0IžOM1*xd6Qѯη/dM,ֿOâW -@bz #l+TQpۿWtgzΥ%yhr_FtIt;Ars@ş U'Ë}mEjDet9 s둒:׋|Q𦙠m/OZK [H49` ErۃÑ|1~ :?9?ir ?l?l&U?ii0] Ly{/>2ִ>ww_-Df ,@68r3~;LǏR5- @b`vNp=?51@D 61up7181 8 JFIF``C     C   R`" }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr $4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz ?*^7"tBM5:.ůZǫ^Tdg/wG=b-aՍ=xiUΟMgl*ڮ3ŖzcݪؑN{yVص X9iw-j˫={ 3&;wVص Xhx\趬o lG|ΞދM񝞼<lJ|PςME" &m Lf6My?_jG'vui#^2B;@3k>0 L,mc.=_ ??z? to3m L'Οgjw#?)g<>Let-4Z 8?j+ÿ??& іյ\e׃<>?[{{!^q4xk_%ƿ&qڱ7si8}<>Yt-1XXNAq~g,5<U5އ5./JOg[> 7A x>/*Z?- cZxTo#S ˏg]bׅ7|Yd~UL볬_ ??zgI5/ogI_a黾i12k[OOї4y"M3u|Amt<=gX|Amt>iOϝ/?*O7G~LU@eԾ LEw}2ce3Vϝ/?*O7EZ_x]jڠ3r:-t99|A~M 3-lk_%ƿ&qڀ>Rnj@UuMTZB`|ޗXJλ]3y'z( /M|EAO$2~ $oOqL袀45? x ]wS͗y'oz(@ru">npo$Z_ڟIQEf\xĶ Iik/j'Ex u k܄Nz{5+k)o$PJ<keyboard.png<kJenregistrerImage.png.Rnfonctions.png. 0Kgo&return.png4 0!*logoLogiciel.png$ ;Kloop.png& 6pause.png$ 6play.png&RjQprint.png2equadrillage.png(O dJFIF``C     C   @@" }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr $4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz ?S(o+DS&oi!@,Dz'ھ-{Lx1{V8&KEou}BaUK 6|=e7q๢%s7^bO[㥮4mQtS*xC:|Y}.e)KRXW ↛59{8RF q V$»xB"vH5 ]CnSAUd>?eq " g`LV¨O7V?/H G!u. Os6x{i:l~\0DnljFID~N$+mD.' 2p95s %5vi k;x xM=[ž2Ԭ/3)V6Dg,1,N125k7j~ C{K7?t`n` ?W> j>\:哋[Se}@f k`|]u|{IVH+rd Q0_U]-)0J]:hZͯ+/7 քgslc W-xo: 5MlPMi;NQʟ]`?`C,@8ig I}xźkwVb]Re!InK~QxWS= ?Q|j񯉾 Aww)ع_le1!A.7~ Z~\#7Q>3ǜFH!<>_O 5?u}JpȬq`py|%#M_K [хttd`UyWQnu[ۉn.$if˼,ǒI$i]wO"Wax<+G&C!v ?W{] Mf*3"%v)t (  `V-!=)h,1/M;\6Ũ٨2쬇Ta'+߰/-H4};đ+`5[i9M}YjGA wZ 98B7uf||G@|dY𝎖> p3M}āqi|B_d𖁨~)4?9QoF"Vә-zl >*> ؙ 5ٟ|c;~_ :vK*g;2WW;]&oHa~ >#x+]4fk BB=<3Ko"sZKxV[uH , N"eB5~~2\Mƚkka#XYLzo-Cu\WyW.O b~.ƧZ7'Q&݋xfo# y>P\v(Y? k[mfF^C gti17͕Z!??;U>_>,xN~Z[ƩoЖ[88V :+`9? Z? ~5xBԼ>"qr d̕%bNX7bf0ת3֯~Egion5 ffc噘ܱ5wZת@Q@Q@U'ɬ|3Fkkʿd5&hC zQEQEQMw>POSoto!ZNX7bf0תEP  JFIF``C     C   _`" }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr $4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz ?SK*»ʰ]ڸ|/oH٬]jzEXSJn] e伬rk5QEDzNBCU/%k+j)bD>~GBU]ڪ&8K5~i ,~nHni.t{[j4D@WXZw-Z+[%P/zZ^ȯAOUym%QaWxF9|E^xnv1+tx z7w?Fֶ-kHZGЄ+I'~'K{7ia txR]w ֩?4xFѮ<1s6v^;X9@9F$cSo :}I.\BN6׮z澃/թN-No=_nOڏ7e{,u+x'LUEVRV ÂyTDž<@NFl/!1\#ۜg}Uҿ{YY*R]ok/<ܿ_X]%4 'NkѶhR17Cz~6֖rҰf<Bc/ߍ>W_887n:InqcpZ լM(0nYu\H+*xGBxm5,kX;k)5ſЌ]O?/ď?zLkIwpBH%f:g_|I>+|!FTP0@5ZOZKլو70HsZЕ<--crRSw}*[,(%|UrpI`O.?eeǫ߂cKkvAUFI>zpAWfup2^Oڷc?fx+Úk:~['+IixY]iq?u*:s{sX ܽj–-cۉW@}+b,(6%BL<.Oּ>mSGxxB=++mM-a&a{Ҵ"nOB)ViqE =⼶{[wZL.QCҷl> B۔p~H49k} d8u27,6s\{x-wj}ST[JrǁlLO'ox 2F2rjCT[5 v; 'NC4\x9c}r_ui6?sSH$uo +gyڗ׾/jmͣxN%OɇP{`,~KZ'FNĹ ?+ u_7{|7֭^lr;&dOL Wr+⧇T si!mPÆh((ēʋ$l0 q\Ï1fӖ??Jh=>y[-A/N!A]9?j@\C{m-I<HPF A !n'hxZPd9XnF~o,1Y!F,ԴZ,l0P: ml<>?j6 j_dt8eG_∟̽򿷗/x~9o4AOɺ 6UR+nwEt mR:(UQwIgnpz2oq9WRx~MOT&؞??Y |n(ٵǧx06!/i?C@=:(((( D=G~"MCH˚$UՇ*2 AW,jퟠ5ƣ {U^ <)GAf[Mjhtmnc ܎@twV^m#w֑LIHXr? ZSZ+HY=cV+K3~sn[lwvWj27L>Ԛӹv(0(/TܻaBOL^]8&u$a!=O_Pψw/c'}# ?ҴӭEڨVg-t!̌K3ǩ4t Zz%K}^Per*F]/"rJ7=> W[1Ub mpBe4>xb*WŇ9E(O 1QIW[gdv~#3,:ktm;\?3E'rczO iFiN[zl)ÜA8&ktSP˔\[Z2RJHgD ؎SVV?.у`֭bjQEygN# Kף,z[ikwVvGt7Ǡ'5~jZD`vÂOSO7OƯj^iۛ+OUƧié־BK?CwZxʸjQUNGQ~ŽD!tŽD!uzQzWGWaOou? >5 N 5DHc"YSʜwD,l1*WGzW'K!8#?kTu')(.Hf7|Q]`.ՠ㑆8 [ՑQExA}gLۮl(Kr8U;-ϭzep1$7 hʽ{{7}r,w  Q"?29-.KG5ݭSYM a$!*~LƟ/ӯf7]ˏ>! e`;^.|sk-^X>W^ ꌧ`x (b(( _nKH00F~9B+~P^0>}ksK]Xq6W]uGSlJ^A(N W'Qtk7<5 [5mI-$ 9 @dF1k|i~k%[bf)\,C[Fce# }>sZ6^l~x{AY.eo?Rnu>id?F;remove.png<4tableauDeValeurs.png4zoom-in-icon.png6zoom-out-icon.pngzegrapher-2.0.orig/src/icons/remove.png0000644000175000017500000000475311736077246020432 0ustar georgeskgeorgeskPNG  IHDR@@iq pHYs  tEXtSoftwareAdobe ImageReadyqe< xIDATxZ[lTEEej4b$xIT%(OZ#m@FcF &P[h#&RR)jo$vosji9ggCHdKdKdKdK? TZkXVs,4&k?KHaJaK\~%YX`ymd'y]@;JNsи֕A" _T 쀈z?3U Räv7wޙ,..&OV>&4D^W RG?Hz&Iy`fTy|1anht}uqܡs#d[{iꦡOLc/<c!9&~cd{ʼn S4UԎA  qhN|w@;f- v0 0 0@UYʏfi\#)nN"HK 'L!0 hCSqS]{֧:&0| sx2ys߾}KgLuy6O1'›ёa2/7(|3JZ@*;nEDSYpꏎ$`L VLjXS7x-qL6"R@X|y!\xK=7B _atuL0 xYtMݩZō "\I6>&-* . Q+<ǧT3PdמV2 N3A]$H n}aL_s- KG 2%{;())))RVD^M:$!Ycq+(U =alllK+ɗ,+*@ -ܦ8ǽH]lG ,$WN $N999sT$.ۧ:GFIaQOjP[Wq{fN'"ۣwS 2!NMX,;Kh!\XmxBTh3z{mJ/P:6bC!P2Ps2 @EG.@ wbm.8|{DHgGsxWr&gϝ;Y~h Ig3JZv6] mY(31"eGm~_Ϲ恀"fJ3BYWQ\9~o&$j;* &hinlU(Ngz䏢}umLE~oSrhX-&NfQAAP 0Tuk83aȊ+xɯY `IhfW-|pph 29ZhGԓtTtd(e| kOIެ|%72MW&'/ iGXedHBV,N^5'+xU7E"EEX}e2.FX:JZbҾ9b'M Dmll0|V26lbn3('.I@;XEIWvhph3TSdSjxП6bIlcQcãBƐC- LL559¹1 F=|gC6\#K8~kW'.Ǐ3Ў!lR2H8vK3&j:d油i`4*˟|J\?7 3ߖ.2$]Q!g< [ZKQ`P{,S%}¡>~_ȴ~tD^ `z1LJDOǪ5;72(@m3F'o˘f`c>:Q@\2aBgLٝ@S&@jA=i)$*S'41͚G'SR6#I^N@~)jt쭢-hu S9 <1;]81{_?O77Xe)ƥ?",sFy49ƚvsw71p3>^@` JdL ?.ռ;(]G+ RԈɃ7LJo[<^J+)c)]ߞs~0RԐ=^h3_J)ݎlq1cÃKTBOۗ@ZCߌ'4_cfdۇ]en0Io+%fc%GYZ `4Wkg7_DF&XaL)jdio #FO+sܹ sfhޙ<V-THW!c#B$ 祃>k8@2aᕴocْ-ْ-ْ-Y`R-{mIENDB`zegrapher-2.0.orig/src/icons/go&return.png0000644000175000017500000000044611767114516021037 0ustar georgeskgeorgeskPNG  IHDRw=tEXtSoftwareAdobe ImageReadyqe<IDATxb`4@̏O8|0Q,<'c8# p}BAI| 'AȆǧEDȂh'b?C9E0@5iVaH6 p3phQ pPB@%hT\OE~'',BNJӏȾ@ Zjkp IENDB`zegrapher-2.0.orig/src/icons/keyboard.png0000644000175000017500000000352211736077764020733 0ustar georgeskgeorgeskPNG  IHDR3'psRGBbKGD pHYs  tIME|IDATXY]lTEPvw}l6*R5&ÚQR`"hB/FA5JK! 0!Q*OPH|- s|s{wo{gΝ9ߜss w~}t)$"^D "Zpo`4/?"@ Oj@"o`ߥ08]bj4@ڛ}3vwƊ!W Wx! k%Ӓ.XX0=uck/L07$? O~1&Tvi Qsw1;3=uRL&DBZp4j-s,0Y#ϝxh5m qv2Z~0?OMp!iWW'{{{U $ĹS)220촣[⪹!S4dѴ9G͕*fI:VNAA4 6pD6g\ \6 ڦYK*J˂tK+$KHfH>ןAQ>^~OZ?F= Jթ48Y`@c:x"<,o)X,|>_Rib-R}$cs`b8nuF݃tSn $!N}tT#vnOg^eܽ\U<)ijo Hz8ltu4ț!s FGw?kA<߳ dxCTdPJ3rlInQ(Ț%PPpC'!ȊdqX kfrbS s}ΜBПdut~whء^iPw?u~K틹lѸSU,HC³iS`z$b(ЀD"+/[`$3X51K떕TMaj>y\& Kx \`̂ՑaMB D6m+03i=CeңeTϤEKPUP35=ܻ&tv :_ O.`WAJ5bk><ٲb6k.6R06Rj)*.%u\^#q!=1I 5,S3UvllM1'H ^Gә@amg{JWr` p;M[3liŝ+%q0_}oвh,}e0Td.K_b9i4$3. *s1xagAMAܲ IDATx{]eykߓI&!L%[CPZiȥ@ʧhڣ=ڣQOksăVEH rI&e?z~׻޵{~Y Zqᅝmuh^iA3C6x9!L -K i)MDR.ԡC<{]{ YPADĢ8-i@}uuוJۖZ~_LvP2]SCȠש5Qeϵv(D@Dkӏ~C=ג}X|GJ21F@j}`sd=k:Їh\ArP1V@V`ln:"Rިt"҇L-v>ϋ[;S{ov&(PT(O?nlƏ|5\hhhm4LB6(8 l-䐶55}6Z[i"QWL+O?wA,&*ꍥ/lRs33dȦRA+ Iulh!U)DxD1/`6B'ʤČBljk4A8s'\}Ŧ(} )i`hymi6LɲK%RǎCJ^&KN]=NǕ8!- Z:P4^ZF@x>bcX^bxBW!\dH Ų9O,E##hN(7;֭v?34R$CL a@d^Ѐ`iRIP|e'5Lu7 ,C؈1:;I$$h_R7Zǖwwo>)Y\ؘ|03PE`6=JhBJX2qʅ0 iK%cc$r {4ߟ{"Q@$t;ޱnv8va:&"rUfB5QG$ aBdi^+`Ja@ꔰ_(ĊOϓE޸/[p;+ys> e70 "dvG00 005Ż?1NZ̆fzׯwz^|1?iJ&=`C9q"ItBBsHۇhj@=U@PmcdhrN~#!emi6`89Ⱦ fa8vW$N: WJgs?>&G!]hnBLB `'I hT&^>ce#̀| BP{urjk"%u\K/xudE _ʘVX*A~Xz9Nûv;l ݰ,`laޯp!img {ܻtƶS5=MKKNK/ `w08qd)ܲsYejKHP02]R6gƘ9|zǜI". amyT5$*9z\0I tXAqb"؎녵T *M0Է@:md>Mza3##>U/ɾgB;}PGjD804 ~r]+R&rr/_I*'T?]o{59qukn_©ɷQ IH51P凥 P ض%&G䓝:Nm0T6X|!ٰ8"J5$scWi.@X)$er]榧tMjARZ8_Cw٨CUլڤpPD 1770@OO^PigB1QV2je8@ WK P5'B+}4&Qڶ6\pB:3U$1tG1lF3x~ՐU u!̌񨗉*Qt,r"JUMˆ[3 MRW_W2(WWLSG\v>OTβ|>:ƭ\I1JP*r1 J;s"\t>O[c#4u9䇙JBfM}vdbhLHCZgʚt.Lg6u57ӻx1]--6g51!Ric/)ȆY KV,3m fjTdfBFiFggIr`Y4DO[MM09D,@Y[nŽ޳Ɂ~s^޷Xx1u޽a/ڀO|(x{5Y6VbP1 YYkñW^a7=~::Xh):> p!0?A dY~Ywq?}~9$C"u{ɫ w6*eHi?:7G$o}+nrޛn'੻  - 00>%~YOBߺgm/ș==,p52D6K=CFPzuVEز)ffnw3\|1?c:Z@YgUdy}.޶Lu==fNݟ }>Sf}PI BEETʷՁR9[Qq|x|R?җ"/︃i7_0P )C/^:H.CO7u˖U=+.|8V̘o9.5p=E?<b#5(}3.V61|2EkI-"F -MMeODrvy ׯ8KR䃞H&  *xw6a~QW HU*1cǼ(K>Hf քB?md9;? v|_'dݖ6 &3dw[VO~W)k,fץ@d2=`XBxz&/? 4g^{-]vFȏ1u䩅Sd6̻=7HOtI,&!FF|VI%sMǽ\.GHCW}[R2LSvBǶ4_۶ag2n97Dzbu?1C̷,Y J$H$$X} p1Twq|ǎ}wmdw_`ed^zcwAn;o'(^?~'XV"A% bBnaluԸfYNZ~mg?g?h>-]ijtH.4#<駟W_Z{zffp/w/]LO&$ΕH@rHEHjQ3lamKk}N|p-dM}7tƵ2X(w/ gO qbHB|fYw F~8`85 6Jj_HVr C/xavD+,3= |}P 0y,Vn-4c B8aBqG]szTk_Bh`%\ɅY k WBI߀Z@5u*¨¡  t]~9fN"\e;I>'аh6RuDX&95 J)K_ u{tM0[]W·?u+bnjO:$ԓe{o좁ո!T |K.NiP?XgI NU!3j##>PMַҴf5v;0>iy_<‘H{1&n`غiOל\ȪyeFo7BU"Bm|Xx5UI`T]ᰒ8BX'w$̶A4wU f9}طmS`Z@_a29B~[5սk4CƻOC`ibP,@ꀩ>Ae^@>/ij.;~eTǴ}!`DW(U]7@MX !ߋ4꒤QCu5 CaVӏ=VU? Nk{M~F|C\BA+DQ$ݸbDi4䓡ɕ?u\v:wD2 YxZ* ~oܼ"@`;Q~V+ZBS`rnJ33ƍ26ff뿦0<YN3OQ:~<aȲm =KR&E;oM@k|I&˶:D?}NImΑo&8a_CRԟ>xK]2`|1hlqxWW9́e+e.ޜQ_S)&o}e˨_0aZ? 9Ȇy<rgD߯;g_o"@x>11_Y rC8UJ_-?NWڔL}̅hy g v(myK&[HȷqfF0lD FG܁/|%EsPy-]aԲ>}1^&Cy4*h==RL3k0ؓf t5C84iٞ P"D GmY %,h[Zuǽ)RE0^CKg8Ç!ɢzʽ4 (RluO4'zyU9V5Ld"S?i1=Mq`;50oUf ACUg49' lن0CÀIcJ{_%z:" _n}o,C-"8vMטoYؖEq&OX$4 j_Ե-)[aZnb2h7J:_Z(=U[ یՒEU'r/@p,D瞫@ڵUN[x-M.߆kfw/^ 0_g7%ja>Px꘯] U "(,@(4(0h"j hmkHveaOOc ff++` uvJ̤K%TULg=TK'=,ű1D*l1v;ɩTO Hʎ'u"J[ !̫V=W]%̚ :'vm()MNR8xIcK2i2HV)y,~AiK@o1 Bqj|y[oe47:jsv^K9EdRɿAD7A?09"^xhoOX$ Na%$I#l؈GJQ~-3.->V/@S"R0C33t1; Fڟ(C.'~WU^8H zxm6#UE #b}SRS,bRp0DZGBpy_I-w͍3?59O4G }0>0pbW[f@6c5 saխ2Cʚf)84n-G_⢴_)lT?5i?@(eO<Ӡ^D< *XưFf?${HMr'>A(_)gg)S8v&&@0ܨOSVqx66 fHY* (] MfȶmU@Cg'92.ËCC(ML8GE_ǵF~v-XPYS_߾cnO'3}w,gS-%1+_`׹r֭If}^ 7DG9_F3)@ 0'|5(40iYy''9կ26z-l9#҅ Cs2b--8s?@5]Q澻33 Hp& U -UR ED(\;ut;lymsfc7 C5hAW)GlAٻQ21ÛTXE.GI3]jq~;+4+i-[( 02B0D860.`8sY?~~<篢6,XT4W=NnpZ}-\Kd8F&a=ā4pD@wzv=wV/ &BMj}b IDATe ũk~ NF!O\TdA!Ƨƽ~Ib&.&@k3_H I/85+_#W4wu;hۼ!U- sk8 6mb?̯}橞Jgcx3:vƥ\b `A @S;w#eeZy3;vбy3`Ng J㦝,~!Z6]|3﹎FD.e.Cl ƙF S뎲( l`Bмz5oշFqj;/ݳ0gоaEۆ >7SUI}qeβo}(IqMb6֎Z-uu}u1rWGu]]\w=oBRGd~nPtp(aY (C3r=1sQ1[C%GxG1a[\ 7Gѡ-[8ukZ~{h oG*<3R[>wJO\$07}-[(s7D*Eocį4Q#>THoPs{={j?o U:=43ã_?g\p V?sި"A-]Ջ?WoJ؝w5kr?cld O!Cd9:KT<=5ZF_+dvyPLp-S7JG#apA%;jGFTR;9xJ&~u ג橈U`l!@$k@'f@5dٝ;9e .Zo'kt z|SW1ѿ t! wV9Zo[{bJW\Z[Z_/25N(*MM1u+[Ұz57вy3Zʵ?InGP2wEC^]e yI,_)K>җ &dUlǯ +1}= hX hܰ^WqpSSˢGi/Sxe##oiT9Iw 6\w6:J׆ zXHơ(޾=tvy 1FQyQ(yZ`/nc|J<Gƍ$Y _oFX4P{3h^jٲ|mP?3`)ayݹrK2  ia&)ABGȕ$P/(#klx[@KҼj瞋ȏF ZL?=_Py< ~ɕ|s?wW+)<@3){vܥ g!=̪$h= :=, ;FrQ`tG ߽D*YNikiJ;>c0Ggq߸`pϷ2`u ɳogۭ-dc{ #o̲|FFVtQ B}G=F R|ͣ LBҕL %$bYdb87N(0 8WCE=Ќ_zKꓫu,O[Ժsu-hEGihT8yr6%"U=Ls$ eZ(y 9c3#0_A֏g~{/@IGGKk1йmQەd#EnQ75Y|ע`S@3k^Rr^?JrzOBˏHa']iI?@r?'?;pހo\ę Hv֒;:/Î,Pa/t2 ;Z!͑i¦S|KQW{&y̗N8[s.˿ㆳ-C;x Cgp]:}`2x)8_;pPݭMu z:Ȁ< |Z$2 ec|U a[{v4xWc0oG\iїa{Nh{M8}%L& :( @;4 F=` 2D_,g( @ʽẊwQ v q gpC)'v\e~Gg9+~ 0Gpբ)LT&UMSZI+#aj(&M tBrIWP-sdz\uo4#;AH2DY _VTE2G> MOPe7~.D : ϏtA,O z0IENDB`zegrapher-2.0.orig/src/funccalculator.cpp0000644000175000017500000001762212105437153021010 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #include "funccalculator.h" static double fipart(double x) { if(x < 0) { return ceil(x); } else { return floor(x); } } static double tenPower(double x) { return pow(10, x); } FuncCalculator::FuncCalculator(int id, QString funcName, QWidget *parent) : treeCreator(FUNCTION) { funcTree = NULL; funcNum = id; isExprValidated = areCalledFuncsGood = areIntegrationPointsGood = isParametric = calledFuncsAlreadyChecked = false; name = funcName; parentWidget = parent; addRefFuncsPointers(); drawState = true; for(short i = 0 ; i < 6 ; i++) { Point pt; pt.x = 0; pt.y = 0; integrationPoints << pt; } } void FuncCalculator::setColorSaver(ColorSaver *colsaver) { colorSaver = colsaver; } void FuncCalculator::setIntegrationPointsList(QList list) { integrationPoints = list; } ColorSaver* FuncCalculator::getColorSaver() { return colorSaver; } void FuncCalculator::addRefFuncsPointers() { refFuncs << acos << asin << atan << cos << sin << tan << sqrt << log10 << log << fabs << exp << floor << ceil << cosh << sinh << tanh << tenPower << tenPower; //tenPower must figure two times for e and E } bool FuncCalculator::getDrawState() { return drawState && isFuncValid(); } bool FuncCalculator::validateExpression(QString expr) { if(expression != expr) { if(funcTree != NULL) treeCreator.deleteFastTree(funcTree); funcTree = treeCreator.getTreeFromExpr(expr, isExprValidated); expression = expr; integrationPoints.clear(); } calledFuncsAlreadyChecked = false; return isExprValidated; } void FuncCalculator::setFuncsPointers(QList otherFuncs) { funcCalculatorsList = otherFuncs; } unsigned long int_pow(unsigned long a, unsigned long b) { while(b > 1) { a *= a; b--; } return a; } double FuncCalculator::getAntiderivativeValue(double b, Point A, double k_val) { double nDiv = fipart(fabs(A.x - b) * 100); Point pt1, pt2; double newIntegral = 0, oldIntegral = 1, pos; double precision = tenPower(-NUM_PREC); while(fabs(newIntegral - oldIntegral) > precision) { oldIntegral = newIntegral; newIntegral = 0; pos = 1; pt1.x = A.x; pt1.y = getFuncValue(pt1.x, k_val); pt2.x = A.x + (b - A.x)/nDiv; pt2.y = getFuncValue(pt2.x, k_val); while(pos <= nDiv) { newIntegral += (pt2.x - pt1.x)*(pt2.y + pt1.y)/2; pos++; pt1 = pt2; pt2.x = A.x + pos*(b - A.x)/nDiv; pt2.y = getFuncValue(pt2.x, k_val); } } newIntegral += A.y; return newIntegral; } double FuncCalculator::getFuncValue(double x, double kValue) { k = kValue; return calculateFromTree(funcTree, x); } void FuncCalculator::setDrawState(bool draw) { drawState = draw; } double FuncCalculator::getDerivativeValue(double x, double k_val) { k = k_val; double y1, y2, y3, y4, a; y1 = getFuncValue(x - 2*EPSILON, k); y2 = 8*getFuncValue(x - EPSILON, k); y3 = 8*getFuncValue(x + EPSILON, k); y4 = getFuncValue(x + 2*EPSILON, k); a = (y1 - y2 + y3 - y4)/(12*EPSILON); return a; } void FuncCalculator::setIntegrationPointsValidity(bool state) { areIntegrationPointsGood = state; } bool FuncCalculator::checkFuncCallingInclusions() { if(!isExprValidated || !areIntegrationPointsGood) return false; if(!calledFuncsAlreadyChecked) { calledFuncsAlreadyChecked = true; QList calledFuncs = treeCreator.getCalledFuncs(expression); areCalledFuncsGood = !calledFuncs.contains(funcNum); if(!areCalledFuncsGood) return false; for(int i = 0; i < calledFuncs.size() && areCalledFuncsGood; i++) { areCalledFuncsGood = funcCalculatorsList[calledFuncs[i]]->canBeCalled(); if(areCalledFuncsGood) areCalledFuncsGood = funcCalculatorsList[calledFuncs[i]]->checkFuncCallingInclusions(); } if(!areCalledFuncsGood) // this function calls another function, that is wether invalid or calls back the firs function QMessageBox::warning(parentWidget, tr("Erreur"), tr("La fonction ") + name + tr(" appelle une autre fonction invalide, ou qui forme une boucle d'appel infine.")); } return areCalledFuncsGood; } void FuncCalculator::setParametric(bool state) { isParametric = state; } bool FuncCalculator::isFuncParametric() { return isParametric; } bool FuncCalculator::isFuncValid() { return isExprValidated && areCalledFuncsGood && areIntegrationPointsGood; } void FuncCalculator::setInvalid() { isExprValidated = false; } Range FuncCalculator::getParametricRange() { return kRange; } void FuncCalculator::setParametricRange(Range range) { kRange = range; } bool FuncCalculator::canBeCalled() { return isExprValidated && areIntegrationPointsGood && areCalledFuncsGood; } double FuncCalculator::calculateFromTree(FastTree *tree, double x) { if(tree->type == NOMBRE ) { return *tree->value; } else if(tree->type == VAR_X || tree->type == VAR_T) { return x; } else if(tree->type == PAR_K) { return k; } else if(tree->type == PLUS) { return calculateFromTree(tree->left, x) + calculateFromTree(tree->right, x); } else if(tree->type == MINUS) { return calculateFromTree(tree->left, x) - calculateFromTree(tree->right, x); } else if(tree->type == MULTIPLY) { return calculateFromTree(tree->left, x) * calculateFromTree(tree->right, x); } else if(tree->type == DIVIDE) { return calculateFromTree(tree->left, x) / calculateFromTree(tree->right, x); } else if(tree->type == POW) { return pow(calculateFromTree(tree->left, x), calculateFromTree(tree->right, x)); } else if(REF_FUNC_START <= tree->type && tree->type <= REF_FUNC_END) { return (*refFuncs[tree->type - REF_FUNC_START])(calculateFromTree(tree->right, x)); } else if(FUNC_START <= tree->type && tree->type <= FUNC_END) { int id = tree->type - FUNC_START; return funcCalculatorsList[id]->getFuncValue(calculateFromTree(tree->right, x), k); } else if(DERIV_START <= tree->type && tree->type <= DERIV_END) { int id = tree->type - DERIV_START; return funcCalculatorsList[id]->getDerivativeValue(calculateFromTree(tree->right, x), k); } else if(INTEGRATION_FUNC_START <= tree->type && tree->type <= INTEGRATION_FUNC_END) { int id = tree->type - INTEGRATION_FUNC_START; return funcCalculatorsList[id]->getAntiderivativeValue(calculateFromTree(tree->right, x), integrationPoints[id]); } else if(CONST_Pi_NAMES_START <= tree->type && tree->type <= CONST_Pi_NAMES_END) { return M_PI; } else return NAN; } zegrapher-2.0.orig/src/fenetrefonctions.h0000644000175000017500000000467012105437153021022 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #ifndef FENETREFONCTIONS_H #define FENETREFONCTIONS_H #include "informations.h" #include "funcwidget.h" #include "seqwidget.h" #include "pareqcontroller.h" namespace Ui { class FenetreFonctions; } class FenetreFonctions : public QWidget { Q_OBJECT public: explicit FenetreFonctions(Informations *info); ~FenetreFonctions(); public slots: void validateFunctions(); void validateSequences(); void validateLines(); void validateParametricEquations(); signals: void displayKeyboard(); protected slots: void setInfoClass(Informations *info); void keyboardButtonClicked(); void newFuncParametricState(); void newSeqParametricState(); void draw(); void addTangent(); void removeTangent(TangentWidget *widget); void addStraightline(); void removeStraightline(StraightLineWidget *widget); void addParEq(); void removeParEq(ParEqWidget *widget); protected: void addFunctions(); void addSequences(); private: Informations *informations; Ui::FenetreFonctions *ui; QList funcNames; QList seqNames; QList funcCalcs; QList seqCalcs; QList funcWidgets; QList seqWidgets; QList antiderivatives; ParEqController *parEqController; QList tangentWidgets; QList straightlineWidgets; QList parEqWidgets; }; #endif // FENETREFONCTIONS_H zegrapher-2.0.orig/src/ZeGrapher.pro0000644000175000017500000000430412105437231017676 0ustar georgeskgeorgesk#------------------------------------------------- # # Project created by QtCreator 2011-03-25T16:51:48 # #------------------------------------------------- QT += core gui TARGET = ZeGrapher TEMPLATE = app TRANSLATIONS = ZeGrapher_en.ts CONFIG += separate_debug_info SOURCES += main.cpp\ fenetrebornes.cpp \ fenetrefonctions.cpp \ fenetreoptions.cpp \ apropos.cpp \ fentableauvaleurs.cpp \ imagesave.cpp \ print.cpp \ printpreview.cpp \ imagepreview.cpp \ zegrapher.cpp \ informations.cpp \ keyboard.cpp \ integrationwidget.cpp \ pareqwidget.cpp \ valuestable.cpp \ valuestableconf.cpp \ functable.cpp \ seqtable.cpp \ abstracttable.cpp \ pareqtable.cpp \ funcwidget.cpp \ seqwidget.cpp \ treecreator.cpp \ funccalculator.cpp \ seqcalculator.cpp \ abstractfuncwidget.cpp \ parconfwidget.cpp \ qcolorbutton.cpp \ exprcalculator.cpp \ tangentwidget.cpp \ straightlinewidget.cpp \ graphdraw.cpp \ funcvaluessaver.cpp \ colorsaver.cpp \ maingraph.cpp \ pareqcontroller.cpp HEADERS += \ Structures.h \ fenetrebornes.h \ fenetrefonctions.h \ fenetreoptions.h \ apropos.h \ fentableauvaleurs.h \ imagesave.h \ print.h \ printpreview.h \ imagepreview.h \ zegrapher.h \ informations.h \ keyboard.h \ integrationwidget.h \ pareqwidget.h \ valuestable.h \ valuestableconf.h \ functable.h \ seqtable.h \ abstracttable.h \ pareqtable.h \ funcwidget.h \ seqwidget.h \ treecreator.h \ funccalculator.h \ calculusdefines.h \ seqcalculator.h \ abstractfuncwidget.h \ parconfwidget.h \ qcolorbutton.h \ exprcalculator.h \ tangentwidget.h \ straightlinewidget.h \ graphdraw.h \ funcvaluessaver.h \ colorsaver.h \ maingraph.h \ pareqcontroller.h FORMS += \ fenetrebornes.ui \ fenetrefonctions.ui \ fenetreoptions.ui \ apropos.ui \ imagesave.ui \ print.ui \ keyboard.ui RESOURCES += \ ressources.qrc RC_FILE += \ ressources.rc OTHER_FILES += zegrapher-2.0.orig/src/print.ui0000644000175000017500000007342411757745260017011 0ustar georgeskgeorgesk Print 0 0 562 522 Imprimer :/icons/print.png:/icons/print.png 300 16777215 Paramètres globaux: QFormLayout::AllNonFixedFieldsGrow Nombre de copies : 16777215 25 1 1 Orientation: 16777215 25 Portrait Paysage Coloration : 16777215 25 Couleur Niveaux de gris 1 Imprimer Résolution: 0 Celle de l'écran true Prédifinie: false 16777215 25 ppp 50 400 100 100 Impression: 0 sur une feuille true 25 25 25 25 90 16777215 Imprimante : 16777215 25 0 dans un fichier (PDF, PostScript) 25 25 25 25 false 16777215 25 true false 25 25 ... Graphique Qt::Horizontal 40 20 Précision : 16777215 25 2 8 8 Qt::Horizontal 40 20 Taille du graphique: false QFormLayout::AllNonFixedFieldsGrow 4 Hauteur 16777215 25 cm 10.000000000000000 28.699999999999999 28.699999999999999 16777215 25 cm 10.000000000000000 20.000000000000000 20.000000000000000 Largeur Échelle: true false 75 16777215 Abscisses: 16777215 25 cm/unité 0.500000000000000 20.000000000000000 1.000000000000000 75 16777215 Ordonées: 16777215 25 cm/unité 0.500000000000000 20.000000000000000 1.000000000000000 Repère non orthonormal Légendes Légendes Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop true false 0 Abscisses : 16777215 25 Ordonnées : 16777215 25 5 Qt::Horizontal 40 20 30 30 font-weight: bold; B true 30 30 font-style: italic; I true 30 30 text-decoration: underline; S true Qt::Horizontal 40 20 5 Taille de police : 16777215 25 10 22 12 Qt::Vertical 20 40 Qt::Horizontal 40 20 Imprimer Qt::Horizontal 40 20 Qt::Vertical 20 40 true 0 0 236 502 CustomRes toggled(bool) resolution setEnabled(bool) 121 363 341 362 inPaper toggled(bool) label setEnabled(bool) 110 180 120 196 inPaper toggled(bool) printer setEnabled(bool) 179 174 219 195 inPDF toggled(bool) PDFname setEnabled(bool) 78 235 99 257 inPDF toggled(bool) chooseLocation setEnabled(bool) 285 232 330 250 zegrapher-2.0.orig/src/tangentwidget.h0000644000175000017500000000467212105437153020315 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #ifndef TANGENTWIDGET_H #define TANGENTWIDGET_H #include "Structures.h" #include "qcolorbutton.h" #include "funccalculator.h" #include "exprcalculator.h" #include "funcwidget.h" class TangentWidget : public QWidget { Q_OBJECT public: explicit TangentWidget(int id, QList calcsList, QList list); void calculateTangentPoints(double xUnit, double yUnit); void resizeTangent(double dx, double side); void changeID(int id); void move(double newPos); void validate(); QColor getColor(); bool isTangentValid(); TangentPoints getCaracteristicPoints(); signals: void removeMe(TangentWidget *widget); void drawStateChanged(); void returnPressed(); protected slots: void resetPalette(); void emitRemoveMeSignal(); void newFuncChoosen(int funcNum); void newFuncParState(int funcNum); void kValueLineEdited(); protected: void addWidgets(); QList funcCalculators; QList funcWidgets; ExprCalculator *exprCalculator; QPalette validPalette, neutralPalette, invalidPalette; QCheckBox *drawCheckBox; QLabel *nameLabel, *kTextLabel; QComboBox *functionsComboBox; QLineEdit *tangentPos, *slopeLineEdit, *ordinateAtOriginLineEdit, *kValueLineEdit; QColorButton *colorButton; QStringList funcNames; TangentPoints tangentPoints; double lenght, pos, a, k, raty, ratx; int tangentID, funcID; bool isValid; }; #endif // TANGENTWIDGET_H zegrapher-2.0.orig/src/imagesave.h0000644000175000017500000000316212105437153017403 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #ifndef IMAGESAVE_H #define IMAGESAVE_H #include #include "Structures.h" #include "imagepreview.h" namespace Ui { class ImageSave; } class ImageSave : public QWidget { Q_OBJECT public: explicit ImageSave(Informations *info); ~ImageSave(); public slots: void setSize(int W, int H); void setWindow(GraphRange fenetre); void setPrecision(short prec); void setW(int W); void setH(int H); void save(); private: Ui::ImageSave *ui; QWidget *previewWindow; int largeur, hauteur; GraphRange window; short precision; ImagePreview *scene; QFileDialog fileDialog; }; #endif // IMAGESAVE_H zegrapher-2.0.orig/src/pareqcontroller.cpp0000644000175000017500000000430212105437153021206 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #include "pareqcontroller.h" ParEqController::ParEqController(QList *list) { parEqs = list; freq = INIT_FREQ; period = INIT_INCR_PERIOD; ratio = (double)(1000/freq)/(double)(period); animationTimer.setInterval(1000/INIT_FREQ); connect(&animationTimer, SIGNAL(timeout()), this, SLOT(nextAnimationFrame())); animationTimer.start(); } void ParEqController::nextAnimationFrame() { bool update = false; for(int i = 0; i < parEqs->size(); i++) { if(parEqs->at(i)->isAnimated() && parEqs->at(i)->isPlaying()) { parEqs->at(i)->nextFrame(); update = true; } } if(update) emit animationUpdate(); } void ParEqController::newParEqAdded() { parEqs->last()->setRatio(ratio); } void ParEqController::updateRatioInParEq() { for(int i = 0; i < parEqs->size(); i++) { parEqs->at(i)->setRatio(ratio); } } void ParEqController::setUpdateFreq(int Hz) { freq = Hz; ratio = (double)(1000/freq)/(double)(period); animationTimer.setInterval(1000/Hz); updateRatioInParEq(); } void ParEqController::setIncrPeriod(int msecs) { period = msecs; ratio = (double)(1000/freq)/(double)(period); updateRatioInParEq(); } zegrapher-2.0.orig/src/abstracttable.h0000644000175000017500000000272712105437153020263 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #ifndef ABSTRACTTABLE_H #define ABSTRACTTABLE_H #include "Structures.h" class AbstractTable : public QWidget { Q_OBJECT public: explicit AbstractTable(QWidget *parent = 0); ~AbstractTable(); signals: void previous(); protected slots: protected: QTableView *tableView; QStandardItemModel *model; QSpinBox *precision; QLabel *title; QWidget *k_parameter_widget; QLineEdit *k_value; QTimer *updateTimer; QFont boldFont; double k; }; #endif // ABSTRACTTABLE_H zegrapher-2.0.orig/src/fenetrebornes.h0000644000175000017500000000321112105437153020276 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #ifndef FENETREBORNES_H #define FENETREBORNES_H #include "Structures.h" #include "informations.h" #include "exprcalculator.h" namespace Ui { class FenetreBornes; } class FenetreBornes : public QWidget { Q_OBJECT public: explicit FenetreBornes(Informations *info); ~FenetreBornes(); public slots: void updateWidgets(); private slots: void standardView(); void orthonormal(bool state); void appliquer(); signals: void nouvelleFenetre(GraphRange fenetre); void orthonormalBasis(bool state); private: Informations *informations; Ui::FenetreBornes *ui; QMessageBox *messageBox; ExprCalculator *calculator; }; #endif // FENETREBORNES_H zegrapher-2.0.orig/src/zgrapher.ui0000644000175000017500000000371311634621564017463 0ustar georgeskgeorgesk MainWindow 0 0 697 490 MainWindow 0 0 697 25 TopToolBarArea false zegrapher-2.0.orig/src/functable.h0000644000175000017500000000337012105436167017412 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #ifndef FUNCTABLE_H #define FUNCTABLE_H #include "abstracttable.h" #include "informations.h" #include "exprcalculator.h" class FuncTable : public AbstractTable { Q_OBJECT public: explicit FuncTable(Informations *info); void setTableParameters(ValuesTableParameters par); protected slots: void cellEdited(QStandardItem *item); void kValueEdited(); void updateTable(); void precisionEdited(); protected: void fillFromRange(); void emptyCellsFill(); void add_x_values(); void add_y_values(); Informations *informations; FuncCalculator *func; ValuesTableParameters parameters; QList xValues, yValues; ExprCalculator *exprCalc; bool disableCellEdit; QPalette validPalette, invalidPalette; }; #endif // FUNCTABLE_H zegrapher-2.0.orig/src/pareqtable.h0000644000175000017500000000326512105437153017566 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #ifndef PAREQTALE_H #define PAREQTALE_H #include "abstracttable.h" #include "informations.h" class ParEqTable : public AbstractTable { Q_OBJECT public: explicit ParEqTable(Informations *info); void setTableParameters(ValuesTableParameters par); protected slots: void cellEdited(QStandardItem *item); void kValueEdited(); void updateTable(); void precisionEdited(); protected: void fillFromRange(); void emptyCellsFill(); void fillWithValues(); Informations *informations; ParEqWidget *parEq; ValuesTableParameters parameters; ParEqValues parEqValues; ExprCalculator *exprCalc; bool disableCellEdit; QPalette validPalette, invalidPalette; }; #endif // PAREQTALE_H zegrapher-2.0.orig/src/calculusdefines.h0000644000175000017500000000470012105437153020612 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #ifndef CALCULUSDEFINES_H #define CALCULUSDEFINES_H #include #define OP_LOW 0 #define OP_HIGH 1 #define POW 2 #define FONC 3 #define PTHO 4 #define PTHF 5 #define NOMBRE 6 #define VAR 7 #define VARS_START 8 #define VAR_X 8 #define VAR_T 9 #define VAR_N 10 #define PAR_K 11 #define CONST_Pi_NAMES_START 12 #define CONST_Pi_NAMES_END 15 #define PLUS 16 #define MINUS 17 #define MULTIPLY 18 #define DIVIDE 19 #define SEQUENCES_START 20 #define SEQ_U 20 #define SEQ_V 21 #define SEQ_L 22 #define SEQ_W 23 #define SEQ_Q 24 #define SEQ_Z 25 #define SEQUENCES_END 25 #define INTEGRATION_FUNC_START 29 #define INTGR_F 29 #define INTGR_G 30 #define INTGR_H 31 #define INTGR_P 32 #define INTGR_R 33 #define INTGR_M 34 #define INTEGRATION_FUNC_END 34 #define DERIV_START 400 #define DERIV_F 400 #define DERIV_G 401 #define DERIV_H 402 #define DERIV_P 403 #define DERIV_R 404 #define DERIV_M 405 #define DERIV_END 405 #define FUNC_START 406 #define FUNC_F 406 #define FUNC_G 407 #define FUNC_H 408 #define FUNC_P 409 #define FUNC_R 410 #define FUNC_M 411 #define FUNC_END 411 #define REF_FUNC_START 412 #define ACOS 412 #define ASIN 413 #define ATAN 414 #define COS 415 #define SIN 416 #define TAN 417 #define SQRT 418 #define LOG 419 #define LN 420 #define ABS 421 #define EXP 422 #define FLOOR 423 #define CEIL 424 #define COSH 425 #define SINH 426 #define TANH 427 #define E 428 // E n = 10^n like 2E2 or 2e+2 or 2e2 = 2*10^2 #define e 429 // same as E #define REF_FUNC_END 429 #endif // CALCULUSDEFINES_H zegrapher-2.0.orig/src/imagepreview.h0000644000175000017500000000361112105437153020125 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #ifndef IMAGEPREVIEW_H #define IMAGEPREVIEW_H #include "graphdraw.h" class ImagePreview : public GraphDraw { Q_OBJECT public: explicit ImagePreview(Informations *info); QImage* drawImage(); public slots: void setlegendFontSize(int size); void setLegendState(bool show); void setXaxisLegend(QString legend); void setYaxisLegend(QString legend); void setBold(bool state); void setUnderline(bool state); void setItalic(bool state); void setNumPrec(int prec); protected: void paintEvent(QPaintEvent *event); void determinerCentreEtUnites(); void placerGraduations(); void drawAxes(); void paint(); void assignGraphSize(); void writeLegends(); int leftMargin, rightMargin, topMargin, bottomMargin, legendFontSize, additionalMargin, numPrec; QString xLegend, yLegend; bool legendState, bold, italic, underline; QTimer updateTimer; }; #endif // ImagePreview_H zegrapher-2.0.orig/src/treecreator.h0000644000175000017500000000351512105437153017763 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #ifndef TREECREATOR_H #define TREECREATOR_H #include "Structures.h" #include "calculusdefines.h" class TreeCreator { public: TreeCreator(short callingObjectType); FastTree* getTreeFromExpr(QString expr, bool &ok); QList getCalledFuncs(QString expr); QList getCalledSeqs(QString expr); void allow_k(bool state); void deleteFastTree(FastTree *tree); protected: bool check(QString formula); void insertMultiplySigns(QString &formule); void refreshAuthorizedVars(); FastTree* createFastTree(int debut, int fin); short funcType; QStringList refFunctions, functions, sequences, antiderivatives, derivatives, vars; QList operators; QList decompPriorites, decompTypes, operatorsPriority, operatorsTypes; QList decompValeurs; QList authorizedVars; QString pi; }; #endif // TREECREATOR_H zegrapher-2.0.orig/src/integrationwidget.h0000644000175000017500000000343012105437153021167 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #ifndef INTEGRATIONWIDGET_H #define INTEGRATIONWIDGET_H #include "Structures.h" #include "exprcalculator.h" class IntegrationWidget : public QGroupBox { Q_OBJECT public: explicit IntegrationWidget(int funcNum, QList funcsList); QList getIntegrationPoints(bool &ok); public slots: void updateWidgetsShownState(QString expr); protected slots: void assignNeutralPalette(QWidget *lineEdit); signals: void returnPressed(); protected: void addWidgetToList(QString name); QList containerWidgetsList; QList xList, yList; QList antiderivatives; ExprCalculator exprCalc; QPalette invalidPalette, validPalette, neutralPalette; QSignalMapper *signalMapper; QVBoxLayout *centralLayout; short Func; }; #endif // INTEGRATIONWIDGET_H zegrapher-2.0.orig/src/apropos.h0000644000175000017500000000232512105437153017125 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #ifndef APROPOS_H #define APROPOS_H #include "Structures.h" namespace Ui { class apropos; } class apropos : public QWidget { Q_OBJECT public: explicit apropos(QWidget *parent = 0); ~apropos(); private: Ui::apropos *ui; }; #endif // APROPOS_H zegrapher-2.0.orig/src/keyboard.cpp0000644000175000017500000001002312105437153017567 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #include "keyboard.h" #include "ui_keyboard.h" Keyboard::Keyboard(QWidget *parent) : QDialog(parent), ui(new Ui::Keyboard) { ui->setupUi(this); setWindowFlags(Qt::Tool); setAttribute(Qt::WA_X11DoNotAcceptFocus); keyboardButtons = new QSignalMapper(this); makeKeyboardConnects(); } void Keyboard::makeKeyboardConnects() { buttons << ui->abs << ui->acos << ui->asin << ui->atan << ui->ceil << ui->cos << ui->divide << ui->dot << ui->eight << ui->exp << ui->f << ui->five << ui->floor << ui->four << ui->g << ui->h << ui->ln << ui->log << ui->m << ui->minus << ui->multiply << ui->nine << ui->one << ui->p << ui->par_k << ui->pi << ui->plus << ui->power << ui->pthf << ui->ptho << ui->r << ui->seven << ui->sin << ui->six << ui->sqrt << ui->tan << ui->three << ui->two << ui->var_x << ui->zero << ui->cosh << ui->sinh << ui->tanh << ui->square << ui->var_n; for(short i = 0 ; i < buttons.size(); i++) { connect(buttons[i], SIGNAL(released()), keyboardButtons, SLOT(map())); keyboardButtons->setMapping(buttons[i], buttons[i]); } connect(keyboardButtons, SIGNAL(mapped(QWidget*)), this, SLOT(keyboardPressed(QWidget*))); connect(ui->derivative, SIGNAL(toggled(bool)), this, SLOT(changeFuncButtonsText())); connect(ui->function, SIGNAL(toggled(bool)), this, SLOT(changeFuncButtonsText())); connect(ui->antiderivative, SIGNAL(toggled(bool)), this, SLOT(changeFuncButtonsText())); connect(ui->remove, SIGNAL(released()), this, SLOT(removeChar())); connect(ui->clear, SIGNAL(released()), this, SLOT(clearLine())); } void Keyboard::changeFuncButtonsText() { if(ui->function->isChecked()) { ui->f->setText("f("); ui->g->setText("g("); ui->h->setText("h("); ui->p->setText("p("); ui->r->setText("r("); ui->m->setText("m("); } else if(ui->derivative->isChecked()) { ui->f->setText("f'("); ui->g->setText("g'("); ui->h->setText("h'("); ui->p->setText("p'("); ui->r->setText("r'("); ui->m->setText("m'("); } else { ui->f->setText("F("); ui->g->setText("G("); ui->h->setText("H("); ui->p->setText("P("); ui->r->setText("R("); ui->m->setText("M("); } } void Keyboard::removeChar() { QWidget *w = qApp->focusWidget(); if(w != NULL && w->inherits("QLineEdit")) { QLineEdit *lineEdit = qobject_cast(w); lineEdit->setText(lineEdit->text().remove(lineEdit->text().size()-1, 1)); } } void Keyboard::clearLine() { QWidget *w = qApp->focusWidget(); if(w != NULL && w->inherits("QLineEdit")) { QLineEdit *lineEdit = qobject_cast(w); lineEdit->clear(); } } void Keyboard::keyboardPressed(QWidget *widget) { QPushButton *button = qobject_cast(widget); QWidget *w = qApp->focusWidget(); if(w != NULL && w->inherits("QLineEdit")) qobject_cast(w)->insert(button->text()); } Keyboard::~Keyboard() { delete ui; } zegrapher-2.0.orig/src/pareqwidget.h0000644000175000017500000000772712105437153017771 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #ifndef PAREQWIDGET_H #define PAREQWIDGET_H #include #include "Structures.h" #include "parconfwidget.h" #include "funccalculator.h" #include "treecreator.h" #include "exprcalculator.h" #include "qcolorbutton.h" #include "colorsaver.h" class ParEqWidget : public QWidget { Q_OBJECT public: explicit ParEqWidget(int num, QList list); ~ParEqWidget(); int getCurrentKPos(); int getCurrentTPos(); bool is_t_Animated(); bool isAnimated(); bool getDrawState(); bool keepTracks(); bool isPlaying(); bool isValid(); bool isParEqParametric(); void apply(); void changeID(int newID); void nextFrame(); void setRatio(double r); ColorSaver* getColorSaver(); Range getKRange(); Range getTRange(double k = 0); ParEqValues getParEqValues(Range t_range, double k = 0); Point getPoint(double t, double k = 0); QList< QList >* getPointsList(); QList< QList >* getCurrentPolygon(); signals: void removeClicked(ParEqWidget *widget); void updateRequest(); void animationUpdateRequest(); void returnPressed(); protected slots: void emitRemoveSignal(); void playButtonClicked(); void animateTtoggled(bool checked); void animateKtoggled(bool checked); void set_tRange_parametric(bool parametric); void checkExpr(); void sliderMoved(int pos); void recalculatePointsList(); void loopFromStartToggled(); void loopRoundToggled(); protected: void createWidgets(); void addExprWidgets(); void addTConfWidgets(); void addKConfWidgets(); void addAnimationControllWidgets(); bool areIdentical(Range a, Range b); void updateAnimationSlider(); void calculatePointsList(); void nextFrameTchecked(); void nextFrameKchecked(); void checkXline(); void checkYline(); void updateTRange(double k); void updateKRange(); ParametricInfo getParInfo(bool &ok); QLineEdit *xLine, *yLine; QPushButton *play, *loopFromStart, *loopRound; QSlider *parSlider; QCheckBox *drawCheckBox; QLabel *parCharLabel,*parEqNameLabel; QLineEdit *parCurrentValLineEdit; QVBoxLayout *principalLayout; QWidget *animationControlWidget; ParConfWidget *tWidget, *kWidget; TreeCreator treeCreator; ExprCalculator *calculator; ColorSaver colorSaver; QColorButton *lastColorButton; QPalette validPalette, invalidPalette; int index, curvesNum_original, curvesNum_current, current_tPos, current_pos, current_kPos, tPos_end; bool valid, playState, is_t_range_parametric, are_expr_parametric, isParametric, isTRangeGood, isKRangeGood, isXExprGood, isYExprGood, hasSomethingChanged, blockAnimation; double current_t, current_k, ratio; short increment; QList< QList > currentPolygon; QList< QList > pointsList; QList funcCalcs; QString xExpr, yExpr; Range tRange, kRange; FastTree *xTree, *yTree; }; #endif // PAREQWIDGET_H zegrapher-2.0.orig/src/seqcalculator.cpp0000644000175000017500000003361212105437153020642 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #include "seqcalculator.h" static double fipart(double x) { if(x < 0) { return ceil(x); } else { return floor(x); } } static double tenPower(double x) { return pow(10, x); } SeqCalculator::SeqCalculator(int id, QString name, QWidget *parent) : treeCreator(SEQUENCE), firstValsTreeCreator(NORMAL_EXPR) { seqNum = id; isExprValidated = isValid = isKRangeValid = blockCalculatingFromTree = false; areFirstValsValidated = true; parentWidget = parent; nMin = kPos = 0; drawsNum = 1; custom_k = 0; k = 0; drawState = true; addRefFuncsPointers(); firstValsTreeCreator.allow_k(true); kRange.start = 0; kRange.step = 1; kRange.end = 0.5; seqsNames << "(un)" << "(vn)" << "(ln)" << "(wn)" << "(qn)" << "(zn)"; seqValues << QList(); seqName = name; } bool SeqCalculator::validateFirstValsExpr(QString expr) { if(firstValsExpr != expr) { firstValsExpr = expr; areFirstValsValidated = validateSeqFirstValsTrees(); seqValues.clear(); drawsNum = 1; if(!areFirstValsValidated) QMessageBox::warning(parentWidget, tr("Erreur"), tr("Erreur de syntaxe lors de la saisie des premiers termes de la suite ") + seqName + "\n" + tr("Note: ces termes doivent être séparés par des ';' ")); } return areFirstValsValidated; } bool SeqCalculator::validateSeqExpr(QString expr) { if(expr != expression) { expression = expr; drawsNum = 1; seqValues.clear(); if(seqTree != NULL) treeCreator.deleteFastTree(seqTree); seqTree = treeCreator.getTreeFromExpr(expr, isExprValidated); //if(!isExprValidated) // QMessageBox::warning(parentWidget, tr("Erreur"), tr("Erreur de syntaxe lors de la saisie de l'expression de la suite ") + seqName); } return isExprValidated; } void SeqCalculator::setDrawState(bool draw) { drawState = draw; } void SeqCalculator::setParametricInfo(bool parametric, Range parRange) { isParametric = parametric; kRange = parRange; drawsNum = fipart((kRange.end - kRange.start)/kRange.step) + 1; isKRangeValid = drawsNum > 0; if(isKRangeValid) updateSeqValuesSize(); } int SeqCalculator::getDrawsNum() { return drawsNum; } void SeqCalculator::set_nMin(int val) { nMin = val; } bool SeqCalculator::isSeqParametric() { return isParametric; } Range SeqCalculator::getKRange() { return kRange; } void SeqCalculator::setColorSaver(ColorSaver *colsaver) { colorSaver = colsaver; } ColorSaver* SeqCalculator::getColorSaver() { return colorSaver; } int SeqCalculator::get_nMin() { return nMin; } bool SeqCalculator::getDrawState() { return drawState && isSeqValid(); } bool SeqCalculator::isSeqValid() { return isExprValidated && areFirstValsValidated && isValid && isKRangeValid; } void SeqCalculator::setInvalid() { isExprValidated = false; } void SeqCalculator::setFuncsPointers(QList otherFuncs) { funcCalculatorsList = otherFuncs; } void SeqCalculator::setSeqsPointers(QList otherSeqs) { seqCalculatorsList = otherSeqs; } bool SeqCalculator::checkByCalculatingFirstValuesTrees() { if(!isExprValidated || !areFirstValsValidated) return false; isValid = calculateAndSaveFirstValuesTrees(); if(!isValid) { QMessageBox::warning(parentWidget, tr("Erreur"), tr("Erreur dans le calcul des premiers termes saisis pour la suite ") + seqName); } return isValid; } bool SeqCalculator::checkByCalculatingValues() { if(!isExprValidated || !areFirstValsValidated) return false; isValid = saveSeqValues(seqValues[0].size() + 10 + nMin); blockCalculatingFromTree = false; if(!isValid) { QMessageBox::warning(parentWidget, tr("Erreur"), tr("Erreur dans le calcul des premiers termes de la suite ") + seqName); } return isValid; } double SeqCalculator::getCustomSeqValue(double n, bool &ok, double k_value) { if(nMin > n || n > 100000) return NAN; double index = (k_value - kRange.start)/kRange.step; if(0 <= index && index < drawsNum && index == floor(index)) return getSeqValue(n, ok, index); if(custom_k != k_value) { custom_k = k_value; seqValues[drawsNum].clear(); } if(n-nMin >= seqValues[drawsNum].size()) ok = saveCustomSeqValues(n); if(!ok) return NAN; return seqValues[drawsNum][n-nMin]; } bool SeqCalculator::saveCustomSeqValues(double nMax) { if(blockCalculatingFromTree) { QMessageBox::critical(parentWidget, tr("Erreur"), tr("Erreur dans les appels entre deux suites. dont ") + seqName); return false; } blockCalculatingFromTree = true; if(nMax > 100000 + nMin) nMax = 100000 + nMin; double result; bool ok = true; kPos = drawsNum; k = custom_k; if(seqValues[kPos].size() == 0) { for(int i = 0; i < firstValsTrees.size(); i++) { result = calculateFromTree(firstValsTrees[i],i, ok); if(!ok) return false; seqValues[kPos] << result; } } for(int n = seqValues[kPos].size(); n <= nMax - nMin; n++) { result = calculateFromTree(seqTree, n, ok); if(!ok) return false; seqValues[kPos] << result; } blockCalculatingFromTree = false; return true; } double SeqCalculator::getSeqValue(double n, bool &ok, int index_k) { if(nMin > n || n > 100000) return NAN; if(n-nMin >= seqValues[0].size()) { ok = isValid = saveSeqValues(n); blockCalculatingFromTree = false; } if(!ok) return NAN; if(0 <= index_k && index_k < drawsNum) return seqValues[index_k][n-nMin]; else return NAN; } void SeqCalculator::updateSeqValuesSize() { int size = fipart((kRange.end - kRange.start)/kRange.step) + 2; for(int i = seqValues.size() ; i < size ; i++) seqValues << QList(); } bool SeqCalculator::saveSeqValues(double nMax) { if(blockCalculatingFromTree) { QMessageBox::critical(parentWidget, tr("Erreur"), tr("Erreur dans les appels entre deux suites, dont ") + seqName); return false; } blockCalculatingFromTree = true; bool ok = true; if(nMax > 100000 + nMin) nMax = 100000 + nMin; double result; k = kRange.start; for(kPos = 0; kPos < drawsNum; kPos++) { for(int n = seqValues[kPos].size(); n <= nMax - nMin; n++) { result = calculateFromTree(seqTree, n, ok); if(!ok) return false; seqValues[kPos] << result; } k += kRange.step; } return true; } bool SeqCalculator::calculateAndSaveFirstValuesTrees() { updateSeqValuesSize(); if(seqValues[0].size() >= firstValsTrees.size()) return true; bool ok = true; double result = 0; k = kRange.start; int savedKpos = kPos; for(kPos = 0; kPos < drawsNum; kPos++) { for(int i = 0; i < firstValsTrees.size(); i++) { result = calculateFromTree(firstValsTrees[i], 0, ok); if(!ok) return false; seqValues[kPos] << result; } k += kRange.step; } kPos = savedKpos; return true; } double SeqCalculator::calculateFromTree(FastTree *tree, double x, bool &ok) { if(!ok) return NAN; if(tree->type == NOMBRE ) { return *tree->value; } else if(tree->type == VAR_N) { return x; } else if(tree->type == PAR_K) { return k; } else if(tree->type == PLUS) { return calculateFromTree(tree->left, x, ok) + calculateFromTree(tree->right, x, ok); } else if(tree->type == MINUS) { return calculateFromTree(tree->left, x, ok) - calculateFromTree(tree->right, x, ok); } else if(tree->type == MULTIPLY) { return calculateFromTree(tree->left, x, ok) * calculateFromTree(tree->right, x, ok); } else if(tree->type == DIVIDE) { return calculateFromTree(tree->left, x, ok) / calculateFromTree(tree->right, x, ok); } else if(tree->type == POW) { return pow(calculateFromTree(tree->left, x, ok), calculateFromTree(tree->right, x, ok)); } else if(REF_FUNC_START <= tree->type && tree->type <= REF_FUNC_END) { return (*refFuncs[tree->type - REF_FUNC_START])(calculateFromTree(tree->right, x, ok)); } else if(FUNC_START <= tree->type && tree->type <= FUNC_END) { int id = tree->type - FUNC_START; return funcCalculatorsList[id]->getFuncValue(calculateFromTree(tree->right, x, ok), k); } else if(DERIV_START <= tree->type && tree->type <= DERIV_END) { int id = tree->type - DERIV_START; return funcCalculatorsList[id]->getDerivativeValue(calculateFromTree(tree->right, x, ok), k); } else if(tree->type == seqNum + SEQUENCES_START) { double asked_n = calculateFromTree(tree->right, x, ok); ok = verifyAskedTerm(asked_n); if(ok) return seqValues[kPos][asked_n]; else return NAN; } else if(SEQUENCES_START <= tree->type && tree->type <= SEQUENCES_END) { int id = tree->type - SEQUENCES_START; double asked_n = calculateFromTree(tree->right, x, ok); ok = verifyOtherSeqAskedTerm(asked_n, id); if(ok) return seqCalculatorsList[id]->getCustomSeqValue(asked_n, ok, k); else return NAN; } else if(CONST_Pi_NAMES_START <= tree->type && tree->type <= CONST_Pi_NAMES_END) { return M_PI; } else return NAN; } bool SeqCalculator::verifyAskedTerm(double n) { if(ceil(n) != n || n-nMin >= seqValues[kPos].size()) { QMessageBox::critical(parentWidget, QObject::tr("Erreur"), QObject::tr("Mauvaise relation de récurence saisie pour la suite ") + seqName); return false; } else if(n < nMin) { QMessageBox::critical(parentWidget, QObject::tr("Erreur"), QObject::tr("Nombre de premiers termes insuffisant pour la suite ") + seqName); return false; } else return true; } bool SeqCalculator::verifyOtherSeqAskedTerm(double n, int id) { if(ceil(n) != n) { QMessageBox::critical(parentWidget, QObject::tr("Erreur"), seqName + QObject::tr(" appelle ") + seqsNames[id] + QObject::tr(" avec un paramètre non entier.")); return false; } else if(n < nMin) { QMessageBox::critical(parentWidget, QObject::tr("Erreur"), seqName + QObject::tr(" demande un terme non existant de ") + seqsNames[id] + "\n" + QObject::tr("Le rang demandé étant plus petit que nmin")); return false; } else return true; } void SeqCalculator::addRefFuncsPointers() { refFuncs << acos << asin << atan << cos << sin << tan << sqrt << log10 << log << fabs << exp << floor << ceil << cosh << sinh << tanh << tenPower << tenPower; } bool SeqCalculator::check_called_funcs_and_seqs_validity() { isValid = check_called_funcs_validity(expression); if(!isValid) return false; isValid = check_called_funcs_validity(firstValsExpr); if(!isValid) return false; isValid = check_called_seqs_validity(expression); if(!isValid) return false; isValid = check_called_seqs_validity(firstValsExpr); if(!isValid) return false; return true; } bool SeqCalculator::check_called_funcs_validity(QString str) { QList calledFuncsList = treeCreator.getCalledFuncs(str); bool validity = true; for(int i = 0; i < calledFuncsList.size() && validity; i++) validity = funcCalculatorsList[calledFuncsList[i]]->canBeCalled(); return validity; } bool SeqCalculator::check_called_seqs_validity(QString str) { QList calledSeqsList = treeCreator.getCalledSeqs(str); bool validity = true; for(int i = 0; i < calledSeqsList.size() && validity; i++) validity = seqCalculatorsList[calledSeqsList[i]]->canBeCalled(); return validity; } bool SeqCalculator::canBeCalled() { return isExprValidated && areFirstValsValidated; } bool SeqCalculator::validateSeqFirstValsTrees() { deleteFirstValsTrees(); if(firstValsExpr.isEmpty()) return true; firstValsExpr.remove(" "); QString str; FastTree *tree; bool ok = true; int count = firstValsExpr.count(';') + 1; for(short i = 0; i < count; i++) { str = firstValsExpr.section(';', i, i); tree = treeCreator.getTreeFromExpr(str, ok); if(!ok) return false; firstValsTrees << tree; } return true; } void SeqCalculator::deleteFirstValsTrees() { for(int i = 0; i < firstValsTrees.size() ; i++) { firstValsTreeCreator.deleteFastTree(firstValsTrees[i]); } firstValsTrees.clear(); } zegrapher-2.0.orig/src/fenetreoptions.cpp0000644000175000017500000000755412105437153021052 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #include "fenetreoptions.h" #include "ui_fenetreoptions.h" FenetreOptions::FenetreOptions(Informations *info) { informations = info; ui = new Ui::fenetreoptions; ui->setupUi(this); setWindowIcon(QIcon(":/icons/logoLogiciel.png")); parametres.couleurDuFond = QColor(Qt::white); parametres.couleurDesAxes = QColor(Qt::black); parametres.couleurQuadrillage = QColor(Qt::gray); connect(ui->appliquer, SIGNAL(clicked()), this, SLOT(appliquer())); connect(ui->couleurAxes, SIGNAL(clicked()), this, SLOT(changerCouleurAxes())); connect(ui->couleurFond, SIGNAL(clicked()), this, SLOT(changerCouleurFond())); connect(ui->couleurQuadrillage, SIGNAL(clicked()), this, SLOT(changerCouleurQuadrillage())); } void FenetreOptions::appliquer() { if(parametres.couleurDesAxes == parametres.couleurDuFond) QMessageBox::warning(this, tr("Attention"), tr("Les couleurs du fond et des axes sont identiques")); else if(parametres.couleurDuFond == parametres.couleurQuadrillage) QMessageBox::warning(this, tr("Attention"), tr("Les couleurs du fond et du quadrillage sont identiques")); else { double dist = ui->distanceWidget->value(); parametres.lissage = ui->lissage->isChecked(); parametres.distanceEntrePoints = 0.5 * (10.25 - dist); parametres.epaisseurDesCourbes = ui->epaisseurWidget->value(); parametres.numSize = ui->numSize->value(); informations->setOptions(parametres); } } void FenetreOptions::changerCouleurAxes() { parametres.couleurDesAxes = QColorDialog::getColor(parametres.couleurDesAxes, this); ui->couleurAxes->setStyleSheet("background-color: rgb("+ QString::number(parametres.couleurDesAxes.red())+","+ QString::number(parametres.couleurDesAxes.green())+","+ QString::number(parametres.couleurDesAxes.blue())+")"); } void FenetreOptions::changerCouleurFond() { parametres.couleurDuFond = QColorDialog::getColor(parametres.couleurDuFond, this); ui->couleurFond->setStyleSheet("background-color: rgb("+ QString::number(parametres.couleurDuFond.red())+","+ QString::number(parametres.couleurDuFond.green())+","+ QString::number(parametres.couleurDuFond.blue())+")"); } void FenetreOptions::changerCouleurQuadrillage() { parametres.couleurQuadrillage = QColorDialog::getColor(parametres.couleurQuadrillage, this); ui->couleurQuadrillage->setStyleSheet("background-color: rgb("+ QString::number(parametres.couleurQuadrillage.red())+","+ QString::number(parametres.couleurQuadrillage.green())+","+ QString::number(parametres.couleurQuadrillage.blue())+")"); } FenetreOptions::~FenetreOptions() { delete ui; } zegrapher-2.0.orig/src/fenetreoptions.h0000644000175000017500000000315712105437153020512 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #ifndef FENETREOPTIONS_H #define FENETREOPTIONS_H #include "Structures.h" #include "informations.h" namespace Ui { class fenetreoptions; } class FenetreOptions : public QWidget { Q_OBJECT public: explicit FenetreOptions(Informations *info); ~FenetreOptions(); private slots: void appliquer(); void changerCouleurAxes(); void changerCouleurFond(); void changerCouleurQuadrillage(); signals: void optionsChangent(Options opt); void precisionChange(short prec); void nouveauTypeRendu(bool type); private: Informations *informations; Ui::fenetreoptions *ui; Options parametres; }; #endif // FENETREOPTIONS_H zegrapher-2.0.orig/src/integrationwidget.cpp0000644000175000017500000001041112105437153021517 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #include "integrationwidget.h" IntegrationWidget::IntegrationWidget(int funcNum, QList funcsList) : exprCalc(true, funcsList) { setTitle(tr("Conditions initiales:")); Func = funcNum; antiderivatives << "F(" << "G(" << "H(" << "P(" << "R(" << "M("; centralLayout = new QVBoxLayout(); centralLayout->setSpacing(2); centralLayout->setMargin(0); centralLayout->addSpacing(5); signalMapper = new QSignalMapper(this); connect(signalMapper, SIGNAL(mapped(QWidget*)), this, SLOT(assignNeutralPalette(QWidget*))); for(short i = 0; i < 6 ; i++) addWidgetToList(antiderivatives[i]); setLayout(centralLayout); QColor color; color.setNamedColor(VALID_COLOR); validPalette.setColor(QPalette::Base, color); color.setNamedColor(INVALID_COLOR); invalidPalette.setColor(QPalette::Base, color); } void IntegrationWidget::addWidgetToList(QString name) { QWidget *widget = new QWidget; QHBoxLayout *layout = new QHBoxLayout; layout->setSpacing(2); layout->setMargin(0); QLineEdit *xLineEdit = new QLineEdit(); xLineEdit->setFrame(false); xLineEdit->setMaximumHeight(25); connect(xLineEdit, SIGNAL(textChanged(QString)), signalMapper, SLOT(map())); signalMapper->setMapping(xLineEdit, xLineEdit); QLineEdit *yLineEdit = new QLineEdit; yLineEdit->setFrame(false); yLineEdit->setMaximumHeight(25); connect(yLineEdit, SIGNAL(textChanged(QString)), signalMapper, SLOT(map())); signalMapper->setMapping(yLineEdit, yLineEdit); QLabel *label1 = new QLabel(name); QLabel *label2 = new QLabel(") = "); layout->addWidget(label1); layout->addWidget(xLineEdit); layout->addWidget(label2); layout->addWidget(yLineEdit); connect(xLineEdit, SIGNAL(returnPressed()), this, SIGNAL(returnPressed())); connect(yLineEdit, SIGNAL(returnPressed()), this, SIGNAL(returnPressed())); widget->setLayout(layout); widget->hide(); centralLayout->addWidget(widget); containerWidgetsList << widget; xList << xLineEdit; yList << yLineEdit; } void IntegrationWidget::assignNeutralPalette(QWidget *lineEdit) { lineEdit->setPalette(neutralPalette); } void IntegrationWidget::updateWidgetsShownState(QString expr) { bool isOneShown = false, doesContain = false; for(int i = 0 ; i < containerWidgetsList.size(); i++) { if(i == Func) continue; doesContain = expr.contains(antiderivatives[i]); containerWidgetsList[i]->setShown(doesContain); isOneShown = isOneShown || doesContain; } setShown(isOneShown); } QList IntegrationWidget::getIntegrationPoints(bool &ok) { ok = true; Point point; QList list; if(isHidden()) return list; for(int i = 0 ; i < containerWidgetsList.size() && ok ; i++) { if(containerWidgetsList[i]->isHidden()) continue; point.x = exprCalc.calculateExpression(xList[i]->text(), ok); if(ok) xList[i]->setPalette(validPalette); else xList[i]->setPalette(invalidPalette); point.y = exprCalc.calculateExpression(yList[i]->text(), ok); if(ok) yList[i]->setPalette(validPalette); else yList[i]->setPalette(invalidPalette); if(ok) list << point; } return list; } zegrapher-2.0.orig/src/qrc_ressources.cpp0000644000175000017500000357723711752220254021064 0ustar georgeskgeorgesk/**************************************************************************** ** Resource object code ** ** Created: Tue May 8 19:33:32 2012 ** by: The Resource Compiler for Qt version 4.8.1 ** ** WARNING! All changes made in this file will be lost! *****************************************************************************/ #include static const unsigned char qt_resource_data[] = { // /home/Adel/ZeGrapher/ZeGrapher_en.qm 0x0,0x0,0x1d,0x21, 0x0, 0x0,0x64,0x39,0x78,0x9c,0xed,0x3c,0xb,0x74,0x5c,0x65,0x99,0x7f,0x5e,0x93,0xc9, 0x34,0x4d,0xda,0xd0,0x96,0xda,0x96,0xf6,0x36,0xb4,0x4d,0x52,0x92,0x4c,0xd2,0x94, 0x5a,0xa6,0x69,0x24,0xaf,0xbe,0x8,0x6d,0xda,0xa4,0x85,0xd4,0x82,0xdc,0xcc,0xdc, 0x99,0x5c,0x7a,0xe7,0xde,0xc9,0x7d,0xe4,0x51,0x7c,0x20,0xbe,0xaa,0x20,0xb2,0x82, 0xe2,0x3,0x15,0x1f,0xb8,0x84,0x83,0xca,0xe2,0x61,0x45,0x56,0xb,0x18,0x59,0x1e, 0x47,0xc5,0xdd,0x15,0x5d,0x3d,0x8a,0xf,0x74,0x17,0x75,0xd5,0xf5,0xa8,0xbb,0xa7, 0x9e,0xa,0xfb,0xfd,0xdf,0xff,0xdf,0xd7,0xcc,0x9d,0x9b,0xa4,0x5,0x76,0xd9,0x63, 0x73,0xd2,0x9b,0xb9,0xf3,0xff,0xdf,0xff,0xbd,0x5f,0xff,0x7f,0x6f,0xe7,0x83,0xa9, 0x95,0x4f,0xfd,0xee,0x8e,0xf,0x7c,0x73,0xfd,0x9a,0x87,0xaf,0xf9,0xe4,0x57,0x7f, 0xd4,0x43,0x48,0xe4,0x43,0x84,0x90,0x36,0xf8,0xdd,0x9,0xbf,0xed,0xf0,0x9b,0x62, 0xd7,0xc8,0x3a,0xb8,0x1e,0x27,0xa4,0x69,0x8,0xae,0x2a,0x5c,0xc7,0x9,0x29,0xbb, 0x14,0xee,0xc3,0x9c,0xea,0x7f,0x26,0xe4,0xa2,0xd5,0x84,0x2c,0xce,0xc1,0x35,0x41, 0xc8,0xa6,0x8f,0x11,0xb2,0xad,0x9e,0x90,0x86,0x29,0x42,0x2e,0x7c,0x1,0xc0,0xc1, 0xb8,0x8a,0x3f,0x3,0x98,0x1a,0xb8,0xff,0x51,0x52,0x3a,0x9,0xe3,0xb6,0x59,0xa4, 0xfc,0xbb,0xef,0x25,0x64,0xe5,0xf3,0xa4,0x62,0xec,0x5a,0x42,0xca,0x13,0x24,0xf2, 0x59,0x58,0xbb,0x69,0xb,0xa9,0xbc,0x73,0xf,0x21,0x9b,0xab,0x48,0xe5,0xdd,0xf4, 0x7a,0x19,0x5c,0x6f,0x83,0xeb,0x66,0x52,0x7b,0x3d,0xc0,0x58,0xd7,0x43,0x2e,0x78, 0x61,0x2d,0x21,0xaf,0xbb,0x8e,0xb4,0x7e,0xf8,0x1,0x42,0x2e,0x1e,0x22,0xdb,0x1f, 0xfb,0x5,0xac,0xbd,0x88,0x74,0x57,0x1e,0x86,0x35,0xcf,0x90,0x63,0x7f,0xfe,0x1a, 0x21,0x8d,0x5b,0x88,0xbc,0xe7,0x39,0x42,0xd6,0x9e,0x22,0xd7,0xfe,0xfe,0x19,0x42, 0xce,0xff,0x10,0x51,0x56,0x7e,0x9c,0x90,0x2d,0x17,0x93,0xbf,0x79,0xd3,0x72,0x18, 0x77,0x15,0xf9,0xc2,0xf8,0x53,0x84,0x5c,0xf0,0x75,0xf2,0xcd,0x83,0x2,0x21,0xab, 0xc6,0xc8,0x8f,0xef,0xd8,0x4c,0x48,0x49,0x25,0xf9,0xd5,0x47,0xaf,0x22,0x64,0xfd, 0x69,0xf2,0xdb,0x63,0x1f,0x21,0x64,0xc3,0x46,0x76,0xdd,0x76,0xaa,0x64,0xdd,0x8b, 0xc0,0x97,0xd7,0xfc,0xaa,0xa4,0xf5,0x99,0xcf,0x3,0x2d,0xf,0x94,0xf4,0xdf,0xc, 0x74,0x2d,0x3b,0x53,0xa2,0x2d,0xea,0x0,0x3a,0xee,0x28,0x19,0xbf,0x1,0xf0,0x59, 0x3a,0x58,0xf2,0xee,0x99,0x6b,0x0,0xde,0x73,0x25,0x5f,0x3c,0xd,0xbc,0x2a,0x3f, 0xc3,0xae,0x5b,0x1f,0x29,0xf9,0x9a,0xf4,0x17,0x80,0xfb,0xf6,0x92,0xdf,0xfc,0xe3, 0x23,0x84,0xac,0x6e,0x2e,0xf9,0xdd,0xd,0xb7,0x2,0x5d,0x4a,0xc9,0xe9,0xab,0x2a, 0x8,0xa9,0xfb,0x40,0x29,0xd2,0x57,0x1f,0x2f,0x5d,0x71,0x5b,0x92,0x90,0x63,0xef, 0x29,0x5d,0x77,0x4,0xf8,0x75,0xa4,0xbb,0xf4,0xc0,0x75,0xad,0xc0,0x43,0xb9,0xf4, 0x58,0xcf,0xaf,0x8,0xd9,0x71,0x57,0x69,0x96,0x0,0x8f,0x6b,0x57,0x97,0x4e,0xbc, 0x83,0x5e,0xef,0x2d,0x3d,0xf9,0xc3,0xf7,0x13,0x92,0xa8,0x2b,0xfd,0xdc,0xf9,0xff, 0x2,0xfc,0x3e,0x5c,0xd6,0xf0,0x83,0xab,0x9,0x69,0x6e,0x28,0xbb,0x68,0xf1,0xb7, 0x8,0xe9,0x7e,0xaa,0xec,0xe6,0x77,0xc2,0xfc,0x2b,0x67,0xca,0xde,0xb7,0xfc,0xdb, 0x84,0xac,0x39,0x55,0xbe,0x4f,0x0,0xfa,0x2b,0x57,0xb0,0x6b,0x7c,0x4f,0xf9,0x60, 0x1b,0xe0,0x7f,0x55,0x7b,0xf9,0xd0,0x7b,0x56,0x1,0x9c,0x99,0xf2,0xe9,0x8,0xf0, 0xef,0x92,0x7f,0x2b,0xff,0xe0,0x6d,0xb3,0xf0,0xfd,0x47,0xca,0xef,0x79,0x92,0xd2, 0x77,0x8c,0x5d,0xdb,0xaf,0x2b,0xff,0xd2,0x43,0xcf,0x2,0x3d,0x47,0xca,0xbf,0x7c, 0xcd,0x5d,0x40,0xef,0x87,0xcb,0x1f,0x1d,0x0,0xf8,0x5b,0xb4,0xf2,0x27,0x6f,0x82, 0x79,0x25,0xff,0xc0,0xae,0x95,0xdf,0x62,0xd7,0xf3,0x16,0xb3,0x6b,0xdb,0xf3,0xec, 0xba,0xfd,0x4f,0xec,0xda,0x1d,0x2b,0xff,0xc6,0xad,0x70,0x1d,0xba,0xa6,0xfc,0xcc, 0x5,0xc0,0xcf,0xd7,0x3e,0x53,0x31,0xfc,0x7a,0xc0,0xfb,0xd2,0x8b,0x2b,0x8e,0xdc, 0xfa,0x46,0x42,0x3a,0x96,0x57,0x5c,0xb1,0xf9,0x8b,0x84,0xbc,0x7e,0x5f,0x85,0x72, 0x1f,0xac,0xdb,0xf1,0xf6,0xa,0x73,0x3b,0xf0,0xa3,0xe5,0x8f,0x15,0xef,0xee,0x79, 0x33,0xc8,0x61,0x69,0xc5,0x27,0xef,0x1c,0x4,0xfe,0xaf,0xaa,0xf8,0xf4,0x1b,0xfe, 0x95,0x90,0xaa,0xd6,0x8a,0xbb,0xba,0x41,0x9e,0x3b,0x1f,0xac,0xb8,0xeb,0x45,0xfa, 0xf9,0xcb,0x15,0xf7,0xc6,0x0,0xff,0xb5,0x6f,0xad,0x78,0x70,0x1a,0xd6,0x59,0x77, 0x63,0xc5,0xd3,0xd7,0xfe,0x9,0xf0,0xfb,0x7d,0xc5,0xcf,0x3e,0x1,0xf2,0x2c,0x57, 0x23,0x4b,0xde,0x5,0xf2,0x2e,0x7b,0x57,0x64,0xe3,0x92,0x13,0x30,0x2f,0x11,0xd9, 0x77,0xef,0xcd,0xa0,0x17,0x8f,0x47,0xc4,0x17,0x41,0x6f,0xc8,0xd7,0x23,0xd7,0x45, 0xca,0x60,0xdd,0x3d,0xec,0x7a,0xf4,0xcd,0x91,0xb7,0x3e,0xb,0xfc,0xbe,0xe4,0xbe, 0xc8,0xc9,0xcb,0xee,0x3,0x9d,0xbf,0x23,0x72,0xd3,0x55,0xa5,0x84,0x2c,0xd9,0x1b, 0xb9,0xf9,0x5d,0xcf,0x13,0x12,0xbd,0x3d,0x72,0xf3,0xed,0xf4,0x4a,0x22,0xb7,0xdc, 0xfe,0xe,0x90,0xd3,0x7f,0x47,0x3e,0xfa,0x36,0x93,0x90,0xce,0xcd,0x91,0xbb,0x6f, 0xfb,0x1,0x7c,0x6e,0x88,0xcc,0x7c,0x1,0xf4,0xe2,0xbc,0x9e,0xc8,0x83,0x49,0x80, 0xb3,0xf1,0xab,0x91,0xc7,0x4f,0x7c,0x1f,0xf4,0xaa,0x37,0xf2,0xd4,0x4d,0x80,0x47, 0xed,0x73,0x91,0x6f,0x4d,0x81,0xdc,0x13,0x6a,0xe4,0xb7,0xdf,0x6,0x7d,0x8d,0x3f, 0x19,0xf9,0xaf,0x7b,0x80,0xbf,0x15,0x9f,0xa9,0x5c,0x51,0x65,0x81,0x1e,0x7e,0xaf, 0xf2,0x35,0x9d,0xc0,0xf7,0x96,0x6c,0x65,0xdb,0xec,0xfd,0x80,0xdf,0x8d,0xec,0x1a, 0xf9,0x29,0xbb,0x1e,0xdd,0x13,0xdd,0xb4,0x2,0xe4,0x10,0x49,0x47,0xb7,0x9c,0xe9, 0x25,0xa4,0xf4,0x85,0xe8,0x25,0xa5,0x30,0xff,0xe8,0xa9,0xe8,0xe5,0x8f,0x80,0x7e, 0xad,0xab,0x8c,0x6a,0xbb,0x2e,0x6,0xfc,0xd7,0x45,0xdf,0xfa,0xa7,0x53,0xc0,0xd7, 0x4f,0x47,0x6f,0xa8,0x4,0x7c,0xbb,0xb7,0x45,0x6f,0xd8,0x8,0xf4,0x95,0xff,0x7d, 0xf4,0xe4,0xdf,0x82,0x3e,0xaf,0x5d,0x1d,0x7d,0xef,0x93,0xc0,0x8f,0x8d,0x47,0xa2, 0x1f,0xb9,0x15,0xe6,0x35,0xbd,0x2f,0xfa,0xf1,0x1d,0xd4,0x1e,0x1e,0x8e,0x7e,0xe9, 0x27,0x40,0x57,0xd7,0x78,0xf4,0x91,0x87,0x40,0xdf,0xb6,0xbe,0x3f,0xfa,0x68,0x2, 0xec,0xfb,0xd2,0x2f,0x44,0x9f,0x7a,0xe2,0x21,0x18,0x5f,0x1f,0xfd,0xd1,0x8d,0xa0, 0xd7,0xcb,0xbf,0x1f,0xfd,0xcd,0x73,0x60,0xcf,0x9b,0x6e,0x60,0xd7,0x9d,0x13,0x55, 0xc2,0xc7,0x63,0x40,0xc7,0xa1,0xaa,0x23,0x57,0x53,0x7d,0x7f,0xac,0xea,0xf8,0xaf, 0x41,0xce,0x57,0xae,0xaf,0xca,0x7d,0xe5,0x10,0xd8,0xe9,0x13,0x55,0xe3,0xcf,0x0, 0xfe,0x8d,0x57,0x57,0xbd,0xf3,0x9b,0x40,0xd6,0x8a,0x87,0xaa,0x1e,0xfa,0x3,0xf8, 0x87,0xda,0xc1,0xaa,0x47,0x1b,0xc1,0x77,0x34,0x3f,0x55,0xf5,0xf8,0x25,0xc0,0xbf, 0xb2,0xef,0x57,0xfd,0x93,0x4,0xfa,0xfc,0xda,0xa6,0xaa,0x5f,0xd6,0x83,0x7c,0x17, 0x7d,0xaa,0xea,0x3f,0x4e,0x3,0x9e,0x5d,0x9f,0x8f,0xd5,0xfc,0x2,0xec,0x66,0xdb, 0x1f,0x62,0x8d,0xfb,0xc0,0x57,0x95,0x6a,0xb1,0xc6,0xa7,0x6f,0x0,0xb9,0xdc,0xc9, 0xae,0xd,0x4d,0xb1,0x8e,0xee,0xeb,0x9,0x11,0xde,0x11,0xdb,0x35,0xdc,0xf,0x7c, 0xbc,0x3a,0x76,0x6c,0x3d,0xf8,0x8f,0x91,0xaf,0xc4,0x94,0x66,0x3a,0xee,0x87,0xec, 0xba,0x7d,0x34,0xf6,0x16,0x61,0x4,0xe0,0x91,0xd8,0xa7,0xdf,0x0,0x7c,0x89,0xf5, 0xc5,0xee,0x7a,0x91,0x5e,0x9f,0x8e,0xdd,0x7f,0xb,0xc8,0xa7,0xf3,0x58,0xec,0xb1, 0xe7,0x7f,0xb,0xe3,0x57,0xb3,0x6b,0xfd,0x54,0xec,0xa7,0x7f,0x4,0xbe,0xb5,0x9f, 0x1f,0xfb,0x39,0xf5,0x2b,0x17,0xff,0x3b,0xbb,0xe,0xdd,0xb4,0xa8,0xae,0x16,0xc6, 0x6f,0x7a,0x62,0xd1,0x9b,0x4f,0x82,0x3c,0xeb,0x36,0x2d,0xfa,0x60,0xec,0x6d,0x60, 0x27,0xcf,0x2e,0xfa,0xc4,0x7d,0x67,0x0,0xce,0x2d,0x8b,0xbe,0x31,0x4d,0xf1,0xba, 0x7d,0xd1,0xf,0x4e,0x2,0x1f,0xba,0x7e,0x54,0x5d,0x96,0x1,0x7d,0x5a,0x77,0xaa, 0x3a,0x36,0x1,0x7c,0xdc,0xbe,0xa9,0xba,0xfa,0xbb,0x9d,0x30,0xee,0xd7,0xd5,0xcb, 0xea,0x80,0xce,0xea,0x75,0xd5,0xeb,0x3e,0x6,0x70,0x47,0x9a,0xab,0x3b,0x9f,0x5, 0xb9,0xd6,0xdf,0x5f,0xbd,0xff,0xd2,0xef,0x11,0x52,0xb3,0xba,0xfa,0x53,0x77,0x82, 0xbc,0x2f,0xbe,0xad,0xfa,0xae,0xef,0x80,0xfd,0xc,0x7d,0xbd,0xfa,0xe1,0xcc,0xa7, 0xe0,0x73,0x6d,0xf5,0x7f,0xae,0x7,0xb9,0xb7,0xde,0x58,0xfd,0xc7,0x25,0x20,0xaf, 0x4d,0xaf,0xad,0x3e,0x3d,0xb,0xfa,0x7e,0xc9,0x74,0xf5,0xe9,0xdf,0xc1,0xba,0xed, 0x97,0x2f,0x6e,0x7f,0xb2,0x8b,0x90,0x2b,0x3e,0xb3,0x38,0x7b,0xf7,0x3b,0x61,0xbd, 0xf7,0x2e,0x3e,0xf1,0x1c,0xcc,0x6f,0x5b,0xbb,0xf8,0xa6,0x5b,0x1,0x5e,0xe5,0xf1, 0xc5,0x9f,0x7c,0x23,0x5c,0xf,0x57,0x2d,0x3e,0xfd,0x28,0xe8,0xe9,0xfa,0xbd,0x35, 0x8b,0xe,0x83,0xbf,0xef,0xf8,0x62,0x4d,0xd3,0xe7,0xc0,0x5f,0x34,0x3d,0x51,0xb3, 0xeb,0x27,0x3a,0xf0,0xf1,0xb3,0xec,0xba,0xfd,0x89,0x9a,0x9b,0xee,0x5,0xb8,0x97, 0xc,0xd4,0x3c,0xbe,0x5,0xe4,0xb6,0xfa,0x81,0x9a,0x33,0x2f,0xd0,0x18,0x41,0x6a, 0x4b,0x57,0x81,0x9e,0xb5,0xfe,0xbc,0x76,0xc3,0x67,0x41,0x8e,0x17,0x8d,0xd4,0xbe, 0xee,0x81,0xc7,0xc0,0x4f,0xff,0x5d,0xed,0x6e,0x3,0xe4,0x54,0x32,0x50,0xfb,0x25, 0x3,0xf4,0x63,0xe3,0x5f,0xd8,0x35,0xf1,0xfb,0xda,0x87,0x7f,0xbc,0x1,0xe4,0x7a, 0xb4,0xf6,0x87,0x75,0xe7,0xc1,0xfd,0x93,0xec,0x9a,0xd8,0x59,0xfb,0xb3,0x55,0xfb, 0xc0,0x7e,0xae,0x92,0xc1,0x49,0x5d,0xf,0x1c,0x27,0x35,0x44,0x80,0xa8,0x24,0x93, 0xc,0xfc,0x9a,0xc4,0x88,0xd2,0xc5,0x22,0xf0,0x5b,0x25,0x24,0xc7,0xe4,0x74,0x5a, 0x97,0x8c,0x4a,0xf8,0xb4,0x74,0x97,0xa4,0xe,0x8b,0xa3,0x8a,0x24,0x5a,0x47,0x44, 0x45,0xb2,0x74,0xa3,0xa4,0xec,0x45,0xf8,0xe7,0xc,0x2f,0x69,0x9b,0xdf,0xb0,0xf6, 0x62,0xc3,0xe0,0x76,0x8c,0x74,0x93,0x1c,0xfc,0x28,0x64,0xda,0x45,0xa3,0x3b,0x97, 0x53,0xe4,0x71,0x4b,0xd2,0x43,0x26,0x56,0x93,0x5e,0x32,0x46,0x34,0xf8,0x31,0x88, 0xe4,0x4c,0x5d,0xda,0x3b,0xa6,0xc9,0x53,0x42,0x4a,0x32,0x84,0x9,0x36,0x38,0x4, 0xc4,0x4a,0x32,0x4,0xe4,0x8b,0x44,0x87,0xff,0x5,0x32,0x1,0x7f,0x29,0xc4,0x22, 0x12,0x49,0x38,0xe0,0x2a,0xfb,0x66,0x67,0x46,0x2d,0x33,0x11,0x2,0x64,0x33,0xe9, 0x87,0x68,0x6e,0xc2,0x34,0xdd,0x7,0xc4,0x80,0x4f,0x59,0xf8,0xa4,0xc2,0x27,0x7a, 0xcf,0x4b,0xe0,0xba,0x7e,0xd5,0xd4,0x25,0x5d,0x50,0x5c,0x34,0x85,0xac,0xa8,0x5a, 0x92,0xa2,0x48,0x59,0x49,0x35,0x43,0xf9,0xd5,0xf,0xb,0xe9,0x40,0xb6,0xee,0x80, 0x8b,0xf4,0xeb,0x3a,0xc,0x8,0x99,0xb5,0x15,0x28,0x9d,0x46,0x34,0x45,0x32,0x5, 0x88,0x49,0x36,0xc,0xf8,0x5b,0x86,0xfb,0x2,0x7c,0x33,0x6,0x7f,0x19,0xf8,0x1d, 0x1d,0xa7,0x7b,0xd0,0xdd,0xc0,0xe0,0x3,0x57,0x5,0x63,0x5a,0x35,0xc5,0x29,0x49, 0x48,0x89,0xaa,0x21,0x24,0x25,0xd3,0x94,0x4,0xc0,0x57,0x9f,0x9d,0x91,0x42,0x56, 0xef,0x9a,0xd7,0xea,0x12,0x5c,0x8d,0x20,0x79,0x38,0x78,0x5c,0x54,0x4,0xf,0x45, 0xe4,0x5c,0xa4,0xdf,0xa4,0x66,0x67,0x72,0xa2,0x1e,0xc6,0xc2,0xce,0x5,0xa1,0x23, 0x81,0x72,0x6,0x21,0xd3,0x30,0x37,0x32,0x96,0x90,0x13,0xc3,0xf4,0x6f,0x15,0x39, 0xe2,0x53,0x97,0x24,0x20,0x61,0x21,0x62,0xae,0x6,0xd6,0xed,0xd7,0xb2,0xa3,0xba, 0x44,0x97,0xe1,0x9a,0x12,0xa6,0x8c,0x1b,0x40,0x3b,0xb2,0x80,0xb0,0x9,0x4,0xa, 0x64,0x14,0xe0,0x4d,0x85,0xc0,0x3e,0x9f,0xc1,0x36,0x28,0xf0,0xa4,0x68,0x50,0x65, 0x94,0xc1,0x72,0xc2,0x16,0x88,0xa1,0xc9,0x50,0x9e,0xb8,0x60,0xca,0x7,0xc5,0xd0, 0x39,0x2b,0xc8,0x20,0xf0,0x56,0x2,0x14,0xa8,0x82,0xc9,0x80,0x8,0xe5,0xb1,0x3b, 0xbf,0x7a,0x10,0xf4,0x27,0x29,0x1b,0xb2,0xa6,0xa,0x61,0x70,0x96,0x71,0x38,0x29, 0xf8,0x4d,0xa3,0xa4,0xe0,0x6f,0x3f,0x14,0x10,0x7e,0x5a,0x56,0xe5,0x30,0xa6,0xaf, 0x25,0xc3,0xc0,0xf4,0x51,0x60,0x3b,0x95,0xb0,0x6,0x90,0x7c,0x56,0xeb,0x32,0x9e, 0xcf,0xf5,0x70,0x3e,0x54,0x94,0xfd,0xb6,0xd9,0xe4,0x79,0x1,0x8f,0x28,0xf9,0x4, 0x21,0xd5,0xc0,0x6d,0x26,0x8c,0xda,0x35,0x64,0x37,0x40,0x13,0x81,0xd3,0x63,0xa4, 0x1,0x45,0x18,0x84,0xe5,0x32,0x7,0xa6,0x25,0x64,0x74,0x31,0x37,0x46,0xdd,0xe6, 0xbc,0xbc,0x72,0x59,0x4b,0x3b,0xba,0xef,0xc5,0x30,0x50,0x2,0x6f,0xd4,0xa3,0xe9, 0xaa,0x14,0xec,0xba,0x43,0x87,0x94,0x6,0x83,0x41,0x3b,0xeb,0x44,0xb,0xd2,0x51, 0xe2,0x19,0x70,0x3,0x9d,0x80,0x7b,0x16,0xdd,0x1,0xd3,0xa1,0x4e,0x12,0xe7,0x77, 0xe8,0x5f,0xbe,0xb1,0xe,0xfc,0xb,0x3a,0xd,0x53,0xd7,0xd4,0x4c,0x57,0xa7,0x94, 0xed,0x2,0x4d,0xeb,0x8c,0xc3,0xb5,0x33,0xce,0x6f,0x16,0x59,0x7a,0xee,0xa8,0x12, 0x30,0xa9,0x9e,0x1c,0x40,0xd7,0x33,0x86,0x38,0x50,0x7f,0x90,0x45,0x8e,0x53,0x43, 0x12,0x51,0x73,0x5d,0xbe,0x2f,0xed,0x1,0x7b,0x11,0x34,0xdd,0x1c,0xd3,0x54,0x4d, 0xcf,0x2,0x87,0x8b,0x0,0x6d,0x24,0x87,0x90,0x54,0x1d,0x95,0x41,0xe2,0x6e,0xc7, 0x74,0xcc,0x40,0xc7,0x10,0x91,0xf1,0x38,0x96,0xd7,0xb0,0xd9,0x54,0xef,0x74,0x29, 0x7,0x6a,0x62,0x80,0xb6,0x88,0x26,0x58,0x47,0x51,0x62,0x43,0x43,0x42,0xc0,0x8c, 0x7d,0x60,0x3,0x63,0xe8,0xf7,0x24,0xf4,0x79,0x54,0xbb,0x44,0x8c,0x57,0x32,0x77, 0xc1,0xc7,0xb9,0x75,0x78,0xbd,0xe1,0x95,0xa1,0xfe,0xf0,0xa2,0x1,0x49,0x50,0x99, 0xaf,0x2,0x6b,0xd6,0x65,0x93,0xbb,0x43,0x89,0x3a,0x41,0xc,0xc8,0x57,0xa,0x92, 0x61,0xa,0x69,0xd1,0x9a,0x7a,0x49,0xd1,0x1a,0x39,0x47,0xb4,0x46,0xe6,0x42,0x6b, 0xcf,0x59,0x72,0x2b,0xcb,0xe3,0x4b,0x21,0x52,0xeb,0xb,0x90,0x92,0x54,0xe1,0xca, 0xac,0x38,0xf5,0xf2,0xa1,0xc2,0x2,0xdb,0xbc,0x51,0x91,0xd5,0x97,0x7,0x95,0x91, 0x85,0x72,0x65,0xe4,0x65,0xe3,0xca,0xc8,0x42,0xb9,0x32,0x32,0xf,0xae,0xac,0xe2, 0x29,0xa5,0xa,0x51,0x8a,0x26,0x32,0x29,0x4,0x2f,0xc3,0x82,0x93,0x6e,0xa4,0x3a, 0x62,0x41,0xce,0x60,0x8a,0x6a,0x4a,0xd4,0x53,0x45,0xe0,0x6c,0xf7,0x8,0x2d,0xb, 0xa8,0x19,0x98,0x12,0x8d,0x22,0xe2,0xa,0x10,0x32,0xc9,0xf3,0x4d,0x4a,0x8c,0x88, 0xa3,0xb8,0xbe,0x39,0xab,0x5c,0x88,0x42,0x4c,0x69,0x80,0xfb,0xec,0x3d,0x0,0x5c, 0xc8,0x29,0x96,0x21,0xe4,0x24,0x13,0x6e,0x80,0x13,0x44,0x75,0x2b,0xba,0xf8,0xc8, 0x2,0x17,0x1f,0xc9,0x5f,0x7c,0x24,0x7c,0xf1,0x91,0xe2,0x8b,0xb7,0x61,0xb2,0xc2, 0x32,0x66,0x9,0xf9,0x37,0x8a,0x31,0xd5,0x16,0x5b,0x1a,0xd3,0x98,0xa4,0xeb,0x42, 0x9d,0x45,0x57,0x9,0x62,0x2e,0x27,0x29,0x10,0x57,0xc1,0xb6,0x75,0x9a,0x88,0xa5, 0x35,0x35,0x49,0x1d,0xa7,0x40,0xd7,0x5a,0xc2,0xd7,0xda,0xc5,0x6f,0xb2,0xe5,0xf6, 0x23,0xd,0x4c,0x63,0xd4,0xd0,0x64,0x90,0xa5,0x30,0x16,0x7e,0x2f,0x21,0xa,0xf6, 0x5d,0xc5,0xf5,0xe8,0xe,0x32,0x1d,0x42,0x52,0x53,0x4d,0x19,0x5c,0xb7,0x60,0xa9, 0x90,0x24,0xf3,0x64,0x91,0x67,0x88,0xba,0xa4,0xa0,0x47,0x47,0x27,0xf,0x1a,0x66, 0xe9,0x92,0x9a,0x94,0x8a,0x63,0xb9,0xc9,0x83,0x25,0x4d,0x4b,0x83,0xd3,0xd7,0x56, 0xb7,0xc0,0x8,0x5e,0xdd,0x49,0x55,0x8b,0xaf,0x74,0xb,0x40,0xa4,0x6b,0x4d,0x20, 0x75,0xa1,0xab,0x41,0xe0,0xd9,0xf,0xff,0xf7,0x90,0x84,0x87,0x4b,0xb4,0xac,0x4c, 0xc3,0x8f,0xc4,0xb9,0xe4,0xaf,0xac,0x8c,0x0,0x8d,0x32,0xd0,0x77,0x8b,0x18,0x9, 0x4d,0x9f,0xc8,0x1b,0xc8,0xe,0xd2,0xe0,0xd0,0x74,0x59,0x10,0x4d,0xad,0x42,0x6c, 0xbf,0x66,0x4a,0x9,0x5f,0x29,0x5,0x7a,0x37,0x41,0x87,0x31,0xd5,0x33,0xb0,0x20, 0x80,0x30,0x8a,0x5a,0x61,0xa9,0x42,0xc3,0x8e,0x86,0xe2,0xf4,0xc7,0x10,0xeb,0x94, 0x2f,0x41,0x8d,0x8,0x90,0x54,0xb2,0xd4,0x34,0x78,0x92,0x40,0xf6,0x22,0x69,0x16, 0x4e,0xf5,0x64,0xa7,0xb6,0xd3,0x71,0x53,0x6e,0x41,0x6d,0xa0,0x2e,0x4,0x83,0xf, 0x4b,0x56,0x69,0x5,0x15,0xa2,0xa0,0xd5,0x9e,0xf0,0xe6,0x45,0x89,0x42,0x8,0x41, 0x89,0x66,0x40,0xa9,0x3c,0x3a,0xaa,0xba,0xaf,0xd5,0x2c,0x13,0xea,0xce,0x62,0xf3, 0x7c,0x89,0x5d,0x55,0x37,0x54,0x77,0xaa,0x9d,0x77,0x4,0xaf,0xb2,0xc6,0x5b,0x84, 0x73,0x7d,0xa1,0x95,0x86,0xe2,0x4b,0x46,0x56,0xd0,0xa2,0xdc,0x90,0xd,0x43,0x3a, 0x81,0xa2,0x4b,0x6a,0x96,0xc2,0x93,0x93,0x60,0xb0,0x4b,0xc8,0x65,0x0,0x6e,0x1a, 0xb,0x18,0xf4,0xa2,0x6e,0x41,0xde,0xab,0x88,0x13,0xb2,0x14,0x32,0x97,0x6,0x3, 0xd,0xd1,0xf0,0x22,0x66,0xab,0xa7,0x83,0x9c,0x93,0xfb,0xbb,0x85,0x6f,0x9e,0x67, 0xf1,0xac,0x39,0x17,0xbe,0x75,0x98,0xfd,0xa7,0x2,0x89,0xaf,0xe3,0xb3,0x21,0xeb, 0x17,0x75,0x5d,0x9e,0xe0,0xa5,0x72,0x30,0x20,0x16,0x3e,0xa8,0x25,0xd0,0xe6,0xcc, 0x18,0x5a,0x89,0xc2,0x94,0xc9,0x15,0x7d,0x9f,0xe,0x7e,0x35,0x4,0xc8,0x9a,0xe2, 0x40,0x3c,0x19,0x6c,0x25,0x3,0x63,0x14,0x87,0xb3,0x2d,0xc,0xe,0x77,0x98,0x29, 0xe4,0x20,0x4f,0x61,0xd1,0xdc,0x3d,0xb5,0x9,0x5f,0x41,0x90,0x4c,0x1,0xa2,0x5d, 0x6,0x94,0x29,0x6c,0xb9,0x2d,0x60,0x44,0x2a,0xf7,0x15,0x32,0x2,0xa6,0x4b,0xe5, 0x40,0x28,0x26,0xa,0x47,0xe3,0x31,0xc7,0xb3,0x98,0x1b,0xaf,0xfb,0x59,0x41,0x25, 0xc8,0x2a,0x38,0x1,0x28,0x62,0x85,0x9c,0x66,0x61,0x8,0x0,0x15,0xc6,0x85,0xc3, 0x2c,0x25,0x34,0x7d,0xe,0x9e,0xa4,0x23,0xb2,0x36,0x72,0xc5,0x83,0x6,0xfb,0x2c, 0xa3,0x4e,0xb1,0x5a,0x22,0x89,0x1e,0x21,0xc5,0xef,0xb1,0x94,0xc4,0x26,0x4e,0x44, 0xe,0xca,0xe8,0x43,0x74,0xb8,0x4e,0xf0,0xc0,0x82,0xce,0xd8,0x41,0xae,0xbb,0xdf, 0x1f,0x4c,0xc,0x11,0x8c,0xb,0x3b,0x4,0xf0,0x1,0x7c,0x64,0x4a,0xc6,0xd0,0x2, 0xae,0xc5,0x94,0x45,0xc5,0x65,0x45,0x4e,0x97,0xb3,0x70,0x6b,0x42,0xa,0xf1,0x36, 0x13,0x21,0xbd,0x11,0x7f,0xfa,0x64,0xbb,0x49,0xd7,0xb9,0xdb,0x16,0xd5,0x0,0xe9, 0x56,0x3,0x5c,0x6d,0xa7,0x9e,0x85,0xef,0xec,0xfe,0x18,0xe3,0xe,0xb5,0xc9,0x71, 0x9c,0xc3,0xc3,0xa8,0x43,0xdb,0xee,0x3c,0xda,0xec,0x56,0x8a,0x63,0x3b,0xac,0xab, 0xa2,0x8b,0xd9,0xd9,0xbb,0xa9,0x73,0x3f,0xee,0x8c,0x74,0xb8,0x61,0x81,0xce,0xfd, 0xaf,0x53,0x58,0x3c,0x4b,0xe9,0x39,0x6b,0xa,0xe7,0x91,0xcd,0x9c,0x98,0x37,0x71, 0x81,0x9d,0xb6,0x97,0x95,0x40,0xa7,0x35,0xf7,0xea,0x20,0xb0,0xb8,0x8e,0xbe,0xee, 0xac,0x9,0x9c,0x4b,0x37,0xf,0x41,0x38,0xd5,0x30,0x7f,0xa0,0x19,0x44,0x12,0xeb, 0x6,0x96,0x42,0xc9,0x45,0xbc,0x8d,0xed,0x39,0x8c,0x39,0xc3,0xc6,0xe5,0x1c,0x6b, 0x45,0xd3,0xd,0xee,0x2b,0x6c,0xc7,0xd1,0x60,0xa9,0x58,0x9,0x27,0x35,0x29,0x9d, 0x96,0x93,0x34,0xc5,0x32,0x38,0xce,0xd,0xd2,0x54,0x4e,0x97,0xc,0x83,0xe7,0xaa, 0xd4,0xce,0xe6,0x88,0x3e,0x75,0x64,0x57,0x9e,0x6a,0x78,0xf6,0x17,0x9c,0xa1,0x67, 0x37,0x7f,0xb9,0x33,0x54,0x50,0xad,0xec,0xec,0x8c,0x4e,0xdb,0x39,0xc5,0x60,0xf9, 0x92,0x99,0xf2,0x5d,0x9a,0x9e,0x2d,0xbe,0xa8,0x9,0x8c,0xa7,0xce,0xb7,0x1,0x59, 0x97,0x42,0x56,0x4e,0xf2,0x7c,0xc6,0x1f,0xde,0xe8,0x67,0x8d,0x7f,0x53,0x60,0x3, 0xce,0x4c,0xfa,0xf7,0x24,0xba,0xf8,0x31,0x3e,0x96,0x29,0x9a,0xe4,0x51,0x34,0x37, 0x5b,0xbf,0x74,0x6f,0x36,0xa7,0x1,0x8f,0x47,0x15,0xf4,0xe2,0xa6,0x2e,0x26,0x25, 0x1d,0x33,0x25,0x3b,0x6c,0xa,0xb3,0x77,0xe2,0x67,0xc7,0x42,0x98,0x7a,0xcd,0x98, 0xc8,0x81,0xd6,0xe2,0x84,0x6d,0xe5,0xa5,0x31,0xd5,0x9a,0x29,0xa7,0xd,0xe5,0x76, 0x61,0x25,0x67,0xef,0x42,0x72,0x42,0xae,0xab,0xe9,0x1b,0x7,0xbc,0xf2,0xe7,0xea, 0x62,0x87,0x93,0x79,0x58,0xeb,0xb9,0xad,0x5e,0x1f,0xb6,0xfa,0x5c,0xa6,0xb4,0xd2, 0x59,0xda,0x95,0x92,0xdf,0x4f,0x55,0xf,0xcc,0x8b,0x86,0x84,0x7,0x90,0xc,0x98, 0x1a,0x1,0x25,0x4d,0x3e,0x1d,0xdc,0x2a,0x9d,0xa5,0x36,0xf,0x78,0xa2,0x34,0xd4, 0x21,0xba,0x94,0x85,0x1c,0xd6,0x80,0xe4,0x44,0xcf,0x4a,0x8e,0x35,0xce,0x41,0xd1, 0xcd,0x98,0x72,0xd0,0xf4,0x21,0x8b,0xda,0x44,0xb5,0xce,0x6e,0x63,0x7,0x74,0xc0, 0x7c,0x1a,0x98,0x8f,0xa0,0xd3,0x75,0x24,0xcd,0x5,0x29,0x8b,0xdf,0x25,0xea,0xe8, 0x88,0xc2,0xfc,0xfd,0x91,0x81,0xbc,0x1d,0xf,0xc8,0x3c,0x92,0x5a,0x36,0x7,0x5, 0x2e,0x55,0x68,0x71,0x42,0x4a,0x82,0x1f,0x91,0x41,0x8b,0x75,0x18,0x6,0x77,0x90, 0x13,0xcd,0x85,0x5e,0xdf,0x71,0x99,0x54,0xa7,0xff,0xcf,0x32,0xa2,0x78,0x5c,0x18, 0x3a,0x47,0x46,0x30,0x5,0x98,0x2f,0x17,0xd6,0x82,0x9f,0xd4,0x79,0x83,0xcb,0x4b, 0x6d,0x23,0xdc,0x69,0xf2,0x14,0x7d,0xcb,0x6,0x99,0xb6,0x35,0x1a,0x4d,0x4c,0xdf, 0xe0,0x8f,0x90,0xba,0x71,0x13,0x19,0xc,0x8,0x89,0x1a,0xee,0x29,0x71,0x77,0xec, 0xab,0x29,0x57,0x1f,0x9a,0xbd,0x3b,0xa3,0x88,0x19,0xc9,0xc8,0x8f,0x7a,0x89,0x10, 0xe4,0xeb,0x20,0x8c,0xfb,0xd9,0xe8,0x3a,0xf9,0xc8,0x90,0x15,0x5e,0x97,0x84,0x4d, 0xae,0x63,0x93,0xe7,0x11,0x1e,0x8,0xdd,0x6,0x1f,0xe,0xac,0x26,0xa2,0xc3,0xe2, 0x5c,0x45,0xc3,0x4a,0xff,0x54,0x27,0x2c,0x78,0x76,0xb5,0x86,0x5d,0xdf,0x1d,0xc2, 0xef,0x28,0xe9,0x63,0x31,0xc3,0xa5,0x7f,0x18,0xfd,0x7f,0xf1,0x29,0xd7,0x60,0x85, 0xab,0x11,0x7b,0x7f,0x79,0x1a,0xab,0xa,0xda,0x98,0x9a,0xe0,0xfe,0x88,0xe1,0xe2, 0x86,0x31,0x3b,0x4b,0x58,0xa8,0x69,0xf7,0xc,0xeb,0x5a,0x2e,0x60,0x23,0xc2,0xa0, 0xf1,0x88,0x87,0xa9,0x82,0x70,0x30,0x5f,0x5,0x7e,0xa9,0xc9,0x8,0x49,0xd8,0x16, 0x40,0xc6,0xc2,0x8c,0xb0,0xc6,0x97,0x66,0xba,0xc2,0x8f,0xa6,0xf0,0xdc,0x40,0x58, 0x83,0xa6,0x6,0xbd,0x4d,0x82,0xa7,0x7,0x3b,0xdd,0xa9,0x92,0x9a,0x10,0x4,0x51, 0xd8,0x19,0x36,0x35,0xd,0x99,0x4a,0x23,0x4c,0x6c,0xf2,0x4d,0xad,0x4c,0x37,0x34, 0x8a,0x4d,0x45,0x67,0xfa,0x12,0xa2,0xa5,0x6a,0xa7,0x61,0x8d,0x76,0x65,0x65,0xb5, 0x33,0x4e,0xff,0x8,0x5b,0x6f,0x1e,0xca,0x6e,0xce,0x4b,0xd9,0x6b,0xc8,0x15,0xc8, 0x2c,0x15,0x69,0xcf,0x14,0x69,0x35,0xd5,0xf0,0xb9,0x7,0x72,0xee,0xcc,0x41,0xd2, 0xed,0x6c,0x65,0xdb,0x7d,0x7,0xba,0x2b,0x97,0x84,0x3c,0x3e,0x83,0xd9,0xb0,0x95, 0xdf,0x81,0xe1,0x63,0xed,0x4d,0x81,0x14,0x47,0x5e,0x66,0xdd,0x65,0x67,0xed,0xb6, 0x1,0xcc,0x7c,0x2d,0x67,0x1b,0x15,0x14,0x39,0x45,0x5b,0x16,0x34,0x52,0x8b,0x53, 0xf0,0x9f,0xa1,0xa9,0xa6,0x20,0xa7,0x28,0x82,0xb6,0x3f,0x9,0x46,0xb1,0x27,0x10, 0x21,0x1b,0xdd,0xc,0x6a,0xea,0xd9,0xa0,0xb8,0xad,0x28,0x8a,0x96,0x30,0x6e,0x89, 0x29,0x5d,0x56,0xa8,0x7,0x9e,0x2f,0xa2,0x11,0x34,0x21,0xb7,0x59,0x5f,0x26,0xe4, 0xb0,0x19,0x5f,0xb5,0x37,0xb,0x50,0x86,0x20,0x4e,0xf1,0x26,0xdc,0x14,0x69,0xc1, 0x32,0x4b,0xce,0xf3,0xf9,0x8b,0xba,0x47,0x8d,0x24,0x6d,0xe7,0xf1,0xe,0x64,0xde, 0xc4,0x95,0x5,0x3b,0xd7,0x34,0xe3,0x3b,0xe1,0xa9,0x45,0xea,0x7a,0xe9,0x49,0x97, 0x82,0x3d,0xeb,0x3c,0x38,0x51,0xf0,0xf3,0xd8,0x88,0x76,0x17,0xee,0x57,0x75,0x29, 0x23,0x1b,0xf4,0xf0,0x4c,0xe0,0xc2,0x43,0x4e,0xe7,0x3a,0x87,0x5c,0x34,0xd1,0x9f, 0xb8,0x0,0x96,0x7b,0x0,0x60,0x42,0x2d,0x53,0x0,0x1,0xa0,0x6a,0xc8,0x1e,0x0, 0x63,0x57,0x53,0x1e,0xc3,0xde,0x23,0x5a,0x26,0x88,0x21,0x88,0xee,0x6a,0xd0,0x6e, 0x2a,0x44,0x9a,0x3f,0x78,0x66,0xc,0x88,0x7a,0xa6,0xc8,0x8c,0x1a,0x32,0x0,0xab, 0x64,0x78,0xa7,0xc1,0x53,0x27,0xd,0xcc,0xce,0x80,0x39,0xa5,0x98,0xc,0xf3,0x26, 0xd5,0x91,0xfd,0x30,0x61,0xd2,0x65,0xab,0x67,0xb1,0x25,0xfb,0x35,0x6b,0x2,0x79, 0x6b,0x8a,0xa0,0x14,0x52,0xd0,0xa2,0x4b,0xc0,0xd3,0x6,0xcb,0xb5,0xfa,0x80,0x9e, 0xd2,0x54,0x75,0x76,0xa6,0x88,0x60,0xd7,0x80,0x8e,0x7b,0xb8,0x5a,0x44,0xb8,0x4b, 0x87,0x71,0x69,0xcc,0x6a,0x1b,0x8a,0xf1,0x77,0x5,0x64,0x2f,0x1a,0x77,0x26,0x36, 0x19,0x5e,0x54,0xea,0x5c,0x20,0x39,0x4d,0x91,0x93,0x52,0x20,0x42,0x9b,0x30,0x13, 0xc,0xef,0xae,0x79,0x4f,0x60,0x2c,0xef,0xb5,0xbb,0x63,0x86,0xd3,0x1e,0xe3,0x47, 0x57,0xf6,0x82,0xf3,0x2,0x65,0xa4,0xdf,0x5d,0x21,0xa7,0x32,0x92,0xb9,0x80,0x46, 0x74,0xf4,0x32,0x69,0x7a,0x54,0x13,0xf5,0x14,0x3f,0xa6,0xd2,0x57,0xd8,0xbe,0x73, 0x45,0xdb,0x47,0xf3,0x12,0xbb,0xb,0xec,0x9f,0x59,0x8d,0x67,0x5,0xb2,0xb0,0x96, 0x77,0x46,0x65,0x7f,0x3a,0x6d,0x27,0x4,0xfe,0xf1,0x4b,0xf2,0x4b,0x65,0x57,0xe9, 0x6c,0xbf,0x1b,0x34,0x69,0x2f,0xcf,0x81,0x33,0x68,0xa5,0xae,0x9b,0xa9,0x1a,0xb4, 0x1b,0x84,0x85,0xb3,0x62,0x50,0x20,0xd3,0xc,0x5b,0xf4,0x34,0x49,0x2b,0x8e,0x80, 0xaf,0x9,0x40,0xab,0xd5,0xe3,0xfe,0xdc,0x30,0xee,0xdd,0x38,0x94,0x1d,0xc,0x24, 0xf,0xbc,0x75,0xa2,0xae,0x53,0xf9,0x60,0xb5,0xab,0xd0,0x33,0x32,0xc0,0x5f,0x90, 0x53,0x9a,0x72,0x8c,0x77,0x63,0xe7,0xb3,0x92,0x85,0x47,0x3f,0x16,0xbe,0x92,0x61, 0xe5,0x82,0x57,0xf2,0x77,0x12,0x92,0x9a,0x31,0x16,0x36,0xa0,0xe4,0x78,0xe8,0xb7, 0x1,0x22,0xa9,0x2b,0x6c,0x43,0x39,0xe3,0x63,0x6e,0x4a,0x5d,0x38,0x71,0x5,0x50, 0x3d,0x8e,0xe7,0xb,0x59,0x8,0xd1,0x31,0xa1,0x72,0x13,0xd9,0x1a,0xc8,0x6d,0x64, 0xba,0xe1,0x2,0xf4,0x16,0x6a,0x9c,0x9f,0x2c,0x43,0x56,0x43,0xc9,0x2a,0x37,0xc6, 0xd9,0xa9,0xba,0xa2,0x3,0x20,0x7,0xc8,0x87,0x80,0x36,0x9a,0x9f,0x5f,0xba,0xa7, 0x99,0x74,0xb4,0x5b,0xac,0xdd,0xdc,0xcd,0xa2,0x9,0x51,0x97,0x45,0xd6,0xa,0x31, 0x9c,0xac,0xd2,0x8,0x2,0x9c,0x9f,0xf1,0x85,0x3,0x3e,0xcf,0x7,0xd8,0x70,0x8a, 0x8c,0x62,0xf4,0x94,0x7e,0xed,0xfe,0xd0,0xaf,0x9f,0xbe,0xbe,0x10,0xa7,0xa3,0x60, 0xfb,0xd4,0xab,0xe6,0x70,0x4f,0x78,0x9a,0x2b,0x25,0x2b,0x27,0xf9,0x31,0x0,0x5e, 0x8e,0x52,0x95,0xa5,0x6,0x41,0x13,0x40,0x7b,0xab,0xbf,0x99,0xb8,0xc7,0x46,0xe8, 0xdf,0xf6,0x31,0xa9,0x56,0xfa,0xe3,0x2c,0x7c,0xb8,0x9b,0x36,0xe9,0xc6,0xb0,0x67, 0x90,0x96,0x54,0xb6,0xc9,0xa9,0xcd,0x7e,0x19,0x14,0x99,0x66,0xdf,0x12,0xa4,0x9d, 0x59,0x2d,0x25,0xa7,0x65,0x7e,0xc0,0x74,0xd4,0x39,0x4e,0xe4,0x4b,0x7e,0x13,0x78, 0xca,0xa3,0x19,0xcf,0x1,0xb4,0xb6,0x62,0xb,0x29,0x76,0xb9,0x28,0x83,0xf7,0x53, 0x53,0xda,0x24,0x6f,0x7d,0x84,0x9f,0x5d,0xca,0xaf,0xa,0x3d,0x74,0x39,0xd8,0xee, 0x5b,0x20,0xb6,0x1a,0x4b,0x54,0x2,0xb2,0xf5,0x40,0x14,0x9b,0x81,0x49,0x63,0xc8, 0xc8,0x80,0x1d,0xbc,0xa2,0x48,0x5d,0xe9,0x20,0x25,0x15,0x43,0xa,0x8f,0x7d,0xe8, 0x12,0xe2,0xe4,0x76,0xa1,0xc,0xbf,0x52,0x52,0xf7,0xe1,0x62,0x29,0xe9,0x81,0x28, 0xf6,0x0,0x1a,0xc,0x45,0x96,0xea,0x4f,0x60,0x1b,0xc9,0xe4,0xc7,0x82,0x5,0x42, 0xf,0x8,0x67,0x79,0xc4,0x48,0xf2,0x7b,0xc7,0x8b,0x44,0x9d,0x4d,0x36,0xe2,0x96, 0x2a,0x24,0x59,0x0,0xf2,0x94,0xba,0xc2,0x84,0xac,0x9b,0x96,0xa4,0x4,0xa2,0xd1, 0x1a,0x7e,0xee,0x31,0x4f,0x2d,0x5b,0xb,0x5,0x88,0xfd,0x47,0x9b,0x59,0x74,0x2b, 0x5e,0x52,0x45,0xc8,0x37,0x31,0xd7,0xc8,0x3f,0x29,0xc9,0xca,0xa9,0xe4,0x98,0x48, 0xb1,0xb2,0xd9,0x15,0x88,0xd6,0x1a,0x47,0x80,0x71,0x48,0xb9,0x58,0xe,0xec,0xe4, 0xca,0xe,0x12,0x6b,0x39,0x12,0x7a,0xbc,0x57,0xa4,0x17,0xba,0xaa,0x27,0xf3,0xd, 0x2,0xbc,0x29,0x10,0xb0,0x6d,0x8c,0x76,0x32,0xee,0x39,0x32,0x11,0xbe,0x44,0x20, 0xf2,0xe7,0x7e,0x62,0x30,0x1f,0x62,0xc,0x4c,0x2e,0xff,0x40,0x60,0x84,0x9d,0x8e, 0x9,0x1a,0xbe,0x1,0x72,0xc1,0xf9,0x6b,0x4f,0x5d,0x6f,0x81,0xca,0x4,0x1,0x9d, 0x3b,0x8d,0x5e,0xe6,0x4d,0xa3,0x31,0xc5,0x2b,0xe2,0x41,0xb6,0x7b,0x40,0x79,0x59, 0xcf,0x8a,0x3,0x7b,0xcb,0x46,0xcc,0x5f,0xc8,0x23,0x96,0x46,0xef,0x52,0x20,0x12, 0xa7,0x60,0x60,0x6d,0x33,0x27,0x87,0xf,0x5c,0x7e,0x8e,0xad,0xdd,0xfc,0xe1,0x35, 0x98,0xc0,0xdb,0x26,0xe0,0xdd,0xb6,0xe0,0x6a,0x1f,0x28,0x83,0x28,0x64,0x61,0xb2, 0x2f,0xd2,0x54,0xee,0x2,0x45,0xe2,0xb9,0x61,0xfe,0xe8,0xf9,0x6f,0x8f,0x14,0x1a, 0xf0,0x20,0x4a,0x99,0x25,0xcd,0xac,0x13,0xc2,0xda,0xea,0x1a,0xef,0x3f,0xb0,0xf6, 0xe5,0x20,0xc4,0xa0,0x5d,0x1e,0xe,0x76,0xec,0xcd,0xd2,0x9d,0x5f,0x60,0x9f,0x66, 0x51,0x57,0x6,0x2a,0x98,0xcf,0xca,0x9,0xda,0x8c,0x4e,0x33,0xa4,0x85,0xc1,0xbe, 0x5d,0x81,0xcc,0x5c,0xe2,0x59,0xdf,0x1f,0x91,0x16,0xd9,0x2b,0x14,0xd1,0x82,0x61, 0xcf,0x36,0x80,0xbf,0xfd,0x1a,0xbc,0x2d,0xb0,0xb0,0xb3,0x4e,0x1d,0x41,0xdb,0x4, 0xe1,0xc7,0x9f,0x2,0xb1,0xac,0xc1,0xbc,0x3d,0xd,0x2b,0x59,0x20,0x4d,0x37,0x89, 0x8a,0xec,0x47,0x73,0xd,0x9a,0x62,0x9f,0x6c,0x77,0x8f,0x3b,0xf9,0xbb,0x91,0x95, 0xbc,0xec,0xe,0xd6,0x4d,0xd6,0xfe,0x52,0xbc,0xad,0xcf,0x3,0x96,0x29,0x2b,0x81, 0xc3,0xfb,0xb0,0xe9,0x49,0x9d,0x77,0x12,0x65,0xed,0xef,0x94,0x31,0x6d,0xe0,0x95, 0x43,0xa0,0xad,0x51,0xeb,0xf2,0xec,0x38,0xd,0xd2,0x4e,0xb0,0x89,0x2c,0x91,0x14, 0x9,0x95,0x4e,0x95,0x74,0x8c,0x6e,0xb3,0x33,0xca,0xec,0x4c,0x16,0xf7,0x0,0xe9, 0x88,0xd9,0x99,0x9c,0x82,0x1d,0x32,0xaf,0xc6,0x4,0x32,0x30,0x4a,0xe,0x2,0x52, 0xb2,0x87,0x75,0xcb,0xf,0x42,0x96,0x65,0xd2,0x3a,0x50,0xa4,0x67,0xaf,0x93,0xc5, 0xe3,0x78,0xe1,0xdc,0x4a,0x36,0x37,0xd0,0x88,0xce,0xf1,0xc,0x7f,0xa1,0x18,0x7b, 0x91,0x9b,0x86,0x73,0xc6,0x64,0x9a,0x16,0x10,0xe,0x98,0xda,0xe1,0xe9,0x1c,0x96, 0xa2,0x49,0x0,0x50,0xc4,0x77,0x2c,0x81,0xdc,0x4f,0xc3,0x2d,0x9,0xfe,0xdc,0x85, 0x8b,0xc4,0x51,0x4d,0xcb,0x42,0x9a,0x90,0xa4,0x3d,0x32,0x4b,0x11,0x65,0x3d,0xd0, 0xeb,0x46,0x6d,0x0,0xce,0xc4,0x66,0x3a,0x11,0x4,0x64,0xb1,0x56,0x5,0x64,0x19, 0x19,0xaa,0xe1,0x3e,0x48,0x10,0x63,0xe9,0xd1,0xaa,0x60,0x81,0x2c,0x21,0xdd,0x88, 0x8b,0x55,0x60,0xb1,0xd5,0xb3,0xd7,0xb,0x83,0xba,0x96,0xd3,0x8c,0x22,0x26,0x5b, 0xe,0xea,0xe2,0x62,0x52,0x26,0x24,0x71,0xf3,0xb4,0x2,0x2a,0x44,0xd5,0xe4,0xd6, 0x2,0x3,0x20,0xb4,0x5a,0xac,0x0,0x77,0xeb,0x15,0x18,0x1a,0xb7,0xa0,0xb6,0x9e, 0x9d,0xc9,0x9b,0x11,0xc5,0x5e,0x2e,0xf8,0x79,0xb7,0x62,0x10,0x72,0xb9,0x5c,0xde, 0xa8,0x48,0x1e,0xa6,0x65,0x1c,0x41,0xcf,0x90,0xf9,0x37,0xa6,0x3c,0x93,0xea,0x90, 0x17,0x6,0x7f,0x8,0xc5,0x80,0xe9,0xee,0xb4,0x98,0x33,0x2d,0x7f,0xd6,0xa1,0x3c, 0xab,0x13,0x9,0x3b,0xe1,0xa8,0xf3,0x3b,0x54,0x5f,0xa6,0x9d,0xc2,0x33,0x89,0xf7, 0xd9,0x29,0x46,0xef,0x81,0x55,0xd9,0x51,0x54,0xd5,0x6b,0x83,0xdd,0x56,0x12,0xd2, 0x38,0x29,0x8b,0xf6,0x45,0xd,0x4e,0x50,0x1b,0x44,0x30,0x3f,0x60,0x1d,0x73,0x63, 0xbc,0x29,0x2d,0x79,0x5d,0x33,0x4d,0x39,0x93,0xb4,0x98,0xd3,0xf3,0xd9,0x42,0x13, 0x1e,0x86,0x81,0xe4,0x14,0x59,0xcc,0xb3,0x6a,0x68,0x18,0xf9,0x3d,0x82,0xa5,0xbc, 0x9,0x47,0xcd,0x93,0x66,0xbb,0xa2,0x9a,0x7,0x70,0x5,0x9e,0x46,0x50,0xfc,0x46, 0xe1,0x6d,0x17,0xf5,0x6a,0x8a,0xc6,0x5a,0x26,0x5,0xec,0x8e,0xb9,0x73,0x3,0xcf, 0xd1,0x79,0x86,0x2e,0x83,0xa1,0x5e,0xbe,0x61,0xfc,0x72,0x26,0x2d,0xee,0x45,0x62, 0x69,0xc2,0xb,0xd4,0x17,0xa8,0xd4,0x5c,0x1d,0x42,0x1f,0x4a,0xa1,0xc9,0x80,0x6f, 0xa4,0xd3,0xc0,0x74,0x63,0xf3,0x6e,0x6f,0xa7,0xd2,0x33,0xb8,0xda,0xdb,0x29,0x74, 0x69,0xe5,0x7d,0xc2,0x2,0x2d,0x74,0x63,0x28,0xb6,0xc0,0xbd,0xca,0x4b,0xa3,0x28, 0x8b,0x62,0xf9,0xdc,0xf4,0x86,0x5e,0x1a,0x69,0x3c,0x32,0x60,0xa1,0x57,0xa4,0xad, 0xf7,0x42,0x19,0x38,0xb3,0xdc,0xc6,0x90,0x1d,0xaa,0xb,0xc6,0x3a,0xbd,0x4b,0x97, 0x6,0xde,0xb9,0x2c,0xb0,0xfc,0xf9,0x34,0x2d,0x7d,0x44,0x33,0x76,0x4e,0xa3,0xf9, 0x89,0xbe,0x54,0xa9,0x76,0xbf,0x3c,0x1,0xe,0x9a,0x3e,0xb1,0x9,0xd1,0x45,0xce, 0x9f,0xba,0x6,0xd5,0x28,0x87,0x95,0xb3,0xe1,0xd4,0x4a,0xa3,0x79,0x4c,0xf0,0x3c, 0x23,0x97,0xd4,0x72,0x72,0x80,0xf5,0x2f,0xa0,0xe7,0xe9,0x43,0x9c,0xa6,0xf7,0x29, 0x64,0x21,0xd3,0x4e,0x8f,0xcf,0xc0,0x79,0x74,0x5a,0xfe,0xac,0x7a,0xdc,0x41,0xcd, 0x70,0x8b,0xd7,0x9d,0x43,0x3c,0x6e,0xe5,0xec,0x5b,0x5d,0x76,0xa,0xf2,0x3c,0x38, 0x1b,0x80,0x6d,0xd4,0x80,0x46,0x79,0x56,0x5f,0x78,0x54,0xc9,0xf0,0x6d,0xf3,0x3a, 0x7d,0x22,0x43,0xc8,0x28,0xda,0x28,0x30,0xb5,0x90,0x9e,0x1,0xbe,0x1b,0xc1,0x4, 0xe1,0x8d,0x71,0x95,0x83,0xe2,0xb4,0xc1,0x4b,0xa9,0x3c,0xcd,0x63,0xe9,0x25,0x3b, 0x5d,0xe4,0xd1,0xa4,0x41,0x48,0x24,0x75,0x51,0x36,0xb,0xd4,0xa3,0x97,0x1f,0xf0, 0xa6,0xc1,0x30,0xef,0x29,0x3f,0x5a,0xe8,0xab,0xb2,0x94,0x8f,0xd8,0x66,0x28,0x63, 0x28,0x63,0x5a,0xf8,0x5a,0xf3,0xa9,0xa7,0xce,0x3f,0x24,0xe5,0x66,0xef,0xd6,0xe9, 0x73,0x1a,0xaa,0xb7,0xac,0x2a,0x90,0xc6,0xfc,0x4b,0xb4,0xf3,0x6c,0x90,0xc5,0xc1, 0xad,0xc0,0x96,0x48,0x9e,0x4b,0xf5,0x52,0x79,0x68,0x76,0xc6,0xd0,0x14,0x2b,0x48, 0xa0,0x67,0xd9,0xf3,0xf6,0x40,0x58,0x55,0x6c,0x67,0xc5,0xab,0x8,0x36,0x14,0xcf, 0xe6,0x4a,0x3e,0x9c,0x6d,0xc0,0x14,0xbb,0xf0,0x72,0xc3,0x53,0x23,0x2f,0x1d,0x9a, 0xd1,0x9,0x6b,0x28,0x43,0x16,0x52,0x64,0x6c,0xf4,0x34,0x39,0x6b,0xac,0xe7,0xb5, 0x97,0x13,0x98,0x1a,0xc1,0x37,0x37,0xb,0x83,0x9a,0x61,0xe,0x25,0x75,0x39,0x67, 0x36,0x15,0xf8,0xf8,0x3,0x9e,0x4a,0x4f,0x64,0xed,0x59,0xd7,0x9,0xd8,0x29,0x4e, 0x5a,0xb2,0x28,0xee,0x5,0x1e,0x76,0xc8,0xf6,0x1b,0xde,0xc3,0xec,0xb3,0xef,0x86, 0x32,0xdd,0xde,0xe3,0xf0,0xc,0x3f,0x82,0x8f,0x1d,0x5a,0x20,0xdf,0x2e,0x58,0x93, 0x3d,0x58,0xc8,0x3e,0x35,0x91,0xfc,0x53,0x59,0x2a,0x57,0x3b,0x5f,0x9b,0x38,0xd0, 0xd6,0xdc,0xb8,0xdd,0x8c,0x1b,0xa7,0x7c,0xdb,0xb4,0x89,0x1d,0xeb,0xb0,0x54,0xef, 0xd1,0x7,0xd0,0xc8,0x16,0xd6,0x53,0xc6,0x18,0x5d,0x79,0xf0,0xc0,0xe8,0xb5,0x90, 0xb4,0x21,0x76,0xca,0x2,0xb0,0xb,0x3a,0x9c,0xc8,0x9e,0xb9,0x61,0xd5,0x9e,0xc1, 0x33,0x7c,0x3b,0x76,0xfa,0x9f,0xc9,0xf1,0xe6,0x1a,0x5b,0xe6,0xc4,0x19,0x1f,0xd0, 0x1,0x85,0x51,0x53,0xf8,0x80,0x8e,0x5a,0x88,0x79,0x57,0x28,0xe6,0xee,0x2e,0xa6, 0x8a,0xf7,0xf3,0x8f,0x30,0xba,0xb8,0x8,0x7e,0x5c,0xd8,0xa6,0xa5,0x6a,0x58,0xe9, 0xb4,0x6c,0x40,0x1c,0x33,0xa,0x57,0x6e,0xc6,0xd3,0x79,0xa,0x3f,0xd2,0x98,0x21, 0xde,0x43,0x9e,0x79,0x7b,0xfe,0xa4,0xd1,0xb5,0xe6,0x6e,0xfa,0x34,0x90,0xef,0x70, 0x55,0x63,0x1,0xe8,0x39,0x92,0x2,0xdf,0xd8,0xfd,0x67,0x7f,0x12,0x2c,0x14,0xd1, 0xcd,0x3,0x1,0x67,0xc2,0x30,0x1,0x34,0xf2,0x8e,0x25,0x14,0xe0,0xbf,0xe8,0x1e, 0x10,0xc4,0x7a,0xb0,0xda,0x3,0xc0,0xa2,0x61,0x32,0x2,0x76,0xdb,0xf,0xb0,0xe9, 0x33,0x10,0x97,0x83,0xb3,0xa7,0x76,0x7c,0x98,0xf4,0xc0,0x5f,0x7b,0xe1,0x7b,0x1, 0x9c,0x61,0xb,0x88,0x2d,0xe,0xb1,0xbe,0x3,0x3e,0xd3,0xbf,0xfa,0x60,0x64,0x9f, 0x6f,0xc6,0x56,0x48,0xbf,0xdb,0xf0,0xbb,0x7e,0xa0,0xb8,0x1e,0x67,0xd1,0x3d,0x50, 0x93,0x3e,0xf3,0x8d,0xf7,0x27,0xf1,0xa7,0x15,0x7e,0x3b,0xe0,0x7f,0x4a,0x5f,0x6, 0xee,0xe,0x83,0x67,0x8c,0xc3,0x6f,0x3f,0x40,0x6e,0xc1,0x19,0x59,0xe0,0xcb,0x56, 0x84,0x65,0x38,0xc7,0x34,0x68,0x21,0x42,0xb3,0x8c,0x14,0x40,0xed,0x2,0xee,0x77, 0x3a,0x23,0xbb,0xf0,0x6f,0xaa,0xca,0x29,0xfc,0x9b,0x29,0x3d,0x33,0x52,0x66,0x2, 0x3b,0x61,0xce,0x38,0x87,0x33,0x86,0x5c,0x9e,0x82,0xff,0xeb,0x9d,0x5d,0x3f,0x93, 0x73,0x9f,0x8e,0x6b,0xc7,0xfb,0x71,0xae,0xb4,0x34,0x77,0x55,0x78,0x52,0xce,0xb2, 0x58,0x3a,0xc6,0x86,0x10,0x87,0xf9,0xb4,0x24,0x60,0x18,0xe5,0xd0,0xff,0x51,0x55, 0x13,0xc8,0x75,0x68,0x92,0x63,0x68,0x94,0x12,0x50,0x65,0xa0,0x49,0x52,0xf9,0x25, 0xd0,0x3c,0x75,0xbc,0x3b,0xc9,0x7d,0xf2,0xe,0xb8,0xf7,0x26,0xa4,0x29,0xee,0x59, 0x93,0x3d,0xdb,0xec,0xa5,0x8c,0x96,0x64,0x29,0x2c,0x1b,0xdc,0x51,0x3b,0x11,0xdf, 0x34,0xa7,0xa3,0x5,0xdb,0x10,0x59,0xf4,0xcc,0xd3,0xb0,0x56,0x3,0x3f,0x9e,0x6a, 0x72,0x33,0xa3,0xa6,0xd0,0x80,0xeb,0xb9,0x33,0x9c,0x48,0x0,0xb4,0xb7,0xa3,0xbf, 0xf6,0x7f,0x3f,0x49,0x3c,0xfb,0xd9,0x28,0x97,0xb6,0x2,0x8,0x36,0x36,0x9,0x5f, 0xa8,0xdc,0xe1,0xc8,0x2a,0x17,0x80,0x73,0x16,0x71,0xca,0xa0,0x69,0xb6,0x60,0xd4, 0xa7,0x7a,0xd2,0x46,0x4f,0x18,0x20,0x7c,0xff,0xf7,0x94,0x76,0xd3,0xce,0xd,0x8a, 0x8e,0x52,0xb0,0xa7,0x62,0x86,0x8c,0xd0,0x3d,0xb4,0xb8,0x63,0x5a,0x40,0x3f,0x4c, 0x5c,0x85,0x26,0x4e,0xf4,0x28,0x46,0xb,0x6f,0xe8,0x31,0xcd,0x48,0x70,0x9a,0x6d, 0xc9,0x17,0x7e,0xcb,0x20,0xd5,0x73,0xbd,0xc9,0x71,0x57,0x3a,0x7f,0x39,0xd,0xe1, 0xc,0x23,0x54,0x3a,0x5b,0xe7,0x94,0xce,0x36,0x2e,0x1d,0x8a,0xc7,0x51,0xf8,0xc6, 0x8d,0xfa,0xcc,0xc9,0xb7,0x83,0x15,0x6d,0xe5,0x7a,0xc6,0x70,0x64,0x5a,0x96,0xfb, 0xab,0x9c,0x5e,0x42,0x39,0x6d,0xe1,0x72,0xa2,0xab,0xf4,0x60,0xb2,0xf8,0x4b,0x5c, 0xc3,0x42,0x19,0x1c,0x44,0xef,0x4f,0xbd,0xe5,0xf6,0xbf,0x4a,0xe2,0x15,0x94,0x4, 0xdb,0x60,0x65,0xf1,0x64,0x14,0x73,0x70,0x16,0x69,0xed,0x67,0x2f,0xa9,0x6c,0x76, 0x43,0xe4,0x3a,0x8c,0xd7,0x41,0x8c,0x69,0xa,0xc6,0xc,0x9,0xd7,0x61,0x5b,0xb1, 0xac,0x7c,0xb2,0x1b,0xce,0x1d,0xb,0x92,0xa0,0xcd,0x33,0x3b,0x3d,0x73,0x9b,0xac, 0x2d,0x6e,0x97,0x84,0x48,0xce,0x8b,0x58,0xa,0x65,0xf1,0xff,0x43,0xe6,0x2f,0xa5, 0x54,0x69,0x54,0xd4,0x9d,0x88,0xfd,0x57,0xfb,0x79,0xf9,0xec,0x67,0x88,0x67,0x33, 0xac,0x6f,0xee,0x26,0xe9,0xa,0xe6,0x34,0xf9,0x76,0x40,0xf3,0xaf,0x31,0xbe,0xc7, 0xb1,0xb3,0x20,0x13,0x3c,0x41,0x24,0x8f,0xf6,0x63,0x99,0xc4,0xcf,0xe5,0xbf,0x32, 0xf4,0x78,0xf9,0x9a,0xc2,0x96,0xac,0x46,0x74,0x6f,0xa3,0xc5,0xe7,0x17,0xec,0x67, 0x57,0x77,0x10,0xef,0x11,0xcc,0x4,0xb9,0x10,0xa3,0x2d,0xfd,0xa1,0xfc,0x60,0x5c, 0x2a,0x4e,0x59,0xa1,0xa7,0x10,0x3d,0x3a,0x4b,0xaf,0x76,0x7e,0x67,0x67,0x7e,0x3c, 0xbf,0xb5,0xf3,0xfd,0x8a,0x6f,0x77,0xae,0xef,0x3b,0xd0,0x3b,0x3c,0x32,0xd8,0x2f, 0xec,0x19,0xbe,0x7c,0x40,0x18,0x3c,0xdc,0x33,0xb0,0xb7,0x57,0xa8,0x6f,0x89,0xc7, 0xaf,0xe8,0xe8,0x8d,0xc7,0xfb,0x86,0xfb,0xd8,0x17,0x5b,0x5b,0xdb,0xe2,0xf1,0xfe, 0xfd,0xf5,0x42,0xfd,0x98,0x69,0xe6,0x12,0xf1,0xf8,0xe4,0xe4,0x64,0xeb,0x64,0x47, 0xab,0xa6,0x67,0xe2,0xc3,0x87,0xe2,0x87,0xfa,0x7b,0x5b,0xc6,0xcc,0xac,0xb2,0xb5, 0x8d,0xbe,0xd,0x47,0x4e,0x9a,0xad,0x29,0x33,0x55,0xdf,0x15,0xeb,0xa4,0x37,0xbb, 0x3a,0xc7,0x24,0x31,0xd5,0xd5,0x99,0x95,0x4c,0x51,0x50,0xc5,0xac,0xb4,0xb3,0x7e, 0x1c,0xc6,0x8c,0x99,0xd2,0x94,0x59,0xcf,0xb7,0xef,0xcd,0x9d,0xf5,0xed,0xf5,0x42, 0xbc,0xab,0xd3,0x30,0xa7,0xe9,0x36,0xfe,0x74,0xe,0x46,0xd1,0x1,0xf1,0xa4,0x61, 0x0,0xa0,0x5c,0xb3,0xa0,0xc8,0xc2,0x75,0xc2,0xe4,0x18,0x14,0x1f,0x2d,0x46,0x4e, 0x4c,0x4a,0x9,0x5a,0xa8,0xb4,0x4c,0xea,0x62,0x6e,0x87,0xf0,0xa6,0x18,0x7d,0xd, 0xf,0xcc,0xec,0xea,0x8c,0xb3,0xc5,0x46,0xb5,0xd4,0xb4,0x80,0xb7,0x76,0xd6,0xd3, 0x6d,0x7f,0xb3,0x25,0x2d,0x66,0x65,0x65,0x3a,0xd1,0xd0,0xb,0x95,0x9d,0xa8,0x43, 0xb9,0xde,0xb0,0x83,0x7d,0x61,0xc8,0x27,0xa4,0x44,0x7b,0x7b,0xce,0xe4,0x9f,0x27, 0x25,0x39,0x33,0x66,0x26,0xb6,0xb6,0xb5,0xd9,0x3,0x28,0x98,0x4,0x6b,0xc2,0xec, 0xa0,0x54,0xe5,0x1c,0xc8,0x59,0x51,0xcf,0xc8,0x6a,0x8b,0xa9,0xe5,0x12,0x6d,0xb9, 0xa9,0x1d,0xf6,0xe7,0x51,0xcd,0x34,0xb5,0xac,0xef,0x96,0x22,0xa5,0x4d,0xdf,0xd, 0x1d,0x57,0xc1,0x3b,0x2d,0xe3,0x66,0xcb,0xa8,0xa2,0x25,0x8f,0xb7,0xc8,0x2a,0x3d, 0x33,0x9b,0x80,0x95,0x29,0xf1,0xce,0x47,0x18,0x54,0xf,0xbc,0xc9,0x89,0x6a,0x30, 0x4d,0x43,0xa2,0x6a,0xf8,0xc9,0xd9,0x9a,0x4f,0xce,0x36,0x20,0xa7,0xbe,0xeb,0xa8, 0x84,0xcd,0x63,0x49,0x17,0xda,0x5b,0xb7,0x2,0xcf,0x0,0x22,0xb0,0x2c,0xf7,0xea, 0xa0,0x69,0xb,0xd0,0x54,0xdf,0xd5,0x23,0x1a,0x74,0x57,0x2,0x8a,0xd1,0x83,0x26, 0xe8,0xe5,0xf6,0x57,0x27,0x15,0x7d,0x74,0x63,0x40,0x1e,0xb5,0x28,0x29,0x9a,0x65, 0x8,0xb4,0xc9,0xa6,0x26,0x25,0x61,0xf7,0xe0,0x0,0xee,0x81,0xd3,0x9d,0x8c,0x8e, 0x60,0xd2,0x28,0x4e,0xb4,0x5d,0x82,0x3d,0xb5,0x16,0x6a,0x2a,0x9,0x29,0x9b,0x33, 0xa7,0x77,0xbc,0x82,0x34,0xcf,0x8f,0xc8,0xce,0x51,0x9d,0xda,0xf4,0xab,0x4b,0x32, 0x43,0xb4,0xbd,0xa1,0xb1,0xa7,0x4f,0x95,0x84,0x60,0xcb,0x40,0x14,0xc6,0x74,0x29, 0xbd,0xd3,0xf6,0x7f,0x27,0xa4,0xc,0x33,0xa4,0xd6,0xa4,0x96,0x3d,0x8b,0x75,0x18, 0xae,0x29,0x29,0xc9,0xb7,0xad,0x12,0x82,0x5,0x78,0xeb,0x8a,0xac,0x4a,0x3b,0xc0, 0x27,0x2a,0x9a,0x9e,0xb8,0xb0,0xd,0xfe,0xa5,0xd3,0x80,0x92,0x6f,0x31,0x47,0x29, 0x44,0xe4,0x6c,0x67,0x9c,0xba,0x3a,0xea,0xf7,0xa8,0xab,0xc5,0xae,0x8c,0x98,0xc3, 0xfd,0x54,0xcf,0x69,0x59,0xff,0x9b,0x29,0x23,0xbb,0x68,0x63,0x47,0x2f,0x18,0xbb, 0x80,0x4d,0x5a,0xdf,0xbc,0x53,0x45,0x7a,0x27,0x71,0x5f,0x8f,0xa1,0xb,0x73,0xa8, 0xf9,0xc6,0xe2,0xe2,0x55,0x68,0xaf,0x73,0xdc,0x80,0xf5,0x9d,0xc7,0xf9,0xf1,0x35, 0x19,0x61,0x25,0x8a,0xe4,0xcf,0xf3,0x88,0x86,0x24,0xe5,0x9,0x57,0x71,0x16,0x42, 0xba,0x3a,0x73,0x41,0xb2,0xf5,0xf9,0xd4,0x83,0x96,0xa8,0xd0,0x4d,0x66,0xfe,0xe0, 0xb2,0xa5,0x8f,0x4a,0x46,0xc2,0x63,0xba,0x85,0x12,0xaa,0x49,0xb3,0x47,0x21,0x34, 0xcf,0xa3,0x10,0xf7,0xbf,0xa2,0x4c,0x2c,0x6c,0xff,0x9f,0xb,0xe3,0x92,0x67,0xc7, 0x38,0xcf,0xe9,0x7c,0x91,0xef,0x33,0x2c,0x9c,0x6f,0xdf,0x79,0x45,0xf9,0xb6,0xdf, 0xb3,0xeb,0xc7,0xd4,0x4f,0xc1,0x4,0x9a,0x8d,0x75,0x1f,0xdc,0xf4,0xbc,0xd2,0xf6, 0x9c,0x38,0xab,0x9c,0x23,0x67,0xd,0xfe,0xee,0x30,0x43,0x10,0xf1,0x4c,0xe1,0xec, 0xcc,0x59,0xa8,0xe6,0xf6,0x82,0xb7,0x27,0xba,0x4f,0x40,0x79,0xb3,0xd7,0xe2,0x6f, 0x4e,0xac,0xb7,0xdf,0x9c,0xe8,0xbc,0x81,0x86,0x3f,0xd1,0x94,0xf0,0xbd,0x3e,0x31, 0x68,0xf1,0xbe,0x82,0xc5,0x83,0x9f,0x6d,0x9a,0x1f,0x22,0xeb,0xb,0x10,0x61,0x8f, 0x30,0xcd,0x8d,0x47,0x21,0x13,0x76,0x93,0xc2,0xa7,0xa8,0xc2,0xd6,0x6e,0xc,0x58, 0xdb,0x73,0xac,0x73,0x6e,0x14,0x76,0x15,0xa0,0x90,0xef,0xb,0x4d,0x7e,0xbc,0xea, 0x38,0x61,0x6f,0xc6,0x31,0x42,0x11,0x6a,0xb0,0x11,0xea,0xcf,0x89,0xf4,0xcc,0x9, 0x97,0x8b,0xc7,0x85,0x2d,0x54,0x34,0xf9,0xf8,0x18,0x78,0x10,0x4c,0xe3,0x78,0xd1, 0x31,0xc5,0xb1,0xd9,0x68,0x63,0x33,0x0,0xb8,0xd0,0x67,0xc8,0x16,0x84,0xcb,0xdc, 0xaf,0xd9,0xc,0x9a,0xb5,0x90,0x53,0x73,0x41,0xf3,0x3b,0x7d,0xe,0xc1,0xf0,0x38, 0x11,0xef,0xbe,0xaa,0xff,0x6d,0x20,0x4e,0x2d,0xe7,0xac,0xd2,0x12,0x66,0xae,0x98, 0xe9,0x7a,0xf,0xbc,0x15,0xc3,0x65,0x83,0xd3,0x8f,0x12,0x9d,0x9d,0x1d,0xe6,0x8c, 0xe8,0xa1,0x85,0x29,0xac,0xab,0x3d,0xe7,0xd1,0x52,0x32,0x7d,0xef,0x5f,0x12,0x5f, 0xf9,0x95,0x93,0xa7,0x24,0xa5,0x28,0x91,0x6f,0xc4,0x43,0xcb,0x19,0xa7,0xe5,0xeb, 0x7d,0x9c,0xdd,0xde,0x54,0x1a,0xf3,0x8d,0xf0,0x87,0xe4,0x66,0x10,0x8e,0xf7,0x91, 0x9b,0xb9,0xe7,0x1b,0xd8,0xb8,0x92,0x7c,0x87,0xa2,0xf7,0x40,0x8c,0x18,0xb7,0x23, 0x2d,0x7d,0x6f,0x19,0x7d,0xe9,0x84,0x22,0x6b,0xf8,0xae,0x25,0x7a,0xae,0xe,0x5f, 0x41,0x81,0x67,0x97,0x58,0x40,0x99,0xa0,0x4f,0x55,0x18,0x52,0x33,0x3d,0x3a,0x28, 0xab,0x34,0xa7,0xc6,0x93,0x4d,0xad,0xc5,0xc8,0x1c,0x20,0xea,0x3c,0x9d,0xbb,0x81, 0xc8,0xd2,0xc3,0x66,0xac,0x67,0x21,0x72,0x89,0x7,0xbd,0xc7,0x7c,0xbb,0x2,0x5a, 0x6b,0xd9,0xa6,0x55,0x28,0x5d,0xe0,0xbe,0xfd,0xa2,0x73,0xc1,0x90,0x33,0xaa,0x9c, 0xc6,0xb3,0x89,0xe9,0xa2,0xd2,0x58,0x83,0x6d,0x93,0x13,0x73,0x88,0x77,0x9,0x7b, 0xe8,0x2e,0x5c,0xb8,0x27,0xe1,0x5e,0x69,0x49,0xc9,0xff,0x0,0xac,0x17,0xa,0x4f, // /home/Adel/ZeGrapher/icons/enregistrerImage.png 0x0,0x0,0x5,0xee, 0x89, 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, 0x0,0x0,0x20,0x0,0x0,0x0,0x20,0x8,0x6,0x0,0x0,0x0,0x73,0x7a,0x7a,0xf4, 0x0,0x0,0x0,0x19,0x74,0x45,0x58,0x74,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65, 0x0,0x41,0x64,0x6f,0x62,0x65,0x20,0x49,0x6d,0x61,0x67,0x65,0x52,0x65,0x61,0x64, 0x79,0x71,0xc9,0x65,0x3c,0x0,0x0,0x5,0x90,0x49,0x44,0x41,0x54,0x78,0xda,0xb4, 0x57,0x59,0x88,0x5c,0x45,0x14,0x3d,0x55,0xef,0xbd,0x5e,0xa6,0x67,0x71,0x86,0x8c, 0x4e,0x24,0x8b,0x41,0x3f,0x45,0x88,0xa8,0x71,0x5c,0x26,0x1a,0x50,0x31,0x89,0x41, 0x10,0x3,0x7e,0x89,0x4b,0x24,0x90,0xe0,0xb7,0x46,0x91,0x11,0x12,0xfd,0x10,0x11, 0x3f,0x42,0x44,0x24,0x9a,0x9f,0x28,0x1,0xb7,0x60,0x26,0xa2,0x26,0x9a,0xa0,0x18, 0x70,0x49,0x34,0x2e,0x18,0x62,0x1c,0xc9,0x32,0x11,0x93,0xc9,0x32,0x3d,0x3d,0xf3, 0xd6,0xf2,0x54,0xd5,0xeb,0x4e,0x2f,0xd3,0xb3,0x84,0xf1,0xd1,0x97,0xae,0xf7,0xaa, 0xea,0xd6,0xb9,0xe7,0xde,0xba,0x75,0x4b,0x0,0x70,0x1f,0x7a,0xe9,0x93,0x8f,0xa2, 0x44,0xac,0x88,0x93,0x4,0xff,0xd7,0xe3,0x48,0x9,0x57,0xaa,0x5d,0xef,0x6f,0x58, 0xf9,0x20,0x5f,0xa3,0xf2,0x77,0x97,0x92,0xf,0xb9,0xf8,0xbb,0xcf,0x2d,0x47,0x10, 0xf3,0x4d,0x51,0xc4,0x2c,0xae,0x9c,0xea,0xcb,0x38,0xc0,0x23,0x9b,0x6,0x56,0xe8, 0xf5,0x28,0x23,0xd5,0x0,0x72,0xda,0xf2,0x16,0x36,0xe,0x9c,0x4,0x3c,0xe,0x96, 0xb3,0x8,0x20,0x21,0x80,0x90,0xb2,0x6c,0x1,0x90,0x32,0x9c,0xab,0x7,0x20,0x94, 0xb2,0x2f,0x59,0x9,0x6c,0xfb,0xf9,0x34,0x3c,0x9,0x3,0x5b,0xd5,0x51,0x21,0x8c, 0x39,0x6a,0x46,0x0,0x42,0xae,0xf9,0xe8,0xd,0x3d,0x96,0xc,0x95,0xaa,0xa9,0x7a, 0xdc,0x9a,0x17,0xd2,0xe4,0x72,0xf1,0x45,0x57,0xf7,0x20,0x4e,0x1d,0x15,0x97,0x7d, 0xa8,0xfb,0x95,0xfd,0x9f,0x16,0x41,0xe9,0xa0,0x3f,0x4f,0x9d,0x36,0x7a,0x9b,0x3d, 0xb5,0x0,0x24,0x8c,0xd5,0x8c,0x17,0x8,0x22,0x5f,0xa3,0x9e,0x42,0x17,0xbe,0x33, 0x7d,0xc3,0xb8,0x19,0x6f,0x8b,0x37,0x2b,0x60,0xa6,0x5c,0x5f,0x58,0x29,0xeb,0x6d, 0xf6,0xd4,0x74,0xb9,0x42,0xd3,0x24,0xcc,0xd7,0xc7,0xc3,0x35,0xe8,0xa,0xf,0x93, 0xc3,0x2b,0x8c,0xe8,0xf6,0x63,0xc1,0x93,0x50,0x8e,0x8e,0x68,0xab,0x74,0x32,0x71, 0x44,0x6a,0x90,0xb2,0x7a,0x67,0xc0,0x0,0xd7,0xe7,0x22,0x9d,0xc1,0x1,0x9a,0xd0, 0x55,0x65,0x6f,0x6,0x5d,0xc9,0x1,0xc8,0x56,0x7e,0x49,0xaa,0x90,0x8b,0x2a,0x9f, 0xd4,0x85,0x88,0x94,0x53,0x33,0x50,0x3,0xa0,0x1c,0xfd,0x9e,0x5e,0x33,0x8c,0xad, 0x1f,0x44,0x1a,0x5,0x8a,0x6d,0x46,0xb1,0xe,0x50,0xb7,0x4c,0x9d,0xb0,0xd,0x35, 0xf4,0x2c,0xe0,0xff,0x4,0xcc,0x1f,0x80,0xd0,0x73,0x93,0xb4,0x2b,0x65,0x60,0xb2, 0x5d,0x25,0x1b,0x18,0x50,0x76,0x37,0x9c,0x97,0xb7,0x10,0x44,0x89,0x12,0xa6,0x52, 0x32,0xdf,0x32,0xec,0xf3,0x52,0x9a,0x3d,0x22,0x51,0xa7,0x9e,0x47,0x72,0x61,0x27, 0x12,0xff,0x38,0xd4,0xdf,0xab,0xc,0xb8,0x72,0x30,0xbb,0x72,0x6,0x31,0x90,0xc0, 0xfa,0x56,0x73,0x98,0x23,0xe2,0x8f,0xe7,0xbe,0x83,0xf3,0xce,0xf5,0xc0,0xf8,0xbf, 0x46,0x74,0x5b,0x7f,0xd3,0x7d,0x5e,0xba,0xb8,0xe7,0x1,0xc1,0xf0,0x7b,0x88,0x55, 0x9e,0x7b,0x3c,0x8f,0x70,0xec,0x8,0x44,0x70,0xc4,0x30,0x58,0x6,0xa1,0x52,0xbd, 0xc9,0xb4,0x62,0x40,0x58,0x0,0x9a,0x81,0x90,0xed,0x9d,0xb,0xb7,0x21,0x4e,0xe9, 0x73,0x94,0xdd,0x86,0x52,0xd9,0x18,0xd1,0x72,0x6e,0xf0,0x35,0x7a,0x2a,0x47,0xba, 0x85,0x99,0xa7,0x92,0xc,0xc6,0xcf,0x6c,0x47,0xd7,0x75,0xfd,0x50,0x91,0xa5,0x5e, 0x61,0x9a,0x41,0x28,0xca,0x31,0xa0,0xac,0x85,0xda,0xfd,0x9e,0xaa,0x24,0xf,0x1b, 0x6b,0xa9,0xcf,0xf5,0xe2,0xc7,0xf,0x3e,0x8c,0xa0,0x78,0x90,0xed,0x56,0x1b,0x1f, 0x7a,0x4,0xb7,0xc8,0xc5,0xd3,0xdb,0xe1,0x17,0x7f,0xc3,0xfc,0xc5,0x3b,0x20,0x13, 0xab,0x4f,0xeb,0x15,0x4d,0xf2,0x47,0x3,0x3,0x7a,0x3d,0x3,0xe0,0x52,0xe6,0x6a, 0xd8,0xdf,0xe,0x1,0x8c,0x9c,0xdd,0xf,0x27,0x33,0x87,0x8b,0x30,0x3f,0xa,0x65, 0xb3,0xa4,0xfe,0x25,0x1e,0x2e,0x9e,0xdd,0x67,0x72,0xbf,0x28,0x33,0x20,0xd1,0x98, 0x2,0x27,0x62,0x40,0x2b,0xae,0x9e,0x30,0x11,0x0,0x3d,0x50,0xfb,0x34,0xe6,0x99, 0x92,0x84,0xe3,0x10,0xd4,0x50,0x28,0xda,0x34,0xed,0xb7,0x6b,0x0,0x3e,0xf5,0x14, 0x90,0xf7,0x2c,0x8b,0x2e,0x7,0x9b,0xb6,0x31,0x4c,0x34,0xf,0x42,0x55,0x61,0x40, 0x9a,0x20,0x6a,0x2a,0xe9,0x36,0xbc,0x69,0xd9,0x1f,0x70,0xb3,0x8b,0xe0,0xfb,0xc3, 0xe8,0xfc,0x3e,0x42,0xe9,0xd7,0x85,0x28,0x8e,0x9d,0xc3,0x68,0x50,0xc2,0x92,0xfb, 0x8f,0x4d,0x99,0x29,0x17,0xbc,0xfc,0xb9,0xac,0x30,0x50,0x3e,0x81,0x4d,0xe2,0x10, 0x5,0x64,0x3c,0x9b,0x6c,0x94,0x6a,0x9e,0x66,0xb3,0x5e,0x16,0x4b,0x97,0x7f,0x81, 0x1c,0xcf,0xb6,0x75,0xbf,0xbc,0x8a,0x43,0x1d,0xbd,0x50,0x83,0x11,0xa2,0x28,0xc2, 0xa6,0x57,0x76,0x33,0xec,0xa3,0x4a,0x42,0x78,0x63,0xaf,0x9d,0xe4,0x91,0xda,0xf6, 0x17,0x76,0xfd,0x93,0x21,0x2b,0x71,0x14,0x7e,0xcb,0xaf,0x7d,0xb5,0x31,0xc0,0xb7, 0xd6,0xc1,0x79,0xf8,0xbd,0x73,0xb1,0xce,0x39,0x4d,0x1,0xc0,0x4,0x95,0x3d,0x33, 0xf2,0x5e,0x88,0x1f,0xf2,0x1b,0xf1,0xcd,0xba,0xdb,0x30,0xce,0x73,0xb7,0x6f,0xee, 0xe4,0x47,0xd5,0xd7,0x43,0x31,0x5a,0x18,0x20,0xf7,0x6d,0xfe,0xb4,0x97,0xaf,0x2d, 0x35,0x0,0x74,0xfe,0x16,0xb2,0xd,0x81,0x9f,0xe5,0xea,0x72,0xca,0xa3,0x57,0xd2, 0xc2,0x80,0x16,0xb,0x9d,0xbc,0xd8,0x5e,0xb2,0xf5,0x28,0xce,0x3f,0xdd,0x83,0xcf, 0xf6,0xee,0x63,0x60,0x4a,0x1a,0x2d,0xd2,0x58,0x62,0x90,0x72,0xa7,0xdc,0xbb,0x6c, 0x29,0xee,0xdc,0x3a,0x84,0xc3,0x6b,0xaf,0xa5,0x81,0x46,0x77,0xb6,0x31,0xf,0x70, 0xa2,0xef,0x47,0x29,0x80,0xc9,0x1f,0xa9,0xa3,0x2c,0xe,0xf9,0x2f,0x50,0xc,0x58, 0xd4,0xe4,0x5,0x5d,0xa0,0x70,0xeb,0x1d,0x77,0x5b,0x0,0xd5,0x45,0x11,0x1,0x44, 0x11,0xad,0xcf,0x4b,0x5c,0xc,0x2a,0x86,0x9,0xb7,0xfe,0x8,0x57,0xb4,0x64,0x6c, 0x74,0x8c,0xe8,0xe5,0x94,0xb5,0x87,0x6,0xa0,0x9c,0x31,0x33,0x71,0x84,0x0,0x5a, 0x49,0x6d,0xcc,0xa3,0x63,0xff,0x57,0x5f,0x4e,0x8,0xe0,0x9e,0xbb,0xfa,0xcc,0x98, 0x22,0x6b,0xbf,0xca,0x51,0x5d,0xf,0xc0,0xf,0x8b,0x38,0x77,0x61,0xc8,0x2,0x98, 0x8a,0x1,0xaa,0x6e,0x71,0x7d,0x52,0x1c,0x1a,0x6,0xda,0x35,0x0,0xba,0x64,0x49, 0xef,0xed,0x34,0x43,0x34,0x8c,0xd5,0x7d,0x7a,0xcc,0x68,0x70,0xa9,0xd6,0x72,0xab, 0xf7,0xbb,0x76,0xcb,0x96,0xf5,0xc3,0x33,0xae,0x49,0x5f,0x7c,0x66,0x0,0x25,0x9e, 0x9e,0xed,0x59,0x81,0x3d,0x27,0x42,0xf4,0x5d,0xe9,0x20,0xaa,0x63,0x4f,0xbb,0x77, 0xcf,0x90,0x1d,0x53,0x8a,0x92,0x4a,0x56,0x72,0xeb,0x95,0x45,0xc9,0xf4,0xab,0x62, 0xc7,0xd6,0x2e,0x4c,0x3e,0x21,0xc6,0xe3,0x4,0x1d,0x39,0x7,0x6f,0x1d,0x8d,0xb1, 0xe5,0x48,0xd4,0xe0,0xbd,0x72,0x22,0xd2,0x63,0xfc,0xb8,0x8e,0x81,0x8a,0x3f,0xf8, 0x9f,0xcc,0xc0,0x7c,0x59,0x55,0x7b,0xfb,0xf4,0x7d,0x81,0xa,0x62,0xd2,0xc9,0x3b, 0x46,0xe5,0xf4,0xb3,0xec,0x2a,0x82,0x15,0x69,0xa5,0x24,0xcc,0xd8,0x9a,0x54,0xec, 0x4a,0x39,0x71,0x81,0x30,0xdd,0x4b,0x7,0x13,0x4b,0x10,0xe9,0x3d,0x25,0xb1,0x7a, 0x81,0xc0,0xea,0xc5,0xdd,0x97,0x34,0x99,0x84,0x62,0x29,0xdf,0x71,0xe8,0xc,0x76, 0x1c,0x87,0x19,0x5b,0x3,0xc0,0x73,0xd4,0xc8,0x3,0x1b,0x7,0xda,0x74,0xdd,0xae, 0x66,0x50,0x75,0x6b,0xe6,0x72,0xa4,0x35,0xcb,0x1c,0x1d,0x72,0xa2,0x47,0x20,0xbd, 0x3d,0xe,0x8e,0xd,0x15,0xb1,0x65,0xf3,0xeb,0x4c,0x54,0x12,0x4f,0xac,0x5d,0xcf, 0x7a,0x26,0x64,0x61,0xa7,0xd8,0xe7,0xe2,0xc3,0x53,0x9,0xfc,0x24,0xa9,0x71,0x41, 0xf0,0xc1,0x86,0x95,0x4b,0xf9,0xdf,0x79,0x99,0x77,0x22,0xaf,0xa3,0x7f,0x60,0xb7, 0xde,0x76,0x3a,0xc3,0x65,0x29,0x9e,0xe3,0xa1,0xad,0xb5,0x60,0x12,0x51,0x21,0x9f, 0x41,0xe0,0x28,0x73,0xf9,0xc8,0x70,0xb5,0x96,0x8c,0x76,0x8f,0xac,0x61,0x60,0x94, 0xf2,0x17,0xe5,0xe4,0x65,0x5e,0x7e,0x3a,0x75,0x70,0x79,0x3c,0x4a,0xbb,0xb,0x19, 0x74,0xb7,0xb9,0x48,0x8,0x60,0x4e,0xab,0x6b,0x5c,0x73,0x55,0x9b,0x67,0x2a,0xba, 0x72,0xa1,0xd3,0x5d,0x88,0x79,0x42,0x3a,0x26,0x79,0x61,0x96,0x6e,0x81,0xdd,0x73, 0xfb,0x77,0xfe,0x98,0x48,0x6f,0x5e,0xc4,0x7d,0x1c,0x26,0x36,0x9b,0x3a,0x8e,0xab, 0x6b,0x24,0x26,0xa6,0x98,0x61,0x90,0x54,0x76,0x8d,0x29,0xe7,0x8,0xd8,0x49,0xc2, 0x13,0x27,0xfb,0x57,0xdd,0x38,0x1b,0x0,0x3a,0x28,0xd7,0x50,0xba,0x66,0x10,0xc3, 0x89,0xb9,0xeb,0x0,0x83,0xb3,0x1,0xc0,0xd3,0xa7,0x9a,0xb9,0x38,0x4c,0x9f,0x51, 0x1d,0xea,0x1,0xa5,0xf4,0x9f,0x0,0x3,0x0,0xac,0x91,0xe,0x1b,0x34,0xa8,0xc5, 0x63,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82, // /home/Adel/ZeGrapher/icons/print.png 0x0,0x0,0x9,0x35, 0x89, 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, 0x0,0x0,0x30,0x0,0x0,0x0,0x30,0x8,0x6,0x0,0x0,0x0,0x57,0x2,0xf9,0x87, 0x0,0x0,0x8,0xfc,0x49,0x44,0x41,0x54,0x78,0xda,0xbd,0x9a,0x7b,0x4c,0xd4,0x57, 0x16,0xc7,0xcf,0xbd,0xf3,0xfa,0xd,0x4f,0x61,0xa8,0x28,0x28,0xa0,0xb2,0x6e,0xdd, 0xb5,0x2e,0xad,0x88,0xf2,0xd0,0x76,0x6b,0xb1,0x8,0x11,0x35,0x45,0xe8,0x2a,0xd6, 0x8a,0x85,0xb8,0x2e,0x8a,0x6b,0x5a,0x59,0x4,0xbb,0xd1,0xa,0xad,0xb1,0xfb,0xc7, 0xb2,0x49,0x9b,0x14,0x90,0x95,0x97,0x88,0x18,0x6a,0xd7,0x8d,0xa1,0xa9,0x45,0x51, 0xa1,0x54,0x40,0xd3,0x34,0x5b,0x63,0xa2,0x1b,0x5f,0xbb,0xca,0x4b,0x40,0xde,0xcc, 0xdc,0xbb,0xe7,0xfe,0x98,0x1,0x86,0x19,0xb3,0x45,0x7e,0xcc,0x4d,0x8,0xf7,0x37, 0xfc,0x7e,0xbf,0x7b,0x3f,0xf7,0x7c,0xcf,0xb9,0xe7,0xdc,0x81,0xc0,0x24,0xdb,0x91, 0x23,0x47,0xf8,0x64,0x9f,0x99,0x4c,0xcb,0xca,0xca,0x22,0x93,0xb9,0x7f,0x52,0x37, 0x5b,0x0,0x3c,0x3d,0xbd,0x61,0xc1,0x82,0x40,0x30,0x99,0x86,0xe5,0xcf,0x18,0x3, 0xa0,0x14,0x9e,0xab,0x2f,0x9a,0x4a,0xa5,0x86,0xbb,0x77,0xef,0x41,0x4b,0xcb,0x3, 0xc7,0x0,0xac,0x58,0x11,0x1,0xab,0x57,0xbf,0x2a,0x2c,0xc1,0xc7,0xbd,0xe7,0x79, 0xfb,0xf2,0x75,0x63,0x63,0x33,0xa9,0xae,0x3e,0xef,0x18,0x80,0xe0,0xe0,0xe5,0xf0, 0xe6,0x9b,0x6f,0x30,0x6c,0x96,0x75,0xc4,0x35,0x85,0xe7,0xed,0xa3,0x35,0x28,0xab, 0xab,0xfb,0x8e,0xd6,0xd4,0x5c,0x70,0xc,0xc0,0x2b,0xaf,0xac,0x80,0xb5,0x6b,0x57, 0x33,0x93,0xc9,0xa4,0x8,0x80,0x4a,0xa5,0x62,0x57,0xae,0x34,0xd0,0x4b,0x97,0xbe, 0x71,0x14,0x40,0x8,0x2,0x44,0x72,0xa3,0xd1,0xa8,0x88,0x84,0xd4,0x6a,0x35,0xb9, 0x7a,0xb5,0x9e,0x5c,0xbc,0xf8,0xad,0x63,0x0,0x96,0x2e,0xd,0x81,0xa8,0xa8,0x48, 0x36,0x3c,0x3c,0xac,0x88,0x5,0x34,0x1a,0xd,0xbb,0x7c,0xb9,0x9e,0xd6,0xd6,0x3a, 0x8,0xe0,0xe5,0x97,0x97,0x43,0x74,0xf4,0x1b,0x6c,0x68,0x68,0x48,0x11,0x0,0xad, 0x56,0x8b,0x12,0xfa,0xe,0x25,0xe4,0x30,0x1f,0x58,0x86,0x12,0x5a,0xc3,0x7,0x7, 0x7,0x15,0x91,0x90,0x4e,0xa7,0x23,0xb5,0xb5,0x75,0xe4,0xf2,0xe5,0x1a,0xc7,0x0, 0x4,0x5,0x85,0x40,0x4c,0x4c,0x24,0xeb,0xeb,0xeb,0x53,0xc4,0x2,0x7a,0xbd,0x1e, 0x2d,0x50,0x87,0x12,0xba,0xe8,0x28,0x9,0x2d,0x43,0x9,0x9,0x80,0x7e,0x45,0x0, 0x24,0x49,0x92,0x25,0xe4,0x30,0xb,0xac,0xa,0xd,0x83,0x95,0xaf,0xff,0x16,0x25, 0xc0,0x15,0xda,0xc8,0x8,0xb9,0x71,0xed,0x1a,0xf9,0xe7,0xd7,0x5f,0x2b,0x3,0x50, 0x5c,0x5c,0xfc,0x2e,0xc6,0xf8,0x30,0xce,0xb9,0x33,0x6e,0x56,0x5c,0xa7,0xa1,0xf0, 0x63,0xab,0x11,0xce,0xfe,0xd8,0x32,0xe4,0xa7,0x37,0xc6,0x78,0x79,0xcc,0x98,0xe9, 0x3d,0xeb,0x5,0x66,0x34,0x2a,0xb7,0xf,0x74,0xb4,0x3d,0xa1,0x6d,0xed,0xad,0x3d, 0xb7,0x7b,0x68,0xc5,0xb2,0x0,0x2f,0x5d,0xf4,0x2f,0x9c,0xa1,0x7f,0xd0,0x8,0x4, 0x73,0xe,0x42,0xc8,0x10,0x6e,0x76,0xd,0x6e,0x6e,0x6e,0x27,0x36,0x6c,0xd8,0x30, 0xf0,0x4c,0x80,0xc2,0xc2,0xc2,0x3d,0xf,0x1f,0x3e,0xfc,0xab,0x3d,0xa8,0xdc,0xc6, 0x2e,0xf0,0xf7,0xf1,0xc2,0x35,0xa7,0x60,0x34,0x99,0x0,0xf7,0x80,0xa9,0x4c,0xda, 0xa,0x40,0x5c,0x23,0x4,0xc5,0xfd,0x0,0x34,0x2a,0xa,0xff,0xfe,0xcf,0x63,0xf8, 0x34,0x6e,0x29,0x78,0xb8,0x48,0x60,0x64,0x5c,0x8c,0x5,0xf7,0xee,0xdd,0x3,0x8c, 0x7a,0x60,0x30,0x18,0xb2,0x93,0x93,0x93,0xb3,0x6c,0x0,0xf2,0xf2,0xf2,0xb2,0x1f, 0x3d,0x7a,0x74,0x20,0x36,0x36,0x96,0x2f,0x59,0xb2,0x4,0x26,0x9a,0xdb,0xe9,0xf5, 0x14,0x58,0xbf,0x71,0x1d,0x48,0xae,0x2e,0x44,0x58,0x65,0x8a,0xb2,0xb1,0xc9,0x85, 0x46,0xae,0x9,0x2,0xa8,0xc9,0xe9,0x92,0x32,0xfe,0xaf,0xf2,0x63,0xe0,0x6b,0x70, 0xb5,0x7a,0xe6,0xf6,0xed,0xdb,0x50,0x5e,0x5e,0x4e,0x3c,0x3d,0x3d,0x4b,0x77,0xed, 0xda,0x95,0x38,0xa,0x70,0xe6,0xcc,0x99,0x17,0x6f,0xde,0xbc,0xf9,0x53,0x62,0x62, 0x22,0xf8,0xf9,0xf9,0x81,0x48,0x72,0x2c,0x2b,0x44,0x9,0x61,0x68,0x43,0x2a,0x0, 0x7e,0x97,0x18,0x7,0xae,0xee,0x6e,0x96,0x14,0x42,0x51,0xb,0x8c,0xc,0x45,0x40, 0xad,0xd5,0xb0,0x82,0xbf,0x15,0xd0,0xa6,0xc2,0x43,0x10,0x38,0xd7,0xdb,0x2a,0xdf, 0x42,0x19,0xd1,0xae,0xae,0x2e,0xc8,0xcd,0xcd,0xc5,0x6c,0x78,0x41,0xe4,0x96,0x2d, 0x5b,0xbe,0x91,0x1,0xf2,0xf3,0xf3,0x2b,0x31,0x94,0xbd,0xb5,0x79,0xf3,0x66,0x4c, 0x91,0x4d,0x56,0x3,0x8,0x0,0xd4,0x21,0x95,0x5e,0x7d,0xf,0x52,0xff,0xb8,0x3, 0xdc,0xd,0x9e,0xcc,0x64,0x34,0x4e,0x1b,0x80,0x6,0x37,0xb5,0x9c,0xcc,0xa3,0xb4, 0xb9,0xf8,0x23,0x58,0x38,0x67,0x96,0x4d,0xbe,0x85,0x52,0x83,0x73,0xe7,0xce,0xc1, 0xfd,0xfb,0xf7,0x1b,0xd0,0xa,0x2b,0x64,0x0,0x11,0x59,0xd6,0xaf,0x5f,0xf,0x8b, 0x17,0x2f,0x96,0xf5,0x36,0x11,0x0,0x9f,0xa2,0xba,0x95,0x3b,0xe0,0xc0,0xa1,0x34, 0x30,0x78,0x1b,0xd0,0x79,0xa7,0xf,0x40,0xa7,0xd3,0xb2,0x7d,0x29,0x59,0xf4,0x7a, 0xf1,0x61,0xf8,0xa5,0x9f,0x8f,0x65,0xac,0xd1,0x7b,0x84,0x9f,0xa0,0x3f,0x70,0xc, 0x34,0x44,0x44,0xac,0x51,0x0,0x5c,0x7d,0x3e,0x6f,0xde,0x3c,0x8e,0xf9,0x8d,0x95, 0x46,0xc5,0x5b,0x55,0x6a,0x35,0x57,0x87,0x6f,0x87,0x3f,0xe7,0xec,0x3,0x2f,0x6f, 0x2f,0x62,0x1c,0x36,0x4e,0x8b,0xf,0x8,0x0,0x49,0xaf,0x23,0xa9,0xdb,0xd2,0xf9, 0xf,0xa5,0xd9,0xb0,0xd0,0x7f,0x36,0xc1,0xf9,0x58,0x3d,0x23,0x0,0x5a,0x5b,0x5b, 0x9,0xfa,0xac,0x35,0x40,0x42,0x42,0x2,0xf,0xc,0xc,0x24,0xc2,0xd3,0x27,0x5a, 0x40,0xad,0xd1,0x50,0x2d,0x5a,0xe0,0xe0,0x47,0x7b,0x65,0xb,0x30,0x13,0xa3,0xb2, 0x38,0xe9,0x48,0x5d,0x35,0x95,0xfe,0xf8,0x6b,0x1,0xa0,0x45,0xb,0xa4,0x25,0x65, 0xd0,0xe6,0xa2,0xc3,0xf0,0x62,0xc0,0x6c,0xcc,0xb7,0x86,0x6d,0x2c,0x80,0x0,0xc, 0x65,0x4f,0xad,0x0,0xe2,0xe3,0xe3,0xf9,0xfc,0xf9,0xf3,0x6d,0x1,0xb0,0xd8,0xc0, 0x5c,0x45,0x96,0x50,0x96,0xa3,0x0,0x76,0x64,0xd0,0xa6,0xbf,0x1f,0x82,0x45,0xfe, 0xde,0xac,0x7f,0xd0,0x16,0xa0,0xbd,0xbd,0x9d,0x15,0x14,0x14,0x58,0x3,0xc4,0xc5, 0xc5,0x71,0xf4,0x6c,0xbb,0x12,0xd2,0x49,0x12,0xd7,0x44,0xa0,0x84,0xb2,0xf7,0x21, 0x80,0x3,0x24,0xf4,0x6e,0x3a,0x6f,0x3e,0x71,0x58,0x0,0x90,0x81,0x21,0xa3,0x8d, 0x84,0xda,0xda,0xda,0xc8,0xf1,0xe3,0xc7,0xad,0x25,0xb4,0x69,0xd3,0x26,0xe1,0x3, 0xc4,0xc,0x60,0x25,0x21,0x7c,0x29,0x46,0xa1,0x14,0x48,0xff,0x30,0x15,0x7d,0x0, 0x9d,0x78,0x78,0xba,0xc2,0x28,0xa6,0xd6,0x3a,0x3d,0xfb,0xe0,0xf7,0x59,0xf4,0xfb, 0x82,0x83,0x8,0x30,0x9b,0xd,0xd8,0x91,0x10,0x2,0x30,0xdc,0x74,0x6d,0x2d,0x10, 0x10,0x10,0x60,0x17,0xc0,0xc9,0x59,0xa2,0xfa,0xd7,0x76,0xc2,0xae,0xb4,0x24,0xf0, 0x78,0xc1,0x3,0xc3,0xe8,0xf4,0xed,0x3,0x42,0x42,0xd9,0x7,0x8e,0xd1,0xab,0x5f, 0x64,0xc0,0xaf,0xfc,0x66,0x21,0x80,0xd1,0xae,0xf,0x14,0x15,0x15,0x59,0x3,0x6c, 0xdc,0xb8,0x51,0x8e,0x42,0x66,0x1f,0x18,0x93,0x10,0x4a,0xd3,0x55,0xaf,0xe3,0x4e, 0x91,0xa9,0xb0,0x35,0xe9,0x6d,0x70,0x71,0x77,0x23,0x8,0x30,0x4d,0x12,0x12,0x16, 0x90,0xc8,0xe7,0x7f,0xf9,0x8c,0x5f,0xfc,0x6c,0x3f,0xfc,0xda,0x6f,0x36,0x4a,0xc8, 0x36,0xa,0xa1,0xf,0x10,0x9b,0x30,0x8a,0x49,0x92,0x5d,0x9,0x89,0xbe,0xbb,0xbb, 0x3b,0xf5,0x5c,0x9b,0xa,0xab,0x5e,0x5b,0x9,0xde,0x73,0x30,0x36,0x8f,0x94,0x92, 0x8a,0x5b,0x0,0xf7,0x1b,0xc0,0x22,0x89,0x55,0x94,0x56,0xd2,0x7b,0x15,0x1f,0x83, 0xb3,0x5e,0xcb,0x8c,0x26,0x66,0x57,0x42,0x25,0x25,0x25,0xd6,0x16,0xc0,0x8d,0x4c, 0x96,0xd0,0xc4,0x28,0x24,0xfa,0x9e,0x6e,0xce,0xf4,0x40,0xde,0x57,0xf0,0xf9,0xd9, 0x4b,0x10,0x12,0x1a,0xc2,0x24,0x9d,0x44,0x31,0x53,0x55,0x16,0x0,0xd3,0x15,0xb4, 0x2c,0xfc,0x70,0xbd,0x99,0x2d,0xf4,0x9d,0x49,0x2f,0xe4,0xbe,0xf,0x1d,0x1d,0x4f, 0x6c,0x9e,0x11,0x0,0x1d,0x1d,0x1d,0xac,0xb4,0xb4,0xd4,0x1a,0x40,0x24,0x71,0x8, 0x60,0x13,0x85,0x44,0x1f,0x2f,0xb8,0x87,0xa7,0x3b,0x1c,0xfc,0xe2,0x4b,0xc8,0x3f, 0x77,0x85,0x74,0xf7,0xf5,0x73,0x15,0x21,0x8a,0x4a,0x88,0xe1,0x8a,0x68,0x35,0x2a, 0x88,0x8d,0x8,0x22,0x85,0xfb,0xb7,0xf2,0xae,0xde,0x7e,0xc,0xaf,0xdc,0xe6,0x19, 0x91,0x4a,0x20,0x0,0x29,0x2b,0x2b,0xb3,0x96,0xd0,0xba,0x75,0xeb,0xb8,0xbf,0xbf, 0xbf,0x2c,0x21,0x7b,0x31,0x5b,0xdc,0x38,0xc3,0xd5,0x9,0x54,0x98,0x6c,0x81,0x9c, 0x9f,0x10,0x85,0x25,0x84,0x79,0xba,0x5a,0x5,0x7c,0x68,0x98,0x75,0xf6,0xf4,0x53, 0x13,0x26,0xbc,0xf6,0xe6,0x61,0x6,0x60,0x98,0x95,0x5a,0x5b,0x20,0x26,0x26,0x86, 0xcf,0x9d,0x3b,0x57,0x6,0xc0,0xc5,0x15,0xb,0x42,0x47,0x96,0x7f,0xac,0x6f,0xb9, 0x36,0xf,0xae,0xb8,0xf,0x58,0xfa,0xf6,0xc6,0xb6,0xf4,0x2d,0x12,0x3a,0x7d,0xfa, 0xb4,0x35,0x40,0x74,0x74,0x34,0x9f,0x33,0x67,0xe,0x37,0x27,0x73,0x76,0x4d,0x37, 0xc1,0xfc,0xd3,0x50,0xf,0x8c,0xf5,0xcd,0x59,0xf1,0x33,0x25,0x84,0x25,0x80,0xb5, 0x84,0xa2,0xa2,0xa2,0xb8,0xaf,0xaf,0xaf,0x4d,0x14,0x12,0xe5,0x9e,0x87,0x87,0x7, 0x6d,0x69,0x69,0x1,0x19,0x42,0xd4,0xa,0xc2,0xac,0x96,0xdf,0x66,0xfb,0x3e,0x77, 0xdf,0xce,0xdf,0xc4,0xe1,0x35,0x16,0x2d,0xd0,0xd3,0xd3,0x63,0x73,0x78,0x26,0x2c, 0xf0,0xe4,0xc9,0x13,0x56,0x55,0x55,0x65,0x6d,0x81,0x35,0x6b,0xd6,0xc8,0x0,0xe3, 0xd3,0x69,0xf1,0x4e,0xad,0x46,0xc3,0x92,0xb6,0x6f,0xa7,0x3d,0xbd,0xbd,0x32,0x80, 0x78,0xff,0xd0,0xd0,0x20,0x1d,0x1c,0x1c,0x9a,0x7a,0x2e,0x24,0xce,0x4,0x70,0xa, 0xe2,0x5a,0xab,0xd5,0x52,0x49,0x92,0x46,0x25,0x24,0x26,0x9a,0x97,0x9f,0xcf,0x34, 0x98,0x48,0x8e,0xaf,0x51,0xc4,0x1c,0xb0,0xa8,0xb1,0x5,0x58,0xb5,0x6a,0x15,0x60, 0x32,0xc7,0xc6,0x47,0x21,0x27,0x27,0x27,0xf8,0xb2,0xaa,0x4a,0x98,0x8b,0xe3,0x5e, 0x20,0x2f,0x3,0x2,0x92,0xa5,0xc1,0xc1,0x93,0x3e,0xcd,0xf8,0x39,0xed,0xc6,0xf5, 0xeb,0x8c,0x98,0xa3,0x1b,0xae,0x3e,0xe0,0x9c,0xc8,0x7b,0x29,0x29,0xbc,0xe7,0xe9, 0xd3,0xd1,0x39,0x9,0x30,0x2c,0x7d,0x49,0x75,0x75,0xf5,0x98,0x84,0x30,0x31,0xaa, 0xc4,0x5,0x79,0xb,0xfd,0x0,0x9e,0x8e,0xdc,0x2c,0xd3,0xba,0xb8,0xb8,0x40,0x71, 0x49,0x9,0xbb,0x54,0x53,0x43,0x5,0xc,0xae,0xc,0xf4,0xf6,0xf6,0xb1,0xd0,0xb0, 0x50,0x9a,0x99,0x99,0xa9,0xe8,0xe9,0x74,0x76,0x76,0x36,0x6d,0x6e,0x6a,0x46,0xb3, 0x13,0xb9,0xc0,0x1f,0x18,0x18,0x80,0x25,0x2f,0xbd,0xc4,0xf6,0xec,0xdd,0x4b,0xbb, 0xbb,0xbb,0x47,0x9f,0x71,0x76,0x76,0x86,0xda,0xda,0x5a,0xb8,0x75,0xeb,0x16,0x8c, 0x2,0x88,0x9a,0x18,0xb,0xe6,0x9f,0x90,0x98,0xa1,0x23,0x43,0x7f,0x7f,0x3f,0xc1, 0xc9,0x72,0x1,0x70,0xf2,0xe4,0x49,0xf2,0xed,0x85,0xb,0xb2,0x35,0x84,0x3f,0xf5, 0xf5,0xf6,0x93,0xd0,0xf0,0x30,0xb2,0x7f,0xff,0x7,0xbc,0xf,0xf7,0x3,0x25,0x9c, 0x58,0xaf,0x97,0xc8,0xb1,0x63,0x9f,0x92,0xa6,0xc6,0x26,0x9c,0xbc,0x48,0x89,0x8, 0x17,0x0,0x41,0x41,0x41,0xe4,0xf,0xa9,0xa9,0x5c,0x0,0x88,0xf,0x31,0xad,0xe7, 0xa8,0x7f,0x38,0x7f,0xfe,0x3c,0xc5,0x88,0x39,0x56,0x13,0x9b,0xad,0x90,0x8d,0x49, 0xd2,0x81,0xe0,0xe0,0x60,0x58,0xb4,0x68,0x91,0x5c,0xca,0xa1,0x2e,0x5,0x29,0xfb, 0xf0,0xe0,0x41,0x6a,0x30,0x18,0x64,0x3f,0x13,0x16,0x8,0xb,0xf,0xa3,0x19,0x19, 0x7f,0x52,0xf4,0x64,0xee,0xe8,0xd1,0xa3,0x14,0x1,0x64,0xb,0x88,0xbf,0x75,0x76, 0x76,0xc2,0xee,0xb4,0x34,0x16,0x16,0x1a,0x2a,0x5b,0x43,0x58,0xe9,0xce,0x9d,0x3b, 0xb4,0xbe,0xbe,0x1e,0xdc,0xdc,0xdc,0xca,0x76,0xee,0xdc,0xb9,0xc5,0xb2,0x12,0xa3, 0xd,0x13,0xa4,0x3d,0x77,0xef,0xde,0xb5,0x7b,0x2e,0xd4,0xf2,0xf8,0xb1,0xc8,0x41, 0x30,0x2,0x74,0xb2,0xf0,0x88,0x70,0x4,0xc8,0x50,0xf0,0x6c,0x54,0x62,0x9f,0x7c, 0x82,0x0,0xd7,0x1a,0x81,0x50,0xc2,0xfd,0xfc,0xfc,0x88,0xab,0xab,0x2b,0x84,0x2c, 0x5f,0x2e,0x4b,0x5a,0xc4,0x25,0x31,0xb6,0x70,0x66,0x8c,0x88,0x39,0x49,0x49,0x49, 0x99,0x96,0x67,0x6d,0x9c,0xb1,0xb2,0xb2,0x52,0x84,0xd2,0x6d,0xe3,0x4f,0xe6,0xf4, 0x7a,0xbd,0x7c,0x3a,0xf6,0x8f,0xaf,0xce,0xc6,0xb6,0xb4,0xb4,0x19,0x22,0x56,0x46, 0x80,0xf0,0x1,0x94,0x9a,0x62,0x16,0xc8,0xc9,0xc9,0xa1,0x8d,0x8,0x20,0x52,0xac, 0x4d,0xf1,0xf1,0x5,0xf8,0x99,0x84,0xb,0x24,0xc6,0x95,0xc7,0xc6,0x9f,0x6,0x94, 0xf4,0x9,0xcc,0xd9,0x9e,0x7d,0x32,0xf7,0xff,0xda,0xdb,0x9,0x9,0x75,0xdd,0xdd, 0x4f,0x43,0x51,0x42,0x2,0x80,0x23,0x80,0x42,0x3e,0xa0,0x27,0xe8,0xc4,0x44,0x58, 0x0,0xeb,0x1,0x38,0x55,0x51,0xf1,0xb3,0xe7,0x35,0x29,0x80,0x6d,0xef,0xbc,0xd3, 0xd0,0xda,0xda,0x16,0x62,0x6,0x50,0xf4,0xb,0xe,0x11,0x85,0x4,0x80,0x4e,0xd2, 0x41,0xf9,0xa9,0x53,0x8e,0x1,0x50,0xf2,0x2b,0x26,0x87,0x0,0x6c,0x4d,0x4c,0xbc, 0xd1,0xde,0xd6,0xfe,0x9b,0xb0,0x88,0x70,0x59,0x42,0x4a,0x7e,0xc9,0x27,0x24,0x24, 0x7c,0x40,0x9a,0x4e,0x80,0x94,0xe4,0xe4,0xf7,0x1f,0x3c,0x7c,0x70,0x28,0x2c,0x2c, 0xdc,0x69,0x3a,0x36,0xb2,0xc6,0xef,0xaf,0xf5,0xb9,0xcf,0x70,0x3b,0x7b,0xa2,0xa8, 0x78,0xf3,0xb4,0x0,0x58,0x9a,0x48,0x3d,0x4,0x80,0x92,0x5f,0x74,0xb,0x0,0x8d, 0xc6,0x49,0x9f,0x9e,0xbe,0x6f,0x0,0x26,0xd1,0xa6,0x2,0xa0,0xe8,0xbf,0x1a,0x8, 0x9,0xb9,0xbb,0xcf,0xf4,0xd9,0xbd,0x3b,0xe5,0xbf,0xe,0x1,0x88,0x8b,0x4b,0x0, 0x73,0xfd,0x3c,0xe5,0x26,0x76,0xfc,0xca,0xca,0x53,0xe0,0xe3,0xe3,0x2f,0x25,0x25, 0x6d,0x1d,0x74,0x8,0x80,0x22,0x33,0x9f,0xd0,0x26,0xfb,0xfd,0x98,0x68,0xff,0x3, 0x95,0x1,0x69,0x8b,0x55,0xd0,0x89,0x7d,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44, 0xae,0x42,0x60,0x82, // /home/Adel/ZeGrapher/icons/zoom-box.png 0x0,0x0,0x30,0xd3, 0x89, 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, 0x0,0x0,0x80,0x0,0x0,0x0,0x80,0x8,0x6,0x0,0x0,0x0,0xc3,0x3e,0x61,0xcb, 0x0,0x0,0x0,0x1,0x73,0x52,0x47,0x42,0x0,0xae,0xce,0x1c,0xe9,0x0,0x0,0x0, 0x6,0x62,0x4b,0x47,0x44,0x0,0xff,0x0,0xff,0x0,0xff,0xa0,0xbd,0xa7,0x93,0x0, 0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0x24,0xe9,0x0,0x0,0x24,0xe9,0x1, 0x50,0x24,0xe7,0xf8,0x0,0x0,0x0,0x7,0x74,0x49,0x4d,0x45,0x7,0xd8,0xb,0x11, 0x12,0x25,0x1e,0xa0,0x92,0xaf,0x93,0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0x78, 0xda,0xed,0x7d,0x79,0x9c,0x1b,0xc5,0x9d,0xef,0xb7,0x5a,0x6a,0xdd,0x23,0x8d,0xe6, 0x3e,0x7c,0x8d,0x8f,0xb1,0x1d,0xb0,0x31,0x87,0xd,0xe6,0x30,0xd7,0xc6,0x7,0x38, 0x98,0xc3,0x49,0x8,0x1,0xb2,0xf0,0xc0,0x9,0x39,0x8,0xc9,0x46,0x24,0x1,0x27, 0xcb,0x26,0x81,0x85,0x88,0x80,0x63,0xc2,0xbe,0x3c,0xb2,0x9b,0x17,0x48,0x80,0x6c, 0xb2,0x9c,0x81,0x15,0x4,0x30,0xe6,0x32,0x9,0x18,0x6c,0x83,0xef,0xf1,0x35,0xe3, 0xb9,0x67,0x24,0xcd,0xe8,0x3e,0xba,0xaa,0xde,0x1f,0xdd,0x55,0x6a,0x69,0xc6,0xd8, 0x6,0xf6,0xe1,0x19,0x54,0x1f,0xb7,0xd5,0xd3,0x92,0x5a,0xdd,0xfd,0xfb,0xfe,0xee, 0x5f,0xfd,0x8a,0x70,0xce,0x51,0x1e,0x9f,0xde,0xa1,0x94,0x1f,0x41,0x19,0x0,0xe5, 0x51,0x6,0x40,0x79,0x94,0x1,0x50,0x1e,0x9f,0xca,0x61,0x1d,0xab,0x17,0x1e,0xc, 0x6,0x9,0x80,0x1a,0x0,0xcd,0x0,0xea,0x1,0xc4,0x0,0x74,0x3,0xe8,0x9,0x4, 0x2,0xb9,0x32,0x69,0x8f,0x6c,0x90,0x63,0xd9,0xb,0x8,0x6,0x83,0xa,0x80,0xd3, 0x0,0x9c,0x9,0x60,0x2,0x80,0x26,0x63,0x6b,0x6,0xd0,0x8,0x40,0x1d,0xe5,0x6b, 0x1c,0xc0,0xa0,0x1,0x6,0xb1,0x75,0x1,0x78,0x1f,0xc0,0xf3,0x81,0x40,0x20,0x5e, 0x26,0xfb,0x31,0xc,0x80,0x60,0x30,0x68,0x3,0x70,0x3e,0x80,0x8b,0x1,0xac,0x30, 0xb8,0xfb,0xe3,0x1a,0x59,0x0,0x2f,0x1,0x78,0x12,0xc0,0xd3,0x81,0x40,0xa0,0xaf, 0xc,0x80,0x63,0x0,0x0,0xc1,0x60,0xd0,0x7,0x60,0x19,0x80,0x4b,0x8c,0xd7,0x8a, 0xd2,0xcf,0xd8,0xed,0x76,0xf8,0xfd,0x7e,0xf8,0xfd,0x7e,0x54,0x56,0x56,0xc2,0xeb, 0xf5,0xc2,0xe3,0xf1,0xc0,0xe5,0x72,0xc1,0x62,0xb1,0x20,0x93,0xc9,0x20,0x99,0x4c, 0x22,0x1e,0x8f,0x23,0x16,0x8b,0x21,0x1a,0x8d,0x22,0x1a,0x8d,0x22,0x95,0x4a,0x21, 0x97,0x1b,0x55,0x23,0x30,0x0,0x6f,0x1a,0x60,0x78,0x32,0x10,0x8,0xec,0x29,0x3, 0xe0,0xff,0x3f,0xe1,0xab,0x0,0xdc,0xa,0xe0,0x1b,0x0,0xec,0xa5,0x4,0x3f,0xe1, 0x84,0x13,0xd0,0xda,0xda,0x8a,0xda,0xda,0x5a,0x58,0xad,0x1f,0xce,0x5c,0xd1,0x34, 0xd,0xc9,0x64,0x12,0x5d,0x5d,0x5d,0xd8,0xb1,0x63,0x7,0x3a,0x3b,0x3b,0xf,0x5, 0x88,0x97,0x0,0x7c,0x3f,0x10,0x8,0xbc,0x53,0x6,0xc0,0xff,0x3c,0xe1,0x1d,0x0, 0x6e,0x4,0xf0,0x43,0x0,0x95,0xe2,0xb8,0xdf,0xef,0xc7,0xbc,0x79,0xf3,0x30,0x75, 0xea,0x54,0xf8,0xfd,0x7e,0x10,0x42,0x3e,0xd6,0xdf,0xe5,0x9c,0x23,0x95,0x4a,0xa1, 0xbf,0xbf,0x1f,0x3b,0x77,0xee,0xc4,0xfe,0xfd,0xfb,0x91,0x4c,0x26,0x4b,0xed,0x87, 0xff,0x4,0x70,0x6b,0x20,0x10,0xd8,0x57,0x6,0xc0,0xff,0x8c,0x51,0x77,0x15,0x80, 0x9f,0x2,0x98,0x28,0x8e,0xcf,0x9b,0x37,0xf,0xa7,0x9d,0x76,0x1a,0x2a,0x2a,0x2a, 0x46,0xfd,0x5e,0x2e,0x97,0x43,0x3e,0x9f,0x87,0xa6,0x69,0xd0,0x34,0xd,0x94,0xd2, 0xa2,0x7d,0x0,0xb0,0x58,0x2c,0xb0,0x5a,0xad,0xb0,0x5a,0xad,0x45,0xfb,0xaa,0xaa, 0xc2,0x66,0xb3,0x8d,0x7a,0xde,0x4c,0x26,0x83,0xce,0xce,0x4e,0x6c,0xda,0xb4,0x9, 0xed,0xed,0xed,0x30,0x3d,0x8b,0x3c,0x80,0x5f,0x3,0xf8,0x69,0x20,0x10,0x18,0x28, 0x3,0xe0,0xe3,0x21,0xfe,0x52,0x0,0x77,0x1,0x98,0x2b,0x8e,0x4d,0x9b,0x36,0xd, 0xe7,0x9f,0x7f,0x3e,0x7c,0x3e,0xdf,0xa8,0xc4,0x49,0x26,0x93,0x48,0x26,0x93,0xc8, 0xe7,0xf3,0x1f,0xe9,0xb7,0x55,0x55,0x85,0xdb,0xed,0x86,0xdb,0xed,0x86,0xc3,0xe1, 0x18,0xf1,0x7e,0x3a,0x9d,0x46,0x47,0x47,0x7,0xde,0x7e,0xfb,0x6d,0xf4,0xf4,0xf4, 0x98,0xdf,0x8a,0x3,0xf8,0x39,0x80,0x5f,0x4,0x2,0x81,0x74,0x19,0x0,0x1f,0x8e, 0xf0,0x16,0x0,0x41,0x0,0xdf,0x11,0xc7,0x1a,0x1a,0x1a,0xb0,0x64,0xc9,0x12,0xd4, 0xd5,0xd5,0x8d,0x20,0x44,0x22,0x91,0x40,0x32,0x99,0x94,0x9c,0xfd,0x71,0xf,0x8b, 0xc5,0x2,0xb7,0xdb,0xd,0x8f,0xc7,0x3,0xa7,0xd3,0x59,0xf4,0x5e,0x22,0x91,0xc0, 0x9e,0x3d,0x7b,0xb0,0x71,0xe3,0x46,0x44,0xa3,0x51,0xf3,0x5b,0xef,0x0,0x58,0x11, 0x8,0x4,0xba,0xca,0x0,0x38,0x7a,0xeb,0xfe,0x51,0xc3,0xb2,0x87,0xd7,0xeb,0xc5, 0xd2,0xa5,0x4b,0x31,0x69,0xd2,0xa4,0x22,0xfd,0x9e,0x4e,0xa7,0x11,0xe,0x87,0x91, 0xcd,0x66,0xf,0xa3,0xc3,0x81,0xe1,0x54,0x1e,0xd1,0x44,0xe,0x91,0x78,0xe,0x43, 0xc9,0x3c,0x22,0x71,0xdd,0xa0,0xab,0xaa,0xb0,0xa1,0xd2,0xad,0xa2,0xaa,0xc2,0x6, 0xbf,0xc7,0x6,0x9f,0x4b,0xc5,0xe1,0x4c,0x8,0xbb,0xdd,0x8e,0xea,0xea,0xea,0x22, 0x20,0x70,0xce,0x11,0x8b,0xc5,0xb0,0x6d,0xdb,0x36,0x6c,0xde,0xbc,0xd9,0x6c,0x23, 0xf4,0x0,0xb8,0x24,0x10,0x8,0xfc,0xbd,0xc,0x80,0x23,0x23,0xfe,0x74,0x0,0x4f, 0x3,0x98,0xd,0x0,0xd3,0xa7,0x4f,0xc7,0xf2,0xe5,0xcb,0xa1,0xaa,0x6a,0x91,0x6e, 0xf,0x87,0xc3,0x48,0xa5,0x52,0xa3,0x9e,0x83,0x32,0x8e,0xed,0x7,0x63,0x78,0x7b, 0x77,0x4,0xef,0xee,0x1d,0xc2,0xc0,0x70,0x16,0x94,0x1d,0xd9,0xf5,0x5a,0x14,0x82, 0x1a,0xaf,0x1d,0x27,0x4e,0xab,0xc4,0x82,0xd6,0x2a,0x1c,0x37,0xc9,0xb,0x8b,0x32, 0x3a,0x22,0x5c,0x2e,0x17,0xaa,0xab,0xab,0x8b,0x6c,0x5,0x4d,0xd3,0xd0,0xdd,0xdd, 0x8d,0x37,0xde,0x78,0x3,0x9d,0x9d,0x9d,0x52,0x33,0x1,0xb8,0x2e,0x10,0x8,0x3c, 0x5c,0x6,0xc0,0x7,0x13,0xff,0x3c,0x0,0x7f,0x6,0x50,0x5,0x0,0xb,0x17,0x2e, 0xc4,0x19,0x67,0x9c,0x21,0xb9,0x5e,0xd3,0x34,0x44,0x22,0x11,0xc4,0xe3,0x23,0x83, 0x72,0xd9,0x3c,0xc3,0xe6,0x7d,0x43,0x78,0x6b,0x77,0x4,0x1b,0xf7,0x44,0x91,0xcc, 0x68,0x1f,0xcb,0x35,0xb9,0x1d,0x56,0x9c,0x64,0x80,0x61,0xde,0xd4,0x4a,0x38,0x6d, 0x96,0x11,0x9f,0xa9,0xa8,0xa8,0x40,0x55,0x55,0x95,0x74,0x39,0x39,0xe7,0xe8,0xef, 0xef,0xc7,0xc6,0x8d,0x1b,0xb1,0x7d,0xfb,0x76,0xf3,0x47,0xef,0x4,0x70,0x4b,0x20, 0x10,0xe0,0x65,0x0,0x8c,0x24,0xfe,0xd7,0x1,0xfc,0x12,0x46,0x9e,0x61,0xc5,0x8a, 0x15,0x68,0x6d,0x6d,0x2d,0xd2,0xb3,0xfd,0xfd,0xfd,0x28,0xfd,0xdd,0x4c,0x8e,0xe2, 0xe9,0xb7,0x7a,0xf0,0xf4,0xdf,0xbb,0x91,0xc9,0x8d,0xd4,0xff,0x4e,0x87,0xaa,0xb9, 0x9d,0xf6,0x98,0xaa,0x5a,0xd2,0xaa,0x6a,0x4d,0xa8,0x56,0x6b,0xd2,0x6e,0x57,0x53, 0xe,0x87,0x9a,0xd1,0x8d,0xc6,0xbc,0x23,0x93,0xcd,0x3b,0x73,0xb9,0xbc,0x4b,0xd3, 0xa8,0x3b,0x9f,0xd7,0x5c,0xf1,0x64,0xd6,0x97,0xcb,0x6b,0x23,0xc2,0xc5,0xe,0x9b, 0x5,0x17,0x9d,0xda,0x84,0x8b,0x16,0x34,0xc2,0x51,0x2,0x4,0x42,0x8,0xea,0xea, 0xea,0xe0,0xf1,0x78,0xe4,0xb1,0x68,0x34,0x8a,0xad,0x5b,0xb7,0x62,0xe3,0xc6,0x8d, 0xd0,0x34,0x9,0xc8,0xa7,0x1,0x5c,0x39,0xd6,0x43,0xcb,0x1f,0x2b,0x0,0x82,0xc1, 0xe0,0x37,0x1,0xdc,0x7,0x0,0xe,0x87,0x3,0x97,0x5f,0x7e,0x39,0x6a,0x6b,0x6b, 0xe5,0xfb,0xe1,0x70,0x18,0x43,0x43,0x43,0x23,0xc4,0xfc,0x5f,0x37,0xf5,0xe1,0xbf, 0x5e,0xef,0xc4,0x70,0xaa,0xd8,0xda,0xf7,0x7a,0x1c,0x19,0xbf,0xcf,0xdd,0x5d,0x55, 0xe5,0xdd,0xef,0xf7,0xb9,0x87,0x3e,0xcc,0x35,0x85,0xa3,0xf1,0xaa,0x81,0xc1,0x58, 0xd3,0x50,0x2c,0x39,0x21,0x95,0xce,0xb9,0xcd,0xef,0xf9,0x5c,0x2a,0x56,0x9e,0x39, 0x1,0x8b,0x4f,0xac,0x1f,0xa1,0x1e,0xfc,0x7e,0x3f,0xaa,0xaa,0xaa,0xe4,0xdf,0xc9, 0x64,0x12,0x6d,0x6d,0x6d,0x78,0xe3,0x8d,0x37,0xcc,0x2a,0x6b,0x3d,0x80,0xcf,0x6, 0x2,0x1,0xed,0x53,0xf,0x80,0x60,0x30,0x78,0x3e,0x80,0xe7,0x0,0x58,0x7d,0x3e, 0x1f,0xae,0xbc,0xf2,0x4a,0xb8,0x5c,0x2e,0x0,0x0,0x63,0xc,0xfd,0xfd,0xfd,0xa5, 0x41,0x17,0xbc,0xb1,0x7d,0x10,0x8f,0xbe,0x7a,0x10,0xbd,0xd1,0x8c,0x3c,0x66,0x53, 0x2d,0xac,0xb9,0xc1,0xbf,0xaf,0xb6,0xa6,0xb2,0xcd,0xe3,0x76,0x8c,0x6a,0x1c,0x10, 0x2,0x38,0x6d,0x56,0xab,0xd7,0x69,0xb5,0x39,0x6c,0x16,0x6b,0x3c,0x9d,0xcf,0xc5, 0x52,0x5a,0x2e,0x4f,0x19,0xfb,0xa0,0x6b,0x8c,0x27,0xd2,0x9e,0x9e,0xfe,0xa1,0xe6, 0xbe,0xfe,0xa1,0x99,0x79,0x8d,0x4a,0xc9,0xd0,0xe0,0x77,0xe0,0x4b,0x8b,0x26,0xe2, 0xf4,0xcf,0xd4,0xc0,0xc,0x3,0xb7,0xdb,0x8d,0xba,0xba,0x3a,0x28,0x8a,0x9e,0x35, 0xcf,0x66,0xb3,0xd8,0xbf,0x7f,0x3f,0x36,0x6c,0xd8,0x80,0x70,0x38,0x2c,0x3e,0xf6, 0xeb,0x40,0x20,0x70,0xc3,0xa7,0x1a,0x0,0xc1,0x60,0x70,0x6,0x80,0xbf,0x3,0xf0, 0xab,0xaa,0x8a,0x6b,0xaf,0xbd,0x16,0x5e,0xaf,0x57,0xea,0xfb,0x9e,0x9e,0x9e,0xa2, 0xf0,0x6b,0x4e,0x63,0xf8,0xb7,0x67,0xf7,0xe2,0xf5,0xed,0x83,0x26,0xf7,0x4c,0xe1, 0x13,0xea,0x2b,0xf,0x4e,0x9c,0x58,0xb7,0xd9,0xa6,0x5a,0x8b,0x44,0x41,0x53,0x95, 0xd3,0x3d,0xbd,0xd1,0x53,0xd5,0xe4,0x77,0xfa,0x5c,0x76,0x8b,0xcd,0xae,0x5a,0x54, 0x85,0x10,0x85,0x73,0xce,0x39,0xc0,0xb9,0xb1,0x93,0xc9,0xd3,0x5c,0x32,0x4b,0x73, 0xc9,0x8c,0x96,0xed,0x89,0xa6,0x63,0xbb,0xbb,0x13,0xd1,0x54,0x56,0x1b,0xc1,0x9d, 0xf9,0x3c,0x55,0xf7,0x1c,0xe8,0x6d,0xed,0x1f,0x18,0x6a,0xa5,0x8c,0xcb,0x9a,0x88, 0xd3,0x66,0x56,0xe3,0x5b,0x9f,0x9b,0xe,0xbb,0x5a,0x28,0x93,0xb0,0xd9,0x6c,0x68, 0x6c,0x6c,0x94,0x76,0x41,0x2a,0x95,0x42,0x47,0x47,0x7,0xd6,0xaf,0x5f,0x6f,0xb6, 0x61,0xbe,0x19,0x8,0x4,0xee,0xff,0x54,0x2,0xc0,0x70,0xf5,0xfe,0x6,0x60,0x16, 0x0,0x5c,0x71,0xc5,0x15,0x68,0x6e,0x6e,0x96,0x56,0x7e,0x77,0x77,0x77,0x91,0x4f, 0x1f,0x89,0xe7,0x70,0xd7,0x63,0xbb,0xb0,0xb7,0x27,0x21,0x75,0x6e,0x53,0x9d,0xaf, 0x7f,0xe2,0x84,0xba,0xb7,0x5d,0x4e,0x9b,0x14,0x5,0x53,0xea,0xdc,0xde,0xd9,0x13, 0xbc,0xb5,0x13,0x6b,0x5c,0x55,0x2e,0x9b,0xc5,0x6e,0xc4,0x69,0xb9,0x71,0xbd,0x6, 0xe5,0xc1,0x59,0x9,0x8,0x18,0xe7,0x4c,0xbc,0x32,0x6,0xde,0x3b,0x94,0x1e,0xde, 0xdb,0x9b,0x8c,0xec,0xeb,0x4b,0xc,0x53,0x56,0x7c,0xb3,0xe9,0x4c,0xce,0xb1,0x67, 0x7f,0xef,0x71,0x83,0x91,0xd8,0x64,0xce,0x75,0xe6,0x6f,0xa9,0x77,0xe3,0xfb,0x2b, 0x67,0xa1,0xc6,0x6b,0x2b,0x8a,0x1d,0x34,0x35,0x35,0x49,0x2f,0x61,0x68,0x68,0x8, 0xed,0xed,0xed,0x78,0xf9,0xe5,0x97,0x45,0x90,0x4a,0x3,0xb0,0x34,0x10,0x8,0xbc, 0xf4,0xa9,0x2,0x80,0x11,0xe4,0x79,0x16,0xc0,0x12,0x0,0x58,0xba,0x74,0x29,0xe6, 0xcc,0x99,0x23,0xc5,0x7e,0x67,0x67,0x67,0x51,0x14,0xaf,0xad,0x3b,0x81,0x9f,0x3f, 0xb6,0xb,0xd1,0x44,0x4e,0x18,0x76,0x74,0xf6,0x8c,0xe6,0xd7,0x2a,0x7d,0x1e,0x29, 0x4f,0x1b,0x2a,0x1d,0xae,0x45,0xc7,0xd5,0xb6,0x4c,0xa8,0x72,0xe9,0xa,0x98,0x80, 0x80,0xc3,0xb8,0x4a,0xe,0xae,0xef,0x73,0xce,0x8d,0xfd,0x91,0x20,0xe0,0x8c,0x73, 0xce,0xb8,0xfe,0xb7,0x78,0xcd,0xe5,0x99,0xb6,0xb3,0x3b,0xde,0xbf,0xe5,0xc0,0xd0, 0x0,0x2b,0x1,0x42,0x64,0x28,0xe1,0xdf,0xbe,0xab,0xf3,0xf4,0x5c,0x5e,0x73,0x0, 0x40,0xa5,0x5b,0xc5,0xcd,0x97,0xcd,0x44,0x6b,0x73,0x45,0x51,0x34,0xb1,0xb9,0xb9, 0x19,0x16,0x8b,0x6e,0x34,0xe,0xc,0xc,0xa0,0xad,0xad,0xd,0x1b,0x36,0x6c,0x10, 0x6,0x6d,0x14,0xc0,0xa9,0x81,0x40,0xa0,0x6d,0x2c,0x1,0xc0,0x72,0xdb,0x6d,0xb7, 0x7d,0xe8,0x2f,0x6f,0xd8,0xb0,0xe1,0x1e,0x0,0x57,0x2,0xc0,0x49,0x27,0x9d,0x84, 0x53,0x4f,0x3d,0x15,0x84,0x10,0x70,0xce,0xd1,0xdb,0xdb,0x5b,0x14,0xd8,0x79,0x75, 0xeb,0x0,0x82,0x8f,0xed,0x46,0x32,0xab,0x4b,0x64,0xbf,0xd7,0x99,0x9a,0x33,0x7b, 0xf2,0xb,0x1e,0x8f,0x33,0x6e,0x18,0x64,0xb6,0xc5,0x27,0x34,0x4c,0x3d,0xfb,0xb8, 0xda,0xd6,0x4a,0x97,0xcd,0x45,0x8,0x8,0x51,0x74,0xcf,0x91,0x10,0xe8,0x2f,0x84, 0x10,0x22,0xb4,0xb4,0x29,0x92,0x24,0x8f,0x81,0x80,0x1b,0xaf,0x28,0x79,0x55,0x14, 0xa2,0xd4,0x7a,0xed,0x9e,0x49,0xb5,0xae,0x8a,0xe1,0x64,0x3e,0x9d,0x34,0xa9,0x6, 0xa7,0xc3,0x96,0xa9,0xab,0xf1,0x76,0x44,0x87,0x92,0xd5,0xb9,0xbc,0xe6,0xca,0xe4, 0x19,0x5e,0xdd,0x3a,0x88,0x3a,0x9f,0x1d,0x93,0xeb,0xdc,0x12,0xd0,0xd9,0x6c,0x16, 0x1e,0x8f,0x7,0x84,0x10,0xb8,0x5c,0x2e,0xa9,0x16,0xfa,0xfa,0xfa,0x0,0xc0,0x9, 0xe0,0xb3,0x1b,0x36,0x6c,0xf8,0xc3,0x19,0x67,0x9c,0x91,0x1d,0x2b,0x0,0xb0,0x7e, 0x4,0xee,0xbf,0x8,0xc0,0x4d,0x0,0x30,0x69,0xd2,0x24,0x9c,0x73,0xce,0x39,0x92, 0x26,0x83,0x83,0x83,0x48,0xa7,0xb,0xa1,0xf3,0xbf,0xed,0xa,0xe3,0xbe,0xbf,0xec, 0x1,0x37,0x88,0x55,0x53,0xe5,0x8e,0x36,0xd6,0x57,0xbd,0x97,0x4c,0x67,0xdd,0xc9, 0x74,0xd6,0x3d,0xa9,0xc6,0x5d,0x31,0x7f,0x4a,0xc5,0x14,0x2d,0x97,0xb3,0xee,0xec, 0x88,0x80,0x80,0x88,0x28,0x1e,0x29,0xa,0x4,0x72,0xe,0xb7,0x43,0x65,0x13,0xeb, 0xbc,0x1a,0xe3,0x9c,0xeb,0x3f,0xc8,0xc1,0x1,0x4e,0x40,0x8,0x7,0xe7,0x4,0x40, 0x24,0x96,0xb6,0xf4,0x46,0x92,0x16,0xc1,0xfd,0xba,0x54,0x10,0x22,0x2,0xf6,0x9, 0x3e,0x6b,0x25,0xd7,0x94,0xa1,0xb6,0xee,0x78,0x54,0x63,0x5,0xc3,0x71,0xea,0xe4, 0xba,0xad,0x1d,0x5d,0x83,0xad,0xc3,0xf1,0x54,0x63,0x9e,0x32,0xdc,0xf7,0x97,0x3d, 0xb0,0xa9,0xa,0x4e,0x9b,0x59,0x2d,0x23,0x96,0x83,0x83,0x83,0xa8,0xad,0xad,0x5, 0x21,0x4,0xf5,0xf5,0xf5,0xd0,0x34,0xd,0xb1,0x58,0xc,0x7,0xe,0x1c,0x80,0xa1, 0x6,0xff,0x37,0x80,0x2b,0xc6,0xb5,0xa,0x30,0x44,0xff,0x56,0x0,0xb3,0x6c,0x36, 0x1b,0xae,0xbb,0xee,0x3a,0xb8,0xdd,0x3a,0xa7,0xc,0xf,0xf,0x63,0x70,0xb0,0x60, 0xdc,0x1d,0xe8,0x4b,0xe2,0xd6,0xdf,0x6f,0x45,0x36,0xcf,0xa0,0x10,0xc0,0xe3,0xb4, 0x27,0xac,0xaa,0x45,0x5a,0x4f,0x95,0x6e,0x9b,0xa3,0xba,0xc2,0xee,0x12,0xcc,0x6d, 0xe2,0xdd,0x22,0xbf,0x8c,0xeb,0xa9,0x5a,0x4c,0x6d,0xaa,0xd4,0xae,0x5c,0x72,0x5c, 0x52,0x8a,0xfe,0x92,0x57,0xc6,0xc1,0x5f,0x7f,0xef,0xa0,0xf3,0xb5,0xcd,0x7,0x5d, 0x5c,0xc7,0x86,0xd0,0x1f,0x86,0xd,0x51,0x40,0x93,0x46,0x19,0xb,0xc7,0x73,0x29, 0xca,0x8a,0xc3,0x8b,0xd9,0x9c,0xe6,0x4e,0x67,0x72,0x5e,0xc6,0x1,0xbb,0xaa,0xe0, 0xf6,0xab,0x8e,0xc7,0x94,0xfa,0x82,0x7,0x59,0x53,0x53,0x23,0x13,0x58,0xe9,0x74, 0x1a,0x9d,0x9d,0x9d,0x78,0xe5,0x95,0x57,0x44,0xfe,0x80,0x3,0x58,0x10,0x8,0x4, 0x36,0x8e,0x67,0x9,0xf0,0xbf,0x84,0xd1,0x77,0xd6,0x59,0x67,0x49,0xe2,0x67,0x32, 0x19,0xb3,0x7b,0x84,0xe1,0x54,0x1e,0x77,0xfe,0xd7,0x2e,0x64,0xf3,0xcc,0xf0,0xeb, 0x9d,0x31,0x45,0x21,0xc9,0x86,0x2a,0x17,0x3c,0x4e,0x95,0xd4,0x78,0xed,0x2e,0x8f, 0x43,0xb5,0x13,0x49,0x71,0x49,0xf6,0x11,0x61,0xfc,0x68,0x22,0x4b,0x86,0xe2,0x59, 0x10,0xfd,0x4d,0xf1,0x15,0x43,0xaa,0xc0,0x90,0x2,0xc5,0xa8,0x71,0xda,0xad,0xa4, 0xa1,0xca,0xc9,0x5,0x7a,0xc4,0xe,0x97,0x88,0xe2,0x4a,0xb,0xe5,0xae,0x68,0x32, 0x97,0x66,0x8c,0x33,0x0,0xc8,0x6b,0x1c,0xed,0x7d,0xb1,0x24,0x38,0x90,0xcc,0xe6, 0xbc,0xd9,0x3c,0xc3,0x9d,0xff,0xb5,0xb,0x77,0x5d,0x33,0x7,0x3e,0x97,0x2a,0xe3, 0x19,0x76,0xbb,0x1d,0xe,0x87,0x3,0x4e,0xa7,0x13,0x1e,0x8f,0x7,0x27,0x9c,0x70, 0x2,0xd6,0xaf,0x5f,0x2f,0x2e,0xeb,0xe7,0x0,0xce,0x1b,0x97,0x0,0x8,0x6,0x83, 0x2e,0x0,0xb7,0x89,0xd0,0xe9,0x67,0x3e,0xf3,0x19,0xc9,0x56,0x83,0x83,0x83,0x72, 0x5f,0xa3,0x1c,0xc1,0xc7,0x76,0x61,0x30,0xa6,0xab,0xc3,0xc6,0x5a,0x6f,0x44,0xa3, 0x3c,0x41,0x29,0x55,0xb7,0xfe,0xc7,0x55,0xe8,0xe8,0x1f,0x76,0x67,0xf2,0xcc,0x66, 0xb0,0x26,0x31,0x6c,0x7b,0x70,0x13,0xd,0x4d,0xfb,0x7c,0xd6,0xa4,0x6a,0x9c,0xf1, 0xf5,0x47,0x4c,0xc2,0x81,0x17,0x2c,0x44,0xe3,0xa0,0xa0,0xad,0x40,0xcf,0xf0,0x7f, 0x7f,0x13,0xf,0xbd,0xde,0x56,0x90,0x2a,0xc4,0x64,0x31,0x10,0x29,0x69,0x14,0x45, 0x21,0x4e,0x8f,0xc3,0x9a,0x56,0x8,0x61,0x84,0x10,0x4c,0xbd,0xf2,0x41,0xd8,0xed, 0xd6,0xa4,0xcd,0xa6,0x26,0xa2,0xb1,0x64,0xd3,0x60,0x2c,0x8b,0xe0,0x63,0xbb,0x70, 0xdb,0x15,0xc7,0xc1,0x6a,0xd1,0x6d,0x9c,0x70,0x38,0x2c,0xbd,0x9d,0xea,0xea,0x6a, 0xa4,0x52,0x29,0x34,0x37,0x37,0xa3,0xab,0xab,0xb,0x0,0xce,0xd,0x6,0x83,0x4b, 0x3,0x81,0xc0,0x73,0xc7,0x3a,0x0,0x3e,0xcc,0xbc,0x80,0xef,0x40,0xaf,0xc8,0xc5, 0x39,0xe7,0x9c,0x3,0x55,0x55,0xc1,0x18,0x43,0x3c,0x1e,0x2f,0x32,0xfa,0x7e,0xf3, 0xfc,0x3e,0xec,0xec,0xd4,0x25,0x7d,0x65,0x85,0x23,0xd3,0x3a,0x7d,0xc2,0xab,0x32, 0x20,0x93,0xc9,0x3b,0xb3,0x82,0xf8,0x45,0xa,0xa9,0x48,0xe4,0xb,0xb6,0x2d,0x26, 0xd7,0x68,0xe2,0xa1,0x28,0x44,0x74,0xf4,0x83,0x31,0x4e,0x12,0x19,0xcd,0xc9,0x39, 0x2f,0x7a,0x1e,0x33,0xa6,0x36,0xbe,0xef,0x72,0xda,0xa3,0x0,0xb0,0xb3,0x33,0x8e, 0xdf,0x3c,0x5f,0x28,0x12,0x12,0xf5,0xa,0x22,0x56,0x50,0x51,0x51,0x81,0xe3,0x8e, 0x3b,0xce,0x6c,0x9b,0xde,0x65,0x14,0xc0,0x8c,0x1f,0x9,0x10,0xc,0x6,0x6b,0x0, 0xdc,0xc,0x0,0xb5,0xb5,0xb5,0x98,0x32,0x65,0x8a,0xee,0x87,0x71,0x5e,0x94,0x3f, 0xdf,0xd9,0x19,0xc7,0x4b,0x5b,0xfa,0xf5,0xb8,0xbb,0xdd,0xca,0x66,0xb7,0x4e,0x7c, 0xd9,0x62,0x51,0x28,0x0,0x78,0x1c,0xaa,0x2d,0x95,0xd5,0xdd,0x2d,0xbb,0xcd,0x6, 0xab,0x6a,0x13,0x44,0xd6,0xe9,0x2d,0x29,0x5f,0x38,0x46,0x0,0x3e,0x7d,0x42,0xb5, 0x3c,0x5e,0x62,0xb6,0x70,0x83,0xf9,0x39,0xc,0x23,0x50,0x48,0x82,0xe6,0xda,0xa, 0xee,0x76,0xb9,0x8b,0x9c,0x6,0x33,0x44,0x48,0x31,0xa0,0x88,0xd3,0xa9,0x12,0x8f, 0xc3,0x6a,0xf2,0xff,0x9,0x9d,0xfb,0x99,0x49,0x6f,0xbe,0xb3,0x65,0xdf,0xf9,0x79, 0x8d,0xda,0x5f,0xda,0xd2,0x8f,0x73,0xe7,0xd6,0x61,0xd6,0x84,0xa,0xa9,0xa,0x5c, 0x2e,0x17,0x8,0x21,0xa8,0xaa,0xaa,0x42,0x22,0x91,0x40,0x4b,0x4b,0xb,0xf6,0xed, 0xdb,0x7,0xe8,0x85,0x2f,0x57,0x2,0x78,0x68,0x3c,0x49,0x80,0x1f,0x1,0xf0,0x2, 0xc0,0xd9,0x67,0x9f,0xd,0x45,0x51,0x24,0xf7,0x9b,0x92,0x24,0xf8,0xfd,0xcb,0xed, 0x72,0x7f,0xe6,0xd4,0xc6,0xb7,0x9c,0x4e,0x7b,0xca,0x48,0xc2,0x58,0x6b,0xbc,0x76, 0x57,0x69,0xf2,0x85,0x28,0x84,0x13,0x42,0x40,0x8,0x81,0xa2,0x10,0x4e,0x14,0xdd, 0xff,0x23,0x84,0x70,0x85,0xe8,0xef,0x59,0xad,0x8a,0x59,0x26,0x88,0x8d,0x1,0xe0, 0x44,0xf7,0xfe,0x18,0x1,0x61,0xc6,0x2b,0x7,0xc0,0x2d,0x16,0x45,0xf7,0x25,0xf5, 0xf3,0xc9,0xdf,0x20,0x84,0x40,0x29,0xfc,0x9e,0xe1,0x63,0x2,0x56,0xb,0x61,0xa5, 0x42,0xc4,0xe5,0xb4,0xa7,0x5b,0xa7,0x37,0xfd,0x7d,0xb4,0x7b,0xcb,0xe7,0xf3,0x88, 0xc5,0x62,0x3a,0x27,0x59,0xad,0xf0,0xf9,0x7c,0x98,0x3d,0x7b,0xb6,0xb9,0x80,0xf5, 0xa7,0xc1,0x60,0xd0,0x3e,0x2e,0x24,0x80,0x51,0xc1,0xfb,0x35,0x0,0x98,0x38,0x71, 0x22,0x1a,0x1a,0x1a,0xc0,0x39,0x7,0x63,0xc,0xc3,0xc3,0xc3,0xf2,0x73,0x6f,0xed, 0x8e,0x60,0x97,0x21,0xfa,0xeb,0xaa,0x3d,0xf1,0xea,0x6a,0x5f,0x97,0xe0,0xb2,0x7a, 0xbf,0xd3,0xc3,0x28,0x13,0x96,0x1e,0x17,0xcc,0x37,0xb1,0xd6,0x83,0xf3,0x4e,0x6c, 0x82,0xc,0xf1,0x15,0x6c,0x3b,0xc9,0xe5,0x55,0x5e,0x27,0x3a,0x24,0xe5,0xb9,0x4e, 0x78,0x9d,0xed,0x99,0x61,0x6,0x70,0x9,0x6,0xe3,0x24,0xf1,0x93,0x6f,0xc7,0xb7, 0x97,0xb8,0x38,0x4c,0x92,0x45,0x8f,0x1f,0x11,0x29,0x26,0x42,0x77,0xaf,0xe4,0xbb, 0x3b,0xc2,0x50,0x14,0xb,0xe7,0x2e,0xdb,0xa8,0x2e,0x51,0x7d,0x8d,0x6f,0xe0,0x60, 0x45,0xb8,0x37,0x16,0x4f,0x35,0xec,0xea,0x8c,0xe3,0xad,0xdd,0x11,0x2c,0x68,0xd5, 0xe3,0x54,0xd1,0x68,0x14,0x1e,0x8f,0x7,0x8a,0xa2,0xa0,0xb2,0xb2,0x12,0xb1,0x58, 0xc,0x33,0x66,0xcc,0xc0,0x8e,0x1d,0x3b,0x0,0x60,0x12,0xf4,0x1a,0xc8,0x7f,0x1f, 0xf,0x2a,0x60,0x39,0x0,0x1b,0x0,0x9c,0x78,0xe2,0x89,0x32,0xe0,0x93,0x48,0x24, 0x20,0x5c,0x69,0xc6,0x39,0x1e,0x5e,0xdf,0x21,0xc5,0xea,0xa4,0xe6,0xba,0xb7,0xc5, 0x97,0x3f,0x33,0xc1,0x57,0xfd,0xee,0x50,0xd4,0x9a,0xd6,0x46,0xe6,0x6b,0x2a,0x5c, 0x2a,0x86,0x4f,0xbe,0x9d,0x17,0x3b,0x2,0x28,0x22,0x46,0x42,0x7a,0x6f,0x3a,0xe1, 0x19,0xc0,0xb8,0x59,0x12,0xe8,0xd6,0x20,0x17,0x91,0x42,0x70,0xf0,0x64,0x46,0xc3, 0xee,0xce,0x61,0x11,0x3d,0x14,0x96,0x7f,0x21,0x94,0xc,0xc0,0x42,0x0,0x4d,0xa3, 0xb0,0xab,0xa,0x1b,0x4d,0xbf,0x88,0x31,0xbd,0xa5,0x7e,0xeb,0xbb,0xef,0xed,0xaf, 0x7,0x40,0x1e,0x5e,0xdf,0x81,0x53,0x66,0xf8,0xa1,0x10,0x2,0x4a,0x29,0x86,0x86, 0x86,0x64,0x15,0xb3,0xd3,0xe9,0xc4,0x8c,0x19,0x33,0xb0,0x7b,0xf7,0x6e,0x11,0x2, 0xbf,0x74,0xbc,0x0,0xe0,0x62,0x40,0xaf,0x9e,0xa9,0xa9,0xa9,0x91,0x44,0x37,0x57, 0xf3,0xac,0xdb,0xd2,0x8f,0xae,0xb0,0x1e,0x0,0x6a,0xaa,0xf5,0x45,0xbc,0x5e,0x57, 0x14,0x0,0x14,0x85,0x90,0x79,0x2d,0x95,0xcd,0xef,0x6e,0x85,0xa1,0xab,0xb,0xd6, 0xbd,0xdc,0xe7,0x1c,0x56,0xd5,0xc2,0x4f,0x3b,0xbe,0x29,0x3b,0x42,0x3f,0xb,0xa2, 0x2,0xf0,0x57,0xd8,0x29,0xe3,0xa0,0x85,0xa8,0xb0,0x24,0x38,0x13,0x60,0x98,0x58, 0xe7,0xcd,0x9c,0x36,0xa7,0x99,0x9b,0x3,0x41,0x9c,0x73,0x30,0x70,0xce,0x99,0xfe, 0xa1,0x3d,0x7,0xc3,0xae,0x68,0x2c,0xab,0x8a,0xf3,0x2a,0xa,0x61,0x1f,0x14,0x12, 0xa9,0xf4,0xba,0x87,0xab,0xfd,0x9e,0x8e,0x70,0x34,0x31,0xb9,0x2b,0x9c,0xc6,0xba, 0x2d,0xfd,0xf8,0x87,0x79,0xfa,0xa4,0xa5,0x44,0x22,0x21,0xe3,0x2,0x4e,0xa7,0x13, 0xc9,0x64,0x12,0x75,0x75,0x75,0xa2,0xc0,0xf4,0xbc,0x60,0x30,0x58,0x71,0xac,0xd6, 0xd,0x58,0x8f,0x50,0xfc,0x3b,0x45,0xbc,0x5f,0x24,0x45,0x38,0xe7,0xb2,0x34,0x5b, 0x8c,0x27,0xff,0xd6,0xd,0xe3,0x61,0x62,0xe2,0x84,0xba,0xb7,0xc4,0xf1,0x79,0x53, 0x2a,0x6b,0x9d,0x36,0x8b,0x94,0xaf,0x86,0x2f,0x2f,0xd4,0x2d,0x87,0x91,0x88,0x51, 0xad,0x16,0x76,0xee,0x89,0x93,0x52,0x22,0xe0,0x4b,0x8,0x8a,0xa4,0xb7,0xb4,0x13, 0x5,0xf1,0xb9,0xa1,0x2,0xc,0x20,0x88,0x6d,0x4a,0x83,0x2f,0x33,0xa9,0xde,0x9b, 0x2e,0x4,0x87,0x8c,0x40,0x11,0xe3,0x9c,0x19,0x89,0xa2,0xf0,0x70,0xda,0x12,0x8d, 0x65,0xe5,0xfd,0x2b,0x84,0x53,0x14,0x70,0x46,0x46,0x97,0x2,0x8d,0xdb,0x23,0x43, 0x7b,0x26,0x72,0xce,0x95,0x27,0xff,0xd6,0x2d,0x1,0xa0,0x69,0x1a,0xb2,0xd9,0x2c, 0x6c,0x36,0x1b,0x1c,0xe,0x87,0x9e,0xe0,0x6a,0x6a,0x12,0x0,0xb0,0x43,0xaf,0x89, 0xfc,0xd3,0x58,0x36,0x2,0x17,0x3,0x70,0x1,0xc0,0xd4,0xa9,0x53,0xa5,0x2c,0xce, 0x64,0xa,0x79,0xfc,0x8e,0x81,0x94,0xcc,0xeb,0x37,0xd5,0xf9,0x6,0x5c,0x2e,0xbb, 0x4c,0xfe,0xcf,0x6c,0xaa,0xa8,0x33,0xc5,0x5f,0x46,0x88,0x77,0xc1,0xc5,0x6,0x45, 0xd,0x9a,0x81,0x31,0xe,0xca,0x38,0x18,0x38,0xc,0xba,0x19,0x1b,0xe4,0x2b,0x95, 0xef,0x19,0x1b,0x0,0x6a,0x18,0x87,0x23,0x37,0x22,0xdf,0xe7,0xa5,0xa0,0xb1,0x5a, 0x94,0xbc,0x48,0x2a,0x8d,0x72,0x7d,0x0,0x0,0xb7,0xcb,0x9e,0xaa,0xae,0xaa,0x68, 0x7,0x80,0xde,0x68,0x6,0x1d,0x3,0x5,0xe9,0x97,0x4a,0xa5,0x20,0xa2,0xd3,0x76, 0xbb,0x1d,0x8d,0x8d,0x8d,0x66,0x97,0xf0,0x92,0xb1,0xee,0x5,0x5c,0x2c,0x32,0x62, 0xf5,0xf5,0xf5,0xd2,0xf8,0x33,0xfb,0xfd,0x6f,0xed,0x8e,0xc8,0x7d,0x7f,0x65,0xc5, 0x5e,0x69,0x40,0xf9,0x1c,0x4e,0x87,0xcd,0xa2,0xa,0x51,0x6c,0x8e,0x42,0x9b,0xfd, 0x7f,0x81,0x0,0x41,0x64,0xc6,0x39,0x35,0x98,0x97,0x32,0xe,0x8d,0x73,0x50,0xe, 0x50,0x6,0x4e,0x39,0xe7,0xb4,0x40,0x7c,0xce,0xc0,0x41,0x75,0xc2,0x72,0xa,0x18, 0xc7,0xf4,0x57,0xa,0x80,0x12,0x10,0x1d,0x2c,0x5,0x30,0x50,0x19,0x76,0x2,0x87, 0x45,0x21,0x9a,0x42,0x40,0xc1,0x45,0xb6,0xb9,0xc8,0xcb,0x28,0x1a,0x75,0xd5,0xde, 0xae,0xd1,0xee,0x39,0x9d,0x4e,0x83,0x31,0x6,0xc6,0x18,0x1c,0xe,0x7,0x6c,0x36, 0x1b,0xaa,0xab,0xab,0xc5,0xdb,0x17,0x18,0x93,0x5e,0xc7,0x1e,0x0,0x8c,0xb8,0xff, 0xe7,0x0,0xbd,0x9e,0x5f,0x88,0x7f,0x4a,0x69,0x51,0xaa,0xf7,0xed,0x36,0x3d,0xe, 0xa0,0x5a,0x2d,0xbc,0xba,0xca,0x2b,0x67,0x57,0x4c,0xae,0x73,0xf9,0x38,0x2f,0x28, 0x6a,0x6e,0x8,0x7c,0xdd,0xf,0x20,0xdc,0xe4,0xfe,0xb,0xd1,0x4e,0x99,0x20,0x36, 0x7,0x2d,0x48,0x4,0x9d,0xf0,0x30,0xde,0xe3,0xa6,0x57,0xc3,0xfe,0x34,0x88,0x2e, 0xc0,0x0,0xa,0xdd,0x2d,0xa4,0x5c,0x0,0x83,0x17,0x40,0xa0,0x9b,0x4,0xfa,0x6f, 0xab,0x16,0x25,0x27,0x3,0x9,0x3a,0x4c,0xcd,0x0,0x28,0x2,0x41,0x5d,0x8d,0x6f, 0xc0,0xa2,0x28,0x79,0xf3,0x3d,0xb,0x97,0x50,0xd3,0x34,0x70,0xce,0x61,0xb7,0xeb, 0x9e,0x5f,0x53,0x53,0x93,0x78,0xdb,0xb,0xe0,0xdc,0xb1,0x2a,0x1,0xce,0x4,0x50, 0xd,0x0,0x93,0x27,0x4f,0x6,0x21,0x64,0x4,0xf7,0x87,0xe3,0x39,0x59,0xe0,0x51, 0x5b,0xe5,0x1e,0x56,0x14,0x22,0x1f,0x5a,0x93,0xdf,0xe9,0x33,0x6c,0x30,0x61,0x80, 0x1b,0x4e,0x98,0xd8,0x38,0x27,0x82,0xf7,0x1,0xae,0x13,0x5d,0xe7,0x7e,0x43,0xbc, 0xb,0x62,0x33,0x6e,0x0,0x42,0x37,0xf8,0xc,0x40,0x48,0xc2,0x72,0xca,0x39,0x34, 0xf0,0x2,0x38,0xc,0x89,0xc0,0x51,0x20,0x3c,0x95,0x2a,0x82,0x1b,0x5e,0x4,0x7, 0xb7,0x5a,0x48,0xbe,0x90,0x2b,0xe2,0x22,0x6d,0xc0,0xb9,0xf9,0xf3,0xe2,0x81,0x29, 0x84,0xf9,0xbc,0xae,0x5e,0x0,0xd8,0xdb,0x93,0x40,0x38,0x9e,0x2b,0x92,0x2,0x9c, 0x73,0x28,0x8a,0x2,0x55,0x55,0xd1,0xd8,0xd8,0x38,0x42,0x8a,0x8e,0x45,0x0,0x9c, 0x2d,0x2,0x36,0xc2,0xf7,0xe7,0x9c,0x17,0x73,0xbf,0x49,0x14,0x56,0xfa,0x3c,0x7, 0x24,0xec,0x5d,0xaa,0xcd,0xe3,0xb0,0xda,0x19,0x2f,0xf2,0xc4,0x4a,0xa2,0xfc,0xc5, 0xf9,0x5e,0x93,0x8e,0xa7,0x86,0x1a,0xa0,0x86,0x2d,0xa7,0x71,0x70,0xca,0xc1,0x35, 0xfd,0xb8,0xe4,0x64,0xfd,0xb8,0x0,0x89,0x21,0xf6,0x85,0x5a,0xe0,0x7a,0xb5,0x8e, 0xf8,0x9b,0xe9,0xe7,0x80,0x26,0x74,0xbd,0x6a,0x51,0xf2,0x6,0xa6,0x39,0x63,0xd0, 0x65,0x4d,0x21,0x77,0x54,0xc,0x1a,0x91,0xd,0xac,0xaa,0xe8,0x1e,0xed,0xde,0x73, 0xb9,0x9c,0x54,0x3,0x62,0x6,0x92,0x28,0x8d,0x13,0xcf,0x71,0x2c,0x7a,0x1,0x13, 0x0,0xbd,0xca,0x57,0x55,0x55,0x99,0xec,0x31,0xa5,0xd1,0xf1,0xde,0x81,0x61,0x19, 0xd5,0xab,0xae,0xf6,0xb5,0x17,0x52,0xbd,0xaa,0x9d,0x71,0x70,0x85,0x71,0x30,0x85, 0x40,0x48,0x81,0xab,0x6f,0x7f,0x9e,0xbb,0x1c,0xa,0xd2,0x59,0x8a,0x6c,0x5e,0x43, 0x5e,0x63,0x48,0xa6,0x35,0x51,0xf2,0x45,0x8d,0x93,0xc9,0x22,0x20,0x13,0x4c,0x38, 0x8a,0xfd,0x7f,0x19,0x14,0x32,0x11,0xc,0x82,0x58,0x6,0x48,0xc0,0xb,0xc4,0x33, 0x25,0x5,0xf5,0x1b,0xa9,0xbf,0xf4,0x81,0xcc,0xc,0xb7,0x8d,0x6b,0x8c,0x93,0x58, 0x32,0xcb,0x39,0xe7,0x88,0xc6,0x73,0x22,0xb1,0x24,0x54,0x80,0xd9,0x2b,0x50,0xea, 0xeb,0x2a,0x7b,0xdb,0xf6,0xf5,0x70,0xe,0x90,0x2d,0xfb,0x87,0xb1,0xf4,0xe4,0x6, 0x0,0x0,0xa5,0x54,0x3e,0x1f,0x51,0x48,0x5a,0x51,0x51,0x21,0xa2,0x85,0x13,0xc6, 0x2a,0x0,0x9a,0x4,0x0,0x84,0xf8,0x2f,0x5,0x80,0x10,0x83,0xe,0x9b,0x85,0xaa, 0x56,0x4b,0xa1,0xd2,0xc6,0x66,0xb1,0x72,0x70,0x30,0x4e,0xb8,0xc2,0x24,0x25,0x79, 0x6f,0x24,0x21,0x99,0xde,0x1c,0x79,0x15,0x12,0x40,0xec,0x12,0x22,0xc2,0x32,0x84, 0x13,0x5d,0x77,0x8,0x50,0x18,0x20,0x90,0x86,0xa5,0xe4,0x5a,0x43,0x82,0x70,0x53, 0x15,0x19,0x2b,0x18,0x7c,0x26,0x20,0x71,0xb0,0x4c,0x4e,0xcb,0x45,0x13,0xb9,0x7c, 0x5f,0x34,0x55,0x48,0x10,0x16,0xff,0x27,0xb8,0xdf,0x9c,0xae,0x22,0xaa,0xd5,0xa2, 0x59,0xad,0x96,0x4c,0x5e,0xa3,0xce,0x48,0x22,0x67,0x4a,0x2a,0x31,0x9,0x0,0xe1, 0x1,0x98,0x26,0xa3,0x56,0x4,0x83,0x41,0x4f,0x20,0x10,0x48,0x8c,0x49,0x0,0x88, 0xf9,0x73,0xa3,0x49,0x80,0xa8,0x1,0x0,0xbb,0x4d,0x2d,0xaa,0xe6,0x75,0xa8,0x16, 0xab,0x28,0xca,0x60,0x20,0x58,0x3c,0x7f,0x72,0x44,0x63,0xba,0x7f,0xaf,0x18,0x1c, 0xae,0xc7,0xe8,0x75,0x47,0x40,0xb5,0x10,0xce,0xc1,0x29,0x38,0xe1,0x22,0xb2,0x27, 0xbd,0xc4,0xc2,0xdf,0xe6,0x78,0x40,0x81,0xc3,0x4d,0x81,0x21,0x98,0x40,0xc1,0xb, 0x41,0x3f,0x53,0x29,0x0,0xe7,0x27,0xcf,0xaa,0xef,0xd,0xa7,0x58,0x87,0xdb,0xa7, 0xe5,0x1,0x58,0xf4,0xb0,0x3,0x51,0x40,0xa0,0x18,0xaa,0xd1,0x62,0x73,0xd8,0x92, 0xa5,0xc4,0x37,0x36,0x8b,0xaa,0x5a,0xd3,0x79,0x8d,0x3a,0xa3,0xf1,0x62,0x0,0x88, 0xe7,0x22,0x24,0x40,0xc9,0x4,0xd4,0x26,0x0,0xbb,0xc7,0xb4,0x4,0xe0,0xd2,0x5e, 0x2b,0x38,0xf0,0x43,0xc9,0xbc,0x1,0x0,0x4b,0x51,0x2d,0x9c,0x5d,0xb5,0x58,0x19, 0xe7,0x5c,0xd1,0x4b,0xb7,0x58,0x4b,0x73,0x55,0x8a,0x10,0x70,0x45,0x4f,0xc6,0x70, 0x42,0x74,0x9,0xa0,0x27,0x7d,0x0,0x40,0x8f,0xc6,0x19,0xa5,0x5d,0xdc,0x48,0xfd, 0x73,0x14,0xc7,0xfb,0x85,0x88,0xe7,0xa5,0xc4,0x37,0x71,0xbf,0x14,0xff,0xf2,0x7b, 0x6,0x2c,0x84,0x5c,0xd0,0xa0,0xb6,0xb9,0x2b,0xdc,0x7,0xdd,0x15,0x5,0x82,0x1b, 0x9b,0x79,0x5f,0x6c,0xc4,0x24,0x9,0x8,0x0,0x62,0x53,0x2d,0x99,0x54,0x5a,0xbf, 0x77,0xce,0x75,0x50,0xb,0xf7,0x58,0x24,0x9c,0x4a,0x24,0xc0,0xd8,0x3,0x40,0x30, 0x18,0xb4,0x2,0xa8,0x33,0x23,0xd9,0x8c,0x72,0x40,0xaf,0xfa,0x11,0x31,0x54,0x9b, 0x4d,0xcd,0x14,0x1,0xc0,0xaa,0x58,0x44,0x34,0x4e,0x51,0x8,0x67,0xe0,0x5c,0x1, 0xe1,0x6,0x45,0x19,0x1,0xa0,0xe8,0xe2,0x1d,0x8c,0x83,0x11,0xc2,0x39,0x33,0xa4, 0x82,0x1e,0x1f,0xe4,0x0,0x27,0x8c,0x8,0x42,0x93,0x92,0x6c,0xa0,0x4e,0x78,0x26, 0xa2,0x83,0xe6,0x57,0xc3,0x40,0x44,0xc1,0xfb,0x2c,0xe8,0xfd,0x9c,0xc6,0x72,0x9b, 0xf,0x44,0xf,0x60,0xf4,0xa0,0x54,0x29,0xb7,0x97,0x6e,0xc,0x0,0xb1,0xd9,0xac, 0x69,0x91,0xff,0x18,0x4e,0xe5,0x51,0xe9,0x56,0xa5,0x1d,0x20,0x2a,0x87,0x47,0x91, 0x0,0xcd,0x63,0xcd,0x6,0x68,0x14,0xa,0xd1,0xe1,0x70,0x8c,0x2a,0xfe,0x23,0x26, 0x11,0xa8,0xaa,0x96,0xa2,0xa9,0x3f,0x79,0xca,0x28,0x63,0x6,0xf1,0xb9,0x24,0xbe, 0x4,0x2,0x8c,0x7d,0x23,0xb3,0xa7,0x1b,0x7e,0x82,0x4f,0x8b,0xf6,0x51,0x24,0xda, 0x75,0x22,0x10,0x19,0xcd,0x2b,0xd8,0xd,0x30,0x55,0x8c,0x43,0x3f,0x7d,0x81,0xf0, 0xdc,0x20,0x18,0xdf,0xb4,0x6f,0x68,0x57,0x36,0xcf,0x72,0x6,0x77,0xf3,0xf,0x0, 0xc2,0x68,0x80,0xd0,0x1,0xa0,0xaa,0x29,0xf3,0x33,0x30,0x3,0xe0,0x30,0x12,0x60, 0x4c,0x1,0x40,0x5e,0xb0,0xb8,0x91,0x52,0x15,0x30,0x94,0x34,0x1,0xc0,0x6a,0x2d, 0x32,0x70,0x12,0x19,0x2d,0xc7,0x1,0x36,0xa,0xf1,0xd,0x93,0x90,0x14,0xc,0x38, 0x99,0xc6,0x25,0x9c,0x3,0x8c,0x70,0xe,0x42,0xf4,0xdc,0xbe,0x51,0xef,0x67,0xce, 0xff,0x1b,0x69,0x1d,0x98,0x3,0x49,0x8c,0x9b,0xc3,0xbb,0xbc,0x38,0x89,0x64,0x78, 0x20,0x7c,0x47,0x67,0x6c,0xdf,0xbe,0xbe,0xc4,0x80,0xc9,0x5,0xe6,0x47,0xc0,0xf9, 0x6c,0x14,0x9,0x20,0x1,0xa0,0xcf,0x73,0x70,0x8f,0x30,0x4,0xc7,0x3,0x0,0xea, 0xcc,0x37,0x22,0x50,0x2d,0xc,0x1c,0x43,0xcf,0xcb,0x7d,0x8d,0xb2,0xa2,0xa9,0xb6, 0xc9,0x8c,0x96,0x67,0x9c,0x33,0x13,0xf1,0x8d,0x7d,0xce,0x19,0x8,0x27,0x86,0x24, 0x60,0x86,0xce,0x27,0x9c,0x70,0x42,0x38,0x27,0x20,0x1c,0x44,0xe8,0x7d,0x41,0x54, 0xc2,0x20,0x81,0x22,0x6d,0x80,0x52,0x9f,0xdd,0xec,0x15,0x8,0xfb,0x40,0x66,0x78, 0xdb,0x7,0x52,0x7,0x37,0xef,0x1f,0x6a,0x3f,0x42,0xce,0xff,0x40,0x0,0x50,0xd3, 0xbd,0x96,0xce,0x30,0x36,0x4b,0x48,0x55,0x55,0x61,0xb1,0x58,0x44,0x6a,0xb8,0x61, 0xac,0x1,0x20,0x69,0xe,0x75,0xa,0xf7,0xc6,0xc,0x0,0xbf,0xbb,0x30,0xfb,0x5a, 0xd3,0xb4,0xa2,0xd9,0xb7,0xf1,0xb4,0x96,0x65,0xc,0x8c,0x28,0x9c,0x33,0x80,0x29, 0x3a,0xf5,0x98,0x41,0x7c,0xf9,0xb7,0x90,0x4,0x3a,0x36,0x48,0x21,0xbb,0x47,0x48, 0x81,0xb8,0x44,0x97,0xe,0x6,0xa1,0xcd,0x60,0x18,0x91,0x11,0xe4,0xb2,0xe,0x18, 0x4c,0x38,0x12,0x3,0xb1,0xcc,0xc0,0xeb,0x3b,0x7,0x76,0x63,0xd4,0x10,0xd4,0x91, 0x71,0xbd,0x21,0x35,0x18,0x0,0x25,0x9b,0xcb,0x3b,0x46,0x7b,0x6,0x42,0x4a,0x9a, 0xdd,0x65,0xd3,0xd4,0xb8,0xf8,0x58,0x3,0x80,0x4c,0x7c,0x88,0xcc,0x9f,0xa2,0x28, 0x45,0x22,0xce,0x5f,0x61,0x33,0x45,0xc2,0x68,0x31,0x0,0x32,0xf9,0x1c,0xe7,0x9c, 0x31,0x4e,0xb8,0xf1,0xad,0x22,0xe2,0x33,0x83,0xf8,0x44,0x37,0x8,0x75,0xbb,0x40, 0x82,0x40,0xf0,0x2e,0x61,0x5,0xae,0xe7,0xbc,0x90,0xd5,0x23,0xba,0x20,0x29,0xd8, 0x2,0xcc,0x94,0x6c,0xe2,0x28,0x14,0x86,0x20,0x92,0xc8,0x45,0xd6,0xbd,0xdf,0xff, 0xbe,0x88,0xd1,0x1c,0x8d,0xae,0x37,0x11,0x5d,0x1c,0x53,0x0,0xb0,0x5c,0x5e,0x73, 0x8d,0xf6,0xc,0x4a,0x1,0x60,0xce,0x98,0x42,0x6f,0x33,0x33,0xa6,0x0,0xd0,0x5d, 0x1a,0xe7,0x36,0xd7,0xd5,0x71,0xce,0xe1,0xb4,0x59,0xe0,0xb0,0x59,0x90,0xc9,0x51, 0xe4,0xf2,0xf9,0x22,0x85,0x97,0xcd,0xb3,0x7c,0x9e,0x32,0x4d,0x85,0x42,0xa0,0xe8, 0x9c,0x4d,0x74,0x49,0x20,0x6d,0x1,0xf1,0xa,0x93,0x71,0xc8,0xd,0x40,0x10,0x10, 0x66,0x80,0x43,0x27,0x34,0x1,0x27,0x6,0xa1,0x9,0xb8,0xe,0x4,0xce,0x39,0x88, 0x74,0x44,0x98,0x2c,0x14,0x30,0x82,0x49,0x7,0x6,0x52,0x7,0x5e,0xdd,0x3e,0xb0, 0x8f,0xeb,0xf5,0xa2,0x96,0x51,0x44,0xfe,0xe1,0xb8,0xde,0xc,0x4,0x61,0x87,0x28, 0xb9,0x9c,0xe6,0x14,0xe2,0xdf,0xdc,0x6d,0xa4,0xd4,0x50,0x1e,0xd3,0x0,0x8,0x4, 0x2,0xf1,0x60,0x30,0x98,0x0,0xe0,0x29,0x95,0x0,0x2,0x0,0x0,0xe0,0xf7,0xa8, 0xe8,0x89,0x50,0x64,0x73,0xd4,0xcc,0xa,0x1c,0x0,0xef,0x1d,0xca,0xc,0x37,0x57, 0xb9,0xbc,0xe0,0x9c,0xfd,0xe7,0x5f,0xb7,0x4f,0xce,0xe4,0x34,0x8b,0x91,0xd,0x2c, 0xa,0xf1,0x12,0x0,0xe,0xbb,0x9a,0xbf,0x76,0xf9,0xdc,0x1d,0x44,0x17,0xfd,0xc, 0x5,0xf5,0x60,0xec,0xeb,0x40,0x30,0x22,0x84,0x4c,0xaa,0x3,0x8e,0x11,0x59,0x45, 0xca,0xb8,0xb6,0x79,0xff,0xd0,0xb6,0xf7,0xda,0x87,0xfa,0xd,0xe2,0x15,0x19,0x7d, 0xbb,0xf6,0x74,0x9f,0x95,0x4a,0x65,0xa6,0xc2,0xa8,0x4d,0x31,0xc,0x1c,0xc5,0xd0, 0x72,0x4,0x0,0x99,0x3e,0xb5,0xe9,0x75,0xb7,0xcb,0x9e,0x2e,0x25,0x3e,0x0,0x9e, 0xd7,0xa8,0x53,0xdc,0xbb,0x44,0x92,0xac,0x60,0x29,0x18,0xca,0x63,0x5d,0x2,0x8, 0x29,0xd0,0x9a,0xc9,0x64,0x8a,0x24,0x80,0xa8,0x8,0xd6,0x1f,0x82,0xd,0x3d,0x91, 0xc,0x32,0xb9,0xbc,0x5a,0xa,0x80,0x83,0x83,0xa9,0xa1,0x26,0xbf,0xd3,0xc3,0x18, 0x61,0x89,0x4c,0xce,0x9a,0xcd,0x6a,0x56,0x91,0x12,0x44,0xa1,0xfc,0x86,0x3,0x40, 0x9e,0x31,0x30,0xe,0x2a,0xd4,0x85,0xe1,0x2d,0xe8,0xd2,0x80,0x10,0x46,0x74,0x35, 0xc0,0xb8,0x51,0xf9,0x4b,0x88,0x4c,0x1,0x33,0x93,0x9b,0x88,0x6c,0x9e,0x25,0x5f, 0xd9,0xd6,0xff,0x6e,0x57,0x24,0x9d,0x32,0x11,0xaf,0x48,0xe7,0x53,0x4a,0x1d,0x94, 0x52,0xb7,0xfe,0xf3,0xc4,0x0,0x1,0xa,0x20,0x80,0x44,0x38,0x2f,0x25,0x3e,0x0, 0x96,0xcf,0xeb,0xea,0xce,0xef,0x29,0x60,0x5e,0x31,0xaa,0x99,0xcd,0xc3,0xc,0x0, 0xce,0xf9,0xd8,0x5,0x80,0x59,0x5,0x0,0xfa,0x9c,0x79,0x51,0xe,0xd6,0x5c,0xed, 0xc4,0xf6,0x8e,0x18,0x34,0x8d,0x29,0xd1,0xe1,0x64,0xa5,0xd1,0xce,0x85,0x3,0xe0, 0xe1,0x78,0x2e,0x9d,0xc8,0x68,0x19,0x8f,0xc3,0x6a,0x15,0xa5,0x5c,0x5d,0x8f,0x7d, 0x15,0x3d,0x83,0x9,0x61,0xb0,0x61,0x42,0x9d,0x87,0x37,0x5d,0xfa,0x80,0xa8,0xf3, 0x62,0x8c,0x13,0x2a,0x2a,0x7e,0x9,0x11,0xb9,0x7e,0xce,0xc,0x7b,0x80,0x11,0x51, 0xf4,0xc1,0x75,0xfb,0xc0,0x50,0xb,0x8c,0x32,0xae,0x1d,0xe8,0x4f,0xee,0xfb,0x7b, 0x5b,0x78,0x7f,0x3a,0x47,0xb9,0x49,0x74,0x5b,0x4a,0xc5,0xbd,0xb0,0x12,0x8f,0x6b, 0xff,0x19,0x5e,0xdd,0x7c,0x10,0x6e,0x87,0x8a,0x49,0xf5,0x5e,0xd8,0x54,0xb,0xef, 0x3a,0xfe,0x67,0x30,0xd5,0xae,0x94,0x12,0x9f,0x47,0xa2,0x89,0x2a,0xc6,0x98,0xa, 0x0,0xcd,0x55,0xce,0x22,0x9,0x20,0xc,0xe4,0x52,0x9,0x60,0xd4,0x50,0x8c,0x49, 0x0,0x74,0x89,0x1b,0xd1,0x34,0x4d,0xaa,0x0,0x55,0x55,0x65,0x4d,0xc0,0x29,0xd3, 0xfd,0x78,0x61,0x93,0xde,0x79,0x3d,0x1c,0x8e,0x4d,0x34,0x1,0x40,0x3f,0x41,0x24, 0x3d,0x34,0xa3,0xd1,0x53,0x25,0x2a,0x3e,0x3a,0x7a,0x87,0x11,0x4b,0x66,0xe5,0x3c, 0x4d,0x4a,0x19,0x1a,0xf5,0x4c,0x10,0x63,0xc,0x94,0x10,0xce,0xc,0xfb,0x80,0x91, 0x42,0xbd,0x3f,0xd5,0x4d,0x7,0xc2,0x65,0x7a,0x96,0x70,0xa,0x7d,0xe6,0xaf,0xd6, 0x1d,0x49,0x1f,0x78,0x73,0x77,0x78,0x6f,0x2c,0x95,0xcf,0x99,0x8,0xad,0x1c,0x32, 0xd2,0x67,0x70,0xf7,0xbe,0xae,0x21,0xc,0xc,0xa5,0x30,0x48,0x14,0x1c,0x1c,0x48, 0x12,0x8f,0x53,0x45,0xd3,0xf1,0xc5,0x52,0xac,0x74,0xeb,0x1b,0x1c,0x9e,0x2c,0x3e, 0x70,0xca,0xc,0x7f,0xe1,0x61,0x5a,0xad,0x92,0x41,0x84,0x74,0x4c,0x26,0x93,0x82, 0xf8,0x8c,0x52,0xda,0x3b,0x56,0x25,0x0,0xd2,0xe9,0x34,0x28,0xa5,0xa0,0x94,0xc2, 0x6a,0xb5,0xc2,0x6e,0xb7,0xcb,0x9b,0x9b,0xdb,0xe2,0x93,0x86,0x60,0x74,0x38,0x31, 0x11,0xfa,0xe2,0xc,0xf2,0x1,0x76,0x86,0x53,0xc3,0x53,0xeb,0xdd,0x3e,0x5e,0x28, 0x7,0xd0,0x2b,0x71,0x9,0xe1,0x20,0xa,0xaa,0x7c,0x8e,0x42,0x45,0x90,0x5e,0xee, 0xc5,0x0,0x50,0x2,0x30,0xc2,0x9,0xd3,0x1,0x1,0x6a,0x30,0x2e,0x3,0x8,0x5, 0x1,0xa5,0x94,0xe7,0x6,0x62,0xd9,0xee,0x8d,0x7b,0x22,0x6d,0x3,0xb1,0x6c,0xca, 0x44,0xec,0x52,0xe2,0x8f,0xe6,0xe2,0x71,0xd3,0xac,0x61,0x98,0xb4,0xb7,0x4c,0x7, 0x96,0xd4,0x7,0x4a,0x0,0x44,0x87,0x12,0x53,0x84,0x1,0x38,0xb7,0xc5,0x57,0xe4, 0xf3,0x13,0xa3,0x54,0x5c,0xd8,0x1,0x7d,0x7d,0x7d,0xe2,0xb9,0x6d,0x5e,0xbd,0x7a, 0x75,0x7e,0x2c,0x2,0x60,0xab,0x8,0x71,0x86,0xc3,0x61,0x78,0x3c,0x1e,0x79,0xa3, 0xaa,0xaa,0x22,0x97,0xcb,0x41,0xb5,0x28,0x38,0x71,0x6a,0x25,0xde,0xdc,0x19,0x46, 0x3c,0x99,0x75,0x26,0x53,0x59,0xa7,0xdb,0x65,0x8f,0x89,0x7,0x96,0xcd,0x33,0xba, 0x7e,0xdb,0xc0,0xde,0xa1,0x44,0x6e,0x8a,0x2,0xee,0x20,0xc4,0xc8,0xbe,0x11,0xc2, 0x15,0xc5,0x82,0x6a,0xaf,0x4b,0x7a,0xee,0x94,0x71,0xaa,0x28,0x84,0x31,0xce,0x29, 0x21,0x3a,0xf1,0xd,0x2f,0x80,0x12,0x70,0x96,0xd3,0x58,0x32,0x1c,0xcb,0xf5,0x76, 0x86,0x53,0x7d,0x7b,0xfb,0x12,0x83,0x1a,0xe5,0x1a,0xa,0x5,0x1b,0xa5,0x0,0xb0, 0x8c,0x62,0xed,0x17,0xd9,0x4,0xf2,0x87,0x89,0xb9,0x92,0x0,0xa5,0xb5,0x8,0x52, 0x8a,0x24,0x92,0x19,0x4f,0x26,0x9b,0xaf,0x6,0x80,0x13,0xa7,0x56,0x42,0xb5,0x28, 0x92,0xfb,0x85,0xf8,0x17,0xaa,0x31,0x12,0x89,0x20,0x95,0x4a,0x9,0x0,0x3c,0x3b, 0x56,0xeb,0x1,0x9e,0x35,0x1e,0xb0,0xa5,0xbb,0xbb,0x1b,0xd,0xd,0xd,0xf0,0x78, 0x3c,0xb2,0xf6,0x4d,0x34,0x7f,0x5a,0xd0,0x5a,0x85,0x37,0x77,0xea,0x53,0xc3,0xfb, 0x7,0x86,0x26,0xb4,0x4c,0xae,0x37,0x77,0x56,0xe4,0x79,0x8d,0xd1,0x4c,0x9e,0xe6, 0x99,0x46,0x89,0xdb,0x61,0xe5,0xb9,0xbc,0x46,0x38,0x51,0x14,0x42,0x8,0x51,0xad, 0x4,0x39,0x8d,0x12,0xc5,0xaa,0x68,0x1a,0xe3,0x79,0x4e,0xb9,0xa6,0x51,0x96,0xce, 0x69,0x2c,0x93,0xa7,0x2c,0x93,0xcd,0xb3,0x74,0x36,0xcf,0x52,0xdd,0xd1,0x74,0xb8, 0x6f,0x28,0x13,0x83,0x5e,0xe5,0xa3,0xa1,0xa8,0xfe,0xaf,0xa8,0x7e,0x4f,0x19,0x85, 0xe8,0x45,0x7a,0xbc,0xa4,0x3a,0x99,0x70,0x23,0x4e,0x79,0x88,0x21,0x81,0xd0,0xd3, 0x17,0x6d,0x11,0x7,0xc5,0xec,0x20,0x33,0xf7,0x9b,0x1,0xd0,0xd5,0xd5,0x25,0xa5, 0xe6,0x98,0x5,0x40,0x20,0x10,0x8,0x7,0x83,0xc1,0xd7,0x0,0x9c,0xd3,0xd3,0xd3, 0x3,0x4d,0xd3,0x64,0xc9,0x93,0xc3,0xe1,0x90,0x9d,0xb2,0x4e,0x9a,0x56,0x9,0x8b, 0x42,0x40,0x19,0x47,0x38,0x1a,0x9f,0x5a,0x2,0x80,0xa2,0x27,0xa9,0x5b,0xcc,0x84, 0x29,0xa,0xd1,0x88,0x42,0xb8,0x43,0xb5,0xf0,0x68,0x32,0xc7,0x49,0x5a,0x4b,0x3d, 0xf5,0x56,0xd7,0x46,0x83,0xa0,0xda,0x21,0xb6,0x11,0x73,0x3,0x51,0x5c,0xe,0x6e, 0x96,0xea,0xa5,0x1c,0xcf,0x31,0x7a,0xd9,0xb7,0x59,0x72,0x8c,0x46,0x78,0x39,0x6, 0x23,0xf1,0x56,0x40,0x6f,0x45,0x7b,0xd2,0xb4,0xca,0x42,0x48,0xdc,0x6e,0x97,0x9e, 0x91,0x88,0xfc,0x75,0x76,0x76,0xa,0xe2,0xf7,0x53,0x4a,0xdf,0x3a,0x16,0x1,0x70, 0xa4,0x65,0xe1,0x4f,0xa,0x83,0x26,0x16,0x8b,0x21,0x97,0xcb,0x41,0x9f,0xb0,0x69, 0x95,0xbd,0x7f,0xf5,0x56,0xac,0xba,0x41,0x14,0x4b,0x64,0x3c,0x5d,0x3d,0x91,0x43, 0x96,0x40,0xc9,0xf2,0x1c,0x56,0xfc,0xfc,0x9,0x38,0x72,0x39,0xcd,0x96,0xcd,0x69, 0x6a,0x36,0xab,0xd9,0xb2,0xd9,0xbc,0x5d,0x6c,0x99,0x8c,0xb1,0xe5,0xc,0x37,0x72, 0xa4,0x6e,0x66,0x42,0x2a,0xe4,0xf3,0xb0,0x24,0x53,0x59,0x5b,0x2a,0x95,0xb5,0xa7, 0xd2,0x39,0x7b,0x5a,0xdf,0x1c,0xf2,0x1c,0x99,0xbc,0x5d,0x38,0xa2,0x9c,0x95,0x52, 0xfc,0xd0,0x49,0xc1,0x8e,0xae,0xc1,0x69,0xe9,0x4c,0xae,0x5e,0x7,0xbc,0x1f,0x6e, 0x63,0x26,0xb1,0xc5,0x62,0x81,0xc5,0x62,0x1,0x21,0x44,0x86,0xcc,0x13,0x89,0x4, 0x22,0x91,0x88,0x0,0xc0,0x7f,0xdf,0x7e,0xfb,0xed,0x7c,0xac,0xaa,0x0,0x1,0x80, 0x35,0x0,0xd0,0xd3,0xd3,0x83,0xda,0xda,0x5a,0xd9,0x15,0xc4,0xed,0x76,0xcb,0xee, 0x9f,0x5f,0x3a,0x7b,0x22,0x36,0xee,0x89,0x80,0x73,0xe0,0x60,0xf7,0xe0,0xc9,0x4d, 0xd,0xfe,0xf6,0xf,0x5e,0xf5,0x83,0x97,0x24,0x51,0xb8,0xf3,0xbd,0x6d,0x7,0xae, 0x46,0x71,0x65,0xae,0xac,0x1e,0xe6,0x1c,0xcc,0x61,0x57,0xf7,0xce,0x3d,0xbe,0xe5, 0xe1,0x51,0xb8,0x55,0x70,0x3b,0xda,0xf6,0x1f,0x3c,0x2b,0x1e,0x4b,0x5d,0x50,0x90, 0x2,0xb2,0xbb,0x14,0xd1,0x6d,0x4f,0x90,0xa3,0xed,0x25,0xc0,0x39,0x27,0x1d,0x5d, 0x83,0x67,0xc0,0x88,0x1c,0x7d,0xe9,0x6c,0xb9,0xde,0x5,0x9c,0x4e,0xa7,0x14,0xff, 0x42,0x25,0x1e,0x3c,0x78,0x50,0x8a,0x7f,0x4d,0xd3,0x8e,0x49,0xf1,0x7f,0xc4,0x12, 0x20,0x10,0x8,0xb4,0x3,0xd8,0xc,0x0,0xdd,0xdd,0xdd,0xb2,0xfa,0x55,0x51,0x14, 0xb8,0xdd,0x6e,0x39,0x1d,0x7a,0x52,0xad,0xb,0xe7,0xcc,0xd1,0x5b,0xc3,0xa6,0xd2, 0x39,0xe7,0x81,0x83,0x3,0x33,0x46,0xd,0xb6,0x13,0x53,0x17,0x90,0x91,0xdd,0xbf, 0xc9,0x11,0xc4,0xea,0x4b,0x2d,0x7b,0x73,0x55,0x8f,0xd5,0x28,0xeb,0x32,0xf9,0xe7, 0x23,0xbe,0x7b,0xa4,0xbf,0x29,0x8f,0xef,0x3d,0xd0,0x37,0x27,0x97,0xd3,0xfc,0x0, 0x70,0xce,0x9c,0x5a,0x4c,0xaa,0x75,0x49,0xe3,0xcf,0xe5,0x72,0x49,0xf7,0x38,0x9f, 0xcf,0x83,0x31,0x86,0xed,0xdb,0xb7,0xb,0xe2,0x27,0x29,0xa5,0x7f,0x3d,0x56,0x1, 0x70,0x34,0x93,0x43,0x9f,0x0,0x30,0x2f,0x1a,0x8d,0x22,0x9d,0x4e,0x23,0x16,0x8b, 0xa1,0xba,0xba,0x1a,0x84,0x10,0x54,0x56,0x56,0xca,0xc6,0x50,0x5f,0x3c,0x6b,0x22, 0x5e,0xdf,0x16,0x46,0x9e,0x32,0x74,0xf7,0x46,0x4e,0x9c,0xd8,0x54,0xbd,0xdb,0xaa, 0x17,0x8a,0x1e,0x92,0xb0,0x5b,0xda,0x6,0x90,0xdf,0xf5,0x95,0x82,0xdf,0x25,0x2a, 0x41,0x51,0xc8,0xeb,0x2d,0x98,0xdd,0x88,0xc8,0x49,0xff,0x6a,0x6,0x2e,0x1b,0xc5, 0xd2,0x57,0x74,0xaa,0x11,0x5,0x0,0x39,0x3b,0xfa,0xb,0xf2,0xc0,0x33,0x5b,0x8c, 0xf6,0x72,0x90,0xcd,0x65,0xc4,0x14,0x64,0x2,0x80,0x32,0x13,0xb1,0x47,0xbf,0x42, 0x92,0xd7,0xa8,0xad,0xbb,0x2f,0xba,0x10,0x0,0x54,0x8b,0x82,0x2f,0x9e,0x55,0xe0, 0x7e,0xd1,0x36,0x4e,0xa8,0x48,0x0,0xd8,0xbb,0x77,0x2f,0x86,0x87,0x87,0xc5,0x92, 0x36,0xff,0x76,0xf7,0xdd,0x77,0xc7,0xc6,0xb4,0x4,0x30,0xdb,0x1,0xe2,0x6,0x53, 0xa9,0x14,0xf2,0xf9,0xbc,0xec,0x99,0x27,0x66,0xc3,0xd4,0x78,0xed,0x58,0x76,0x8a, 0x9e,0xf6,0xce,0xe6,0x34,0x75,0xd7,0xde,0xee,0x53,0x4a,0x89,0xcf,0x4c,0x8f,0x9c, 0x73,0x8e,0x8c,0xa6,0x41,0xd3,0x18,0xf2,0x94,0x21,0xaf,0x31,0x68,0x94,0x92,0xbc, 0x46,0xa1,0x69,0x8c,0xe4,0x29,0x23,0x79,0x8d,0x61,0x38,0x91,0x11,0x3d,0x7e,0x4a, 0xb9,0xbe,0xc0,0xf9,0xc6,0x46,0x74,0x9,0x40,0xe2,0x99,0x1c,0xd1,0x28,0x47,0x5e, 0xe3,0xc8,0x8b,0x57,0x8d,0x13,0xfd,0x77,0x38,0xc9,0x53,0x4e,0x38,0xe7,0x87,0x24, 0xbc,0x80,0xc4,0x8e,0xdd,0x9d,0x67,0x69,0x1a,0xf5,0x0,0xc0,0xb2,0x53,0x1a,0x50, 0xe3,0xd5,0xef,0xd5,0x66,0xb3,0xc1,0xe9,0x74,0x42,0x51,0x14,0x50,0x4a,0x21,0xc2, 0xe5,0x9b,0x37,0x6f,0x16,0xc4,0x4f,0x53,0x4a,0x7f,0x81,0x63,0x78,0x1c,0x31,0x0, 0x2,0x81,0xc0,0x7b,0xd0,0xfb,0x1,0x63,0xcf,0x9e,0x3d,0xc8,0x64,0x32,0x18,0x1a, 0x1a,0x82,0xa2,0x28,0x50,0x14,0xa5,0xa8,0xb3,0xf6,0xa5,0xb,0x9b,0xa5,0x81,0xd4, 0x37,0x30,0x3c,0xeb,0xc0,0xc1,0xfe,0xd6,0xf,0x10,0xc1,0x44,0x21,0xa,0x31,0xfe, 0x19,0x1d,0x3b,0x14,0x19,0x57,0x37,0xba,0x78,0x90,0x49,0xd,0x5e,0x39,0xa9,0xb8, 0x84,0xf0,0x96,0x52,0x0,0x80,0x10,0xa5,0xa0,0xe3,0xf5,0x38,0xbf,0x42,0x88,0xbe, 0xe9,0xe7,0x27,0x8a,0x62,0xea,0x12,0x42,0xf4,0x4e,0x22,0xa5,0xa2,0x9f,0x0,0x64, 0xef,0x81,0xbe,0xb9,0x83,0x91,0xf8,0x29,0xc2,0xd0,0xbd,0x74,0x61,0xa1,0xac,0xcf, 0xe7,0xf3,0xc9,0x6b,0x14,0xde,0xd0,0xde,0xbd,0x7b,0x11,0x8d,0x46,0x85,0xfe,0xff, 0xcd,0xbd,0xf7,0xde,0xdb,0x37,0x2e,0x0,0x60,0x8c,0xef,0x8b,0xa0,0xd0,0xf6,0xed, 0xdb,0x91,0xc9,0x64,0x90,0x4e,0xa7,0x41,0x8,0x81,0xc3,0xe1,0x90,0x86,0xa1,0xc7, 0x69,0xc5,0xb7,0x2f,0x9a,0x2e,0x49,0x70,0xe0,0xe0,0xc0,0x99,0x3,0xe1,0x58,0x5d, 0xb1,0x4a,0xc6,0x88,0xcc,0x19,0x4c,0x33,0xc7,0x5,0xf,0xa,0x2a,0xfa,0x5c,0x36, 0x14,0x7a,0xc9,0x8d,0xa8,0xda,0xb5,0x9a,0x41,0x40,0x0,0xb,0x21,0x20,0xd5,0x3e, 0xa7,0xa2,0x18,0x94,0x2f,0x70,0x34,0x29,0x68,0x82,0x82,0xe0,0x27,0xa4,0xd8,0xa6, 0xd0,0x3,0x39,0x43,0x89,0x86,0x8e,0xae,0xc1,0x65,0xe2,0xa2,0xbf,0x7d,0xd1,0x74, 0x78,0x9c,0x56,0x69,0xf8,0xd9,0x6c,0x36,0x10,0x42,0x90,0xcd,0x66,0x91,0xcd,0x66, 0xc1,0x39,0xc7,0xbb,0xef,0xbe,0x2b,0x88,0x9f,0xa3,0x94,0xfe,0x1c,0xc7,0xf8,0x38, 0xaa,0x26,0x51,0x81,0x40,0xe0,0x95,0x60,0x30,0xf8,0x2c,0x80,0xb,0xdb,0xdb,0xdb, 0x31,0x7d,0xfa,0x74,0xd8,0x6c,0x36,0x49,0xf8,0xea,0xea,0x6a,0x64,0x32,0x19,0x50, 0x4a,0x71,0xd2,0x34,0x3f,0xae,0x3a,0x77,0x32,0x1e,0x5a,0xd7,0xe,0xc6,0x38,0xd9, 0xb5,0xa7,0x6b,0x99,0xc7,0x65,0xef,0x2,0x1,0xe6,0x4d,0xab,0x25,0x1d,0xfd,0x71, 0xd4,0x56,0x3a,0x50,0xe3,0x73,0x9b,0x22,0xc4,0xc5,0x92,0x81,0x17,0x7a,0x7,0xf0, 0x19,0x13,0xfd,0x64,0x4b,0x1,0x24,0xa5,0xc9,0x1d,0x66,0x6,0x33,0xd1,0xd9,0x99, 0xcc,0x9c,0xe8,0xc7,0x45,0x67,0x4c,0x23,0x26,0x60,0x95,0x1a,0x7c,0x23,0x9c,0x14, 0x97,0xcd,0x8a,0xf7,0x75,0x3b,0xc4,0xba,0xbf,0xa3,0xff,0x42,0xce,0xb9,0x5,0x0, 0xae,0x3a,0x77,0xb2,0x74,0x73,0x15,0x45,0x81,0xdf,0xef,0x97,0x86,0x9f,0xe8,0x13, 0xd4,0xd6,0xd6,0x86,0x70,0x38,0x2c,0x0,0xf0,0x7f,0xd7,0xae,0x5d,0xdb,0x35,0xae, 0x0,0x60,0x8c,0x1f,0x0,0x58,0xc6,0x39,0x57,0xb6,0x6d,0xdb,0x86,0x85,0xb,0x17, 0x22,0x1e,0x8f,0xc3,0xeb,0xf5,0x42,0x55,0x55,0x34,0x34,0x34,0xa0,0xbb,0xbb,0x1b, 0x9c,0x73,0x5c,0x74,0x6a,0x13,0xe,0xe,0xa6,0xf1,0xf2,0x7b,0xfd,0xc8,0xe5,0xa9, 0x3d,0x99,0xc9,0x35,0x38,0x6d,0xea,0x60,0xdf,0xbc,0x7f,0xa5,0x36,0x0,0xc3,0xfa, 0x46,0x4c,0xad,0x5b,0x64,0x10,0x87,0x17,0x3a,0xfb,0x10,0x0,0xd8,0x53,0x34,0x99, 0x7c,0x4,0x0,0x4a,0x93,0x3e,0x16,0x0,0xe4,0xfe,0xc8,0x3f,0x12,0x4c,0x17,0x5e, 0x7,0x29,0xf2,0x1c,0xa,0x6e,0x21,0x29,0xf9,0x5b,0x3f,0x7f,0x26,0x9b,0xaf,0xd7, 0x28,0x73,0x3,0xc0,0xb9,0x73,0xeb,0x70,0xd1,0xa9,0x4d,0x12,0x31,0xe6,0x95,0x4c, 0xc5,0xb2,0x76,0xc9,0x64,0x12,0xaf,0xbf,0xfe,0xba,0x99,0xfb,0xef,0xc4,0x18,0x18, 0x47,0xd,0x80,0x40,0x20,0xb0,0x35,0x18,0xc,0x3e,0x8,0xe0,0x9a,0x9e,0x9e,0x1e, 0xc,0xe,0xe,0xca,0xa6,0x8,0xa2,0x7b,0x66,0x6d,0x6d,0x2d,0xfa,0xfb,0xf5,0x36, 0x71,0x5f,0x5d,0x3a,0x15,0x3d,0x91,0x34,0x76,0x76,0xc6,0x91,0xcb,0x52,0x17,0x38, 0xaa,0xbd,0x15,0xce,0x7d,0x16,0x85,0x64,0x4c,0x53,0xbc,0xc4,0xf4,0x6e,0xa3,0xb4, 0x8b,0xcb,0x79,0x79,0x86,0x1f,0x20,0xb,0x3e,0xed,0xe,0x35,0x62,0x2,0x80,0x62, 0x8a,0x6,0xca,0xe0,0x90,0xc3,0x66,0x4b,0xda,0x6c,0xd6,0x4e,0x14,0x8c,0x7e,0xa3, 0xdf,0x74,0x11,0xf1,0x15,0x23,0x3e,0xa0,0x14,0xe2,0x3,0x84,0x50,0xca,0x9c,0xb1, 0x44,0x66,0x76,0x5e,0xd3,0xf3,0xfd,0xb3,0x26,0x54,0xe0,0xab,0x4b,0xa7,0xca,0xfb, 0xaf,0xaa,0xaa,0x92,0xb5,0xfe,0xb9,0x5c,0x4e,0xb6,0xc7,0x7b,0xf9,0xe5,0x97,0xcd, 0x71,0xff,0x5b,0xee,0xbf,0xff,0xfe,0x3,0x63,0x1,0x0,0x1f,0xb6,0x57,0xf0,0x4, 0x0,0x6d,0x0,0x1c,0x7e,0xbf,0x5f,0x36,0x8c,0x9c,0x30,0x61,0x82,0x9c,0x14,0x61, 0x5e,0x1e,0x66,0x38,0x95,0xc7,0xea,0xdf,0x6f,0x45,0x4f,0x24,0x63,0xf8,0xce,0xf, 0x8b,0xe2,0x86,0x0,0x0,0x10,0x47,0x49,0x44,0x41,0x54,0x4a,0xb6,0x75,0x6a,0xd3, 0x5f,0x1a,0xea,0x2a,0xdb,0x4d,0x61,0x5f,0x3a,0xca,0xfe,0x68,0xdb,0x68,0xdd,0x3f, 0xf8,0x28,0x21,0xdd,0xd1,0xe2,0x4,0xc2,0x70,0x1c,0x6d,0xf6,0x8f,0xa5,0xab,0x37, 0x32,0x7d,0xcf,0xbe,0xde,0x2f,0x51,0xc6,0x5c,0x0,0xd0,0x58,0xe5,0xc0,0xcf,0xae, 0x3a,0x5e,0xb6,0x88,0xf5,0x7a,0xbd,0xb2,0xe9,0x3,0xa5,0x14,0xdd,0xdd,0xdd,0xd0, 0x34,0xd,0x5b,0xb7,0x6e,0xc5,0xfa,0xf5,0xeb,0x5,0xf1,0x7b,0x29,0xa5,0xb3,0x7e, 0xfd,0xeb,0x5f,0xf,0x8f,0x5b,0x0,0x18,0x20,0xb8,0xb,0x46,0xd3,0xc8,0x19,0x33, 0x66,0x60,0xce,0x9c,0x39,0x70,0x38,0x1c,0x68,0x6a,0x6a,0x92,0x8a,0xb5,0xa7,0xa7, 0x47,0x36,0x91,0x4a,0x66,0x34,0xfc,0xe2,0x89,0xdd,0xe6,0x99,0xc4,0x7c,0x42,0x53, 0xd5,0xcb,0x33,0x5a,0x1a,0xdf,0x3d,0x2,0x0,0xb0,0x43,0x0,0x80,0x97,0x48,0x80, 0xd2,0x0,0x8e,0xac,0xf0,0x39,0x1c,0x0,0x76,0xed,0xe9,0x5e,0xd8,0xdd,0x17,0xb9, 0x90,0x73,0x5d,0xba,0xcc,0x99,0xe2,0xc3,0xf7,0x2e,0x69,0x95,0xde,0x8c,0xd3,0xe9, 0x2c,0x9a,0xef,0xdf,0xdd,0xdd,0x8d,0x4c,0x26,0x83,0xe1,0xe1,0x61,0x3c,0xfa,0xe8, 0xa3,0xc8,0x66,0xb3,0xe6,0xc4,0xcf,0x0,0xa5,0xf4,0xa7,0x94,0xd2,0x5f,0x3f,0xf8, 0xe0,0x83,0xf9,0x63,0x19,0x0,0x1f,0xa5,0x95,0xe9,0xcf,0x0,0xec,0x10,0xc6,0x4f, 0x7b,0x7b,0x3b,0x32,0x99,0xc,0x6,0x6,0xa,0x4b,0xed,0xd6,0xd7,0xd7,0xcb,0x89, 0x11,0x6e,0x87,0x15,0xab,0x2f,0x9f,0x8d,0xb,0x8c,0x18,0x1,0xe7,0x9c,0x1c,0xec, 0xa,0x9f,0xb7,0xe9,0xfd,0xfd,0xcb,0x52,0xe9,0xac,0xe7,0x10,0xae,0x5d,0xe9,0x7c, 0x3d,0xeb,0xa1,0x2c,0xff,0x92,0xcd,0x72,0x88,0x7d,0x6b,0xe9,0x79,0x93,0xa9,0xac, 0xf7,0x9d,0x2d,0xfb,0x3e,0xdf,0xd5,0x1b,0xb9,0x48,0x10,0x7f,0xc9,0x49,0xd,0x58, 0xfd,0xc5,0xd9,0x92,0xf8,0x76,0xbb,0x1d,0xd,0xd,0xd,0xd2,0xe5,0x1b,0x18,0x18, 0x90,0x95,0x3e,0x3b,0x76,0xec,0x80,0xcf,0xe7,0x43,0x45,0x45,0x85,0xac,0x5,0xa0, 0x94,0xd6,0x52,0x4a,0xd7,0x6a,0x9a,0xb6,0xed,0xf2,0xcb,0x2f,0x6f,0x1d,0x97,0x12, 0xc0,0x90,0x2,0xd3,0x0,0xbc,0x5,0xa0,0x4a,0x51,0x14,0x2c,0x5a,0xb4,0x8,0x55, 0x55,0x55,0xa8,0xae,0xae,0x46,0x65,0x65,0xa5,0x74,0xf3,0x6,0x6,0x6,0x8a,0xd6, 0x8,0x7c,0x69,0x4b,0x3f,0x1e,0x78,0x6e,0x9f,0x5c,0x4,0xd2,0xa2,0x10,0xad,0xa6, 0xda,0xfb,0xf7,0x19,0x2d,0x8d,0x6f,0x1a,0x73,0xee,0x46,0xe3,0xfe,0x43,0x89,0xfe, 0x43,0x65,0xf8,0x3e,0x48,0xd,0x28,0xb9,0x9c,0xe6,0xdc,0xb5,0xb7,0xfb,0x9c,0x70, 0x24,0xbe,0x88,0x71,0x6e,0x13,0x19,0xbe,0x6b,0x3f,0xdb,0x82,0x25,0x27,0xd5,0xcb, 0x93,0x54,0x54,0x54,0xc8,0xf5,0x1,0x0,0x7d,0xb9,0x98,0x70,0x38,0x8c,0xa7,0x9e, 0x7a,0xa,0x2f,0xbe,0xf8,0x22,0x36,0x6d,0xda,0x84,0x64,0x32,0x89,0x99,0x33,0x67, 0x62,0xd6,0xac,0x59,0x98,0x33,0x67,0xe,0x76,0xed,0xda,0x25,0xbd,0x21,0x4a,0x69, 0x84,0x52,0x7a,0xf1,0xe3,0x8f,0x3f,0xfe,0xda,0xb8,0x3,0x80,0x1,0x82,0xf3,0x0, 0x3c,0xf,0xc0,0x6a,0xb7,0xdb,0x71,0xde,0x79,0xe7,0xc1,0xe9,0x74,0x16,0xf5,0xd4, 0x37,0x3f,0x38,0x31,0x76,0x1c,0x8c,0xe1,0x97,0x4f,0xef,0x91,0xdd,0xc4,0x1,0xc0, 0x6a,0x51,0x32,0xf5,0x75,0x95,0xaf,0x4e,0x9f,0xd2,0xb0,0xd1,0x62,0x51,0x72,0x87, 0x1,0x0,0x3f,0x84,0xfe,0x3f,0x14,0x0,0x8,0x0,0x85,0x31,0x66,0xdd,0xbd,0xaf, 0x67,0x61,0xdf,0xc0,0xf0,0x67,0x29,0x65,0x72,0x71,0xc0,0x1a,0xaf,0x1d,0xdf,0x5c, 0x3e,0xd,0xc7,0x4f,0x2e,0x5c,0xb3,0x19,0xc8,0x0,0x10,0x8b,0xc5,0xb0,0x7f,0xff, 0x7e,0xac,0x5e,0xbd,0x1a,0xcf,0x3c,0xf3,0xcc,0xa8,0xcf,0xc3,0xe9,0x74,0x62,0xf9, 0xf2,0xe5,0x98,0x36,0x6d,0x1a,0xf6,0xec,0xd9,0x23,0x40,0x90,0xa5,0x94,0xfe,0xe3, 0x33,0xcf,0x3c,0xf3,0xc7,0x71,0x7,0x0,0x3,0x4,0x37,0x0,0xf8,0x37,0x0,0xa8, 0xac,0xac,0xc4,0xd9,0x67,0x9f,0xd,0x8b,0xc5,0x2,0xaf,0xd7,0x8b,0x9a,0x9a,0x1a, 0xc9,0x3d,0xa9,0x54,0xa,0x7d,0x7d,0x7d,0xb2,0x5e,0x2e,0x4f,0x19,0x9e,0x7b,0xa7, 0xf,0x8f,0x6f,0xe8,0x44,0x3c,0x5d,0xe8,0x37,0xa8,0x5a,0x2d,0x9,0x6f,0x85,0x6b, 0x5b,0x6d,0xb5,0x77,0x47,0x43,0x7d,0xe5,0x1,0x85,0x90,0xd2,0xaa,0x9f,0xd1,0x24, 0xc0,0x21,0x93,0x47,0x94,0x32,0xb5,0xbb,0x37,0x32,0x6d,0x30,0x12,0x9f,0x13,0x4f, 0xa4,0x8f,0xd3,0x28,0x93,0x54,0xae,0x70,0x5a,0x71,0xe9,0xe9,0x13,0xb0,0xf4,0xe4, 0x7a,0x59,0xdd,0xa3,0x28,0xa,0xea,0xeb,0xeb,0xe5,0xb2,0x77,0x80,0xde,0xa,0x7f, 0x60,0x60,0x0,0x57,0x5c,0x71,0x5,0x36,0x6f,0xde,0x7c,0xd8,0x67,0xd2,0xd2,0xd2, 0x82,0x2f,0x7e,0xf1,0x8b,0x32,0x29,0x44,0x29,0xe5,0x0,0x6e,0x9,0x85,0x42,0x77, 0x8e,0x3b,0x0,0x18,0x20,0xb8,0x1f,0xc0,0xd7,0x1,0xbd,0x3b,0xd6,0x82,0x5,0xb, 0xa0,0x28,0xa,0x9c,0x4e,0x27,0x1a,0x1a,0x1a,0x64,0xb9,0x54,0x3e,0x9f,0x47,0x6f, 0x6f,0x6f,0xd1,0x32,0x72,0xa9,0x2c,0xc5,0x93,0x6f,0x76,0xe1,0xd9,0x8d,0x3d,0x72, 0x71,0x9,0xe9,0xd0,0x5b,0x94,0xb4,0xc7,0xed,0xd8,0x55,0xed,0xaf,0xd8,0x5e,0xe9, 0x73,0x77,0x7b,0x5c,0xf6,0x61,0xab,0xd5,0x92,0x3b,0x84,0xf8,0xe7,0x0,0x88,0xa6, 0x51,0x6b,0x3c,0x99,0xf1,0x45,0xa2,0xf1,0x49,0x91,0xa1,0xe4,0x71,0xc9,0x54,0x66, 0x36,0x63,0xbc,0x68,0xd2,0x8a,0x5d,0x55,0x70,0xe1,0x29,0x8d,0xb8,0x78,0x61,0x33, 0x5c,0xf6,0x42,0x3e,0xc9,0x66,0xb3,0xa1,0xa1,0xa1,0x41,0xd6,0x39,0x30,0xc6,0xd0, 0xdb,0xdb,0x8b,0x74,0x3a,0x8d,0x9b,0x6f,0xbe,0x19,0x8f,0x3f,0xfe,0xf8,0x11,0x3f, 0x93,0xfa,0xfa,0x7a,0x7c,0xf9,0xcb,0x5f,0xc6,0xae,0x5d,0xbb,0xcc,0xd3,0xc3,0x7e, 0x3,0xe0,0xeb,0xa1,0x50,0x48,0x1b,0x6f,0x0,0xb0,0x1a,0xaa,0xe0,0x3c,0x21,0x3e, 0x4f,0x3b,0xed,0x34,0xd8,0xed,0x76,0xd9,0x31,0x4b,0x3c,0x54,0xce,0x39,0xe2,0xf1, 0xb8,0x2c,0x98,0x90,0xa1,0xd7,0x44,0xe,0x4f,0xbe,0xd9,0x85,0xd,0x3b,0xc2,0xb2, 0xe9,0xc4,0x68,0xc3,0xa2,0x28,0x29,0x8b,0x55,0x89,0x59,0x2d,0x96,0x98,0xaa,0x5a, 0x62,0xe0,0xe0,0x79,0x8d,0x7a,0x35,0x8d,0xfa,0x34,0x4a,0xbd,0x8c,0x71,0xd7,0xa1, 0xbe,0xeb,0x73,0xa9,0x58,0x38,0xbb,0x1a,0x97,0x9e,0xde,0x8c,0x2a,0x4f,0xf1,0xd2, 0x70,0x55,0x55,0x55,0xd2,0x98,0x13,0x60,0xed,0xe9,0xe9,0x41,0x3e,0x9f,0xc7,0x96, 0x2d,0x5b,0x70,0xd9,0x65,0x97,0x1d,0xf2,0x9a,0xea,0xea,0xea,0x70,0xf7,0xdd,0x77, 0x63,0x78,0x78,0x18,0x77,0xdc,0x71,0x87,0xe8,0x12,0xa,0x9f,0xcf,0x87,0x2b,0xae, 0xb8,0x2,0x3d,0x3d,0x3d,0xe6,0x39,0x2,0xcf,0x1,0xf8,0x42,0x28,0x14,0x8a,0x8f, 0x1b,0x0,0x18,0x20,0xa8,0x32,0x6e,0x6e,0x3e,0xa0,0xf7,0x15,0x5e,0xb8,0x70,0x21, 0x7c,0x3e,0xdf,0xa8,0x62,0x55,0x74,0x1a,0x1f,0x1a,0x1a,0x2a,0x9a,0x51,0xcb,0x1, 0xb4,0x75,0xc5,0xb1,0xb1,0x2d,0x8a,0xb7,0xdb,0xa2,0x38,0x38,0x98,0xfa,0x48,0xd7, 0xd5,0x5c,0xed,0xc4,0xfc,0x19,0x55,0x98,0x3f,0xc3,0x8f,0xd6,0xe6,0x8a,0xa2,0x64, 0x84,0xe8,0xf2,0x2d,0xae,0x51,0x4a,0xa5,0x12,0x75,0x75,0xed,0xb5,0xd7,0xe2,0xd5, 0x57,0x5f,0x3d,0xe4,0x6f,0x9c,0x79,0xe6,0x99,0x58,0xb3,0x66,0x8d,0x8c,0x81,0xdc, 0x74,0xd3,0x4d,0xa2,0x63,0x38,0x1c,0xe,0x7,0x56,0xae,0x5c,0x9,0x4a,0xa9,0x79, 0x5d,0x85,0x2d,0x0,0x2e,0xc,0x85,0x42,0x5d,0xe3,0x6,0x0,0x6,0x8,0x1c,0x0, 0xfe,0x3,0xc6,0xca,0x59,0x16,0x8b,0x5,0xa7,0x9c,0x72,0x8a,0x5c,0x5e,0xc5,0xed, 0x76,0xa3,0xba,0xba,0xba,0x68,0x19,0x79,0xf1,0x60,0x62,0xb1,0x18,0x46,0xbb,0x9e, 0xde,0x68,0x6,0xef,0xee,0x1d,0x42,0xff,0x70,0x6,0xd1,0x78,0xe,0xd1,0x44,0x1e, 0x91,0x44,0xe,0xd1,0x44,0x4e,0xaa,0xc,0xbb,0xaa,0xc0,0xef,0xb1,0xa1,0xca,0x63, 0x83,0xdf,0xa3,0xc2,0x5f,0x61,0x43,0x9d,0xcf,0x8e,0x13,0xa7,0xfa,0xd1,0x58,0xe5, 0x18,0x79,0xe3,0x84,0xc0,0xeb,0xf5,0xc2,0xef,0xf7,0x17,0x75,0xf4,0xc8,0xe7,0xf3, 0x8,0x87,0xc3,0x32,0xb7,0x9f,0x4c,0x26,0xf1,0xd6,0x5b,0x6f,0xe1,0xd6,0x5b,0x6f, 0x95,0xd1,0xcd,0xd1,0x86,0xcd,0x66,0xc3,0x9a,0x35,0x6b,0xb0,0x60,0xc1,0x2,0x0, 0x7a,0x19,0xfd,0x2d,0xb7,0xdc,0x82,0xd7,0x5e,0x7b,0xcd,0x8,0x7e,0x59,0xb1,0x74, 0xe9,0x52,0xd4,0xd5,0xd5,0xa1,0xbb,0x5b,0x4e,0xb9,0xec,0x34,0x40,0xf0,0xde,0xb8, 0x1,0x80,0x9,0x8,0xb7,0x18,0xb1,0x2,0x2,0x0,0xb3,0x67,0xcf,0xc6,0xec,0xd9, 0xb3,0x3f,0xf0,0xe1,0x33,0xc6,0x90,0x4c,0x26,0x91,0x4c,0x26,0x65,0xeb,0xd5,0xc3, 0x8d,0x74,0x56,0x57,0x21,0x4e,0xbb,0xe5,0xf0,0x41,0xf,0xc3,0x26,0x71,0xbb,0xdd, 0x70,0xbb,0xdd,0x45,0x1c,0x3f,0x1a,0x8,0xf7,0xee,0xdd,0x8b,0x75,0xeb,0xd6,0x41, 0x55,0x55,0xac,0x59,0xb3,0x6,0x89,0xc4,0x7,0x37,0xf8,0xb2,0x5a,0xad,0xb8,0xf5, 0xd6,0x5b,0xf1,0xb9,0xcf,0x7d,0x4e,0xde,0x4f,0x30,0x18,0xc4,0x9f,0xff,0xfc,0x67, 0x79,0xdf,0x67,0x9e,0x79,0x26,0x4e,0x38,0xe1,0x4,0xec,0xd9,0xb3,0x47,0x7c,0x2d, 0xe,0xe0,0xf3,0xa1,0x50,0xe8,0xf9,0x71,0x5,0x0,0x3,0x4,0x2b,0x0,0xfc,0x1, 0x80,0x7,0x0,0x1a,0x1b,0x1b,0x31,0x77,0xee,0x5c,0x99,0x3d,0x3c,0x94,0xf8,0x15, 0x76,0x42,0x3a,0x9d,0x96,0x80,0x30,0xdb,0xa,0x47,0x33,0x44,0xc3,0x46,0xb7,0xdb, 0x5d,0x54,0xbb,0xf7,0x41,0x6a,0x28,0x97,0xcb,0xe1,0xb5,0xd7,0x5e,0xc3,0x8e,0x1d, 0x3b,0x40,0x29,0x85,0xd7,0xeb,0xc5,0x3,0xf,0x3c,0x50,0x14,0xe4,0xfa,0xa0,0xb1, 0x6a,0xd5,0x2a,0xac,0x5a,0xb5,0x4a,0xfe,0xfd,0xd0,0x43,0xf,0xe1,0xbe,0xfb,0xee, 0x93,0xc0,0x9a,0x3b,0x77,0x2e,0x16,0x2f,0x5e,0x8c,0xad,0x5b,0xb7,0x8a,0x8f,0x68, 0x0,0x6e,0x8,0x85,0x42,0xff,0x3e,0xae,0x0,0x60,0x80,0x60,0x2e,0x80,0xa7,0x1, 0x4c,0x16,0x44,0x6f,0x69,0x69,0xc1,0xac,0x59,0xb3,0x64,0x15,0x91,0xc5,0x62,0x81, 0xcf,0xe7,0x83,0xdb,0xed,0x96,0xeb,0xf3,0x96,0xe,0xc6,0x98,0x6c,0x4f,0x6f,0xd4, 0xda,0xc9,0x7d,0x71,0xe,0xab,0xd5,0xa,0xab,0xd5,0x5a,0xb4,0x5f,0xa,0x2c,0x31, 0x72,0xb9,0x1c,0x92,0xc9,0x24,0x86,0x87,0x87,0x8b,0xc0,0xd5,0xd9,0xd9,0x89,0xf5, 0xeb,0xd7,0x63,0x68,0x68,0x48,0x86,0x76,0x7d,0x3e,0x1f,0x3a,0x3a,0x3a,0xf0,0xf0, 0xc3,0xf,0x1f,0xf1,0x7d,0x2f,0x5f,0xbe,0x1c,0xab,0x57,0xaf,0x96,0x59,0xc3,0x17, 0x5f,0x7c,0x11,0x3f,0xfe,0xf1,0x8f,0xa5,0xf7,0xd3,0xd2,0xd2,0x82,0xcb,0x2e,0xbb, 0xc,0xdb,0xb6,0x6d,0x33,0xab,0xbd,0x7f,0x5,0x70,0x6b,0x28,0x14,0xe2,0xe3,0x6, 0x0,0x6,0x8,0x6a,0xd,0xf7,0x67,0x85,0x59,0x5c,0xb6,0xb6,0xb6,0x62,0xfa,0xf4, 0xe9,0xe6,0x35,0x76,0xa0,0xaa,0xaa,0xe4,0xd8,0x92,0xfe,0x3a,0x1f,0x79,0x88,0x95, 0xbe,0x44,0xa,0xd7,0x3c,0xba,0xbb,0xbb,0xb1,0x71,0xe3,0xc6,0xd2,0xc9,0x1c,0x8c, 0x52,0xaa,0x0,0xc0,0xfc,0xf9,0xf3,0x71,0xdd,0x75,0xd7,0x1d,0xd5,0xef,0x2d,0x58, 0xb0,0x0,0x3f,0xff,0xf9,0xcf,0xe1,0xf1,0xe8,0xf1,0xa6,0x2d,0x5b,0xb6,0xe0,0xbb, 0xdf,0xfd,0xae,0x5c,0x62,0xa7,0xbe,0xbe,0x1e,0x97,0x5f,0x7e,0x39,0xf6,0xed,0xdb, 0x67,0xbe,0x9e,0x47,0x1,0x5c,0x13,0xa,0x85,0xb2,0xe3,0x6,0x0,0x26,0x20,0x9c, 0x9,0x7d,0x51,0xc5,0x85,0xe2,0x98,0xc3,0xe1,0xc0,0xec,0xd9,0xb3,0x31,0x65,0xca, 0x94,0x11,0xe2,0x59,0x88,0x6f,0xa7,0xd3,0x59,0xc4,0xd9,0xe4,0x30,0x15,0xdd,0x62, 0x31,0xb,0x21,0x29,0x84,0x2a,0x19,0x4d,0x8d,0x74,0x75,0x75,0xe1,0xdd,0x77,0xdf, 0x45,0x4f,0x4f,0x8f,0x99,0xf0,0x94,0x52,0x7a,0x87,0x91,0xd9,0xbb,0x9f,0x52,0x8a, 0x73,0xce,0x39,0x7,0xcf,0x3d,0xf7,0x1c,0x1e,0x7d,0xf4,0xd1,0xa3,0xba,0xe7,0x69, 0xd3,0xa6,0x61,0xed,0xda,0xb5,0xa8,0xaf,0xd7,0xc3,0xcb,0x1d,0x1d,0x1d,0xb8,0xf1, 0xc6,0x1b,0xd1,0xd9,0xd9,0x9,0x40,0xcf,0x30,0x7e,0xe1,0xb,0x5f,0x40,0x34,0x1a, 0x95,0x86,0x27,0x80,0xd7,0x0,0x5c,0x1c,0xa,0x85,0x22,0xe3,0xa,0x0,0x26,0x20, 0x5c,0x6a,0x88,0x3b,0x99,0x28,0x11,0x8b,0x2c,0x34,0x35,0x35,0xa1,0xb6,0xb6,0xb6, 0xc8,0x38,0x1c,0xcd,0x98,0x33,0x3,0x2,0x40,0x11,0xc1,0xf,0x67,0x3c,0x8a,0x65, 0xed,0xb7,0x6d,0xdb,0x86,0xde,0xde,0xde,0x52,0xc2,0x3f,0x42,0x29,0xfd,0xd9,0xfd, 0xf7,0xdf,0xbf,0xfb,0xfa,0xeb,0xaf,0xaf,0xa0,0x94,0x76,0x6b,0x9a,0xe6,0x51,0x14, 0x5,0x57,0x5f,0x7d,0x35,0x56,0xad,0x5a,0x85,0xbd,0x7b,0xf7,0x1e,0xd5,0xfd,0xd6, 0xd6,0xd6,0xe2,0x97,0xbf,0xfc,0x25,0x5a,0x5b,0xf5,0xdb,0x8d,0x46,0xa3,0xf8,0xee, 0x77,0xbf,0x8b,0xf7,0xdf,0x7f,0x5f,0x32,0xc1,0x8a,0x15,0x2b,0xa0,0xaa,0xaa,0x79, 0xd9,0xdd,0x5d,0x0,0x2e,0x8,0x85,0x42,0xfb,0xc6,0x1d,0x0,0x4c,0x81,0xa3,0xeb, 0x1,0xfc,0x33,0x80,0xfa,0x52,0x6b,0xba,0xbe,0xbe,0x1e,0x8d,0x8d,0x8d,0x45,0x1, 0xa4,0x8f,0x32,0x86,0x87,0x87,0xd1,0xd3,0xd3,0x83,0xce,0xce,0x4e,0xf4,0xf5,0xf5, 0x15,0xd9,0x10,0x94,0x52,0x8d,0x52,0xfa,0x7,0x4a,0xe9,0xed,0x6b,0xd7,0xae,0xdd, 0x63,0xfe,0xde,0xd5,0x57,0x5f,0xfd,0x6d,0x4a,0xe9,0x1a,0x4a,0x29,0x5c,0x2e,0x17, 0xa6,0x4f,0x9f,0x8e,0xdf,0xfd,0xee,0x77,0x68,0x6b,0x3b,0xba,0x55,0xe2,0x5d,0x2e, 0x17,0xee,0xbc,0xf3,0x4e,0x9c,0x7e,0xfa,0xe9,0x0,0x80,0x6c,0x36,0x8b,0x1f,0xfd, 0xe8,0x47,0x58,0xb7,0x6e,0x9d,0x94,0x76,0x8b,0x17,0x2f,0xc6,0xc4,0x89,0x13,0xd1, 0xd1,0xd1,0x21,0xbe,0x36,0x0,0xe0,0x73,0xa1,0x50,0xe8,0xef,0xe3,0xe,0x0,0x26, 0x20,0x78,0xa0,0xaf,0x45,0x7c,0x9,0xf4,0xb5,0x9,0x2c,0xa5,0xfe,0x7a,0x4d,0x4d, 0x8d,0x54,0x5,0xe,0x87,0xa3,0x68,0x13,0x73,0xf2,0x38,0xe7,0xc8,0xe5,0x72,0xc8, 0x64,0x32,0x45,0x5b,0x32,0x99,0x44,0x6f,0x6f,0x2f,0x12,0x89,0x84,0x99,0xd3,0x5, 0xf1,0xf3,0x94,0xd2,0x87,0x28,0xa5,0x77,0xdc,0x7b,0xef,0xbd,0x87,0xe4,0xb4,0xcb, 0x2f,0xbf,0xfc,0x1,0x4a,0xe9,0xf5,0x94,0x52,0x38,0x9d,0x4e,0x1c,0x7f,0xfc,0xf1, 0x78,0xec,0xb1,0xc7,0xf0,0xce,0x3b,0xef,0x1c,0xb5,0x47,0xf2,0xc3,0x1f,0xfe,0x10, 0x17,0x5f,0x7c,0xb1,0x34,0x6c,0xd7,0xac,0x59,0x83,0x47,0x1e,0x79,0x44,0xde,0xeb, 0xc2,0x85,0xb,0x31,0x7f,0xfe,0x7c,0xec,0xda,0xb5,0x4b,0x7a,0xba,0x0,0xae,0xc, 0x85,0x42,0x8f,0x8f,0x4b,0x0,0x94,0x80,0xa1,0x6,0xfa,0xea,0x24,0x17,0x3,0xf8, 0x2c,0x0,0xe7,0x91,0x7c,0x4f,0x55,0x55,0xb9,0x5a,0xc7,0x68,0xf6,0x80,0x99,0xf0, 0x94,0xd2,0xb0,0xa6,0x69,0x21,0x4a,0xe9,0xb3,0x94,0xd2,0xe7,0xef,0xbe,0xfb,0xee, 0xe8,0xe1,0xce,0xff,0xf9,0xcf,0x7f,0x5e,0xa5,0x94,0xfe,0x7,0xa5,0xf4,0x2a,0x4a, 0x29,0x14,0x45,0xc1,0x99,0x67,0x9e,0x89,0xbf,0xfe,0xf5,0xaf,0x58,0xb7,0x6e,0x1d, 0x8e,0xf6,0x19,0x5e,0x7b,0xed,0xb5,0xb8,0xe1,0x86,0x1b,0xa4,0x2d,0xf3,0xc7,0x3f, 0xfe,0x11,0xf7,0xdc,0x73,0x8f,0x54,0x5d,0x73,0xe6,0xcc,0xc1,0x92,0x25,0x4b,0xcc, 0x6e,0x22,0x3,0xf0,0xbd,0x50,0x28,0x74,0xef,0xb8,0x6,0x40,0x9,0x18,0x5c,0x0, 0x96,0x1a,0x60,0x38,0x13,0x7a,0x9f,0xdd,0xa3,0x5a,0x77,0xc7,0x44,0xfc,0x2d,0x6, 0xc1,0x9f,0xd5,0x34,0xed,0x6f,0x77,0xdc,0x71,0x7,0xfb,0x30,0xd7,0xb4,0x7c,0xf9, 0xf2,0x7f,0xa1,0x94,0xfe,0x58,0xfc,0xbd,0x68,0xd1,0x22,0x6c,0xdc,0xb8,0x11,0x4f, 0x3d,0xf5,0xd4,0x51,0xc7,0x29,0x96,0x2d,0x5b,0x86,0x1f,0xff,0xf8,0xc7,0x52,0xbd, 0xad,0x5f,0xbf,0x1e,0xb7,0xde,0x7a,0xab,0xec,0xba,0xd2,0xd2,0xd2,0x82,0x4b,0x2e, 0xb9,0xa4,0x34,0x91,0xf4,0x2b,0x0,0xdf,0xe,0x85,0x42,0x6c,0xdc,0x3,0x60,0x14, 0x40,0x10,0xe8,0x4b,0xd7,0x34,0x19,0x60,0x68,0x32,0xed,0xd7,0x42,0x5f,0x5b,0xb2, 0x5b,0x6c,0x9c,0xf3,0x6e,0x4a,0x69,0x17,0xa5,0xb4,0x77,0xf5,0xea,0xd5,0xb9,0x8f, 0xeb,0x3a,0x96,0x2d,0x5b,0xf6,0x8f,0x0,0x1e,0x0,0xa0,0xa,0x57,0xaf,0xbd,0xbd, 0x1d,0x7f,0xfa,0xd3,0x9f,0x90,0x4e,0xa7,0x8f,0xea,0x5c,0x27,0x9f,0x7c,0x32,0xee, 0xbe,0xfb,0x6e,0x54,0x54,0xe8,0x6b,0x11,0x6f,0xdb,0xb6,0xd,0xdf,0xf9,0xce,0x77, 0x10,0x89,0xe8,0xc6,0x7f,0x5d,0x5d,0x1d,0x56,0xae,0x5c,0x29,0xcb,0xcf,0x8c,0xf1, 0x34,0x80,0x2f,0x85,0x42,0xa1,0xd4,0xa7,0xa,0x0,0xc7,0xd2,0x58,0xb6,0x6c,0xd9, 0xf9,0x0,0x1e,0x3,0xe0,0x3,0x80,0xe3,0x8e,0x3b,0xe,0x99,0x4c,0x6,0xf,0x3f, 0xfc,0xb0,0x2c,0x84,0x3d,0xd2,0xd1,0xd2,0xd2,0x82,0xb5,0x6b,0xd7,0xca,0x7a,0xc3, 0xae,0xae,0x2e,0xdc,0x78,0xe3,0x8d,0x68,0x6f,0x6f,0x97,0x6e,0xe2,0x65,0x97,0x5d, 0x86,0x74,0x3a,0x6d,0x3e,0xf7,0x46,0x0,0xcb,0x43,0xa1,0x50,0x5f,0x19,0x0,0x9f, 0x1c,0x8,0x8e,0x87,0xde,0x3d,0x65,0x12,0xa0,0xaf,0xa7,0x5c,0x5d,0x5d,0x8d,0x87, 0x1e,0x7a,0xc8,0x9c,0xec,0x39,0xa2,0x51,0x5d,0x5d,0x8d,0x35,0x6b,0xd6,0xc8,0x5c, 0x49,0x2c,0x16,0xc3,0x3f,0xfd,0xd3,0x3f,0x61,0xd3,0xa6,0x4d,0xd2,0x4d,0xbc,0xf0, 0xc2,0xb,0xe1,0xf5,0x7a,0x65,0x9a,0x19,0x40,0xbb,0xe1,0x26,0x6e,0xff,0x28,0xf7, 0xa1,0x94,0x49,0xf9,0xe1,0x46,0x28,0x14,0xda,0xa,0xe0,0x34,0x0,0xef,0x2,0x7a, 0x3f,0x80,0x83,0x7,0xf,0xe2,0x6b,0x5f,0xfb,0x9a,0xf4,0xf7,0x8f,0x74,0x84,0xc3, 0x61,0xac,0x5a,0xb5,0x4a,0x66,0xe,0xbd,0x5e,0x2f,0xee,0xbf,0xff,0x7e,0x2c,0x5e, 0xbc,0x58,0x46,0x30,0x9f,0x7c,0xf2,0x49,0x74,0x75,0x75,0xc9,0x85,0x3b,0xa1,0x87, 0xd6,0xdf,0x58,0xb6,0x6c,0xd9,0xb9,0x65,0x9,0xf0,0xc9,0x4a,0x2,0x37,0x80,0xff, 0x4,0x70,0xa1,0xe0,0xd6,0x85,0xb,0x17,0xe2,0xcf,0x7f,0xfe,0x33,0x36,0x6e,0xdc, 0x78,0x74,0xdc,0xa8,0x28,0xb8,0xf9,0xe6,0x9b,0xb1,0x72,0xe5,0x4a,0x69,0xc4,0xfe, 0xea,0x57,0xbf,0xc2,0x83,0xf,0x3e,0x28,0x3f,0x73,0xfa,0xe9,0xa7,0x63,0xc1,0x82, 0x5,0xd8,0xb9,0x73,0xa7,0x8c,0x6b,0x1,0xb8,0x2e,0x14,0xa,0xfd,0xbe,0xc,0x80, 0x4f,0xe,0x4,0x16,0x0,0xf7,0x1,0xb8,0x41,0xf8,0xfb,0x8b,0x16,0x2d,0xc2,0xb, 0x2f,0xbc,0x80,0x97,0x5e,0x7a,0xe9,0xa8,0xdd,0xc4,0xab,0xaf,0xbe,0x1a,0xdf,0xfa, 0xd6,0xb7,0xa4,0x9b,0xf8,0xd8,0x63,0x8f,0xe1,0xae,0xbb,0xee,0x92,0x6e,0xe2,0xf1, 0xc7,0x1f,0x8f,0xc5,0x8b,0x17,0x63,0xc7,0x8e,0x1d,0xe6,0x73,0xff,0x73,0x28,0x14, 0xfa,0x49,0x19,0x0,0x9f,0x2c,0x10,0xbe,0x7,0x3d,0xd7,0x41,0x0,0xbd,0x4a,0x68, 0xd3,0xa6,0x4d,0x78,0xea,0xa9,0xa7,0x8a,0x16,0xd9,0x3e,0x92,0xb1,0x78,0xf1,0x62, 0xdc,0x76,0xdb,0x6d,0x32,0x3b,0xfa,0xc6,0x1b,0x6f,0xe0,0x87,0x3f,0xfc,0xa1,0x9c, 0x68,0xd3,0xd2,0xd2,0x82,0x15,0x2b,0x56,0x60,0xef,0xde,0xbd,0xe6,0x44,0xd2,0xef, 0x0,0xac,0xa,0x85,0x42,0xf9,0x32,0x0,0x3e,0x39,0x10,0xac,0x4,0xf0,0x7b,0x0, 0xe,0x0,0x38,0xe9,0xa4,0x93,0xd0,0xdb,0xdb,0x8b,0x47,0x1f,0x7d,0xf4,0xa8,0xdd, 0xc4,0x79,0xf3,0xe6,0xe1,0x9e,0x7b,0xee,0x91,0x8b,0x4f,0xee,0xdc,0xb9,0x13,0x37, 0xdd,0x74,0x93,0xcc,0x17,0xd4,0xd5,0xd5,0xe1,0xd2,0x4b,0x2f,0xc5,0xc0,0xc0,0x80, 0x39,0x91,0xf4,0x12,0x80,0xcb,0x42,0xa1,0xd0,0x70,0x19,0x0,0x9f,0x1c,0x8,0x16, 0x1a,0xfe,0x7a,0xd,0x0,0xb4,0xb6,0xb6,0x82,0x10,0x82,0x87,0x1e,0x7a,0xc8,0x5c, 0x13,0x78,0x44,0x63,0xf2,0xe4,0xc9,0x58,0xbb,0x76,0xad,0x2c,0xa9,0xeb,0xed,0xed, 0xc5,0x8d,0x37,0xde,0x88,0x7d,0xfb,0xf6,0x49,0x83,0x71,0xc5,0x8a,0x15,0xe0,0x9c, 0x9b,0x13,0x49,0xaf,0x2,0x38,0xff,0x48,0x2a,0x8f,0xcb,0x5e,0xc0,0xff,0x8c,0x87, 0xf0,0x26,0xf4,0x94,0x77,0x1b,0x0,0xec,0xde,0xbd,0x1b,0xb1,0x58,0xc,0xdf,0xf8, 0xc6,0x37,0x24,0x21,0x8f,0x74,0xb4,0xb7,0xb7,0xe3,0x9a,0x6b,0xae,0xc1,0xb6,0x6d, 0xdb,0x0,0xe8,0xb,0x78,0xff,0xf6,0xb7,0xbf,0xc5,0xfc,0xf9,0xf3,0xa5,0xcb,0xf8, 0xd4,0x53,0x4f,0x61,0xc1,0x82,0x5,0xe6,0xc5,0xaa,0x17,0x41,0xcf,0xb6,0x96,0xdd, 0xc0,0x4f,0x10,0x4,0x7b,0xc,0x10,0xbc,0x1,0xe8,0x13,0x65,0x77,0xef,0xde,0x8d, 0x6f,0x7e,0xf3,0x9b,0x98,0x39,0x73,0xe6,0x51,0x9d,0x2b,0x12,0x89,0x60,0xd5,0xaa, 0x55,0x58,0xbf,0x7e,0x3d,0x0,0xbd,0x31,0xd5,0x7d,0xf7,0xdd,0x87,0xb,0x2e,0xb8, 0x40,0x82,0x20,0x10,0x8,0x60,0xe6,0xcc,0x99,0x32,0xaa,0x8,0xe0,0x7b,0xcb,0x96, 0x2d,0xbb,0xa4,0xc,0x80,0x4f,0x16,0x4,0x61,0x0,0xe7,0x3,0xf8,0x93,0x20,0xd4, 0x86,0xd,0x1b,0x70,0xdd,0x75,0xd7,0x49,0xe,0x3e,0xd2,0x91,0xcd,0x66,0x71,0xf3, 0xcd,0x37,0xe3,0x8f,0x7f,0xd4,0x67,0x97,0x59,0xad,0x56,0xfc,0xe4,0x27,0x3f,0x91, 0x55,0x4a,0xd9,0x6c,0x16,0xb7,0xdc,0x72,0xb,0x4e,0x3e,0xf9,0x64,0x73,0x19,0xdc, 0x3d,0x65,0x1b,0xe0,0xd8,0xb0,0x9,0x8,0x80,0x3b,0x61,0x4c,0xa7,0x27,0x84,0xe0, 0xdc,0x73,0xcf,0xc5,0xb,0x2f,0xbc,0x80,0x17,0x5f,0x7c,0xf1,0xa8,0xdd,0xc4,0x2b, 0xae,0xb8,0x2,0x37,0xdd,0x74,0x93,0x24,0xf4,0xd3,0x4f,0x3f,0x8d,0xdb,0x6f,0xbf, 0x1d,0x94,0x52,0xf8,0xfd,0x7e,0x7c,0xf5,0xab,0x5f,0x35,0x4f,0x5f,0x9b,0x19,0xa, 0x85,0x76,0x97,0x25,0xc0,0x27,0x2b,0x9,0x78,0x28,0x14,0xfa,0x3e,0x80,0xaf,0x1, 0xa0,0x9c,0x73,0xac,0x5b,0xb7,0xe,0x67,0x9d,0x75,0x16,0x56,0xae,0x5c,0x59,0x54, 0x13,0x79,0x24,0xe3,0x91,0x47,0x1e,0xc1,0xf,0x7e,0xf0,0x3,0x99,0x39,0xbc,0xe8, 0xa2,0x8b,0xb0,0x76,0xed,0x5a,0xb8,0x5c,0x2e,0x44,0xa3,0x51,0x6c,0xdf,0x5e,0x14, 0x1d,0xfe,0x6c,0x59,0x5,0x1c,0x3b,0x40,0xf8,0x3f,0xd0,0xeb,0x1d,0x12,0x0,0xb0, 0x61,0xc3,0x6,0x4c,0x99,0x32,0x5,0xd7,0x5c,0x73,0x4d,0xe9,0x12,0xb3,0x87,0x1d, 0xeb,0xd6,0xad,0xc3,0xd,0x37,0xdc,0x20,0x13,0x44,0xa7,0x9e,0x7a,0x2a,0xbe,0xf2, 0x95,0xaf,0x0,0x0,0xde,0x7c,0xf3,0x4d,0x73,0x41,0xed,0x3f,0x94,0x1,0x70,0x6c, 0x81,0x20,0x4,0xe0,0x2c,0x18,0xb,0x71,0xbc,0xff,0xfe,0xfb,0xb0,0x5a,0xad,0xf8, 0xfa,0xd7,0xbf,0xe,0xbf,0xdf,0x7f,0x54,0xe7,0x7a,0xef,0xbd,0xf7,0x70,0xcd,0x35, 0xd7,0xa0,0xbd,0xbd,0x1d,0x9c,0x73,0x99,0x84,0x1a,0x18,0x18,0x30,0x3,0xca,0x5f, 0xb6,0x1,0x8e,0x4d,0xbb,0x60,0x22,0xf4,0x6c,0xe2,0x1c,0x40,0xcf,0x8,0xce,0x98, 0x31,0x3,0xbf,0xf9,0xcd,0x6f,0xd0,0xd5,0x75,0x74,0xd3,0x5,0x9,0x21,0xa8,0xab, 0xab,0x43,0x5f,0x5f,0x21,0x3b,0x7c,0xf1,0xc5,0x17,0x8b,0x1a,0x82,0x3f,0x84,0x42, 0xa1,0xab,0xca,0x12,0xe0,0xd8,0x93,0x4,0x7,0xa1,0x57,0x3a,0xbd,0x0,0xe8,0x19, 0xc1,0xf7,0xde,0x7b,0xf,0x37,0xde,0x78,0x23,0x66,0xcd,0x9a,0x75,0x54,0xe7,0x12, 0x4b,0xd3,0x98,0x87,0x29,0x32,0xd8,0x51,0x56,0x1,0xc7,0x2e,0x8,0x62,0x0,0x2e, 0x0,0xf0,0x5b,0x40,0x9f,0x91,0xfc,0xca,0x2b,0xaf,0xe0,0xfa,0xeb,0xaf,0x97,0x93, 0x4c,0x3f,0xcc,0x98,0x35,0x6b,0x96,0xb9,0xac,0xbe,0xc,0x80,0x63,0x1c,0x4,0x5a, 0x28,0x14,0xfa,0x5f,0x0,0x56,0x3,0x7a,0xa5,0xf0,0xb,0x2f,0xbc,0x80,0x4b,0x2f, 0xbd,0x14,0x4b,0x96,0x2c,0x39,0xec,0x24,0x98,0xd1,0x86,0x28,0x2c,0x1,0x90,0x32, 0xd4,0x4c,0xd9,0x6,0x18,0x23,0x76,0xc1,0x97,0xd,0x69,0x60,0x3,0xf4,0xe9,0x68, 0x6d,0x6d,0x6d,0x78,0xe2,0x89,0x27,0xa4,0xcb,0x77,0xb8,0x51,0x2,0x9a,0xdb,0x42, 0xa1,0xd0,0xbf,0x94,0x25,0xc0,0xd8,0x91,0x6,0xf,0x3,0x58,0xc,0x20,0xa,0x0, 0x6f,0xbf,0xfd,0x36,0x1a,0x1a,0x1a,0x70,0xef,0xbd,0xf7,0x1e,0x91,0x87,0x30,0x7f, 0xfe,0x7c,0x39,0xf,0x11,0xfa,0x7a,0x8f,0xc1,0xc3,0x1a,0x90,0x65,0x9,0x70,0x4c, 0x4a,0x82,0x59,0x0,0xfe,0x1b,0x40,0xb,0xa0,0xc7,0xfe,0x17,0x2d,0x5a,0x84,0xf5, 0xeb,0xd7,0xe3,0x89,0x27,0x9e,0x18,0x11,0x39,0x54,0x14,0x5,0x4b,0x96,0x2c,0x31, 0x1f,0xe7,0x0,0xbe,0x1c,0xa,0x85,0x1e,0x2d,0x3,0x60,0xec,0x82,0xa0,0xe,0xc0, 0x33,0x30,0xda,0xed,0x0,0x40,0x73,0x73,0x33,0x6a,0x6b,0x6b,0xd1,0xdb,0xdb,0x8b, 0xbe,0xbe,0x3e,0x24,0x93,0x49,0x78,0x3c,0x9e,0xd2,0xb9,0x90,0x43,0x0,0xae,0xe, 0x85,0x42,0x7f,0x39,0x22,0x17,0xb2,0xc,0x80,0x63,0x1a,0x4,0x56,0x0,0x5f,0x5, 0x70,0x1b,0x8c,0xda,0x82,0xc3,0x8c,0x4d,0x0,0x56,0x1e,0xcd,0x84,0xd2,0x32,0x0, 0xc6,0x6,0x10,0x7c,0x0,0x7e,0x4,0xe0,0xcb,0xd0,0x27,0xd2,0x9a,0x5d,0x83,0x41, 0xe8,0x55,0x40,0xcf,0x3,0x78,0xe4,0x68,0xfb,0xa,0x94,0x1,0x30,0xf6,0xc0,0x60, 0x3,0x30,0x1,0xfa,0x7c,0x84,0x61,0x0,0x9b,0x3f,0x4a,0x47,0x91,0x32,0x0,0x3e, 0xe5,0xa3,0xec,0x6,0x96,0x1,0x50,0x1e,0x65,0x0,0x94,0x47,0x19,0x0,0xe5,0x51, 0x6,0x40,0x79,0x94,0x1,0x50,0x1e,0x65,0x0,0x94,0x47,0x19,0x0,0xe5,0x51,0x6, 0x40,0x79,0x94,0x1,0x50,0x1e,0x65,0x0,0x94,0xc7,0xb8,0x1f,0xff,0xf,0x9a,0x46, 0x50,0x8c,0xab,0x2e,0xfa,0x84,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42, 0x60,0x82, // /home/Adel/ZeGrapher/icons/quadrillage.png 0x0,0x0,0x6,0x46, 0x89, 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, 0x0,0x1,0x2b,0x0,0x0,0x1,0x0,0x8,0x6,0x0,0x0,0x0,0xeb,0xcf,0x50,0x41, 0x0,0x0,0x0,0x1,0x73,0x52,0x47,0x42,0x0,0xae,0xce,0x1c,0xe9,0x0,0x0,0x0, 0x6,0x62,0x4b,0x47,0x44,0x0,0xff,0x0,0xff,0x0,0xff,0xa0,0xbd,0xa7,0x93,0x0, 0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xb,0x13,0x0,0x0,0xb,0x13,0x1, 0x0,0x9a,0x9c,0x18,0x0,0x0,0x0,0x7,0x74,0x49,0x4d,0x45,0x7,0xdb,0x4,0x1d, 0xc,0x4,0x5,0xfe,0xc2,0xa7,0x21,0x0,0x0,0x5,0xc6,0x49,0x44,0x41,0x54,0x78, 0xda,0xed,0xd8,0x31,0x8b,0x9d,0x69,0x1d,0x87,0xe1,0xfb,0x95,0x21,0x6c,0x18,0xd8, 0x30,0xb0,0xb0,0x30,0x9c,0x22,0x44,0xc5,0xc5,0x43,0x8a,0x90,0x2a,0x29,0xac,0x84, 0x1,0x9b,0xad,0xc6,0x26,0x4d,0x64,0x52,0x5a,0xa5,0xb7,0xb2,0xb7,0xb1,0xcc,0x47, 0xd8,0xca,0x46,0x48,0x6b,0x65,0x29,0xc8,0x88,0x60,0x25,0x19,0x16,0x44,0x30,0xec, 0x40,0x8,0x38,0xe8,0x63,0xf3,0x7e,0x4,0x8b,0xe7,0x21,0xd7,0xf5,0x9,0x7e,0xfc, 0xdf,0x77,0xee,0x73,0xe6,0x6c,0xd5,0x3f,0xab,0x6f,0xaa,0xbb,0xe6,0xf6,0xa3,0xea, 0xac,0xfa,0xe3,0xe4,0x3b,0xcf,0xaa,0x9f,0x54,0xbf,0x6b,0x7e,0xab,0xdc,0xb4,0xea, 0xb2,0xfa,0x7d,0xf5,0x61,0xf2,0x9d,0x8f,0xaa,0x43,0xf5,0x87,0xc9,0x77,0x9e,0x56, 0x3f,0xdb,0xff,0xf6,0x67,0x77,0xa8,0xbe,0xda,0xaa,0x77,0xd5,0x71,0x8c,0x71,0x3b, 0xf3,0xda,0x6d,0xdb,0xae,0xf6,0x9d,0xaf,0x27,0xdf,0x79,0xac,0xde,0x8c,0x31,0x9e, 0xcf,0xfe,0x6,0xac,0x72,0xd3,0x7d,0xeb,0x75,0x75,0x31,0xc6,0xb8,0x99,0x7c,0xe7, 0xe5,0xbe,0xf3,0xd5,0xe4,0x3b,0xf,0xd5,0xdb,0x31,0xc6,0x71,0x81,0x67,0x7f,0x51, 0x5d,0x7d,0x2f,0x80,0x5,0x88,0x15,0x20,0x56,0x0,0x62,0x5,0x88,0x15,0x80,0x58, 0x1,0x88,0x15,0x20,0x56,0x0,0x62,0x5,0x20,0x56,0x80,0x58,0x1,0x88,0x15,0x80, 0x58,0x1,0x62,0x5,0x20,0x56,0x80,0x58,0x1,0x88,0x15,0x80,0x58,0x1,0x62,0x5, 0x20,0x56,0x0,0x62,0x5,0x88,0x15,0x80,0x58,0x1,0x88,0x15,0x20,0x56,0x0,0x62, 0x5,0x88,0x15,0x80,0x58,0x1,0x88,0x15,0x20,0x56,0x0,0x62,0x5,0x20,0x56,0x80, 0x58,0x1,0x88,0x15,0x80,0x58,0x1,0x62,0x5,0x20,0x56,0x0,0x62,0x5,0x88,0x15, 0x80,0x58,0x1,0x9f,0xa0,0xad,0xfa,0xce,0x19,0x80,0xd9,0x9d,0x54,0xb7,0xd5,0x71, 0x8c,0x71,0x3b,0x75,0x55,0xb7,0xed,0x6a,0xdf,0xf9,0x7a,0xf2,0x9d,0xc7,0xea,0xcd, 0x18,0xe3,0xf9,0xf4,0x9f,0x54,0x8b,0xdc,0x74,0xdf,0x7a,0x5d,0x5d,0x8c,0x31,0x6e, 0x26,0xdf,0x79,0xb9,0xef,0x7c,0x35,0xf9,0xce,0x43,0xf5,0x76,0x8c,0x71,0x5c,0xe0, 0xd9,0x5f,0x54,0x57,0xfe,0xd,0x4,0x96,0x20,0x56,0x80,0x58,0x1,0x88,0x15,0x20, 0x56,0x0,0x62,0x5,0x20,0x56,0x80,0x58,0x1,0x88,0x15,0x80,0x58,0x1,0x62,0x5, 0x20,0x56,0x0,0x62,0x5,0x88,0x15,0x80,0x58,0x1,0x62,0x5,0x20,0x56,0x0,0x62, 0x5,0x88,0x15,0x80,0x58,0x1,0x88,0x15,0x20,0x56,0x0,0x62,0x5,0x20,0x56,0x80, 0x58,0x1,0x88,0x15,0x20,0x56,0x0,0x62,0x5,0x20,0x56,0x80,0x58,0x1,0x88,0x15, 0x80,0x58,0x1,0x62,0x5,0x20,0x56,0x0,0x62,0x5,0x88,0x15,0x80,0x58,0x1,0x88, 0x15,0x20,0x56,0x0,0x62,0x5,0x7c,0x82,0x4e,0xaa,0x7b,0xd5,0x8b,0x6d,0xdb,0x3e, 0x4e,0xbe,0xf5,0x59,0x75,0xbe,0x6d,0xdb,0xcb,0xc9,0x77,0x9e,0x57,0x67,0xb,0xec, 0x5c,0xe9,0xa6,0x55,0xa7,0xd5,0xe5,0xb6,0x6d,0xef,0x27,0xdf,0xf9,0xb4,0x7a,0xb4, 0xc0,0x4d,0xcf,0xaa,0xd3,0x45,0x9e,0xfd,0xb1,0x3a,0x9c,0xec,0xdf,0xae,0x1e,0x57, 0x77,0x93,0xf,0x3e,0xec,0x7,0x7e,0xb2,0xc0,0x4b,0x70,0x7f,0x81,0x9d,0x2b,0xdd, 0xb4,0xfd,0x43,0xf5,0x58,0x7d,0x98,0x7c,0xe7,0xc3,0x45,0x6e,0x7a,0xba,0xdf,0x74, 0x95,0xf7,0xf4,0xc1,0x56,0xbd,0xab,0x8e,0x63,0x8c,0xdb,0x99,0xd7,0x6e,0xdb,0x76, 0xb5,0xef,0x7c,0x3d,0xf9,0xce,0x63,0xf5,0x66,0x8c,0xf1,0x7c,0xf6,0x37,0x60,0x95, 0x9b,0xee,0x5b,0xaf,0xab,0x8b,0x31,0xc6,0xcd,0xe4,0x3b,0x2f,0xf7,0x9d,0xaf,0x26, 0xdf,0x79,0xa8,0xde,0x8e,0x31,0x8e,0xb,0x3c,0xfb,0x8b,0xea,0xca,0x6f,0x56,0xc0, 0x12,0xc4,0xa,0x10,0x2b,0x0,0xb1,0x2,0xc4,0xa,0x40,0xac,0x0,0xc4,0xa,0x10, 0x2b,0x0,0xb1,0x2,0x10,0x2b,0x40,0xac,0x0,0xc4,0xa,0x40,0xac,0x0,0xb1,0x2, 0x10,0x2b,0x40,0xac,0x0,0xc4,0xa,0x40,0xac,0x0,0xb1,0x2,0x10,0x2b,0x0,0xb1, 0x2,0xc4,0xa,0x40,0xac,0x0,0xc4,0xa,0x10,0x2b,0x0,0xb1,0x2,0xc4,0xa,0x40, 0xac,0x0,0xc4,0xa,0x10,0x2b,0x0,0xb1,0x2,0x10,0x2b,0x40,0xac,0x0,0xc4,0xa, 0x40,0xac,0x0,0xb1,0x2,0x10,0x2b,0x0,0xb1,0x2,0xc4,0xa,0x40,0xac,0x80,0x4f, 0xd0,0x56,0x7d,0xe7,0xc,0xc0,0xec,0x4e,0xaa,0xdb,0xea,0x38,0xc6,0xb8,0x9d,0xba, 0xaa,0xdb,0x76,0xb5,0xef,0x7c,0x3d,0xf9,0xce,0x63,0xf5,0x66,0x8c,0xf1,0x7c,0xfa, 0x4f,0xaa,0x45,0x6e,0xba,0x6f,0xbd,0xae,0x2e,0xc6,0x18,0x37,0x93,0xef,0xbc,0xdc, 0x77,0xbe,0x9a,0x7c,0xe7,0xa1,0x7a,0x3b,0xc6,0x38,0x2e,0xf0,0xec,0x2f,0xaa,0x2b, 0xff,0x6,0x2,0x4b,0x10,0x2b,0x40,0xac,0x0,0xc4,0xa,0x10,0x2b,0x0,0xb1,0x2, 0x10,0x2b,0x40,0xac,0x0,0xc4,0xa,0x40,0xac,0x0,0xb1,0x2,0x10,0x2b,0x0,0xb1, 0x2,0xc4,0xa,0x40,0xac,0x0,0xb1,0x2,0x10,0x2b,0x0,0xb1,0x2,0xc4,0xa,0x40, 0xac,0x0,0xc4,0xa,0x10,0x2b,0x0,0xb1,0x2,0x10,0x2b,0x40,0xac,0x0,0xc4,0xa, 0x10,0x2b,0x0,0xb1,0x2,0x10,0x2b,0x40,0xac,0x0,0xc4,0xa,0x40,0xac,0x0,0xb1, 0x2,0x10,0x2b,0x0,0xb1,0x2,0xc4,0xa,0x40,0xac,0x0,0xc4,0xa,0x10,0x2b,0x0, 0xb1,0x2,0x3e,0x41,0x27,0xd5,0xbd,0xea,0xc5,0xb6,0x6d,0x1f,0x27,0xdf,0xfa,0xac, 0x3a,0xdf,0xb6,0xed,0xe5,0xe4,0x3b,0xcf,0xab,0xb3,0x5,0x76,0xae,0x74,0xd3,0xaa, 0xd3,0xea,0x72,0xdb,0xb6,0xf7,0x93,0xef,0x7c,0x5a,0x3d,0x5a,0xe0,0xa6,0x67,0xd5, 0xe9,0x22,0xcf,0xfe,0x58,0x1d,0x4e,0xf6,0x6f,0x57,0x8f,0xab,0xbb,0xc9,0x7,0x1f, 0xf6,0x3,0x3f,0x59,0xe0,0x25,0xb8,0xbf,0xc0,0xce,0x95,0x6e,0xda,0xfe,0xa1,0x7a, 0xac,0x3e,0x4c,0xbe,0xf3,0xe1,0x22,0x37,0x3d,0xdd,0x6f,0xba,0xca,0x7b,0xfa,0x60, 0xab,0xde,0x55,0xc7,0x31,0xc6,0xed,0xcc,0x6b,0xb7,0x6d,0xbb,0xda,0x77,0xbe,0x9e, 0x7c,0xe7,0xb1,0x7a,0x33,0xc6,0x78,0x3e,0xfb,0x1b,0xb0,0xca,0x4d,0xf7,0xad,0xd7, 0xd5,0xc5,0x18,0xe3,0x66,0xf2,0x9d,0x97,0xfb,0xce,0x57,0x93,0xef,0x3c,0x54,0x6f, 0xc7,0x18,0xc7,0x5,0x9e,0xfd,0x45,0x75,0xe5,0x37,0x2b,0x60,0x9,0x62,0x5,0x88, 0x15,0x80,0x58,0x1,0x62,0x5,0x20,0x56,0x0,0x62,0x5,0x88,0x15,0x80,0x58,0x1, 0x88,0x15,0x20,0x56,0x0,0x62,0x5,0x20,0x56,0x80,0x58,0x1,0x88,0x15,0x20,0x56, 0x0,0x62,0x5,0x20,0x56,0x80,0x58,0x1,0x88,0x15,0x80,0x58,0x1,0x62,0x5,0x20, 0x56,0x0,0x62,0x5,0x88,0x15,0x80,0x58,0x1,0x62,0x5,0x20,0x56,0x0,0x62,0x5, 0x88,0x15,0x80,0x58,0x1,0x88,0x15,0x20,0x56,0x0,0x62,0x5,0x20,0x56,0x80,0x58, 0x1,0x88,0x15,0x80,0x58,0x1,0x62,0x5,0x20,0x56,0xc0,0x27,0x68,0xab,0xfe,0x55, 0x5d,0x57,0xff,0x9d,0x7c,0xeb,0x17,0xd5,0x67,0xd5,0xcd,0xe4,0x3b,0x3f,0xab,0x1e, 0x56,0x7f,0x5d,0xe0,0xf9,0xaf,0x72,0xd3,0xaa,0x1f,0x57,0x7f,0xab,0xee,0x26,0xdf, 0x79,0x56,0x7d,0x5e,0xfd,0x7d,0xf2,0x9d,0xf7,0xaa,0x1f,0x54,0x7f,0x59,0xe0,0xd9, 0x7f,0x5e,0x7d,0xb1,0x55,0xdf,0x56,0x97,0xd5,0x87,0xc9,0x7,0x7f,0x5d,0x7d,0xbf, 0xfa,0xcd,0xe4,0x3b,0x1f,0x55,0xbf,0xaa,0x7e,0xb1,0xc0,0x4b,0xb0,0xca,0x4d,0xab, 0xbe,0xa9,0x7e,0x59,0xfd,0x63,0xf2,0x9d,0x3f,0xad,0x9e,0x55,0xbf,0x9e,0x7c,0xe7, 0x97,0xd5,0x6f,0xab,0x9f,0x2f,0xf0,0xec,0x9f,0x55,0x5f,0x9f,0x54,0xff,0xa9,0xfe, 0x3c,0xc6,0xb8,0x9d,0xfa,0x2b,0xe0,0xb6,0x3d,0xad,0x1e,0x8c,0x31,0xfe,0x34,0xf9, 0xce,0xbb,0xea,0xe3,0xec,0x3b,0x57,0xba,0xe9,0xbe,0xf5,0xdf,0xd5,0xf5,0x18,0xe3, 0x66,0xf2,0x9d,0x3f,0xac,0xbe,0x5a,0xe0,0x3d,0x3d,0x54,0x77,0x8b,0x3c,0xfb,0x2f, 0xab,0x5b,0xbf,0x59,0x1,0x4b,0x10,0x2b,0x40,0xac,0x0,0xc4,0xa,0x10,0x2b,0x0, 0xb1,0x2,0x10,0x2b,0x40,0xac,0x0,0xc4,0xa,0x40,0xac,0x0,0xb1,0x2,0x10,0x2b, 0x0,0xb1,0x2,0xc4,0xa,0x40,0xac,0x0,0xb1,0x2,0x10,0x2b,0x0,0xb1,0x2,0xc4, 0xa,0x40,0xac,0x0,0xc4,0xa,0x10,0x2b,0x0,0xb1,0x2,0x10,0x2b,0x40,0xac,0x0, 0xc4,0xa,0x10,0x2b,0x0,0xb1,0x2,0x10,0x2b,0x40,0xac,0x0,0xc4,0xa,0x40,0xac, 0x0,0xb1,0x2,0x10,0x2b,0x0,0xb1,0x2,0xc4,0xa,0x40,0xac,0x0,0xc4,0xa,0x10, 0x2b,0x80,0xff,0xaf,0x93,0xea,0x5e,0xf5,0x62,0xdb,0xb6,0x8f,0x93,0x6f,0x7d,0x56, 0x9d,0x6f,0xdb,0xf6,0x72,0xf2,0x9d,0xe7,0xd5,0xd9,0x2,0x3b,0x57,0xba,0x69,0xd5, 0x69,0x75,0xb9,0x6d,0xdb,0xfb,0xc9,0x77,0x3e,0xad,0x1e,0x2d,0x70,0xd3,0xb3,0xea, 0x74,0x91,0x67,0x7f,0xac,0xe,0x27,0xfb,0xb7,0xab,0xc7,0xd5,0xdd,0xe4,0x83,0xf, 0xfb,0x81,0x9f,0x2c,0xf0,0x12,0xdc,0x5f,0x60,0xe7,0x4a,0x37,0x6d,0xff,0x50,0x3d, 0x56,0x1f,0x26,0xdf,0xf9,0x70,0x91,0x9b,0x9e,0xee,0x37,0x5d,0xe5,0x3d,0x7d,0xf0, 0x3f,0x9b,0xad,0xfd,0x16,0x3c,0xc,0x92,0xcd,0x0,0x0,0x0,0x0,0x49,0x45,0x4e, 0x44,0xae,0x42,0x60,0x82, // /home/Adel/ZeGrapher/icons/curseur_deplacer.png 0x0,0x0,0x1a,0x2, 0x89, 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, 0x0,0x0,0x30,0x0,0x0,0x0,0x30,0x8,0x6,0x0,0x0,0x0,0x57,0x2,0xf9,0x87, 0x0,0x0,0x9,0xe3,0x69,0x54,0x58,0x74,0x58,0x4d,0x4c,0x3a,0x63,0x6f,0x6d,0x2e, 0x61,0x64,0x6f,0x62,0x65,0x2e,0x78,0x6d,0x70,0x0,0x0,0x0,0x0,0x0,0x3c,0x3f, 0x78,0x70,0x61,0x63,0x6b,0x65,0x74,0x20,0x62,0x65,0x67,0x69,0x6e,0x3d,0x22,0xef, 0xbb,0xbf,0x22,0x20,0x69,0x64,0x3d,0x22,0x57,0x35,0x4d,0x30,0x4d,0x70,0x43,0x65, 0x68,0x69,0x48,0x7a,0x72,0x65,0x53,0x7a,0x4e,0x54,0x63,0x7a,0x6b,0x63,0x39,0x64, 0x22,0x3f,0x3e,0xa,0x3c,0x78,0x3a,0x78,0x6d,0x70,0x6d,0x65,0x74,0x61,0x20,0x78, 0x6d,0x6c,0x6e,0x73,0x3a,0x78,0x3d,0x22,0x61,0x64,0x6f,0x62,0x65,0x3a,0x6e,0x73, 0x3a,0x6d,0x65,0x74,0x61,0x2f,0x22,0x20,0x78,0x3a,0x78,0x6d,0x70,0x74,0x6b,0x3d, 0x22,0x41,0x64,0x6f,0x62,0x65,0x20,0x58,0x4d,0x50,0x20,0x43,0x6f,0x72,0x65,0x20, 0x34,0x2e,0x32,0x2e,0x32,0x2d,0x63,0x30,0x36,0x33,0x20,0x35,0x33,0x2e,0x33,0x35, 0x32,0x36,0x32,0x34,0x2c,0x20,0x32,0x30,0x30,0x38,0x2f,0x30,0x37,0x2f,0x33,0x30, 0x2d,0x31,0x38,0x3a,0x31,0x32,0x3a,0x31,0x38,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x22,0x3e,0xa,0x20,0x3c,0x72,0x64,0x66,0x3a,0x52,0x44,0x46,0x20,0x78,0x6d, 0x6c,0x6e,0x73,0x3a,0x72,0x64,0x66,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, 0x30,0x32,0x2f,0x32,0x32,0x2d,0x72,0x64,0x66,0x2d,0x73,0x79,0x6e,0x74,0x61,0x78, 0x2d,0x6e,0x73,0x23,0x22,0x3e,0xa,0x20,0x20,0x3c,0x72,0x64,0x66,0x3a,0x44,0x65, 0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x72,0x64,0x66,0x3a,0x61,0x62, 0x6f,0x75,0x74,0x3d,0x22,0x22,0xa,0x20,0x20,0x20,0x20,0x78,0x6d,0x6c,0x6e,0x73, 0x3a,0x70,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70,0x3d,0x22,0x68,0x74,0x74,0x70, 0x3a,0x2f,0x2f,0x6e,0x73,0x2e,0x61,0x64,0x6f,0x62,0x65,0x2e,0x63,0x6f,0x6d,0x2f, 0x70,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70,0x2f,0x31,0x2e,0x30,0x2f,0x22,0xa, 0x20,0x20,0x20,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x49,0x70,0x74,0x63,0x34,0x78, 0x6d,0x70,0x43,0x6f,0x72,0x65,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x69, 0x70,0x74,0x63,0x2e,0x6f,0x72,0x67,0x2f,0x73,0x74,0x64,0x2f,0x49,0x70,0x74,0x63, 0x34,0x78,0x6d,0x70,0x43,0x6f,0x72,0x65,0x2f,0x31,0x2e,0x30,0x2f,0x78,0x6d,0x6c, 0x6e,0x73,0x2f,0x22,0xa,0x20,0x20,0x20,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x64, 0x63,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x70,0x75,0x72,0x6c,0x2e,0x6f, 0x72,0x67,0x2f,0x64,0x63,0x2f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x2f,0x31, 0x2e,0x31,0x2f,0x22,0xa,0x20,0x20,0x20,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78, 0x6d,0x70,0x52,0x69,0x67,0x68,0x74,0x73,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f, 0x2f,0x6e,0x73,0x2e,0x61,0x64,0x6f,0x62,0x65,0x2e,0x63,0x6f,0x6d,0x2f,0x78,0x61, 0x70,0x2f,0x31,0x2e,0x30,0x2f,0x72,0x69,0x67,0x68,0x74,0x73,0x2f,0x22,0xa,0x20, 0x20,0x20,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,0x6d,0x70,0x3d,0x22,0x68,0x74, 0x74,0x70,0x3a,0x2f,0x2f,0x6e,0x73,0x2e,0x61,0x64,0x6f,0x62,0x65,0x2e,0x63,0x6f, 0x6d,0x2f,0x78,0x61,0x70,0x2f,0x31,0x2e,0x30,0x2f,0x22,0xa,0x20,0x20,0x20,0x20, 0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,0x6d,0x70,0x4d,0x4d,0x3d,0x22,0x68,0x74,0x74, 0x70,0x3a,0x2f,0x2f,0x6e,0x73,0x2e,0x61,0x64,0x6f,0x62,0x65,0x2e,0x63,0x6f,0x6d, 0x2f,0x78,0x61,0x70,0x2f,0x31,0x2e,0x30,0x2f,0x6d,0x6d,0x2f,0x22,0xa,0x20,0x20, 0x20,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x73,0x74,0x45,0x76,0x74,0x3d,0x22,0x68, 0x74,0x74,0x70,0x3a,0x2f,0x2f,0x6e,0x73,0x2e,0x61,0x64,0x6f,0x62,0x65,0x2e,0x63, 0x6f,0x6d,0x2f,0x78,0x61,0x70,0x2f,0x31,0x2e,0x30,0x2f,0x73,0x54,0x79,0x70,0x65, 0x2f,0x52,0x65,0x73,0x6f,0x75,0x72,0x63,0x65,0x45,0x76,0x65,0x6e,0x74,0x23,0x22, 0xa,0x20,0x20,0x20,0x70,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70,0x3a,0x44,0x61, 0x74,0x65,0x43,0x72,0x65,0x61,0x74,0x65,0x64,0x3d,0x22,0x32,0x30,0x31,0x30,0x2d, 0x30,0x31,0x2d,0x30,0x31,0x22,0xa,0x20,0x20,0x20,0x70,0x68,0x6f,0x74,0x6f,0x73, 0x68,0x6f,0x70,0x3a,0x43,0x72,0x65,0x64,0x69,0x74,0x3d,0x22,0x77,0x77,0x77,0x2e, 0x67,0x65,0x6e,0x74,0x6c,0x65,0x66,0x61,0x63,0x65,0x2e,0x63,0x6f,0x6d,0x22,0xa, 0x20,0x20,0x20,0x70,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70,0x3a,0x41,0x75,0x74, 0x68,0x6f,0x72,0x73,0x50,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3d,0x22,0x41,0x72, 0x74,0x20,0x44,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x22,0xa,0x20,0x20,0x20,0x49, 0x70,0x74,0x63,0x34,0x78,0x6d,0x70,0x43,0x6f,0x72,0x65,0x3a,0x49,0x6e,0x74,0x65, 0x6c,0x6c,0x65,0x63,0x74,0x75,0x61,0x6c,0x47,0x65,0x6e,0x72,0x65,0x3d,0x22,0x70, 0x69,0x63,0x74,0x6f,0x67,0x72,0x61,0x6d,0x22,0xa,0x20,0x20,0x20,0x78,0x6d,0x70, 0x3a,0x4d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x44,0x61,0x74,0x65,0x3d,0x22,0x32, 0x30,0x31,0x30,0x2d,0x30,0x31,0x2d,0x30,0x33,0x54,0x32,0x31,0x3a,0x33,0x33,0x3a, 0x34,0x33,0x2b,0x30,0x31,0x3a,0x30,0x30,0x22,0xa,0x20,0x20,0x20,0x78,0x6d,0x70, 0x4d,0x4d,0x3a,0x49,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x49,0x44,0x3d,0x22,0x78, 0x6d,0x70,0x2e,0x69,0x69,0x64,0x3a,0x36,0x39,0x36,0x39,0x41,0x41,0x34,0x38,0x41, 0x37,0x46,0x38,0x44,0x45,0x31,0x31,0x38,0x32,0x31,0x43,0x45,0x34,0x42,0x32,0x43, 0x37,0x45,0x33,0x36,0x44,0x37,0x30,0x22,0xa,0x20,0x20,0x20,0x78,0x6d,0x70,0x4d, 0x4d,0x3a,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x49,0x44,0x3d,0x22,0x78,0x6d, 0x70,0x2e,0x64,0x69,0x64,0x3a,0x36,0x39,0x36,0x39,0x41,0x41,0x34,0x38,0x41,0x37, 0x46,0x38,0x44,0x45,0x31,0x31,0x38,0x32,0x31,0x43,0x45,0x34,0x42,0x32,0x43,0x37, 0x45,0x33,0x36,0x44,0x37,0x30,0x22,0xa,0x20,0x20,0x20,0x78,0x6d,0x70,0x4d,0x4d, 0x3a,0x4f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e, 0x74,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x64,0x69,0x64,0x3a,0x36,0x39,0x36, 0x39,0x41,0x41,0x34,0x38,0x41,0x37,0x46,0x38,0x44,0x45,0x31,0x31,0x38,0x32,0x31, 0x43,0x45,0x34,0x42,0x32,0x43,0x37,0x45,0x33,0x36,0x44,0x37,0x30,0x22,0x3e,0xa, 0x20,0x20,0x20,0x3c,0x49,0x70,0x74,0x63,0x34,0x78,0x6d,0x70,0x43,0x6f,0x72,0x65, 0x3a,0x43,0x72,0x65,0x61,0x74,0x6f,0x72,0x43,0x6f,0x6e,0x74,0x61,0x63,0x74,0x49, 0x6e,0x66,0x6f,0xa,0x20,0x20,0x20,0x20,0x49,0x70,0x74,0x63,0x34,0x78,0x6d,0x70, 0x43,0x6f,0x72,0x65,0x3a,0x43,0x69,0x41,0x64,0x72,0x43,0x69,0x74,0x79,0x3d,0x22, 0x50,0x72,0x61,0x67,0x75,0x65,0x22,0xa,0x20,0x20,0x20,0x20,0x49,0x70,0x74,0x63, 0x34,0x78,0x6d,0x70,0x43,0x6f,0x72,0x65,0x3a,0x43,0x69,0x41,0x64,0x72,0x50,0x63, 0x6f,0x64,0x65,0x3d,0x22,0x31,0x36,0x30,0x30,0x30,0x22,0xa,0x20,0x20,0x20,0x20, 0x49,0x70,0x74,0x63,0x34,0x78,0x6d,0x70,0x43,0x6f,0x72,0x65,0x3a,0x43,0x69,0x41, 0x64,0x72,0x43,0x74,0x72,0x79,0x3d,0x22,0x43,0x7a,0x65,0x63,0x68,0x20,0x52,0x65, 0x70,0x75,0x62,0x6c,0x69,0x63,0x22,0xa,0x20,0x20,0x20,0x20,0x49,0x70,0x74,0x63, 0x34,0x78,0x6d,0x70,0x43,0x6f,0x72,0x65,0x3a,0x43,0x69,0x45,0x6d,0x61,0x69,0x6c, 0x57,0x6f,0x72,0x6b,0x3d,0x22,0x6b,0x61,0x40,0x67,0x65,0x6e,0x74,0x6c,0x65,0x66, 0x61,0x63,0x65,0x2e,0x63,0x6f,0x6d,0x22,0xa,0x20,0x20,0x20,0x20,0x49,0x70,0x74, 0x63,0x34,0x78,0x6d,0x70,0x43,0x6f,0x72,0x65,0x3a,0x43,0x69,0x55,0x72,0x6c,0x57, 0x6f,0x72,0x6b,0x3d,0x22,0x77,0x77,0x77,0x2e,0x67,0x65,0x6e,0x74,0x6c,0x65,0x66, 0x61,0x63,0x65,0x2e,0x63,0x6f,0x6d,0x22,0x2f,0x3e,0xa,0x20,0x20,0x20,0x3c,0x64, 0x63,0x3a,0x72,0x69,0x67,0x68,0x74,0x73,0x3e,0xa,0x20,0x20,0x20,0x20,0x3c,0x72, 0x64,0x66,0x3a,0x41,0x6c,0x74,0x3e,0xa,0x20,0x20,0x20,0x20,0x20,0x3c,0x72,0x64, 0x66,0x3a,0x6c,0x69,0x20,0x78,0x6d,0x6c,0x3a,0x6c,0x61,0x6e,0x67,0x3d,0x22,0x78, 0x2d,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x22,0x3e,0x43,0x72,0x65,0x61,0x74,0x69, 0x76,0x65,0x20,0x43,0x6f,0x6d,0x6d,0x6f,0x6e,0x73,0x20,0x41,0x74,0x74,0x72,0x69, 0x62,0x75,0x74,0x69,0x6f,0x6e,0x20,0x4e,0x6f,0x6e,0x2d,0x43,0x6f,0x6d,0x6d,0x65, 0x72,0x63,0x69,0x61,0x6c,0x20,0x4e,0x6f,0x20,0x44,0x65,0x72,0x69,0x76,0x61,0x74, 0x69,0x76,0x65,0x73,0x3c,0x2f,0x72,0x64,0x66,0x3a,0x6c,0x69,0x3e,0xa,0x20,0x20, 0x20,0x20,0x3c,0x2f,0x72,0x64,0x66,0x3a,0x41,0x6c,0x74,0x3e,0xa,0x20,0x20,0x20, 0x3c,0x2f,0x64,0x63,0x3a,0x72,0x69,0x67,0x68,0x74,0x73,0x3e,0xa,0x20,0x20,0x20, 0x3c,0x64,0x63,0x3a,0x63,0x72,0x65,0x61,0x74,0x6f,0x72,0x3e,0xa,0x20,0x20,0x20, 0x20,0x3c,0x72,0x64,0x66,0x3a,0x53,0x65,0x71,0x3e,0xa,0x20,0x20,0x20,0x20,0x20, 0x3c,0x72,0x64,0x66,0x3a,0x6c,0x69,0x3e,0x41,0x6c,0x65,0x78,0x61,0x6e,0x64,0x65, 0x72,0x20,0x4b,0x69,0x73,0x65,0x6c,0x65,0x76,0x3c,0x2f,0x72,0x64,0x66,0x3a,0x6c, 0x69,0x3e,0xa,0x20,0x20,0x20,0x20,0x3c,0x2f,0x72,0x64,0x66,0x3a,0x53,0x65,0x71, 0x3e,0xa,0x20,0x20,0x20,0x3c,0x2f,0x64,0x63,0x3a,0x63,0x72,0x65,0x61,0x74,0x6f, 0x72,0x3e,0xa,0x20,0x20,0x20,0x3c,0x64,0x63,0x3a,0x64,0x65,0x73,0x63,0x72,0x69, 0x70,0x74,0x69,0x6f,0x6e,0x3e,0xa,0x20,0x20,0x20,0x20,0x3c,0x72,0x64,0x66,0x3a, 0x41,0x6c,0x74,0x3e,0xa,0x20,0x20,0x20,0x20,0x20,0x3c,0x72,0x64,0x66,0x3a,0x6c, 0x69,0x20,0x78,0x6d,0x6c,0x3a,0x6c,0x61,0x6e,0x67,0x3d,0x22,0x78,0x2d,0x64,0x65, 0x66,0x61,0x75,0x6c,0x74,0x22,0x3e,0x54,0x68,0x69,0x73,0x20,0x69,0x73,0x20,0x74, 0x68,0x65,0x20,0x69,0x63,0x6f,0x6e,0x20,0x66,0x72,0x6f,0x6d,0x20,0x47,0x65,0x6e, 0x74,0x6c,0x65,0x66,0x61,0x63,0x65,0x2e,0x63,0x6f,0x6d,0x20,0x66,0x72,0x65,0x65, 0x20,0x69,0x63,0x6f,0x6e,0x73,0x20,0x73,0x65,0x74,0x2e,0x20,0x3c,0x2f,0x72,0x64, 0x66,0x3a,0x6c,0x69,0x3e,0xa,0x20,0x20,0x20,0x20,0x3c,0x2f,0x72,0x64,0x66,0x3a, 0x41,0x6c,0x74,0x3e,0xa,0x20,0x20,0x20,0x3c,0x2f,0x64,0x63,0x3a,0x64,0x65,0x73, 0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x3e,0xa,0x20,0x20,0x20,0x3c,0x64,0x63, 0x3a,0x73,0x75,0x62,0x6a,0x65,0x63,0x74,0x3e,0xa,0x20,0x20,0x20,0x20,0x3c,0x72, 0x64,0x66,0x3a,0x42,0x61,0x67,0x3e,0xa,0x20,0x20,0x20,0x20,0x20,0x3c,0x72,0x64, 0x66,0x3a,0x6c,0x69,0x3e,0x69,0x63,0x6f,0x6e,0x3c,0x2f,0x72,0x64,0x66,0x3a,0x6c, 0x69,0x3e,0xa,0x20,0x20,0x20,0x20,0x20,0x3c,0x72,0x64,0x66,0x3a,0x6c,0x69,0x3e, 0x70,0x69,0x63,0x74,0x6f,0x67,0x72,0x61,0x6d,0x3c,0x2f,0x72,0x64,0x66,0x3a,0x6c, 0x69,0x3e,0xa,0x20,0x20,0x20,0x20,0x3c,0x2f,0x72,0x64,0x66,0x3a,0x42,0x61,0x67, 0x3e,0xa,0x20,0x20,0x20,0x3c,0x2f,0x64,0x63,0x3a,0x73,0x75,0x62,0x6a,0x65,0x63, 0x74,0x3e,0xa,0x20,0x20,0x20,0x3c,0x64,0x63,0x3a,0x74,0x69,0x74,0x6c,0x65,0x3e, 0xa,0x20,0x20,0x20,0x20,0x3c,0x72,0x64,0x66,0x3a,0x41,0x6c,0x74,0x3e,0xa,0x20, 0x20,0x20,0x20,0x20,0x3c,0x72,0x64,0x66,0x3a,0x6c,0x69,0x20,0x78,0x6d,0x6c,0x3a, 0x6c,0x61,0x6e,0x67,0x3d,0x22,0x78,0x2d,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x22, 0x3e,0x67,0x65,0x6e,0x74,0x6c,0x65,0x66,0x61,0x63,0x65,0x2e,0x63,0x6f,0x6d,0x20, 0x66,0x72,0x65,0x65,0x20,0x69,0x63,0x6f,0x6e,0x20,0x73,0x65,0x74,0x3c,0x2f,0x72, 0x64,0x66,0x3a,0x6c,0x69,0x3e,0xa,0x20,0x20,0x20,0x20,0x3c,0x2f,0x72,0x64,0x66, 0x3a,0x41,0x6c,0x74,0x3e,0xa,0x20,0x20,0x20,0x3c,0x2f,0x64,0x63,0x3a,0x74,0x69, 0x74,0x6c,0x65,0x3e,0xa,0x20,0x20,0x20,0x3c,0x78,0x6d,0x70,0x52,0x69,0x67,0x68, 0x74,0x73,0x3a,0x55,0x73,0x61,0x67,0x65,0x54,0x65,0x72,0x6d,0x73,0x3e,0xa,0x20, 0x20,0x20,0x20,0x3c,0x72,0x64,0x66,0x3a,0x41,0x6c,0x74,0x3e,0xa,0x20,0x20,0x20, 0x20,0x20,0x3c,0x72,0x64,0x66,0x3a,0x6c,0x69,0x20,0x78,0x6d,0x6c,0x3a,0x6c,0x61, 0x6e,0x67,0x3d,0x22,0x78,0x2d,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x22,0x3e,0x43, 0x72,0x65,0x61,0x74,0x69,0x76,0x65,0x20,0x43,0x6f,0x6d,0x6d,0x6f,0x6e,0x73,0x20, 0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x69,0x6f,0x6e,0x20,0x4e,0x6f,0x6e,0x2d, 0x43,0x6f,0x6d,0x6d,0x65,0x72,0x63,0x69,0x61,0x6c,0x20,0x4e,0x6f,0x20,0x44,0x65, 0x72,0x69,0x76,0x61,0x74,0x69,0x76,0x65,0x73,0x3c,0x2f,0x72,0x64,0x66,0x3a,0x6c, 0x69,0x3e,0xa,0x20,0x20,0x20,0x20,0x3c,0x2f,0x72,0x64,0x66,0x3a,0x41,0x6c,0x74, 0x3e,0xa,0x20,0x20,0x20,0x3c,0x2f,0x78,0x6d,0x70,0x52,0x69,0x67,0x68,0x74,0x73, 0x3a,0x55,0x73,0x61,0x67,0x65,0x54,0x65,0x72,0x6d,0x73,0x3e,0xa,0x20,0x20,0x20, 0x3c,0x78,0x6d,0x70,0x4d,0x4d,0x3a,0x48,0x69,0x73,0x74,0x6f,0x72,0x79,0x3e,0xa, 0x20,0x20,0x20,0x20,0x3c,0x72,0x64,0x66,0x3a,0x53,0x65,0x71,0x3e,0xa,0x20,0x20, 0x20,0x20,0x20,0x3c,0x72,0x64,0x66,0x3a,0x6c,0x69,0xa,0x20,0x20,0x20,0x20,0x20, 0x20,0x73,0x74,0x45,0x76,0x74,0x3a,0x61,0x63,0x74,0x69,0x6f,0x6e,0x3d,0x22,0x73, 0x61,0x76,0x65,0x64,0x22,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x74,0x45,0x76, 0x74,0x3a,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x49,0x44,0x3d,0x22,0x78,0x6d, 0x70,0x2e,0x69,0x69,0x64,0x3a,0x36,0x39,0x36,0x39,0x41,0x41,0x34,0x38,0x41,0x37, 0x46,0x38,0x44,0x45,0x31,0x31,0x38,0x32,0x31,0x43,0x45,0x34,0x42,0x32,0x43,0x37, 0x45,0x33,0x36,0x44,0x37,0x30,0x22,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x74, 0x45,0x76,0x74,0x3a,0x77,0x68,0x65,0x6e,0x3d,0x22,0x32,0x30,0x31,0x30,0x2d,0x30, 0x31,0x2d,0x30,0x33,0x54,0x32,0x31,0x3a,0x33,0x33,0x3a,0x34,0x33,0x2b,0x30,0x31, 0x3a,0x30,0x30,0x22,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x74,0x45,0x76,0x74, 0x3a,0x63,0x68,0x61,0x6e,0x67,0x65,0x64,0x3d,0x22,0x2f,0x6d,0x65,0x74,0x61,0x64, 0x61,0x74,0x61,0x22,0x2f,0x3e,0xa,0x20,0x20,0x20,0x20,0x3c,0x2f,0x72,0x64,0x66, 0x3a,0x53,0x65,0x71,0x3e,0xa,0x20,0x20,0x20,0x3c,0x2f,0x78,0x6d,0x70,0x4d,0x4d, 0x3a,0x48,0x69,0x73,0x74,0x6f,0x72,0x79,0x3e,0xa,0x20,0x20,0x3c,0x2f,0x72,0x64, 0x66,0x3a,0x44,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x3e,0xa,0x20, 0x3c,0x2f,0x72,0x64,0x66,0x3a,0x52,0x44,0x46,0x3e,0xa,0x3c,0x2f,0x78,0x3a,0x78, 0x6d,0x70,0x6d,0x65,0x74,0x61,0x3e,0xa,0x3c,0x3f,0x78,0x70,0x61,0x63,0x6b,0x65, 0x74,0x20,0x65,0x6e,0x64,0x3d,0x22,0x72,0x22,0x3f,0x3e,0x9b,0x13,0x2e,0x7a,0x0, 0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xb,0x13,0x0,0x0,0xb,0x13,0x1, 0x0,0x9a,0x9c,0x18,0x0,0x0,0xa,0x4f,0x69,0x43,0x43,0x50,0x50,0x68,0x6f,0x74, 0x6f,0x73,0x68,0x6f,0x70,0x20,0x49,0x43,0x43,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c, 0x65,0x0,0x0,0x78,0xda,0x9d,0x53,0x67,0x54,0x53,0xe9,0x16,0x3d,0xf7,0xde,0xf4, 0x42,0x4b,0x88,0x80,0x94,0x4b,0x6f,0x52,0x15,0x8,0x20,0x52,0x42,0x8b,0x80,0x14, 0x91,0x26,0x2a,0x21,0x9,0x10,0x4a,0x88,0x21,0xa1,0xd9,0x15,0x51,0xc1,0x11,0x45, 0x45,0x4,0x1b,0xc8,0xa0,0x88,0x3,0x8e,0x8e,0x80,0x8c,0x15,0x51,0x2c,0xc,0x8a, 0xa,0xd8,0x7,0xe4,0x21,0xa2,0x8e,0x83,0xa3,0x88,0x8a,0xca,0xfb,0xe1,0x7b,0xa3, 0x6b,0xd6,0xbc,0xf7,0xe6,0xcd,0xfe,0xb5,0xd7,0x3e,0xe7,0xac,0xf3,0x9d,0xb3,0xcf, 0x7,0xc0,0x8,0xc,0x96,0x48,0x33,0x51,0x35,0x80,0xc,0xa9,0x42,0x1e,0x11,0xe0, 0x83,0xc7,0xc4,0xc6,0xe1,0xe4,0x2e,0x40,0x81,0xa,0x24,0x70,0x0,0x10,0x8,0xb3, 0x64,0x21,0x73,0xfd,0x23,0x1,0x0,0xf8,0x7e,0x3c,0x3c,0x2b,0x22,0xc0,0x7,0xbe, 0x0,0x1,0x78,0xd3,0xb,0x8,0x0,0xc0,0x4d,0x9b,0xc0,0x30,0x1c,0x87,0xff,0xf, 0xea,0x42,0x99,0x5c,0x1,0x80,0x84,0x1,0xc0,0x74,0x91,0x38,0x4b,0x8,0x80,0x14, 0x0,0x40,0x7a,0x8e,0x42,0xa6,0x0,0x40,0x46,0x1,0x80,0x9d,0x98,0x26,0x53,0x0, 0xa0,0x4,0x0,0x60,0xcb,0x63,0x62,0xe3,0x0,0x50,0x2d,0x0,0x60,0x27,0x7f,0xe6, 0xd3,0x0,0x80,0x9d,0xf8,0x99,0x7b,0x1,0x0,0x5b,0x94,0x21,0x15,0x1,0xa0,0x91, 0x0,0x20,0x13,0x65,0x88,0x44,0x0,0x68,0x3b,0x0,0xac,0xcf,0x56,0x8a,0x45,0x0, 0x58,0x30,0x0,0x14,0x66,0x4b,0xc4,0x39,0x0,0xd8,0x2d,0x0,0x30,0x49,0x57,0x66, 0x48,0x0,0xb0,0xb7,0x0,0xc0,0xce,0x10,0xb,0xb2,0x0,0x8,0xc,0x0,0x30,0x51, 0x88,0x85,0x29,0x0,0x4,0x7b,0x0,0x60,0xc8,0x23,0x23,0x78,0x0,0x84,0x99,0x0, 0x14,0x46,0xf2,0x57,0x3c,0xf1,0x2b,0xae,0x10,0xe7,0x2a,0x0,0x0,0x78,0x99,0xb2, 0x3c,0xb9,0x24,0x39,0x45,0x81,0x5b,0x8,0x2d,0x71,0x7,0x57,0x57,0x2e,0x1e,0x28, 0xce,0x49,0x17,0x2b,0x14,0x36,0x61,0x2,0x61,0x9a,0x40,0x2e,0xc2,0x79,0x99,0x19, 0x32,0x81,0x34,0xf,0xe0,0xf3,0xcc,0x0,0x0,0xa0,0x91,0x15,0x11,0xe0,0x83,0xf3, 0xfd,0x78,0xce,0xe,0xae,0xce,0xce,0x36,0x8e,0xb6,0xe,0x5f,0x2d,0xea,0xbf,0x6, 0xff,0x22,0x62,0x62,0xe3,0xfe,0xe5,0xcf,0xab,0x70,0x40,0x0,0x0,0xe1,0x74,0x7e, 0xd1,0xfe,0x2c,0x2f,0xb3,0x1a,0x80,0x3b,0x6,0x80,0x6d,0xfe,0xa2,0x25,0xee,0x4, 0x68,0x5e,0xb,0xa0,0x75,0xf7,0x8b,0x66,0xb2,0xf,0x40,0xb5,0x0,0xa0,0xe9,0xda, 0x57,0xf3,0x70,0xf8,0x7e,0x3c,0x3c,0x45,0xa1,0x90,0xb9,0xd9,0xd9,0xe5,0xe4,0xe4, 0xd8,0x4a,0xc4,0x42,0x5b,0x61,0xca,0x57,0x7d,0xfe,0x67,0xc2,0x5f,0xc0,0x57,0xfd, 0x6c,0xf9,0x7e,0x3c,0xfc,0xf7,0xf5,0xe0,0xbe,0xe2,0x24,0x81,0x32,0x5d,0x81,0x47, 0x4,0xf8,0xe0,0xc2,0xcc,0xf4,0x4c,0xa5,0x1c,0xcf,0x92,0x9,0x84,0x62,0xdc,0xe6, 0x8f,0x47,0xfc,0xb7,0xb,0xff,0xfc,0x1d,0xd3,0x22,0xc4,0x49,0x62,0xb9,0x58,0x2a, 0x14,0xe3,0x51,0x12,0x71,0x8e,0x44,0x9a,0x8c,0xf3,0x32,0xa5,0x22,0x89,0x42,0x92, 0x29,0xc5,0x25,0xd2,0xff,0x64,0xe2,0xdf,0x2c,0xfb,0x3,0x3e,0xdf,0x35,0x0,0xb0, 0x6a,0x3e,0x1,0x7b,0x91,0x2d,0xa8,0x5d,0x63,0x3,0xf6,0x4b,0x27,0x10,0x58,0x74, 0xc0,0xe2,0xf7,0x0,0x0,0xf2,0xbb,0x6f,0xc1,0xd4,0x28,0x8,0x3,0x80,0x68,0x83, 0xe1,0xcf,0x77,0xff,0xef,0x3f,0xfd,0x47,0xa0,0x25,0x0,0x80,0x66,0x49,0x92,0x71, 0x0,0x0,0x5e,0x44,0x24,0x2e,0x54,0xca,0xb3,0x3f,0xc7,0x8,0x0,0x0,0x44,0xa0, 0x81,0x2a,0xb0,0x41,0x1b,0xf4,0xc1,0x18,0x2c,0xc0,0x6,0x1c,0xc1,0x5,0xdc,0xc1, 0xb,0xfc,0x60,0x36,0x84,0x42,0x24,0xc4,0xc2,0x42,0x10,0x42,0xa,0x64,0x80,0x1c, 0x72,0x60,0x29,0xac,0x82,0x42,0x28,0x86,0xcd,0xb0,0x1d,0x2a,0x60,0x2f,0xd4,0x40, 0x1d,0x34,0xc0,0x51,0x68,0x86,0x93,0x70,0xe,0x2e,0xc2,0x55,0xb8,0xe,0x3d,0x70, 0xf,0xfa,0x61,0x8,0x9e,0xc1,0x28,0xbc,0x81,0x9,0x4,0x41,0xc8,0x8,0x13,0x61, 0x21,0xda,0x88,0x1,0x62,0x8a,0x58,0x23,0x8e,0x8,0x17,0x99,0x85,0xf8,0x21,0xc1, 0x48,0x4,0x12,0x8b,0x24,0x20,0xc9,0x88,0x14,0x51,0x22,0x4b,0x91,0x35,0x48,0x31, 0x52,0x8a,0x54,0x20,0x55,0x48,0x1d,0xf2,0x3d,0x72,0x2,0x39,0x87,0x5c,0x46,0xba, 0x91,0x3b,0xc8,0x0,0x32,0x82,0xfc,0x86,0xbc,0x47,0x31,0x94,0x81,0xb2,0x51,0x3d, 0xd4,0xc,0xb5,0x43,0xb9,0xa8,0x37,0x1a,0x84,0x46,0xa2,0xb,0xd0,0x64,0x74,0x31, 0x9a,0x8f,0x16,0xa0,0x9b,0xd0,0x72,0xb4,0x1a,0x3d,0x8c,0x36,0xa1,0xe7,0xd0,0xab, 0x68,0xf,0xda,0x8f,0x3e,0x43,0xc7,0x30,0xc0,0xe8,0x18,0x7,0x33,0xc4,0x6c,0x30, 0x2e,0xc6,0xc3,0x42,0xb1,0x38,0x2c,0x9,0x93,0x63,0xcb,0xb1,0x22,0xac,0xc,0xab, 0xc6,0x1a,0xb0,0x56,0xac,0x3,0xbb,0x89,0xf5,0x63,0xcf,0xb1,0x77,0x4,0x12,0x81, 0x45,0xc0,0x9,0x36,0x4,0x77,0x42,0x20,0x61,0x1e,0x41,0x48,0x58,0x4c,0x58,0x4e, 0xd8,0x48,0xa8,0x20,0x1c,0x24,0x34,0x11,0xda,0x9,0x37,0x9,0x3,0x84,0x51,0xc2, 0x27,0x22,0x93,0xa8,0x4b,0xb4,0x26,0xba,0x11,0xf9,0xc4,0x18,0x62,0x32,0x31,0x87, 0x58,0x48,0x2c,0x23,0xd6,0x12,0x8f,0x13,0x2f,0x10,0x7b,0x88,0x43,0xc4,0x37,0x24, 0x12,0x89,0x43,0x32,0x27,0xb9,0x90,0x2,0x49,0xb1,0xa4,0x54,0xd2,0x12,0xd2,0x46, 0xd2,0x6e,0x52,0x23,0xe9,0x2c,0xa9,0x9b,0x34,0x48,0x1a,0x23,0x93,0xc9,0xda,0x64, 0x6b,0xb2,0x7,0x39,0x94,0x2c,0x20,0x2b,0xc8,0x85,0xe4,0x9d,0xe4,0xc3,0xe4,0x33, 0xe4,0x1b,0xe4,0x21,0xf2,0x5b,0xa,0x9d,0x62,0x40,0x71,0xa4,0xf8,0x53,0xe2,0x28, 0x52,0xca,0x6a,0x4a,0x19,0xe5,0x10,0xe5,0x34,0xe5,0x6,0x65,0x98,0x32,0x41,0x55, 0xa3,0x9a,0x52,0xdd,0xa8,0xa1,0x54,0x11,0x35,0x8f,0x5a,0x42,0xad,0xa1,0xb6,0x52, 0xaf,0x51,0x87,0xa8,0x13,0x34,0x75,0x9a,0x39,0xcd,0x83,0x16,0x49,0x4b,0xa5,0xad, 0xa2,0x95,0xd3,0x1a,0x68,0x17,0x68,0xf7,0x69,0xaf,0xe8,0x74,0xba,0x11,0xdd,0x95, 0x1e,0x4e,0x97,0xd0,0x57,0xd2,0xcb,0xe9,0x47,0xe8,0x97,0xe8,0x3,0xf4,0x77,0xc, 0xd,0x86,0x15,0x83,0xc7,0x88,0x67,0x28,0x19,0x9b,0x18,0x7,0x18,0x67,0x19,0x77, 0x18,0xaf,0x98,0x4c,0xa6,0x19,0xd3,0x8b,0x19,0xc7,0x54,0x30,0x37,0x31,0xeb,0x98, 0xe7,0x99,0xf,0x99,0x6f,0x55,0x58,0x2a,0xb6,0x2a,0x7c,0x15,0x91,0xca,0xa,0x95, 0x4a,0x95,0x26,0x95,0x1b,0x2a,0x2f,0x54,0xa9,0xaa,0xa6,0xaa,0xde,0xaa,0xb,0x55, 0xf3,0x55,0xcb,0x54,0x8f,0xa9,0x5e,0x53,0x7d,0xae,0x46,0x55,0x33,0x53,0xe3,0xa9, 0x9,0xd4,0x96,0xab,0x55,0xaa,0x9d,0x50,0xeb,0x53,0x1b,0x53,0x67,0xa9,0x3b,0xa8, 0x87,0xaa,0x67,0xa8,0x6f,0x54,0x3f,0xa4,0x7e,0x59,0xfd,0x89,0x6,0x59,0xc3,0x4c, 0xc3,0x4f,0x43,0xa4,0x51,0xa0,0xb1,0x5f,0xe3,0xbc,0xc6,0x20,0xb,0x63,0x19,0xb3, 0x78,0x2c,0x21,0x6b,0xd,0xab,0x86,0x75,0x81,0x35,0xc4,0x26,0xb1,0xcd,0xd9,0x7c, 0x76,0x2a,0xbb,0x98,0xfd,0x1d,0xbb,0x8b,0x3d,0xaa,0xa9,0xa1,0x39,0x43,0x33,0x4a, 0x33,0x57,0xb3,0x52,0xf3,0x94,0x66,0x3f,0x7,0xe3,0x98,0x71,0xf8,0x9c,0x74,0x4e, 0x9,0xe7,0x28,0xa7,0x97,0xf3,0x7e,0x8a,0xde,0x14,0xef,0x29,0xe2,0x29,0x1b,0xa6, 0x34,0x4c,0xb9,0x31,0x65,0x5c,0x6b,0xaa,0x96,0x97,0x96,0x58,0xab,0x48,0xab,0x51, 0xab,0x47,0xeb,0xbd,0x36,0xae,0xed,0xa7,0x9d,0xa6,0xbd,0x45,0xbb,0x59,0xfb,0x81, 0xe,0x41,0xc7,0x4a,0x27,0x5c,0x27,0x47,0x67,0x8f,0xce,0x5,0x9d,0xe7,0x53,0xd9, 0x53,0xdd,0xa7,0xa,0xa7,0x16,0x4d,0x3d,0x3a,0xf5,0xae,0x2e,0xaa,0x6b,0xa5,0x1b, 0xa1,0xbb,0x44,0x77,0xbf,0x6e,0xa7,0xee,0x98,0x9e,0xbe,0x5e,0x80,0x9e,0x4c,0x6f, 0xa7,0xde,0x79,0xbd,0xe7,0xfa,0x1c,0x7d,0x2f,0xfd,0x54,0xfd,0x6d,0xfa,0xa7,0xf5, 0x47,0xc,0x58,0x6,0xb3,0xc,0x24,0x6,0xdb,0xc,0xce,0x18,0x3c,0xc5,0x35,0x71, 0x6f,0x3c,0x1d,0x2f,0xc7,0xdb,0xf1,0x51,0x43,0x5d,0xc3,0x40,0x43,0xa5,0x61,0x95, 0x61,0x97,0xe1,0x84,0x91,0xb9,0xd1,0x3c,0xa3,0xd5,0x46,0x8d,0x46,0xf,0x8c,0x69, 0xc6,0x5c,0xe3,0x24,0xe3,0x6d,0xc6,0x6d,0xc6,0xa3,0x26,0x6,0x26,0x21,0x26,0x4b, 0x4d,0xea,0x4d,0xee,0x9a,0x52,0x4d,0xb9,0xa6,0x29,0xa6,0x3b,0x4c,0x3b,0x4c,0xc7, 0xcd,0xcc,0xcd,0xa2,0xcd,0xd6,0x99,0x35,0x9b,0x3d,0x31,0xd7,0x32,0xe7,0x9b,0xe7, 0x9b,0xd7,0x9b,0xdf,0xb7,0x60,0x5a,0x78,0x5a,0x2c,0xb6,0xa8,0xb6,0xb8,0x65,0x49, 0xb2,0xe4,0x5a,0xa6,0x59,0xee,0xb6,0xbc,0x6e,0x85,0x5a,0x39,0x59,0xa5,0x58,0x55, 0x5a,0x5d,0xb3,0x46,0xad,0x9d,0xad,0x25,0xd6,0xbb,0xad,0xbb,0xa7,0x11,0xa7,0xb9, 0x4e,0x93,0x4e,0xab,0x9e,0xd6,0x67,0xc3,0xb0,0xf1,0xb6,0xc9,0xb6,0xa9,0xb7,0x19, 0xb0,0xe5,0xd8,0x6,0xdb,0xae,0xb6,0x6d,0xb6,0x7d,0x61,0x67,0x62,0x17,0x67,0xb7, 0xc5,0xae,0xc3,0xee,0x93,0xbd,0x93,0x7d,0xba,0x7d,0x8d,0xfd,0x3d,0x7,0xd,0x87, 0xd9,0xe,0xab,0x1d,0x5a,0x1d,0x7e,0x73,0xb4,0x72,0x14,0x3a,0x56,0x3a,0xde,0x9a, 0xce,0x9c,0xee,0x3f,0x7d,0xc5,0xf4,0x96,0xe9,0x2f,0x67,0x58,0xcf,0x10,0xcf,0xd8, 0x33,0xe3,0xb6,0x13,0xcb,0x29,0xc4,0x69,0x9d,0x53,0x9b,0xd3,0x47,0x67,0x17,0x67, 0xb9,0x73,0x83,0xf3,0x88,0x8b,0x89,0x4b,0x82,0xcb,0x2e,0x97,0x3e,0x2e,0x9b,0x1b, 0xc6,0xdd,0xc8,0xbd,0xe4,0x4a,0x74,0xf5,0x71,0x5d,0xe1,0x7a,0xd2,0xf5,0x9d,0x9b, 0xb3,0x9b,0xc2,0xed,0xa8,0xdb,0xaf,0xee,0x36,0xee,0x69,0xee,0x87,0xdc,0x9f,0xcc, 0x34,0x9f,0x29,0x9e,0x59,0x33,0x73,0xd0,0xc3,0xc8,0x43,0xe0,0x51,0xe5,0xd1,0x3f, 0xb,0x9f,0x95,0x30,0x6b,0xdf,0xac,0x7e,0x4f,0x43,0x4f,0x81,0x67,0xb5,0xe7,0x23, 0x2f,0x63,0x2f,0x91,0x57,0xad,0xd7,0xb0,0xb7,0xa5,0x77,0xaa,0xf7,0x61,0xef,0x17, 0x3e,0xf6,0x3e,0x72,0x9f,0xe3,0x3e,0xe3,0x3c,0x37,0xde,0x32,0xde,0x59,0x5f,0xcc, 0x37,0xc0,0xb7,0xc8,0xb7,0xcb,0x4f,0xc3,0x6f,0x9e,0x5f,0x85,0xdf,0x43,0x7f,0x23, 0xff,0x64,0xff,0x7a,0xff,0xd1,0x0,0xa7,0x80,0x25,0x1,0x67,0x3,0x89,0x81,0x41, 0x81,0x5b,0x2,0xfb,0xf8,0x7a,0x7c,0x21,0xbf,0x8e,0x3f,0x3a,0xdb,0x65,0xf6,0xb2, 0xd9,0xed,0x41,0x8c,0xa0,0xb9,0x41,0x15,0x41,0x8f,0x82,0xad,0x82,0xe5,0xc1,0xad, 0x21,0x68,0xc8,0xec,0x90,0xad,0x21,0xf7,0xe7,0x98,0xce,0x91,0xce,0x69,0xe,0x85, 0x50,0x7e,0xe8,0xd6,0xd0,0x7,0x61,0xe6,0x61,0x8b,0xc3,0x7e,0xc,0x27,0x85,0x87, 0x85,0x57,0x86,0x3f,0x8e,0x70,0x88,0x58,0x1a,0xd1,0x31,0x97,0x35,0x77,0xd1,0xdc, 0x43,0x73,0xdf,0x44,0xfa,0x44,0x96,0x44,0xde,0x9b,0x67,0x31,0x4f,0x39,0xaf,0x2d, 0x4a,0x35,0x2a,0x3e,0xaa,0x2e,0x6a,0x3c,0xda,0x37,0xba,0x34,0xba,0x3f,0xc6,0x2e, 0x66,0x59,0xcc,0xd5,0x58,0x9d,0x58,0x49,0x6c,0x4b,0x1c,0x39,0x2e,0x2a,0xae,0x36, 0x6e,0x6c,0xbe,0xdf,0xfc,0xed,0xf3,0x87,0xe2,0x9d,0xe2,0xb,0xe3,0x7b,0x17,0x98, 0x2f,0xc8,0x5d,0x70,0x79,0xa1,0xce,0xc2,0xf4,0x85,0xa7,0x16,0xa9,0x2e,0x12,0x2c, 0x3a,0x96,0x40,0x4c,0x88,0x4e,0x38,0x94,0xf0,0x41,0x10,0x2a,0xa8,0x16,0x8c,0x25, 0xf2,0x13,0x77,0x25,0x8e,0xa,0x79,0xc2,0x1d,0xc2,0x67,0x22,0x2f,0xd1,0x36,0xd1, 0x88,0xd8,0x43,0x5c,0x2a,0x1e,0x4e,0xf2,0x48,0x2a,0x4d,0x7a,0x92,0xec,0x91,0xbc, 0x35,0x79,0x24,0xc5,0x33,0xa5,0x2c,0xe5,0xb9,0x84,0x27,0xa9,0x90,0xbc,0x4c,0xd, 0x4c,0xdd,0x9b,0x3a,0x9e,0x16,0x9a,0x76,0x20,0x6d,0x32,0x3d,0x3a,0xbd,0x31,0x83, 0x92,0x91,0x90,0x71,0x42,0xaa,0x21,0x4d,0x93,0xb6,0x67,0xea,0x67,0xe6,0x66,0x76, 0xcb,0xac,0x65,0x85,0xb2,0xfe,0xc5,0x6e,0x8b,0xb7,0x2f,0x1e,0x95,0x7,0xc9,0x6b, 0xb3,0x90,0xac,0x5,0x59,0x2d,0xa,0xb6,0x42,0xa6,0xe8,0x54,0x5a,0x28,0xd7,0x2a, 0x7,0xb2,0x67,0x65,0x57,0x66,0xbf,0xcd,0x89,0xca,0x39,0x96,0xab,0x9e,0x2b,0xcd, 0xed,0xcc,0xb3,0xca,0xdb,0x90,0x37,0x9c,0xef,0x9f,0xff,0xed,0x12,0xc2,0x12,0xe1, 0x92,0xb6,0xa5,0x86,0x4b,0x57,0x2d,0x1d,0x58,0xe6,0xbd,0xac,0x6a,0x39,0xb2,0x3c, 0x71,0x79,0xdb,0xa,0xe3,0x15,0x5,0x2b,0x86,0x56,0x6,0xac,0x3c,0xb8,0x8a,0xb6, 0x2a,0x6d,0xd5,0x4f,0xab,0xed,0x57,0x97,0xae,0x7e,0xbd,0x26,0x7a,0x4d,0x6b,0x81, 0x5e,0xc1,0xca,0x82,0xc1,0xb5,0x1,0x6b,0xeb,0xb,0x55,0xa,0xe5,0x85,0x7d,0xeb, 0xdc,0xd7,0xed,0x5d,0x4f,0x58,0x2f,0x59,0xdf,0xb5,0x61,0xfa,0x86,0x9d,0x1b,0x3e, 0x15,0x89,0x8a,0xae,0x14,0xdb,0x17,0x97,0x15,0x7f,0xd8,0x28,0xdc,0x78,0xe5,0x1b, 0x87,0x6f,0xca,0xbf,0x99,0xdc,0x94,0xb4,0xa9,0xab,0xc4,0xb9,0x64,0xcf,0x66,0xd2, 0x66,0xe9,0xe6,0xde,0x2d,0x9e,0x5b,0xe,0x96,0xaa,0x97,0xe6,0x97,0xe,0x6e,0xd, 0xd9,0xda,0xb4,0xd,0xdf,0x56,0xb4,0xed,0xf5,0xf6,0x45,0xdb,0x2f,0x97,0xcd,0x28, 0xdb,0xbb,0x83,0xb6,0x43,0xb9,0xa3,0xbf,0x3c,0xb8,0xbc,0x65,0xa7,0xc9,0xce,0xcd, 0x3b,0x3f,0x54,0xa4,0x54,0xf4,0x54,0xfa,0x54,0x36,0xee,0xd2,0xdd,0xb5,0x61,0xd7, 0xf8,0x6e,0xd1,0xee,0x1b,0x7b,0xbc,0xf6,0x34,0xec,0xd5,0xdb,0x5b,0xbc,0xf7,0xfd, 0x3e,0xc9,0xbe,0xdb,0x55,0x1,0x55,0x4d,0xd5,0x66,0xd5,0x65,0xfb,0x49,0xfb,0xb3, 0xf7,0x3f,0xae,0x89,0xaa,0xe9,0xf8,0x96,0xfb,0x6d,0x5d,0xad,0x4e,0x6d,0x71,0xed, 0xc7,0x3,0xd2,0x3,0xfd,0x7,0x23,0xe,0xb6,0xd7,0xb9,0xd4,0xd5,0x1d,0xd2,0x3d, 0x54,0x52,0x8f,0xd6,0x2b,0xeb,0x47,0xe,0xc7,0x1f,0xbe,0xfe,0x9d,0xef,0x77,0x2d, 0xd,0x36,0xd,0x55,0x8d,0x9c,0xc6,0xe2,0x23,0x70,0x44,0x79,0xe4,0xe9,0xf7,0x9, 0xdf,0xf7,0x1e,0xd,0x3a,0xda,0x76,0x8c,0x7b,0xac,0xe1,0x7,0xd3,0x1f,0x76,0x1d, 0x67,0x1d,0x2f,0x6a,0x42,0x9a,0xf2,0x9a,0x46,0x9b,0x53,0x9a,0xfb,0x5b,0x62,0x5b, 0xba,0x4f,0xcc,0x3e,0xd1,0xd6,0xea,0xde,0x7a,0xfc,0x47,0xdb,0x1f,0xf,0x9c,0x34, 0x3c,0x59,0x79,0x4a,0xf3,0x54,0xc9,0x69,0xda,0xe9,0x82,0xd3,0x93,0x67,0xf2,0xcf, 0x8c,0x9d,0x95,0x9d,0x7d,0x7e,0x2e,0xf9,0xdc,0x60,0xdb,0xa2,0xb6,0x7b,0xe7,0x63, 0xce,0xdf,0x6a,0xf,0x6f,0xef,0xba,0x10,0x74,0xe1,0xd2,0x45,0xff,0x8b,0xe7,0x3b, 0xbc,0x3b,0xce,0x5c,0xf2,0xb8,0x74,0xf2,0xb2,0xdb,0xe5,0x13,0x57,0xb8,0x57,0x9a, 0xaf,0x3a,0x5f,0x6d,0xea,0x74,0xea,0x3c,0xfe,0x93,0xd3,0x4f,0xc7,0xbb,0x9c,0xbb, 0x9a,0xae,0xb9,0x5c,0x6b,0xb9,0xee,0x7a,0xbd,0xb5,0x7b,0x66,0xf7,0xe9,0x1b,0x9e, 0x37,0xce,0xdd,0xf4,0xbd,0x79,0xf1,0x16,0xff,0xd6,0xd5,0x9e,0x39,0x3d,0xdd,0xbd, 0xf3,0x7a,0x6f,0xf7,0xc5,0xf7,0xf5,0xdf,0x16,0xdd,0x7e,0x72,0x27,0xfd,0xce,0xcb, 0xbb,0xd9,0x77,0x27,0xee,0xad,0xbc,0x4f,0xbc,0x5f,0xf4,0x40,0xed,0x41,0xd9,0x43, 0xdd,0x87,0xd5,0x3f,0x5b,0xfe,0xdc,0xd8,0xef,0xdc,0x7f,0x6a,0xc0,0x77,0xa0,0xf3, 0xd1,0xdc,0x47,0xf7,0x6,0x85,0x83,0xcf,0xfe,0x91,0xf5,0x8f,0xf,0x43,0x5,0x8f, 0x99,0x8f,0xcb,0x86,0xd,0x86,0xeb,0x9e,0x38,0x3e,0x39,0x39,0xe2,0x3f,0x72,0xfd, 0xe9,0xfc,0xa7,0x43,0xcf,0x64,0xcf,0x26,0x9e,0x17,0xfe,0xa2,0xfe,0xcb,0xae,0x17, 0x16,0x2f,0x7e,0xf8,0xd5,0xeb,0xd7,0xce,0xd1,0x98,0xd1,0xa1,0x97,0xf2,0x97,0x93, 0xbf,0x6d,0x7c,0xa5,0xfd,0xea,0xc0,0xeb,0x19,0xaf,0xdb,0xc6,0xc2,0xc6,0x1e,0xbe, 0xc9,0x78,0x33,0x31,0x5e,0xf4,0x56,0xfb,0xed,0xc1,0x77,0xdc,0x77,0x1d,0xef,0xa3, 0xdf,0xf,0x4f,0xe4,0x7c,0x20,0x7f,0x28,0xff,0x68,0xf9,0xb1,0xf5,0x53,0xd0,0xa7, 0xfb,0x93,0x19,0x93,0x93,0xff,0x4,0x3,0x98,0xf3,0xfc,0x63,0x33,0x2d,0xdb,0x0, 0x0,0x0,0x20,0x63,0x48,0x52,0x4d,0x0,0x0,0x7a,0x25,0x0,0x0,0x80,0x83,0x0, 0x0,0xf9,0xff,0x0,0x0,0x80,0xe9,0x0,0x0,0x75,0x30,0x0,0x0,0xea,0x60,0x0, 0x0,0x3a,0x98,0x0,0x0,0x17,0x6f,0x92,0x5f,0xc5,0x46,0x0,0x0,0x5,0x3e,0x49, 0x44,0x41,0x54,0x78,0xda,0xd4,0x59,0x4f,0x4f,0x22,0x59,0x10,0xff,0x81,0x98,0x6e, 0xfe,0x74,0x5a,0x94,0x8c,0x44,0x31,0xf4,0x1a,0x33,0x6a,0x44,0x41,0x4f,0x7b,0xb3, 0xe7,0xb6,0x37,0xd9,0xe3,0x9e,0x74,0x3f,0xc1,0x70,0x9c,0x9b,0xec,0x27,0x58,0xbd, 0xed,0x6d,0xd8,0xdb,0x1e,0xf1,0xb8,0xa7,0x85,0x2f,0xa0,0x34,0x2d,0x3a,0x4e,0x1c, 0xc5,0x18,0x8,0x26,0xfe,0x81,0x39,0xc1,0xe9,0xed,0xe5,0x41,0xca,0x67,0x3,0xed, 0xd8,0x8d,0x33,0x95,0x54,0x4,0x5e,0xbd,0xaa,0xfa,0xbd,0xaa,0xf7,0x5e,0xd5,0xd3, 0x3,0x7,0x69,0x63,0x63,0x23,0x9,0x20,0x3,0x40,0x7,0xa0,0x91,0xa1,0x26,0x80, 0x2,0x80,0xbd,0xc3,0xc3,0xc3,0xa2,0x93,0x36,0x3d,0x4e,0x29,0x5a,0x5f,0x5f,0x4f, 0x72,0x27,0x27,0x86,0x88,0xe6,0x8e,0x8e,0x8e,0x7e,0x77,0xca,0xee,0x98,0x5d,0xc1, 0x54,0x2a,0xb5,0x19,0x8d,0x46,0xb5,0x46,0xa3,0x71,0x65,0x35,0x1e,0x8d,0x46,0xff, 0x2,0x90,0xb2,0xa3,0x2a,0x1a,0x8d,0xa2,0xd1,0x68,0x14,0x5d,0x8f,0x40,0x32,0x99, 0x54,0x1,0xec,0x1,0xd8,0x11,0x57,0x11,0x40,0xc6,0x30,0x8c,0x16,0x91,0x65,0x3d, 0xa5,0x1e,0x8f,0x5e,0x2a,0x95,0x8a,0x4,0x7c,0x92,0x31,0x96,0x5,0x90,0x26,0x29, 0xd5,0xb4,0x48,0xb3,0x3c,0x80,0xac,0x61,0x18,0x57,0x2f,0x6,0xb0,0xb6,0xb6,0xa6, 0xf2,0x94,0xe8,0xb7,0xaa,0x4d,0x0,0x7a,0xb9,0x5c,0x36,0xb8,0x7c,0xf,0x40,0xb9, 0x5c,0xf6,0xf4,0xd1,0xc9,0x6c,0xf8,0xd4,0x4,0x90,0x2e,0x97,0xcb,0xb6,0x22,0xe4, 0xeb,0x37,0xc0,0x18,0xcb,0x8,0xce,0x97,0xba,0xb,0xca,0xff,0x4e,0x0,0x28,0xac, 0xae,0xae,0xea,0xa6,0x69,0x1a,0x8c,0xd,0xf7,0xad,0x8f,0x4c,0x81,0x47,0x42,0x23, 0x7a,0xf3,0xab,0xab,0xab,0x3a,0x80,0x2a,0xb7,0xd7,0x34,0x4d,0xd3,0xb0,0x9a,0xec, 0x1d,0x60,0x6c,0x87,0x31,0x6,0xce,0x19,0xd3,0x34,0xd7,0x4d,0xd3,0x5c,0x7,0xa0, 0x33,0xc6,0x9a,0xfc,0xf7,0x9,0xc6,0x58,0x21,0x91,0x48,0x24,0x89,0xec,0x40,0x0, 0x84,0xb3,0xa6,0x69,0x7a,0x4c,0xd3,0x7c,0x67,0x9a,0xe6,0x4f,0x56,0x7a,0xf9,0xf7, 0x2,0x63,0xac,0x94,0x48,0x24,0x1e,0x12,0x89,0xc4,0xae,0xed,0x14,0x5a,0x59,0x59, 0xe9,0x79,0x52,0xa9,0x54,0x1e,0xc9,0x71,0x87,0xe9,0x89,0x53,0xa2,0xd1,0x12,0xe5, 0xed,0xe8,0x24,0x7a,0x4b,0x43,0x2,0x59,0x2,0xa0,0x57,0x2a,0x95,0xd6,0xb0,0x8, 0x74,0xf9,0x89,0xc2,0xe3,0xe3,0x63,0x83,0xaf,0x58,0x57,0x26,0xf5,0xdc,0x8,0x58, 0xd1,0xf1,0xf1,0xb1,0x21,0x44,0x9,0x24,0x12,0xd4,0x56,0xde,0x4e,0xa,0xf5,0x26, 0x58,0x8d,0x57,0x2a,0x15,0x83,0x31,0x96,0xb5,0x30,0xf8,0xcd,0x0,0x2c,0xd2,0x4c, 0x3f,0x39,0x39,0x79,0x77,0x72,0x72,0x12,0x16,0x6c,0xe9,0xcb,0xcb,0xcb,0xdb,0xc3, 0x0,0x54,0xbb,0x13,0x96,0x96,0x96,0x92,0x56,0x32,0xa7,0xa7,0xa7,0x7f,0x50,0x39, 0xa7,0x1,0x9c,0x9e,0x9e,0x16,0x5,0x5b,0x39,0xba,0x87,0x86,0x1,0x28,0x10,0xe1, 0x9d,0x1,0x72,0x59,0xb7,0x0,0x58,0x50,0x86,0xa4,0x93,0xb6,0xb8,0xb8,0x98,0x1c, 0x4,0x20,0x4f,0x1,0xbc,0x7d,0xfb,0x56,0xed,0x23,0x9a,0x17,0x72,0xd4,0x35,0x0, 0x9f,0x3e,0x7d,0x6a,0x9,0x7e,0xa5,0xfb,0x2,0xf8,0xfc,0xf9,0xf3,0x1,0x49,0x8f, 0x89,0x6e,0xc8,0x44,0x3a,0x3b,0x3b,0x6b,0x9,0xd1,0x72,0x33,0x2,0x62,0x66,0xe8, 0xde,0x21,0x17,0x4f,0x86,0xde,0x5,0xb,0xb,0xb,0x71,0x1b,0x4a,0xdd,0x6,0x50, 0x22,0x32,0xda,0x40,0x0,0xe7,0xe7,0xe7,0x7,0x82,0x73,0x59,0x1b,0x4a,0x5d,0x5, 0x70,0x7e,0x7e,0x6e,0xd8,0x6,0x60,0xb1,0x49,0x77,0xe6,0xe7,0xe7,0x9f,0x44,0xe1, 0xcb,0x97,0x2f,0xc5,0x51,0x1,0x10,0x65,0x86,0x2,0xb8,0xb8,0xb8,0x28,0xa,0x2b, 0x9c,0x1e,0x95,0x73,0x76,0x64,0x1e,0x15,0x73,0x9a,0xa6,0x6d,0xf2,0xd2,0xb9,0x5b, 0x58,0xe5,0xf9,0x29,0xb3,0xc7,0x4b,0x68,0xf0,0xf1,0x7d,0xab,0x7b,0x83,0xcf,0xab, 0xe,0xba,0x5b,0x6c,0xc8,0x3c,0xab,0x28,0xec,0x1,0x88,0xc7,0xe3,0x7f,0xf2,0xa, 0x94,0x92,0xce,0xfb,0x81,0x3d,0xda,0x90,0xc4,0xe3,0xf1,0xf8,0xd5,0xd5,0xd5,0x95, 0xa0,0x54,0xe7,0xf2,0x85,0x1,0x86,0xed,0xc8,0x3c,0xb,0x80,0x7,0x0,0xe6,0xe6, 0xe6,0x3e,0x5a,0x34,0x2d,0x83,0x28,0x73,0x7d,0x7d,0xbd,0xf,0x17,0x68,0x6e,0x6e, 0xae,0xe7,0xdd,0xf5,0xf5,0xb5,0x67,0x98,0x8c,0x37,0x16,0x8b,0x6d,0x9,0xa5,0x73, 0x81,0xaf,0xd2,0x8e,0x55,0x99,0xd0,0x3d,0x7f,0xe1,0x12,0x11,0x9b,0x55,0x5b,0x7b, 0x80,0xe7,0x77,0xef,0x56,0xad,0xd5,0x6a,0xbf,0xf2,0xcf,0x45,0x0,0x7f,0xc7,0x62, 0xb1,0x5d,0x8b,0xe3,0x33,0xd,0xf7,0x48,0xe7,0xd9,0x90,0xb3,0x1a,0x9c,0x9d,0x9d, 0x55,0x49,0xa,0x35,0x3d,0x33,0x33,0x33,0xac,0xf7,0xc5,0xe3,0xd1,0x6a,0xb5,0x5a, 0xcb,0x62,0xd2,0x26,0x2f,0x61,0xe9,0x8b,0x83,0x5e,0xaf,0xd7,0x8b,0x18,0x31,0xcd, 0xcc,0xcc,0x6c,0x92,0x3d,0x54,0xf0,0xd2,0xba,0xdf,0xca,0x79,0x0,0xa8,0xd5,0x6a, 0x45,0xa1,0x63,0x72,0x35,0x8d,0x86,0xa4,0x18,0xed,0x43,0xaa,0x14,0x80,0x36,0x68, 0x62,0xbd,0x5e,0x37,0x84,0x72,0x36,0xf5,0x4a,0x0,0xd2,0x74,0xbf,0x7a,0x69,0x79, 0x3a,0x3d,0x3d,0xbd,0x35,0x64,0x72,0xfe,0x35,0x1,0x4c,0x4f,0x4f,0xc7,0x69,0xf7, 0x7,0x20,0xef,0x15,0x9c,0xda,0x7b,0xf3,0xe6,0x4d,0xbf,0xb2,0x19,0x37,0x37,0x37, 0x45,0x9a,0x46,0xaf,0xb0,0xfa,0xf4,0xb4,0xcc,0x37,0x1a,0x8d,0x96,0x57,0x6c,0x12, 0xfa,0x15,0x6c,0xf4,0x22,0x3,0x90,0xe5,0xa7,0xc5,0xa8,0x1,0xd0,0xea,0xb8,0xd7, 0x17,0x23,0x12,0x89,0xbc,0x8f,0x44,0x22,0x8c,0xf0,0x16,0xbe,0x33,0x8a,0x44,0x22, 0xdb,0xc4,0xbf,0xcb,0x47,0x4d,0xfd,0xed,0xed,0xed,0xbe,0x50,0x36,0xe7,0xa6,0xa6, 0xa6,0x92,0xdf,0x13,0x0,0xa1,0x2a,0xce,0x59,0xbd,0x4a,0xa4,0x85,0x87,0xa5,0xdc, 0xe4,0xe4,0xa4,0xfa,0x3d,0x38,0x3f,0x39,0x39,0xb9,0xcd,0xd3,0x1b,0x8c,0xb1,0x26, 0xad,0xcd,0x7a,0x0,0xee,0xee,0xee,0x5a,0x16,0x6f,0x3d,0x85,0x70,0x38,0xfc,0xaa, 0x20,0xc2,0xe1,0xb0,0xca,0x18,0xdb,0xa3,0x7,0xd,0xf7,0xf5,0xe9,0xbb,0xd0,0xfd, 0xfd,0xbd,0x21,0xec,0xf4,0x94,0x50,0x6a,0xe0,0x95,0x36,0xee,0x84,0xd5,0xea,0x5b, 0xfe,0x7f,0xa0,0xdd,0x6e,0x1b,0x92,0x24,0x4d,0x0,0xf8,0xb9,0x7b,0xea,0xc8,0xb2, 0xac,0x75,0x3a,0x9d,0x83,0x51,0x3b,0xaf,0xaa,0xaa,0xa,0xe0,0x1f,0x0,0x32,0xff, 0xe9,0x43,0xb3,0xd9,0x2c,0xe,0x4,0x0,0x0,0x9d,0x4e,0xe7,0x5f,0x49,0x92,0x34, 0xf2,0xde,0x99,0x92,0x24,0x49,0x93,0x24,0xa9,0xd0,0xe9,0x74,0x3a,0xa3,0x2,0x20, 0x49,0xd2,0x7,0x0,0xbf,0xf0,0xaf,0xd5,0xaf,0x5f,0xbf,0xfe,0xf6,0x2c,0x5,0x8a, 0xa2,0x7c,0x54,0x14,0x85,0x11,0x3e,0x52,0x14,0x65,0x24,0x7b,0x42,0x51,0x14,0x55, 0x51,0x94,0x7,0x62,0x7b,0xfb,0x9b,0x14,0x85,0x42,0xa1,0x8f,0xa1,0x50,0x88,0x11, 0x7e,0x8,0x85,0x42,0xae,0x1f,0xb1,0xa1,0x50,0x68,0x97,0xd8,0xbc,0x7c,0x91,0xb2, 0x60,0x30,0xb8,0x1b,0xc,0x6,0x99,0xc0,0xdb,0x6e,0x39,0x1f,0xc,0x6,0xd5,0x60, 0x30,0xf8,0xe0,0xa8,0xad,0x40,0x20,0xb0,0x15,0x8,0x4,0x1e,0x2,0x81,0x0,0x23, 0xec,0xa,0x88,0x40,0x20,0xb0,0x4d,0x6c,0x5c,0x3a,0xa6,0xd8,0xef,0xf7,0x27,0xfd, 0x7e,0xff,0x91,0xdf,0xef,0x67,0x84,0x1d,0x4f,0x27,0xc1,0xc6,0x7b,0x47,0x95,0xcb, 0xb2,0xac,0xca,0xb2,0x7c,0x29,0xcb,0x32,0xe3,0xfc,0x9f,0xc3,0xfa,0x93,0x44,0x37, 0x93,0x65,0x79,0xe0,0xa1,0xe1,0x7d,0xae,0x81,0x76,0xbb,0xdd,0x12,0x9a,0xa,0x5d, 0x92,0xa4,0x4d,0x97,0x1a,0x96,0x7c,0xbb,0xdd,0x6e,0x39,0xa,0x80,0xdf,0x13,0x62, 0x77,0xb6,0xe3,0x20,0x0,0xdd,0xb2,0x64,0x76,0x9a,0x7c,0x3e,0xdf,0xa6,0xcf,0xe7, 0x63,0x9c,0x8f,0x1c,0xd4,0xdb,0xd5,0xc9,0xc6,0xc7,0xc7,0xdd,0xbd,0x73,0xc6,0xc6, 0xc6,0x58,0x97,0x1d,0xd2,0x17,0x27,0x3a,0x6d,0x9d,0x3e,0xbe,0x17,0x86,0xdb,0xe9, 0xc2,0x8d,0x3e,0x2c,0x54,0x7f,0x44,0x0,0xcf,0x9e,0xf3,0xff,0x0,0x1,0xd8,0xaf, 0x5c,0xbc,0x5,0x4e,0x34,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60, 0x82, // /home/Adel/ZeGrapher/icons/tableauDeValeurs.png 0x0,0x0,0x2,0xdc, 0x89, 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, 0x0,0x0,0x40,0x0,0x0,0x0,0x40,0x8,0x6,0x0,0x0,0x0,0xaa,0x69,0x71,0xde, 0x0,0x0,0x0,0x1,0x73,0x52,0x47,0x42,0x0,0xae,0xce,0x1c,0xe9,0x0,0x0,0x0, 0x6,0x62,0x4b,0x47,0x44,0x0,0xff,0x0,0xff,0x0,0xff,0xa0,0xbd,0xa7,0x93,0x0, 0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xb,0x13,0x0,0x0,0xb,0x13,0x1, 0x0,0x9a,0x9c,0x18,0x0,0x0,0x0,0x7,0x74,0x49,0x4d,0x45,0x7,0xdb,0x6,0x1a, 0xe,0x28,0x4,0x54,0x67,0x43,0xae,0x0,0x0,0x0,0x19,0x74,0x45,0x58,0x74,0x43, 0x6f,0x6d,0x6d,0x65,0x6e,0x74,0x0,0x43,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x77, 0x69,0x74,0x68,0x20,0x47,0x49,0x4d,0x50,0x57,0x81,0xe,0x17,0x0,0x0,0x2,0x37, 0x49,0x44,0x41,0x54,0x78,0xda,0xed,0x9a,0xcf,0x4b,0x54,0x51,0x14,0xc7,0x3f,0x1a, 0x3,0x3a,0x44,0xc4,0xa0,0x48,0xcb,0x74,0x93,0xa0,0xcb,0x5a,0xa4,0xd0,0xd2,0x82, 0xfa,0x3,0x82,0x4,0x27,0x5a,0xd5,0x32,0xdb,0x47,0x8b,0x36,0x45,0xeb,0xc4,0x24, 0xb,0x83,0xfa,0x7,0xa2,0x3f,0x20,0x5a,0x24,0x44,0x85,0xd1,0xc2,0x7e,0xd1,0x42, 0x37,0x9,0xa,0xa6,0x66,0x39,0xaf,0xcd,0x37,0x78,0x88,0x6f,0x50,0x7b,0xf7,0x5d, 0x87,0xf7,0x3d,0xf0,0x98,0x37,0xe7,0x9c,0x7b,0xcf,0x7d,0x9f,0x39,0xe7,0xde,0xfb, 0x2e,0x3,0xf1,0x25,0x89,0x19,0xbc,0x9d,0x92,0x4b,0x2b,0x2,0x98,0x55,0xd6,0xd4, 0x9b,0xf8,0xd4,0xe5,0xf3,0x3a,0xaf,0xa0,0xf,0xd5,0xe1,0x7,0xa0,0x9a,0xe1,0x53, 0x95,0x3d,0x91,0x7f,0xa8,0x12,0x18,0x53,0x9b,0xd9,0x5d,0x40,0x1a,0xcb,0xb,0x40, 0x15,0x98,0x53,0xa7,0xd3,0x19,0x3e,0x8f,0x64,0x9f,0x6b,0x2,0x29,0xf,0x0,0x1d, 0xc0,0x92,0xda,0x9d,0xdc,0xc1,0x7e,0x4a,0xb6,0x25,0xf9,0xe6,0x26,0xfd,0xc0,0x6a, 0x46,0xfa,0x5d,0x96,0x7e,0x55,0x7e,0xa1,0x27,0xc1,0x3b,0x4d,0x32,0x6d,0x5a,0xb6, 0xbb,0x21,0xea,0xef,0x92,0x3a,0xff,0x9,0xc,0x48,0x37,0x8,0xac,0x49,0x3f,0x5a, 0xd0,0x2a,0xd0,0xb,0x34,0x14,0xb7,0x96,0xd2,0xd7,0x80,0x75,0xd9,0xfa,0x42,0x4d, 0x42,0x93,0x1a,0xf4,0x47,0xa0,0x47,0x9f,0x9,0x30,0x55,0xf0,0x32,0xf8,0x5c,0x6d, 0xaf,0xa7,0x74,0xe3,0xd2,0xbd,0x8,0x39,0xb,0x77,0x2,0xef,0x52,0x75,0x96,0x0, 0xef,0xa5,0x2f,0x12,0xc0,0x79,0xb5,0x9d,0x7,0xda,0x74,0x7d,0x92,0xee,0x42,0xe8, 0xa5,0x68,0x50,0x81,0x12,0x60,0x13,0x38,0x11,0x61,0x23,0xd4,0xe,0x7c,0x55,0xfb, 0x11,0xe0,0xac,0xee,0xbf,0xed,0x65,0x79,0xdf,0xef,0x3e,0x20,0x5d,0xeb,0x95,0x8c, 0xd9,0x38,0xb4,0x34,0x80,0xfb,0xba,0xbf,0xa6,0xb,0x60,0x42,0xb6,0x60,0x32,0xc, 0x6c,0x1,0xbf,0x81,0x7b,0xa2,0xbe,0x2,0x1c,0x8f,0xb0,0x15,0xee,0x2,0x36,0x34, 0x9e,0x2d,0xe0,0x17,0xd0,0x1d,0xf2,0xe1,0xf,0x3,0x9f,0x35,0xe8,0x5b,0xd2,0x3d, 0xd3,0xf7,0x57,0xc0,0xa1,0x8,0xef,0x2,0x8f,0x53,0xe5,0xf8,0x24,0x74,0xda,0x4d, 0x28,0xd0,0x1b,0xa5,0x3e,0xc0,0x51,0xe0,0xbb,0xf4,0x37,0x23,0x0,0x38,0x9d,0x2, 0x30,0x14,0xf2,0xe1,0xcf,0x29,0xc8,0x46,0x6a,0xf,0xf0,0x4f,0xce,0x28,0x5,0xff, 0x68,0x40,0x45,0x2,0xb8,0xa8,0x3e,0xde,0x86,0x7c,0xf8,0x1a,0xb0,0xa0,0x40,0x37, 0x32,0x7c,0x6e,0xcb,0xfe,0x5,0x38,0x52,0x20,0x80,0x7,0xea,0xe3,0x4a,0x48,0x0, 0x4f,0x15,0xe4,0x65,0x93,0x95,0xa3,0xa2,0xb7,0xaf,0x4,0x98,0x29,0x0,0x40,0x4d, 0xeb,0xfd,0x32,0xf0,0xe3,0x3f,0xf6,0x21,0x2d,0x79,0x20,0x92,0x6c,0xbb,0xae,0xb6, 0xf2,0x99,0xc4,0x7e,0x1,0x6c,0x6a,0xcb,0x5b,0x6f,0xf5,0x43,0x19,0x1f,0x89,0xc5, 0x94,0xb6,0xd8,0xbf,0x40,0x8e,0xb2,0x8,0x1c,0x73,0x9,0xb8,0x4,0xc,0xc0,0x0, 0xc,0xc0,0x0,0xc,0xc0,0x0,0xc,0xc0,0x0,0xc,0xc0,0x0,0xc,0xc0,0x0,0xc, 0xc0,0x0,0xc,0xc0,0x0,0xc,0xc0,0x0,0xc,0xc0,0x0,0xc,0xc0,0x0,0xc,0xc0, 0x0,0xe,0x3e,0x80,0x4a,0xd9,0x1,0x34,0x5c,0x2,0x6,0x60,0x0,0x6,0x60,0x0, 0x25,0x6,0x90,0x38,0x3,0x4a,0x2a,0xfe,0x8b,0x8c,0x1,0x18,0x80,0x1,0x94,0x12, 0x40,0x3f,0x96,0xf8,0xab,0xc0,0x5f,0x81,0x2e,0x95,0x43,0x83,0x89,0xa0,0xa0,0x0, 0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82, // /home/Adel/ZeGrapher/icons/zoom-in-icon.png 0x0,0x1,0x0,0x34, 0x89, 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, 0x0,0x1,0x8b,0x0,0x0,0x1,0x86,0x8,0x6,0x0,0x0,0x0,0x8a,0x7e,0xad,0x55, 0x0,0x0,0x0,0x1,0x73,0x52,0x47,0x42,0x0,0xae,0xce,0x1c,0xe9,0x0,0x0,0x0, 0x6,0x62,0x4b,0x47,0x44,0x0,0xff,0x0,0xff,0x0,0xff,0xa0,0xbd,0xa7,0x93,0x0, 0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xb,0x13,0x0,0x0,0xb,0x13,0x1, 0x0,0x9a,0x9c,0x18,0x0,0x0,0x0,0x7,0x74,0x49,0x4d,0x45,0x7,0xdb,0x4,0x8, 0xe,0x35,0x25,0x67,0xb2,0xf3,0x98,0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0x78, 0xda,0xec,0xbd,0x59,0xac,0x24,0x59,0x9a,0x26,0xf4,0x9d,0xcd,0x36,0x5f,0xef,0x1a, 0x11,0x37,0xb6,0xcc,0xc8,0xad,0xb2,0xa8,0xea,0xc8,0xca,0x16,0x5d,0x4f,0x3d,0x2, 0x5e,0x40,0x8c,0x54,0xd3,0x8,0x75,0x3d,0x8c,0x34,0x82,0x37,0xc4,0x4b,0x8d,0x18, 0x24,0xe6,0x89,0x17,0x78,0xe2,0x81,0x1e,0xba,0x1f,0x11,0x8,0x9,0x9,0x90,0xb2, 0x34,0x14,0xd3,0x30,0x2,0x46,0x62,0x4,0xd,0xd5,0xdd,0x95,0x55,0x15,0x4b,0x66, 0xe5,0x52,0x91,0x79,0x33,0x23,0x6e,0x64,0xdc,0xb8,0x11,0x77,0xf5,0xd5,0xd6,0x73, 0xe,0xf,0xc7,0x8e,0xb9,0xb9,0x5d,0x77,0xbf,0x7e,0x23,0x23,0x33,0x2b,0xa3,0xec, 0x48,0x16,0xe1,0xd7,0x17,0x73,0x33,0x73,0x3b,0xff,0x77,0xbe,0x7f,0xf9,0x7e,0xa2, 0xb5,0x46,0x3d,0x7e,0xb7,0x7,0x21,0x84,0x0,0x80,0x9e,0xf1,0x63,0x11,0x42,0x88, 0x3e,0xc7,0x8f,0x48,0x8,0x61,0x0,0x8,0x0,0x66,0xb7,0x77,0xde,0x79,0xe7,0x95, 0xef,0x7f,0xff,0xfb,0xff,0xba,0xe3,0x38,0x2f,0x5,0x41,0xf0,0x13,0xad,0x35,0x66, 0x6d,0x73,0xf6,0x57,0xfc,0x4f,0x8,0x1,0xa5,0xd4,0x3e,0x77,0x92,0xa6,0xe9,0x5f, 0x3d,0x7e,0xfc,0xf8,0xbf,0xfb,0xe1,0xf,0x7f,0xf8,0x7f,0x1,0x90,0x0,0x74,0xfe, 0xbf,0x2,0x20,0xf5,0x33,0xde,0x7c,0x8b,0xae,0x47,0x3d,0xea,0xf1,0x7b,0x62,0x13, 0xa6,0xe6,0xa4,0xfd,0xdb,0xce,0x47,0xfb,0xda,0xb3,0xfc,0x3d,0xef,0x31,0xa9,0xe7, 0xdb,0x37,0x7,0x0,0xcf,0xdb,0xd8,0x11,0x42,0xa8,0xd6,0x5a,0xe5,0xc6,0x94,0x1, 0xe0,0x0,0x9c,0xed,0xed,0xed,0xff,0x3c,0x8,0x82,0x9f,0x48,0x29,0xa1,0xb5,0x86, 0x52,0xa,0x4a,0xa9,0xe2,0x46,0xa0,0x94,0x16,0x46,0x9e,0x31,0x36,0x13,0x8,0xaa, 0xcf,0xd9,0x51,0x3e,0x5,0xbb,0x6f,0x0,0xc5,0xfe,0xed,0xff,0x76,0x63,0x8c,0x15, 0xa0,0xc2,0x18,0x83,0xd6,0xfa,0xee,0xcf,0x7f,0xfe,0xf3,0x7f,0xff,0xc7,0x3f,0xfe, 0xf1,0xbd,0x1c,0x48,0x92,0x79,0xd7,0xa5,0x7c,0xcd,0x66,0x1,0x86,0x3d,0xff,0xfa, 0xee,0xaa,0xc7,0xef,0x3,0x48,0x94,0xe7,0xa2,0x5,0x8a,0xe7,0xf5,0xff,0x2c,0x0, 0xe1,0xf5,0xe5,0xff,0x66,0x40,0xa2,0x62,0xf4,0x48,0xd5,0xc8,0xcd,0x2,0x93,0x39, 0xcf,0xd1,0x1c,0x14,0x4,0x0,0xfe,0xf8,0xf1,0xe3,0x93,0x2f,0xbe,0xf8,0x2,0x52, 0xca,0xc2,0x70,0x53,0x4a,0x21,0xa5,0x2c,0xc,0x34,0xa5,0x14,0x9c,0x73,0x30,0xc6, 0x8a,0xbf,0xcb,0xec,0x60,0x16,0x63,0x58,0x34,0xec,0x21,0x55,0x81,0xc3,0x6e,0x65, 0xc0,0x88,0xe3,0x18,0x5a,0x6b,0x48,0x29,0xed,0x76,0xf3,0x8f,0xfe,0xe8,0x8f,0x6e, 0xdf,0xbf,0x7f,0xbf,0x0,0x93,0xdd,0xdd,0x5d,0x48,0x29,0xff,0xf2,0xda,0xb5,0x6b, 0xff,0x0,0x40,0x2,0x20,0xb3,0x4c,0xc4,0x2,0x42,0xfe,0x98,0x94,0x1,0xa2,0x4, 0x94,0x98,0xc5,0x3c,0xbe,0xa,0x80,0xae,0x47,0x3d,0xbe,0xce,0x61,0x8d,0xf9,0xaf, 0x7f,0xfd,0xeb,0xe2,0xf1,0x7b,0xef,0xbd,0x57,0xbc,0x7e,0xeb,0xd6,0x2d,0x68,0xad, 0xf1,0xab,0x5f,0xfd,0xaa,0x78,0xfd,0xee,0xdd,0xbb,0x85,0xc1,0x3f,0xeb,0xf5,0xdb, 0xb7,0x6f,0x4f,0x1,0x6,0x0,0xdc,0xb9,0x73,0x7,0x77,0xee,0xdc,0xa9,0xc1,0xe2, 0x1b,0xf8,0xb1,0x67,0xad,0x8c,0xf5,0x3c,0x30,0xa9,0x3e,0x97,0x7f,0xce,0x79,0xe7, 0x9d,0x77,0xde,0xfc,0xe3,0x3f,0xfe,0xe3,0xdb,0xf,0x1e,0x3c,0x98,0x62,0x9,0x4a, 0x29,0x30,0xc6,0xe0,0x79,0x1e,0x84,0x10,0x10,0x42,0x14,0xab,0xf9,0xaa,0xd1,0xaf, 0xae,0x20,0x66,0xd9,0xd1,0x65,0x5c,0x50,0xb3,0xf6,0x61,0xd9,0x43,0x75,0xf8,0xbe, 0x3f,0xb5,0x5f,0xa5,0x54,0x19,0x38,0x10,0xc7,0x31,0x72,0x6,0xf4,0xa3,0xcf,0x3e, 0xfb,0xac,0x7,0x0,0x8c,0x31,0x8,0x21,0xb0,0xb7,0xb7,0x77,0x2,0xe0,0x32,0x21, 0x24,0x3,0x90,0xe5,0x20,0xa1,0x97,0x5,0xd8,0x1a,0x28,0xea,0xf1,0xa2,0x30,0x8b, 0x5b,0xb7,0x6e,0x15,0xf3,0xa8,0xfc,0xf8,0xf6,0xed,0xdb,0xb0,0x73,0x66,0x16,0xfb, 0xb7,0x73,0x76,0xde,0xeb,0x55,0x97,0x96,0x5d,0xd8,0xbd,0xfd,0xf6,0xdb,0x35,0x58, 0xfc,0xae,0x80,0x86,0x7d,0xae,0x4,0x8,0xa4,0x64,0x8,0xc5,0xbb,0xef,0xbe,0xfb, 0x6f,0x5f,0xbd,0x7a,0xf5,0x67,0xdb,0xdb,0xdb,0x85,0x21,0xce,0xb2,0xc,0x8e,0xe3, 0x14,0x1b,0xe7,0x1c,0x9c,0xf3,0xb9,0x37,0x81,0xd6,0x1a,0x94,0xd2,0x29,0x43,0x5d, 0xbe,0x41,0xaa,0x7e,0xd0,0x65,0x56,0x39,0xd5,0xc7,0xb3,0x0,0xa4,0x3c,0xaa,0xdf, 0x69,0x8f,0xd9,0x1e,0x53,0xab,0xd5,0x2a,0x8e,0x2d,0xcb,0x32,0xa4,0x69,0x8a,0x34, 0x4d,0x91,0x24,0x9,0xb2,0x2c,0xeb,0x6e,0x6f,0x6f,0x8f,0x8,0x21,0x10,0x42,0xe0, 0xe1,0xc3,0x87,0x7f,0x79,0xed,0xda,0xb5,0xbf,0x6f,0xd9,0x87,0x65,0x1e,0xf6,0x52, 0xda,0x6b,0x5a,0x33,0x8a,0x7a,0xbc,0x68,0xcc,0xe2,0xbd,0xf7,0xde,0x2b,0x58,0xc1, 0x1f,0xfe,0xe1,0x1f,0xe2,0xee,0xdd,0xbb,0xf8,0x83,0x3f,0xf8,0x83,0x53,0x9e,0x81, 0xdb,0xb7,0x6f,0xe3,0xe6,0xcd,0x9b,0xf8,0xf5,0xaf,0x7f,0xd,0x42,0x48,0x1,0x26, 0x8b,0x5e,0x2f,0x3,0x5,0x80,0x62,0x7e,0xd6,0x31,0x8b,0x6f,0xc8,0xd,0xb5,0xe8, 0x75,0x98,0x78,0x83,0xfb,0xe8,0xd1,0xa3,0x9f,0xa7,0x69,0x7a,0x33,0xcb,0xb2,0x62, 0x75,0xed,0x38,0xce,0xd4,0xff,0x76,0xf5,0x5e,0x66,0x16,0xf3,0xdc,0x46,0xb3,0xc, 0xfa,0xac,0x1b,0x71,0x16,0x73,0x98,0x7,0x12,0xf3,0x56,0x3e,0x8b,0xf6,0x59,0x66, 0x2b,0xd5,0xef,0xb0,0xc7,0x5f,0xa,0x94,0x4f,0xb9,0xb1,0xb2,0x2c,0x43,0x1c,0xc7, 0x88,0xe3,0x18,0x49,0x92,0x40,0x29,0x5,0x4a,0x29,0x1c,0xc7,0x41,0x18,0x86,0x7f, 0xf1,0xca,0x2b,0xaf,0xfc,0xa3,0x1c,0x23,0xea,0xd8,0x45,0x3d,0x5e,0x58,0x66,0x41, 0x8,0xc1,0x7,0x1f,0x7c,0x80,0x38,0x8e,0xf1,0x83,0x1f,0xfc,0x0,0xb7,0x6f,0xdf, 0x6,0x21,0x4,0x6f,0xbd,0xf5,0x56,0xf1,0x9e,0xbb,0x77,0xef,0x2,0x0,0xde,0x7a, 0xeb,0x2d,0xdc,0xb9,0x73,0x7,0x8c,0x31,0x7c,0xef,0x7b,0xdf,0x5b,0xf8,0xfa,0xf7, 0xbf,0xff,0xfd,0x62,0x6e,0xbe,0xf7,0xde,0x7b,0xb8,0x79,0xf3,0x26,0xee,0xdc,0xb9, 0x83,0x9b,0x37,0x6f,0x82,0xd6,0x97,0xff,0xeb,0x67,0x14,0xb9,0xaf,0x9d,0xe5,0xab, 0x60,0xe4,0x7f,0xbb,0x84,0x90,0xd6,0xa3,0x47,0x8f,0xd4,0x83,0x7,0xf,0xd2,0xed, 0xed,0xed,0x61,0x9a,0xa6,0x37,0x3d,0xcf,0xc3,0xc6,0xc6,0x6,0x2e,0x5c,0xb8,0x80, 0xf5,0xf5,0x75,0xac,0xac,0xac,0xa0,0xd9,0x6c,0xc2,0x71,0x1c,0x0,0x28,0xdc,0x37, 0x67,0x1,0xc1,0x22,0xd7,0xd0,0xbc,0xd7,0xaa,0x71,0x87,0x72,0x60,0x7c,0x16,0x75, 0x9d,0xc5,0x4c,0x66,0x5,0xc4,0x17,0x81,0x8d,0x5,0x89,0xf2,0x77,0xda,0xe7,0x2d, 0x60,0xb6,0xdb,0x6d,0x6c,0x6e,0x6e,0x62,0x6b,0x6b,0xb,0x1b,0x1b,0x1b,0x8,0x82, 0x0,0x4a,0x29,0x70,0xce,0x7f,0xf2,0xc9,0x27,0x9f,0x64,0x3b,0x3b,0x3b,0xf2,0xb3, 0xcf,0x3e,0xfb,0x73,0x42,0x88,0x6f,0xaf,0x71,0x3d,0xea,0xf1,0x22,0x31,0xb,0x0, 0x88,0xe3,0x18,0x6f,0xbf,0xfd,0x36,0x0,0xe0,0x7,0x3f,0xf8,0xc1,0xd4,0x1c,0x24, 0x84,0x20,0xcb,0x32,0xdc,0xbc,0x79,0x13,0x5a,0x6b,0xdc,0xbc,0x79,0x13,0x71,0x1c, 0x9f,0xf9,0x7a,0x79,0xff,0x69,0x9a,0x16,0x73,0xf5,0xd6,0xad,0x5b,0x35,0xb3,0xf8, 0x6,0x56,0x6,0x45,0x40,0x96,0x10,0x22,0x0,0x4,0xbb,0xbb,0xbb,0x27,0x76,0x95, 0x6c,0x5d,0x4a,0xbe,0xef,0xc3,0x75,0xdd,0x53,0xcc,0xe1,0xdb,0xfe,0x7b,0x9d,0xd7, 0xd5,0x35,0xef,0xf3,0xe5,0x4c,0x2e,0x42,0xc8,0x54,0xcc,0xc3,0x6e,0x52,0x4a,0x70, 0xce,0x91,0xa6,0xe9,0x5f,0xbc,0xf2,0xca,0x2b,0xff,0x18,0x26,0xd3,0xaa,0x66,0x1c, 0xf5,0x78,0x61,0xd8,0x45,0xd5,0x65,0x54,0x9d,0x63,0xb3,0xde,0x73,0xd6,0xeb,0xd5, 0xf7,0xdc,0xba,0x75,0xb,0x6f,0xbf,0xfd,0x76,0xd,0x16,0xcf,0xea,0x4a,0x2a,0x33, 0x85,0x79,0xaf,0xcf,0x79,0x8d,0xe5,0x0,0xd1,0x8f,0xa2,0x8,0x5a,0xeb,0x29,0x70, 0xf0,0x3c,0x6f,0x29,0x77,0xcf,0xb7,0x11,0x18,0xaa,0x2e,0xa9,0xaf,0x62,0xd8,0x98, 0x4c,0x96,0x65,0x88,0xa2,0x8,0x61,0x18,0x22,0x49,0x92,0x22,0x5e,0xb3,0xb7,0xb7, 0xf7,0xef,0xfc,0xf0,0x87,0x3f,0xfc,0x3f,0xb4,0xd6,0xd1,0x2c,0xb7,0xe0,0x59,0xe9, 0xb9,0xb3,0xde,0x53,0x7a,0x5c,0xa7,0xee,0xd6,0xe3,0x85,0x1,0x24,0x3b,0x67,0x6f, 0xdf,0xbe,0x6d,0x98,0x4b,0xd,0x16,0x5f,0x1d,0x73,0xa8,0x80,0x87,0xfb,0xd1,0x47, 0x1f,0xfd,0x87,0x9e,0xe7,0xfd,0x19,0x80,0x22,0x63,0xa9,0xd1,0x68,0xc0,0x75,0x5d, 0x10,0x42,0xa,0x97,0xcb,0xef,0xea,0x6f,0xb2,0xc,0x2b,0xf8,0xb2,0xcc,0xe1,0x79, 0xdd,0xe4,0x65,0x4a,0x9e,0x24,0x9,0xc2,0x30,0x44,0x1c,0xc7,0x88,0xa2,0x8,0x8c, 0x31,0x38,0x8e,0x73,0x72,0xe9,0xd2,0xa5,0xab,0x0,0x42,0xad,0xb5,0x2c,0x1b,0xfe, 0x2a,0x48,0xcc,0xfa,0x7b,0xd6,0xe3,0x7a,0xd4,0xe3,0x45,0x65,0x2f,0x0,0x6a,0xb0, 0xf8,0x32,0xcc,0x62,0x91,0x31,0x81,0xc9,0x66,0x22,0x0,0xbc,0xdd,0xdd,0xdd,0xa1, 0xf5,0x7,0x5a,0x70,0xf0,0x7d,0xbf,0xc8,0x32,0xb0,0x71,0x80,0xaf,0x7a,0xd5,0x7d, 0xde,0x15,0xc5,0x79,0xc7,0xac,0x14,0xbd,0xe7,0xb1,0xdf,0xf3,0x1e,0x7f,0xf9,0x7a, 0x96,0x3,0xe5,0xf6,0x5a,0xf,0x6,0x3,0xc,0x6,0x3,0x48,0x29,0xe1,0x38,0x8e, 0x75,0x53,0xfd,0x27,0x5a,0xeb,0xf8,0xac,0xdf,0x79,0x16,0xcb,0x98,0xc7,0x22,0xeb, 0x51,0x8f,0x6f,0xbb,0x37,0xa0,0x6,0x8b,0xe7,0xc,0x16,0x33,0x5e,0x17,0xbf,0xf8, 0xc5,0x2f,0xfe,0xee,0xc5,0x8b,0x17,0x7f,0x16,0xc7,0x31,0x84,0x10,0x68,0xb5,0x5a, 0x68,0x34,0x1a,0x45,0xa0,0xd6,0x1a,0x35,0xcb,0x26,0xbe,0x69,0xa0,0xf8,0xb2,0xc6, 0xfc,0xac,0xcf,0x2f,0x13,0x80,0x7f,0xde,0xe7,0x62,0xbf,0xb7,0xc,0xc4,0x65,0xc6, 0x11,0xc7,0x31,0x6,0x83,0x1,0xc2,0x30,0x84,0x4d,0xc7,0xbd,0x72,0xe5,0x4a,0x3, 0x40,0x6c,0xd9,0xc6,0x59,0xac,0xb1,0x7c,0x3f,0xd4,0xa0,0x51,0x8f,0x17,0x9,0x34, 0xec,0xfc,0x29,0x58,0x46,0x7d,0x6f,0x3f,0xbb,0x9b,0xa9,0x5c,0x7d,0x9d,0x3f,0xe6, 0x8f,0x1f,0x3f,0x4e,0xd2,0x34,0x2d,0x6a,0x20,0x5a,0xad,0x16,0x82,0x20,0x28,0xaa, 0xa8,0xcb,0x1,0x5a,0xeb,0x47,0x2f,0xa7,0x88,0xfe,0x2e,0xb0,0x8b,0x45,0xcc,0xe1, 0x77,0xf9,0xf8,0xca,0x2b,0xa1,0x29,0x4d,0x9b,0x19,0xe0,0x1,0x4c,0x82,0xe3,0x71, 0x1c,0x63,0x34,0x1a,0x21,0xc,0x43,0x48,0x29,0xe1,0x79,0x1e,0xb6,0xb6,0xb6,0xda, 0x0,0x46,0xf6,0xb7,0xad,0xc6,0x35,0x6a,0x60,0xa8,0xc7,0xef,0x1d,0xcb,0xa8,0xef, 0xf7,0x67,0x66,0x16,0xa4,0x4,0x1a,0xee,0xde,0xde,0x5e,0x34,0x18,0xc,0xc0,0x18, 0x83,0xeb,0xba,0x68,0x36,0x9b,0x68,0x34,0x1a,0x20,0x84,0x20,0x4d,0x53,0x0,0xa6, 0xb8,0xc5,0xca,0x6e,0x54,0x41,0xe3,0x77,0xc5,0x8,0x9f,0x75,0x2c,0x67,0x31,0x88, 0x79,0xaf,0x7f,0x5d,0x6e,0xa8,0x79,0x20,0x61,0x5d,0x53,0x55,0xb7,0x54,0x79,0x52, 0x28,0xa5,0x30,0x1a,0x8d,0x30,0x1a,0x8d,0x10,0xc7,0x31,0x5c,0xd7,0xc5,0xb5,0x6b, 0xd7,0x3a,0x0,0x86,0xf3,0x18,0x45,0xd,0x18,0xf5,0xf8,0x7d,0x70,0x43,0xd5,0x42, 0x82,0x5f,0xfe,0xc2,0xfa,0xbb,0xbb,0xbb,0xe3,0xe1,0x70,0x8,0x21,0x4,0x9a,0xcd, 0x26,0x5a,0xad,0x56,0x51,0x45,0x6d,0xeb,0x1f,0xca,0x7f,0x53,0x4a,0x4f,0x55,0x31, 0x7f,0x53,0x14,0xb3,0x6a,0x60,0xe7,0x1d,0x4f,0xd9,0xf0,0x9e,0x5,0x12,0x8b,0x82, 0xf4,0xd6,0x58,0x7f,0xd5,0xa0,0x51,0x3e,0xd6,0xaa,0xfc,0x88,0x65,0x77,0xd5,0x73, 0x2b,0x33,0x3d,0xa5,0x14,0xc2,0x30,0xc4,0x60,0x30,0x40,0x14,0x45,0x10,0x42,0xe0, 0xfa,0xf5,0xeb,0x5d,0x0,0x7d,0x0,0xb4,0x1a,0x10,0xaf,0xd9,0x46,0x3d,0x5e,0x44, 0x17,0x54,0xed,0x86,0x7a,0x3e,0x17,0xd3,0xdb,0xdb,0xdb,0xb,0x47,0xa3,0x11,0x28, 0xa5,0x68,0x36,0x9b,0x68,0x36,0x9b,0x10,0x42,0xcc,0x2c,0x3a,0xab,0xfa,0xcc,0xab, 0xfe,0xfb,0xaf,0x33,0x6e,0x31,0x4b,0x23,0xaa,0x7c,0xbc,0x59,0x96,0x4d,0x29,0xc6, 0x96,0x75,0xa7,0xec,0xb1,0xce,0x12,0x19,0x2c,0x6b,0xce,0x58,0xf5,0x5a,0xab,0x66, 0xbb,0x8,0x3c,0xbe,0x8e,0x9b,0xbe,0x5c,0xa3,0x32,0xeb,0x1a,0x17,0x2b,0xa7,0xa, 0x68,0x68,0xad,0x31,0x1e,0x8f,0x31,0x18,0xc,0x90,0xa6,0x29,0x18,0x63,0xb8,0x7e, 0xfd,0xfa,0xdc,0x98,0x46,0x3d,0xea,0xf1,0xa2,0x0,0xc5,0xcc,0x9a,0x8c,0x1a,0x2c, 0xe6,0xbb,0x97,0xf2,0xe7,0xca,0x31,0xa,0xf7,0xf1,0xe3,0xc7,0x7b,0x51,0x14,0x75, 0xa5,0x94,0x68,0x36,0x9b,0x68,0xb7,0xdb,0x70,0x1c,0xe7,0xcc,0xca,0xe4,0xf2,0x8f, 0x51,0x6,0x87,0x45,0xa9,0xa6,0x33,0xa5,0x31,0xb4,0x9c,0x36,0xc0,0x9a,0x42,0x93, 0xd3,0x86,0xaf,0x5c,0x8d,0x4d,0x88,0x31,0xfc,0xb6,0xf0,0xcf,0xea,0x2e,0x65,0x79, 0x6c,0x25,0x4b,0x55,0xa1,0x52,0x2b,0xc9,0x69,0xb5,0xd8,0x29,0xa0,0x4b,0xa7,0xdd, 0x68,0xb3,0x0,0x88,0x52,0xa,0x50,0x52,0x80,0x5,0x65,0x13,0x41,0x43,0xe1,0x18, 0xa5,0x5b,0xc1,0x72,0xd5,0x5b,0xc2,0xa7,0x3e,0x2b,0x75,0x56,0xb9,0x6,0x1a,0xba, 0x54,0xc5,0xad,0xf4,0xd9,0x80,0x5a,0x3d,0xe6,0x32,0xcb,0x58,0x46,0x41,0xb7,0x7c, 0x3e,0x96,0x8d,0x58,0xf7,0x54,0x18,0x86,0xf0,0x7d,0x1f,0x57,0xae,0x5c,0x69,0xc1, 0xc4,0x34,0x4e,0xd5,0x68,0xd4,0x2c,0xa3,0x1e,0x2f,0xa4,0x7d,0xfc,0x7d,0xbb,0x9f, 0x4b,0x99,0x2b,0x64,0x56,0xa0,0x7a,0xce,0xdf,0x7c,0x7b,0x7b,0xfb,0xbf,0x64,0x8c, 0xfd,0xc4,0x82,0x44,0xab,0xd5,0x2a,0x24,0x37,0xca,0xc6,0x7f,0xd9,0x3a,0x84,0x59, 0x55,0x95,0x55,0x17,0xd5,0x59,0x86,0x70,0x26,0x5b,0xa0,0xa6,0x8c,0x3f,0xcb,0x32, 0x64,0x49,0x8a,0x28,0x8a,0xac,0x8,0x9f,0x1,0x8c,0x2c,0x9d,0x36,0x9e,0x30,0xea, 0x93,0x76,0x8f,0x14,0x7a,0x66,0x1f,0xb,0x7b,0x9c,0x19,0x9d,0xef,0xba,0xd2,0x5a, 0x83,0xeb,0x4a,0x1a,0x70,0xc1,0x9e,0xf2,0xcf,0xd0,0x49,0x93,0x24,0x4a,0x29,0x84, 0x10,0xe0,0x8e,0x3,0xcf,0xf3,0xc0,0x39,0x87,0xc7,0x5d,0x70,0xce,0x41,0xc8,0x69, 0x76,0x36,0x4f,0x1d,0xb3,0x6a,0xe0,0x67,0xbd,0xdf,0x2,0xdc,0x59,0xd7,0xb7,0xfa, 0xf9,0x72,0x8f,0xf,0x29,0x25,0xc2,0x30,0x44,0xaf,0xd7,0x43,0x92,0x24,0x68,0x36, 0x9b,0xb8,0x74,0xe9,0x92,0x6f,0xb,0xfc,0xea,0x51,0x8f,0x1a,0x2c,0x5e,0x30,0xb0, 0x58,0x94,0x2b,0x5f,0x61,0x12,0x14,0x40,0xeb,0xf3,0xcf,0x3f,0x3f,0x91,0x52,0x22, 0x8,0x2,0x74,0x3a,0x9d,0x62,0x95,0x6c,0x63,0x12,0xd5,0x34,0xb3,0x67,0x5d,0xf5, 0x5a,0xa3,0x36,0x4b,0xee,0xbb,0xf8,0x2c,0xe5,0xa7,0x8c,0x65,0x96,0x65,0x48,0xe2, 0x18,0x69,0x9a,0x62,0x1c,0x8d,0x90,0xa6,0x29,0x64,0x9a,0x4d,0xb9,0x90,0xec,0x3e, 0x38,0x65,0x46,0x76,0x58,0x57,0xd8,0xd,0xc9,0x63,0xa,0x6a,0x76,0xd3,0xa3,0xe2, 0xfb,0xd9,0xe2,0x98,0x43,0x39,0x25,0x98,0x68,0x0,0x64,0x76,0x86,0x97,0xfd,0xb4, 0x82,0x86,0x9c,0xa8,0x8c,0x43,0xc0,0x29,0x2a,0xd9,0x1d,0xc7,0x3c,0x16,0x42,0x80, 0xe4,0xc6,0x9e,0x40,0x9d,0x32,0xe8,0xd5,0xeb,0x3e,0x8b,0xf1,0x58,0xa6,0x34,0x4f, 0x1b,0x6b,0x9e,0x4b,0x6a,0x1e,0x4d,0x1f,0xc,0x6,0x38,0x3a,0x3a,0x82,0xd6,0x1a, 0x41,0x10,0xdc,0xbd,0x7c,0xf9,0xf2,0x1f,0x69,0xad,0x93,0x33,0x16,0x28,0x35,0xdb, 0xa8,0x47,0xd,0x16,0xdf,0x42,0x66,0x71,0x6a,0xf2,0x56,0x80,0xa2,0xf1,0xc5,0x17, 0x5f,0xc,0xe3,0x38,0x9e,0x4a,0x81,0x5d,0xe4,0xe3,0x5b,0x6,0x2c,0xca,0x12,0xe1, 0x55,0xa3,0x6f,0x57,0xaf,0xd6,0xdf,0x5f,0x5d,0x35,0x13,0x42,0x90,0xc9,0x1c,0x1c, 0x92,0x4,0x51,0x14,0x21,0x8e,0xc6,0x85,0xe,0xd2,0x2c,0x3,0xf,0x4c,0xb4,0xeb, 0xb3,0x2c,0x83,0x43,0xf3,0xd7,0x19,0x2d,0x56,0xf7,0x1a,0x80,0xd6,0xb9,0x91,0xd7, 0x6c,0xaa,0xc7,0x44,0xd5,0x15,0xa5,0x32,0x39,0x75,0x3c,0xf6,0xdc,0x6d,0xfd,0x88, 0x62,0x66,0x25,0xce,0x39,0x7,0xcf,0xbf,0x4a,0xe9,0xc,0x50,0x39,0x18,0x2a,0xeb, 0xde,0x32,0xc7,0xab,0xc8,0xf4,0x31,0xab,0x3c,0x12,0x50,0xa8,0xcf,0x72,0xb3,0x2f, 0xb,0x1c,0x41,0x10,0x9c,0x92,0x62,0x2f,0xeb,0xee,0x57,0xdd,0x7b,0xe7,0x65,0x6e, 0xf3,0x40,0xc2,0x3e,0x97,0x77,0xf7,0x2b,0xae,0xd1,0x68,0x34,0x42,0xbf,0xdf,0x7, 0x63,0xc,0xef,0xbe,0xfb,0xee,0xf,0x7e,0xfc,0xe3,0x1f,0xdf,0x5d,0xa6,0xf2,0xbb, 0x1e,0xf5,0xa8,0xc1,0xe2,0x5b,0xc6,0x2e,0xac,0x2a,0x69,0x99,0x4d,0xec,0xec,0xec, 0xfc,0x2c,0x4d,0xd3,0x1f,0x51,0x4a,0xd1,0x6a,0xb5,0xd0,0x6c,0x36,0xc1,0x39,0x2f, 0xc,0x58,0x79,0xe5,0x5f,0xe,0x88,0x32,0xc6,0x96,0x72,0x23,0xcd,0x3,0x9c,0xaa, 0xb1,0x2a,0x67,0xf0,0x8c,0xc7,0x63,0x44,0x51,0x84,0x68,0x1c,0x9a,0xfe,0xe,0x59, 0x9a,0x7f,0x2f,0x4e,0xd5,0x6a,0x18,0x10,0xe0,0xa7,0xdc,0x54,0x52,0x2b,0x64,0xa9, 0x51,0x93,0x8c,0xa2,0x8,0xa3,0x28,0xc4,0x78,0x3c,0x46,0x18,0x45,0x88,0xe3,0x18, 0x59,0x96,0x61,0x94,0x96,0x62,0x1a,0x59,0x36,0xa5,0x68,0xb,0x0,0x51,0x92,0x14, 0x20,0x63,0x41,0xc8,0xba,0x6a,0x18,0x63,0x10,0xc4,0x74,0xe1,0x13,0x8c,0x43,0x8, 0x93,0x46,0x1c,0x78,0xe,0x82,0x20,0x80,0xeb,0xba,0x68,0x7,0x5e,0x1,0x26,0x82, 0xe7,0xf1,0xa,0x95,0x77,0xf5,0x53,0xa,0x8a,0xa8,0x53,0xd7,0x4b,0xc9,0xc9,0x77, 0x48,0xad,0xa,0x2d,0x2d,0xcb,0x3e,0xac,0x54,0x7b,0xd5,0xcd,0x54,0xfd,0xad,0xe6, 0x81,0xe9,0x2c,0x66,0x74,0xca,0xbd,0x7,0x4c,0x5d,0xdf,0x32,0x50,0x46,0x51,0x84, 0x5e,0xaf,0x87,0xf1,0x78,0x8c,0x66,0xb3,0x89,0xad,0xad,0xad,0x96,0xd6,0x7a,0xb8, 0x88,0xcd,0xd6,0xa3,0x1e,0x35,0x58,0x7c,0x4b,0x98,0xc5,0x1c,0x91,0xbf,0xe0,0xfe, 0xfd,0xfb,0x23,0x29,0x25,0x7c,0xdf,0x47,0xb7,0xdb,0x85,0xe3,0x38,0x53,0x6,0xa8, 0xca,0x8,0xca,0xc1,0x66,0x9b,0x1a,0xbb,0xc4,0x31,0x9c,0x72,0x3f,0x95,0x3,0xaa, 0x56,0x45,0x35,0xc,0x43,0xc,0x87,0x43,0x8c,0xc7,0x63,0x64,0x59,0x96,0xc7,0x18, 0xd4,0xa4,0x2,0x5c,0xa2,0x70,0x27,0x31,0x61,0x2,0xc6,0x94,0x70,0xd8,0xa2,0xc0, 0x38,0x33,0x20,0xd3,0xeb,0xf5,0x70,0x7c,0x72,0x82,0xf1,0x78,0x8c,0xe3,0x61,0x5a, 0x80,0x41,0x22,0xb3,0xe9,0xac,0x7,0x0,0x42,0x88,0xa9,0xe3,0x29,0xb3,0x8,0xe3, 0x6,0x9a,0xdd,0x54,0xa9,0xea,0x1a,0x22,0x4a,0x43,0x29,0x39,0xcd,0x8c,0xa8,0x6, 0x18,0xe0,0x38,0xe,0x1a,0x9e,0x8f,0x66,0xc3,0x47,0xab,0xd1,0x44,0xa7,0xd9,0x42, 0xbb,0xd9,0x82,0xe7,0xbb,0x10,0x94,0x94,0xce,0x2f,0x97,0x48,0x56,0x1a,0xc8,0x41, 0x84,0x50,0x5e,0xc4,0x5f,0x2c,0xe8,0xb8,0xae,0x8b,0x46,0xa3,0x81,0x20,0x8,0xe6, 0x66,0xa4,0x2d,0x3b,0xaa,0x2e,0xac,0x2a,0xd8,0x58,0xc6,0x67,0xef,0x9,0xcb,0x70, 0xec,0x35,0x7f,0xfa,0xf4,0xa9,0xed,0xaf,0x71,0xf7,0xf2,0xe5,0xcb,0xff,0xaa,0xd6, 0x3a,0xad,0x1,0xa3,0x1e,0x35,0x58,0xbc,0x20,0xa0,0x41,0x8,0x71,0x1e,0x3d,0x7a, 0xf4,0x6e,0x18,0x86,0x37,0x39,0xe7,0xe8,0x74,0x3a,0x68,0xb5,0x5a,0x85,0xeb,0xa6, 0xbc,0x6a,0x2d,0x83,0x43,0xd9,0x80,0xcc,0x63,0xd,0x67,0x19,0xa5,0x6a,0xff,0x86, 0x28,0x8a,0x30,0x1e,0x8f,0x31,0x1c,0xe,0x91,0xa6,0xe9,0xa9,0xd5,0xad,0x8d,0xfb, 0x6a,0x2,0x50,0x26,0x40,0x5,0x87,0x52,0xc0,0x70,0x34,0xc2,0x70,0x38,0xc4,0xc1, 0x51,0xcf,0x80,0x43,0xef,0x4,0x61,0x68,0xe2,0x18,0x4a,0x97,0x52,0x5c,0x85,0x3b, 0xc9,0x52,0xca,0xb7,0xe9,0xef,0x50,0xa7,0xdc,0x4c,0xe5,0xe1,0x94,0x5a,0xa0,0x54, 0xe3,0x35,0x5a,0x6b,0x48,0x7a,0xfa,0x1c,0xcb,0xc,0x4c,0xe6,0x6e,0x2d,0xa9,0x32, 0xa8,0x2c,0xaf,0x43,0xa1,0x28,0x5c,0x4b,0xdd,0x76,0xb,0xad,0x56,0xb,0x2b,0xdd, 0x36,0xba,0xad,0x16,0x1a,0x41,0x0,0x27,0x8f,0x93,0x10,0x18,0x90,0xab,0x32,0x7, 0xcb,0xf8,0x18,0x63,0xf0,0x7d,0x1f,0xbe,0xef,0xa3,0xd1,0x68,0x14,0x59,0x6a,0xe7, 0xd1,0xde,0x9a,0x7,0xe4,0xb3,0x52,0xa,0x67,0x5d,0x83,0x24,0x49,0xd0,0xeb,0xf5, 0x8a,0xac,0xa9,0xcb,0x97,0x2f,0x37,0x0,0x44,0xb5,0x1a,0x6d,0x3d,0x6a,0xb0,0xf8, 0xf6,0x83,0x46,0xe3,0xf3,0xcf,0x3f,0x1f,0xa6,0x69,0x8a,0x76,0xbb,0x8d,0x95,0x95, 0x95,0xa9,0x78,0x81,0x5,0x82,0x72,0x7d,0xc1,0xf3,0xd0,0x39,0x2a,0x1b,0x20,0xab, 0x51,0x34,0x1a,0x8d,0xa6,0x1a,0x8e,0x94,0x81,0x64,0x92,0x95,0x63,0x8e,0x27,0x8c, 0x22,0x1c,0x1c,0x9f,0x60,0xff,0xe0,0x10,0x7,0x47,0x27,0xe8,0xf,0x7,0x8,0xe3, 0x4,0x71,0x3a,0x59,0x71,0x53,0x96,0xbb,0x67,0xb8,0x61,0x1c,0x0,0xe0,0x92,0xd3, 0x31,0x7,0x42,0x8,0x98,0x5,0x44,0x8d,0x99,0x45,0x6b,0xf6,0xb9,0xc,0x8b,0x3, 0xc0,0xac,0xf4,0x9c,0x2c,0xb3,0x8d,0xfc,0x7f,0x2a,0x19,0x34,0x26,0xb1,0x10,0x45, 0x54,0xa9,0xb1,0x92,0x34,0xd9,0x5a,0x4a,0x3,0x50,0xf0,0x38,0x43,0x33,0x68,0x60, 0xa5,0xd3,0xc2,0xfa,0xda,0xaa,0xf9,0x7d,0x5a,0xc1,0x54,0x91,0x63,0xb9,0xc8,0xae, 0xc,0xa,0x9c,0x73,0x4,0x41,0x80,0x66,0xb3,0x9,0xdf,0xf7,0xa7,0x7e,0xc7,0xf3, 0x0,0x7a,0xf9,0x5c,0x2d,0x9b,0xb1,0xf7,0xc2,0xac,0xbe,0x0,0xf6,0x37,0x1b,0xe, 0x87,0x38,0x38,0x38,0xb0,0xf2,0x21,0x7f,0x79,0xed,0xda,0xb5,0x7f,0x57,0xeb,0x4a, 0x5e,0x70,0x3d,0xea,0x51,0x83,0xc5,0x37,0xe,0x0,0x53,0x19,0x4d,0x73,0x1e,0xf3, 0x9d,0x9d,0x9d,0x7f,0x1a,0x45,0xd1,0x8f,0x1c,0xc7,0xc1,0xea,0xea,0x6a,0xd1,0x71, 0xed,0x2c,0x3,0x52,0x65,0x17,0x53,0xab,0x4c,0x4d,0x41,0xf2,0x5e,0xe8,0x99,0x92, 0x60,0x24,0x2f,0x4c,0x53,0xda,0xe4,0x8f,0x72,0x2,0xe4,0x7e,0xf8,0xf1,0x78,0x8c, 0x7e,0xbf,0x8f,0x30,0x8e,0x20,0x15,0xa6,0x5c,0x3d,0x84,0x68,0x68,0x6d,0x9a,0xf7, 0x98,0x7e,0xdb,0xa,0xbd,0xde,0x0,0x3b,0xfb,0x47,0xd8,0xdf,0xdf,0xc7,0xc1,0xd1, 0x31,0xa2,0x28,0x2,0x34,0x5,0x15,0x1c,0x9c,0xb,0xf3,0x59,0xe1,0x18,0xe3,0xf, 0xe3,0x22,0x63,0x74,0xba,0x60,0x4e,0x3,0x60,0xf9,0xf1,0x53,0x4a,0xe0,0x30,0x9e, 0xd7,0x42,0x98,0x4c,0x29,0xfb,0x7d,0x36,0x26,0x51,0x2e,0xac,0x9b,0xd7,0x1e,0xb5, 0x5c,0xbc,0x97,0xe5,0xae,0xa7,0x2c,0x8f,0x7d,0x98,0x20,0xb9,0xc9,0x78,0x32,0xef, 0x57,0x25,0xa6,0x1,0xa8,0x12,0xeb,0x28,0x40,0x26,0x8f,0x95,0x94,0x63,0x27,0xf6, 0x38,0x5a,0xbe,0x8b,0xcd,0xcd,0x4d,0x5c,0xdc,0xdc,0x40,0xb7,0xdd,0x84,0xe7,0x72, 0x30,0xa2,0xa1,0xa5,0x82,0x56,0x19,0x34,0x6c,0xdc,0x61,0x12,0x5f,0x70,0x5c,0xc3, 0x34,0x1a,0x8d,0x6,0x7c,0x47,0x40,0xc1,0x5c,0xdb,0x72,0xf1,0x1d,0xd4,0x24,0x2b, 0xac,0xa,0x16,0x65,0xd7,0xd3,0x32,0xd9,0x6e,0x36,0x96,0x93,0x24,0x9,0xfa,0xfd, 0x3e,0x7a,0xbd,0x1e,0x5c,0xd7,0xc5,0x4b,0x2f,0xbd,0x14,0x68,0xad,0xc3,0x6a,0xf6, 0x5d,0xfe,0x50,0x97,0xeb,0x34,0xea,0x7e,0x19,0xf5,0xa8,0xc1,0xe2,0x1b,0x70,0x33, 0xcd,0x0,0xa,0x7f,0x67,0x67,0x67,0x1c,0x86,0x21,0xda,0xed,0x36,0x56,0x57,0x57, 0x8b,0x54,0xd8,0x65,0xb2,0x99,0x6c,0xd6,0x4d,0x55,0xe3,0xc9,0x4,0x6b,0x35,0x54, 0x9e,0xa,0x4a,0x18,0x5,0xd1,0xb9,0xd1,0x82,0x61,0x6,0x51,0x96,0x60,0xd8,0x1f, 0x60,0x38,0x1c,0x42,0xa6,0x93,0x0,0x32,0xc9,0xb3,0x93,0x38,0x34,0x34,0x25,0xa0, 0x8c,0x21,0x53,0x1a,0x47,0xbd,0x11,0xee,0xef,0x3c,0xc2,0xee,0xde,0x13,0xf4,0xfa, 0x43,0xa4,0x79,0xba,0x90,0x10,0x2,0x22,0x7,0x6,0x63,0xec,0x4d,0x80,0x99,0x60, 0x3a,0x7b,0xca,0xc9,0x8b,0xdf,0x84,0x10,0x70,0x84,0x80,0xeb,0x8a,0x22,0xb3,0xc8, 0x15,0xdc,0xd4,0x39,0x8,0xa,0x97,0x9b,0xe7,0x79,0x1e,0x74,0x2e,0x83,0x45,0x79, 0x7f,0xd5,0xf8,0x44,0xb5,0xdd,0x6a,0xa6,0x55,0x51,0x0,0x98,0xa5,0x79,0x6c,0x24, 0xc9,0xa,0x9f,0xfe,0x38,0x89,0x20,0xa5,0x2c,0xfe,0x96,0xd9,0x34,0xd8,0x4c,0x40, 0x5,0xd3,0xcf,0x4b,0x69,0x5c,0x50,0xf6,0x7f,0x2d,0xd1,0xf0,0x3d,0x5c,0xdc,0x5c, 0xc7,0x85,0xcd,0xd,0xac,0xac,0x74,0xd0,0xa,0x1a,0xd0,0x2a,0x2b,0x40,0xca,0x1e, 0xb3,0x52,0x59,0x61,0xc4,0x7d,0xbf,0x85,0x6e,0xb7,0x8d,0x46,0xa3,0x1,0xad,0x35, 0x52,0x99,0x81,0x68,0x80,0x10,0x96,0x9f,0x9f,0x9c,0xc9,0x28,0x2c,0xb3,0x5b,0x36, 0x81,0xa1,0x9c,0x7d,0x55,0x2c,0xa,0xc2,0x10,0xcd,0x66,0xf3,0xee,0xd6,0xd6,0xd6, 0x5b,0xf9,0x7b,0x58,0x49,0x3a,0x64,0x4a,0xa0,0xb2,0xce,0xa0,0xaa,0x47,0xd,0x16, 0x5f,0x13,0xb3,0xb0,0xab,0xb5,0xea,0x6b,0xf,0x1f,0x3e,0xfc,0x67,0x59,0x96,0xfd, 0x8,0x0,0xba,0xdd,0x2e,0x5a,0xad,0xd6,0xa9,0x34,0xcb,0x45,0xa3,0x9c,0xd,0x33, 0xcb,0xaf,0xad,0xa5,0x2,0x28,0x99,0x5a,0x65,0x12,0x42,0x30,0x1e,0x8f,0x31,0x1a, 0xc,0x71,0x32,0x18,0x1a,0x83,0xa3,0x35,0x8,0xd1,0xa0,0x39,0x3,0x20,0x8c,0x82, 0x10,0x8d,0x4c,0x12,0xf4,0xfb,0x7d,0x3c,0xda,0x7b,0x82,0xfb,0x5f,0x7c,0x81,0x93, 0xde,0x8,0x19,0x8,0xb8,0xf0,0x40,0x8,0x3,0xa5,0x28,0xea,0x3c,0x68,0xce,0x1a, 0x48,0xe,0x5c,0x9c,0x73,0xb8,0xcc,0x74,0xde,0xf3,0x3c,0xf,0x81,0xe7,0x17,0x3e, 0xfc,0xc0,0xf3,0xe0,0xba,0x2,0x9e,0xeb,0x14,0xad,0x5b,0x39,0xa7,0xe0,0x84,0x16, 0x86,0x8d,0xb,0x3a,0x29,0xd2,0x9b,0x7,0x9a,0x44,0xcd,0x35,0x90,0xf6,0x7f,0x25, 0x51,0x30,0x3,0xc3,0xe,0x14,0x52,0x65,0x8c,0x7c,0x92,0x66,0x88,0xb3,0xd4,0x34, 0x22,0xa,0x93,0x3c,0x5,0x38,0x29,0x8a,0x7,0xa3,0x24,0x36,0xc6,0x3e,0x67,0x6, 0x8a,0xe4,0xd1,0xa,0xa5,0x4c,0xfc,0x25,0x37,0xd6,0x52,0x66,0x90,0x49,0x8a,0x34, 0x89,0x40,0x8,0x41,0xab,0x11,0xa0,0xd5,0x6a,0xe1,0xe5,0x6b,0x97,0xd1,0xe9,0xb4, 0xd0,0xf4,0x3,0x28,0x99,0x22,0xcb,0x92,0xbc,0xe0,0x50,0x81,0x6a,0x20,0xd5,0x1c, 0x94,0x2,0x9e,0xe7,0xa1,0xdd,0x6e,0xa3,0xd9,0x6e,0x81,0x51,0x8e,0x2c,0x93,0x50, 0xa,0xa0,0x44,0x9e,0x8a,0x47,0x58,0x66,0xb1,0x4c,0x2,0x43,0x39,0x3d,0xb7,0xc, 0xb2,0x36,0x63,0x2a,0xc,0x43,0xb8,0xae,0x8b,0x2b,0x57,0xae,0x34,0xb4,0xd6,0xe3, 0x32,0x20,0xd4,0xfd,0x32,0xea,0x51,0x83,0xc5,0xd7,0xcc,0x28,0xe6,0x48,0x30,0x38, 0xbb,0xbb,0xbb,0xf1,0x68,0x34,0x82,0xe7,0x79,0x58,0x59,0x59,0x41,0xa3,0xd1,0x28, 0xc,0x50,0x55,0xc2,0x62,0x51,0xac,0x61,0x71,0xcf,0x6,0x35,0x95,0x46,0x6b,0xb2, 0x91,0x4c,0xcf,0x84,0x2c,0xcb,0x2a,0xd,0x79,0x28,0x58,0xbe,0x92,0x3f,0xee,0xf, 0x70,0x78,0x78,0x88,0x7b,0xf,0x9f,0xe0,0xe9,0xd3,0xa7,0x88,0xe3,0x18,0xbe,0xef, 0x15,0xd9,0x49,0x79,0x77,0x37,0xe8,0x9c,0xa1,0x18,0xb0,0x1,0x1a,0x9e,0x8f,0x20, 0x8,0xe0,0x7b,0x6,0x20,0xd6,0x3b,0xd,0x78,0x9e,0x57,0x80,0x84,0x2d,0x6a,0xe3, 0x9c,0xc2,0x61,0x1c,0x84,0xe6,0x6,0x10,0xa7,0x8b,0xd8,0x0,0x55,0xc4,0x44,0xe6, 0xd5,0x1a,0x54,0x2b,0xab,0x67,0x5d,0x1f,0x80,0xce,0xf4,0xeb,0x6b,0xad,0x91,0x49, 0xb3,0x52,0x4f,0x95,0x84,0xb4,0x35,0x23,0xb1,0x49,0xe5,0x4d,0x53,0x89,0x61,0x14, 0x22,0xc,0x43,0x23,0xad,0x11,0x27,0x88,0xe2,0xd4,0x14,0x19,0x5a,0x26,0xa3,0xd, 0x53,0x90,0x52,0x42,0x59,0x89,0x12,0x29,0x91,0x65,0xa9,0x61,0x7c,0x59,0x6a,0x18, 0xc7,0xa5,0x4d,0x5c,0xbf,0x7c,0x19,0x6b,0xdd,0xe,0x28,0xd1,0xc8,0x52,0x3,0x42, 0x1a,0xb9,0x5b,0x2d,0x67,0x10,0x8e,0xeb,0xe7,0xda,0x5e,0x6d,0x38,0xae,0x3,0x55, 0xcd,0x10,0xab,0x54,0x72,0x5b,0x56,0xb9,0xe8,0xfc,0xcb,0xee,0x2a,0x5b,0x37,0xc3, 0xb9,0xc9,0xe2,0xea,0xf5,0x4c,0x2,0x2,0xa5,0x14,0x37,0x6e,0xdc,0x68,0x69,0xad, 0x87,0xb3,0x64,0x66,0x66,0x1,0x46,0xd,0x1a,0xf5,0xa8,0xc1,0xe2,0x2b,0x6,0xd, 0x42,0x48,0xf3,0xc1,0x83,0x7,0x83,0x24,0x49,0xb0,0xb2,0xb2,0x82,0x76,0xbb,0xd, 0xc6,0x58,0x91,0x6d,0x54,0xae,0x9a,0x5e,0x62,0xbf,0xa7,0xc,0xa1,0xfd,0xdb,0x74, 0xbe,0x93,0x85,0x6a,0xa9,0xc9,0xbd,0x37,0x2b,0x5f,0x50,0x93,0xe,0xcb,0x60,0xaa, 0xb0,0xb9,0x23,0x90,0x4a,0x82,0xfd,0x83,0x43,0xdc,0xdf,0xf9,0x2,0xbb,0x7b,0x4f, 0xd0,0xef,0xf7,0x21,0x85,0xa9,0x1d,0xf0,0xac,0x8b,0x89,0xe8,0xbc,0x8e,0x20,0x77, 0xd,0x11,0x8d,0x66,0xd0,0x40,0xa3,0xe1,0xa3,0x19,0x34,0xd0,0xe9,0xb6,0xd0,0x69, 0xb6,0xd0,0xf0,0x3,0xf8,0x81,0x87,0x86,0xe7,0x4e,0xdc,0x47,0x54,0x83,0x12,0xa, 0x94,0xe5,0x45,0xf2,0x4a,0x6d,0x5b,0x24,0x77,0xba,0x4a,0x9b,0xcc,0x1,0x0,0xfb, 0x78,0x31,0x3,0x9b,0xd5,0xfc,0x7d,0x5e,0xd5,0x3a,0x90,0xaf,0xd8,0xd5,0xc4,0xe5, 0x14,0x67,0x6,0x1c,0xe2,0x24,0x45,0x92,0x24,0x18,0x8c,0x42,0xf4,0x87,0x46,0x97, 0x29,0x8a,0x22,0x8c,0xe2,0x24,0x7,0x88,0x49,0xec,0x43,0xe5,0x55,0xec,0x59,0x66, 0xe2,0x16,0x69,0x9a,0x42,0x26,0x9,0x38,0x23,0x58,0x5b,0xe9,0xe2,0xca,0xd6,0x45, 0x5c,0xd8,0xdc,0x40,0xa3,0xe1,0x43,0xa7,0x9,0x64,0x66,0x7a,0x72,0x73,0x42,0xb, 0xd7,0x99,0xe7,0x79,0x68,0xb5,0xd,0xd3,0xb4,0x85,0x77,0xd6,0x95,0x65,0xff,0xce, 0xb2,0xac,0x88,0x47,0x9c,0x75,0x7f,0x58,0x96,0x31,0xb,0x78,0x93,0x24,0xc1,0xd1, 0xd1,0x91,0xcd,0x98,0xfa,0xcb,0x6b,0xd7,0xae,0xfd,0x49,0x35,0x66,0x51,0x3,0x43, 0x3d,0x6a,0xb0,0xf8,0x1a,0x81,0x82,0x10,0x42,0xde,0x79,0xe7,0x9d,0x9b,0x6f,0xbf, 0xfd,0xf6,0x6d,0x4a,0x29,0xd6,0xd6,0xd6,0xa,0x5f,0x75,0x51,0x21,0x9c,0xbb,0xd, 0x96,0x91,0x82,0xa8,0xba,0xa1,0xca,0xfb,0xb0,0xaf,0x25,0x49,0x84,0x93,0x93,0x13, 0x8c,0x46,0xe1,0xb4,0xb1,0xa4,0x26,0x70,0xec,0x8,0x81,0xd1,0x78,0x8c,0xdd,0x27, 0x4f,0xf1,0xc9,0xe7,0x9f,0x63,0xef,0xc9,0x21,0xa4,0x2,0x84,0xe7,0x81,0x33,0x7, 0x8e,0x30,0x92,0xe6,0x5a,0x11,0x50,0x61,0xe2,0x8,0x56,0x3c,0x6f,0x75,0x75,0x15, 0x2f,0x5d,0xe8,0xa2,0xdd,0x6e,0xa1,0x95,0x67,0xf9,0x4,0xae,0x63,0xa,0xe2,0xf2, 0xf4,0xd3,0x6a,0xe1,0xe0,0x29,0x30,0x0,0x9d,0x69,0xdc,0x89,0x89,0xbb,0x2f,0xac, 0xa1,0x0,0x60,0x6a,0x25,0xe6,0x80,0x89,0x71,0xc3,0x55,0x2a,0xb2,0x4b,0x32,0x1b, 0x46,0xf8,0x70,0x5e,0x5c,0x88,0xda,0x9d,0xe5,0xbf,0x7,0xa6,0x5c,0x57,0x36,0xa5, 0x78,0x14,0x9a,0xcc,0xb1,0xfe,0xd0,0x80,0x47,0x9a,0xa9,0x3c,0x4e,0xa2,0xb,0xe0, 0x49,0x92,0xa4,0x88,0x5d,0x24,0x61,0x8,0x25,0x53,0x74,0xbb,0x5d,0xac,0xad,0xad, 0xe0,0xd5,0xeb,0x97,0xd1,0xf0,0x7c,0x8,0x4e,0x91,0x26,0x11,0x20,0x15,0x74,0xee, 0x36,0x94,0x4a,0xc1,0xf3,0x82,0xc2,0x3d,0x69,0x12,0xb,0xb2,0x69,0x37,0xe3,0x92, 0x62,0x91,0xd5,0xba,0x8c,0x32,0x88,0x32,0xc6,0x90,0x24,0x9,0xf6,0xf7,0xf7,0x31, 0x1e,0x8f,0xd1,0xe9,0x74,0x70,0xe9,0xd2,0x25,0xc7,0xd6,0x64,0xcc,0x63,0xc9,0xf5, 0xa8,0x47,0xd,0x16,0x5f,0xd,0x60,0xb0,0x9d,0x9d,0x9d,0xff,0x39,0x8e,0xe3,0x22, 0xdb,0xc9,0xf7,0xfd,0xa9,0x26,0x38,0xd6,0x4d,0xb0,0x6c,0xf0,0xb2,0x3c,0xf9,0xed, 0x7e,0x6c,0xf6,0x90,0xd,0x62,0xe,0x6,0x83,0xfc,0xc2,0xe6,0xc6,0x96,0x18,0x57, 0x13,0x0,0x84,0x49,0x8c,0xed,0xfb,0x8f,0xf0,0xf0,0xe1,0x43,0xec,0x1d,0x1c,0x80, 0x30,0x91,0xa7,0x75,0xb2,0xc2,0x75,0xe5,0x50,0x5,0xce,0x1d,0x50,0x9a,0x17,0xd9, 0xe5,0xc1,0xe9,0xee,0x4a,0x1b,0x37,0x6e,0xdc,0xc0,0xf5,0x8d,0x95,0x22,0x66,0x61, 0x52,0x5e,0x27,0x81,0x66,0xa2,0x1,0x5,0x2,0x4a,0x2b,0x12,0xc3,0x65,0xdb,0x5c, 0x61,0x14,0x65,0x8d,0x28,0x68,0x3a,0x93,0x4d,0x4c,0x9,0xf2,0x91,0xb3,0xee,0x17, 0x5a,0xb0,0x8f,0xa9,0x6,0x4f,0x45,0x19,0x47,0x99,0x61,0x4c,0xf7,0xbe,0xd0,0x4, 0x45,0x56,0x92,0x1,0xb6,0xc9,0x90,0x52,0x22,0x49,0x12,0xa4,0x69,0x8a,0x30,0x89, 0x31,0x1e,0x47,0x18,0x8e,0xc6,0x38,0xe9,0xf,0x31,0x1c,0x87,0x8,0x23,0x23,0x96, 0x98,0x96,0x5a,0xd5,0x4a,0x69,0x58,0x46,0x9a,0xa6,0x50,0xa9,0xc9,0xaa,0x12,0x1c, 0xb8,0x74,0xe1,0x22,0x5e,0xba,0x72,0x19,0x6b,0x2b,0x5d,0x70,0x46,0x90,0xe6,0x2e, 0x2a,0xca,0x19,0x54,0x26,0x8b,0x6e,0x79,0xab,0xab,0xab,0x45,0x4c,0xab,0xdc,0xe5, 0xf0,0xac,0xc5,0x44,0xb9,0x6d,0x6e,0xf9,0xfc,0xaa,0x29,0xd9,0x4a,0x29,0xf4,0xfb, 0x7d,0x1c,0x1d,0x1d,0x41,0x8,0x81,0x1b,0x37,0x6e,0x78,0x0,0xb2,0xba,0x5f,0x46, 0x3d,0x6a,0xb0,0xf8,0xfa,0x80,0xc2,0x79,0xf4,0xe8,0x51,0x3c,0x1c,0xe,0xd1,0x6a, 0xb5,0xb0,0xba,0xba,0x5a,0xac,0xba,0xed,0xca,0xce,0xfa,0x9e,0xed,0xf3,0x53,0xab, 0xdf,0x33,0x46,0x59,0xde,0xc3,0x16,0x61,0xf5,0xfb,0x7d,0xa4,0x69,0x5a,0xec,0x8f, 0x82,0x80,0x73,0x7,0xa0,0x4,0xc3,0xd1,0x8,0xdb,0xf7,0x1f,0x60,0x7b,0x7b,0x1b, 0x87,0x23,0x5,0xe1,0x30,0x88,0x52,0xe6,0x11,0x67,0xc,0x2e,0x37,0xe0,0x90,0x52, 0x6,0x41,0x19,0x1a,0x81,0x87,0x95,0x56,0xb,0x1b,0x2b,0x6d,0x5c,0xde,0xba,0x80, 0x6e,0xd3,0x47,0x10,0x78,0x20,0x54,0xe4,0x46,0x49,0x43,0xab,0x6c,0xc6,0x2a,0xbd, 0xac,0xf7,0xa4,0x4f,0x5,0xa4,0x19,0x29,0xd7,0x8c,0xd0,0xa5,0x57,0xcd,0x4b,0xcb, 0x65,0xe8,0x89,0xd1,0x9c,0x4,0xfa,0x4b,0x86,0x56,0xb,0xa0,0xe4,0xca,0xd2,0x85, 0xd0,0x60,0xe,0x5a,0x9a,0xce,0xac,0x98,0xa7,0x94,0x16,0xc2,0x84,0x52,0x1,0xa9, 0xcc,0x10,0x25,0x19,0xc2,0x28,0xc5,0x28,0x8c,0xd1,0x1b,0xc,0xd1,0xef,0xf7,0x31, 0x1c,0xe,0x11,0xc6,0x91,0x71,0x31,0xc2,0xb8,0x8f,0x12,0x99,0x21,0xcb,0x2c,0x4b, 0x49,0x21,0xb3,0x14,0x82,0x0,0x9b,0xab,0x2b,0xb8,0x71,0xed,0xa,0x36,0x36,0xd6, 0x40,0x29,0x45,0x98,0xc4,0xa0,0x4a,0x16,0x6e,0x27,0x0,0x8,0x2,0xc3,0x34,0x3c, 0xcf,0x3b,0x17,0xab,0x58,0xd4,0xc3,0xa4,0x7c,0x4e,0x94,0x52,0xf4,0xfb,0x7d,0x1c, 0x1e,0x1e,0x42,0x4a,0x89,0xd7,0x5f,0x7f,0xbd,0xee,0x97,0x51,0x8f,0x1a,0x2c,0x9e, 0xb7,0x9b,0x69,0xd6,0xdf,0x84,0x10,0xe7,0xf3,0xcf,0x3f,0x8f,0xd3,0x34,0xc5,0xda, 0xda,0x1a,0x9a,0xcd,0xe6,0xb9,0x2a,0xac,0x67,0xf9,0xd7,0xad,0xf1,0x62,0x8c,0x41, 0xc9,0x34,0xaf,0x57,0xa0,0xa6,0xf0,0xea,0xd0,0xd4,0x3b,0xd8,0xd5,0x24,0xd7,0x9, 0xc0,0x38,0x28,0xf7,0xd0,0x1b,0x85,0xf8,0xf4,0xfe,0x43,0x7c,0xba,0xfd,0x39,0x7a, 0xc3,0xa1,0x51,0x53,0x15,0x2,0x3c,0x7,0x6,0x2a,0x38,0x58,0x9e,0xda,0xa,0x98, 0xc,0x9d,0x4e,0xc0,0x70,0x69,0xf3,0x2,0x2e,0x5c,0xb8,0x80,0x95,0x6e,0x1b,0xd, 0xcf,0x7,0xa1,0xba,0xa8,0x76,0xb6,0xdf,0xb3,0xc8,0x58,0xcd,0x7a,0xbc,0xe8,0xb9, 0xaf,0x73,0x9c,0xe5,0xe6,0x2a,0xf7,0xab,0x98,0xf9,0x7b,0x11,0x5,0xad,0xa6,0xdf, 0x63,0xb5,0xae,0x92,0x24,0xc1,0xf1,0x38,0x44,0xef,0x64,0x90,0xd7,0xaf,0x98,0xec, 0x2a,0x99,0x69,0x64,0x79,0xc,0x42,0x6b,0x6d,0x84,0x17,0x95,0x42,0x1c,0x45,0xd0, 0x5a,0xe1,0xea,0xa5,0x8b,0x78,0xf5,0xa5,0xab,0x58,0x5d,0xe9,0x82,0xaa,0xb4,0x48, 0xcd,0x2d,0x16,0x6,0x4c,0xa0,0xd5,0xee,0x9a,0xde,0x25,0xb9,0x9c,0x8,0xca,0xb1, 0x97,0xbc,0xc7,0x8,0x81,0x9,0xa0,0x57,0x5,0x20,0xcb,0x1,0x7e,0xcb,0x28,0xaa, 0xc5,0x96,0x61,0x18,0x62,0x7f,0x7f,0x1f,0x49,0x92,0xe0,0xee,0xdd,0xbb,0x3f,0xf8, 0xd3,0x3f,0xfd,0xd3,0x3b,0xb3,0xd8,0xc5,0x82,0xfb,0xbe,0x76,0x59,0xd5,0xa3,0x6, 0x8b,0x65,0x1,0x4,0x80,0x77,0xef,0xde,0xbd,0xb1,0x55,0x89,0xb5,0xc1,0x4a,0xcb, 0x28,0x96,0x91,0x7c,0x28,0x4f,0x62,0xeb,0xde,0xb1,0xc,0x20,0x4d,0x53,0x8,0x21, 0x10,0x45,0x11,0x8e,0x8e,0x8e,0xd0,0xef,0xf7,0x8b,0x94,0x55,0xfb,0x5e,0xc7,0x73, 0x11,0x85,0x9,0x3e,0xbd,0xff,0x0,0x1f,0x7e,0xfc,0x9,0xfa,0xe3,0x31,0x84,0xeb, 0xc3,0x71,0xdc,0x2,0x24,0x4c,0x76,0xc,0x33,0x5,0x71,0x44,0xc3,0x75,0x5d,0x6c, 0xac,0xad,0xe2,0xca,0x95,0x2b,0xb8,0xb0,0x61,0xdc,0x65,0x82,0x73,0x48,0x99,0x42, 0x67,0x12,0x4a,0x67,0x60,0x84,0x16,0x99,0x51,0x8b,0x80,0xe0,0x77,0x11,0x20,0xce, 0x3,0x20,0xba,0x92,0x8d,0x55,0x4d,0x69,0xd6,0xb6,0x2e,0x5c,0xd3,0x53,0xf2,0xe3, 0x4a,0x29,0xc4,0xd2,0x80,0x41,0x18,0x86,0x38,0xe9,0xf,0x71,0x78,0x7c,0x84,0xe1, 0x70,0x8c,0x24,0x95,0xb9,0x30,0xa2,0x82,0x84,0x9e,0xf4,0xfc,0xc8,0x52,0xc4,0xe1, 0x8,0x82,0x10,0x5c,0xd8,0xd8,0xc0,0xab,0xaf,0xbc,0x84,0x76,0x23,0x80,0xe0,0xb4, 0x0,0xd,0xb,0x60,0x8c,0x31,0xac,0xaf,0xaf,0x9b,0xde,0xea,0x8c,0x4e,0x8a,0x5, 0xf3,0xd4,0x5e,0xb,0x17,0x67,0xc9,0x83,0x54,0x95,0x1,0x6c,0xc,0xcc,0x6a,0x4b, 0x45,0x51,0x84,0x56,0xab,0x85,0x4b,0x97,0x2e,0xb1,0x4a,0x23,0xae,0x85,0x80,0x50, 0x3,0x46,0x3d,0x6a,0xb0,0x38,0xd,0xa,0xa7,0xd2,0xc,0x9,0x21,0xed,0xdf,0xfe, 0xf6,0xb7,0x3d,0x1b,0x9f,0x28,0x7,0xb2,0xcf,0x63,0x34,0xe7,0xb9,0xa9,0xb2,0x2c, 0x3,0xe7,0x1c,0x7,0x27,0x3,0xc,0x7b,0x27,0x48,0x93,0x8,0x82,0x97,0x94,0x4e, 0x9,0x3,0x17,0x2e,0x3e,0x79,0xf0,0x8,0x1f,0x7c,0xf0,0x1,0xf6,0xf,0x8f,0xe0, 0xf9,0xd,0x8,0x6f,0xa2,0xb2,0xca,0x18,0x3,0xa1,0x14,0x82,0x73,0x38,0x8c,0xa1, 0xdd,0x6a,0xe0,0xf2,0x85,0x75,0x5c,0xb9,0xbc,0x85,0x6e,0xab,0x9,0xcf,0x77,0x10, 0xa7,0xba,0x28,0x24,0x23,0x6a,0xc2,0x24,0x94,0x36,0x2e,0x27,0xc1,0xf8,0x4c,0x60, 0x98,0xd7,0x83,0xe2,0x5b,0x8,0xfa,0xa7,0xea,0x36,0xca,0x80,0x61,0xb3,0xb9,0x8a, 0x2e,0x81,0x95,0x3a,0x17,0x45,0x0,0x29,0xd,0x8b,0x88,0x93,0x4,0xe3,0x71,0x88, 0xfe,0x70,0x8c,0x93,0x93,0x13,0x53,0xe7,0x10,0x67,0x90,0x79,0xea,0x6e,0x9a,0xf7, 0xfc,0x50,0x39,0x33,0xc9,0xd2,0x18,0x44,0x2b,0xbc,0x7a,0xe3,0x25,0x5c,0xbf,0x76, 0x15,0x4d,0xdf,0x3,0xb4,0x2c,0x84,0xb,0x39,0xe7,0x90,0x99,0x69,0x7a,0xd4,0xe9, 0x9a,0x8a,0xff,0xaa,0xf6,0x54,0x35,0x56,0x53,0x2d,0x68,0xac,0x66,0xd3,0x95,0x63, 0x68,0xf6,0xbe,0xdb,0xdf,0xdf,0x47,0xbf,0xdf,0x47,0xa7,0xd3,0xc1,0xd6,0xd6,0x16, 0xd7,0x5a,0x4b,0x5b,0xc0,0x57,0xa9,0xfe,0xae,0xe3,0x18,0xf5,0xa8,0xc1,0x62,0x99, 0xd5,0x93,0x7d,0xfc,0xf1,0xc7,0x1f,0xff,0x47,0x9c,0xf3,0x3f,0xe3,0x9c,0x63,0x73, 0x73,0x13,0xae,0xeb,0x2,0xc0,0x54,0x15,0xef,0xb2,0xe7,0x69,0x33,0x60,0xac,0x3f, 0xd9,0x4e,0xec,0x28,0x8a,0x70,0x7c,0x7c,0x8c,0x71,0x18,0x3,0x5a,0x82,0xb3,0x89, 0x16,0x10,0x77,0x2,0x3c,0x7e,0xba,0x8f,0xdb,0xef,0x7d,0x80,0x87,0x4f,0xf6,0xc1, 0xb9,0x80,0xeb,0xba,0xe0,0x42,0x80,0x17,0x92,0x19,0x4,0x9e,0x30,0x71,0x8a,0xd5, 0x95,0xe,0x2e,0x5d,0xd8,0xc4,0xe5,0x4b,0x17,0xd0,0x69,0xb7,0xe0,0x30,0x8a,0x2c, 0x8d,0x4d,0xf5,0x30,0xf8,0x94,0xbc,0x46,0x61,0x78,0x20,0x1,0x4a,0xe1,0x32,0xbe, 0x50,0xe8,0xef,0x45,0x1c,0x53,0x52,0x20,0xba,0xd2,0xfc,0x48,0x55,0xe2,0x1,0x25, 0xe6,0x1,0x0,0xa9,0x32,0x6e,0xaa,0xd1,0x78,0x8c,0xd1,0x68,0x8c,0xa3,0x93,0x21, 0xe,0x8e,0xe,0x11,0xc6,0x11,0xb4,0x22,0x88,0xb3,0x14,0xb6,0xe8,0x2f,0x1a,0x8d, 0x1,0x68,0xc,0xfa,0x27,0x68,0x6,0x3e,0x5e,0x7b,0xe5,0x65,0x5c,0xbd,0x72,0x19, 0x9e,0xe0,0xc8,0xd2,0xbc,0x67,0x48,0x1e,0x7f,0x11,0x42,0xa0,0xdd,0xe9,0xa0,0xd3, 0xe9,0x0,0xa0,0xf9,0x62,0xc2,0x41,0x39,0x68,0x3f,0xab,0xb7,0xf7,0x3c,0x57,0x61, 0x59,0x7b,0xa,0x0,0xe,0xf,0xf,0x71,0x7c,0x7c,0x8c,0x66,0xb3,0x89,0xab,0x57, 0xaf,0x3a,0x5a,0xeb,0x74,0x9e,0xdc,0x47,0xcd,0x28,0xea,0x51,0x83,0xc5,0x12,0x80, 0xf1,0xd9,0x67,0x9f,0xfd,0x79,0x96,0x65,0x3f,0xf1,0x3c,0xf,0x17,0x2e,0x5c,0x98, 0xa,0x64,0x97,0x53,0x63,0x97,0x55,0x1d,0x95,0x52,0x16,0x32,0xd7,0x76,0x12,0xf7, 0x7a,0x3d,0x9c,0x9c,0x9c,0xe4,0xd9,0x34,0xb4,0x70,0x1d,0x8,0xc7,0xc3,0xf1,0x60, 0x8c,0xbb,0xbf,0xf9,0x8,0xdb,0xf7,0x1f,0x42,0x2,0xf0,0xfc,0x46,0xa1,0xa0,0xca, 0x18,0x81,0xeb,0x38,0x10,0x94,0xc2,0x75,0x38,0xda,0xed,0x36,0x5e,0xbe,0x72,0x11, 0x17,0x2e,0x5c,0x40,0xab,0xd5,0x32,0xb9,0xfb,0x71,0x34,0x95,0x3d,0x23,0xf2,0xcc, 0x29,0x2b,0xbe,0x67,0x8d,0xd,0xa5,0x14,0x54,0x50,0x50,0xa5,0x5f,0x68,0xa0,0x38, 0xeb,0x77,0x3a,0x5d,0x69,0x4f,0x2b,0xc,0x52,0x4d,0xb3,0x90,0x1c,0x4c,0x4c,0x7a, 0x2d,0x30,0xc8,0x53,0x6e,0x8f,0x4e,0xfa,0x38,0x3a,0x39,0xc6,0x70,0x1c,0x22,0x4d, 0x24,0x64,0xee,0x12,0x8a,0xe3,0xd8,0xa4,0xe0,0x26,0x9,0xa2,0x70,0x84,0x95,0x56, 0x80,0xd7,0x5f,0x7b,0x15,0x97,0x36,0x37,0x4c,0x56,0x54,0x5e,0xa3,0x61,0x25,0x44, 0x7c,0xdf,0xc7,0xc6,0xc6,0x5,0x4,0x41,0x80,0x34,0x95,0x50,0x2a,0x3b,0xa5,0xa5, 0x55,0x76,0x3d,0x49,0x29,0xa7,0x84,0x10,0x67,0x2d,0x66,0xec,0xef,0x7d,0x72,0x72, 0x82,0xa7,0x4f,0x9f,0x22,0x8,0x2,0x5c,0xbf,0x7e,0xdd,0x2d,0x77,0xe2,0xab,0xe3, 0x15,0xf5,0xa8,0xc1,0xe2,0x1c,0xae,0xa8,0xed,0xed,0xed,0x7f,0x92,0xa6,0xe9,0x4f, 0x1a,0x8d,0x6,0x36,0x37,0x37,0xa7,0x7a,0x41,0x54,0x27,0xeb,0xb2,0xc6,0xb5,0xac, 0x1e,0x9a,0x24,0x9,0xe,0xe,0xe,0x30,0x1a,0x8d,0x26,0x5d,0xe5,0x54,0x6,0xe1, 0x78,0x48,0x33,0x85,0x4f,0xef,0xef,0xe0,0xfd,0x8f,0xee,0xa1,0x3f,0x18,0xc1,0x9, 0x9a,0x79,0x47,0x37,0xe,0x4a,0x8,0x5c,0xd7,0x5,0xa5,0x4,0x82,0x11,0x6c,0xae, 0xae,0xe2,0xa5,0x6b,0x57,0x70,0xe1,0xc2,0x26,0x9a,0xae,0x63,0x2a,0x8e,0x4b,0x46, 0x43,0x6b,0x2,0x4d,0xcd,0x6a,0x15,0xd9,0x44,0x96,0xbc,0xd0,0x7b,0x2a,0xaf,0x44, 0xa1,0x5e,0x8,0x77,0xd3,0xf3,0x64,0x1b,0x5a,0x97,0x8b,0x23,0x27,0x81,0x6c,0x50, 0x52,0xc8,0x97,0x4c,0xdc,0x3d,0x1c,0x61,0x12,0x9b,0x3e,0x21,0x61,0x84,0xde,0x60, 0x84,0xfd,0xc3,0x23,0x8c,0xc6,0x11,0x8,0xa1,0xc8,0xb4,0x29,0xa8,0x94,0x52,0x2, 0x52,0x22,0x8e,0xc6,0x50,0x59,0x8a,0x4b,0x17,0x36,0xf0,0xfa,0xeb,0xaf,0xa3,0x1d, 0x4,0x48,0xd3,0x18,0x94,0x98,0xc6,0x53,0xa6,0x50,0x4f,0x60,0x65,0x65,0x5,0x9d, 0xce,0x4a,0x51,0xe1,0x6e,0x8f,0xc1,0x32,0x85,0x59,0x22,0x84,0xb3,0x7a,0x8a,0xdb, 0xcf,0xda,0xd8,0x56,0xaf,0xd7,0xc3,0xc1,0xc1,0x1,0x1c,0xc7,0xc1,0x4b,0x2f,0xbd, 0x54,0x0,0x46,0xb9,0x69,0x57,0xd,0x16,0xf5,0xa8,0xc1,0x62,0xc1,0xd8,0xdd,0xdd, 0xbd,0xd3,0xeb,0xf5,0x6e,0x76,0x3a,0x1d,0x6c,0x6c,0x6c,0x4c,0xf5,0xc4,0x2e,0xbb, 0x70,0xaa,0x2b,0xd2,0x65,0x2,0xdc,0x0,0x8a,0xfc,0x77,0x1b,0xab,0xb0,0x20,0xc2, 0x85,0x8b,0xc3,0x93,0x5e,0xc1,0x26,0x98,0xe3,0x98,0x80,0x67,0xee,0x9a,0x70,0x6c, 0x4b,0x51,0x41,0xb1,0xd2,0xe9,0xe2,0xc6,0x4b,0xd7,0x71,0xe9,0xc2,0x3a,0x1c,0x6a, 0x9a,0xff,0xc8,0x4c,0x17,0x20,0x61,0x53,0x75,0xcd,0x4a,0xd4,0x3c,0x66,0x5c,0x17, 0x9d,0xe6,0xac,0x7a,0xea,0x74,0xe1,0x5c,0xd,0x16,0x73,0x7e,0xb9,0x5c,0x7c,0x30, 0x2b,0x6a,0x3a,0xb4,0x2a,0xf5,0x3,0xb7,0x2c,0x53,0x4a,0x20,0xff,0x2d,0xa3,0x34, 0xc1,0x78,0x1c,0x61,0x34,0xe,0x71,0x78,0x3c,0xc0,0x93,0xfd,0xa7,0xc8,0xf2,0x78, 0x87,0x84,0x29,0xee,0x4b,0x92,0x4,0x32,0x31,0x55,0xdf,0x42,0x8,0xbc,0xf1,0xca, 0x4b,0xd8,0xba,0x74,0x11,0x9c,0x0,0x71,0x34,0x86,0xe3,0xf0,0xa2,0x88,0xb0,0xd5, 0xea,0x60,0x6d,0x6d,0xa5,0x48,0x44,0x28,0x6b,0x49,0x95,0xd3,0xb6,0xe7,0x75,0xe2, 0xb3,0x55,0xe3,0x9e,0xe7,0x99,0xc2,0x42,0x6d,0x92,0x1f,0x8e,0x8f,0x8f,0x71,0x70, 0x70,0x0,0xc6,0x18,0x5e,0x79,0xe5,0x95,0x40,0x6b,0x1d,0xd6,0x8c,0xa2,0x1e,0x35, 0x58,0x2c,0xc1,0x2a,0x1e,0x3d,0x7a,0xa4,0x6c,0x0,0x70,0x7d,0x7d,0x1d,0x8c,0xb1, 0x22,0xce,0x50,0xae,0x97,0xa8,0x52,0xfb,0x65,0x8b,0xaa,0x6c,0xa6,0x53,0x59,0xea, 0xc1,0x7e,0xfe,0x37,0xbf,0xdd,0xc6,0x87,0xf7,0xb6,0x71,0x3c,0x18,0xa1,0xdd,0x59, 0x1,0x13,0x2e,0x18,0xd1,0xf0,0x5,0x3,0x67,0x46,0xf2,0xa3,0xd5,0x6a,0xe1,0xe5, 0xeb,0xd7,0x70,0x69,0xeb,0x2,0x7c,0xc7,0x1,0x87,0xe9,0x70,0xa7,0x54,0x6,0x45, 0xdd,0xe2,0xf8,0x4,0x65,0x50,0x2a,0x9b,0x4,0xc0,0xa9,0x91,0x37,0x2f,0x82,0xd5, 0xda,0x1e,0xbb,0x35,0x38,0x46,0x9b,0x69,0x1e,0x50,0x9c,0x27,0x36,0xf3,0x22,0x32, 0xc,0x80,0x16,0x85,0x7c,0x65,0xd7,0xd4,0x54,0x10,0xba,0x5c,0x8,0x48,0x4d,0xb7, 0xc1,0x28,0xcd,0x30,0xe,0x23,0xf4,0x87,0x63,0xec,0x1f,0x1e,0xe1,0xf8,0xa4,0x8f, 0x44,0x9a,0x2c,0xa8,0x2c,0xcb,0xa0,0xa4,0x9,0x80,0xcb,0x24,0x81,0x4c,0x42,0x5c, 0xba,0xb0,0x81,0x57,0x6e,0xbc,0x8c,0xb5,0x95,0x16,0xd2,0x38,0xca,0xef,0x39,0xa3, 0xfd,0xe4,0xba,0x2e,0x56,0x57,0x57,0xd1,0x6c,0x36,0x17,0xf6,0x5a,0xaf,0x4a,0xc5, 0x94,0xab,0xbb,0xad,0x86,0x58,0xf9,0xb9,0xd1,0x68,0x84,0xbd,0xbd,0x3d,0x5b,0xbc, 0x57,0x0,0xc6,0x3c,0xf7,0x6c,0x3d,0xea,0xf1,0xc2,0x83,0xc5,0x2,0xa9,0x66,0xaa, 0xb5,0x56,0x7b,0x7b,0x7b,0xfa,0xf0,0xf0,0x10,0x6b,0x6b,0x6b,0xd8,0xdc,0xdc,0x9c, 0x2a,0xa8,0x2b,0xff,0x5f,0x5,0x89,0x2,0xc,0x64,0xa,0xca,0x6c,0xae,0xfc,0x64, 0x95,0x27,0x4,0xc7,0x78,0x1c,0xe2,0x60,0x7f,0x1f,0x49,0x12,0x41,0xc9,0x14,0x9c, 0x53,0x68,0x50,0x38,0x6e,0x3,0x47,0xfd,0x21,0xde,0xbd,0x75,0x17,0xdb,0x3b,0xbb, 0x68,0x34,0x8c,0x40,0x1f,0x67,0xc,0x8c,0x51,0xf8,0x8e,0xb,0xca,0x0,0xd7,0x75, 0xf1,0xca,0x95,0x4b,0xd8,0xda,0xda,0x42,0xb7,0xdb,0x9d,0x8a,0x95,0x4c,0x64,0x41, 0x72,0xdd,0x20,0x9d,0x2b,0xc5,0xb2,0x49,0xf,0x9,0xf3,0x3e,0x3d,0xd3,0x45,0xb1, 0x88,0x5,0xfd,0x7e,0xbb,0xa2,0xe8,0x9c,0x6b,0x33,0x91,0x2f,0x29,0x83,0x85,0x9a, 0xd1,0x93,0xdb,0xea,0x3e,0xc5,0x59,0x8a,0x70,0x9c,0xe0,0xe0,0xe8,0x10,0x47,0x47, 0x27,0x18,0x84,0x63,0xa4,0x52,0x21,0x95,0x26,0x48,0x9e,0xca,0xc,0x59,0x64,0x7a, 0xa0,0x3b,0x5c,0xe0,0xf5,0x57,0x5f,0xc1,0xf5,0x2b,0x97,0xa0,0xd3,0x4,0x5a,0x25, 0x10,0x94,0x20,0xcc,0xcc,0xef,0xbc,0xb6,0x3a,0xd1,0x99,0x2a,0x18,0x22,0x70,0x4a, 0xee,0xa4,0x1c,0xfc,0x2e,0xd7,0x3,0x55,0x8b,0xf7,0xac,0xec,0xfb,0xee,0xee,0x2e, 0xb4,0xd6,0x78,0xe3,0x8d,0x37,0x6c,0xd0,0xbb,0xc8,0x92,0x9a,0xa5,0x58,0x5b,0xc7, 0x35,0xea,0xf1,0xc2,0x33,0x8b,0x92,0xbe,0x53,0x1,0x1e,0x4f,0x9e,0x3c,0xd1,0xc7, 0xc7,0xc7,0xb9,0xce,0xcf,0xda,0x54,0xab,0xd3,0xaa,0x61,0x9e,0x25,0x66,0x57,0xf6, 0x21,0xdb,0xe7,0xac,0x5b,0xe0,0xf8,0xf8,0x18,0xbd,0x5e,0xaf,0xf0,0x17,0x17,0xec, 0x84,0x71,0x3c,0xd8,0xf9,0x2,0xef,0xde,0xba,0x83,0xd1,0x28,0x84,0xdf,0xee,0x9a, 0xfe,0x10,0x9c,0xc3,0x75,0x1d,0x70,0xa,0x38,0x5c,0x60,0x73,0x73,0x1d,0xaf,0xbc, 0xf2,0xa,0x56,0x9a,0xc1,0x54,0x55,0xb8,0xdd,0x17,0x0,0xb0,0x7c,0xdd,0x3b,0xa9, 0xb5,0xe0,0x45,0x87,0xba,0xc9,0x79,0xeb,0x39,0xab,0xe6,0x1a,0x28,0xce,0x3,0x16, 0xb3,0xde,0x6b,0x54,0x6f,0xe5,0x29,0xe6,0x51,0x5e,0xe5,0xa7,0xd2,0xf4,0xd3,0xee, 0xf,0x7,0xd8,0x3f,0x3c,0xc6,0xd1,0x49,0xf,0x51,0x12,0x23,0x53,0x93,0xce,0x7c, 0x71,0x1c,0x23,0x1a,0xf,0xa1,0xb2,0x14,0xd7,0x2f,0x6f,0xe1,0xf5,0xd7,0x5e,0x85, 0xc7,0x89,0x29,0x9c,0x24,0x46,0xee,0x24,0x4d,0x53,0xac,0x76,0x57,0xb0,0xba,0xba, 0xa,0x5,0x5d,0x14,0x72,0x42,0xcf,0x97,0xd,0x99,0x95,0x2d,0x55,0x95,0xa6,0x89, 0xa2,0x8,0x7,0x7,0x7,0xd0,0x5a,0xe3,0xb5,0xd7,0x5e,0xf3,0xb5,0xd6,0x11,0x21, 0x84,0x6b,0xad,0x33,0x3b,0x57,0xe6,0x34,0x51,0x9a,0x2b,0xdb,0x5f,0x8f,0x7a,0x7c, 0xeb,0xdd,0x50,0xe5,0x9b,0x7d,0x77,0x77,0xf7,0xce,0xc9,0xc9,0xc9,0xcd,0x6e,0xb7, 0x8b,0x8d,0x8d,0xd,0x8,0x21,0x10,0xc7,0xf1,0x29,0xba,0x6e,0x8d,0xfd,0x32,0x9d, 0xcd,0x84,0x10,0x48,0xd3,0x14,0x87,0x87,0x87,0x18,0xe,0x7a,0x26,0x97,0x9e,0x39, 0x48,0xb2,0x14,0xae,0x17,0x60,0x14,0x27,0xb8,0xf5,0xde,0x6f,0x70,0xef,0xd3,0x6d, 0x30,0x2a,0xe0,0x37,0x1b,0x10,0xc2,0x8,0xf7,0xb9,0x9c,0x43,0x38,0xc,0xcd,0xc0, 0xc7,0x8d,0x97,0xaf,0x63,0xeb,0xc2,0x45,0x13,0xdb,0x28,0x29,0x1a,0xd9,0xdc,0x79, 0x92,0x37,0x2c,0xb2,0x4d,0x88,0x26,0x8d,0x85,0x48,0x21,0x14,0xae,0xf5,0x69,0xb0, 0x58,0x4,0x1a,0x35,0x58,0x2c,0xf,0x16,0xe5,0x4b,0x25,0x73,0x6d,0xac,0x49,0x17, 0x3f,0x55,0x71,0x11,0xd1,0xa2,0x68,0x6f,0x38,0x1a,0xe3,0xf0,0xb8,0x87,0x93,0x7e, 0x2f,0x97,0x11,0x49,0x20,0x35,0xcd,0x65,0xed,0x25,0x64,0x92,0xa2,0x77,0x72,0x84, 0x4e,0xab,0x89,0x3f,0xf8,0xee,0x9b,0x58,0x5b,0x5f,0x85,0x4a,0x42,0xb3,0x48,0xc8, 0x83,0xdf,0xbe,0xef,0x63,0x6d,0x7d,0x13,0x8e,0xe3,0x18,0x37,0x99,0x96,0xb,0xdd, 0xa2,0xb3,0xd2,0x6d,0xcb,0xec,0x98,0x52,0x8a,0xc1,0x60,0x80,0xa7,0x4f,0x9f,0x82, 0x73,0x8e,0x1b,0x37,0x6e,0x58,0x86,0xb1,0x90,0x59,0xd4,0xa3,0x1e,0x2f,0x24,0x58, 0x54,0xa5,0x9a,0xb7,0xb7,0xb7,0xff,0xab,0x38,0x8e,0x7f,0xd2,0x6e,0xb7,0xb1,0xb9, 0xb9,0x39,0xe5,0xd7,0xad,0xba,0x9d,0xec,0x44,0x9c,0x25,0x13,0x4d,0x8,0x31,0xae, 0x27,0x99,0x82,0x52,0xa3,0x3a,0x7a,0x78,0x78,0x88,0x28,0x8a,0x26,0x35,0x15,0x60, 0x60,0x8e,0x8b,0x27,0x87,0xc7,0xf8,0xe5,0xdd,0xf7,0xb1,0xbb,0xf7,0x14,0x9e,0xb8, 0xe6,0x60,0x52,0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0x1f,0x20,0xf0,0x7d,0xc3, 0x4,0x60,0xdc,0x4d,0x9e,0x2b,0x70,0x71,0x73,0x3,0x57,0xae,0x6e,0xa1,0xdb,0x6a, 0x41,0x2b,0x5,0xc6,0x8c,0xbb,0xc1,0x32,0x7,0x86,0xc9,0x64,0x17,0xb9,0xcc,0xc7, 0x54,0x15,0xf6,0x8c,0xd5,0xe4,0x59,0xfd,0x22,0x16,0x69,0x34,0x9d,0x27,0xeb,0xeb, 0xc5,0x0,0xa,0x2c,0xcd,0x2c,0x66,0x7d,0x5e,0x96,0x3a,0xf1,0x95,0xe3,0xb,0x26, 0xa5,0x95,0x41,0x11,0x20,0x49,0x4d,0xf,0x8a,0xfd,0xa3,0x43,0xf4,0x4e,0x6,0x18, 0x26,0xc6,0xd8,0x47,0x51,0x84,0x38,0x8e,0xc1,0x9,0xc1,0x78,0x34,0x80,0x52,0xa, 0xaf,0xbc,0xfc,0x12,0x5e,0xbb,0x76,0x71,0x52,0xab,0x93,0x67,0x66,0x71,0xe6,0x60, 0xe3,0xc2,0x26,0x7c,0xdf,0x9f,0x62,0x39,0xf6,0xfe,0x9c,0xa5,0x1b,0x55,0x95,0x9a, 0x29,0x3,0x88,0x15,0xae,0x7c,0xf4,0xe8,0x11,0x5c,0xd7,0xc5,0x8d,0x1b,0x37,0x5c, 0x0,0xe9,0x2c,0x60,0xa8,0x1,0xa3,0x1e,0xbf,0x17,0x60,0x1,0x98,0xce,0x76,0xc3, 0xe1,0xf0,0x47,0xad,0x56,0xb,0x17,0x2e,0x5c,0x28,0x8c,0xba,0x9c,0x4a,0x3d,0xd5, 0xc5,0x4,0xad,0x56,0xcb,0x56,0xab,0x64,0x35,0x28,0x68,0xee,0x26,0x38,0xd8,0x7f, 0x82,0x38,0x8e,0x41,0x29,0x45,0x9c,0x64,0xa6,0x22,0x17,0x14,0x9f,0x3f,0xf8,0x2, 0x7f,0xf3,0xeb,0xdb,0xe8,0x8f,0x43,0x74,0x57,0x56,0xc1,0xb9,0x3,0x21,0x18,0x28, 0x21,0x8,0x1c,0x8e,0x4e,0xa7,0x83,0x2b,0x5b,0x97,0xb0,0x75,0x71,0x13,0xcc,0xc8, 0xbe,0x82,0x6a,0x55,0x80,0x44,0x19,0xa8,0x84,0x10,0x79,0x3,0x22,0x6e,0xfc,0xe8, 0xa,0xa7,0x82,0x9e,0xd3,0xe7,0x7e,0x7e,0xb0,0x58,0xb4,0xbf,0x1a,0x2c,0xe6,0xb3, 0xd,0x1b,0xd3,0xb0,0xa0,0x51,0x6d,0x6c,0x64,0x3a,0xf5,0x99,0xfb,0x6d,0x30,0x1c, 0xa2,0xdf,0x1f,0xe0,0xe9,0xf1,0x10,0x27,0x27,0x27,0x50,0xc4,0x24,0x1c,0x44,0x51, 0x64,0x24,0x43,0xc6,0x21,0xa4,0x4a,0x71,0xed,0xc2,0x3a,0x5e,0x7f,0xe5,0x6,0x5c, 0xd7,0x85,0xcc,0x12,0x10,0x42,0x10,0xc7,0x71,0x11,0xf8,0x6e,0x34,0x1a,0x53,0xaa, 0x0,0x55,0x85,0xda,0x2a,0x78,0x94,0xc1,0xa5,0xc,0x26,0x9c,0x73,0xc,0x6,0x3, 0x3c,0x7a,0xf4,0x8,0x41,0x10,0xe0,0xe5,0x97,0x5f,0x66,0xe5,0x58,0x5f,0xfe,0xb9, 0x29,0xc5,0xda,0xf2,0x73,0xf5,0xa8,0xc7,0xb7,0x1e,0x2c,0xca,0x40,0xf1,0xee,0xbb, 0xef,0xfe,0x49,0xa7,0xd3,0xf9,0x99,0xef,0xfb,0xd8,0xdc,0xdc,0x84,0x10,0x62,0x2a, 0xc3,0xa5,0x4c,0xd5,0xad,0x3e,0xd3,0x3c,0xa1,0xba,0x42,0x86,0x5c,0x13,0xc4,0xd1, 0x18,0xfb,0xfb,0xfb,0x88,0xa3,0xb1,0x79,0x9e,0x3b,0xe0,0xc2,0x45,0x94,0x66,0x78, 0xff,0x37,0x1f,0xe1,0x83,0x8f,0x7e,0xb,0xc2,0x5,0xfc,0x66,0x13,0x20,0x4,0x9e, 0xeb,0x82,0x1,0x68,0x34,0x1a,0x58,0x5f,0x69,0xe3,0xe5,0x97,0x5f,0x46,0xab,0xe1, 0x9b,0xb4,0x5a,0x66,0xb4,0xa1,0x48,0xae,0x56,0x6a,0x7,0xe7,0xbc,0xe8,0x52,0x57, 0xb0,0x1b,0x95,0x81,0x52,0x3e,0x43,0xa,0xa2,0xec,0x8a,0x3a,0x9f,0x3c,0xc9,0xef, 0x23,0x58,0x54,0x33,0xa0,0x96,0x71,0x3f,0x4d,0xdc,0x7c,0xb3,0xf6,0x37,0x69,0xbe, 0x94,0xe5,0xe9,0xd7,0xd3,0xf7,0x92,0xa9,0xbf,0x48,0xd3,0x14,0xc7,0xfd,0x11,0x8e, 0x8e,0x8e,0x70,0x78,0x7c,0x82,0x4c,0xea,0xa2,0x59,0x93,0xd6,0x1a,0xa3,0xd1,0x8, 0x32,0x1c,0xa1,0xd5,0x6e,0xe0,0x7b,0x6f,0xbe,0x89,0x95,0x6e,0xdb,0xe8,0x4e,0xe5, 0x69,0xd0,0x71,0x1c,0x63,0x75,0x75,0x15,0xed,0x76,0x1b,0x9e,0xe7,0x4d,0xa5,0x7a, 0x2f,0x98,0xf,0x33,0xd3,0xbe,0xb5,0x36,0x4d,0xb1,0x8e,0x8e,0x8e,0xb0,0xbf,0xbf, 0x6f,0x2b,0xbd,0x85,0xd6,0x3a,0xcb,0x3f,0x57,0xc7,0x28,0xea,0xf1,0xe2,0x33,0x8b, 0xfc,0x66,0x6f,0x7f,0xf4,0xd1,0x47,0x3d,0xc7,0x71,0xb0,0xb5,0xb5,0x35,0x5,0x14, 0x85,0x99,0xa8,0xe4,0xb0,0xcf,0xf2,0x3,0x97,0xfb,0xb,0x48,0x29,0x31,0x18,0x8e, 0xd1,0xef,0x1d,0x23,0x89,0x43,0x78,0x9e,0x29,0xae,0xa3,0x4c,0x20,0x4c,0x52,0xfc, 0xf2,0x57,0xbf,0xc6,0xf6,0xce,0x1e,0x1c,0xc7,0x81,0x1b,0x98,0x8e,0x75,0xe,0xe3, 0x60,0x9c,0xa0,0xdd,0x6c,0xe1,0xea,0xe5,0x2d,0xc3,0x26,0x8,0x85,0x86,0x2a,0x98, 0x4d,0xb9,0x55,0xaa,0xc8,0x8b,0xeb,0x1c,0xc7,0x81,0x10,0x22,0x67,0x13,0x65,0x3f, 0x35,0x9d,0xca,0xd2,0x29,0x6b,0x3a,0x95,0xeb,0x28,0xaa,0x6,0xa3,0x30,0x12,0x64, 0x91,0xe1,0x34,0x12,0xdf,0x8b,0x87,0x3a,0xd3,0x38,0x7d,0x7b,0x80,0xe2,0x6c,0x66, 0x51,0x3d,0x1d,0xa5,0x64,0xc5,0xed,0x37,0xfd,0x86,0x34,0x33,0x2b,0xfe,0x82,0x89, 0xe6,0xb5,0xf,0xf6,0x7b,0xe2,0x2c,0xc5,0x78,0x14,0xe2,0xa8,0x3f,0xc0,0xd3,0x83, 0x43,0x8c,0xa3,0x10,0x4a,0x2,0xa3,0x28,0xcc,0x1,0x21,0x41,0x34,0x1a,0x41,0x70, 0xe0,0xcd,0xd7,0x5e,0xc5,0x95,0xcb,0x17,0x91,0x25,0x11,0x64,0x9a,0xc1,0x71,0x38, 0xb2,0x4c,0xa1,0xd9,0x6c,0x16,0xb2,0xe7,0xe5,0x3a,0x90,0x72,0xc2,0xc6,0x2c,0xd7, 0x94,0x3d,0x7f,0xce,0x39,0xd2,0xd4,0xf4,0x49,0x12,0x42,0xe0,0xf0,0xf0,0x10,0x4f, 0x9f,0x3e,0xc5,0xda,0xda,0xda,0xc9,0xa5,0x4b,0x97,0xd6,0xe7,0xf5,0xc3,0xa8,0x81, 0xa3,0x1e,0x2f,0x1c,0xb3,0x0,0x20,0x3e,0xf9,0xe4,0x93,0x18,0x0,0x2e,0x5f,0xbe, 0x6c,0xba,0xc5,0x55,0x7a,0x1c,0x94,0x33,0xa0,0xaa,0x9d,0xeb,0xca,0x13,0xdd,0x82, 0x4a,0x96,0x65,0x18,0xe,0x87,0x38,0x3c,0x3c,0x34,0x93,0x8c,0x9b,0x40,0xa5,0x1f, 0x34,0x71,0xd8,0x1b,0xe2,0xe7,0x7f,0xfd,0x37,0xd8,0x7b,0x7a,0x0,0xaf,0xb3,0x6e, 0xc0,0xc2,0x31,0xf1,0x9,0xcf,0x15,0xd8,0x5c,0x5f,0xc3,0xd6,0xe5,0x8b,0x58,0xeb, 0xae,0x40,0x97,0xfa,0x1d,0xd8,0x62,0x3d,0x5b,0xdd,0x4d,0x29,0x45,0xd3,0xf7,0xa6, 0xdd,0x63,0xa4,0xca,0x74,0xc8,0x42,0x55,0xd2,0x79,0xc6,0xbc,0x78,0xff,0x57,0xc, 0x16,0xbf,0xeb,0xa0,0x71,0x16,0x58,0x4c,0xb3,0xb4,0x59,0x37,0xbc,0x9a,0x79,0xd, 0x8b,0xf3,0x25,0x14,0x4a,0xe9,0x22,0xf3,0xc9,0x4a,0x72,0xd8,0xbe,0xe2,0xa6,0x37, 0x7,0xc3,0x20,0xc,0x8b,0xea,0xef,0xfe,0x70,0x0,0xad,0x35,0xc2,0x30,0x44,0xa4, 0x28,0xb2,0x38,0x42,0x16,0x45,0x80,0x4c,0xf0,0xda,0x8d,0xeb,0xb8,0x71,0xfd,0x1a, 0x94,0x4c,0x21,0x65,0xa,0x42,0x4c,0xbc,0xad,0xdd,0x6e,0x63,0x6d,0x6d,0xad,0x70, 0x5b,0x96,0xef,0x87,0xf2,0x22,0x68,0x96,0x8e,0x54,0xb9,0xd8,0xcf,0x3e,0xbf,0xbf, 0xbf,0x8f,0xe3,0xe3,0x63,0x50,0x4a,0xff,0xd1,0x9b,0x6f,0xbe,0xf9,0x17,0x75,0x3f, 0x8c,0x7a,0xbc,0x70,0x60,0x51,0x56,0x91,0xb5,0x8f,0xef,0xdd,0xbb,0x27,0xb3,0x2c, 0xc3,0xd5,0xab,0x57,0xd1,0x68,0x34,0x8a,0x5e,0xd9,0x65,0xa6,0x50,0x9e,0x4c,0x55, 0xa5,0x52,0x6b,0xc0,0xa5,0x9a,0xf8,0x80,0x8f,0x8f,0xe,0x70,0x72,0x72,0x32,0x31, 0xde,0x84,0xc1,0xf5,0x2,0x7c,0xb1,0xf7,0x4,0xff,0xdf,0xdf,0xbe,0x8b,0x93,0x61, 0x88,0x76,0xa7,0x6b,0x24,0x3b,0xf2,0x4a,0x6c,0xdf,0x11,0xb8,0x74,0x61,0x3,0xd7, 0xae,0x5c,0x86,0xe7,0xbb,0x48,0xd3,0x14,0x94,0xf1,0xbc,0x3e,0xc2,0x0,0x14,0xd5, 0x86,0x61,0xf8,0x9e,0x3,0xcf,0xf3,0xe6,0x4a,0x84,0xcf,0xf5,0xb1,0x53,0x3d,0xdd, 0xef,0x20,0x97,0xa7,0x38,0xbb,0xd2,0xfc,0xb4,0x51,0x2c,0xf7,0x59,0x98,0xe5,0x86, 0x9b,0x65,0x6c,0x97,0x69,0x9b,0x3a,0x6d,0x9a,0xd9,0x19,0xc7,0xa3,0xbe,0x24,0xd0, 0x90,0x85,0xc6,0xfe,0xab,0x1e,0xd6,0x6,0x1b,0x46,0xa1,0x73,0x59,0x73,0x39,0xed, 0xf6,0x4,0x20,0x55,0x8a,0x38,0x95,0x18,0x8d,0x23,0xec,0x1f,0x1d,0xe1,0xe8,0x78, 0x80,0x24,0x96,0x48,0xa5,0xe9,0x87,0x11,0xa5,0xa6,0xfa,0x3b,0x4b,0x22,0x5c,0xdd, 0xba,0x80,0xef,0xbe,0xfe,0x2a,0xb4,0x4c,0x1,0x99,0x41,0x3,0x50,0xa,0xf0,0x83, 0x26,0x2e,0x5e,0xbc,0x68,0xb2,0xf8,0xb2,0xa4,0xc8,0xe6,0x9b,0xc5,0x2c,0xaa,0x75, 0x18,0xe5,0xe3,0x11,0x42,0x20,0xcb,0x32,0xec,0xed,0xed,0xa1,0xdf,0xef,0xe3,0xc3, 0xf,0x3f,0x2c,0xfa,0x61,0x94,0xee,0xc1,0x99,0x22,0x84,0xf5,0xa8,0xc7,0xef,0x34, 0x58,0xcc,0xa,0xb8,0xd9,0xe7,0xee,0xdf,0xbf,0xaf,0xa2,0x28,0xc2,0xc6,0xc6,0x6, 0x3a,0x9d,0xce,0xd4,0xea,0xaa,0xda,0xff,0x7a,0x56,0xf6,0x8f,0xfd,0xdb,0x76,0xad, 0x23,0x84,0xe0,0xf0,0xf0,0x10,0xfd,0x7e,0x3f,0x5f,0x58,0x6b,0xb8,0xbe,0x7,0xa5, 0x9,0x3e,0xbd,0xff,0x0,0xbf,0xf8,0xe5,0x2d,0x64,0x0,0x1a,0xad,0xe,0xa4,0xd2, 0x8,0x1a,0x3e,0xa0,0x34,0xd6,0xbb,0x1d,0x5c,0xd9,0xba,0x8c,0xf5,0xd5,0x2e,0x38, 0xa7,0x0,0x74,0x1e,0x7f,0x60,0x79,0xa3,0x1b,0x73,0xdd,0x3c,0xc1,0x11,0x4,0x1, 0x1c,0xc1,0x16,0x1e,0xcf,0x64,0xf2,0xb3,0x92,0x3f,0x3c,0x9f,0xbb,0x94,0x94,0xaa, 0xb6,0x67,0x37,0x6a,0x3a,0x4b,0x5c,0xcf,0xe,0x59,0x71,0xd5,0x9d,0x67,0x3f,0xe6, 0xd,0xea,0xdc,0x60,0x31,0xbd,0xcf,0xf9,0x6e,0xb4,0xe5,0x24,0xe2,0x97,0x3,0xc9, 0xc9,0xfb,0x9f,0xf7,0xdd,0xa9,0x2a,0x4a,0xb0,0x28,0x52,0x6c,0x95,0x32,0x5d,0xfa, 0xec,0x39,0x4a,0x68,0x64,0x52,0x63,0x30,0x1e,0xe3,0xf0,0xa0,0x87,0xa3,0x93,0x1e, 0x92,0x24,0x42,0x26,0xb5,0x1,0x8a,0xcc,0xf4,0xe,0x4f,0xe2,0x11,0xb6,0x36,0x37, 0xf0,0x9d,0x37,0x5e,0x87,0xcb,0x50,0xa8,0xd,0xd8,0xfe,0x28,0x57,0xaf,0x5e,0x3d, 0x17,0xb3,0x2a,0x5f,0x4f,0x3b,0x3f,0x6c,0xd7,0xc6,0x27,0x4f,0x9e,0x20,0xc,0x43, 0xbc,0xf9,0xe6,0x9b,0x1d,0xad,0x75,0xdf,0x16,0xed,0xd5,0xae,0xa8,0x7a,0xbc,0x10, 0xcc,0xc2,0x16,0xdf,0x3d,0x7a,0xf4,0xe8,0xd6,0xf1,0xf1,0xf1,0xcd,0xf5,0xf5,0x75, 0x6c,0x6c,0x6c,0x14,0xfe,0x62,0xab,0xd6,0x69,0x19,0x45,0x35,0xf5,0xb0,0x3c,0x89, 0xaa,0x80,0x62,0x81,0x42,0xf0,0x7c,0x1f,0xdc,0x83,0x24,0x14,0xdb,0x9f,0x7d,0x8e, 0xbf,0xfd,0xd5,0x6d,0x30,0xee,0xc0,0xd,0x7c,0x50,0x4a,0xe1,0xfb,0x3e,0x38,0x5, 0x56,0x56,0x56,0x70,0xf9,0xd2,0x45,0x74,0x5a,0x6d,0x8,0xc6,0xc0,0xd8,0x24,0x26, 0xc1,0xf2,0x56,0xa1,0x36,0x80,0x1d,0xb8,0x79,0x6c,0x2,0x6a,0xa,0xd8,0xe6,0x89, 0xc6,0x2d,0xd2,0xae,0x32,0x7d,0xd6,0xd8,0x5c,0xa0,0xb1,0x60,0x50,0xe,0xc0,0x56, 0xfd,0xd9,0x55,0xe1,0xc1,0x2f,0x5b,0xd8,0x77,0x5e,0x96,0x40,0x89,0x9e,0x9,0x50, 0x8b,0x0,0x63,0xfa,0x78,0xbf,0x69,0xf7,0xd7,0x69,0xdd,0x26,0xa5,0x50,0xf4,0xb4, 0x90,0xca,0x66,0x49,0x99,0xdf,0x21,0x53,0x12,0x4,0xc,0x61,0x18,0xe1,0xf8,0xb8, 0x87,0x83,0xa3,0x13,0x8c,0xa3,0x10,0x69,0x66,0x2a,0xae,0xa5,0x94,0x8,0xc7,0x43, 0x24,0x49,0x84,0xd5,0xee,0xa,0xbe,0xfb,0xc6,0xab,0x8,0x5c,0x7,0x4a,0xa6,0x45, 0x87,0x3d,0xd,0xe0,0xda,0xb5,0x97,0x8a,0xa2,0xbd,0xea,0x7d,0x7d,0x3a,0xb6,0x45, 0xa6,0x5c,0x51,0xf6,0x31,0x63,0xc,0x71,0x1c,0xe3,0xe1,0xc3,0x87,0x20,0x84,0xe0, 0xf5,0xd7,0x5f,0x77,0xb5,0xd6,0x49,0xa9,0xca,0xbb,0x66,0x17,0xf5,0xf8,0x76,0x82, 0x45,0x35,0xf3,0xa9,0xd9,0x6c,0xfe,0x6c,0x65,0x65,0x5,0x1b,0x1b,0x1b,0x45,0xe7, 0xb0,0x45,0xc1,0xbe,0x99,0xc5,0x4b,0x94,0x23,0x89,0x43,0xf8,0xbe,0x8f,0x83,0x83, 0x3,0x1c,0x1f,0x1d,0x18,0x9a,0x2e,0x4d,0x8c,0x41,0x12,0x8e,0x8f,0x7f,0x7b,0xf, 0xef,0xde,0xba,0xb,0xe1,0x37,0xe0,0x7a,0x1e,0x5c,0xc7,0x81,0x27,0x4,0x28,0x3, 0xb6,0x36,0x37,0xb1,0xb6,0xb6,0x86,0x6e,0xb7,0x6b,0x26,0xab,0x34,0xab,0x3f,0x13, 0xac,0x36,0xb9,0xaf,0x42,0x8,0xf8,0xbe,0x8f,0x86,0xe7,0x82,0x31,0x3a,0xd5,0xf, 0x7b,0x96,0x7c,0x78,0x15,0x20,0xca,0x86,0xfe,0xd4,0x7b,0x4b,0x6e,0xaa,0xaa,0x54, 0x85,0xd6,0x1a,0x12,0x8b,0xe5,0x40,0x4,0x65,0xb,0x25,0xcc,0xcf,0xcd,0x34,0xce, 0x9,0x1e,0x4,0x6a,0xe6,0x77,0xcd,0x63,0x5c,0xa7,0x7d,0xf2,0xf4,0x9b,0x9d,0x10, 0x44,0xcf,0xf8,0xbd,0x26,0x19,0x53,0xb1,0x54,0x79,0x8a,0xb6,0x79,0x8f,0x79,0x6c, 0xd8,0x62,0x14,0xc6,0xe8,0xf,0x47,0x78,0xb2,0x7f,0x88,0x51,0x38,0x46,0x9c,0x64, 0x5,0x23,0x19,0xc,0x6,0x88,0xa2,0x8,0xab,0xdd,0x0,0xdf,0x7d,0xfd,0x75,0x34, 0x7c,0x1,0xaa,0x15,0xb2,0x2c,0x1,0x63,0x2,0x8c,0x3b,0xb8,0x70,0x71,0xb,0x9c, 0x91,0xb9,0xbf,0xef,0xac,0x6,0x4a,0xe5,0xd8,0x1d,0x60,0x2,0xde,0x83,0xc1,0x0, 0x5f,0x7c,0xf1,0x5,0x9a,0xcd,0x26,0xae,0x5f,0xbf,0xce,0x6a,0x65,0xda,0x7a,0x7c, 0x9b,0xdd,0x50,0x56,0x96,0xc0,0xca,0x14,0xf8,0x1f,0x7e,0xf8,0xe1,0xd8,0x75,0x5d, 0x5c,0xbd,0x7a,0x75,0x8a,0x21,0x94,0x57,0xcc,0x69,0x9a,0xce,0xed,0x15,0x60,0x9f, 0xa3,0x4c,0x40,0xc9,0x14,0x47,0x47,0x47,0x18,0xf4,0x4f,0xa0,0x41,0x8b,0xe7,0x9, 0x21,0xb8,0xf3,0xd1,0xc7,0xb8,0x7d,0xe7,0x37,0x8,0x1a,0x2d,0x30,0xd7,0x5,0xe7, 0xe,0x38,0x23,0x68,0xf9,0x2e,0xd6,0x57,0x57,0x70,0x65,0xeb,0x22,0x84,0xe7,0x16, 0xfb,0x77,0xb9,0x98,0xb0,0xa,0xc6,0xe0,0xb,0x6,0xdf,0xf7,0xe1,0x79,0x5e,0xe1, 0x1a,0x3,0x0,0x46,0x17,0xbb,0x88,0xe6,0xc5,0xc,0x8,0x31,0x22,0x20,0xf6,0x79, 0x6b,0x5c,0xa,0x2d,0xa3,0xaa,0x5b,0x89,0x92,0x85,0xc6,0x9b,0x81,0xcc,0x64,0x2e, 0xcb,0x1a,0xfb,0x79,0xf7,0xc3,0x97,0xed,0xc4,0x77,0x16,0x48,0x15,0x15,0xca,0x67, 0xf4,0x10,0xff,0x3a,0xc0,0x62,0x11,0x14,0xa6,0x1a,0x48,0xd3,0xa4,0xf8,0x5d,0xca, 0x86,0x5a,0x4a,0x8d,0x2c,0x95,0xe8,0xd,0x86,0x38,0x38,0x3a,0x41,0x6f,0xd0,0x47, 0x9c,0x98,0x98,0x47,0x9a,0x66,0x48,0x64,0x86,0x70,0xd0,0x43,0x33,0xf0,0xf1,0xd6, 0xf7,0xbf,0xb,0x5f,0x18,0x26,0xa1,0x94,0x2,0xa1,0x1c,0x8e,0xeb,0x63,0x73,0x63, 0xad,0xc8,0xfc,0xb3,0x8c,0xa1,0x5c,0x87,0x51,0x65,0x1d,0xe5,0xe7,0xca,0xd,0x94, 0x4e,0x4e,0x4e,0xf0,0xf8,0xf1,0x63,0xac,0xae,0xae,0x62,0x6b,0x6b,0x8b,0xd4,0x60, 0x51,0x8f,0x2f,0x3b,0xf8,0x37,0xc4,0x26,0xec,0x4a,0x27,0x23,0x84,0xb8,0x9f,0x7c, 0xf2,0xc9,0x58,0x4a,0x59,0xf4,0xa4,0x98,0x95,0xed,0x61,0x59,0x46,0x35,0x98,0x5d, 0xe,0x68,0x5b,0x41,0xb8,0x70,0x3c,0x42,0xaf,0xd7,0x3,0xa3,0x4,0x8c,0x71,0x50, 0x26,0x90,0x2a,0x8d,0xf7,0x7f,0xf3,0x1,0x7e,0xfd,0xfe,0x7,0x68,0x35,0x3b,0x20, 0x9c,0x21,0xf0,0x7d,0x10,0x2,0xb4,0x82,0x6,0xd6,0xba,0x1d,0x5c,0xbc,0xb8,0x9, 0xc6,0x88,0x31,0xb8,0xda,0x20,0x80,0xfd,0x4e,0xce,0x28,0x1c,0x47,0xa0,0xd9,0x8, 0xa6,0xb2,0x9d,0x26,0xab,0x69,0xba,0x94,0xe1,0xb5,0x5e,0x96,0xa2,0xcf,0x42,0x3e, 0xc1,0xb3,0x2c,0xf7,0x89,0x9f,0x62,0xe,0xb3,0xd9,0x4a,0x15,0x7c,0xa,0xb7,0x1c, 0xd1,0x5f,0xca,0x90,0x2f,0x62,0x24,0xe7,0x51,0xb5,0x9d,0x77,0xbc,0xf3,0xf6,0xad, 0x2b,0x85,0x10,0xd5,0xc2,0xca,0xc9,0x7e,0x66,0x7d,0xfe,0xf9,0xdd,0x9f,0xb3,0xea, 0x19,0x26,0xc7,0xaf,0x21,0x28,0x1,0x13,0xe,0xb2,0x2c,0x33,0x8b,0x17,0x3d,0xf9, 0x7e,0x4a,0x9,0x34,0x63,0xe8,0xb6,0x5b,0xb9,0x3a,0xb0,0x46,0x7f,0x38,0x42,0x9c, 0x18,0x99,0x7b,0x15,0x85,0x68,0x34,0xdb,0x18,0xc,0x7a,0xb8,0xfd,0xfe,0xfb,0xf8, 0xc3,0x9b,0x37,0xe1,0x39,0x2,0x54,0x9a,0x85,0xd1,0x68,0xd8,0xc7,0x21,0x5,0xba, 0xdd,0xee,0x54,0xb5,0x77,0xf9,0x7a,0x94,0xbb,0x37,0x96,0x59,0x45,0x19,0xb4,0x94, 0x52,0xe8,0x76,0xbb,0x8,0xc3,0x10,0x47,0x47,0x47,0x88,0xa2,0xe8,0xcf,0xb5,0xd6, 0xff,0xb0,0x36,0x77,0xf5,0xf8,0x56,0x31,0x8b,0xaa,0x94,0xc7,0xc3,0x87,0xf,0xd5, 0xf1,0xf1,0x31,0xae,0x5e,0xbd,0x8a,0x76,0xbb,0x8d,0x34,0x4d,0x8b,0xd8,0x44,0x59, 0xe7,0x29,0xcb,0xb2,0x53,0x29,0xb4,0xd5,0x95,0x96,0x94,0xb2,0x90,0x72,0xf6,0x3d, 0x7,0x2a,0x4f,0x53,0x95,0x84,0xe3,0xce,0xfb,0x1f,0xe2,0xee,0xfb,0xbf,0x41,0xd0, 0xee,0x80,0x73,0x8e,0x86,0xe7,0x83,0x71,0x82,0x86,0x1f,0x60,0x7d,0x75,0x5,0x17, 0x2f,0x5e,0x4,0x5,0x26,0xf1,0x9,0xce,0x4c,0x3,0x23,0xad,0x41,0x9,0x41,0x2b, 0x68,0xa0,0xd1,0x68,0x80,0x51,0x35,0x33,0x65,0x77,0xd1,0x6a,0x7e,0x6a,0xd2,0x53, 0x36,0x95,0x9a,0x99,0x95,0xa,0xc2,0xca,0xfb,0x24,0x15,0xa3,0x39,0xcb,0x90,0xcd, 0xec,0xc1,0xad,0xe4,0x29,0x77,0xd8,0x79,0x8a,0xf6,0xce,0xb3,0x9a,0x3f,0x4f,0x43, 0xa9,0xf3,0x2,0xd7,0xbc,0xf3,0xa4,0x5f,0x79,0xaf,0xf1,0xc5,0xd9,0x5c,0xe5,0x3a, 0x88,0xac,0x94,0x2d,0x25,0xa1,0x27,0xda,0x52,0xf9,0x6f,0x1b,0x46,0x31,0x9e,0x1e, 0x1c,0xe1,0xb8,0x77,0x82,0x54,0x2a,0xc8,0x4c,0x23,0x4c,0x62,0xa4,0x51,0x8c,0xf1, 0x68,0x80,0x66,0xe0,0xe3,0x7b,0xdf,0x7d,0x3,0x9d,0x46,0x60,0xfa,0x7f,0x13,0x8d, 0x2c,0x53,0x68,0xb5,0x5a,0x58,0x59,0x59,0x29,0xee,0xf7,0x6a,0x2a,0x78,0x19,0x2c, 0xca,0xd7,0xcd,0xb2,0x8a,0x72,0xa,0xf9,0xee,0xee,0x2e,0xe2,0x38,0xc6,0x77,0xbe, 0xf3,0x9d,0xa6,0xd6,0x7a,0x54,0x9b,0xbc,0x7a,0x7c,0x6b,0x98,0x45,0x59,0x49,0x76, 0x77,0x77,0xf7,0xce,0xf1,0xf1,0x31,0x36,0x36,0x36,0xd0,0x6c,0x36,0xa7,0x52,0x61, 0x6d,0x36,0x93,0x9d,0x1c,0xae,0xeb,0x9e,0x72,0x43,0x95,0x8d,0xa8,0x6d,0x89,0x79, 0x70,0x70,0x60,0xa4,0x16,0x64,0x6,0x42,0x39,0x8,0xe5,0xf8,0xe0,0x83,0x8f,0x70, 0xf7,0xfd,0xdf,0xa0,0xd1,0x6c,0x83,0x9,0x7,0xbe,0xe7,0x82,0x10,0xd,0xdf,0x75, 0x71,0xf1,0xc2,0x1a,0x36,0x56,0xd7,0x4c,0xb0,0x31,0x97,0xeb,0xa0,0x94,0x2,0x94, 0x42,0xca,0xc,0x94,0x32,0x34,0x9b,0x4d,0xb4,0x1a,0x1,0xf4,0xc,0xd7,0x40,0x79, 0xd2,0x56,0xa5,0xd1,0x67,0x19,0xc2,0x71,0x14,0x95,0xc0,0x81,0x14,0x74,0x83,0x10, 0xd3,0xa7,0x5b,0x97,0xda,0x82,0x56,0x1,0x82,0x10,0x2,0xa2,0xca,0xe0,0xae,0x51, 0x5d,0x72,0x2b,0x7d,0xda,0x90,0x2c,0xe3,0x66,0x5a,0xf6,0xf5,0x79,0x35,0x22,0x8b, 0xdc,0x6d,0x8b,0x34,0xab,0x66,0x31,0x90,0x59,0x81,0xfb,0xf2,0x19,0x97,0xc1,0xf0, 0x79,0x83,0xc6,0xac,0x73,0x99,0x5e,0x98,0x98,0x6,0x4b,0x84,0x30,0x8,0x5e,0x56, 0x30,0x56,0xf9,0xef,0x6f,0x8a,0x32,0x8d,0xca,0x2c,0xb0,0xbe,0xda,0x5,0x21,0x4, 0xc7,0xbd,0x13,0x64,0x54,0x43,0x11,0xaf,0x70,0x69,0xf6,0x7b,0xc7,0xf8,0xf8,0x93, 0x4f,0xf0,0xbd,0xef,0x7c,0x7,0x81,0xc3,0x4c,0x6f,0x77,0xce,0x31,0x1c,0xe,0x41, 0x29,0xc5,0xca,0xca,0x4a,0xb1,0x58,0x9a,0x9a,0xb4,0xa5,0xb6,0xac,0xe5,0xdf,0xc4, 0x2,0x85,0x5,0x16,0xce,0x39,0xd6,0xd7,0xd7,0xf1,0xe8,0xd1,0x23,0x7c,0xf2,0xc9, 0x27,0x43,0x42,0x48,0x51,0xe1,0x5d,0x8f,0x7a,0xfc,0x4e,0x30,0x8b,0x2a,0x7b,0xa8, 0xf6,0xa4,0xc8,0x1f,0xfb,0x1f,0x7c,0xf0,0xc1,0xd8,0x75,0x5d,0xbc,0xf4,0xd2,0x4b, 0xa7,0x5a,0xa1,0xce,0xf7,0x1a,0xab,0x49,0x1f,0xa,0x32,0x99,0xac,0x51,0x64,0x44, 0x1,0x65,0x1a,0x16,0x1a,0x50,0xe0,0x2e,0x7e,0x7b,0xef,0x13,0xfc,0xcd,0x2f,0x6f, 0xc1,0x6f,0xb5,0xe1,0x79,0x3e,0xb8,0x10,0xe0,0x8c,0xa2,0xdd,0xc,0x70,0x71,0x7d, 0x1d,0xab,0xdd,0x76,0x91,0x41,0xc4,0x39,0x7,0xe5,0xe,0x4,0x23,0x20,0x1a,0xf0, 0x1c,0x81,0x76,0xbb,0xd,0xd7,0x15,0x53,0x6e,0x98,0x29,0x77,0xd8,0x29,0xb7,0x85, 0x2c,0xa,0xf4,0x94,0x6,0xb2,0x4c,0x22,0xce,0x52,0x48,0x39,0xed,0x2a,0x20,0x4b, 0xf8,0xe6,0xe7,0xbb,0x43,0x70,0x36,0x83,0x99,0x61,0x50,0x75,0xae,0x61,0xf5,0xbc, 0x19,0x46,0xd5,0xd0,0x2e,0xfa,0xec,0x97,0x65,0x2e,0xb3,0x12,0x1c,0xa6,0x98,0xd8, 0x59,0x45,0x8d,0xa7,0xb2,0xad,0xd4,0xb9,0x8f,0x6f,0x3a,0x39,0xc1,0x18,0xe6,0x34, 0xcd,0x65,0x3f,0x0,0x48,0x4c,0x52,0xbd,0xa5,0x52,0x18,0x8f,0x8d,0x3b,0xe8,0xf0, 0xe4,0x18,0x89,0x4,0x64,0xa6,0x31,0x8a,0x42,0xe3,0x32,0x1d,0xd,0xd0,0x6d,0x36, 0xf1,0xbd,0x37,0x5f,0x87,0xef,0x8,0x40,0x25,0x90,0x79,0x33,0x25,0x21,0x4,0x2e, 0x5c,0xdc,0x32,0xae,0xd9,0x2c,0x43,0x15,0xff,0xcb,0xf7,0xe2,0xac,0xec,0x28,0xb, 0x2c,0x47,0x47,0x47,0xd8,0xdb,0xdb,0xc3,0xea,0xea,0x2a,0x2e,0x5d,0xba,0x44,0x4a, 0xf3,0x73,0x6e,0x2f,0x8c,0x7a,0xd4,0xe3,0x6b,0x63,0x16,0x15,0x60,0x60,0x5a,0x6b, 0x59,0xfe,0xfb,0xde,0xbd,0x7b,0x63,0xa5,0x14,0x2e,0x5e,0xbc,0x78,0x3e,0x23,0x42, 0x58,0x89,0x81,0x98,0xc9,0x12,0x45,0x11,0x4e,0x8e,0xf,0x4d,0x9b,0x4b,0xc1,0xc, 0xa3,0x20,0xc,0xf7,0xb6,0x3f,0xc3,0xdf,0xfe,0xea,0xd7,0x68,0xb5,0x57,0xe0,0xba, 0x2e,0xc0,0x18,0x1c,0xc1,0xd1,0xf4,0x3,0x5c,0xd8,0x58,0x47,0xbb,0xd5,0x2c,0x76, 0xeb,0x38,0xe,0x14,0x1,0x18,0xd1,0x50,0x4a,0x23,0xf0,0x7c,0xb4,0x5b,0x4d,0x38, 0x8e,0x33,0x91,0xe0,0x20,0xa,0x4,0xf4,0x54,0x50,0x1d,0x84,0x14,0xa,0xb2,0x94, 0x9b,0xc2,0xaa,0x24,0x96,0xc6,0xaf,0xad,0x64,0xd1,0x23,0x7a,0x9e,0x51,0x9f,0xe7, 0x26,0x5a,0xd4,0xf3,0xe0,0x2c,0xa3,0xfc,0xac,0xc,0x62,0x5e,0x20,0x7e,0x19,0x63, 0xbe,0x8c,0xea,0xed,0xa2,0x55,0xfb,0xb3,0x9c,0x43,0x75,0x7f,0x8c,0x9e,0x6,0xd4, 0x72,0xa2,0x0,0xa5,0x6c,0x66,0x8c,0xe3,0x3c,0x3a,0x5c,0xa7,0x19,0xd,0x29,0x16, 0x1c,0x99,0x94,0x50,0xa9,0x84,0xa6,0x66,0xf1,0xa1,0xb3,0xc,0xbe,0xef,0x61,0x65, 0x65,0xc5,0x54,0x5a,0x1f,0xf7,0x41,0xa9,0x42,0x8b,0x36,0x10,0x45,0x11,0x74,0x26, 0xd1,0x1f,0xe,0x70,0xef,0x93,0x4f,0xf1,0xc6,0xeb,0xaf,0xc1,0xe3,0xc4,0x28,0xde, 0x2a,0xa3,0x45,0x35,0x1a,0xf6,0xd1,0x6c,0x36,0xe1,0x38,0xbc,0x28,0x4e,0xad,0x9e, 0x57,0x35,0xe0,0x6d,0x17,0x2b,0x52,0xca,0xa2,0x5a,0x3c,0x4d,0x53,0x1c,0x1c,0x1c, 0x60,0x6b,0x6b,0xab,0xa3,0xb5,0xee,0xe5,0x0,0x21,0x2b,0xf3,0xb4,0x4e,0xad,0xad, 0xc7,0xdc,0xf1,0x95,0xe4,0x29,0x6a,0x33,0xd4,0xac,0xe5,0x1b,0x21,0x84,0x3c,0x7e, 0xfc,0x38,0x8b,0xa2,0x8,0x6b,0x6b,0x6b,0x8,0x82,0xe0,0x54,0x8a,0xec,0x42,0x8f, 0x72,0xee,0x97,0xb5,0xef,0xb5,0xae,0xa7,0x70,0x3c,0x44,0xe0,0xbb,0xc6,0x4d,0x41, 0x39,0x1e,0x3e,0x7e,0x82,0xbf,0xf9,0xe5,0x2d,0x78,0x7e,0xb,0xcc,0x31,0x6e,0x1, 0xcf,0x61,0x68,0x35,0x7c,0x5c,0xba,0xb8,0x89,0x56,0xcb,0xf4,0xcd,0x66,0x8e,0x0, 0xe1,0xc,0xa9,0xd4,0xe0,0xcc,0x1,0xa0,0xd1,0x68,0x4,0xe8,0xae,0x74,0xe0,0x79, 0x4e,0x71,0xe8,0x94,0x15,0x27,0x7,0x4a,0x48,0xb1,0x15,0x93,0x36,0xaf,0x9e,0x8e, 0xa3,0x14,0x71,0x94,0x62,0x1c,0x47,0x88,0xd2,0xac,0x60,0x14,0x4a,0x6b,0x28,0xbd, 0xd8,0xe0,0xcd,0xfa,0x7b,0x19,0x63,0x39,0xab,0xe6,0xa2,0x6c,0x4c,0xa6,0x82,0x9f, 0x84,0x2e,0xdc,0x16,0xed,0x6f,0x99,0xef,0x9f,0xb7,0x9d,0x17,0x8,0xce,0x7b,0xee, 0x45,0xd1,0x9c,0xd4,0xf9,0x35,0xb7,0x2c,0xc2,0xba,0xf8,0x58,0x9e,0xe2,0x3a,0xdb, 0xad,0x76,0x9e,0xeb,0x3e,0xd,0x44,0xe6,0xef,0xa2,0x99,0x15,0x63,0x5,0x3,0x30, 0x92,0xf7,0x66,0x75,0x1f,0x4,0x3e,0x3a,0x9d,0xe,0x56,0xbb,0x1d,0x30,0x42,0x41, 0x99,0x59,0xa0,0x34,0x9b,0x4d,0xf8,0x7e,0x3,0xfb,0xc7,0x27,0xf8,0xf8,0x93,0xcf, 0x0,0xd0,0x29,0xb0,0xdb,0xdb,0xdb,0xc3,0x68,0x34,0x32,0xa0,0x80,0xd9,0x12,0x31, 0xb3,0x92,0xf,0xca,0xc1,0x70,0xc6,0x18,0xba,0xdd,0x2e,0x5c,0xd7,0xc5,0xc7,0x1f, 0x7f,0x7c,0x42,0x8,0x71,0x4a,0x4c,0x42,0xd7,0x40,0x51,0x8f,0x6f,0x3c,0x66,0x61, 0xe9,0x6d,0x39,0x4e,0xf1,0xce,0x3b,0xef,0xdc,0x3c,0x38,0x38,0xc0,0xda,0xda,0x1a, 0x56,0x57,0x57,0xb,0x41,0xb4,0x59,0x81,0xeb,0x79,0xcc,0xc2,0xf6,0x3a,0x4e,0x93, 0x8,0x47,0x87,0xfb,0x48,0xe2,0x10,0xae,0xeb,0x22,0x49,0x12,0x38,0x7e,0x80,0x27, 0xfb,0xc7,0xf8,0x7f,0x7e,0xfe,0xd7,0x10,0x7e,0x0,0x2f,0x68,0x80,0x0,0x70,0x3d, 0x81,0xc0,0x73,0xb1,0xb9,0xbe,0x6,0xcf,0x11,0xc5,0x84,0xb5,0x13,0x9d,0x51,0xe3, 0x6a,0x6a,0x6,0x1e,0x3a,0xed,0x26,0x3c,0x61,0x7a,0x2a,0x13,0x58,0x1f,0x70,0x2e, 0xe2,0x46,0x58,0xd1,0x9a,0xd3,0xc4,0x6,0x8,0x94,0xd2,0x48,0x64,0x96,0xbb,0x22, 0xe4,0xf4,0x2a,0x3b,0x17,0xf,0xc4,0x19,0xc6,0x68,0x91,0xcf,0xff,0x59,0x2,0xc4, 0xcf,0xea,0xaf,0x3f,0x2f,0x3,0x59,0x66,0x15,0x3e,0x6b,0x3f,0xf3,0x32,0xab,0x9e, 0x35,0xb5,0xb7,0x58,0x4c,0x94,0x5c,0x83,0x6a,0xaa,0xa5,0x2d,0x1,0x8,0xa0,0x95, 0x9e,0x5b,0x7,0xf3,0x2c,0x60,0x5,0x4c,0xbb,0x13,0x19,0x63,0x45,0x7c,0x2d,0xc9, 0x63,0x5e,0x76,0xb5,0xdf,0x68,0x4,0x45,0xac,0xab,0x3f,0x1c,0x14,0xc7,0xe1,0xf9, 0xd,0x80,0x30,0x1c,0x9c,0x9c,0xe0,0xb7,0xdb,0x9f,0xe1,0x3b,0xaf,0xbd,0xe,0xd, 0x9,0xa5,0x4c,0xc,0xe3,0xf8,0xf0,0x8,0x50,0x1a,0x9d,0x4e,0x7,0x99,0x92,0x4b, 0xdd,0x1b,0xe5,0xe2,0xd4,0x2c,0x33,0xd9,0x58,0x17,0x2f,0x5e,0xc4,0xce,0xce,0xe, 0x76,0x76,0x76,0xe2,0x9c,0xed,0xab,0x92,0xbb,0xb8,0x76,0x43,0xd5,0xe3,0xeb,0x7, 0xb,0xb,0xc,0x16,0x24,0x72,0xb2,0xa1,0x8,0x21,0xfc,0xe3,0x8f,0x3f,0xbe,0x4d, 0x29,0x2d,0x8a,0xde,0xac,0x5f,0xd5,0x6a,0xfb,0x2f,0x13,0x60,0x45,0x3e,0x1,0xfa, 0xfd,0x7e,0xd1,0x8f,0x42,0x69,0x2,0xc7,0xf5,0x71,0x74,0x32,0xc4,0xbf,0xfc,0xab, 0xbf,0x2,0x13,0xe,0x84,0xeb,0x81,0x52,0xa,0xcf,0x75,0xe0,0xa,0x81,0xf5,0xd5, 0x35,0x34,0x2,0xcf,0x74,0xa8,0x23,0x4,0x8c,0x72,0xb3,0x1,0x70,0x38,0x85,0xe3, 0x38,0x58,0x59,0xe9,0x14,0x13,0xcc,0x2,0x45,0x79,0xf2,0x49,0x5b,0xa5,0x9d,0x1b, 0xa3,0x34,0x9d,0x80,0x84,0x9c,0xaa,0xe0,0xa6,0x79,0xcf,0xe5,0xe2,0x1f,0x63,0x20, 0xcf,0x9a,0x93,0x67,0x18,0xd5,0x65,0x8c,0xe9,0xa2,0xea,0xf1,0x45,0xb1,0x12,0x53, 0xf4,0x77,0xbe,0x3a,0x87,0xea,0x7b,0xe8,0x8c,0xc5,0xe9,0x3c,0xa0,0x58,0x16,0x9c, 0x9e,0xb5,0x5e,0xa4,0xc,0xc0,0x4a,0x4d,0xfa,0xa0,0x4f,0xa7,0x8,0x68,0x80,0xe4, 0xc,0x3,0x64,0xe9,0x3c,0xdc,0x79,0x6e,0x45,0x4a,0x8,0x68,0xe9,0x3e,0x56,0xca, 0xc8,0x82,0x50,0x42,0xc0,0x38,0x87,0xef,0xb9,0xd8,0x58,0x33,0x2e,0xa9,0xe1,0x38, 0x4,0x10,0x43,0x6b,0x6d,0x14,0x68,0x9,0xf0,0xe8,0xc9,0x3e,0x5c,0xaf,0x81,0x97, 0x5f,0xba,0xe,0x99,0x86,0x10,0x4c,0x20,0x4d,0x22,0xc,0x6,0x3,0x78,0x9e,0x7, 0xc7,0x73,0xa7,0xb4,0xaa,0xe6,0x5d,0x9b,0x72,0x2,0x86,0xbd,0xde,0x9e,0xe7,0x61, 0x6d,0x6d,0xd,0xfb,0xfb,0xfb,0xd8,0xd9,0xd9,0xf9,0x19,0x80,0xbf,0x67,0x3f,0x92, 0xcf,0xcf,0x9a,0x5d,0xd4,0xe3,0xeb,0x3,0x8b,0x4a,0x1d,0x85,0xb6,0x6e,0x29,0x0, 0x78,0xf8,0xf0,0x61,0x7a,0x7c,0x7c,0x8c,0x6b,0xd7,0xae,0x41,0x8,0x71,0x4a,0xca, 0xe3,0xac,0x36,0xa8,0x76,0x52,0xa,0x21,0xb0,0xbf,0xbf,0x8f,0x70,0x3c,0x2c,0x4, 0x3,0x85,0x70,0x31,0x8e,0x13,0xfc,0xbf,0x7f,0xfd,0xb,0x24,0xa9,0x86,0x13,0xb8, 0xf0,0x3d,0xf,0x8c,0x51,0xf8,0x8e,0x8b,0x6e,0xb7,0x89,0xa0,0xe1,0x41,0x6b,0xd, 0xc7,0x71,0x40,0x89,0xd1,0x8d,0x12,0xcc,0x4c,0x26,0x47,0x70,0xac,0xad,0xae,0xc0, 0x61,0x46,0xb3,0x7,0x79,0xc0,0xdb,0x6,0xde,0x2d,0x90,0x91,0xdc,0x5d,0x96,0xca, 0xc,0x69,0x2a,0x8d,0x6,0x50,0xf1,0x1e,0x3e,0x33,0xee,0xb0,0x68,0x62,0x2f,0x6b, 0x94,0xce,0x13,0x4b,0x58,0x4,0x18,0xe7,0x61,0x19,0xcb,0x18,0xee,0x45,0xb1,0x98, 0x79,0xdf,0x7b,0xde,0x9a,0x8d,0xf3,0x9c,0xcf,0xbc,0xde,0xeb,0x76,0xd8,0xd8,0x82, 0x59,0x75,0x5b,0x50,0xd7,0x5,0x70,0x90,0x67,0x0,0xa,0x73,0x68,0xa4,0xd0,0xfb, 0x52,0xa,0xa6,0xb7,0xba,0x10,0x48,0x92,0x4,0x44,0xca,0x5c,0x9a,0x5e,0xe7,0xa2, 0x93,0x40,0xb7,0xdd,0xcc,0x35,0xa7,0x4c,0xe5,0x3f,0x22,0xc0,0x85,0xb,0x8a,0x36, 0x3e,0xdb,0x79,0x8,0x21,0x4,0x5e,0xba,0xb2,0x85,0x70,0x3c,0x4,0x17,0x2e,0xe2, 0x34,0xc1,0xe1,0xf1,0x11,0x36,0x36,0x36,0x4e,0xa5,0xcc,0xce,0x73,0xd5,0x56,0xdd, 0x51,0x84,0x10,0xac,0xae,0xae,0x22,0x8a,0x22,0xc,0x6,0x83,0x1f,0x11,0x42,0x2, 0xad,0xf5,0xb8,0x34,0x5f,0x6b,0xa0,0xa8,0xc7,0xd7,0xef,0x86,0x2a,0x35,0x8c,0x57, 0x0,0xf0,0xd3,0x9f,0xfe,0xf4,0xad,0x37,0xde,0x78,0x3,0x6b,0x6b,0x6b,0x68,0x34, 0x1a,0x53,0x13,0x59,0x29,0x55,0x18,0xe6,0x65,0xb2,0x74,0x86,0xc3,0x21,0xc2,0xf1, 0xb0,0xd0,0xea,0x71,0x5c,0x1f,0x71,0x26,0xf1,0x8b,0x77,0x7f,0x89,0x83,0xe3,0x3e, 0xba,0x5d,0xa3,0x1e,0x2b,0x28,0x85,0xeb,0xa,0x74,0x3b,0x2d,0xb4,0xdb,0x2d,0xd3, 0x3,0x9b,0xbb,0xd0,0x8a,0x80,0xbb,0x3c,0x7,0x0,0x89,0x66,0x23,0xc0,0x6a,0xa7, 0xd,0x87,0x92,0xa2,0xdb,0x1e,0x67,0x2c,0x37,0x0,0xf9,0xea,0xc,0xc,0x52,0x66, 0xd0,0x8c,0x20,0x4e,0x12,0x44,0x79,0xa,0x2c,0xa5,0xac,0x0,0x9,0xe3,0x23,0x2f, 0xf7,0xd6,0x30,0x86,0x84,0x58,0xd7,0xb0,0x9e,0xcd,0x2b,0xca,0xe7,0xac,0xce,0x5c, 0x71,0x9f,0x2d,0xb4,0x67,0xb3,0xb4,0x66,0x1,0xd7,0xb2,0x75,0xa,0xcf,0xd2,0xa2, 0x95,0x10,0x2,0x45,0x16,0x87,0xc1,0xd8,0x19,0x72,0x25,0xcb,0x64,0x79,0x2d,0xfa, 0xfc,0x59,0xee,0xae,0x72,0x7c,0x8c,0xd2,0x89,0x2b,0x72,0x52,0x60,0xb9,0x3c,0x9b, 0x9a,0x7,0xa6,0x84,0x98,0x6c,0x26,0x86,0x49,0x4d,0x44,0xa6,0x15,0xa4,0x9c,0xf4, 0x65,0x6f,0x35,0x1b,0x45,0x0,0x9a,0x10,0x9,0xe2,0x13,0x90,0xc8,0xb8,0x34,0x3d, 0x9f,0xe2,0xde,0xa7,0x9f,0xa1,0x11,0xf8,0x58,0xeb,0x4c,0x52,0xca,0xc7,0xe3,0x31, 0x7a,0xbd,0x1e,0xda,0xed,0x76,0xd1,0x6d,0x6f,0xe6,0x6f,0x50,0xaa,0xcd,0x28,0x77, 0x0,0xb4,0x20,0xb9,0xb1,0xb1,0x81,0x7,0xf,0x1e,0xe0,0xfe,0xfd,0xfb,0xa3,0x3c, 0x7e,0x91,0xc2,0xc4,0x2f,0x6b,0x59,0xf3,0x7a,0xcc,0x1d,0xf4,0x2b,0x2,0x9,0x5a, 0xde,0x3f,0x21,0x44,0xbc,0xf5,0xd6,0x5b,0xb7,0x85,0x10,0x58,0x5f,0x5f,0x3f,0xe5, 0x16,0x11,0x42,0x4c,0xd5,0x50,0x2c,0xf4,0x49,0xe7,0x52,0x1e,0x76,0x42,0x38,0x8e, 0x83,0x54,0x69,0x7c,0xf8,0xd1,0xc7,0xd8,0xf9,0x62,0x17,0x41,0xab,0x5,0x2a,0x8c, 0xc8,0x1f,0x17,0x14,0xdd,0x76,0xb,0x9d,0x4e,0xb,0x82,0x71,0x30,0x6a,0x2,0xdd, 0x8e,0xe3,0x14,0x2b,0xb0,0x66,0xb3,0x69,0xa,0xa0,0x84,0xc8,0xfb,0xd,0x98,0xc0, 0xb5,0x9d,0xc8,0x36,0xb3,0xc4,0xa,0xc9,0x1d,0xf7,0x7b,0x18,0x45,0x21,0x24,0x34, 0xec,0x69,0x9a,0x6c,0xa7,0xaa,0x30,0xa0,0x9a,0x32,0xda,0x67,0x5,0xa2,0xcb,0xcf, 0x9f,0x15,0xdb,0x78,0xd6,0xe0,0xb3,0x3d,0xe7,0xf3,0x4,0xa6,0xcf,0x13,0xb8,0x5e, 0xca,0x85,0xf8,0xe5,0xef,0xaf,0x73,0x1,0xcd,0xbc,0x95,0xb7,0xad,0xc0,0x4e,0xd3, 0xb4,0x58,0xa4,0x50,0x42,0x97,0x6,0x8a,0x79,0x9e,0x43,0x2d,0x6d,0x8c,0x4b,0x16, 0xf7,0x27,0xe7,0x1c,0x54,0x4f,0xd8,0xa9,0x5,0x8c,0x6e,0xb7,0x83,0xcd,0xf5,0x55, 0xb8,0x82,0x83,0x11,0xa,0xe1,0x18,0xd9,0x7c,0xc2,0x19,0x5c,0xdf,0xc3,0xbd,0x7b, 0xf7,0x10,0x46,0x49,0x11,0xf3,0xe0,0xdc,0x41,0xaf,0xd7,0x2b,0xe2,0x7c,0xf3,0xae, 0x8f,0xfd,0x9e,0x6a,0x91,0xa7,0x5,0xe,0xdf,0xf7,0xb1,0xba,0xba,0x8a,0x7e,0xbf, 0x8f,0x5f,0xfc,0xe2,0x17,0x7f,0x37,0xff,0x9c,0x24,0xbf,0x2f,0x3d,0x79,0xeb,0xf1, 0xbb,0xc3,0x2c,0x4a,0xbd,0x29,0x14,0x0,0xec,0xec,0xec,0x24,0xbd,0x5e,0xf,0x57, 0xaf,0x5e,0x9d,0xa2,0xc7,0xb3,0xa,0xdb,0xca,0xd4,0xb9,0x2a,0xb6,0x47,0x29,0xc5, 0xde,0xc1,0x31,0xd2,0x4c,0x21,0xd7,0x5b,0x3,0xa5,0x14,0xf,0x1f,0x3c,0xc2,0x9d, 0xf,0xee,0xc1,0x6d,0xae,0xc0,0x71,0x18,0x5c,0x2e,0xc0,0x19,0xc1,0x4a,0xbb,0x8d, 0x66,0xd0,0x0,0xd1,0xc8,0x6b,0x28,0x4,0x40,0x19,0x28,0xe5,0x20,0x5a,0xa2,0x19, 0xb8,0x58,0xeb,0xb4,0x20,0x28,0xc9,0x5,0xdd,0xd8,0xc4,0xc8,0xc3,0x64,0x55,0x29, 0x4a,0x90,0xa6,0x12,0x71,0x1c,0x23,0x4e,0x92,0x62,0xed,0x39,0x9d,0x89,0xa2,0x66, 0x84,0x1b,0x72,0x1,0xba,0xca,0xb,0xd5,0x2c,0x9a,0xd3,0xf3,0x53,0x2f,0x65,0x78, 0xe7,0xae,0x6c,0x2b,0xc7,0x37,0x93,0x7a,0x60,0x76,0xda,0x69,0x11,0x14,0x9e,0xb3, 0x9a,0x3f,0xcf,0x8a,0x7f,0x99,0x62,0xbb,0xb3,0x56,0xeb,0xb3,0xd,0x33,0x59,0xe0, 0x7e,0x9a,0xdd,0x69,0x70,0xd1,0xb1,0xcb,0xc,0xd0,0x54,0x43,0xe7,0x31,0x29,0xc6, 0x26,0xc2,0x81,0x65,0xe9,0x94,0x89,0xf1,0x2d,0x67,0x54,0xcd,0x48,0x73,0xa6,0x2c, 0x7f,0x3e,0xbf,0x77,0x1,0x38,0x42,0x80,0xc0,0x64,0xee,0xe9,0x12,0xab,0x1,0x80, 0x20,0xf0,0xb1,0x2a,0x25,0x8e,0x7b,0x3,0x84,0xa1,0x2,0xe3,0x12,0x10,0x1c,0x8a, 0xb7,0x70,0x72,0x72,0x82,0x8f,0x3e,0xdf,0xc1,0x77,0x5f,0x7f,0x15,0x5c,0x67,0xa0, 0x24,0x1,0x8,0xc7,0x93,0xa7,0x7,0xb8,0x78,0xf1,0x62,0x51,0xe1,0x5d,0xe8,0x92, 0x69,0x9,0xd,0x3a,0xb7,0xa0,0xb1,0xdc,0x3c,0x69,0x6d,0x6d,0xd,0xc3,0xe1,0x10, 0x8c,0xb1,0x9f,0x11,0x62,0xa,0x96,0x66,0xa5,0xd0,0x96,0x6b,0xa5,0xea,0x7a,0x8c, 0x9a,0x59,0x3c,0xf7,0x91,0x67,0x5a,0xd8,0x94,0xbc,0xd6,0x70,0x38,0x44,0xab,0xd5, 0x42,0x10,0x4,0x67,0x1a,0x84,0xb2,0x4,0x73,0xf9,0x35,0xc6,0x18,0xfa,0xfd,0x3e, 0xd2,0x28,0x4,0x81,0x71,0x3f,0xb9,0x5e,0x80,0xa7,0x47,0xc7,0xf8,0xe5,0xaf,0x6f, 0x9b,0x16,0xa8,0xe,0x2f,0x5a,0x9a,0x36,0x9b,0x4d,0x34,0x1a,0x8d,0xa2,0xf,0xb6, 0xad,0xcc,0x76,0xb8,0x61,0x10,0xcd,0x66,0x80,0x95,0x95,0x95,0x62,0xa5,0x69,0x63, 0x28,0x5a,0x6b,0x10,0x46,0x8d,0x20,0xa1,0x52,0x8,0xc3,0x18,0xa3,0xd1,0x8,0x71, 0x92,0x82,0x90,0x67,0xab,0x8a,0x7e,0xd6,0x95,0xf2,0x97,0xd9,0xdf,0x79,0x98,0xc1, 0xa9,0xff,0x17,0x9c,0xdf,0x79,0x98,0xcd,0x79,0xce,0x73,0x16,0xab,0x9a,0x75,0xbc, 0xd5,0x42,0xbc,0xd3,0xda,0x51,0x64,0xe1,0x66,0x99,0xe2,0x94,0xeb,0x2f,0x5f,0x71, 0x1b,0x96,0xa1,0xb,0x30,0xa8,0x9e,0xeb,0x44,0x3d,0x60,0xb2,0x9d,0xe5,0x52,0x2b, 0xea,0x3f,0x4a,0x8c,0xb6,0xda,0x17,0x3e,0x8,0x2,0xb4,0x1a,0xd,0x13,0x4b,0xa3, 0x14,0x9e,0x67,0xba,0x2d,0x36,0x9b,0x4d,0xf4,0x7a,0x3,0x3c,0x7c,0xf8,0x5,0x18, 0x77,0x90,0x49,0x6d,0x92,0x2e,0x88,0xc6,0xf1,0xd1,0x11,0xa0,0x35,0x18,0x9d,0x64, 0x12,0xaa,0x73,0x2c,0x30,0x28,0xa5,0x58,0x5d,0x5d,0x5,0x21,0x4,0x3b,0x3b,0x3b, 0xb2,0xb4,0xc0,0x2b,0x83,0x46,0x91,0xcd,0x58,0x9b,0xca,0x7a,0xd0,0xaf,0x0,0x28, 0xca,0xc5,0x3e,0xfa,0xde,0xbd,0x7b,0x7d,0x0,0x45,0xb,0xc9,0x65,0x8c,0xcc,0x94, 0x16,0x50,0x3e,0xb1,0xa3,0x28,0x42,0xaf,0xd7,0x83,0xca,0x22,0x33,0xc9,0xb8,0x83, 0x41,0x98,0xe0,0x6f,0x7f,0x75,0xb,0x49,0x26,0xd,0x28,0x70,0xc3,0x2a,0xfc,0xc0, 0x45,0xab,0xd5,0x82,0xeb,0xba,0x53,0x6,0x82,0x53,0x2,0xa2,0x25,0x1a,0xbe,0x8b, 0x56,0xb3,0x81,0x86,0x67,0x5c,0x4,0x5a,0xcb,0x49,0x20,0x9b,0x3b,0xd0,0x8a,0x20, 0x4a,0x33,0x8c,0xa2,0x18,0x61,0x14,0x21,0xcd,0xe4,0x99,0xab,0xec,0xf3,0xd6,0x46, 0xcc,0x7f,0x9e,0x2c,0xdc,0xec,0xaa,0x77,0xee,0x6,0x72,0xe6,0xa6,0x34,0xe6,0x6e, 0x85,0x81,0x3c,0x7,0x8,0xcd,0x73,0xb3,0xcd,0x2,0x16,0x9,0x52,0x6c,0xd5,0x1a, 0xf,0x9,0x72,0x26,0xb0,0x7c,0x59,0xbb,0x55,0xad,0x3b,0x29,0xef,0x57,0x29,0x55, 0x34,0x2d,0x32,0xd7,0x80,0x2,0x84,0x56,0xdc,0x8b,0x67,0x27,0x4c,0xcd,0x4a,0x19, 0xb6,0xee,0x56,0x87,0xf1,0x29,0x26,0xc7,0x18,0x83,0xe7,0x79,0x68,0xb5,0x1a,0x68, 0x35,0x1a,0x10,0x42,0x18,0x4d,0xb2,0x1c,0x34,0x18,0x63,0xd8,0xdd,0x7b,0x8a,0x27, 0x7,0x87,0xe0,0xc2,0x34,0xe6,0x22,0x1a,0x48,0x92,0x8,0x87,0x87,0xfb,0x95,0x40, 0xf6,0xd9,0x8e,0x82,0x32,0x63,0x6f,0xb7,0xdb,0x68,0xb5,0x5a,0x38,0x3c,0x3c,0x44, 0x1e,0xec,0xd6,0x67,0xcc,0xeb,0x1a,0x34,0x6a,0xb0,0x78,0xbe,0x78,0x61,0x1f,0xfc, 0xf4,0xa7,0x3f,0x7d,0x6b,0x3c,0x1e,0x63,0x65,0x65,0x5,0x41,0x10,0x14,0x6,0x79, 0x19,0x83,0x5a,0xd6,0xb9,0x91,0x52,0xe2,0xe4,0xe4,0x4,0x59,0x96,0xc1,0x13,0x1c, 0x50,0x1a,0x54,0x38,0xb8,0xf3,0xfe,0x87,0xd8,0x3f,0xea,0x21,0x68,0xb4,0xcc,0x24, 0x13,0xc,0x9e,0xef,0xa0,0xe1,0x7,0xf0,0x3c,0xa7,0x0,0xa,0xce,0xf3,0x56,0xa8, 0x94,0xc2,0x11,0x14,0xab,0x2b,0x5d,0x4,0xae,0x83,0x2c,0x93,0x20,0xb9,0x70,0x9c, 0xd2,0x46,0xc6,0x3c,0xd3,0x40,0x98,0xa4,0x18,0x8e,0x46,0x8,0xa3,0x18,0x4a,0xe5, 0x2e,0x3,0x46,0x21,0xf5,0x69,0xc5,0xdb,0x67,0x89,0x27,0x2c,0x8a,0x29,0x9c,0xb7, 0xb8,0xed,0x59,0x98,0xc5,0xac,0xf7,0xcf,0x8a,0x65,0xa8,0x5,0xab,0xfc,0x45,0xdf, 0x35,0x2f,0xe,0xb3,0xc,0x98,0x2c,0x3,0xc,0x5f,0x45,0xbc,0x65,0x56,0x3c,0xc3, 0x30,0x4d,0x3,0xc0,0x20,0x26,0x3d,0xbb,0xc,0x1a,0x4a,0x2d,0x77,0xec,0x65,0xa1, 0x49,0xc7,0xe1,0x70,0x18,0xcd,0xa5,0xd0,0x95,0x49,0xb5,0xa5,0x4,0x8e,0xe3,0xa0, 0xd5,0x6a,0x20,0x8,0x82,0x82,0x85,0x50,0x4a,0xd1,0xea,0xb4,0x41,0x18,0xc5,0x67, 0x3b,0x3b,0x18,0x46,0x71,0x21,0x5f,0x4e,0x89,0xc6,0x68,0xd8,0x37,0xd9,0x52,0x79, 0xb0,0xfb,0x3c,0x7d,0xa3,0xca,0xd9,0x51,0x9e,0xe7,0x61,0x7b,0x7b,0x7b,0x64,0x63, 0x8d,0x55,0x99,0x9e,0x53,0x3e,0xb7,0x7a,0xd4,0x60,0xf1,0x1c,0xe3,0x15,0x54,0x6b, 0xad,0xbe,0xfb,0xdd,0xef,0xde,0xb6,0x1,0x64,0xeb,0x56,0x3a,0x6f,0x10,0xd4,0x2a, 0xc9,0x8e,0xc7,0x63,0x30,0xc6,0x90,0x69,0xc0,0xf1,0x5c,0xec,0x3c,0xfc,0x2,0x9f, 0x6c,0x7f,0x6,0xbf,0xd1,0x6,0x18,0x85,0xe7,0x3b,0xf0,0x5d,0xf,0xcd,0xc0,0x87, 0xe7,0x39,0x45,0x10,0xd1,0x71,0x4c,0x27,0x3b,0x46,0x34,0x38,0xa7,0x58,0xcf,0x81, 0x82,0x31,0x23,0xdc,0x96,0x29,0x9,0xca,0x8c,0x9b,0x2a,0x91,0xa,0xbd,0xfe,0x0, 0xe3,0x30,0x82,0x94,0x39,0xb5,0x27,0x80,0x2,0x85,0x92,0x38,0x83,0x11,0x7c,0xf9, 0x15,0xf0,0xf3,0xc,0x3c,0x3f,0xfb,0x56,0x61,0x2a,0xca,0x6c,0xd0,0x4,0xd0,0x64, 0xe6,0x79,0x9f,0x7,0xf0,0xe6,0x1,0xeb,0xa4,0xb9,0x13,0x39,0xc5,0x36,0xca,0xdb, 0x32,0x95,0xe1,0x8b,0x9e,0x9f,0xa7,0xc6,0x6b,0x1f,0x97,0x15,0x8f,0x27,0x1,0x70, 0x85,0x6a,0x7b,0xf3,0x67,0x89,0xbd,0xd8,0x58,0x85,0xe3,0x38,0x25,0x86,0xa1,0x8c, 0x2a,0x40,0xde,0xa9,0xb1,0xd5,0x6a,0xc1,0xe1,0xc,0x9e,0x2b,0x20,0x1c,0x6,0x21, 0x4,0x1a,0x8d,0x16,0xe2,0x24,0xc3,0xfd,0x87,0xf,0xa1,0xa0,0xc1,0x4,0x47,0x96, 0x1a,0x71,0xcd,0xfd,0xfd,0xfd,0xc2,0xf0,0x2b,0xb9,0x3c,0x48,0xd8,0x78,0xa1,0xad, 0xbd,0xe8,0xf5,0x7a,0xf8,0xe8,0xa3,0x8f,0xfe,0xe1,0xc,0x90,0x98,0xe,0xa6,0xd5, 0xa3,0x6,0x8b,0xe7,0xd,0x18,0x7b,0x7b,0x7b,0x3a,0x49,0x12,0xac,0xad,0xad,0x4d, 0x49,0x8b,0x9f,0x95,0x70,0x61,0xdf,0x67,0xd9,0x45,0x9e,0x13,0x5e,0x7c,0x8e,0xb, 0x17,0xc7,0x83,0x31,0x7e,0x75,0xeb,0xe,0x18,0x37,0x6e,0x24,0xcf,0xf3,0xe0,0xba, 0x2e,0x5c,0x57,0xa0,0xe1,0x7,0x79,0xaf,0x6c,0xa,0x26,0x4c,0x7a,0x2c,0xd1,0x12, 0x42,0x8,0xb4,0x5b,0x4d,0xf8,0xbe,0x9f,0x33,0x89,0xc,0xa0,0x4,0x8c,0xa,0x64, 0x5a,0x15,0x6c,0x22,0x49,0x92,0xa9,0x9,0x65,0x66,0xc9,0xd9,0x22,0x87,0x8b,0xc, 0xd4,0xb7,0x85,0xbd,0xcf,0x32,0xde,0xa,0xcb,0x19,0xe7,0xf3,0xb8,0xa8,0x96,0x65, 0x21,0x5f,0xe5,0x98,0xd7,0x6f,0x43,0x82,0x40,0x53,0x6,0x30,0x3e,0x5,0x1a,0x46, 0x8a,0x7c,0xb6,0xaa,0xf0,0x22,0x3d,0xaf,0x6a,0x4c,0x45,0x29,0x5,0x2e,0x28,0x1c, 0x97,0x83,0xd3,0xc9,0xeb,0x94,0x18,0x17,0x51,0xe0,0x39,0x68,0xb5,0x5a,0xe0,0x94, 0xc0,0x15,0xe,0x38,0x35,0x4a,0xc8,0x8d,0x46,0xb,0x87,0x47,0x27,0xd8,0xd9,0x7d, 0x2,0xc6,0x1d,0x50,0xce,0xa,0xb7,0xd9,0xd1,0xd1,0x41,0xe1,0x6a,0x5d,0xf6,0xbc, 0xcb,0xd7,0xba,0xd3,0xe9,0x20,0x8,0x2,0x28,0xa5,0xfe,0x8c,0x10,0xc2,0xcb,0xec, 0xa2,0x74,0x5e,0x35,0x58,0xd4,0x60,0xf1,0x95,0x4c,0x44,0x77,0x6f,0x6f,0xf,0xeb, 0xeb,0xeb,0x68,0x34,0x1a,0x53,0x3a,0xfb,0xcb,0x1a,0x2d,0xc0,0xe4,0xc4,0x8f,0x46, 0xa3,0xa2,0xba,0x1b,0x0,0x12,0x45,0x70,0xf7,0xbd,0xf7,0xd1,0x1b,0x98,0xa0,0xb9, 0xe7,0xb9,0x70,0x18,0x87,0xc3,0x5,0x82,0x20,0x0,0x17,0x14,0x82,0x71,0x53,0x67, 0x21,0x44,0x31,0x41,0x5a,0xcd,0x6,0xda,0xed,0x36,0x40,0x14,0x40,0x72,0x39,0x69, 0x6d,0xfc,0xb7,0x51,0x94,0x60,0x38,0x1a,0x23,0xca,0xd3,0x77,0xcb,0xc,0x88,0x6a, 0xb3,0x11,0xaa,0xcd,0x67,0xcf,0xc1,0xc,0x96,0x59,0xf1,0x7e,0x1b,0x40,0xa3,0xc, 0x18,0x33,0xe3,0x1c,0x53,0xf1,0x10,0x5d,0x6c,0x1a,0x38,0xf5,0xf7,0x59,0xc0,0x70, 0x16,0xc8,0x28,0x82,0xa9,0x4d,0x42,0x4f,0x6d,0xb3,0x8c,0xf6,0x3c,0x46,0x33,0xab, 0x3a,0x7e,0xea,0xfb,0x29,0x2b,0xf4,0xb2,0xac,0x6b,0xca,0xa6,0x50,0xcf,0x63,0x11, 0xb3,0xb2,0xc3,0xa6,0x64,0xe6,0xf3,0x3a,0x1c,0xcb,0x7a,0xad,0x96,0x14,0xa5,0x14, 0x94,0x98,0xac,0xbd,0x76,0x33,0x30,0xb,0x20,0xc1,0xb,0x66,0xec,0x78,0x2e,0x1c, 0xcf,0xc7,0xe3,0xbd,0x7d,0x1c,0x1c,0xf5,0x4c,0xa1,0x5e,0x92,0x41,0x8,0x81,0x61, 0xde,0xb2,0x95,0xd0,0xf3,0x8b,0x3f,0xda,0x1a,0xa7,0xcd,0xcd,0x4d,0x64,0x59,0x86, 0xc7,0x8f,0x1f,0xa7,0xf3,0xe2,0x13,0x75,0x6a,0x6d,0xd,0x16,0xcf,0x1b,0x28,0xc8, 0xce,0xce,0x4e,0x64,0xc5,0xcb,0x18,0x63,0x45,0xa1,0xdb,0x32,0xc3,0x82,0x2,0xa5, 0x14,0xc3,0xe1,0x10,0xa3,0xd1,0xa8,0xf8,0xac,0x10,0x2,0xbf,0xfd,0xf4,0x73,0x7c, 0xfe,0xe0,0x21,0x3a,0x9d,0x8e,0x61,0xf,0x20,0xf0,0x7c,0x7,0x9e,0xe7,0xc1,0xf3, 0xbc,0xa9,0x16,0xa8,0x9c,0x1b,0xd0,0xf0,0x7d,0x1f,0xcd,0x66,0x13,0x9c,0xf3,0x29, 0x99,0x71,0xad,0x35,0x86,0x61,0x84,0xd1,0x78,0x8c,0x4c,0x2b,0x50,0xc2,0xe7,0x1a, 0x75,0xa2,0x34,0x88,0x3a,0x7f,0xfc,0xe0,0xdb,0x32,0x16,0xad,0xf8,0x81,0x89,0x7, 0xea,0xcb,0x9c,0xff,0xc2,0x3e,0x15,0x4b,0xc6,0x33,0x9e,0x25,0x1e,0x33,0xcb,0x60, 0xce,0xaa,0xb2,0xaf,0xc6,0x19,0xaa,0x9f,0xb5,0x4a,0xb0,0x36,0x6b,0xae,0xfa,0x1d, 0x53,0x7d,0x47,0x2a,0x60,0x51,0x76,0x73,0xe9,0x9c,0xa1,0x8,0x21,0xc0,0x39,0x9d, 0xfa,0xc,0x67,0x14,0x42,0x8,0xac,0x76,0xdb,0xf9,0xfd,0xaa,0xe1,0xfb,0xbe,0x69, 0xe9,0xeb,0xfb,0x50,0xa0,0xb8,0xbf,0xf3,0x10,0x71,0x9e,0xd4,0x61,0x3f,0x6b,0x92, 0x3f,0xce,0xf6,0x43,0x15,0x6d,0x80,0x4b,0xb5,0x18,0x52,0x4a,0x74,0x3a,0x1d,0xb4, 0x5a,0x2d,0xec,0xef,0xef,0x3,0x95,0x94,0x7a,0x92,0x8f,0x9a,0x5d,0xd4,0x60,0xf1, 0x4c,0x80,0x90,0xff,0x6f,0x29,0x6b,0x79,0x3f,0xce,0xe1,0xe1,0x21,0xba,0xdd,0xee, 0x94,0xa2,0xec,0x3c,0x3f,0xee,0xa9,0x89,0xad,0x53,0x68,0x2,0x44,0x99,0xc6,0xc9, 0x70,0x54,0xc4,0x16,0x18,0x63,0x38,0x1e,0x8c,0xf1,0xde,0x7,0x1f,0xc3,0x6f,0xb5, 0xc0,0x4,0x87,0x23,0x18,0x2,0xdf,0x85,0xef,0x3a,0x45,0x9c,0x42,0x8,0x61,0x68, 0xbe,0x60,0x20,0x50,0x10,0xe,0xc3,0xca,0x4a,0x17,0xbe,0xef,0x42,0xca,0x14,0x5a, 0x22,0x77,0x3d,0x31,0x9c,0x84,0x21,0x6,0x61,0x88,0x4c,0x6b,0x53,0x34,0x55,0xc9, 0xd1,0x7f,0x1e,0x73,0x63,0x19,0x25,0xd8,0x2f,0xab,0x34,0x3b,0xb5,0x29,0x89,0x90, 0x3,0xb1,0x4,0x3c,0x5,0xc8,0x8c,0x40,0x52,0x17,0xb1,0x1c,0x23,0x23,0xe,0x32, 0x95,0xf7,0xfd,0xd6,0x4,0x8c,0x51,0x50,0xa6,0x1,0x22,0x21,0x84,0xb,0x4a,0x8c, 0x3c,0xa,0x63,0xa6,0x11,0x93,0xdd,0x8,0x31,0x2d,0x43,0x9,0x23,0xe0,0xc,0xc5, 0xc6,0xa8,0x3e,0xb5,0x51,0x66,0x4a,0xd,0x18,0x27,0x60,0x9c,0x4c,0x3d,0x66,0xdc, 0xb4,0x1d,0xd,0x32,0x2,0x9d,0x49,0x24,0xe,0x20,0x75,0x6,0x91,0x1,0x54,0x13, 0x48,0x45,0xce,0x1d,0x48,0xaf,0x8e,0x6a,0x8c,0x63,0x56,0xcc,0xa3,0xda,0xe7,0x7c, 0x7a,0x93,0xd0,0x5a,0xc2,0x54,0xe2,0x9b,0xc7,0x96,0xc5,0x68,0x4a,0xa0,0x1,0xa4, 0x59,0x86,0x24,0x4d,0x91,0xc9,0x52,0x57,0x42,0xd,0x40,0xc9,0x5c,0x71,0x76,0xf2, 0xd9,0x89,0xb4,0x8,0x99,0x92,0x14,0xb7,0x25,0x1c,0x9e,0xf0,0xe0,0x72,0x51,0x2c, 0x90,0x90,0x2f,0x74,0x18,0x63,0x68,0xb5,0x1b,0xf0,0x1c,0x17,0x44,0x2b,0x4,0x9e, 0x6b,0x5c,0x53,0x41,0x3,0xa3,0x30,0xc6,0xa3,0xdd,0xc7,0x0,0x31,0x72,0xfc,0x1a, 0xc0,0x38,0xa,0xd1,0x1f,0xe,0xa,0x39,0x93,0x59,0xae,0xb2,0x32,0xc3,0xa9,0xd6, 0x37,0xa5,0x69,0x5a,0xb4,0xb,0xd8,0xd9,0xd9,0x49,0x66,0xdc,0x77,0x35,0x50,0xfc, 0x9e,0xf,0xfe,0x2c,0x40,0x51,0xd2,0x7c,0xca,0x6c,0x8c,0xc2,0xf6,0xac,0xf8,0xec, 0xb3,0xcf,0xa2,0xd1,0x68,0x84,0x6e,0xb7,0x5b,0x64,0x32,0xd9,0xba,0x9,0x9b,0xb5, 0x51,0xa6,0xfb,0xa7,0x57,0x79,0x4,0x9c,0x32,0x1c,0x1e,0x1c,0x40,0x67,0x12,0x84, 0xe5,0x55,0xa8,0x94,0xe3,0xf6,0x9d,0xbb,0x90,0x2a,0x85,0xc3,0xfc,0x82,0x9e,0xdb, 0x78,0x85,0xcd,0x78,0xa2,0x84,0x43,0x70,0x17,0x94,0x70,0x0,0xa,0xdd,0x56,0x1b, 0xad,0x66,0x3,0x69,0x9a,0x80,0x13,0xa,0xe1,0x8,0x8c,0xc3,0x10,0xc3,0x28,0x46, 0x9c,0x33,0x1e,0x42,0xc8,0x37,0x16,0xbe,0x7b,0xde,0x80,0x44,0x41,0x41,0x92,0xc, 0x2e,0xd7,0x88,0x22,0x17,0xca,0x1,0x88,0x1e,0xa1,0xc1,0x1a,0x88,0xd3,0x1e,0xda, 0x41,0x3,0x52,0x69,0x8c,0xb4,0x42,0x3f,0x4a,0xa0,0xa1,0xc,0x6d,0x50,0x19,0x38, 0x75,0xe7,0xba,0xa,0x27,0xbf,0xd1,0x62,0xfd,0x2e,0x7e,0x86,0x10,0x61,0xe6,0x6b, 0xb8,0x42,0xa0,0xed,0x35,0x70,0x32,0xec,0x81,0xa9,0x0,0x9,0x57,0x90,0x62,0x8, 0x92,0x4c,0xea,0x70,0xaa,0xf2,0xdb,0xf3,0xce,0xfb,0xeb,0xf0,0x8c,0x4c,0x31,0x20, 0xdb,0x43,0xbd,0x74,0x9d,0x68,0xa1,0x2e,0xcc,0x72,0xa0,0x29,0x4b,0x9f,0x9f,0xee, 0xe3,0x5d,0xee,0x37,0x4e,0xa8,0xd1,0x3a,0x4b,0x95,0x9e,0x52,0x31,0xe0,0x9c,0xc3, 0x77,0x5c,0x64,0x81,0x1,0xb5,0x38,0x4d,0xc,0x93,0x20,0xa,0xca,0xf7,0xb0,0xbf, 0xbf,0x8f,0xb5,0xd5,0xe,0xda,0xcd,0x0,0x44,0x31,0x50,0xad,0x30,0x18,0xc,0xe0, 0xbb,0x66,0x3e,0x4c,0x8b,0x28,0xce,0x8f,0x17,0x56,0x7b,0x60,0x74,0x3a,0x1d,0xf4, 0x7a,0x3d,0x5c,0xbb,0x76,0x2d,0xd0,0x5a,0x8f,0x6b,0xa0,0xa8,0xc7,0x33,0x83,0x45, 0xc9,0x10,0xd0,0x72,0xe6,0x53,0x5e,0x5b,0xd1,0xb8,0x7d,0xfb,0x76,0xd1,0xa7,0xa2, 0xda,0xfd,0xae,0xea,0xbf,0x9d,0xb9,0x5f,0xca,0x31,0x1e,0x8f,0x11,0x85,0x23,0x70, 0x66,0x2,0x8c,0x5e,0xa3,0x89,0xf,0x7f,0xbb,0x8d,0x2f,0xf6,0x9e,0xc0,0xf5,0x8d, 0x3f,0xd7,0x14,0xe1,0x39,0x53,0x45,0x77,0xe,0x17,0x45,0xac,0x42,0x29,0x85,0xd5, 0x4e,0x7,0xdd,0x4e,0x1b,0x3a,0xcb,0xc0,0x73,0x49,0xf2,0x30,0x4a,0x30,0x8e,0x13, 0x24,0x49,0xa,0x50,0xa3,0xf9,0x64,0x64,0x9b,0xe4,0x74,0xba,0xb,0x9e,0x5f,0x9f, 0xe7,0x65,0x8d,0xda,0x79,0x25,0xbb,0x67,0x7,0x9c,0x9,0x4,0x8,0x8,0x24,0xb4, 0x43,0xa1,0xb4,0x86,0xa3,0x15,0x54,0x96,0xa1,0xd5,0x5c,0xc7,0xbb,0x9f,0xef,0xe2, 0x7f,0xfd,0x3f,0x7f,0x81,0xbf,0xfe,0xd5,0x2e,0xbe,0x38,0x54,0x88,0x15,0x7,0xe1, 0x4,0x5a,0xd,0xc1,0x99,0x82,0x54,0x74,0xf1,0xef,0x83,0xc5,0x71,0x1b,0x75,0x46, 0x5,0xf6,0x45,0xcf,0xc7,0xdb,0xff,0xca,0x65,0xfc,0x5b,0xff,0xc6,0x9b,0xf8,0x37, 0xff,0xce,0x55,0x34,0x94,0x44,0xef,0x84,0x2,0xda,0x87,0x4b,0x19,0x52,0xc8,0x53, 0xbe,0xff,0x65,0xda,0xb7,0x2e,0xfb,0x5b,0x9d,0xa5,0x5d,0x75,0xb6,0x36,0x95,0xcd, 0xda,0xd2,0x40,0x49,0x83,0x89,0x31,0x56,0xe8,0x6e,0x2d,0xfb,0x9b,0xdb,0xf7,0x70, 0xce,0xe0,0x29,0x7,0x3a,0x93,0xc8,0xf2,0xc5,0x94,0x6d,0x9d,0xea,0x6b,0x55,0xf4, 0xf9,0x26,0xdc,0xb4,0xcd,0x95,0x99,0xc0,0x38,0x8e,0xf0,0x68,0x77,0xf,0x8d,0x1b, 0x2f,0x1b,0x45,0x5b,0xc6,0x20,0x33,0x89,0x7e,0xbf,0x8f,0xf5,0xf5,0xf5,0x42,0x17, 0xaa,0x1c,0xf4,0x9e,0x95,0x8d,0x58,0x5,0x8b,0xd5,0xd5,0x55,0x1c,0x1f,0x1f,0xe3, 0xfe,0xfd,0xfb,0x23,0x94,0xd2,0x65,0x6b,0x37,0x54,0x3d,0x9e,0xb9,0xad,0x6a,0xf9, 0xe6,0xb1,0xac,0xe2,0xfe,0xfd,0xfb,0x7a,0x34,0x1a,0xe1,0xe5,0x97,0x5f,0x2e,0x32, 0xa0,0xca,0xd,0x58,0x2c,0x78,0x94,0x1b,0x1d,0x55,0xd,0x80,0x52,0xc0,0xd3,0xa7, 0x4f,0x21,0xd3,0x24,0xf,0x46,0x13,0x84,0xa9,0xc2,0x3f,0xff,0x17,0xff,0x12,0x19, 0x18,0x9a,0x81,0x1,0xa,0xcf,0x71,0x11,0x4,0x1,0x82,0xfc,0x6f,0x57,0x38,0x79, 0xe5,0xab,0x3,0x4a,0x1,0xdf,0x15,0xb8,0x78,0x61,0x13,0x9e,0x70,0x90,0xa6,0x26, 0x3f,0x3d,0x8e,0x63,0xf4,0x86,0x23,0xb3,0x3c,0xa4,0x4,0x9a,0x4c,0x8a,0x4,0x73, 0x21,0xf2,0x73,0x81,0xc5,0xb3,0xb6,0x1e,0xfd,0x2a,0x57,0xbf,0x8c,0x50,0x28,0x45, 0xa1,0x90,0x40,0xf1,0x14,0xc8,0x9a,0xf0,0xa8,0x4,0x6b,0x3a,0xf8,0x1f,0xff,0x97, 0xdf,0xe0,0x3f,0xfb,0xaf,0xff,0xa,0x4f,0xf,0xf,0x40,0x5d,0x7,0xdc,0x67,0x90, 0x2a,0x5,0x3,0x1,0xc9,0x28,0x98,0x66,0x53,0x12,0xe5,0xb3,0xc1,0x7c,0xf1,0xfd, 0x22,0x2b,0xc6,0xb8,0x7a,0xbe,0x99,0x14,0x50,0x71,0x2,0xc1,0x12,0xfc,0x7b,0x7f, 0xf2,0x87,0xf8,0x4f,0xff,0x83,0xbf,0x83,0x75,0xf,0xc8,0x64,0x3,0x21,0x46,0x10, 0x95,0xf5,0xb,0x59,0x42,0xf8,0x70,0x99,0x16,0xb5,0xcf,0xeb,0xfa,0x4f,0xcf,0x97, 0x89,0x2b,0xd1,0x61,0x26,0xf3,0x8e,0x97,0xa,0x4f,0xd,0x18,0x54,0xb,0xf4,0x68, 0xf1,0x9c,0x4d,0x1e,0x20,0x30,0x9f,0x49,0x92,0xc,0xa3,0x69,0xea,0xde,0x70,0x0, 0x0,0x20,0x0,0x49,0x44,0x41,0x54,0x28,0x2c,0x8e,0x33,0x93,0x79,0xb7,0xbc,0x28, 0xc4,0xa0,0x3f,0x42,0x14,0x45,0x88,0xa5,0x91,0x9e,0x51,0x59,0x8a,0xde,0xc9,0x11, 0x5e,0x7b,0xf9,0x65,0x5c,0xda,0xdc,0x80,0x92,0x29,0x88,0x6,0xa4,0x56,0xd8,0xd8, 0xd8,0x28,0x16,0x6b,0x65,0x89,0xf2,0x32,0x40,0xcd,0x5a,0xc0,0xd9,0xe7,0x1e,0x3f, 0x7e,0x8c,0x83,0x83,0x3,0xbc,0xfd,0xf6,0xdb,0x9e,0xd6,0x3a,0xae,0xc1,0xa2,0x1e, 0xcf,0xcc,0x2c,0x66,0xdc,0x38,0xaa,0xcc,0x2a,0x2c,0xd,0x2e,0xfb,0x47,0xad,0x2f, 0xb5,0xec,0x1f,0x2e,0xc7,0x32,0xec,0x7b,0xfb,0x83,0x11,0xd2,0x34,0x5,0xa3,0xa6, 0xbd,0xa9,0xe3,0xf9,0x78,0xf7,0xbd,0xdb,0x88,0x92,0x14,0x5e,0xd3,0x2b,0xba,0x91, 0xb9,0xae,0xb,0xcf,0xf3,0xa,0x56,0x61,0x83,0xd7,0x94,0x2,0x9c,0x52,0xac,0xad, 0xac,0xe6,0x4a,0xb6,0x29,0x1c,0xc7,0x41,0x14,0x45,0x18,0x8d,0x42,0x28,0x6d,0x95, 0x60,0xe9,0x54,0x8a,0xac,0x69,0x8b,0xba,0xd8,0xa8,0x3c,0xf,0xb7,0xc7,0xa2,0x86, 0x40,0xe7,0x31,0x66,0x73,0x7d,0xf6,0x52,0x42,0x2b,0xa,0x25,0x1c,0x80,0x26,0x70, 0x49,0xa,0xd7,0xe9,0xe0,0x7f,0xf8,0x17,0x7f,0x83,0xff,0xf8,0x9f,0xfc,0x25,0x62, 0xe1,0xc0,0x59,0x6d,0x82,0x11,0xe,0x99,0xa4,0x60,0x30,0x3a,0x5a,0x8a,0x3,0x9a, 0x10,0x30,0xf2,0x6c,0xed,0x58,0xed,0xf0,0x16,0x30,0xf,0xad,0x35,0xb8,0x1f,0x22, 0x65,0x14,0x54,0xbb,0xf8,0x6f,0xfe,0xa7,0xf7,0x0,0xa5,0xf1,0x5f,0xfc,0xe3,0x7f, 0xd,0x72,0xd8,0x47,0xe6,0x70,0xf0,0xec,0xec,0x2e,0x70,0xd5,0x6b,0xf5,0x75,0xda, 0xb0,0x6a,0x9d,0x9a,0xf9,0x53,0x99,0x46,0x47,0x5a,0x15,0x8b,0x21,0x7b,0x4f,0x1, 0xd5,0xee,0x75,0x64,0x5a,0xbf,0x4a,0x69,0x80,0x29,0x50,0x42,0xe1,0x38,0x1c,0x52, 0x3a,0x88,0xd2,0xc4,0x64,0x4c,0x51,0x2,0xcd,0x39,0x2,0xd7,0x83,0xf4,0x8c,0xb0, 0xa5,0x24,0x1a,0x80,0x8b,0x58,0x69,0x70,0xe1,0xe2,0xd1,0xee,0x63,0xd3,0x5,0x2f, 0x2f,0xf4,0xd3,0x4a,0x63,0x38,0x1c,0x16,0x99,0x56,0x65,0xb7,0xef,0x59,0xb1,0x34, 0x9b,0xa5,0xb5,0xb6,0xb6,0x86,0xc3,0xc3,0x43,0x3c,0x7c,0xf8,0x30,0xb2,0x4a,0xc, 0x35,0x50,0xd4,0x83,0x3e,0x7,0xa0,0x80,0xd6,0x5a,0x7f,0xfa,0xe9,0xa7,0x43,0xc6, 0x18,0x56,0x57,0x57,0x4f,0xb5,0xba,0xa4,0x94,0x16,0x4a,0x99,0x55,0xc0,0x28,0xfb, 0x53,0xd3,0x34,0xcd,0xb3,0x9f,0x4c,0x86,0x86,0xeb,0x5,0xd8,0x7b,0x7a,0x84,0xed, 0xcf,0xee,0x23,0xf0,0x9b,0x70,0xb8,0x30,0x71,0xa,0xc7,0xcd,0xe3,0x14,0xb4,0xd0, 0x7b,0x2a,0xc0,0x2,0xa,0x9d,0x4e,0xb,0x9e,0xef,0x82,0xe7,0xb9,0xeb,0x61,0x12, 0x63,0x30,0xe,0x91,0x28,0x5,0xc2,0x19,0x14,0x1,0xb2,0x92,0xcf,0xd9,0xb8,0x15, 0x4c,0x20,0xf3,0xeb,0x32,0x38,0x5f,0x36,0xa0,0x3d,0xef,0x3d,0x56,0x76,0x5b,0x41, 0x42,0xa5,0xe,0x38,0x4f,0xf1,0xe8,0xa8,0x87,0x3f,0xff,0x6f,0x7f,0x8e,0x98,0x37, 0xd1,0x82,0x40,0x90,0x2,0x62,0x24,0x11,0x28,0x8a,0x80,0x9,0x50,0xd,0x28,0xaa, 0x91,0x71,0x53,0xc9,0xae,0x41,0x4f,0x6d,0x4a,0x9b,0xd7,0x40,0xd8,0xcc,0xcd,0xbe, 0x2f,0x3,0x99,0xbb,0x49,0x42,0x91,0x28,0xd,0x87,0xb8,0xf0,0x79,0xf,0x6e,0x13, 0xf8,0xef,0xff,0xd9,0x2d,0xfc,0xef,0xff,0xf7,0x7d,0x74,0x82,0x2e,0x82,0x98,0x9c, 0x79,0xde,0x67,0x65,0x4c,0x2d,0x53,0x15,0xfe,0x65,0xab,0xbe,0xcb,0x15,0xef,0xa4, 0x88,0x55,0x10,0x48,0xa9,0x8b,0x6c,0x29,0x1b,0x93,0x98,0xfd,0x7b,0xd3,0x29,0xf7, 0xf,0xd1,0x0,0xb4,0xa9,0xe6,0x76,0x1c,0xe,0x4e,0x26,0x20,0xc9,0x8,0xcd,0x17, 0x47,0x2,0x81,0xe7,0xc0,0x65,0x2,0x82,0x51,0x80,0x12,0x34,0xdb,0x1d,0x84,0x69, 0x86,0xc7,0x7b,0x4f,0x4c,0xc3,0xa5,0x3c,0xf5,0x36,0xc,0x43,0x8c,0xc7,0xe3,0x29, 0xb1,0xce,0x32,0x7b,0x98,0x95,0x64,0x51,0x60,0x97,0x52,0x79,0x13,0xb0,0x15,0x1c, 0x1c,0x1c,0x18,0xfc,0xaf,0x47,0x3d,0xf0,0x9c,0x52,0x67,0x9,0x21,0xcd,0xe1,0x70, 0x88,0x6e,0xb7,0x6b,0xd2,0xfb,0xf2,0x1b,0xd1,0xde,0x7c,0x65,0x6,0x31,0x6b,0x62, 0xdb,0x1b,0xda,0xf4,0x1a,0xce,0x8a,0x49,0x14,0xc5,0x29,0x7e,0xf3,0xd1,0x3d,0x28, 0x9d,0x57,0xb2,0xba,0xe,0x1c,0x2e,0x8a,0x38,0x85,0x95,0xf2,0x10,0x42,0x14,0x9b, 0xef,0x7b,0xe8,0xb4,0x5b,0xc5,0x2a,0x4f,0x4a,0x89,0x7e,0x7f,0x88,0x44,0x29,0xe8, 0x52,0x73,0x22,0xca,0x26,0xc2,0x70,0x1a,0x36,0x15,0xf2,0xd9,0x9b,0x14,0x7d,0xf5, 0xab,0xd8,0xe5,0x40,0x47,0x6a,0x40,0x23,0x1,0x83,0x6,0x53,0x14,0xc2,0x6b,0xe2, 0x7f,0xfb,0xab,0xf7,0xf0,0xdb,0x7,0x43,0x38,0xe,0x47,0x4a,0x24,0x62,0xaa,0x1, 0x9f,0x40,0xa,0x20,0xc9,0x62,0x28,0x99,0xc2,0x3,0x85,0x97,0x2,0x42,0x13,0x70, 0x5,0x70,0x5,0x30,0xa9,0xc1,0xa4,0x6,0x57,0xe6,0x79,0xa1,0x49,0xf1,0x5c,0x75, 0xb3,0x9f,0x99,0x25,0xee,0x57,0x1e,0x8c,0x52,0x64,0xca,0x83,0x56,0x2b,0x10,0xe, 0x41,0x92,0x32,0xfc,0xd3,0x7f,0x7e,0x7,0xb1,0xca,0xe0,0xc8,0xd3,0x75,0x1a,0xb6, 0x56,0x43,0x63,0x3a,0x7,0x61,0x99,0xde,0xe5,0xe7,0x95,0x4a,0x59,0x16,0xa4,0x16, 0x31,0x41,0x2b,0x17,0x62,0xf5,0xa5,0x16,0x65,0x24,0x9d,0x66,0x47,0x6a,0x52,0x7f, 0x91,0xf3,0x12,0x42,0x1,0xa,0x52,0xc4,0xe7,0x5c,0xc1,0xc0,0x29,0x83,0xef,0x35, 0x20,0xb8,0x8b,0xa0,0xd9,0xc2,0xd3,0xc3,0x3,0xf4,0x47,0xc3,0xa9,0xf8,0xc4,0x70, 0x38,0x44,0x1c,0xc7,0xa7,0x5c,0x50,0xcb,0xa,0x40,0x96,0x44,0x6,0xc7,0x75,0x7d, 0x45,0x3d,0x9e,0x9,0x2c,0xca,0xac,0xc2,0xde,0x44,0xf,0x1e,0x3c,0x18,0x50,0x4a, 0xd1,0x6e,0xb7,0xa7,0x6a,0x2a,0xec,0x6a,0xdf,0xba,0xa1,0xca,0xe0,0x50,0x56,0xfe, 0xb4,0xd9,0x52,0xa3,0xd1,0xa8,0xf0,0x5,0x73,0x21,0xf0,0x68,0xef,0x9,0xbe,0xd8, 0x7d,0xc,0x3f,0xaf,0x91,0xa0,0x20,0x5,0x28,0x94,0x41,0xc2,0x7e,0x7,0x65,0x40, 0xa7,0xdd,0x6,0xa5,0xc6,0xb7,0x1e,0x27,0x21,0xfa,0xa3,0xa1,0x91,0xdd,0xa6,0x1c, 0xca,0x94,0x44,0x4d,0x8c,0x19,0x51,0xa0,0x50,0x45,0x8f,0xe6,0xaf,0x3b,0xb3,0xe6, 0xbc,0xef,0x9b,0x57,0x1d,0x5c,0xde,0x8c,0x2b,0x49,0x82,0x64,0x14,0x94,0xa5,0x18, 0xa7,0x4,0xb7,0x3f,0x3e,0x80,0xe6,0x19,0x9c,0x24,0x82,0x20,0xa6,0xb7,0x42,0x2c, 0x33,0x84,0x2a,0x83,0x74,0x8,0x48,0xde,0x6f,0x1c,0x8a,0x20,0x23,0x7a,0x6a,0x93, 0x14,0xa7,0xfe,0x5e,0xb4,0x11,0x25,0x8b,0x8d,0x6a,0x75,0x6a,0x6b,0x8c,0x5b,0x20, 0xec,0x8,0x19,0x19,0x41,0xeb,0x11,0x68,0xe0,0xe3,0xce,0x27,0x8f,0xb1,0x33,0x3c, 0xc2,0xc0,0x63,0xe7,0x66,0x63,0xe7,0xe9,0xa9,0xb1,0xcc,0xb5,0x3f,0x53,0xb5,0x56, 0x13,0x30,0x10,0x8,0xca,0xa6,0x44,0xf9,0x8a,0x58,0x1c,0x65,0x48,0x64,0x86,0x24, 0x49,0xa6,0x62,0x6,0x66,0xdf,0x3a,0x6f,0x6e,0x85,0xa9,0x15,0x7e,0x39,0x66,0x47, 0x8,0xc9,0xdd,0xab,0x6c,0xc2,0x2e,0x18,0x2b,0xd4,0x94,0x6d,0x7f,0xc,0x91,0x7, 0xc0,0x1d,0xe1,0x1,0x84,0x61,0x6f,0x6f,0xf,0x52,0xab,0xa2,0xc8,0x2e,0x8e,0x63, 0x44,0x51,0x54,0xec,0xb7,0x5a,0x14,0x3b,0xf,0xd0,0xed,0x77,0x7a,0x9e,0x87,0x76, 0xbb,0x8d,0xa3,0xa3,0xa3,0x67,0x76,0x57,0xd7,0xa3,0x66,0x16,0x53,0xee,0x28,0x42, 0x88,0x38,0x3c,0x3c,0x44,0xbb,0xdd,0x9e,0xea,0x80,0x57,0x95,0x19,0xaf,0xae,0xa8, 0xca,0x8c,0x2,0x0,0x7a,0xbd,0x9e,0x79,0x4e,0xc7,0xa0,0x94,0x63,0x9c,0x2,0xef, 0x7f,0xfc,0x29,0xb8,0x70,0xe1,0x9,0x1,0xc6,0x9,0x5c,0xdf,0x3,0xf7,0x19,0x18, 0xd7,0xf0,0x5,0x87,0x43,0x84,0xe9,0x4d,0x21,0x18,0x8,0x7,0xda,0x8d,0x26,0x9a, 0x81,0x3,0x41,0x19,0x92,0xc,0x18,0x8c,0x53,0xc4,0x89,0x86,0xa6,0x14,0x4,0x12, 0xc,0x19,0xb8,0x26,0x45,0x55,0x36,0xd5,0xf9,0x44,0x2,0xb1,0x85,0xdd,0xb,0x57, 0x90,0x55,0x69,0xeb,0x67,0xa9,0xca,0x3e,0x4f,0xef,0xe8,0x67,0x89,0x67,0x48,0x95, 0x22,0x93,0xcc,0xb8,0x7d,0x32,0x2,0x8f,0x69,0x1c,0xd,0x86,0x60,0x92,0x42,0x71, 0xa7,0x10,0xc3,0xe3,0x20,0x70,0x41,0xc1,0x33,0x6,0x48,0x9a,0xf7,0xee,0x50,0x53, 0xd7,0x86,0x61,0xfa,0x5a,0x2d,0xb3,0x99,0x5b,0x6a,0xfe,0x16,0x8b,0x18,0x4,0x1e, 0x88,0x72,0xa1,0x88,0x7,0x7,0x9,0x7a,0x51,0x6,0x16,0x72,0xb0,0x34,0x43,0x96, 0xc9,0xbc,0xdd,0xe8,0x1c,0x65,0x58,0x3d,0xa9,0xa,0x9f,0xc7,0x6,0x66,0xd5,0x4f, 0x9c,0xc7,0xd,0xb5,0x68,0x28,0x22,0xa1,0x88,0x82,0xc4,0xa4,0x1e,0xc3,0x8a,0x2, 0x2a,0x95,0xe5,0xb,0x23,0x1,0x4d,0x19,0xa2,0x34,0x43,0x18,0x25,0xd0,0xa0,0x79, 0xb1,0x29,0x5,0xa3,0xd3,0x3d,0x37,0x8,0x21,0x20,0xb9,0x5b,0x49,0x2a,0x98,0x9a, 0x22,0xa,0xb8,0xae,0x6b,0x16,0x58,0x0,0x8,0x23,0x60,0x94,0xc0,0x73,0x1d,0x38, 0x8e,0x99,0xb,0x82,0x2b,0x78,0x2e,0x83,0xe0,0x14,0xbe,0x1b,0xe0,0xb8,0x1f,0xe3, 0xc9,0xd1,0x28,0x57,0x51,0x36,0xb1,0x87,0x32,0xbb,0x58,0xf6,0xfe,0xb1,0x8d,0xbe, 0x2c,0xbb,0x50,0x4a,0x61,0x77,0x77,0x37,0x59,0xc6,0x1e,0xd4,0xe6,0xb4,0x6,0x8b, 0x99,0x37,0x85,0x65,0x18,0x8f,0x1e,0x3d,0x4a,0x28,0xa5,0x68,0xb5,0x5a,0x4b,0x19, 0xce,0xf2,0x6a,0x4c,0x4a,0x9,0xc7,0x71,0x10,0xc7,0x31,0xc2,0x30,0xcc,0x6f,0x72, 0x1,0xca,0x19,0x1e,0x3c,0xd8,0x41,0xaf,0xd7,0x83,0xef,0xfb,0x0,0x0,0xdf,0xf7, 0xc1,0x39,0x87,0xcb,0x5,0x1c,0xe1,0x99,0x15,0xb4,0xc3,0x20,0x72,0x5a,0xde,0xf0, 0x3,0x34,0x2,0xbf,0x88,0x8f,0xc4,0x71,0xc,0x29,0x75,0xd1,0x12,0x95,0x10,0x7a, 0x66,0x46,0xcd,0x22,0x17,0x4a,0xb5,0xa0,0xf0,0x2c,0x77,0xcb,0x79,0x56,0xab,0xcb, 0x6e,0x67,0x4d,0xf8,0x59,0xfd,0x1e,0x9e,0x85,0xd5,0x7c,0xb5,0xcc,0x6a,0x5e,0x95, 0xf1,0x69,0x31,0x43,0xa5,0x4e,0xaf,0xbc,0xf3,0x2b,0x6a,0xc,0xf7,0x39,0x58,0xc4, 0x79,0x5c,0x30,0xcf,0xe2,0xb6,0x9a,0x2,0xb4,0xbc,0x3f,0x86,0x75,0x49,0x25,0x49, 0x82,0x34,0x53,0x45,0x63,0xa2,0xa9,0x4c,0x40,0x52,0x52,0xa5,0xa5,0x93,0x5,0x94, 0x71,0xb1,0x4e,0x2,0xe5,0x76,0xb1,0xe2,0xba,0x2e,0x2,0xd7,0x24,0x7a,0x18,0xdd, 0x28,0x92,0xd7,0x18,0x1,0x87,0x87,0x87,0x48,0xe5,0xc4,0x8d,0x4b,0x8,0x29,0xe6, 0xd5,0x32,0xfd,0xed,0xad,0x1b,0xcd,0xbe,0xcf,0xf7,0x7d,0x34,0x1a,0xd,0x1c,0x1d, 0x1d,0x81,0x10,0x22,0xaa,0x76,0xa0,0xc,0x10,0x75,0x0,0xbc,0x6,0x8b,0xb3,0x8c, 0x20,0x3f,0x38,0x38,0x80,0xef,0xfb,0x68,0xb7,0xdb,0x4b,0xb7,0xec,0xac,0x4e,0xce, 0xe1,0x70,0x58,0xac,0x86,0x40,0x18,0x46,0x61,0x8c,0xed,0xed,0xed,0x22,0x26,0x61, 0x44,0xd7,0x4c,0x90,0x8f,0x53,0x71,0x4a,0x28,0x90,0x51,0xa0,0xd3,0x68,0xa0,0xe9, 0xb9,0x50,0x12,0x18,0xc7,0x9,0xe2,0xc8,0x64,0x94,0xa0,0xc4,0x6,0xa8,0x5e,0xde, 0xb0,0x9f,0x65,0x80,0xce,0x6b,0xe4,0x9f,0x53,0x6c,0x68,0x26,0x60,0xcc,0x93,0x9c, 0x98,0x7d,0xec,0xea,0x1b,0xde,0x16,0x18,0x6a,0x32,0x1d,0x40,0x36,0x9b,0x2e,0xf5, 0x90,0x28,0x9f,0xd3,0xb3,0xd5,0xad,0x2c,0xdb,0x8,0x6a,0xfe,0x7b,0xc9,0xd4,0x56, 0x65,0x4e,0xd5,0xcc,0x23,0xad,0x75,0xa1,0x29,0xa5,0xb5,0x2e,0xc4,0x7b,0x8b,0xad, 0x92,0xd2,0x6a,0x1f,0x5b,0x75,0x5a,0xce,0xa6,0x7b,0xbb,0xd8,0x7e,0x17,0xd6,0x35, 0x25,0x84,0x80,0x70,0x4d,0x1b,0xe1,0xe1,0x70,0x88,0xde,0xc9,0x0,0x94,0x4f,0x7a, 0x5c,0x84,0x61,0x88,0x34,0x4d,0xcf,0x2d,0x81,0x2f,0xa5,0x2c,0x32,0xa3,0xc2,0x30, 0xc4,0xff,0xcf,0xde,0x9b,0xc6,0x4a,0x92,0x65,0xe7,0x61,0xdf,0x5d,0x22,0x22,0x97, 0xb7,0x75,0x2d,0x5d,0x55,0x5d,0x55,0x3d,0xdd,0xd3,0xd3,0x3d,0xd3,0x9c,0x26,0x89, 0x61,0x5b,0x9e,0x11,0x9,0x70,0x68,0xfd,0x91,0x68,0x51,0x23,0xf,0x9,0x36,0x2d, 0x40,0x16,0x2c,0x19,0xf0,0x2,0x9,0x84,0x41,0x19,0x36,0x2c,0xc1,0x10,0x2c,0xc8, 0x80,0x68,0x58,0x32,0x4d,0xb,0xb4,0x61,0xc0,0x16,0xd,0x8,0x22,0x44,0x58,0x94, 0x2c,0x50,0xa2,0x41,0x8c,0x60,0x82,0x34,0x41,0xd,0xd7,0x91,0xa7,0x8d,0xe6,0x32, 0x3d,0x33,0x5d,0xd5,0x55,0x5d,0xdb,0xeb,0xb7,0x66,0x66,0x2c,0xf7,0xde,0xe3,0x1f, 0x11,0xf7,0xe6,0x8d,0xc8,0x88,0xcc,0xc8,0xb7,0x66,0xbd,0x17,0xb7,0x11,0xfd,0xea, 0xbd,0xdc,0x22,0x23,0xee,0xbd,0xe7,0x7c,0xdf,0x39,0xe7,0x3b,0xef,0xbf,0xff,0xfe, 0x7f,0x57,0x47,0x47,0xfb,0x6,0xa3,0x43,0x17,0x9d,0xb1,0x98,0x89,0x59,0xd8,0x49, 0xf1,0xfe,0xfb,0xef,0xff,0x9d,0x2c,0xcb,0xb0,0xb9,0xb9,0xd9,0x5a,0x28,0xb0,0xaa, 0x2a,0x3b,0x1e,0x8f,0x31,0x1e,0x8f,0x11,0x4,0x41,0x3e,0x59,0x65,0x80,0xf,0xee, 0x7d,0x88,0xbd,0x83,0x11,0x86,0xc3,0x21,0x84,0x64,0x4e,0xf3,0x29,0x8,0xa,0x63, 0x21,0x42,0x4,0x51,0x2e,0xef,0xc1,0x60,0x30,0x88,0x22,0xc,0x7b,0x11,0x38,0x18, 0x46,0x71,0x82,0x34,0xc9,0x72,0x29,0x67,0x2f,0x5d,0x97,0x13,0x3f,0xd2,0xc6,0x5c, 0x35,0xc,0x6d,0xe1,0xfc,0x59,0xc4,0x3d,0xda,0x78,0xc0,0xcf,0xdf,0xfa,0xcd,0x37, 0x5d,0x22,0xe6,0xc,0x86,0xf5,0xd2,0xad,0x26,0xd3,0xf4,0x3b,0xe7,0x1,0xf1,0xb6, 0x52,0xe8,0x27,0xd9,0x13,0xa4,0x4d,0xe0,0xdb,0xc6,0x30,0xac,0x10,0x61,0x9a,0xa6, 0x0,0xf1,0xa2,0x10,0x94,0xcf,0xca,0xdf,0x18,0x3f,0x77,0xdb,0x20,0xe0,0xc2,0xc5, 0xe4,0xec,0x73,0xa4,0x10,0x90,0x45,0x93,0xaf,0x20,0x8,0x5c,0x26,0xa0,0x4d,0xfa, 0xf8,0xe8,0xe9,0x33,0xa4,0xca,0x80,0x9,0x5e,0xa0,0xf7,0xc,0x93,0xc9,0xe4,0x48, 0xf1,0x32,0xa5,0x94,0xeb,0x70,0x99,0xa6,0xe9,0x8f,0x57,0xd,0x42,0x9d,0xc1,0xe8, 0x46,0x67,0x2c,0xea,0xc,0x6,0xcf,0xb2,0xec,0xc7,0xfb,0xfd,0x3e,0x36,0x37,0x37, 0x5b,0x8b,0x5,0x56,0x3d,0xaf,0xf1,0x78,0x5c,0x5a,0xa0,0xa3,0x71,0x82,0x6f,0x7c, 0xeb,0x5b,0x90,0x61,0xe0,0x60,0xb7,0x45,0x15,0x82,0x71,0x57,0x57,0x11,0x4,0x1, 0xb8,0x0,0x42,0x21,0xb0,0xb9,0xb1,0x81,0x30,0x8,0x10,0xa7,0x9,0x92,0x38,0x2d, 0x60,0xbc,0xac,0x15,0x76,0x5b,0x86,0x7e,0x6a,0x43,0x49,0x9d,0xc5,0xc6,0xd3,0xf4, 0x5e,0x8b,0xc,0xc9,0xaa,0x8e,0x3a,0x2a,0xaa,0xfe,0xfe,0x94,0x29,0xcb,0xaa,0x9e, 0xd3,0x94,0xc0,0x82,0x53,0xb4,0x6d,0x43,0x43,0xb5,0x31,0x2a,0x47,0x31,0xe0,0x7e, 0x2a,0xb8,0xff,0x5e,0x1a,0xc,0x99,0x21,0xc4,0x59,0xae,0x5c,0x9b,0x53,0x3d,0xc8, 0x8d,0x86,0x9d,0x67,0xe4,0x17,0xed,0x31,0x47,0x4b,0x85,0x92,0x3b,0xb1,0x41,0x50, 0x3e,0x1f,0x83,0xc2,0x38,0xd8,0x56,0xc1,0x56,0x4b,0xaa,0xdf,0xef,0x63,0x14,0xc7, 0xf8,0x78,0x67,0xf,0x9c,0xc9,0xc2,0x99,0x2,0x92,0x78,0x5c,0xd2,0x68,0x6b,0x63, 0x28,0x2c,0x5d,0x2c,0x84,0xc0,0xe6,0xe6,0x26,0xe,0xf,0xf,0xc1,0x18,0x1b,0x56, 0xd,0x84,0x4f,0x3f,0x75,0x54,0x54,0x67,0x2c,0x6a,0x63,0x16,0x0,0x6,0x87,0x87, 0x87,0xd8,0xd8,0xd8,0x40,0x18,0x86,0x33,0x3d,0xb3,0x17,0x19,0xb,0x29,0x25,0xd2, 0x34,0x45,0x1c,0xc7,0xe,0x95,0x44,0x51,0x84,0xf7,0x3f,0xb8,0x87,0xc3,0xd1,0x4, 0x61,0x98,0x57,0x66,0x4b,0x2e,0x20,0x25,0x9f,0x66,0x81,0x4,0x1,0x98,0x15,0xab, 0x63,0xc,0xc3,0xc1,0x0,0xc3,0x5e,0x1f,0x4a,0x13,0xe,0xe3,0xa4,0xa0,0x9e,0xf2, 0xa6,0x32,0x1a,0x1a,0x60,0xa6,0xa8,0x3a,0x36,0x47,0x8a,0x37,0x34,0x19,0x8e,0xb6, 0xeb,0xe2,0x28,0xf1,0x8d,0x79,0xbc,0xf8,0xb2,0x9f,0xbb,0xaa,0xe8,0xc2,0xf6,0x8, 0xf1,0x65,0xdf,0x67,0x8d,0xf5,0x6c,0x52,0x44,0x55,0x4,0xb0,0x44,0x47,0x35,0xd0, 0x73,0x6d,0xc,0xf0,0xa2,0x6b,0xbe,0x8c,0x71,0xaf,0x6,0xda,0xfd,0x7b,0x11,0x67, 0x29,0x52,0xad,0x5c,0x33,0x25,0x6b,0x30,0xdc,0xda,0x70,0x10,0x3c,0xd7,0x7f,0x17, 0x42,0x20,0x14,0xf9,0xc6,0x6f,0x59,0x54,0x5b,0x94,0x6a,0x8b,0x51,0x83,0x20,0x8f, 0xf3,0x89,0x40,0x22,0x8c,0xfa,0x78,0xfc,0xec,0x19,0xe2,0x2c,0x75,0xa,0xce,0x4a, 0xa9,0x2,0x5d,0xf0,0xd6,0x73,0xc7,0x57,0x5f,0x58,0x5f,0x5f,0x47,0x18,0x86,0x78, 0xff,0xfd,0xf7,0xf,0x9b,0x9c,0xc7,0x6e,0x2b,0xed,0x8c,0x45,0xe3,0xf8,0xe0,0x83, 0xf,0xe,0xa4,0x94,0x2e,0x56,0xb1,0x8c,0x7,0x66,0xd,0xc6,0x78,0x3c,0x2e,0x49, 0x80,0x4c,0x26,0x13,0x7c,0xf3,0xdb,0x1f,0x20,0x88,0x7a,0x90,0x61,0x80,0x7e,0xbf, 0xef,0xb8,0x5b,0x8b,0x2a,0x38,0x7,0x64,0xc0,0xc1,0x18,0xd0,0xf,0x23,0x6c,0xc, 0xd7,0x0,0x0,0x7,0x93,0x31,0x12,0x32,0x40,0x91,0xd2,0xe8,0xe2,0x14,0xb6,0x9a, 0xf6,0x98,0x71,0x84,0x6a,0x7a,0xe3,0x51,0x37,0xe0,0xa3,0xc4,0x37,0x9a,0x28,0xb1, 0xda,0xd4,0xce,0x9a,0xef,0xbb,0xfa,0xc3,0xeb,0xde,0xc6,0xc,0xc,0x33,0xc8,0x99, 0x1a,0x36,0x73,0x54,0x37,0xe3,0x7c,0x43,0xc6,0x2c,0xca,0x68,0x3a,0x96,0xdc,0xd7, 0x96,0xa5,0xad,0x16,0x25,0x51,0x18,0x3,0x64,0x99,0x46,0x9c,0xa5,0x30,0x5,0xed, 0xd4,0x54,0x34,0x4f,0xa4,0xc1,0x8,0x2e,0x6d,0x36,0x4f,0xdd,0x9d,0xa6,0xc2,0x5a, 0x31,0x4d,0x29,0xa5,0xab,0xd8,0x8e,0xfa,0x3,0x24,0x71,0x86,0xdd,0xdd,0xfd,0xd2, 0xf9,0xc4,0x71,0x9c,0xd3,0x60,0x2d,0x9d,0x15,0xbf,0x4e,0xca,0xa6,0xd1,0xee,0xed, 0xed,0x81,0x31,0xd6,0xab,0xd2,0xd1,0xd5,0x9f,0xdd,0xe8,0x8c,0x85,0x4f,0x41,0xc9, 0x9d,0x9d,0x1d,0xf4,0xfb,0x7d,0xc,0x6,0x3,0x64,0x59,0x36,0x53,0x99,0xbd,0xc8, 0x13,0xf3,0x51,0x85,0x85,0xbb,0x1f,0x7d,0xf4,0x11,0x46,0x87,0x13,0x48,0x11,0x3a, 0x6d,0x29,0xdb,0xb4,0xde,0xd2,0x4e,0x4c,0xe6,0xf5,0x1b,0x82,0x71,0xf4,0xa2,0x0, 0x83,0x7e,0x4,0x95,0x66,0x88,0xe3,0xc4,0x79,0x96,0x39,0x57,0x6c,0x37,0xcb,0x7c, 0xb,0xa9,0x2b,0x86,0x5a,0x76,0xe3,0x5e,0x36,0x3e,0x70,0x52,0x19,0x50,0xfe,0x7b, 0x2f,0x3a,0xcf,0xe3,0x9c,0xff,0x4a,0x4c,0xc8,0x42,0xd0,0xae,0x7e,0xdf,0xa1,0xc6, 0x5e,0x11,0xbe,0xba,0xeb,0x49,0x18,0x80,0xa3,0x53,0x6c,0x54,0xbb,0xf1,0xfa,0xfd, 0x2c,0xb4,0xd6,0x48,0xd3,0xd4,0xa5,0xa8,0xa2,0x86,0x42,0x9b,0xea,0x47,0x69,0x70, 0xce,0x5c,0xcd,0x92,0x7f,0x84,0x91,0x74,0x82,0x83,0x56,0x6,0x87,0x33,0x9,0x2e, 0x5,0x76,0x77,0x77,0x5d,0x90,0xda,0xa2,0x8b,0x24,0x49,0x16,0xae,0x4d,0x7b,0xae, 0x36,0x5,0xd7,0x22,0x8c,0xc1,0x20,0x57,0x4,0xbe,0x77,0xef,0xde,0x3f,0xaa,0xb4, 0x24,0xe8,0x10,0xc6,0x65,0x35,0x16,0x9e,0x97,0xc0,0xbd,0xbf,0x71,0xff,0xf7,0x7b, 0xf7,0xee,0xfd,0x63,0xa5,0x14,0xae,0x5e,0xbd,0xda,0xd8,0xaf,0xa2,0x9a,0xa1,0xe3, 0x3c,0x7d,0x96,0x4f,0xc0,0x38,0xc9,0xa,0xfd,0x9b,0x7c,0xa2,0xc7,0x1a,0x78,0xef, 0xde,0xa3,0xbc,0xef,0xb0,0xcc,0xbb,0xdd,0x45,0x51,0xde,0x1c,0xc6,0x76,0xbe,0x13, 0x3c,0x40,0x28,0x22,0x48,0x62,0x18,0x14,0xa8,0xc2,0x10,0x61,0x77,0x74,0x0,0x11, 0xe6,0xb2,0x15,0x10,0x28,0x75,0x4c,0xb3,0xd9,0x34,0xb6,0xab,0x5a,0xb5,0xd3,0xda, 0xbc,0xa3,0xc9,0xb3,0x5d,0x44,0xf9,0x1c,0x7,0xbd,0xd4,0x75,0x7f,0xb3,0x47,0xab, 0xf3,0x24,0x2,0xd9,0xbc,0x7f,0x96,0x53,0x39,0x8a,0x4c,0xae,0xb0,0xcb,0x56,0x20, 0x75,0x96,0xb,0x8,0xc3,0x61,0x78,0x2e,0xcd,0xc2,0x8,0x79,0x32,0x42,0xd1,0x69, 0x6f,0xbe,0xb1,0xe5,0x73,0xbd,0xfa,0x9c,0xda,0xe1,0x73,0xe9,0xa5,0x45,0xf4,0xd3, 0x69,0x18,0x8e,0x92,0x71,0x2b,0xe8,0x32,0x63,0x50,0xc4,0x30,0x34,0x8,0x1c,0x4c, 0xf0,0x42,0x54,0x70,0xda,0x6f,0xc4,0x1e,0xc,0x84,0x80,0x19,0xf4,0x65,0x7e,0xbf, 0xf3,0xc4,0xd,0x40,0x32,0x8e,0x5e,0x28,0x11,0x5,0x21,0x38,0xf2,0x36,0xac,0xa1, 0xc8,0x7b,0x79,0xef,0x4d,0xc6,0xd8,0x1b,0x27,0x60,0x3c,0x84,0xe0,0x1,0x18,0xc, 0xc6,0xf1,0x41,0x89,0x5,0x98,0xf7,0xfd,0x7d,0x15,0x86,0x2c,0xcb,0x1c,0x15,0xb5, 0xbf,0xbf,0xff,0xa5,0xce,0x38,0x74,0xc6,0xa2,0x34,0x1,0xa8,0xa4,0x76,0x6,0xf2, 0x7f,0x4f,0xd3,0xf4,0x4b,0x56,0x7e,0xc0,0x6,0xc2,0xaa,0x79,0xdc,0x75,0x1e,0x20, 0x0,0xe8,0xe2,0x79,0x49,0x92,0xb8,0xc,0x17,0x21,0x4,0x1e,0x3f,0x7e,0x82,0xdd, 0xdd,0xdd,0x7c,0xc2,0x17,0xf1,0x9,0xeb,0x2d,0xd9,0x9f,0xbe,0x60,0x60,0xde,0x73, 0x3b,0x72,0x32,0x7,0xc6,0x98,0xa2,0x87,0xc5,0xf3,0x3b,0xea,0xc,0xcc,0x71,0x62, 0x1e,0x55,0x81,0xd8,0xe3,0xea,0x22,0x9d,0xcc,0xa1,0x17,0xb6,0xa7,0x5d,0x86,0xf6, 0xa9,0xf7,0x8c,0xd1,0xfa,0x7a,0x9d,0x75,0xfb,0x5b,0x5f,0xbc,0xd2,0x18,0x83,0x44, 0x4d,0xd3,0x6a,0xe7,0x21,0x44,0x9b,0xd,0x68,0xd7,0x9b,0xa5,0x1c,0x85,0x10,0x90, 0x1,0x77,0xff,0x76,0x72,0xfd,0x61,0x98,0xd7,0x5d,0x14,0xef,0x6d,0xeb,0x8f,0xfc, 0x9e,0x19,0xbe,0x56,0x94,0xef,0xec,0xf8,0x46,0xce,0xa2,0x3c,0x4b,0x39,0x27,0x49, 0x2,0x0,0x83,0x8e,0x76,0xea,0x8c,0x5,0xaa,0x93,0xa0,0x2a,0x1c,0xc8,0x18,0x8b, 0xf6,0xf6,0xf6,0x9c,0xa7,0xb1,0x8c,0x17,0x67,0x27,0x6d,0x92,0x24,0x48,0x93,0x49, 0x21,0x7a,0x17,0x40,0x69,0xc2,0xb7,0xee,0x7d,0x0,0x22,0xaa,0x35,0x14,0xee,0x8, 0x38,0x64,0xb1,0x68,0x86,0xc3,0x21,0x32,0xa3,0xf3,0xc0,0x1d,0x63,0x79,0xdb,0x53, 0x9e,0x7b,0xa8,0xf3,0x8e,0x65,0x2b,0x92,0xab,0xc7,0x69,0xd6,0x51,0x0,0x79,0xfb, 0xd6,0xe3,0x9c,0x5f,0xa3,0xf1,0x31,0xab,0xe5,0x4,0x56,0xe7,0x8c,0x6d,0xc,0xb4, 0xe8,0xfb,0x2d,0x12,0x8,0xac,0xb,0x7c,0xb7,0xd5,0xd8,0x3a,0xc9,0xec,0xa8,0x79, 0x9f,0xc5,0xbc,0x4d,0xd9,0xf6,0xf6,0xd6,0x6a,0x71,0xbc,0xc3,0xae,0x9,0x22,0x2a, 0x7a,0x58,0x70,0x57,0xa8,0x3a,0x5d,0x33,0x53,0x49,0x9c,0xc3,0xc3,0x43,0x8c,0xc7, 0xe3,0xbc,0x42,0x9c,0x9,0x30,0x82,0x93,0x0,0x99,0xd2,0x5d,0xcd,0x8a,0xb4,0x55, 0xe7,0x6f,0x73,0x73,0x13,0x44,0x84,0xfb,0xf7,0xef,0x1f,0x74,0x5b,0x67,0x67,0x2c, 0x9a,0x28,0x29,0x37,0x6b,0x1e,0x3d,0x7a,0x14,0x1b,0x63,0xb0,0xb9,0xb9,0x99,0x23, 0x85,0x22,0xf7,0xdd,0xaf,0xcc,0x9e,0x57,0x7,0xc0,0x79,0xae,0x8a,0x69,0x37,0x5a, 0x21,0x43,0x3c,0xdb,0xd9,0xc5,0x93,0xc7,0xcf,0x5c,0x95,0xb6,0x9d,0xf4,0x52,0x4a, 0x4,0x45,0x9f,0x0,0x21,0x59,0xb1,0x50,0x34,0xd6,0xd6,0xd6,0x10,0x4,0x1,0xf6, 0xf7,0xf,0x73,0x69,0x5,0x5b,0xd0,0xd7,0xd2,0x7b,0x3f,0x89,0x18,0xc2,0x79,0xa2, 0x8f,0x85,0x55,0xde,0x95,0xe7,0xfb,0x46,0xe4,0xbc,0x91,0x45,0x1d,0x5d,0x79,0xdc, 0x7b,0xd3,0x8c,0x18,0x4e,0x2e,0x1b,0xec,0x28,0xf5,0x1a,0x75,0x43,0x78,0xeb,0xc4, 0x7a,0xed,0xa9,0xce,0x11,0x6,0x99,0xfa,0x38,0x93,0x9f,0x55,0x15,0x86,0xd2,0xd1, 0x89,0xbc,0xf0,0xfc,0x6d,0x2b,0x61,0x2e,0xf2,0xef,0x1a,0x4,0x1,0x4,0x24,0xa4, 0xc,0xb0,0xbd,0xbb,0x97,0xb7,0x5e,0x2d,0xd4,0x11,0x92,0x24,0x41,0x9a,0xa6,0xb5, 0x81,0xec,0xea,0xba,0xb5,0x7f,0xb3,0xc,0x40,0x14,0xe5,0x3d,0x64,0x76,0x77,0x77, 0xc1,0x18,0x93,0x1d,0xd,0xd5,0x19,0x8b,0xc6,0xdc,0x69,0xc6,0x18,0xdb,0xde,0xde, 0x46,0xbf,0xdf,0x77,0xea,0xb2,0x4d,0x14,0x4a,0x13,0xac,0x4e,0x92,0xa4,0x80,0xc2, 0x53,0x8e,0xfe,0x83,0x7,0xf,0xa0,0x8c,0x76,0x5,0x46,0xd5,0xc3,0x52,0x50,0xa2, 0x28,0x48,0x1a,0xc,0xfa,0xee,0x7d,0x72,0x5a,0x2a,0x87,0xe0,0xcc,0xd0,0xca,0x6f, 0xf6,0xc7,0x35,0x8,0x47,0xa5,0xb3,0x4e,0xca,0x58,0x9e,0x94,0xb1,0x3d,0xea,0x86, 0xdb,0xe6,0xfd,0xe7,0x49,0x70,0x2f,0xca,0x96,0x3a,0xe,0x3a,0x3a,0xe,0x35,0xa5, 0xb5,0x46,0xa2,0xb2,0x85,0x9f,0x15,0xa,0x89,0x80,0xb,0xf,0x19,0xc0,0xa5,0xd7, 0xa,0x30,0xc8,0x30,0x28,0xd2,0xcd,0xf3,0xc,0xa9,0xfd,0x83,0x43,0x4c,0xd2,0xac, 0x54,0xcb,0x61,0x8b,0xf4,0xac,0x7e,0x9b,0xdf,0x8c,0xac,0xda,0x94,0xcc,0xfe,0x6e, 0xd7,0xfa,0xd6,0xd6,0x96,0x15,0xfc,0xec,0xd7,0x31,0xf,0xdd,0xb8,0xa4,0xc8,0xa2, 0xc6,0x60,0xf4,0x46,0xa3,0x11,0xd6,0xd7,0xd7,0x4b,0xdc,0xa9,0xf,0x69,0x17,0x8d, 0x38,0x4e,0x41,0xda,0x80,0x8c,0x81,0xc,0x3,0x8c,0x27,0x9,0x1e,0x3c,0x7c,0x84, 0x5e,0x6f,0xe0,0xc5,0x27,0xca,0xa8,0xc2,0x7a,0x4c,0x8c,0x31,0xac,0xd,0x87,0xe0, 0x8c,0x61,0x3c,0x99,0x20,0x8,0x43,0x10,0x58,0xab,0x62,0xa3,0xe7,0x39,0x6e,0xb1, 0x94,0xe7,0xa,0x76,0x62,0xef,0x75,0x36,0xc3,0x9c,0xe8,0xf9,0xce,0x66,0x4a,0x9d, 0x1d,0xa5,0xd6,0x66,0xcf,0xb4,0x12,0xfc,0xfe,0x66,0x9c,0xc7,0xdc,0xe0,0x94,0x6a, 0xeb,0xd0,0x96,0xfd,0x1c,0xce,0xe1,0x52,0xc8,0xa7,0xe8,0x62,0x4a,0x51,0x9,0x59, 0x28,0xd7,0x86,0x21,0x88,0x9,0x64,0x46,0x63,0xff,0xe0,0x0,0xbc,0x40,0xe0,0x8c, 0xb1,0x92,0x22,0x6e,0xed,0xa6,0xc0,0x79,0xe3,0x35,0x5d,0x5b,0x5b,0x3,0xe7,0x1c, 0xf7,0xef,0xdf,0xdf,0xef,0xb6,0xcf,0xce,0x58,0xd4,0x22,0xc,0x0,0x78,0xf8,0xf0, 0xe1,0x98,0x73,0x8e,0xb5,0xb5,0xb5,0x19,0x54,0x51,0xe7,0xc5,0xd5,0xc1,0x69,0x5b, 0xe9,0x6d,0x73,0xc5,0x3f,0x7a,0xf2,0x4,0xa3,0x49,0xc,0x19,0x6,0x5,0x7a,0x60, 0xb5,0x88,0xc2,0x1a,0x92,0x7e,0x3f,0x42,0x9a,0x16,0x9d,0xc4,0x84,0x2c,0xf1,0xae, 0xcf,0x3,0x4d,0xf4,0xbc,0xa1,0x9c,0xe7,0x6d,0xd4,0xf1,0xed,0xcb,0xa4,0xd5,0x9e, 0xe5,0x79,0xe6,0xf1,0xb,0xee,0x10,0x8f,0x36,0x70,0x89,0x1f,0x4d,0x73,0x8b,0x8a, 0xba,0x8b,0x80,0xb,0x97,0x5e,0xcb,0xd9,0x34,0x4e,0x61,0x53,0x8f,0xed,0x9a,0x9, 0x64,0x84,0x9d,0xfd,0x7d,0x68,0xad,0x21,0xb,0xda,0xcb,0x4a,0x8f,0xd4,0xad,0x9d, 0x3a,0xad,0x2a,0xff,0x9c,0x83,0x20,0xc0,0xfa,0xfa,0xba,0xa5,0xa2,0x82,0xba,0x96, 0x5,0xdd,0xb8,0xa4,0xc8,0x82,0x4d,0x7,0xdf,0xdf,0xdf,0xcf,0xfb,0x5f,0xf7,0x7a, 0x25,0x19,0x86,0xfa,0xbc,0xf7,0xd9,0xce,0x62,0xc6,0x18,0x57,0x18,0x14,0x4,0x2, 0x59,0x96,0xe1,0xc1,0x83,0x7,0x85,0x3e,0x7f,0x34,0x63,0x24,0xaa,0xff,0x8e,0x64, 0x6e,0x50,0xe2,0x78,0x8c,0x30,0xc,0x5d,0x7d,0xc7,0x32,0xc8,0xe6,0x32,0x8f,0x65, 0x6a,0x61,0x4e,0x33,0x66,0x71,0x9a,0xa8,0xa7,0x39,0xbb,0x69,0x35,0xe6,0x86,0xef, 0xb5,0x73,0x56,0x68,0x97,0x79,0xb1,0x15,0xdb,0x69,0xaf,0x8e,0xc6,0xcd,0x91,0x9, 0x41,0x88,0xd9,0xe2,0x4b,0x21,0xa6,0x6,0x22,0xa,0x72,0x81,0xd8,0x5e,0x6f,0x90, 0xa3,0xf7,0xf1,0x18,0x71,0x1c,0x97,0xea,0x57,0xac,0xb8,0xa0,0xcd,0x24,0xac,0xd2, 0x50,0x4d,0xeb,0x98,0x31,0x86,0xf5,0xf5,0x75,0x4b,0x45,0x85,0x9d,0x91,0xb8,0x3c, 0x43,0xce,0x33,0x12,0x5e,0x1a,0x2d,0x31,0xc6,0xe4,0xee,0xee,0x2e,0x6e,0xdc,0xb8, 0xe1,0x26,0x98,0x1d,0x96,0xf7,0xb4,0x3f,0xeb,0x16,0xb0,0x94,0x12,0x7b,0x7b,0x7b, 0x6e,0xc1,0x18,0x43,0xd8,0xd9,0x3f,0xc0,0x93,0xa7,0xdb,0x88,0xa2,0x21,0x4,0x7, 0x2,0x91,0xd7,0x54,0xd8,0xc3,0x69,0xe3,0xf0,0x3c,0x1e,0x31,0x1c,0xe,0x11,0x27, 0xa,0x60,0x12,0x4a,0x69,0x4,0xc5,0xa2,0xa8,0x4a,0x2a,0x5c,0x16,0xca,0xa9,0x71, 0x43,0x62,0xc,0x9c,0x38,0x18,0xa6,0x9b,0x8a,0xa3,0x3c,0xce,0xf9,0x1a,0x31,0x42, 0xde,0xdf,0x81,0x14,0x34,0xb,0x40,0x2c,0x83,0x30,0x21,0x48,0x10,0x38,0x38,0xd8, 0x31,0xd3,0x6a,0xe7,0x5,0xbc,0x89,0x0,0xc1,0xeb,0xb3,0xa4,0x9c,0xd3,0xb1,0xe8, 0xfd,0x97,0x30,0x56,0xf5,0x1d,0xf1,0xbc,0xe7,0x5a,0x9,0x1a,0xff,0xf5,0x32,0xc4, 0x38,0xcd,0xd0,0x23,0x42,0x2f,0xa,0x0,0x98,0xbc,0xd6,0x82,0xe5,0x8d,0xbb,0xc0, 0x8,0x86,0x98,0x93,0xd8,0xc9,0x32,0xd,0x2e,0x38,0xb4,0xc9,0xbd,0xfe,0x20,0x4b, 0x11,0x73,0x2,0x97,0x12,0x4c,0xe7,0x8d,0x90,0x32,0xce,0xf1,0x6c,0x67,0x17,0x6b, 0x6b,0x6b,0x20,0x95,0xaf,0xd1,0x34,0x4d,0x67,0xd2,0xdd,0xab,0x3d,0x66,0x9a,0xbe, 0xd7,0x60,0x90,0x53,0xc6,0xf,0x1e,0x3c,0x38,0xb4,0xa7,0xdf,0xc5,0x2e,0x2e,0x31, 0xb2,0xf0,0xd,0x5,0x0,0xbc,0xf7,0xde,0x7b,0x7f,0x85,0x31,0x86,0xc1,0x60,0x50, 0xca,0xc9,0xae,0x4a,0x6b,0xd4,0x4d,0x32,0xb,0x7d,0xad,0xb4,0x87,0x1,0x81,0x8b, 0x0,0x4f,0x9e,0x3c,0x73,0x9d,0xbd,0x6c,0x7e,0xb8,0xab,0xd6,0x2e,0xe4,0xc9,0x2d, 0xac,0xee,0xf5,0x7a,0xee,0x7d,0xec,0x67,0xf9,0x12,0x17,0xab,0x12,0xb7,0x78,0xde, 0xb3,0xad,0xce,0x9c,0x32,0x62,0x66,0xba,0x45,0x9f,0x40,0xd1,0xe0,0x79,0x5f,0xdf, 0x79,0xbd,0x44,0xda,0x49,0x87,0xe4,0x1b,0xb5,0x6d,0xcd,0xca,0x98,0x28,0x51,0x45, 0x76,0xde,0x5b,0xaa,0xa9,0x9a,0xfa,0x2a,0xa5,0x84,0x64,0xbc,0x48,0xfc,0x20,0xb7, 0xa6,0x92,0x24,0x41,0x9c,0xa5,0x25,0xa4,0x6f,0x91,0xb9,0xbf,0x96,0x16,0xd,0xab, 0xe1,0x16,0x45,0x91,0xa5,0xa2,0x18,0x15,0xa3,0x43,0x18,0x97,0x14,0x59,0xcc,0x3c, 0x51,0xca,0xbf,0x1b,0x86,0xa1,0xcb,0x82,0xaa,0x72,0xc3,0x4d,0x5e,0x8a,0x5f,0x5b, 0x91,0x4f,0xfe,0x5c,0xd7,0x49,0x69,0xc2,0x83,0x87,0xf,0x5d,0x51,0x91,0x1f,0x9b, 0xa8,0x1a,0x8b,0x3c,0x65,0x30,0x84,0x31,0xda,0x15,0xf1,0xf9,0xa9,0xb2,0x75,0xc5, 0x45,0xcf,0x33,0x55,0x74,0x62,0x34,0x8c,0xf5,0xd2,0x6d,0x1b,0x40,0xac,0x0,0x77, 0xcf,0x4c,0xc3,0xb4,0x33,0xa7,0x8a,0xb6,0xaa,0xd7,0xa7,0xb1,0x39,0xd4,0x11,0x3e, 0xff,0x34,0xce,0xd9,0x18,0x83,0x4c,0x19,0x48,0x49,0xb5,0x7d,0xb4,0x19,0xec,0x1a, 0xb0,0xb4,0x55,0xfe,0x3a,0x47,0xdb,0x82,0x83,0x65,0x29,0x42,0x19,0x40,0x5,0x1, 0x92,0x38,0xc6,0x78,0x1c,0xe3,0xca,0xc6,0xd0,0xd1,0x5c,0x49,0x92,0xb8,0xb5,0xd6, 0xb6,0x39,0x92,0x65,0x9,0x86,0xc3,0x21,0x9e,0x3e,0x7d,0xa,0x0,0x21,0x63,0x2c, 0xed,0x50,0xc5,0x25,0x45,0x16,0x35,0x2,0x61,0x72,0x7f,0x7f,0x1f,0x83,0xc1,0x0, 0x41,0x10,0x94,0x64,0xa2,0xab,0xd,0x8f,0x9a,0x90,0x85,0x95,0x66,0x6,0x72,0xf9, 0xf0,0x8f,0xf7,0xf6,0xb1,0xb3,0xbf,0x9f,0xab,0x67,0x16,0x5d,0xec,0x2c,0xba,0xc8, 0xeb,0x2f,0x18,0x64,0xe9,0xef,0xdc,0x49,0x8b,0x34,0x69,0x7,0x75,0x8e,0xd,0xe6, 0x2a,0xcd,0xba,0x82,0xb0,0x73,0x3c,0xca,0x9b,0xb6,0xb9,0x10,0xd7,0xfc,0x24,0x8b, 0xf7,0xac,0x11,0xd3,0x28,0x2,0xd1,0x99,0x86,0xb6,0x72,0x2d,0x84,0x99,0x9e,0xdf, 0x53,0x44,0x4d,0xa5,0xc4,0x11,0x21,0x59,0xd1,0x49,0x4f,0x14,0xbd,0x62,0x80,0xc3, 0xa2,0xc7,0xbd,0x9d,0x1b,0x96,0x8a,0xaa,0xa6,0xc7,0x2e,0xfa,0xae,0x56,0x89,0x16, 0x0,0xee,0xdd,0xbb,0xf7,0xf3,0xf6,0xd6,0x76,0x6,0xa3,0x43,0x16,0x0,0xd0,0xcf, 0xb2,0xc,0xc3,0xe1,0xb0,0x84,0x16,0xea,0x33,0x4f,0x66,0xb3,0x29,0x6c,0x1e,0x79, 0xfe,0xb,0x81,0x87,0x2,0x1f,0x3d,0x7a,0x8c,0x4c,0x19,0xac,0x87,0x61,0x51,0x75, 0x3a,0xed,0xfc,0x65,0xd,0x84,0x85,0xda,0xb6,0x52,0x1c,0x44,0x90,0xae,0xb,0x98, 0xef,0x89,0x12,0xba,0x79,0x5a,0x31,0x18,0xd4,0x64,0x3c,0x57,0x6b,0x83,0x9e,0xf5, 0xf4,0xe9,0x7c,0xaf,0xdb,0x9,0x7c,0x9f,0x93,0x40,0x87,0x8c,0x31,0x28,0x22,0x98, 0x34,0xc1,0x80,0xf5,0x10,0x84,0x1c,0xf0,0x65,0x39,0x38,0x41,0x20,0x97,0xef,0xcf, 0xc,0x7,0x19,0x3,0xce,0x19,0xb4,0xce,0x8d,0x85,0x22,0x3,0x21,0x73,0xc9,0x73, 0x5b,0xb8,0x37,0x1a,0x8d,0x5d,0x6d,0x92,0xbf,0x2e,0xad,0x83,0xd6,0x16,0x79,0x5a, 0x81,0xcf,0x28,0x8a,0x90,0x24,0xc9,0x97,0x2a,0xd2,0x40,0xdd,0xb8,0x4c,0xc6,0xa2, 0x1a,0xaf,0xb8,0x7f,0xff,0xfe,0xfe,0x47,0x1f,0x7d,0x84,0x5e,0xaf,0x37,0x57,0x88, 0xac,0xba,0x50,0xaa,0xa8,0x82,0xf3,0xbc,0x61,0xbd,0xd6,0x1a,0x4f,0x9e,0x7d,0xc, 0x11,0x84,0x60,0x85,0x64,0x41,0x20,0xa4,0xfb,0x77,0xde,0xd4,0x48,0x3a,0x2a,0x4a, 0x4a,0x1,0x32,0xb3,0x34,0x85,0xeb,0x46,0x56,0xd3,0x56,0xf4,0xb2,0x8e,0x99,0x2c, 0x9a,0x92,0x6,0x88,0x1,0xb1,0xd5,0x38,0x47,0xc6,0xd0,0xd8,0x61,0xee,0x94,0x3f, 0xfc,0x4c,0xa9,0xae,0xa5,0x5f,0x6b,0xc,0xa8,0x78,0xad,0x21,0x82,0x51,0x84,0x44, 0x64,0x85,0xa2,0x6c,0x15,0x3d,0xa2,0x68,0x80,0xa4,0xa1,0x8d,0x71,0xe8,0x42,0x8, 0x1,0xa1,0x14,0x42,0x21,0x5d,0xd2,0x89,0x8c,0x42,0x97,0x15,0xb5,0xb1,0xb1,0xe1, 0xd6,0x8c,0x52,0xaa,0xd4,0x8d,0xaf,0xcd,0x77,0xb3,0x4e,0x9c,0x6d,0xe5,0x5a,0x88, 0x8c,0x52,0x87,0x2c,0x2e,0x21,0xd,0x55,0xa5,0xa4,0xf6,0xf6,0xf6,0xd0,0xef,0xf7, 0x9d,0x6c,0x78,0x55,0xbf,0x7f,0x5e,0xca,0xac,0x35,0x16,0xf6,0xdf,0x42,0x8,0xec, 0x1e,0x1c,0x62,0xff,0x70,0x84,0x20,0xea,0x83,0x73,0x9,0x29,0x98,0xeb,0xfa,0xc5, 0x38,0x95,0x2,0xdb,0x16,0x66,0xfb,0x9c,0xea,0x3c,0xf9,0xee,0x6e,0xe4,0x46,0x61, 0xb5,0xaf,0x85,0x99,0x36,0x3f,0x5a,0x21,0xf4,0x70,0xd2,0xc9,0x8,0xc7,0x93,0x44, 0x1,0x80,0x1c,0x19,0x28,0x95,0x7,0xa3,0x7d,0x43,0x64,0x5,0x13,0xdd,0xba,0xa9, 0xf4,0x6f,0x71,0xc2,0x82,0x45,0x35,0xb7,0xe0,0x1,0x38,0x93,0x18,0x8f,0xc7,0x25, 0x1a,0xcb,0x2f,0x4,0xac,0xae,0xed,0x45,0x72,0x2d,0x45,0xbb,0x55,0x0,0x18,0x76, 0x86,0xe2,0x12,0x1b,0xb,0x5b,0x5c,0x1,0x40,0x8c,0xc7,0x63,0xd7,0xe3,0xb7,0x8a, 0x1a,0xaa,0x2a,0x95,0x75,0x1e,0x96,0x55,0xd5,0x64,0x2c,0x17,0xf3,0xdb,0xdd,0xdd, 0x45,0x92,0xa5,0xae,0x61,0x8b,0x45,0x13,0xd6,0x48,0x84,0x42,0x96,0x26,0xbc,0xdf, 0xb,0xc0,0x5f,0x10,0xfe,0x82,0xec,0xc,0x45,0x75,0x33,0x34,0xcf,0xf1,0xb9,0x3f, 0x1f,0x9f,0x7d,0x1a,0x99,0x57,0x55,0xb9,0x7b,0x21,0xa4,0x2b,0x66,0x9d,0x75,0x8e, 0x30,0x5d,0x3f,0x15,0xe7,0x8a,0x73,0xe6,0x1e,0x77,0xed,0x57,0x83,0xdc,0x58,0xf8, 0xf2,0xe3,0xd6,0x50,0x2c,0x23,0x25,0x63,0xb,0x6b,0x87,0xc3,0x21,0x8c,0x31,0x78, 0xf8,0xf0,0xe1,0xbe,0xdd,0x33,0xba,0x15,0x78,0xc9,0x68,0x28,0x9f,0x8e,0x62,0x8c, 0xd,0x94,0x52,0x6e,0x62,0x54,0x27,0xd6,0xbc,0x2c,0xa,0x9b,0x65,0x61,0xe3,0x15, 0x44,0x84,0x18,0x12,0xf,0x3f,0x7a,0x84,0x48,0x8,0x84,0x9c,0x21,0x94,0x1,0xc0, 0x2,0x4,0x32,0x42,0x50,0x68,0xf4,0xfb,0xd,0x91,0x2c,0xbf,0xa,0x3f,0x56,0xe2, 0xc9,0x3c,0x77,0xa3,0x72,0xcf,0x0,0x70,0xe2,0x79,0x8f,0x4,0x5b,0x6f,0x41,0x85, 0x9a,0x2d,0x56,0xa3,0x92,0x99,0x13,0x41,0x73,0x9,0x1,0x82,0xd6,0x2,0x8a,0x69, 0x8,0x12,0x39,0x22,0xba,0x80,0x54,0xe0,0x91,0xa8,0xb2,0xa,0x6d,0xa6,0xc1,0x30, 0x4a,0x14,0x6,0x51,0x8,0x32,0x0,0x7,0x3,0x19,0xd,0x70,0x86,0x50,0x70,0x64, 0x6e,0x5d,0xd8,0xc0,0xb7,0x0,0xe7,0x6,0x9c,0x1b,0x48,0xc6,0x11,0x8,0x86,0x9e, 0x14,0x18,0x4d,0x52,0x8c,0x53,0x8d,0x61,0x2f,0x2,0x48,0x83,0xc1,0x40,0xa9,0x34, 0x4f,0xb5,0x15,0x7c,0xa1,0x3a,0xb1,0x1f,0xaf,0xb4,0xd9,0x91,0x7,0x7,0x7,0xb8, 0x75,0xeb,0x56,0xe,0x85,0xce,0x33,0xe8,0xd4,0x8d,0xf3,0xa5,0xa1,0x1e,0x3e,0x7c, 0xb8,0x67,0x83,0xcc,0xcb,0x2c,0x82,0x6a,0xc6,0x85,0x45,0xa,0x71,0x1c,0x63,0x34, 0x1a,0x95,0xb2,0x9a,0x84,0x60,0x79,0x4f,0xed,0xc2,0x3,0xb2,0x88,0xa2,0x5c,0xed, 0xda,0xd1,0x4c,0xed,0xaf,0x7d,0x39,0x4e,0xb1,0x92,0xe7,0x78,0x41,0x59,0xb,0xbf, 0xee,0xe7,0x24,0x85,0x17,0xad,0xd3,0xd5,0x54,0xdd,0x5d,0xfe,0x3c,0xcc,0xd4,0x64, 0xf8,0xa8,0x23,0x8e,0xe3,0x69,0x36,0x63,0xa1,0xc2,0xd0,0x36,0x9b,0xcb,0x4f,0x5a, 0xb1,0xfb,0xc2,0x68,0x34,0xb2,0x2a,0xb4,0x5d,0xa0,0xfb,0x32,0x1a,0xb,0xcb,0x41, 0xee,0xed,0xed,0x21,0x8,0x2,0x44,0x51,0x74,0x24,0xfe,0xd5,0x72,0xad,0x16,0x69, 0xec,0xed,0x1f,0x60,0x7f,0x74,0x58,0x2a,0xc2,0xb,0x65,0x59,0xd3,0xc6,0x5,0xe9, 0x2c,0xed,0xc4,0x30,0xd3,0xb0,0xa5,0x4a,0x3,0x74,0xa3,0xba,0xaa,0x67,0x13,0x2, 0x56,0x51,0x1f,0x29,0xff,0x79,0x76,0xf1,0x8b,0xb3,0x8,0x6e,0x9f,0x44,0x1a,0x6d, 0x93,0x92,0xae,0x6b,0x94,0xc4,0x59,0xc9,0xd3,0x17,0xa2,0xbc,0x26,0x38,0x67,0x25, 0x8d,0x28,0xff,0x18,0x79,0x29,0xb4,0x96,0x56,0x32,0xc6,0x0,0xa6,0x7d,0x4c,0xc5, 0x3a,0x80,0x83,0xc1,0xc0,0xaa,0xd8,0x46,0xdd,0xa2,0xbb,0xc4,0x34,0x14,0x63,0x8c, 0xff,0xd6,0x6f,0xfd,0x16,0x6,0x83,0x1,0xa4,0x94,0x25,0xde,0x74,0xde,0xb0,0x99, 0x4f,0x76,0x32,0xfb,0x13,0xff,0xe3,0xbd,0x5d,0x18,0x8d,0xa2,0xc9,0x11,0x87,0x94, 0xbc,0xe4,0xf9,0x38,0x7e,0xd5,0x6,0xee,0xf2,0xdc,0x90,0xda,0x5e,0xd3,0x67,0xb9, 0x9,0x3c,0x67,0x3c,0x48,0x7e,0xbd,0x57,0x9e,0xd4,0x29,0xee,0x2d,0xe1,0xcc,0xab, 0xac,0x7d,0x63,0xb5,0x8a,0x73,0xa7,0x49,0xc2,0x46,0x29,0x3,0x21,0xc,0x4,0xa6, 0x45,0xa9,0x5c,0x0,0x1,0x17,0x48,0x58,0x7e,0xc7,0x8d,0x43,0x13,0x66,0x66,0x6d, 0x89,0x30,0x40,0x5c,0xf4,0xe2,0xb6,0x6,0xc5,0xa2,0x16,0x47,0xf9,0xb6,0x30,0xf0, 0x36,0x56,0x69,0x95,0x15,0xee,0xdd,0xbb,0xf7,0xf,0x19,0x63,0xff,0x4e,0x17,0xe8, 0xbe,0x64,0xc6,0xc2,0xd3,0x79,0x9,0xb3,0x2c,0x43,0xaf,0xd7,0x2b,0x79,0x13,0x6d, 0x16,0x63,0xd5,0x13,0xb1,0xaf,0xfb,0x78,0x7b,0x77,0x2a,0x10,0xc8,0xa,0xdd,0x27, 0xc6,0x5c,0xaa,0xac,0xf,0x9d,0x6b,0x1b,0xfb,0x74,0x46,0xe1,0x58,0xde,0xf3,0x79, 0xb7,0xe1,0x26,0x36,0x6d,0x4c,0x64,0xcf,0xa5,0xda,0xa0,0xe9,0xa2,0xa0,0x8c,0x93, 0x36,0x18,0x44,0x84,0xcc,0x68,0x48,0xcd,0x21,0x89,0x3,0x3c,0xbf,0x6e,0x56,0x3, 0x4c,0x32,0xe,0x45,0x26,0xd7,0xff,0xaa,0xac,0x1d,0xbf,0x3d,0xea,0x24,0x8e,0x91, 0xa8,0xc,0x6b,0xbd,0x8,0xc6,0xe4,0x35,0x4b,0x36,0xe0,0xdd,0x4e,0x92,0x24,0xcf, 0x58,0x34,0xc6,0x20,0xc,0x43,0x9b,0x25,0xf9,0xa5,0xce,0x50,0x5c,0x62,0x64,0xf1, 0xfe,0xfb,0xef,0xff,0xe4,0x93,0x27,0x4f,0x66,0xea,0x2b,0xda,0x2e,0x44,0xb,0x6f, 0x7d,0xc9,0x8f,0xdd,0xfd,0x3,0x4,0x51,0x58,0xe6,0x52,0x45,0x7d,0x56,0x7,0xaf, 0x70,0xaf,0x5d,0xd6,0x53,0x7b,0x64,0xb1,0xda,0x68,0xa2,0x5c,0x4d,0x6e,0x69,0xb3, 0xb3,0x42,0x16,0xf3,0xf6,0xb4,0x93,0x92,0x5b,0x69,0xa2,0xff,0x96,0x79,0xff,0xa6, 0x4c,0xbf,0xcc,0x68,0x48,0x25,0x21,0xa4,0x15,0x3f,0x9c,0x52,0x51,0x5a,0x7b,0x6, 0xa2,0x88,0x5f,0x94,0xd6,0x14,0xe7,0x60,0x8c,0x63,0x3c,0x1e,0x63,0xd8,0x9f,0x32, 0x47,0x79,0x12,0xa,0x7,0x96,0x48,0x69,0xb6,0xeb,0x3a,0x8,0x2,0x1c,0x1c,0x74, 0x9d,0x56,0x2f,0xa5,0xb1,0xb0,0x1e,0x2,0xe7,0xfc,0xc7,0x85,0x10,0xce,0x58,0x2c, 0x33,0xd1,0x6d,0x17,0x2e,0x3f,0xa7,0x7b,0x77,0x77,0x17,0x69,0x9a,0x62,0x38,0x1c, 0x4e,0x61,0xb1,0x2c,0xa3,0xa,0x47,0x41,0x79,0x5,0x48,0x9d,0xa1,0x38,0x9a,0xd7, 0xcc,0x5c,0x62,0x8a,0xc1,0xaa,0xa7,0xd2,0x9e,0xe5,0xbd,0x5d,0x54,0x6b,0x71,0xd2, 0xef,0xbd,0x6c,0xdc,0xa8,0xe9,0x1c,0xa6,0xc1,0xe5,0x3c,0x1d,0x5d,0xc8,0x22,0x95, 0xdd,0x90,0xeb,0x16,0x9,0x6d,0x66,0x4,0x36,0x39,0x37,0x2e,0x5e,0xc1,0xc,0x7, 0x93,0x2,0x93,0xc9,0x4,0x44,0x5b,0x6e,0xc3,0x77,0xb1,0x90,0x25,0xd6,0xb6,0xfd, 0x9c,0x28,0x8a,0xb0,0xb7,0xb7,0x7,0xc6,0x98,0xa0,0xb3,0xc,0x40,0x75,0xe3,0x4c, 0xc7,0xdc,0x6c,0xa8,0xc9,0x64,0xe2,0xaa,0xa8,0xdb,0x6e,0xd6,0x7e,0x23,0x24,0x6b, 0x60,0x6c,0xfc,0x61,0x7f,0x7f,0xbf,0xf4,0xbb,0xaf,0x90,0xe9,0x4e,0x88,0x73,0x8, 0x3e,0x4b,0x43,0x75,0xe3,0x62,0x52,0x2d,0xe5,0x61,0x9e,0xbb,0x6b,0xdb,0xb6,0x1f, 0x78,0x7b,0xd5,0xd9,0xf9,0xcf,0xb3,0x69,0xab,0x75,0x9a,0x6c,0x36,0x39,0xa4,0xd4, 0xe7,0xc2,0x19,0xc,0xe6,0x1e,0x97,0x52,0xba,0xbe,0x32,0xf6,0xb5,0x5a,0xeb,0xd6, 0xda,0x50,0x42,0x8,0xf7,0x5c,0xce,0xb9,0xeb,0x2d,0x83,0x2e,0xc8,0x7d,0x39,0x8d, 0x5,0x63,0x8c,0x1f,0x1e,0x1e,0x22,0x8a,0xa2,0x92,0x1,0x58,0x74,0xb8,0x62,0x1f, 0x53,0xc4,0x38,0x60,0x40,0x46,0x41,0x1b,0x60,0x7b,0x7f,0xc,0xce,0x1,0xce,0xbd, 0x89,0x5d,0x68,0x3d,0x39,0xcf,0x87,0x21,0xe7,0x5b,0x2b,0x62,0x81,0x4d,0xe2,0x81, 0x67,0x4e,0xa2,0x98,0x1,0x24,0x8,0x21,0x27,0x68,0x5,0x30,0x84,0x10,0x64,0x0, 0x28,0x28,0xc9,0x20,0x89,0x41,0x18,0x80,0x6b,0x82,0x30,0x80,0x24,0x56,0x3a,0x8e, 0xb2,0x1,0x2d,0x63,0x34,0x7b,0xa4,0x11,0x7,0x12,0x92,0x12,0x18,0xb6,0x6,0x22, 0xd,0xc5,0x39,0x18,0x71,0x10,0xa9,0x73,0xbf,0x7e,0x9a,0xe5,0xd5,0x14,0x42,0x0, 0x51,0x6,0xa4,0x3c,0x85,0x36,0x1c,0x9c,0xa5,0x79,0x9e,0xff,0x39,0xf,0x61,0x0, 0x6,0x9,0x66,0x8,0x3d,0x2,0x24,0x22,0xa4,0x30,0x20,0x69,0x10,0xaa,0x60,0xc6, 0x8,0x2f,0xd3,0xf0,0x69,0x19,0xe3,0xde,0xf4,0x3a,0xdb,0x5a,0x35,0x33,0x1a,0xa9, 0x32,0x20,0x21,0x0,0x26,0xc0,0x60,0x9c,0x12,0x42,0x35,0xa9,0x84,0x73,0x51,0xa8, 0x3d,0x33,0x44,0x3c,0xef,0xd7,0x9d,0x1a,0x60,0x14,0xab,0x7c,0xcd,0x21,0x47,0x1e, 0x4a,0xa5,0xb5,0xbd,0xb7,0xab,0x8a,0xb7,0x56,0xd0,0x13,0xc8,0x9b,0x28,0xf5,0x7a, 0x3d,0x70,0xce,0x71,0xef,0xde,0xbd,0x9f,0x6b,0xf8,0x4e,0xac,0x2b,0xd8,0xbb,0xa0, 0x34,0x94,0x7d,0xcc,0x18,0xe3,0x74,0x63,0xaa,0xba,0xf9,0x73,0x2d,0x10,0xcf,0x9b, 0xb1,0xe4,0xc6,0x2,0x2e,0x93,0x6a,0x3c,0x1e,0xcf,0xf0,0xa7,0x75,0x39,0xe9,0x79, 0x16,0x14,0x56,0x32,0xb8,0x2d,0x45,0x8c,0x84,0x26,0x90,0x6c,0x80,0x88,0x87,0xe0, 0x42,0x21,0x66,0x29,0x84,0x8e,0x30,0x88,0x25,0x92,0x20,0x29,0x16,0x52,0xae,0xed, 0x43,0x64,0xca,0x3d,0x94,0x17,0xb7,0xcf,0x59,0xb0,0x99,0xcc,0x7f,0x75,0xc6,0x5, 0x88,0x1,0xc,0x6,0x1,0x33,0x10,0x0,0x42,0x63,0x0,0x6d,0x20,0x58,0xdf,0xf5, 0x80,0x3e,0xaf,0x11,0x66,0x12,0x8c,0x9,0x24,0xd9,0x18,0x91,0xc,0x41,0x94,0x15, 0x55,0xca,0x3d,0x98,0x2c,0x4,0x63,0x93,0x73,0x3d,0xbf,0xc,0x13,0x30,0x39,0x80, 0xd1,0x1c,0x4a,0x6b,0x30,0x76,0x88,0x5e,0xd4,0x43,0x36,0x4e,0x1,0x39,0x65,0x58, 0x9a,0x68,0xd9,0xb3,0x99,0xa3,0xc,0x8c,0x99,0xa2,0x12,0x9b,0x66,0xfa,0xae,0xfb, 0xb4,0x6d,0x5d,0x90,0xdb,0x9e,0x63,0x4e,0x25,0x5,0x2e,0xc4,0x55,0x35,0x6e,0xf3, 0xb4,0xbb,0x6c,0xc6,0xa3,0x65,0x8,0x8a,0xcf,0xfc,0x52,0x83,0x81,0xeb,0x7a,0x5d, 0x5c,0x70,0x63,0xd1,0xd3,0x5a,0x23,0x8a,0xa2,0xd2,0xe4,0x69,0x7b,0xcf,0x9d,0xca, 0x2c,0x0,0x30,0x81,0x71,0x92,0x60,0x3c,0x1e,0x97,0x5a,0xa5,0xda,0xc,0xe,0x3f, 0x7,0x3c,0xf,0x6c,0xb3,0x95,0xcd,0x84,0x52,0x34,0x46,0xd8,0xdb,0x80,0x4e,0x33, 0x88,0x28,0xc3,0x38,0x4e,0xc1,0xc3,0x1,0x2,0x61,0xd0,0x43,0xa,0x31,0xe8,0xd5, 0x8a,0x29,0x3a,0xcf,0x95,0x16,0xc3,0xfc,0x63,0xd1,0x4a,0x24,0xc0,0x41,0x18,0x72, 0x6,0x23,0x24,0xc,0x33,0x60,0x21,0x41,0x4b,0x8d,0x31,0x52,0xf4,0xce,0x39,0x9d, 0x36,0xe5,0xfb,0xe0,0x2c,0x82,0x91,0xc,0xa3,0x89,0x1,0x24,0x87,0x30,0x29,0x7a, 0x32,0xc0,0xc6,0x80,0x43,0x51,0xef,0x9c,0x99,0xb0,0x21,0x88,0x34,0xb8,0x14,0xd0, 0x44,0x48,0xb2,0x5d,0x98,0x51,0x86,0x30,0x1c,0x62,0xcc,0x76,0x11,0xd2,0xe0,0x4c, 0xda,0xc3,0x2e,0x9a,0x1f,0x16,0xed,0xe7,0xaa,0xb1,0x53,0x9a,0x58,0x32,0x40,0x7b, 0xfd,0x29,0x66,0xe3,0x17,0xd3,0x6c,0xc3,0x24,0x49,0xc0,0xd6,0xfa,0xd3,0xc8,0x96, 0xc7,0x1e,0x2c,0x52,0x92,0xb6,0x2c,0x82,0x4d,0x4c,0x91,0x52,0xfa,0xf5,0x1b,0x33, 0x5d,0xf3,0xba,0x4c,0xa9,0xb,0x68,0x2c,0xec,0x8d,0x7e,0xf4,0xe8,0xd1,0xde,0x37, 0xbe,0xf1,0x8d,0x99,0xca,0xed,0xb6,0xf7,0xdc,0x5,0xc0,0x8a,0xcd,0xe9,0xf0,0xf0, 0x10,0x49,0xa6,0xd1,0xf,0x23,0xa7,0xb3,0x2f,0xe4,0xec,0x24,0x16,0x35,0x48,0x63, 0x55,0xc,0x5,0x0,0xb0,0xa0,0x7,0x75,0x0,0x44,0xa1,0x44,0xaa,0x52,0x48,0xb9, 0x86,0x0,0x1a,0x3c,0x64,0xd8,0xd5,0x11,0xee,0xfd,0xe1,0x47,0xae,0x8f,0xb2,0xfd, 0x1e,0x7e,0x46,0x98,0xc6,0xf1,0x8c,0xc1,0xa2,0xeb,0x2f,0x29,0x41,0xa,0x86,0x35, 0x11,0x60,0x9c,0x31,0xbc,0xf0,0xc2,0x26,0xe,0x76,0x33,0x8,0x12,0x90,0x26,0x4, 0x51,0x7a,0xce,0x33,0x6e,0x0,0x63,0x38,0x8c,0x22,0xf4,0x64,0x4,0x65,0x14,0x32, 0x15,0xe3,0xdd,0xf,0x3e,0x42,0xf4,0x88,0x40,0x46,0x9e,0xeb,0xe9,0x65,0x2,0x90, 0x3a,0x43,0x24,0x3,0xdc,0xb8,0x79,0xd,0xb7,0xae,0x6c,0x0,0x3c,0xc5,0x28,0x8d, 0xa1,0xa3,0x1,0x48,0x51,0xad,0xda,0xf2,0x59,0x19,0x8f,0x29,0xc2,0xe7,0xae,0x19, 0x18,0x71,0x1,0x96,0x8b,0xb9,0xe4,0x31,0x3f,0x28,0x90,0x6f,0x28,0xbc,0xac,0x42, 0xdf,0x29,0x4b,0xd3,0xd4,0x13,0x3,0x85,0xd3,0x8c,0xaa,0x63,0x11,0xaa,0x6,0xc3, 0x3e,0xc7,0x22,0x8c,0x30,0xc,0x91,0xa6,0x69,0xd7,0x5e,0xf5,0x32,0x22,0xb,0xdb, 0xe0,0xbd,0xaa,0x34,0xbb,0x68,0x31,0x30,0x18,0x18,0xe3,0xf5,0xf1,0x2d,0xda,0x42, 0x8e,0xc7,0xe3,0xfc,0x3,0xb9,0xa8,0xa5,0x9f,0xfc,0x54,0xd9,0x26,0x75,0xd9,0x55, 0x18,0x94,0x30,0x44,0x3d,0x6,0x50,0x80,0x2c,0x31,0x58,0xdf,0xc8,0xc3,0xb2,0xff, 0xe2,0xd7,0xbf,0x81,0xbf,0xf7,0xb3,0xbf,0x8a,0xdf,0xf8,0xff,0x3e,0xcc,0x17,0xa1, 0xd6,0x80,0x4d,0xf9,0xb5,0xf2,0xea,0x9c,0x83,0x16,0x7a,0xf6,0x8b,0x82,0x8c,0xb, 0x78,0x7d,0xc3,0x0,0x19,0x0,0xc9,0x4,0x3c,0xe2,0x30,0xd9,0x2e,0x58,0xff,0x45, 0x44,0xeb,0x1b,0xd0,0x2c,0x86,0x30,0xe7,0x7b,0x3d,0x43,0xa5,0x61,0x4c,0x86,0x20, 0x20,0x90,0x4a,0x11,0x5,0x7d,0x8c,0xb2,0x0,0x7f,0xf2,0x2f,0xfe,0x34,0xc0,0x2, 0xa4,0xe7,0xdd,0x1e,0x97,0x1b,0xf0,0x54,0xa0,0x27,0x19,0x3e,0xf9,0xea,0xb,0xf8, 0x73,0x5f,0xfa,0x5e,0xfc,0xc7,0x3f,0xf6,0x7d,0xd8,0x5c,0xcb,0xa0,0xf,0x34,0x48, 0x34,0x3b,0x2f,0x67,0x9d,0xd1,0x65,0x37,0xf8,0xe9,0xba,0xe4,0xe0,0xdc,0x16,0x64, 0x96,0x69,0xa9,0x3a,0xe9,0xf,0xd7,0x3a,0x80,0xcd,0xd2,0x50,0xf3,0x82,0xf5,0xbe, 0xb1,0xa8,0x49,0x9f,0x15,0x0,0x54,0x9d,0x3,0xda,0x6d,0xb7,0x17,0xcc,0x58,0xd8, 0x9b,0xea,0x53,0x46,0xf3,0x7a,0x58,0xd4,0x4c,0x27,0x0,0xac,0x64,0x5c,0x38,0xe7, 0x38,0x1c,0x8d,0x41,0x8c,0x97,0x6a,0x2b,0xe6,0xd5,0x54,0xf8,0x87,0x9b,0xa0,0x86, 0x40,0xfc,0x7c,0x37,0xbb,0x88,0x85,0x48,0xcd,0x8,0x5a,0x71,0x6c,0xae,0x45,0x48, 0x58,0x8c,0x9f,0xfc,0x99,0x7f,0x89,0x9f,0xfe,0xd9,0x7f,0x85,0x83,0x34,0x41,0xb8, 0x1e,0x22,0x1c,0x4,0x0,0x82,0x5a,0x8f,0xf0,0xb4,0xcf,0x3e,0xef,0x3f,0x27,0x80, 0xde,0x6,0xc,0x34,0x82,0x7e,0x4,0xa6,0x39,0x24,0xa5,0xe0,0x2a,0x86,0x11,0xe7, 0x4b,0xf3,0x18,0x36,0x0,0x78,0x6,0xa3,0x15,0xa4,0xe0,0x48,0xd3,0x4,0x22,0x64, 0x50,0x6c,0x8,0x16,0x84,0xe8,0x99,0xf3,0x45,0x3e,0x99,0x61,0xe0,0xbd,0x10,0x63, 0x3d,0xc1,0xbb,0x1f,0x3e,0xc3,0x5f,0xff,0x3b,0xff,0x18,0xbf,0xf1,0xaf,0xbe,0x86, 0xff,0xf9,0x6f,0xfd,0x7,0xb8,0xb9,0xce,0x71,0xa8,0x9a,0x8d,0x83,0xdf,0x10,0xec, 0x34,0x69,0xa8,0xe9,0xe7,0x4e,0x33,0xa3,0x78,0x21,0x8d,0xe3,0x8c,0x83,0xd1,0x30, 0x35,0xe8,0xc2,0x97,0xd2,0x31,0x59,0x6,0xa5,0x14,0xa2,0x50,0xba,0x50,0x99,0xa5, 0x96,0xe6,0xad,0xf5,0x6a,0x6c,0xc3,0x36,0x2b,0x2b,0x32,0xac,0x2,0x6b,0x2c,0x3a, 0x23,0x71,0x9,0x90,0x5,0x63,0x8c,0xfd,0xee,0xef,0xfe,0xae,0xeb,0x56,0x67,0x29, 0x95,0xb6,0xf7,0xbd,0xea,0x9d,0x68,0x3,0x8c,0x46,0xa3,0x72,0x5c,0xa2,0x88,0x57, 0x34,0xa1,0x8c,0x2a,0xb2,0x10,0x60,0x79,0xf5,0xef,0x39,0x5f,0x30,0xc3,0x15,0x2, 0x16,0x20,0x88,0x14,0x10,0x2,0xff,0xe0,0x9f,0xfe,0x1e,0x7e,0xf2,0x7f,0xf9,0x35, 0x28,0x71,0x15,0xfd,0xcd,0x1d,0x98,0x4c,0x96,0x8a,0x8,0x4b,0xd7,0xac,0x55,0x80, 0xfb,0x98,0x23,0x48,0x0,0x65,0x72,0x44,0x27,0xd,0x34,0x1,0x92,0x1b,0xa4,0xd0, 0x30,0x1,0x20,0xcf,0x39,0x3b,0x55,0xc9,0x51,0xbe,0xb9,0x21,0x80,0x52,0x1a,0xa1, 0x94,0x60,0x3a,0x6,0x38,0x81,0xf4,0x21,0xb8,0x1e,0x9c,0xeb,0xf9,0xad,0x11,0x21, 0x53,0x6,0x61,0x14,0x22,0xd5,0x29,0x68,0x6d,0x13,0xbf,0xf8,0xab,0xf7,0xf1,0xd7, 0xfe,0xdb,0x7f,0x84,0x9f,0xf9,0xdb,0x7f,0x1,0x82,0x4c,0x49,0xe2,0xfb,0xac,0xb5, 0xb7,0x4a,0xc9,0x12,0x9c,0x3,0x28,0xce,0xa5,0x2e,0xb,0x8a,0x55,0x9c,0x36,0x56, 0x16,0x3a,0xd4,0x45,0x66,0x53,0x2f,0xa,0x5c,0xe2,0x44,0xb5,0x67,0x45,0x33,0xd, 0x56,0xd9,0x48,0x8a,0xf4,0xfa,0x9f,0xff,0xf9,0x9f,0xff,0x34,0x80,0xaf,0xd5,0x39, 0xa0,0xdd,0xb8,0x98,0x34,0x14,0xb7,0x29,0x71,0x55,0xb9,0x81,0x85,0x34,0x14,0x63, 0x30,0xda,0xb8,0x94,0x3d,0x2b,0x7e,0x36,0x99,0x4c,0x5c,0xd6,0x4,0xe3,0x34,0xa3, 0xce,0x39,0xaf,0xae,0x82,0xe7,0x60,0x65,0x25,0x46,0x1a,0x18,0xf4,0x63,0x83,0x5e, 0x8f,0xe3,0xdb,0x3b,0x1c,0x3f,0xf9,0x3f,0xfd,0x3f,0x50,0xe1,0x0,0xe1,0x70,0x7, 0x5a,0x29,0x30,0x29,0xa0,0x69,0xda,0xbf,0x83,0x55,0x90,0x50,0x7a,0xca,0x31,0xb, 0x98,0x0,0x1,0x2b,0x36,0xe,0x65,0x0,0x92,0x8,0x21,0x90,0x18,0x83,0x40,0x4a, 0x18,0x4a,0xce,0xf5,0xfa,0x5,0xa9,0x0,0x89,0x0,0x99,0x56,0x10,0x51,0x0,0x95, 0x64,0xe0,0x4c,0x3,0xbc,0xf,0x4e,0x2,0xa9,0xcc,0xce,0xf7,0xfe,0xf2,0x9,0xa0, 0x37,0x20,0xd2,0x10,0x51,0x90,0x20,0x66,0x1f,0x83,0x6d,0x6c,0xe1,0x1f,0xfe,0x8b, 0xdf,0xc5,0x97,0xfe,0xcc,0x1f,0xc7,0xf,0x7d,0xef,0x67,0x4a,0xfd,0x59,0x96,0xcd, 0x14,0x3c,0xd,0x2a,0xaa,0x14,0x4f,0x4b,0x56,0xc7,0xe1,0x0,0x0,0x20,0x0,0x49, 0x44,0x41,0x54,0xf0,0x1d,0x2d,0xd4,0xc7,0xfd,0xaa,0x19,0x51,0x75,0xa8,0xa1,0x5a, 0x8,0xdb,0xb4,0xf6,0x6d,0xcc,0xc2,0xb2,0x10,0xdf,0xf7,0x7d,0xdf,0xf7,0xb3,0x8c, 0xb1,0xcf,0x75,0x6,0xe2,0xf2,0x18,0xb,0x99,0x65,0x19,0xd6,0xd7,0xd7,0x4b,0x3d, 0xb7,0xdb,0xc,0x6d,0x8a,0xc9,0x68,0x34,0x34,0x8,0x32,0x88,0x30,0x99,0xc4,0x18, 0x27,0x31,0x64,0x10,0x35,0xd4,0xf,0xcc,0xca,0x7a,0xf8,0x9f,0x47,0x9c,0xe5,0x9a, 0x37,0x9c,0x9f,0xbb,0x94,0x45,0x98,0x11,0x32,0x29,0xd0,0xf,0x22,0xfc,0x93,0xaf, 0xfc,0x16,0x1e,0x7f,0xf4,0xc,0xe1,0x20,0x4,0x65,0x2,0x2,0x1c,0x44,0xc5,0x22, 0xb5,0x9c,0x50,0xe5,0x74,0xc5,0xb1,0xad,0xde,0xe2,0xd4,0x5b,0x3,0x55,0x3c,0x8d, 0x83,0x31,0x83,0x14,0x6,0x4c,0x0,0x66,0x5,0x8a,0x6b,0x35,0x23,0xc0,0x68,0x8, 0xc6,0x80,0x34,0x6f,0xa2,0x43,0x90,0x60,0x3a,0x2b,0xae,0xcf,0x39,0xc7,0x2c,0xcc, 0x10,0xa0,0x14,0x42,0x2,0x99,0x9,0x72,0x35,0x57,0x33,0x6,0x64,0x84,0xff,0xf5, 0x9f,0xfe,0x1e,0xbe,0xf4,0xc7,0xdf,0x0,0xa9,0xac,0xf0,0xc4,0x9,0xc6,0x78,0xf1, 0x2,0xca,0x43,0x46,0x67,0x63,0x28,0x8,0x44,0xda,0x25,0x50,0xa4,0x59,0xe6,0xe2, 0x8b,0xb6,0x7,0x37,0xbc,0xb4,0x6d,0xa7,0xd,0x25,0x4,0xd2,0x34,0x45,0x28,0x4, 0x52,0x0,0x89,0x6,0xc,0x24,0x18,0xd3,0xae,0x97,0x45,0x5d,0x52,0x89,0xdf,0xbe, 0xd8,0xef,0x69,0x61,0xab,0xb9,0xad,0x2a,0x75,0x9a,0xa6,0xdf,0xed,0xb7,0x65,0x66, 0x8c,0xf1,0x4e,0xba,0xfc,0x62,0x8c,0xa6,0x95,0x29,0xed,0xa4,0xf3,0x8b,0x73,0x7c, 0xcf,0xa3,0x4d,0xdb,0x45,0xbb,0xf1,0xdb,0xb6,0xaa,0x9c,0x73,0x8,0xc9,0x6a,0x53, 0x65,0xfd,0x49,0xd9,0xe4,0xd,0xad,0xc2,0xb0,0x46,0xcd,0x68,0xc2,0xee,0xee,0x2e, 0xe2,0x38,0x5e,0xa9,0xf3,0xeb,0xc6,0xc9,0xd0,0x3c,0x7e,0x52,0x47,0x5e,0xb0,0xa6, 0xf0,0xf8,0xf1,0xe3,0x46,0xf,0xfd,0xdc,0x16,0x30,0xcd,0x9e,0x7f,0x5d,0xdb,0xe1, 0x6a,0x90,0xdb,0xfe,0xf4,0x1b,0x93,0xd9,0x9f,0xbe,0x2,0x83,0x5f,0x6c,0x5b,0x8d, 0x5d,0x56,0x3,0xe2,0x42,0x88,0x52,0x4b,0x2,0xe7,0xbd,0x74,0xe3,0xe2,0x22,0x8b, 0xf7,0xde,0x7b,0xef,0x3f,0x7c,0xf2,0xe4,0x89,0x4b,0x9b,0x5d,0xb6,0x75,0xa9,0x9b, 0x44,0x85,0xb1,0xc8,0x75,0x68,0xa8,0x31,0x25,0x76,0x5e,0x81,0x5e,0x95,0x27,0x3d, 0xef,0xc5,0xa9,0x95,0x2a,0x2a,0x62,0x19,0xd2,0x34,0x75,0x46,0x4f,0x53,0x9e,0xf3, 0xce,0x57,0xa0,0xa,0xb9,0x1b,0xc7,0x0,0x16,0xa6,0xdc,0xad,0x8f,0x88,0xc0,0x8b, 0x8d,0x30,0x4d,0x55,0x69,0x93,0x26,0xe6,0x1b,0x18,0x56,0x14,0x92,0x9e,0xcd,0x79, 0x52,0x21,0xeb,0xee,0x6f,0xc5,0x7e,0xa1,0x5c,0x1e,0xe3,0x9b,0xa2,0xf6,0x52,0xfc, 0xaf,0x30,0x7e,0xbe,0x26,0x54,0x9e,0x7c,0xc1,0xe6,0xa6,0x1,0x57,0xe3,0x70,0xfe, 0x9a,0xb4,0xc6,0x22,0x49,0x92,0x52,0x60,0xbb,0xa3,0xa3,0x2e,0x38,0xb2,0xd8,0xda, 0xda,0xfa,0xbb,0x0,0x10,0x4,0xc1,0x4c,0xde,0xf5,0x32,0x92,0x1f,0x7e,0x77,0xbc, 0xaa,0xb1,0x98,0xd2,0x31,0x34,0x63,0x38,0xce,0x3b,0x2d,0x71,0xde,0x70,0x72,0xa, 0x7c,0x76,0x1,0xd9,0x2c,0x92,0x6e,0x3c,0xdf,0xc8,0xc2,0xa7,0x6e,0xf2,0xf9,0x4c, 0xd3,0xc6,0x5c,0x95,0xf9,0xe8,0x9e,0x4b,0x67,0x7f,0x9e,0x9c,0x66,0xe7,0xe0,0x6c, 0xfa,0x39,0xcd,0x20,0x8e,0x3a,0x64,0xd1,0x56,0xbe,0xc4,0x37,0xa2,0xd5,0x7f,0x37, 0x20,0x8b,0x6e,0x5c,0x64,0x64,0x91,0x65,0x99,0xf3,0x50,0xfc,0x4a,0xd0,0xa3,0xe8, 0xdc,0xb8,0x4a,0xd1,0x4a,0x51,0x90,0x94,0x12,0x41,0x10,0x40,0xda,0x26,0x47,0xce, 0x88,0x50,0xd1,0x83,0x98,0x81,0x33,0xe,0x36,0x43,0x77,0x9e,0xaf,0xe7,0x6e,0xa5, 0x4c,0x7c,0x6f,0x4e,0xeb,0xbc,0x17,0x72,0xce,0x1f,0x77,0x8e,0xd4,0xf3,0x4f,0x43, 0xe5,0xb5,0x42,0xac,0xc8,0xd6,0x83,0x6,0x8c,0xa1,0xda,0x76,0xa6,0xe4,0x35,0x9a, 0x22,0xa2,0x53,0x37,0x1a,0x86,0x15,0x99,0x81,0x15,0x43,0x61,0xe7,0x62,0xdd,0xfa, 0x68,0xa,0x70,0x73,0xce,0xa1,0xb,0x64,0xc1,0x8b,0xda,0xc,0xc2,0xe2,0x1e,0xdc, 0x75,0x7f,0x63,0xe,0x7d,0xa5,0x40,0xd7,0x8b,0xfb,0xf2,0x20,0xb,0xb,0x51,0x8f, 0xea,0xcd,0x57,0xa1,0x6c,0x51,0xd9,0xe9,0x7e,0xf,0xb8,0x28,0x9a,0xa6,0x4,0x8, 0xc3,0x30,0x37,0x1a,0x45,0x36,0x45,0x93,0xcc,0xc7,0xaa,0x20,0xb,0xff,0xbb,0xd9, 0x20,0xbc,0xfd,0xd9,0xb6,0x93,0x60,0x37,0x56,0x77,0x68,0x93,0x95,0x1c,0x1,0x9f, 0x7e,0xad,0xcd,0xd2,0x3b,0x63,0x54,0xd1,0x94,0x20,0x51,0xa2,0x8b,0x39,0x55,0xd6, 0xe,0xcd,0xa4,0xa5,0xfb,0xeb,0xdb,0xd7,0xb9,0xaa,0x8b,0x75,0x54,0x8d,0x4e,0x93, 0xd3,0x28,0x84,0xb0,0x48,0xa5,0xe3,0x62,0x2f,0x13,0xb2,0xf0,0x37,0x6c,0x9f,0x56, 0x6a,0xad,0xc7,0xef,0x41,0xe3,0x34,0x4d,0x4b,0xd,0xe3,0xad,0x17,0xe2,0xeb,0x44, 0x9,0x21,0x5c,0x5f,0xb,0x9f,0xb2,0xaa,0xf3,0xe2,0xce,0xd9,0x5c,0x94,0x33,0xb5, 0xfc,0x58,0x4a,0x17,0xe4,0x7e,0xfe,0xbd,0x27,0xce,0x5d,0xc3,0x20,0x6d,0x3b,0xc8, 0x91,0x71,0x12,0x1b,0x8b,0xdc,0xe6,0xb3,0x9e,0x9f,0x75,0xf4,0x91,0xad,0xdf,0xae, 0x3a,0x5b,0x2,0xf3,0x8c,0x85,0x0,0x81,0x6a,0x63,0x94,0x7e,0x2a,0x6d,0x13,0xc2, 0xb0,0xac,0x41,0x61,0x2c,0xba,0xc2,0xbc,0xcb,0x62,0x2c,0xac,0xae,0x93,0xa3,0x5d, 0x2a,0xbc,0x66,0x1b,0xcf,0x9b,0x31,0xab,0xba,0x4a,0xa5,0xd7,0x4b,0xc6,0x67,0xe4, 0x2,0xa6,0x7c,0xa8,0x1,0xe7,0x72,0x46,0x52,0x60,0x95,0x32,0x8d,0xf2,0x2,0x28, 0xe,0x32,0x53,0x44,0x61,0x8c,0x81,0x1,0x21,0xa8,0x50,0x54,0xdd,0x78,0x1e,0x69, 0xa8,0x29,0xb2,0xe6,0x9c,0x3,0x8c,0x83,0x19,0x56,0x8a,0xc5,0xcd,0xa0,0xb,0xb6, 0x6a,0xdf,0xa1,0xe,0x89,0x9b,0xd2,0x63,0xbe,0x21,0xf1,0xbf,0x57,0xdb,0xec,0xc3, 0xba,0x75,0x69,0x69,0x6b,0x0,0xa2,0xe6,0x9c,0x3a,0xa3,0x71,0x51,0x91,0x85,0x4d, 0x6b,0x6d,0x12,0x16,0x5b,0x68,0x30,0x18,0xc0,0x59,0x9e,0x6d,0x91,0x65,0x99,0x2b, 0xc8,0x3,0x8,0x42,0xe4,0xde,0x1b,0xb3,0x1e,0x9,0x8,0x9c,0x4c,0x9,0xc9,0xf8, 0xc6,0xca,0xbe,0xa7,0x9f,0xca,0x5b,0x35,0x4e,0xed,0xb3,0xa5,0xf8,0xb1,0x17,0x22, 0x15,0x9b,0xa,0xb4,0xb7,0x0,0x61,0x40,0x4,0xf0,0xe,0x5c,0x3c,0xd7,0x83,0xfc, 0x39,0x67,0x34,0x18,0x47,0xd1,0x71,0x90,0xc0,0x44,0x81,0x28,0x18,0xab,0xd4,0xfb, 0xf0,0x33,0x47,0x15,0x8c,0x59,0x49,0x8e,0x1c,0xeb,0xd8,0x8f,0x56,0x9a,0x10,0xf0, 0x72,0xd0,0x9d,0x8,0x79,0x7f,0x6e,0xa6,0x0,0x18,0x8,0xce,0x91,0x19,0x3,0x29, 0x25,0xb2,0x34,0xf5,0x74,0xdc,0xf2,0x98,0x47,0xdb,0xe2,0x5b,0x7f,0xad,0xda,0xbe, 0xdc,0x85,0x63,0xc8,0xbc,0xf5,0xd9,0x19,0x88,0x8b,0x82,0xba,0xeb,0x3c,0x0,0xdb, 0xe,0xb5,0x2e,0xd7,0x7a,0xd9,0x46,0x2f,0x3e,0xa4,0x65,0x73,0xa4,0xc7,0xe7,0x49, 0x92,0xcf,0x7b,0x6e,0x55,0x20,0xad,0xce,0xab,0x3a,0xc9,0x8e,0x7b,0x8b,0x5a,0x5e, 0x76,0xe3,0xa2,0x23,0xf,0x56,0x33,0xa7,0xce,0xae,0x7f,0x78,0xdb,0xe6,0x58,0x8b, 0xce,0x67,0x9e,0x4c,0x49,0x9b,0x6c,0xc7,0xa6,0xbd,0xc1,0xbe,0x7d,0x37,0x53,0x2e, 0x9,0xb2,0xf0,0xf3,0xb5,0x8f,0xb2,0x19,0x56,0x33,0x34,0xfc,0x8c,0xaa,0x3a,0xa1, 0xc0,0xa6,0xc9,0x7e,0x94,0x4d,0x79,0x11,0xc2,0xb0,0xa9,0x84,0x47,0xf6,0x3c,0xa9, 0xfa,0xde,0x5d,0x71,0xea,0x85,0x44,0x18,0xbe,0x84,0xc6,0x2,0x8a,0xc7,0x1a,0x8c, 0xbc,0x62,0xfe,0xb4,0x1d,0xe9,0x45,0xd9,0x4a,0xb3,0x99,0x52,0x8b,0xd6,0x5b,0xb9, 0x88,0x16,0xd,0xdf,0x6f,0xfe,0x1a,0xb4,0x6b,0xbb,0xd0,0x87,0xfa,0x24,0x63,0xec, 0x5f,0x77,0xa8,0xe2,0x12,0x18,0x8b,0xbc,0xa1,0x8a,0x38,0x52,0x70,0xbb,0xe,0xa6, 0x5a,0x63,0xd1,0xa6,0x4f,0xc5,0x3c,0x8f,0xa8,0x29,0x86,0x51,0x57,0xb4,0x77,0x5a, 0xf3,0x34,0xa7,0xa1,0x4c,0xc3,0xe6,0x72,0x3e,0x1a,0x41,0xdd,0x38,0xe1,0xad,0x78, 0xce,0x3d,0xac,0x6b,0x4,0xb4,0x4a,0x8e,0x43,0x1d,0x92,0xaf,0xae,0xad,0x6a,0xf2, 0xc8,0x71,0xfa,0x71,0xd4,0x39,0x78,0x6f,0xbf,0xfd,0xf6,0x5f,0x4,0xf0,0x9f,0x56, 0xce,0xab,0x5b,0x18,0x17,0xd0,0x58,0x30,0xad,0xb5,0x53,0x91,0x3c,0x4a,0xe3,0xa3, 0xea,0x26,0x6e,0x8c,0x29,0xb,0x9c,0x1d,0x51,0xc2,0x63,0xde,0x42,0x9d,0xa7,0xbf, 0x7f,0x7a,0x9c,0xc0,0x54,0x2,0x5,0xc,0x20,0xd2,0xe8,0xb2,0x6,0xbb,0xb1,0x2a, 0xa8,0x68,0x11,0x12,0xa8,0x26,0x91,0xcc,0x88,0x12,0x2e,0xb1,0x3e,0xfd,0xe7,0xf7, 0x7a,0xbd,0x2f,0x76,0x77,0xe1,0x12,0xd1,0x50,0x47,0xe5,0x60,0xeb,0xbc,0x94,0x3a, 0x4f,0x67,0x19,0x44,0xb1,0x8c,0xd7,0x53,0x95,0x8,0x59,0x94,0xf2,0x77,0x92,0x74, 0x45,0xfe,0x79,0xdd,0xa4,0xba,0xc8,0x9b,0x2f,0xe3,0x54,0x3b,0x5f,0x4f,0x1b,0xd1, 0x2e,0xeb,0xa0,0x55,0xd7,0x42,0x7d,0xac,0x65,0x96,0x31,0x68,0xbb,0xc6,0xe6,0x49, 0x98,0xb,0x21,0xbe,0xbb,0x43,0x12,0x97,0xc4,0x58,0xd4,0x4d,0x9a,0xba,0x8d,0x77, 0x99,0xe1,0x43,0xdf,0x79,0xa8,0x60,0x99,0x18,0xc6,0x49,0x18,0x97,0xa3,0xa0,0x9, 0x6,0x5e,0xe,0xe1,0x31,0x3,0x50,0x17,0xe4,0xbe,0x90,0x46,0x82,0xd5,0x78,0xe4, 0x9c,0x0,0x5a,0x6d,0x59,0x9a,0xb6,0x1b,0xfb,0x49,0x26,0x6c,0xac,0x8a,0xc1,0xec, 0xc6,0xd9,0x19,0xb,0x66,0xe3,0x14,0x7e,0x86,0x83,0x2f,0x4b,0xbc,0xcc,0xe4,0x6c, 0xf2,0x72,0xda,0x4,0xb9,0xdb,0x4c,0xf8,0x36,0xc8,0xe6,0x24,0x85,0x8,0x69,0xe, 0x92,0x41,0xb7,0x48,0x2e,0x86,0x81,0xa0,0x1a,0x6d,0xf9,0x1a,0xa7,0xa1,0xa6,0x9c, 0xe0,0xd4,0x8d,0x45,0xdb,0xf5,0xd7,0x26,0x59,0xe4,0x28,0x9f,0x53,0x47,0x4f,0xf9, 0xc9,0x2c,0xe7,0xd5,0xdb,0xa3,0x1b,0xe7,0x63,0x2c,0xa8,0xae,0x72,0xba,0xb5,0xc7, 0x60,0x8,0xc4,0x8b,0xba,0x8,0xc3,0x0,0xc3,0x40,0x60,0x20,0x70,0x88,0x22,0x27, 0xdc,0x66,0x98,0x70,0x32,0x60,0x46,0x3,0x10,0xd3,0xba,0x8a,0x42,0xa3,0x86,0x37, 0x64,0x9d,0x2c,0x3a,0x3,0xbe,0xc0,0x53,0x22,0x60,0x2e,0x2d,0xb5,0x38,0xf6,0x31, 0x45,0x15,0x9c,0xf3,0xbc,0xbf,0x36,0x71,0x0,0xba,0x9b,0x4d,0x17,0x60,0x58,0x9d, 0xa7,0x69,0xb2,0x82,0x17,0xb4,0x36,0xde,0x3d,0x26,0x7e,0x2e,0x9,0xa2,0xcb,0x28, 0x3f,0x57,0x91,0x3d,0xe7,0x1c,0xd2,0x70,0x28,0x28,0xaf,0x8e,0xa9,0xe8,0xc1,0xc1, 0x19,0xc8,0xf0,0xda,0xcd,0xbe,0x49,0xf2,0xa4,0x9a,0x6d,0x65,0x9f,0xeb,0x39,0x66, 0x5d,0x21,0xde,0x45,0x47,0x16,0x7e,0xb5,0xaa,0xdf,0xc7,0xa2,0xd5,0x64,0x46,0x5, 0x41,0x58,0x9d,0x1a,0x66,0x16,0xd2,0x4b,0x67,0x25,0x43,0xde,0x84,0x34,0x9a,0x6a, 0x45,0x66,0x17,0x6b,0xbd,0xf1,0xa4,0x36,0x1e,0x69,0x37,0x56,0x1b,0x59,0xe4,0x37, 0xb2,0x74,0x8f,0xf3,0x3b,0xae,0x5b,0x6d,0xe0,0xab,0x10,0xb3,0x58,0x44,0x33,0xcd, 0x43,0xf3,0x75,0x6b,0x60,0x1e,0xca,0xa8,0x7b,0x5d,0x47,0xc7,0x5e,0x1e,0x63,0xd1, 0x18,0x7c,0x6e,0xb3,0x10,0x6c,0xa,0x69,0x39,0x4d,0xf,0x8d,0x13,0xb6,0xe9,0xf3, 0xce,0x72,0x51,0x55,0x9b,0x35,0xcd,0xbd,0x1e,0x36,0x66,0x31,0x7d,0xf1,0xdc,0x8d, 0xa4,0x1b,0xcf,0x39,0x25,0xc5,0xea,0xfb,0x52,0x5f,0xa4,0xe2,0x4c,0x1,0x6,0x46, 0x38,0x91,0x74,0xda,0x55,0x93,0xe7,0xe9,0xc6,0x19,0xd0,0x50,0x3e,0xa2,0x58,0xa6, 0x7,0x77,0x89,0xf2,0x29,0xda,0x3e,0xb6,0xad,0x24,0xad,0xf3,0xfc,0x57,0x9,0xda, 0xcf,0xa3,0xc1,0xaa,0xc5,0x5b,0xdd,0x78,0x8e,0x47,0x91,0xb0,0x30,0xa5,0xa0,0xa6, 0x54,0x14,0x2f,0x1c,0xa1,0xa6,0x84,0x86,0xf3,0xde,0x28,0xdb,0xac,0x1b,0xd7,0x7, 0xa3,0x66,0x4d,0x1f,0x67,0xed,0x79,0xe8,0x62,0xb7,0x9b,0x44,0x97,0xc3,0x58,0x30, 0xbf,0x98,0xce,0xd5,0x49,0xb4,0x55,0x9c,0x45,0x3d,0x2a,0x31,0x4b,0x78,0x2a,0xbe, 0xc8,0xe0,0x49,0xb7,0x55,0x5d,0x64,0xf0,0x8e,0x4e,0x8b,0x99,0x62,0xf9,0x75,0x15, 0xdd,0x17,0xc6,0x66,0x54,0x9c,0x3,0x37,0x17,0x9,0xe7,0xee,0xe0,0x2c,0x5a,0x3b, 0x75,0xe8,0xa0,0x9,0xc1,0xd7,0xd1,0x50,0xcb,0x7e,0x17,0x5f,0xf6,0x23,0xcb,0xb2, 0x5f,0xed,0x66,0xcf,0x25,0x41,0x16,0x56,0xb0,0xaf,0x4a,0xcf,0xb4,0xda,0x34,0xd9, 0xb4,0x1,0x8b,0xdf,0x14,0xc5,0xe0,0xf4,0x6a,0x1d,0x4e,0x3,0x45,0xd4,0x79,0x6b, 0x1d,0xbc,0xbe,0x4c,0x63,0xb1,0xd1,0xb7,0xd1,0xab,0xa6,0x9a,0x85,0xf3,0x18,0x36, 0x63,0x71,0x51,0xba,0x2c,0xab,0xe9,0x7b,0xcf,0xc1,0x40,0xec,0x68,0x6a,0xd,0xfe, 0x3a,0x19,0x8d,0x46,0xbf,0xd2,0xcd,0x9f,0x8b,0x37,0x78,0xcd,0xc6,0x68,0x6c,0x7b, 0xd0,0xa3,0xf2,0x8f,0x7e,0xb3,0x15,0xab,0x5e,0x5b,0xdd,0x78,0xe7,0x65,0x58,0x9d, 0x14,0x2c,0x6e,0x5a,0xe0,0x75,0x7,0x67,0xac,0x36,0x3,0x6b,0xe1,0x22,0xe1,0x5d, 0x40,0xfb,0xa2,0x8e,0xb6,0x81,0xde,0xa6,0xcd,0xf8,0x3c,0x8e,0xaa,0x93,0xd7,0xa6, 0x96,0xe2,0x24,0x51,0x3b,0x11,0xe1,0xeb,0x5f,0xff,0xfa,0xff,0x5d,0xfc,0xde,0x2d, 0x8e,0x8b,0x8c,0x2c,0x18,0x63,0xec,0xb7,0x7f,0xfb,0xb7,0x4b,0x34,0x90,0x85,0x97, 0x6d,0xea,0x2c,0x7c,0x16,0x2a,0xf,0x70,0x17,0x41,0x6e,0x32,0x85,0x1c,0x46,0xb3, 0xa1,0x38,0x89,0xc9,0x7b,0x9a,0xca,0xb2,0xf3,0xa1,0xff,0xf9,0xa3,0xa6,0x6e,0x9c, 0xc0,0x86,0x67,0xff,0x6f,0xe7,0x28,0x4c,0x3e,0xa5,0x89,0x6a,0xf9,0xa7,0x55,0xc6, 0x9a,0x6d,0xfa,0x6a,0x2f,0x6b,0x18,0x9b,0xea,0x2c,0xfc,0x38,0xe7,0x3b,0xef,0xbc, 0xf3,0xad,0x6e,0x1d,0x5c,0xe,0x1a,0xa,0x41,0x10,0x20,0x8e,0x63,0x28,0xa5,0x10, 0x45,0x91,0x6b,0x6,0xd3,0x66,0x2,0x18,0x12,0x90,0x45,0x75,0xab,0x26,0x3,0xc6, 0x25,0xc2,0x20,0x40,0x92,0xa4,0x30,0xe0,0x65,0xc8,0x2a,0x24,0x88,0x7b,0x10,0x1e, 0x1a,0x96,0xfb,0xe7,0x45,0xad,0x6,0x1,0x4e,0x57,0xaa,0xcd,0xe2,0xa4,0x13,0x5c, 0x68,0x55,0xfe,0x37,0x5f,0x14,0x2,0x82,0x8,0xc4,0xa,0x75,0x5e,0x93,0xb,0x2f, 0x6,0x10,0x50,0x4c,0x77,0x41,0xee,0xe7,0x7c,0x30,0xaf,0x99,0x11,0x31,0xfb,0xbf, 0x3c,0xb0,0xcd,0x61,0xbb,0xcc,0xc9,0x95,0xa5,0x26,0x5d,0xa2,0x45,0x8d,0xa2,0x2c, 0x0,0x10,0x67,0x79,0x5d,0x45,0xf1,0x37,0x1,0x6,0x29,0x65,0x2d,0x92,0xf7,0x6b, 0x28,0x7c,0x9,0xa0,0x3a,0xb4,0xcf,0x39,0x77,0xfb,0x4,0x3c,0xe,0xaf,0xab,0xb5, 0xb8,0xd8,0x34,0x14,0x9,0x21,0x66,0xea,0x2b,0x96,0xa9,0xa0,0xae,0x42,0x61,0x2b, 0x4a,0xb8,0xc,0x15,0xe5,0x6f,0xd8,0x2b,0xe5,0xa9,0x35,0x79,0x5c,0xd0,0x1d,0xaa, 0xb8,0x80,0xd4,0x93,0x3f,0xa7,0xeb,0x3a,0xe5,0xad,0x2a,0x9a,0x68,0x46,0xc0,0x34, 0x83,0x8,0xe6,0xd1,0x54,0x75,0xfa,0x52,0x4d,0x9f,0x63,0xd9,0x7,0x74,0x15,0xaa, 0x97,0x7,0x59,0x48,0x29,0x6b,0x8b,0xf2,0xda,0xc5,0xf,0x72,0xe5,0x55,0xfb,0x7c, 0xce,0x39,0xc2,0x30,0x5c,0x1a,0xe6,0xd6,0x9,0x9c,0xb5,0x89,0xa1,0x1c,0x77,0xc3, 0x6e,0x92,0x3f,0xaf,0xa3,0xc8,0x9c,0xde,0x15,0x63,0x2e,0xf6,0xd1,0xd5,0xe4,0x5d, 0x10,0x83,0x51,0xf4,0xb2,0x26,0xee,0xf7,0xb4,0xae,0xa7,0x78,0x56,0xa9,0xfd,0x6f, 0x5d,0xbc,0x62,0x9e,0xac,0x7f,0x5d,0x51,0x9e,0xdf,0xd4,0xa8,0x29,0x6d,0xbe,0xce, 0xf9,0x53,0xca,0x55,0x86,0x2b,0xdf,0xf9,0xec,0xd0,0xc5,0x5,0xa7,0xa1,0xfc,0x6e, 0x79,0xd5,0xc0,0xd9,0x52,0x9b,0x2e,0x33,0x88,0xa2,0x68,0x29,0x89,0x8d,0x92,0x62, 0xec,0x9,0x7a,0x56,0x27,0x62,0x40,0x4a,0xdf,0xa3,0xe8,0xd5,0x41,0x4,0x2,0x75, 0xfd,0xc1,0x2e,0x2,0xd,0xe5,0xcd,0xb9,0x45,0xa9,0xa7,0xab,0x7a,0xfe,0x6d,0x5, 0x36,0xad,0xde,0x5b,0x53,0x93,0xb3,0x79,0x31,0xc4,0x3a,0x15,0x4,0x63,0xc,0x8a, 0xe4,0x98,0xe,0x59,0x5c,0x6,0x1a,0x8a,0x31,0xc6,0xc2,0x30,0x84,0x31,0x6,0x4a, 0xa9,0x63,0x79,0x36,0xf6,0xf7,0x3a,0x63,0xd1,0x24,0x76,0x36,0x8f,0xb,0x66,0x9e, 0x7,0x7f,0x6e,0x87,0xd3,0x98,0x6a,0x47,0xa5,0x75,0xe3,0xf9,0x34,0x18,0x9c,0x50, 0xab,0x77,0xd4,0xb4,0xf1,0x3e,0x4f,0x69,0xd5,0x3e,0x55,0x5c,0xcd,0x56,0x6c,0x83, 0xd6,0xab,0xd7,0xc3,0x1a,0xe,0xa5,0x94,0x8d,0x7f,0x98,0xca,0xf3,0xbb,0xc5,0x71, 0x81,0x69,0xa8,0x5d,0x0,0x5b,0x59,0x96,0xa1,0xdf,0xef,0x2f,0xbd,0x19,0xe6,0x86, 0x60,0xaa,0xaf,0x13,0x45,0x41,0x9,0x9d,0xb4,0xc9,0xca,0x58,0x55,0xf5,0x4a,0xb7, 0x39,0x80,0xb9,0x6a,0x5e,0xc6,0x28,0xaf,0xe8,0xa5,0xce,0x68,0x5c,0x8,0xf,0xca, 0x3a,0x32,0x5,0xca,0x60,0x66,0x36,0x66,0xb1,0xaa,0x34,0xd4,0x32,0xc6,0x2,0x80, 0x33,0x16,0x64,0x14,0x78,0x51,0x3c,0x3b,0x2f,0x36,0xd3,0xe4,0xcc,0x59,0xe7,0xd2, 0xee,0x17,0xdd,0xb8,0x4,0xc8,0x82,0x88,0xe8,0xd7,0x7e,0xed,0xd7,0xfe,0x2d,0x0, 0xc8,0xb2,0xcc,0x4d,0x84,0xb6,0x6,0xa3,0xce,0xb,0xeb,0xf5,0x7a,0x2e,0xdb,0xa9, 0xca,0x89,0xce,0x33,0x1c,0xab,0xb8,0xf8,0xdc,0x79,0xa2,0xcc,0xe7,0xc2,0x50,0x67, 0x28,0x2e,0xd8,0xb0,0xf7,0xb5,0xd8,0xe,0x9d,0x7,0x7e,0x5c,0xf9,0xef,0x33,0xff, 0xe,0x73,0xd6,0x6e,0xb5,0xc5,0x6a,0x9d,0x63,0xd4,0x86,0xe6,0x22,0x22,0x68,0xad, 0x6d,0x7c,0xb2,0x5b,0x8,0x97,0xc1,0x58,0x0,0xc0,0x3b,0xef,0xbc,0xf3,0xd,0xc6, 0x98,0xa3,0xa1,0xea,0x28,0xa4,0x79,0x1b,0xbd,0xdf,0x7,0x3,0xc8,0x63,0x20,0x9c, 0xf3,0x19,0x23,0xd1,0x64,0x64,0x56,0x7b,0xae,0x19,0x27,0x63,0x6d,0x17,0x9a,0x60, 0x5d,0x2b,0xd5,0x8b,0x44,0x41,0x1,0xb3,0x73,0x9a,0x73,0x5e,0x4a,0x31,0x6d,0xb3, 0xb1,0x3e,0xf,0xc8,0xa2,0x1a,0xaf,0xf0,0x33,0xbf,0xea,0x1c,0xbb,0xba,0x3d,0xc0, 0x4a,0x3,0xd9,0x76,0xcc,0xde,0xfb,0x31,0x56,0x5c,0x18,0xd6,0xc9,0x1f,0x5c,0x4c, 0x63,0x1,0x20,0x6,0xf2,0xec,0x86,0x65,0xb5,0x62,0x58,0x41,0x57,0x12,0xe3,0x60, 0x4c,0x40,0x67,0xa,0xbd,0x50,0xa2,0xd7,0xeb,0x41,0x1b,0x20,0x33,0x3a,0x7f,0x56, 0x31,0xc1,0x38,0x79,0xf5,0x1b,0x34,0x5b,0xcb,0xc1,0x19,0x95,0xe,0x76,0xce,0x7, 0xc0,0x21,0x8c,0x1,0x43,0x86,0x1f,0xfa,0x13,0x9f,0x47,0xaf,0x2f,0xa0,0x4c,0x86, 0x4c,0x8c,0x11,0xd0,0x30,0xaf,0x15,0x61,0x66,0xe6,0x60,0x9c,0x0,0x66,0xc0,0x8b, 0x8b,0xde,0x74,0xb4,0xb9,0x61,0xf3,0xe,0xc6,0x4,0x48,0x67,0xe0,0x42,0xc3,0xb0, 0x18,0x5a,0x12,0x40,0x9,0x18,0x27,0x18,0x12,0xe7,0x6f,0x6a,0x59,0x9a,0x5f,0xf, 0xc3,0xc0,0x98,0x0,0x37,0x4,0x81,0x1c,0xc1,0xa,0x32,0x67,0x32,0xe1,0xe7,0x1d, 0x4,0xd,0xa9,0x7a,0x10,0x9a,0x40,0x88,0x61,0x44,0x4,0xa8,0x1,0x44,0x1c,0xe3, 0xc7,0x7e,0xf0,0xf3,0x45,0x50,0x18,0xc5,0x5c,0x30,0xee,0x38,0xfb,0x79,0x68,0x6a, 0x3f,0x3f,0x47,0x40,0x80,0x14,0xc,0x9c,0x51,0x8d,0x21,0x60,0x0,0x38,0x98,0xd1, 0x60,0x26,0xdf,0xdc,0x59,0xe1,0x0,0xd9,0xda,0xa1,0x79,0x3d,0xee,0xab,0x99,0x81, 0x76,0xbd,0xa6,0x69,0xa,0x0,0x18,0xe,0x87,0xce,0x30,0x50,0x31,0xba,0x6d,0xf6, 0x62,0x1b,0xb,0x13,0x86,0xa1,0xcb,0x88,0x5a,0x56,0xa2,0x58,0x6b,0xed,0x26,0x9d, 0xf5,0xc8,0xc2,0x30,0xcf,0xb0,0xb2,0xcf,0xa9,0xa2,0x8f,0xaa,0xd7,0xb2,0xb2,0x34, 0x14,0x67,0xd0,0xc8,0x17,0xe5,0x77,0xbc,0xb6,0x85,0x7f,0xff,0x9d,0x2f,0x82,0xf6, 0x32,0x40,0x6f,0x21,0x66,0x1f,0x43,0xa0,0x8,0x8e,0x1a,0x2a,0x1d,0xd0,0xa6,0x50, 0x6,0x31,0x73,0xf,0x41,0x98,0x7b,0x2c,0x7a,0x3d,0xa3,0xc,0x82,0x33,0x20,0x3, 0x2,0xd3,0x83,0x4c,0x25,0x42,0xf4,0x20,0x32,0x40,0xd2,0xf9,0xd7,0x9,0x48,0x36, 0x80,0x56,0x79,0xed,0x8d,0xd2,0x31,0x8c,0x30,0x20,0x21,0xa1,0xd,0x1,0x2c,0x80, 0x20,0x73,0xcc,0xe3,0x78,0xd7,0xcf,0xb0,0x18,0x13,0x61,0xa0,0xc3,0x0,0x82,0x69, 0x40,0xc7,0xc8,0xcc,0x1e,0xde,0x78,0x7d,0x1d,0x7f,0xe9,0xcb,0x9f,0x5d,0x49,0x34, 0x51,0x97,0xd2,0xda,0xc4,0x6,0x54,0xd7,0x98,0x95,0xf6,0xa9,0xbe,0xbe,0xe9,0xdf, 0x55,0xe4,0x61,0xd3,0xe3,0xb5,0xd6,0xc8,0xb2,0xcc,0x26,0xb3,0x90,0x8f,0x2e,0xba, 0x6d,0xf6,0x62,0xc,0xd9,0xb0,0xe1,0x9b,0xdf,0xf9,0x9d,0xdf,0xc1,0x78,0x3c,0x3e, 0x92,0x3e,0xe,0x88,0x40,0x86,0x81,0xc9,0x3c,0xf8,0x2b,0xb8,0xc4,0xa0,0xdf,0xc7, 0xde,0xc1,0xb8,0x64,0x2c,0xe6,0x41,0xdc,0xa6,0x85,0x70,0xde,0x73,0x4f,0x23,0x43, 0x18,0x0,0x26,0x9,0x11,0x4a,0xe0,0x6f,0xfe,0x17,0x3f,0x86,0x77,0xdf,0xfd,0x43, 0xfc,0xea,0x6f,0x3f,0x0,0x5e,0x10,0x50,0x7c,0xda,0x7,0xc1,0x42,0xfc,0xa5,0x52, 0x8e,0x17,0x3c,0x95,0xd8,0xa2,0x8d,0x3,0x80,0xe1,0x30,0x19,0x10,0x86,0x3d,0x50, 0x16,0x23,0x13,0x2,0x86,0x29,0x10,0xcb,0xc0,0x9b,0xdb,0xae,0x9f,0x8d,0xb1,0x55, 0x84,0x80,0xb,0x24,0x7a,0x2,0x21,0xf2,0x2e,0x6d,0x5a,0x13,0x42,0x1e,0x40,0x67, 0x4,0xa,0x4f,0xf9,0xf3,0x17,0x4d,0x1f,0x16,0x80,0x43,0x41,0x6b,0x3,0xf0,0x21, 0x30,0x19,0xe1,0xc6,0x3a,0xc7,0xcf,0xfc,0x37,0xff,0x15,0xae,0xf6,0x36,0x61,0x6a, 0xc,0xee,0x59,0xce,0xc9,0x65,0x13,0x4d,0xe6,0x39,0x63,0x0,0x5c,0xc1,0xac,0x9f, 0xfe,0x5a,0x97,0xd1,0x58,0xa7,0x66,0xeb,0xd7,0x69,0x64,0x59,0x6,0x22,0xc2,0xcd, 0x9b,0x37,0x37,0x8b,0xbf,0x97,0x6a,0x2b,0xba,0x7a,0x8b,0xb,0x6a,0x2c,0x0,0x60, 0x30,0x18,0x60,0x6f,0x6f,0xf,0x5a,0x6b,0x58,0x15,0xda,0x65,0x45,0xf6,0xf2,0x8a, 0x67,0xe3,0xe0,0x29,0xb0,0x5d,0x32,0x14,0x4d,0x59,0x17,0x75,0xa9,0xb5,0x47,0x59, 0x2c,0xa7,0xe3,0xc5,0x19,0x64,0x3a,0x43,0x18,0x4,0x80,0x6,0x5e,0x8,0x12,0xfc, 0xfc,0xdf,0xff,0x2f,0xf1,0x37,0x7e,0xf2,0xff,0xc0,0x3f,0xf8,0x3f,0x7f,0x19,0x93, 0x71,0x6,0xd2,0x1a,0x20,0x82,0xe1,0x7c,0x36,0x1f,0xdd,0xcc,0xbf,0x86,0xe6,0x98, 0xdf,0x8f,0x88,0x80,0x40,0x80,0x65,0x1a,0x29,0x62,0x44,0x81,0x42,0x12,0xc,0x11, 0x84,0x21,0x8c,0xcc,0x56,0x20,0x1e,0x14,0x43,0x8,0x9,0x66,0xc,0x98,0xe1,0x60, 0x92,0x83,0x14,0x7,0x8d,0x9f,0x80,0x53,0x88,0xec,0xe0,0xbc,0xa1,0xa3,0x0,0x97, 0x19,0x34,0xc,0x20,0xd,0xfe,0xc4,0xbf,0xf9,0x49,0xfc,0xed,0xbf,0xfa,0xe7,0xf1, 0xc7,0xbe,0xf3,0x26,0x52,0x3,0x8,0xd0,0xca,0xcd,0xc9,0xba,0xba,0xa5,0x29,0x55, 0x54,0xbf,0xb6,0x2c,0xea,0xcf,0x91,0x85,0x71,0x92,0x1e,0xcb,0x88,0x25,0xfa,0x9a, 0x71,0x59,0x96,0xd9,0x78,0x45,0x32,0xe7,0x3c,0x3b,0x43,0x71,0xd1,0x8c,0x5,0x63, 0x8c,0x7d,0xeb,0x5b,0xdf,0x72,0xd0,0xd2,0x1a,0x8b,0x36,0xb,0x83,0x31,0xee,0xb8, 0x4f,0x9f,0xe5,0x1a,0xc,0x7a,0xe0,0x30,0xb5,0x81,0xb3,0xba,0xc9,0xdf,0xac,0xcd, 0x74,0xbe,0xc8,0x42,0x9a,0x8,0x4c,0x30,0x28,0x3d,0x81,0xe0,0x7d,0x70,0x1d,0xe1, 0x7a,0xcf,0xe0,0xa7,0xfe,0xeb,0x7f,0x17,0xff,0xc9,0x5f,0xfa,0x41,0xfc,0x93,0xff, 0xeb,0x37,0x90,0x65,0x59,0xa9,0xa8,0x71,0x91,0xac,0xc2,0xc9,0xf2,0x8a,0x2,0x9, 0x53,0x88,0x40,0x50,0x46,0x40,0x88,0x4,0x3f,0xf7,0x2f,0xdf,0xc5,0xbd,0x7b,0xdb, 0x0,0x93,0xe0,0x74,0xbe,0xd7,0x8f,0xb,0x40,0x29,0xd,0x48,0x81,0xd0,0x4,0x18, 0xa7,0x29,0x6,0x51,0x80,0xbf,0xfc,0xe7,0xfe,0x6d,0x4,0x41,0x8,0x75,0xce,0xb9, 0x2,0x83,0x8c,0x70,0xc8,0x5,0x82,0x48,0xe2,0xfb,0xdf,0xfe,0x34,0xbe,0xf8,0xf6, 0x6b,0xe8,0x85,0x1a,0x29,0x25,0x90,0x22,0x4,0x3d,0x47,0xe5,0x66,0x4d,0x6d,0x4f, 0xfd,0x4d,0xde,0xf6,0x91,0xf7,0x91,0x45,0xdd,0x3a,0xaf,0x16,0xe8,0x96,0x1c,0x1c, 0x63,0x90,0xa6,0x29,0xa2,0x28,0xca,0xc1,0x77,0x67,0x18,0x2e,0x17,0xb2,0xe8,0xf5, 0x7a,0xbb,0x44,0xb4,0x95,0xa6,0x29,0xfa,0xfd,0x7e,0xeb,0x8d,0x9a,0x88,0x60,0x8a, 0xb8,0x5,0x20,0xb,0x74,0xa1,0x31,0xec,0xf5,0x1d,0xb7,0x69,0x27,0xde,0x34,0xb6, 0xe1,0x6b,0xf0,0xd7,0x37,0x3e,0x5a,0x95,0xb9,0x67,0x14,0xc0,0x28,0x4,0x97,0x29, 0xd2,0xf4,0x10,0x91,0x5c,0x3,0xa5,0x6,0xbd,0x28,0xc5,0x77,0x7f,0x22,0xc2,0x77, 0xff,0x47,0x7f,0xca,0x32,0x71,0x38,0x8a,0x6d,0x58,0xf4,0x2d,0x59,0x8b,0x37,0x98, 0x30,0x8d,0x3e,0x8,0xa,0x12,0x2,0x6,0x7f,0xf0,0xad,0x1d,0x3c,0x78,0xef,0x11, 0x82,0x61,0x80,0xf4,0x9c,0x63,0xdc,0xda,0x48,0xc0,0x8,0x18,0x6d,0x0,0x23,0x1, 0x9a,0x20,0xe4,0x6,0x7f,0xe3,0x3f,0xfb,0x31,0x48,0x1,0x9c,0x32,0xb,0xb5,0xf0, 0xfa,0x25,0x50,0x10,0x0,0x4,0x31,0x40,0x11,0x98,0x64,0x30,0x24,0xc1,0xb4,0x7c, 0xae,0x2a,0xf4,0xa7,0x8e,0x4a,0x7d,0xa6,0x21,0x11,0x21,0xc,0xc3,0xf2,0xba,0xf5, 0x90,0xc5,0xbc,0xf5,0x56,0x75,0x80,0x8c,0x31,0x48,0x92,0x4,0x6b,0x6b,0x6b,0x0, 0xa0,0xab,0x74,0x53,0x47,0x3f,0x5d,0x50,0x63,0x61,0x6f,0x2c,0x63,0xec,0xee,0x2f, 0xff,0xf2,0x2f,0x1f,0xc4,0x71,0x8c,0xcd,0xcd,0xcd,0xa5,0x37,0xec,0xe9,0xc4,0xcb, 0x27,0x56,0xbf,0xdf,0xcf,0x15,0x6c,0xbd,0xe0,0xf7,0xbc,0x20,0x77,0x75,0xc2,0xae, 0x4a,0xa5,0x2c,0xb,0x53,0x30,0x1d,0x2,0x26,0x84,0xc,0x38,0x14,0x69,0xc8,0x9e, 0x84,0xd1,0xa,0x9c,0x18,0x34,0xab,0x93,0x70,0x9e,0x2e,0xb0,0x45,0x69,0xb6,0x74, 0x4c,0x59,0x5d,0x66,0x34,0x44,0x20,0x0,0x52,0xd0,0x29,0x20,0x3,0x86,0x54,0x5, 0xd0,0xba,0x7,0x86,0x3e,0x38,0x4d,0xce,0x79,0x13,0xd3,0x10,0x32,0x44,0xc6,0xd, 0x92,0xf1,0x4,0x6c,0x2d,0x17,0xad,0x54,0xa3,0x6d,0xf4,0x36,0x36,0x41,0xe6,0x94, 0x63,0x2a,0x8b,0x62,0x42,0x42,0x42,0xaa,0x4,0x60,0x2,0x86,0xc9,0x5c,0xe9,0x8c, 0xc,0x2,0x64,0x30,0x2c,0x98,0xe9,0x4,0xb9,0x8a,0x28,0x62,0xbe,0xf1,0x98,0x1e, 0x41,0x10,0xcc,0xa0,0x8d,0x79,0x12,0xe4,0x55,0x64,0x61,0x9f,0xa7,0x94,0x82,0x52, 0xa,0x6b,0x6b,0x6b,0x73,0x11,0x45,0x67,0x34,0x2e,0x28,0xb2,0x0,0x90,0x58,0x2e, 0xb2,0x3a,0x69,0x16,0x7b,0x6f,0x62,0x6,0xd6,0x86,0x61,0x84,0x7e,0xbf,0x87,0xbd, 0xc3,0xc3,0x99,0x1c,0xed,0xa6,0x9a,0x8d,0x3a,0x3,0x71,0xee,0x3d,0x8e,0x19,0xcb, 0xd9,0x35,0x93,0x4b,0x55,0x2b,0x66,0x90,0x50,0x6,0x21,0x7a,0x79,0x93,0x40,0xa6, 0x1c,0xa4,0xb0,0xf1,0x7,0xc6,0xa7,0x32,0x25,0xb4,0x60,0xb7,0x62,0xb,0x32,0x96, 0x68,0x81,0x34,0x3,0x63,0x2,0xa,0x1a,0x21,0x11,0xc2,0x10,0x0,0x4b,0xa1,0xd9, 0x18,0x90,0x13,0x18,0xa9,0xc1,0x4d,0x70,0xbe,0x33,0x8e,0x25,0x20,0x70,0x10,0x25, 0xe8,0xf,0xfa,0x38,0x4c,0xc7,0xe0,0xc3,0x35,0x30,0x13,0x82,0x91,0x2c,0xd2,0x3f, 0x8f,0x85,0xfd,0x8e,0x75,0xfd,0x22,0xa3,0x41,0x22,0x42,0x66,0x80,0x40,0x68,0x8, 0x96,0x41,0x53,0x0,0x2e,0x22,0x70,0xad,0x40,0x42,0xac,0xdc,0x22,0x6e,0xdb,0x47, 0xbb,0x4a,0xeb,0x56,0xeb,0x46,0xec,0x5a,0x5d,0xa6,0x59,0x92,0x65,0x8,0x88,0x8, 0x83,0xc1,0xa0,0xea,0x70,0xce,0x4,0xb9,0xbb,0x2d,0xf7,0x2,0x19,0xb,0xef,0x86, 0xaa,0xc1,0x60,0x80,0x34,0x4d,0xe7,0xc6,0x17,0x1a,0xc8,0x6,0xa8,0x4c,0x41,0x87, 0x12,0x41,0x90,0x2b,0xce,0xa,0xe,0x5c,0xdd,0x18,0x62,0x7b,0x77,0x17,0x8a,0x4c, 0x41,0x55,0x65,0xd0,0x3a,0x3,0x10,0x82,0x88,0x81,0x88,0xc1,0x10,0x3,0x88,0xf9, 0x72,0xc7,0x25,0x2d,0x7d,0x62,0xe7,0x7f,0xc9,0x88,0x93,0xb,0xc7,0x8,0x30,0x8, 0xc8,0xdc,0xc,0x70,0x80,0x93,0x70,0xde,0x2b,0xb3,0x1e,0x1f,0xf9,0xb,0x6c,0xd1, 0x17,0x10,0xb,0x8c,0xc9,0x22,0x63,0x6,0x44,0xc4,0x90,0x77,0xd8,0xd0,0x20,0x44, 0xe0,0x26,0xcc,0x37,0x51,0xa,0xce,0x7d,0xc2,0x31,0xf4,0xa0,0x41,0x8,0x4c,0x80, 0x31,0x53,0xf9,0xef,0x26,0x46,0xca,0x78,0x51,0xe7,0x70,0xdc,0x1b,0x7c,0xbc,0xeb, 0x7,0x96,0x2f,0x89,0x80,0x17,0xef,0x45,0x2,0x82,0x15,0xb7,0x54,0xc8,0x15,0x58, 0xb2,0xf5,0x6a,0xb0,0x8c,0x31,0x97,0x9a,0xee,0x27,0x8e,0xf8,0xc9,0x24,0x4a,0xa9, 0x22,0x8d,0x3b,0x97,0xf6,0xb0,0xb5,0x18,0x54,0xc8,0xd6,0xd8,0x22,0xdc,0xba,0xc4, 0x93,0x6a,0x6,0x14,0x0,0x97,0xfc,0x32,0x1e,0x8f,0x61,0x8c,0xc1,0x57,0xbf,0xfa, 0xd5,0xcf,0xbd,0xfc,0xf2,0xcb,0x6e,0xf,0xe9,0x8c,0xc3,0x25,0x41,0x16,0x44,0x44, 0xef,0xbe,0xfb,0x2e,0x1e,0x3f,0x7e,0xec,0x67,0x3a,0x2c,0xe7,0xe3,0x15,0x9b,0xbc, 0x9d,0x33,0x79,0x46,0x54,0xb9,0x16,0x43,0x83,0x8a,0x49,0xa7,0x1b,0x4f,0xc7,0xf, 0xe,0xd3,0x73,0xa4,0x1,0x5e,0x9f,0xb3,0x7e,0xba,0xd6,0x8e,0x9f,0xfe,0x47,0x9c, 0xf2,0x35,0xeb,0x16,0xe5,0x7c,0xe4,0x58,0x4f,0x3b,0xd5,0xd5,0x26,0xd5,0x31,0x1, 0xd6,0x70,0x58,0x55,0x5,0xe7,0xde,0xe9,0xf6,0xfd,0x58,0xfc,0xe0,0x38,0x90,0x17, 0xe4,0x71,0xce,0xf1,0xce,0x3b,0xef,0xfc,0x7e,0x67,0x1f,0x2e,0x27,0xd,0x85,0xad, 0xad,0x2d,0x7c,0xf8,0xe1,0x87,0x48,0xd3,0xb4,0xb5,0xb1,0xa8,0x7a,0x1e,0x76,0x2, 0x1b,0x63,0xb0,0xbe,0xbe,0x9e,0xe7,0x75,0x2b,0xed,0x26,0xa7,0x95,0x9,0x58,0x44, 0x45,0xb9,0xc5,0xf0,0xdc,0x5f,0xf2,0xd3,0x2d,0x8c,0x23,0xe2,0xcf,0xc5,0x45,0xa2, 0xc6,0xc,0x0,0xd3,0xad,0xca,0x5,0xc6,0xb4,0x6e,0x5d,0xd8,0x7f,0x57,0x6b,0x7b, 0xea,0xd6,0x94,0xd6,0x1a,0xbd,0xc1,0x0,0x7e,0x93,0x33,0xeb,0xbc,0xb5,0x4d,0x62, 0xf1,0xff,0x9d,0x24,0x9,0x7a,0xbd,0x1e,0x30,0x27,0x6d,0xb6,0x1b,0xcf,0xff,0xe0, 0xcd,0x1e,0xc,0x63,0xf,0x1f,0x3e,0xfc,0x32,0x0,0x57,0x70,0xd3,0xce,0xf3,0x99, 0x4e,0x36,0xa5,0x94,0xa3,0xb0,0xb4,0xd6,0xe8,0xf7,0xfb,0x18,0xf6,0xfa,0xc8,0xb2, 0xb4,0xc8,0x9a,0xca,0xa1,0xaf,0x86,0x8d,0x5f,0xa8,0xda,0x49,0xfe,0x7c,0x2e,0x6a, 0x5a,0xd9,0xf3,0x5a,0x85,0xc3,0x3f,0x97,0xea,0xbc,0xe9,0x46,0xfb,0x35,0x56,0xd7, 0x6b,0xa6,0xe9,0x9a,0xfb,0x85,0xb0,0x41,0x10,0x94,0x9c,0xbb,0x79,0xe,0x5b,0xf5, 0xb0,0x46,0xc6,0xae,0xeb,0x34,0x4d,0xb1,0xb1,0xb1,0xd1,0xd1,0x4e,0x97,0xd5,0x58, 0x0,0xc0,0xe7,0x3f,0xff,0xf9,0x5f,0x12,0x42,0x60,0x32,0x99,0xb4,0x6a,0xfe,0x5e, 0xdd,0x4,0x7c,0x6f,0xc5,0x36,0x46,0x59,0x5f,0x5f,0x73,0xc6,0x87,0x88,0x90,0x29, 0x53,0xeb,0x9,0x55,0x37,0xdc,0xe7,0xa5,0xf9,0xcc,0x4a,0x6e,0x2e,0xdd,0x25,0xb8, 0x90,0x6,0xa3,0x1a,0x70,0x5e,0xd4,0x6,0xc0,0x47,0xeb,0x55,0xa6,0xc0,0xb2,0x0, 0x6d,0x99,0x3,0xbb,0xae,0xd3,0x34,0x45,0x96,0x65,0x36,0x63,0xb2,0x9b,0x6a,0x97, 0x8d,0x86,0x62,0x8c,0x71,0x22,0x32,0x0,0x92,0x5f,0xff,0xf5,0x5f,0x77,0xb2,0x1f, 0xcb,0x4a,0x94,0x5b,0x83,0x61,0xf9,0x51,0xc6,0x18,0x5e,0xd8,0xda,0xc2,0xe3,0x47, 0x8f,0xa0,0xb5,0x76,0x87,0x31,0xcd,0x92,0x2,0x75,0xbd,0x7f,0x9b,0xf4,0x6b,0x56, 0xb5,0x7,0xc6,0x59,0x7a,0xce,0x8d,0x9f,0x52,0x48,0xa8,0xaf,0xfa,0x6a,0xee,0xf6, 0x9b,0xe5,0xaf,0xd7,0xa2,0xde,0xe0,0x55,0x45,0x68,0x5f,0x5,0xda,0xbe,0xbe,0x6d, 0x7f,0xf1,0xaa,0x62,0x6d,0x1c,0xc7,0xf6,0xf5,0x3f,0xdd,0x21,0x8b,0xcb,0x89,0x2c, 0xdc,0x4d,0xbf,0x72,0xe5,0xa,0xd2,0x34,0x75,0xaa,0x92,0x6d,0x91,0x85,0x9f,0x83, 0x6d,0x27,0x96,0x31,0x6,0x57,0x36,0xb7,0x10,0x45,0x11,0xb2,0x2c,0x43,0x56,0x4c, 0xd0,0xb4,0x40,0x1a,0x86,0x54,0x6d,0x5a,0x6d,0xdb,0xd,0x25,0x7f,0x2e,0x3f,0xe7, 0xa3,0xd9,0x3,0x3c,0x5b,0xaf,0xb3,0xa3,0xe9,0x2e,0xd3,0x68,0xaa,0x8f,0xa8,0xa3, 0xa1,0xfc,0xe0,0xb6,0x2d,0x94,0xf5,0x2b,0xb7,0x17,0xa1,0x12,0xad,0xb5,0x33,0x32, 0x93,0xc9,0x4,0x51,0x14,0xe1,0xb5,0xd7,0x5e,0xfb,0xcf,0xbb,0xbb,0x70,0x9,0x8d, 0x45,0x91,0x23,0xcd,0x19,0x63,0x6c,0x6b,0x6b,0xcb,0x55,0x68,0x2e,0x13,0xfc,0xf2, 0x8d,0x85,0xef,0xc1,0xd8,0xe2,0x3c,0xad,0x8b,0x94,0xbe,0x42,0x84,0xac,0x4e,0x58, 0x70,0x5e,0x63,0xa4,0xe7,0xd5,0xb,0x3c,0x53,0xea,0xa9,0xf3,0xd2,0x2f,0xbc,0x81, 0x58,0x84,0x0,0xfc,0x2,0x58,0x7b,0x48,0x29,0x4b,0x8d,0x9c,0x7c,0x63,0xd1,0x66, 0xd8,0x6c,0x28,0xa5,0x14,0x92,0x24,0xb1,0xa,0xf,0x5d,0x70,0xfb,0x32,0x1a,0xb, 0x8f,0x86,0x62,0x2f,0xbd,0xf4,0x52,0x8f,0x88,0x10,0xc7,0x71,0xc9,0x83,0x69,0x6a, 0x7f,0x6a,0x33,0x32,0xec,0xe4,0xb3,0x3a,0x49,0xd3,0xf7,0x26,0xdc,0xb8,0x76,0x15, 0x69,0x12,0x83,0x13,0x41,0x17,0x75,0x1c,0x89,0xca,0xca,0x93,0x9c,0x18,0x8,0xbc, 0xb1,0xaa,0xf4,0xe8,0xa3,0x49,0x9e,0xfa,0x24,0x2f,0xe9,0xf4,0xc8,0xfb,0x7,0xe4, 0xc7,0xd9,0xd8,0x3a,0x9a,0xfe,0xdf,0x93,0x7b,0x0,0xf2,0x76,0xa1,0xe7,0xbf,0xc1, 0x15,0xd7,0xda,0x15,0xcc,0x68,0x38,0xc1,0xa5,0xe,0x6c,0x2c,0xed,0x78,0xd8,0xfa, 0x8,0x2b,0x35,0x3e,0xcd,0x68,0xe2,0xd0,0x6,0x33,0xcd,0x89,0x2,0x9,0x44,0xa1, 0x84,0x31,0xca,0xbd,0x97,0x5f,0x78,0xdb,0xc6,0x40,0xf9,0x9f,0x35,0x99,0x4c,0x70, 0xf5,0xea,0xd5,0xee,0x86,0x5c,0x82,0xd1,0x24,0xf7,0x61,0x98,0x6d,0x19,0x6,0xa4, 0x83,0xc1,0x0,0xa3,0xd1,0x8,0xd7,0xae,0x5d,0x6b,0xcc,0x66,0x99,0x17,0x47,0xf0, 0x1a,0xb9,0x3,0xcc,0x60,0x6d,0x6d,0xd,0x52,0x4a,0xa4,0x69,0xea,0x44,0xa,0xb5, 0xd6,0x50,0x99,0x81,0xe0,0x55,0x24,0x31,0xbf,0x7a,0x7b,0x95,0xe3,0x14,0xd3,0xeb, 0xb1,0x3a,0x4e,0xfe,0x65,0x8f,0xe9,0x5c,0x14,0x43,0x61,0x9d,0x32,0xdf,0x50,0xd8, 0xc7,0x72,0x7,0x6b,0x8a,0x2,0x7c,0x94,0x11,0x7a,0x14,0x94,0x45,0x15,0xcb,0xd4, 0x58,0xf8,0x73,0x68,0x34,0x1a,0x81,0x88,0xb0,0xb9,0xb9,0xd9,0xdd,0x94,0xcb,0x68, 0x2c,0x7c,0x17,0x99,0x28,0x77,0xf9,0xbe,0xfe,0xf5,0xaf,0xe3,0xc3,0xf,0x3f,0x2c, 0x29,0xd0,0xfa,0x99,0x17,0x4d,0x5a,0x32,0x76,0xa4,0x69,0x8a,0x30,0xc,0xf3,0xd7, 0xe8,0xbc,0xde,0xa2,0xdf,0xef,0x23,0x4d,0x53,0xf4,0x7a,0x7d,0x57,0x5d,0xaa,0xc8, 0x20,0x98,0xa1,0xa2,0x30,0x37,0x6e,0x31,0x5b,0xcd,0xba,0x9c,0x14,0xdf,0x59,0x6f, 0x9e,0x8b,0x64,0xd7,0x4f,0x66,0xd3,0xa4,0xc2,0x38,0xd5,0x29,0x19,0xad,0x2,0xba, 0x20,0xf,0xe5,0x31,0xd7,0xca,0x14,0xac,0x33,0x1a,0xcb,0x1a,0x7b,0xa5,0x14,0x7a, 0xbd,0x5e,0x4d,0xea,0x2c,0x66,0xe8,0x27,0xad,0x35,0x82,0x41,0xaf,0x64,0x6c,0x26, 0x93,0x49,0xeb,0xfa,0xa,0xdf,0xc0,0x4,0x41,0x80,0xf1,0x78,0xc,0x29,0x25,0x6e, 0xdd,0xba,0xd5,0xef,0x62,0x50,0x97,0x90,0x86,0xf2,0x4a,0xf5,0xb5,0xa5,0xa4,0x5e, 0x7c,0xf1,0x45,0x10,0x11,0x26,0x93,0x89,0x33,0x16,0x4d,0xd9,0x4a,0x3e,0xe2,0xb0, 0xcf,0xb1,0xa9,0xb2,0xf6,0x79,0x61,0x18,0x62,0x6b,0x6b,0xcb,0xc1,0x5f,0xad,0x35, 0x94,0x32,0x33,0xaa,0x97,0x6d,0xe2,0x15,0xc7,0xd5,0x8d,0x5a,0x85,0xcd,0xc9,0x5e, 0xc3,0x93,0x3a,0x97,0x5a,0xb1,0xbb,0x15,0x8c,0xf9,0xe4,0xe7,0x73,0xd2,0x34,0xe0, 0xe5,0xa1,0x9f,0x9a,0x36,0xf9,0xba,0x84,0x13,0x1b,0x94,0xae,0xd6,0x57,0xd8,0x78, 0xe1,0x32,0xc3,0x3e,0x3f,0x49,0x12,0xac,0xaf,0xaf,0x3,0x5d,0x31,0xde,0xe5,0x34, 0x16,0x96,0x8a,0xf2,0x7f,0xbf,0x79,0xf3,0x66,0x5f,0x8,0xe1,0x60,0x67,0x55,0x0, 0xd0,0xf,0x4e,0xd7,0x79,0x3f,0xd6,0xab,0xb1,0x6f,0x2b,0x38,0x70,0xfd,0xca,0xb, 0x0,0x91,0x53,0xac,0xb4,0xc7,0x3c,0x83,0xf1,0x3c,0x53,0x18,0xb9,0xa7,0xd7,0x4d, 0xb8,0x3a,0xf,0xb9,0xf3,0x4a,0x8f,0x36,0xac,0xc,0x8f,0x7f,0xfd,0x7c,0x89,0x9d, 0x6a,0x6a,0xac,0x94,0x32,0xef,0xb9,0xed,0x49,0x8b,0x57,0xeb,0x2b,0x16,0x25,0x98, 0xd8,0xf7,0x49,0x92,0x4,0x93,0xc9,0xc4,0x52,0xd3,0xdd,0xd,0xbc,0xac,0xc6,0xa2, 0x32,0x79,0xc,0x80,0x64,0x30,0x18,0x60,0x3c,0x1e,0x43,0x29,0x55,0xd2,0x94,0xa9, 0x16,0x6,0x55,0x29,0xaa,0x6a,0x43,0x77,0x50,0x9e,0x79,0xb1,0xb1,0xb1,0x81,0x7e, 0xbf,0x8f,0x38,0x8e,0xa1,0x75,0x6e,0x20,0xb2,0x4c,0xbb,0xcc,0x8c,0x26,0xa3,0xf1, 0x3c,0x1b,0xc,0xff,0xbb,0x5c,0x72,0x53,0xd1,0xad,0xbc,0x13,0x9a,0x4b,0x3e,0xd2, 0xaf,0x4b,0x93,0xf5,0xe5,0x74,0xa2,0x28,0x2a,0xa5,0xcc,0xfa,0xc9,0x27,0xcb,0xd4, 0x51,0x5,0x41,0x80,0x83,0x83,0x3,0x1b,0xef,0xf8,0x89,0x3a,0x7,0xb3,0x1b,0x97, 0xc0,0x58,0xf8,0xf2,0xc2,0x3e,0x35,0x75,0xf3,0xe6,0x4d,0xa4,0x69,0xea,0xaa,0xb9, 0x7d,0xd,0x9a,0x3a,0x89,0xe4,0xea,0x46,0x9e,0xa6,0x69,0x49,0x15,0x33,0xc,0x43, 0x5c,0xbd,0x7a,0xd5,0xc1,0x60,0x17,0xe4,0x56,0x6a,0xc6,0x60,0x9c,0xe6,0x6,0x7b, 0xd6,0x1b,0x77,0xdb,0x8e,0x83,0x17,0x9f,0x4f,0xe9,0xc,0xc6,0x71,0xe6,0x90,0x1f, 0xd8,0xae,0xea,0x44,0x55,0x1b,0x8c,0x69,0xad,0xc1,0x39,0x47,0x14,0x45,0xa5,0xf5, 0x9a,0x24,0xc9,0x52,0xf1,0xa,0xfb,0x59,0x5a,0x6b,0x1c,0x1e,0x1e,0x62,0x6d,0x6d, 0xd,0x6f,0xbe,0xf9,0xe6,0xdf,0xb3,0x7b,0x44,0x67,0x30,0x2e,0x99,0xb1,0xa0,0x8a, 0x3c,0xaa,0x9d,0x0,0x6f,0xbc,0xf1,0xc6,0x96,0xcd,0xab,0xb6,0x93,0xa6,0x2a,0x5d, 0x5e,0xdd,0xd4,0xfd,0x86,0x29,0x96,0x62,0x12,0x42,0x80,0x51,0xee,0xd9,0x5c,0xbd, 0x7a,0xd5,0x4d,0xe8,0x6c,0x8e,0x91,0x68,0x6b,0x30,0x9e,0x27,0x74,0x71,0x5e,0x86, 0x6b,0x15,0x34,0xa1,0xba,0x71,0xfc,0x61,0x33,0xc,0x2d,0xbd,0x5b,0xad,0xd2,0xb6, 0xbf,0xfb,0x75,0x4e,0x96,0xb2,0xf2,0xd3,0xda,0x97,0x4d,0xae,0xe0,0x9c,0x23,0x49, 0x12,0x24,0x49,0x82,0xad,0xad,0x2d,0x10,0x51,0x56,0xb3,0x77,0x74,0xe3,0x32,0xd1, 0x50,0x44,0x33,0x5d,0x78,0xe,0xd7,0xd6,0xd6,0x70,0x78,0x78,0x38,0xd5,0xc6,0x2f, 0xc,0x86,0x94,0xd2,0xfd,0xee,0x7b,0x36,0x76,0x73,0xb2,0x9e,0xcd,0x68,0x34,0x82, 0x21,0x1,0x3,0x82,0x56,0x29,0xae,0xbe,0xb0,0x8e,0x8d,0x41,0xf,0x69,0x92,0xd3, 0x5b,0x4a,0x1b,0x4c,0xd2,0x4,0xa9,0x56,0x53,0xf,0x4a,0x2f,0xae,0xe8,0x3e,0xaa, 0xc1,0x38,0xca,0xdc,0x66,0x6c,0x51,0x1a,0xec,0xb4,0x76,0x83,0x31,0x9b,0x9d,0x35, 0x5b,0xcf,0x51,0xb7,0x79,0x9e,0x86,0xb1,0x63,0xf6,0x9c,0x3c,0xba,0xf0,0x3c,0xf, 0x30,0x3,0x4e,0xb3,0xdf,0xd5,0x30,0x74,0x22,0x56,0x4b,0x1a,0xa,0xbb,0x79,0xfb, 0x71,0x7,0x4d,0x6,0x86,0x98,0x6b,0x6d,0x6c,0xe7,0x59,0xbf,0x17,0x82,0xc1,0x38, 0xea,0x2a,0x49,0x12,0x67,0x2c,0xfc,0x2a,0xee,0x3a,0x74,0xe2,0x37,0x38,0x2,0x80, 0xc9,0x64,0x82,0x38,0x8e,0x71,0xeb,0xd6,0x2d,0x30,0x96,0xb7,0x7e,0xec,0x50,0xc5, 0x25,0xa5,0xa1,0xfc,0x9f,0x9e,0xb7,0x40,0xd7,0xaf,0x5f,0x47,0x92,0x24,0x4e,0xbf, 0xde,0xea,0x3d,0xf9,0x86,0xa3,0xd4,0x7b,0xc2,0x6b,0xcc,0x62,0x27,0xa0,0x52,0xa9, 0x53,0xad,0x14,0x42,0xe0,0xea,0xd5,0xab,0x6e,0xb2,0xbb,0x1e,0x17,0x5a,0x43,0x91, 0x99,0xeb,0x15,0x9f,0x17,0xc2,0x38,0x4a,0xa0,0xba,0x89,0xa2,0x3b,0xf,0x6f,0x7b, 0x95,0x90,0x5,0x3f,0x27,0x2a,0xf0,0x79,0xa7,0xa0,0xe6,0xcd,0x25,0x7f,0xb3,0xb7, 0x6b,0x89,0x73,0xee,0xb2,0xa0,0xec,0x7a,0xb4,0x31,0x44,0x5b,0x40,0xeb,0xc7,0x21, 0xad,0x1,0xb1,0xef,0xef,0xf7,0xae,0x20,0x22,0x8c,0x46,0x23,0xf4,0x7a,0x3d,0xdc, 0xba,0x75,0x6b,0xad,0xc6,0xa9,0xec,0xc6,0x65,0x43,0x16,0x55,0xc3,0x41,0x44,0x66, 0x6b,0x6b,0xeb,0x9f,0x25,0x49,0x82,0xf1,0x78,0xec,0x8c,0x3,0xe7,0xbc,0x34,0xb9, 0x9a,0x28,0x29,0x8b,0x46,0x6c,0xad,0x46,0xfe,0xe1,0xc,0x2f,0xbe,0xf8,0x22,0x84, 0x10,0x45,0xb0,0x4d,0x41,0x6b,0x42,0x96,0x65,0xa5,0xcc,0xa8,0xb3,0x88,0x5d,0x9c, 0xe5,0x38,0x6b,0x83,0x41,0x85,0x85,0x23,0x5a,0x8d,0x1a,0x8b,0xba,0xb8,0xd,0xef, 0xec,0x45,0xab,0x61,0x1d,0xab,0xba,0xbe,0x15,0x3e,0x85,0x6b,0x8d,0x85,0x52,0xa, 0x61,0x18,0xba,0x7e,0xdb,0x36,0xe6,0x10,0xc7,0x71,0x9,0x55,0x34,0x35,0x4d,0xaa, 0xce,0xcf,0x2c,0xcb,0x70,0x78,0x78,0x88,0x2b,0x57,0xae,0x80,0x88,0x46,0x1d,0x5, 0x75,0x89,0x8d,0x45,0x43,0x4b,0x44,0x6,0x0,0x2f,0xbf,0xfc,0xf2,0x8f,0xc,0x6, 0x3,0x1c,0x1e,0x1e,0x96,0xa0,0xaa,0x8f,0x2a,0xe6,0xc5,0x30,0xac,0xc6,0x94,0x45, 0x15,0x5a,0x6b,0xac,0xaf,0xaf,0x63,0x73,0x73,0x13,0x49,0x1c,0xbb,0x0,0x77,0x96, 0xe9,0x92,0x5e,0x94,0x21,0xb6,0xb4,0xc1,0x38,0x6f,0x54,0x5c,0x17,0xe4,0xf7,0xdb, 0xc2,0x9e,0x37,0xc2,0xe8,0xc6,0xf3,0x8b,0x2c,0xaa,0x35,0x39,0x55,0xba,0xc8,0xcf, 0x82,0x2,0x80,0x28,0x8a,0x4a,0x28,0xc1,0xca,0x8a,0x2f,0x42,0x9a,0x55,0x67,0x8d, 0x31,0x86,0xd1,0x68,0x84,0x2c,0xcb,0xf0,0xd2,0x4b,0x2f,0x39,0x87,0xb2,0xca,0x46, 0x74,0xe3,0x12,0x22,0xb,0x9f,0x82,0x2a,0x7e,0x57,0x2f,0xbd,0xf4,0x12,0xe,0xf, 0xf,0x9d,0x54,0x47,0x35,0x97,0xbb,0xae,0xdd,0xa3,0x5f,0xc0,0x67,0x83,0x63,0xd6, 0xa3,0xe1,0x2,0x78,0xf1,0xc5,0x17,0x4b,0x99,0x50,0xce,0x68,0x18,0xdd,0x18,0xec, 0x7e,0x9e,0x17,0x7b,0xd1,0x66,0xfc,0x52,0x1b,0xc,0x66,0xac,0x1e,0x85,0xf7,0x9d, 0x3b,0x7b,0x39,0x77,0xde,0xd8,0xc0,0xb4,0x8f,0xe2,0xeb,0x1a,0x1f,0xd9,0x35,0x63, 0x33,0xa6,0xc2,0x30,0x2c,0xb1,0x0,0x56,0xe7,0xad,0x5a,0xd8,0x57,0xd5,0x7b,0xab, 0xd3,0x81,0x3b,0x38,0x38,0x40,0x18,0x86,0xb8,0x73,0xe7,0x4e,0xcf,0xc6,0x2b,0xba, 0x71,0x89,0x8d,0x45,0xd5,0x43,0xf0,0x51,0x86,0x10,0xe2,0x27,0xb4,0xd6,0xd8,0xdf, 0xdf,0x2f,0x35,0x50,0xa9,0xf2,0xf2,0x75,0x7d,0x28,0xec,0xe4,0x8c,0xe3,0xb8,0xd4, 0x64,0xfe,0xea,0xd6,0xb,0x18,0xc,0x6,0x48,0x92,0xc4,0x33,0x16,0xa6,0xd4,0x24, 0xc9,0x10,0x5b,0xda,0x60,0x9c,0xb6,0xa3,0xb3,0x38,0xd8,0xbd,0x60,0x3,0x60,0xf3, 0x79,0xe7,0x6e,0x74,0xa3,0x6a,0x30,0xfc,0x58,0x42,0x53,0x17,0xbc,0x69,0x9f,0x98, 0x3c,0x45,0xdd,0x8f,0x4b,0x64,0x59,0xe6,0x62,0x8e,0xbe,0xec,0x87,0x4f,0x3d,0xf9, 0x3f,0xed,0xf3,0x6c,0xb5,0xb7,0x15,0xe,0x2c,0x54,0x66,0x99,0xbf,0x37,0x74,0x54, 0xd4,0x25,0x34,0x16,0xf3,0x72,0xa6,0xdf,0x7c,0xf3,0xcd,0xff,0x71,0x6b,0x6b,0xb, 0x7b,0x7b,0x7b,0xc8,0xb2,0xac,0x34,0xe1,0xaa,0x5e,0x89,0x3f,0xf1,0xfc,0x86,0x29, 0x16,0x6,0x5b,0x74,0x11,0x4,0x1,0x6e,0xdc,0xb8,0x1,0xa5,0x14,0xd2,0xa2,0x50, 0x48,0x29,0xe5,0x6a,0x33,0xa6,0x85,0x45,0xab,0x67,0x30,0x9a,0x8c,0x46,0x1b,0x79, 0x92,0xba,0xbf,0x9d,0x7a,0x1d,0x6,0x33,0xe7,0x7b,0x74,0xe3,0xc8,0x86,0xc2,0xae, 0x9f,0x3a,0xfa,0xa8,0x5a,0x84,0x67,0x51,0x45,0xaf,0xd7,0x2b,0x51,0xc4,0x56,0xb, 0xaa,0xe9,0xfd,0x9b,0x7e,0x5a,0x54,0xa1,0xb5,0xc6,0xed,0xdb,0xb7,0xed,0x63,0xba, 0xbb,0x33,0x1d,0xd,0x55,0xf2,0x12,0x7c,0x5e,0x92,0x88,0xd4,0xf5,0xeb,0xd7,0x11, 0xc7,0xb1,0x43,0x8,0xfe,0x84,0xad,0x42,0x61,0x7f,0x62,0xdb,0xc7,0xd3,0x34,0x45, 0x1c,0xc7,0xb9,0xd7,0x52,0x7c,0xca,0x8d,0x1b,0xd7,0x21,0x84,0x70,0x54,0x94,0x95, 0xff,0xf0,0x53,0xfa,0xcc,0x11,0xa9,0xa8,0x53,0x49,0x49,0x65,0xed,0x16,0xf8,0xbc, 0x9a,0xa,0x4b,0x49,0x9d,0x95,0x51,0x5b,0xd5,0xd,0xb0,0x1b,0xf3,0xe7,0x4e,0x93, 0xb2,0x73,0x35,0xb8,0xed,0xc7,0x2c,0xac,0x13,0x16,0x45,0x91,0x33,0x16,0x36,0xb0, 0xed,0xbf,0xa6,0xae,0xd3,0x5e,0x35,0xed,0xdd,0x3e,0xf7,0xe0,0xe0,0x0,0x9c,0x73, 0xbc,0xf4,0xd2,0x4b,0x81,0x97,0x32,0xcb,0x3b,0x44,0x71,0xc9,0x8d,0x45,0xd5,0x70, 0xf8,0x13,0xe2,0xb3,0x9f,0xfd,0xec,0x86,0x10,0x2,0xfb,0xfb,0xfb,0xb5,0x1,0xee, 0x3a,0x44,0xe1,0xa3,0xe,0xc6,0x18,0xc6,0xe3,0xf1,0xf4,0xfd,0x8d,0x42,0x3f,0x90, 0xb8,0x7b,0xf3,0x3a,0xe2,0x2c,0x43,0x9a,0x29,0x64,0x85,0xb1,0x70,0x95,0xdf,0x44, 0xa0,0x22,0xd8,0x6d,0xfb,0x5c,0x54,0x73,0xc1,0x17,0x19,0x8c,0x13,0xd9,0x90,0x39, 0x1,0x9c,0x40,0x6c,0x7a,0x98,0xe2,0x3f,0x62,0x6,0x75,0xdd,0xf3,0x72,0x44,0x94, 0x1f,0x30,0xf9,0xc1,0x88,0x83,0x11,0x7,0x8c,0xf7,0x18,0xf8,0x8c,0xf1,0x6d,0x53, 0x5b,0xd2,0x3c,0xcc,0x34,0xc,0x40,0xf9,0x35,0x64,0x84,0x73,0x3f,0x80,0xa2,0xae, 0x22,0x2f,0xb8,0x98,0x16,0x73,0x77,0xe1,0xd1,0xda,0xf9,0x6a,0xef,0xbf,0x10,0x2, 0x30,0x54,0xd2,0x75,0xb2,0xe,0x87,0x41,0xde,0xcf,0x5e,0x19,0x40,0x51,0x3e,0x6f, 0xd6,0xd6,0xd6,0xa0,0x95,0x2,0x67,0x79,0x6d,0xc5,0x64,0x32,0x81,0x52,0xaa,0x51, 0x97,0xab,0x2e,0x2d,0xd7,0x22,0x99,0x34,0x4d,0x31,0x1a,0x8d,0x70,0xe7,0xce,0x1d, 0x0,0x30,0xb6,0x8d,0x81,0x4d,0x9d,0xf5,0x1d,0xca,0x6e,0x5c,0x62,0x63,0x51,0x63, 0x3c,0xe,0xae,0x5e,0xbd,0x8a,0xbd,0xbd,0x3d,0x97,0xc7,0xed,0xe7,0x69,0xb7,0xf1, 0x9a,0xb4,0xd6,0x18,0x8d,0x46,0xae,0xaa,0x54,0x8,0x81,0x6b,0xd7,0xae,0x15,0x75, 0x1b,0x99,0xcb,0x86,0xb2,0xc6,0x42,0x57,0xda,0x3e,0x1e,0xd7,0x10,0x9c,0x94,0x33, 0x74,0x56,0x4e,0xd5,0xb1,0x3f,0xe7,0x1c,0xda,0xbb,0xb6,0xfc,0x62,0xdd,0x2a,0x5c, 0xe2,0xbe,0x13,0x2b,0x53,0x52,0xe,0x4d,0xe8,0x42,0xd,0x56,0x1b,0xa8,0x24,0xc5, 0x70,0x38,0x2c,0xc,0x4c,0x51,0x96,0x59,0xc4,0xa,0x17,0x6e,0x8,0x45,0x8f,0xc, 0xbf,0x5e,0x43,0x4a,0x89,0xfd,0xfd,0x7d,0x1b,0x3,0xf9,0x9,0xcf,0x50,0x50,0x93, 0x43,0xd9,0x8d,0xce,0x58,0xb8,0xf1,0xf2,0xcb,0x2f,0x23,0x4d,0x53,0x87,0x2e,0xda, 0x6e,0x68,0xbe,0xb7,0x34,0x1a,0x8d,0x4a,0xc6,0x63,0x63,0x63,0x3,0x57,0xb7,0xb6, 0x72,0x71,0x41,0xa5,0x5c,0x90,0xdb,0xc5,0x2e,0x2a,0xdc,0xec,0xd9,0x7b,0x7b,0x15, 0xf,0xd9,0x50,0xad,0xd7,0x7c,0x5a,0x46,0xe1,0xa2,0xac,0x45,0xf7,0x3d,0xba,0xbd, 0xa5,0x15,0x15,0x55,0x97,0x2a,0xeb,0xb0,0xa3,0x31,0xce,0x50,0x58,0xfa,0x96,0x88, 0xd0,0xef,0xf7,0x4b,0x35,0x50,0x36,0xb,0x71,0x21,0x16,0x2d,0x7a,0x74,0xdb,0xf4, 0x76,0x1b,0x14,0x3f,0x38,0x38,0xc0,0xd6,0xd6,0x16,0xde,0x7c,0xf3,0xcd,0x9f,0xaa, 0xee,0x1d,0x1d,0xaa,0xe8,0x8c,0xc5,0xbc,0xd,0x9f,0xdd,0xbe,0x7d,0x3b,0x5c,0x5b, 0x5b,0xc3,0xde,0xde,0x9e,0xf3,0x40,0xaa,0xe9,0x7c,0x75,0x87,0xaf,0x72,0x99,0xa6, 0xa9,0xcb,0xcc,0xb0,0x34,0xd6,0x9d,0xdb,0xb7,0xc1,0xb,0x7e,0x35,0xcb,0x32,0x68, 0x30,0x8c,0x93,0xb8,0x56,0x60,0xf0,0x28,0x62,0x83,0xd5,0x8c,0x8f,0xaa,0x31,0x98, 0x67,0x28,0xfc,0x5,0x7c,0x96,0x1b,0xf7,0x45,0xd2,0x57,0xea,0x9c,0xcf,0xf6,0xd7, 0x67,0x51,0xb5,0xb6,0x31,0x66,0xa6,0x75,0xaa,0x6d,0x86,0xc4,0x18,0x83,0xe0,0xd3, 0x22,0x3e,0x2b,0xd3,0xd3,0x88,0x58,0x2a,0xeb,0xd3,0xae,0x69,0x21,0x4,0xe,0xe, 0xe,0x30,0x99,0x4c,0xf0,0x89,0x4f,0x7c,0xc2,0x26,0xbf,0x70,0x14,0xda,0x35,0x16, 0x61,0x74,0x42,0x82,0x9d,0xb1,0x68,0x9a,0xd0,0x44,0x44,0xd9,0xad,0x5b,0xb7,0x10, 0xc7,0x71,0x2b,0x8f,0xa5,0x9,0x5d,0x1c,0x1e,0x1e,0x3a,0xcf,0x49,0x29,0x85,0x2b, 0x9b,0x1b,0xb8,0x76,0xed,0xa,0xe2,0x38,0x76,0x88,0xc2,0x22,0x8c,0x79,0x2,0x83, 0xcb,0xf4,0xe9,0x6e,0x7a,0x5e,0xd3,0x3e,0xb6,0x4a,0x4b,0xe0,0xb8,0x46,0x63,0x15, 0x85,0x4,0x3b,0x3,0x52,0xbf,0x36,0x16,0x19,0x91,0xaa,0xe3,0xa4,0x94,0x2,0x3, 0x30,0x1c,0xf4,0xc0,0x60,0x1c,0x3a,0x48,0x92,0xc4,0x25,0x94,0x2c,0x9a,0x4b,0x56, 0x4d,0xc1,0x16,0xcd,0x5a,0x85,0xd9,0x20,0x8,0xf0,0xea,0xab,0xaf,0x46,0xc5,0xeb, 0x4c,0x55,0x70,0xd4,0xee,0xb,0xdd,0x1d,0xec,0x8c,0x45,0xed,0xf8,0xce,0xef,0xfc, 0xce,0x4d,0xc6,0x18,0x9e,0x3d,0x7b,0xe6,0xa0,0xeb,0xa2,0xcd,0xa2,0xba,0x51,0x8f, 0xc7,0x63,0x97,0x46,0x4b,0x44,0x20,0xa3,0x70,0xf7,0xa5,0x3c,0x35,0x2f,0x53,0x1a, 0x71,0x92,0x82,0x88,0x90,0x78,0x71,0x8c,0x93,0x2a,0xd2,0x6b,0x13,0xeb,0xf0,0x1f, 0x5e,0x95,0xa5,0xd0,0x54,0x21,0xbf,0xe0,0x45,0x2b,0xb5,0x29,0x77,0xfb,0xca,0x72, 0xf3,0xb3,0xb6,0xc2,0xba,0x48,0x25,0xf7,0xb3,0x7,0xc3,0x50,0x22,0x8,0x2,0xb7, 0xd9,0x73,0xce,0x1d,0xaa,0x68,0xdb,0xaf,0xde,0xae,0x45,0xdb,0x3a,0x75,0x6f,0x6f, 0xf,0x2f,0xbf,0xfc,0x32,0x88,0x28,0xad,0x32,0xc,0x28,0x4a,0x29,0x3b,0x54,0xd1, 0x19,0x8b,0x46,0x1a,0xaa,0x98,0xc0,0xfb,0x37,0x6e,0xdc,0xc0,0xee,0xee,0x6e,0x6b, 0x74,0x51,0x55,0xb0,0xb4,0x9e,0x8b,0x9d,0xa4,0x5a,0x6b,0x6c,0xac,0xaf,0xbb,0xaa, 0xee,0x24,0x49,0x90,0x15,0x59,0x51,0x49,0x3a,0x71,0x74,0x54,0x9d,0x2c,0xc1,0xb2, 0xe9,0xb4,0xf3,0x28,0xa9,0x66,0x43,0xc1,0x17,0x1c,0x67,0x8b,0x30,0xda,0xa0,0x8d, 0x95,0xdd,0x98,0xbb,0xf6,0x81,0x73,0xef,0x57,0x53,0xc1,0x66,0x1e,0x9f,0x28,0x53, 0x4f,0xd6,0xe1,0xea,0xf7,0xfb,0xa5,0xf9,0x6d,0x15,0x62,0xad,0x1,0x58,0x84,0x2e, 0x7d,0x51,0x50,0x63,0xc,0x76,0x77,0x77,0xc1,0x39,0xc7,0x77,0x7d,0xd7,0x77,0x6d, 0xd4,0x89,0x8c,0x36,0xc8,0x3,0x75,0xa3,0x33,0x16,0x53,0xb8,0x69,0x27,0xcc,0x9d, 0x3b,0x77,0xfe,0x35,0x0,0xec,0xec,0xec,0x38,0x81,0xc0,0x45,0x9b,0xb4,0x5f,0xc4, 0x67,0x3d,0x9f,0x24,0x49,0x40,0x44,0x90,0x3c,0x97,0x10,0xb9,0x7d,0xfb,0xb6,0xb, 0xda,0x65,0x59,0x8e,0x2a,0xb2,0x54,0xd7,0xc6,0x2d,0x8e,0x83,0x30,0xda,0x18,0x8a, 0x55,0xf5,0x36,0x6b,0xd1,0xc5,0x82,0x0,0xf9,0x4a,0xd0,0x50,0xdd,0xbe,0xb2,0xd4, 0xfd,0x9e,0xad,0xb7,0x60,0x33,0x5,0x78,0xc6,0x18,0x30,0x29,0x5c,0x83,0x23,0x9b, 0xc5,0x64,0xb,0xe9,0xda,0x3a,0xd,0x52,0x4a,0xd7,0xae,0xd5,0x8a,0x86,0xde,0xb8, 0x71,0x3,0x44,0x74,0x50,0x47,0x37,0x75,0xc1,0xed,0xce,0x58,0x2c,0x44,0x15,0x76, 0xdc,0xbe,0x7d,0x31,0x84,0x40,0xc2,0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0xfb, 0xdf,0xb8,0x7a,0xf5,0x2a,0xe,0xe,0xe,0x90,0xa6,0xe9,0xc,0xd4,0xb5,0xc1,0x6b, 0x7f,0xc3,0xb2,0x7f,0xf3,0x3d,0xa8,0xbd,0xbd,0x3d,0x67,0x6c,0xb4,0xce,0xb0,0xb5, 0x31,0xc0,0xcd,0x1b,0xd7,0x10,0xc7,0x93,0xdc,0x50,0x28,0x42,0xaa,0xf2,0xa,0xd4, 0x3c,0x33,0x8a,0xe5,0xc1,0x3d,0x70,0x80,0x33,0x18,0x10,0xc,0x8e,0x43,0x49,0xe5, 0x7d,0x27,0xa6,0x3d,0x28,0xf2,0x83,0xc8,0x20,0x4f,0x25,0x5f,0x7c,0xe4,0x5,0xad, 0xb3,0x7f,0x6b,0x3a,0xea,0xdf,0x83,0x5a,0x89,0xbb,0x35,0x19,0x2,0x45,0xc,0x80, 0x2,0x74,0xbe,0x29,0x67,0x4,0xac,0x89,0x10,0x10,0x1c,0x1,0xc6,0x0,0x67,0x0, 0x17,0x80,0x90,0x0,0xcb,0xbf,0xb7,0x60,0x1a,0xa0,0x14,0x4c,0x0,0x60,0xe2,0x54, 0xf,0x12,0x9,0xa4,0x31,0x20,0xc,0x21,0x4d,0x7e,0xd,0x86,0x1,0x83,0x9,0xe0, 0xb7,0xfb,0xe8,0xe8,0xa7,0x8a,0x12,0xc2,0xb4,0x5e,0x87,0x60,0x8c,0x2,0x31,0x53, 0x2a,0x5c,0x5,0x80,0xcd,0xf5,0xe1,0x8c,0xe,0x9b,0x2f,0xad,0xd3,0x66,0x6d,0xd8, 0xa0,0x36,0x0,0xa7,0xd2,0xb0,0xb9,0xb9,0xf9,0x13,0x4d,0xe8,0xa1,0x4b,0x99,0xed, 0x8c,0xc5,0x5c,0x54,0x51,0xf9,0xa9,0x3e,0xf9,0xc9,0x4f,0x62,0x34,0x1a,0xe1,0xe0, 0xe0,0x20,0xef,0x84,0xc7,0xa6,0xb9,0xdd,0x55,0xad,0xfc,0x26,0x8f,0x57,0x29,0x95, 0x37,0x47,0x2a,0x9e,0xaf,0xb5,0xc6,0x9d,0x3b,0x77,0x30,0x2c,0x34,0xa3,0x8c,0xd2, 0x2e,0xe0,0x6d,0x7b,0x7,0xfb,0x59,0x20,0xb5,0x5e,0xf6,0x31,0x51,0xc6,0xa2,0xf7, 0xaa,0x7a,0xcc,0x47,0xa9,0xf5,0xa8,0x7b,0x8f,0xc6,0xc6,0x41,0x73,0xce,0xcb,0x3e, 0x47,0x8,0x40,0x65,0xc,0x8c,0x3,0xd0,0x6,0x60,0xc0,0x9b,0x6f,0xde,0x0,0xe2, 0xc,0x8a,0xd,0x11,0x68,0x3,0xa1,0x8,0x50,0x4,0xc6,0x2,0x10,0x24,0x34,0x42, 0x20,0x5c,0x7,0x19,0x9,0x6,0x75,0xaa,0x7,0x37,0x3,0x68,0x41,0x80,0xda,0x83, 0x92,0x1,0xa0,0x24,0x5e,0x79,0xe5,0x25,0xc,0x22,0xb9,0xb4,0x1c,0xc8,0x65,0xd0, 0xd1,0xaa,0x52,0x47,0xd6,0x30,0x24,0x71,0x56,0xfa,0xdb,0x60,0x30,0x70,0x9b,0xbc, 0x8d,0xd,0xee,0xec,0xec,0x94,0x82,0xe1,0xcd,0x28,0xba,0x3c,0xcf,0x38,0xe7,0x98, 0x4c,0x26,0x18,0x8d,0x46,0xb8,0x72,0xe5,0xa,0xde,0x7c,0xf3,0xcd,0xff,0xa1,0x43, 0xf,0xdd,0x38,0x11,0x92,0xfd,0xce,0x9d,0x3b,0x62,0x73,0x73,0x13,0xbb,0xbb,0xbb, 0x48,0xd3,0xb4,0x14,0xcc,0xb6,0x1b,0xb9,0x8f,0x2e,0xaa,0xde,0x31,0x11,0xb9,0x5c, 0x6e,0x5b,0xe0,0xa7,0x94,0xc2,0xb0,0xd7,0xc7,0xcd,0x9b,0x2f,0x22,0x4d,0x12,0x28, 0x5d,0x14,0xe9,0x15,0xdd,0xf4,0x4a,0x12,0xe6,0x96,0x8a,0xd2,0xcb,0xc7,0x2e,0x8e, 0x93,0x55,0x74,0x94,0xe7,0xcc,0xb,0xcc,0x2f,0xca,0x20,0xf2,0x17,0x74,0xe3,0xf7, 0x24,0x8d,0x40,0x8,0x68,0xa5,0x0,0x19,0x41,0xe9,0x31,0x7e,0xf8,0x4f,0x7f,0x1e, 0x5b,0x2f,0xc,0x41,0x4a,0x20,0x63,0xa,0x3a,0x0,0x20,0x1,0x82,0x1,0x83,0x1, 0x33,0x29,0x78,0x9a,0x20,0x38,0x81,0xfd,0x60,0x61,0x82,0x43,0x3a,0x0,0xa1,0x7, 0x1e,0x12,0xc0,0x32,0x20,0xdb,0xc6,0x8f,0xfc,0xe9,0xef,0x41,0xc0,0x0,0x10,0x5f, 0xea,0xfd,0xe7,0xfd,0xed,0xa2,0x19,0x8c,0x52,0x63,0x23,0x9a,0x52,0xb0,0x36,0xf5, 0xbc,0xd7,0xf,0x1,0x43,0x25,0x85,0x84,0xd1,0x68,0x34,0xa3,0x1c,0x3b,0xf,0xad, 0xfa,0xcf,0xd9,0xdf,0xdf,0xc7,0x68,0x34,0xc2,0x6b,0xaf,0xbd,0x56,0xcd,0x7e,0xea, 0x46,0x67,0x2c,0x8e,0x37,0x9f,0x3f,0xf3,0x99,0xcf,0x60,0x3c,0x1e,0xe3,0xe0,0xe0, 0xa0,0x36,0x78,0xdc,0xb4,0x1,0xfa,0x19,0x52,0x69,0x9a,0x62,0x34,0x19,0xe7,0x48, 0xc4,0xe4,0x1e,0xd3,0xed,0x9b,0xb7,0xb0,0xb1,0xb1,0x91,0x67,0x4d,0xa9,0xb4,0x28, 0xd2,0x53,0x98,0xa4,0x89,0xe3,0x6a,0x8d,0x46,0xc9,0x50,0xb4,0xd9,0x38,0x4e,0x6b, 0x73,0x59,0x64,0x8,0x16,0x6d,0xae,0x75,0x31,0x98,0x36,0x55,0xeb,0xce,0xcb,0x2c, 0x62,0xc6,0x42,0x4a,0x10,0x80,0xbe,0x8,0xf1,0x5d,0xaf,0xdc,0xc4,0x5f,0xf8,0x91, 0xef,0x7,0xe2,0x6d,0x8,0x2d,0x21,0x34,0x3,0x87,0x0,0x32,0x5,0x22,0x3,0x1e, 0xa,0x18,0x96,0x22,0xe3,0x31,0x8,0xc1,0xfc,0x83,0xe4,0xdc,0x3,0x8,0xe6,0x1e, 0x3a,0xfc,0x8,0xe0,0x6,0x86,0x31,0xb0,0x6d,0x83,0x37,0x3e,0xfd,0x9,0xfc,0x95, 0x3f,0xfb,0xa7,0xa0,0xc0,0x17,0x4a,0x94,0xb7,0x35,0xd0,0x17,0xa1,0x7,0xf8,0x3c, 0x1a,0xd2,0xd2,0xbd,0x49,0x92,0xaf,0x81,0xe1,0x70,0x8,0xc9,0x45,0xe9,0xfb,0x59, 0x5a,0xb7,0x2a,0x3b,0x5e,0x87,0x54,0xfd,0xcf,0xb3,0x29,0xec,0x3b,0x3b,0x3b,0xd8, 0xda,0xda,0xc2,0x9d,0x3b,0x77,0x78,0x27,0x45,0xde,0x8d,0x23,0x1b,0x8b,0x1a,0x48, 0xca,0x5e,0x7e,0xf9,0x65,0xb9,0xbe,0xbe,0x8e,0x9d,0x9d,0x1d,0x57,0xa0,0xe7,0xa3, 0x9,0x3f,0x1b,0xa3,0x6e,0x3,0xb0,0xcf,0xdf,0xd9,0xd9,0x71,0x8a,0x99,0x64,0xf2, 0x9f,0x2f,0xdf,0x7e,0x9,0x2,0xe4,0xfa,0x6,0x5b,0x2a,0x2a,0xce,0xd2,0x12,0xcc, 0xb6,0xef,0xb7,0x28,0x3b,0xea,0x24,0x36,0x8d,0x3a,0x8a,0xe8,0x24,0x36,0xa9,0xa6, 0x45,0xbc,0xe8,0xbc,0xa7,0xc2,0x84,0x2,0xc4,0x13,0x68,0xa3,0x61,0xc,0xc0,0x8c, 0x80,0x30,0xc0,0xdf,0xfa,0x6b,0xff,0x1e,0x7e,0xf4,0x87,0xde,0x86,0x3e,0xfc,0x18, 0x26,0x39,0x4,0x65,0x9,0x64,0x14,0x41,0x32,0x1,0x9d,0x28,0x30,0x16,0x40,0x50, 0x8,0x86,0x6c,0xfe,0xc1,0xd4,0xb1,0xe,0x61,0x24,0x90,0x1,0xfc,0xc9,0xe,0x5e, 0x79,0x7d,0x13,0xff,0xfc,0xa7,0xfe,0x26,0xc2,0xb5,0x14,0x7d,0x2,0xc,0x4f,0x5a, 0x1b,0xdf,0xa3,0x1a,0x8b,0x55,0x37,0x1e,0x8b,0x10,0xa7,0xa6,0xdc,0x39,0xb2,0xba, 0x69,0x61,0x18,0xa2,0xd7,0xf,0x4b,0x34,0xd3,0xe1,0xe1,0xa1,0xcb,0x80,0xf2,0x63, 0x86,0x6d,0xbf,0xfb,0xfe,0xfe,0x3e,0xe2,0x38,0xc6,0x9b,0x6f,0xbe,0x69,0x63,0x12, 0x5d,0x34,0xa9,0x1b,0x90,0x47,0x9c,0xd0,0xa5,0x6c,0x8,0x3b,0x99,0xee,0xdd,0xbb, 0x87,0xaf,0x7e,0xf5,0xab,0xd8,0xdf,0xdf,0xc7,0x95,0x2b,0x57,0xa6,0xb5,0x13,0x9e, 0x66,0x7e,0x1d,0xda,0xf0,0x3d,0x9f,0x2c,0xcb,0xb0,0xb7,0xb7,0x87,0xab,0x57,0xaf, 0x22,0x49,0x12,0x30,0x96,0xe1,0x5a,0xa1,0x43,0xf5,0xd1,0x93,0xc7,0x10,0x52,0xe6, 0x47,0x26,0x20,0x44,0x8a,0x4c,0x6,0x39,0x12,0x61,0xc,0x9c,0x53,0xa9,0xc9,0x4b, 0xdd,0x6,0xbc,0xec,0xc6,0xbd,0xcc,0x26,0x75,0x14,0x63,0x50,0x67,0x34,0x9b,0x38, 0xeb,0xea,0xf3,0xaa,0xfd,0x42,0x9c,0xb2,0x2f,0x33,0x8,0x8a,0xc6,0x54,0x50,0x1c, 0x30,0xc0,0x30,0x9a,0xe0,0xef,0xff,0xf7,0x7f,0x15,0xdf,0xf3,0xc7,0x7e,0x1b,0xff, 0xdb,0xff,0xfe,0x73,0xf8,0xe0,0x83,0xc7,0x50,0xe3,0x11,0xcc,0x58,0x21,0xc,0x7, 0x50,0x49,0x2,0x2e,0x2,0x68,0x11,0x2f,0xfa,0x2,0xc7,0x9b,0x71,0x61,0x80,0x9b, 0x57,0x38,0xbe,0xfc,0xce,0x9f,0xc4,0x5f,0xff,0xcb,0x7f,0x1e,0x37,0xaf,0xf6,0x20, 0x74,0xc,0x12,0x21,0x18,0xf8,0x89,0x1a,0xf4,0x45,0xf7,0xa9,0x4e,0xf8,0x72,0x15, 0xc,0x45,0x9d,0x98,0xa4,0x31,0x28,0x9c,0x24,0xed,0x52,0x62,0x39,0xe7,0x58,0x5b, 0x5b,0x73,0xaf,0x95,0x92,0x23,0x49,0x32,0x97,0xee,0x6a,0x83,0xd5,0xb6,0xde,0xc2, 0x77,0xe0,0x9a,0xbe,0x6f,0x9a,0xa6,0x78,0xf6,0xec,0x19,0xae,0x5f,0xbf,0x8e,0xdb, 0xb7,0x6f,0xb,0x54,0x7a,0x56,0x74,0xe3,0xf2,0xe,0xb6,0xec,0x3c,0xf0,0x5,0xc4, 0xa,0x84,0xc1,0xa,0x61,0x31,0xe,0x0,0x5f,0xf9,0xca,0x57,0xf4,0x64,0x32,0xc1, 0x9d,0x3b,0x77,0xd0,0xeb,0xf5,0x9c,0x56,0x8d,0xf,0x89,0xab,0xb,0xc4,0x37,0x1e, 0x36,0xc0,0x76,0xfb,0xf6,0x6d,0x70,0xb0,0x3c,0x68,0xc7,0x19,0xe,0x47,0x13,0xfc, 0xfe,0xef,0xff,0x3e,0x52,0x43,0x18,0xe,0x87,0x18,0xf4,0xfb,0x8,0x43,0x89,0x61, 0xaf,0x8f,0xc1,0x60,0x80,0xb0,0x28,0x44,0xe2,0x7c,0xda,0x60,0xbe,0xea,0xfd,0x1f, 0x67,0xce,0xb7,0x41,0x29,0x47,0xed,0xaf,0xd1,0x64,0xd8,0x16,0xbd,0x67,0x5d,0xeb, 0x56,0x70,0x82,0x26,0x1,0xd2,0x19,0x4,0x8,0x9c,0x85,0x60,0xc2,0x0,0xc8,0x0, 0x8a,0x40,0xc,0xd8,0x4f,0x14,0xde,0xfd,0x83,0x6f,0xe1,0xd1,0xd3,0x3d,0x80,0xd9, 0xc6,0x38,0x12,0x69,0xa6,0x21,0x4f,0x79,0xcf,0xdc,0xba,0x3a,0xc0,0x67,0x5e,0xbd, 0x8b,0x6b,0x57,0x86,0xe8,0x19,0x6,0x22,0x80,0x73,0x40,0x2b,0x80,0x24,0x20,0x40, 0xad,0xef,0x43,0x5d,0xb5,0x33,0xb1,0xc5,0xf7,0x71,0x5e,0x4f,0x11,0x76,0xca,0xdb, 0xe2,0x22,0x67,0xc1,0xea,0x4,0x97,0x6b,0x2a,0x34,0xb4,0xca,0x69,0x59,0xdb,0xb, 0x26,0x49,0x12,0xc,0x87,0xc3,0x5c,0x30,0x90,0x34,0x38,0x7,0xc8,0x18,0x6c,0x7f, 0xbc,0x8b,0x9d,0x9d,0x1d,0x4,0x41,0xe0,0x8c,0xc4,0x3c,0x75,0x83,0xea,0xdf,0xb7, 0xb7,0xb7,0xf1,0xf4,0xe9,0x53,0x7c,0xe1,0xb,0x5f,0xc0,0x4b,0x2f,0xbd,0xc4,0xfc, 0x35,0x5f,0x15,0xf,0xec,0x46,0x87,0x2c,0x5a,0xa1,0xa,0x6f,0xe2,0xd8,0x49,0x64, 0x18,0x63,0xec,0x8d,0x37,0xde,0xc0,0x57,0xbf,0xfa,0x55,0x8c,0x46,0x23,0x4,0x41, 0x50,0x42,0x17,0x75,0x5e,0xdc,0x4c,0x6c,0x83,0xe5,0x1e,0xd4,0xce,0xce,0xe,0x6e, 0xbe,0x78,0x23,0x87,0xd3,0x52,0x60,0xeb,0x85,0xd,0xdc,0x7d,0xf9,0x36,0xde,0xfb, 0xc3,0x6f,0x22,0x8,0x82,0xe2,0xbd,0x81,0x24,0x49,0xf2,0xdf,0xa5,0x2c,0xe8,0x2f, 0x3e,0xb7,0xf9,0xd2,0x49,0x7b,0xa7,0xcb,0x34,0x39,0x6a,0x73,0x1e,0x4d,0x9e,0xdf, 0x3c,0x7a,0xaa,0x84,0xd4,0x74,0x6,0xce,0x5,0x14,0x27,0x8,0x2e,0xa1,0x34,0xa0, 0x90,0x80,0x93,0x44,0xa8,0x1,0x86,0x4,0x9b,0x51,0x80,0xef,0xfd,0xae,0xd7,0xa1, 0x51,0xa8,0x84,0xc3,0xa6,0xb,0x1f,0x99,0x99,0x5c,0xe2,0xda,0xe5,0xe7,0x60,0x28, 0x3,0x43,0x8,0x22,0x8d,0x84,0xc5,0x8,0x4,0x1,0x6c,0x6d,0x6e,0xdc,0x62,0x9e, 0x4,0xc6,0x71,0x37,0x6b,0x7b,0xdd,0xc5,0x39,0xd0,0xf3,0x25,0xd4,0xc8,0xca,0x7f, 0x9f,0x22,0x8b,0x72,0x3f,0x18,0x19,0x85,0x18,0xe,0x87,0x39,0xfd,0x4,0x2,0xe7, 0x2,0xa3,0x22,0x66,0x28,0x8b,0xb5,0x60,0x6b,0x26,0x7c,0x75,0x85,0x45,0xce,0xc8, 0xfe,0xfe,0x3e,0x36,0x37,0x37,0x71,0xfb,0xf6,0x6d,0xee,0x9d,0x17,0x15,0x7d,0x2b, 0x3a,0x3a,0xaa,0x33,0x16,0xc7,0xa3,0xa2,0xfc,0x74,0x5a,0xc6,0x98,0xf8,0xca,0x57, 0xbe,0xa2,0xb7,0xb7,0xb7,0x31,0x1c,0xe,0x11,0x4,0x41,0x69,0x31,0x34,0x79,0xf8, 0xd3,0x82,0xad,0xfc,0xc7,0xee,0xee,0x2e,0x86,0xc3,0x21,0xfa,0xfd,0x7e,0x5e,0xa5, 0x9a,0x66,0x78,0xf1,0xda,0x75,0x3c,0x2b,0x3c,0x27,0x29,0x4,0xa4,0x18,0x22,0x61, 0x1a,0x62,0x92,0xb8,0x5e,0xc3,0xda,0x14,0x54,0x9,0x31,0x70,0x50,0x29,0x75,0xf7, 0x38,0x54,0x43,0xad,0x17,0x5b,0xfa,0x1e,0x7c,0x66,0x53,0xac,0x5f,0x94,0x8b,0xce, 0x81,0xcd,0xbc,0x3e,0xbf,0x66,0xf5,0xcf,0xab,0xfe,0x9b,0x21,0x0,0x8c,0x86,0x84, 0x80,0xd6,0x4,0x6,0x8d,0x40,0x87,0x0,0x0,0xcd,0x34,0x80,0x30,0xaf,0xc1,0x0, 0xc1,0x6a,0x35,0x90,0xf7,0x1e,0x6c,0x41,0xfa,0xea,0x49,0xd0,0x35,0x84,0x30,0xff, 0x6c,0x46,0x60,0x82,0x23,0xa4,0x41,0x5e,0xf3,0x71,0x12,0x8a,0xbb,0xe6,0x88,0x75, 0x36,0xee,0xe5,0xa6,0x96,0xe6,0x3b,0x6d,0x44,0xe1,0xc,0x3f,0x15,0x46,0xbf,0xa0, 0x9e,0xc8,0x30,0x18,0xd,0xa4,0x3a,0xaf,0xa7,0xc8,0xe2,0x31,0x4,0x7,0x86,0x51, 0x8,0x29,0x18,0x12,0xa5,0x10,0x84,0x21,0xb2,0x4c,0xe1,0xd9,0xf6,0x4e,0xc9,0xd9, 0xb0,0xc8,0xc2,0x17,0x7,0x4,0xe0,0xfe,0xee,0x9f,0x83,0x94,0x12,0x4f,0x9f,0x3e, 0xc5,0x78,0x3c,0xc6,0xdb,0x6f,0xbf,0xbd,0x5b,0x5c,0x12,0xf2,0xaa,0xb5,0x4d,0x87, 0x2c,0x2e,0xf7,0x38,0x71,0x37,0x8a,0x88,0xcc,0x67,0x3e,0xf3,0x19,0x97,0xa7,0xd, 0x60,0xa9,0xcd,0xda,0xf2,0xaa,0x52,0x4a,0x3c,0x7b,0xf6,0xcc,0x4d,0xec,0x2c,0xcb, 0x0,0x0,0xaf,0xbe,0xfa,0x2a,0xa4,0x94,0x98,0x4c,0x26,0xae,0x5,0x6b,0xa2,0x32, 0x8c,0xc7,0x63,0x47,0x79,0x39,0x6f,0x8c,0xa6,0x7d,0xbf,0x97,0x11,0x1a,0x6c,0xbb, 0xf0,0xdb,0xbe,0xdf,0x71,0xd7,0xd7,0x59,0xca,0x79,0xac,0xca,0x5e,0x70,0x56,0x81, 0xe8,0x79,0x59,0x7a,0xad,0x3a,0x1d,0x9e,0xc0,0x79,0x36,0xa5,0xb5,0x5a,0x29,0xf, 0x3b,0x9f,0xb3,0x2c,0x83,0x52,0xa,0x52,0x4a,0xc,0x6,0x3,0x17,0xe0,0xd6,0x5a, 0xbb,0xa0,0xf4,0x22,0x23,0x67,0xd7,0x96,0x4f,0xd,0xb,0x21,0x5c,0xac,0xe2,0xce, 0x9d,0x3b,0xb8,0x75,0xeb,0xd6,0x75,0xdf,0x38,0x74,0x14,0x54,0x37,0x8e,0x85,0x2c, 0xe6,0x8d,0xdb,0xb7,0x6f,0xb3,0x5b,0xb7,0x6e,0xd1,0xe3,0xc7,0x8f,0xf3,0x78,0x42, 0x18,0xb6,0xde,0xac,0xfd,0x60,0x78,0x92,0x24,0xd8,0xdd,0xdd,0xc5,0xf5,0xeb,0xd7, 0xdd,0x82,0x19,0x46,0x3d,0xbc,0xfa,0xf2,0x27,0xf0,0x47,0xdf,0x7c,0xdf,0x75,0xfe, 0xa,0xc3,0x10,0x4a,0x29,0x24,0x45,0x6,0x88,0x2d,0x4e,0xca,0xd,0x5,0x9d,0xe8, 0x46,0xb8,0xac,0x62,0xed,0xcc,0x6,0x74,0xdc,0xcf,0x9f,0x83,0x78,0x18,0x63,0xee, 0x44,0x8e,0x63,0x18,0x57,0xc9,0x60,0x9c,0xf5,0xfb,0x2c,0x13,0x23,0x5a,0xe6,0xf1, 0x26,0xa,0xa8,0x2e,0x81,0xc1,0x6,0xb4,0x5d,0xbc,0x42,0x6b,0x98,0x4c,0x41,0x25, 0x29,0xa4,0x94,0x58,0x5f,0x5f,0x77,0x34,0x93,0xcd,0xc,0xdc,0xdd,0xdd,0x6d,0x75, 0xcf,0xfd,0x76,0x0,0xd6,0xd8,0x10,0x11,0x1e,0x3f,0x7e,0xc,0x0,0xf8,0xf0,0xc3, 0xf,0x3f,0x47,0x44,0xaa,0x89,0x3d,0xe8,0x46,0x87,0x2c,0x4e,0x12,0x6e,0x73,0x0, 0x78,0xfc,0xf8,0xf1,0xe7,0x88,0x8,0xdb,0xdb,0xdb,0xad,0x4,0xcc,0xaa,0x1c,0xbc, 0x95,0x57,0xde,0xdd,0xdd,0x75,0x12,0xc9,0xc6,0x18,0xe8,0x2c,0xc5,0x8b,0xd7,0xaf, 0xe3,0xc6,0x8d,0x1b,0x18,0x8d,0x46,0x60,0x52,0xe0,0xe0,0xf0,0x10,0x4a,0x19,0xd7, 0xdb,0xdb,0x42,0x71,0xad,0x35,0x94,0xa6,0x92,0x68,0xe1,0x49,0xd2,0xa,0x4d,0x5e, 0x5c,0x9b,0x3a,0x89,0x93,0x42,0x19,0x4d,0xa9,0xb5,0x67,0x51,0x47,0x72,0x1e,0x72, 0xe6,0x27,0x7d,0xaf,0xaa,0x8f,0xd7,0x65,0xce,0xd5,0x5d,0xdf,0x79,0x15,0xf6,0x6d, 0x10,0x44,0xb3,0x42,0x33,0x83,0xd6,0x54,0xea,0x3d,0x6f,0xb5,0xd1,0x18,0x63,0x58, 0x5b,0x5b,0x73,0xc8,0xc0,0x1e,0xcf,0x9e,0x3d,0x2b,0x65,0x1,0xb6,0x11,0xa,0x4, 0xa6,0x3a,0x50,0x71,0x1c,0x63,0x7f,0x7f,0x1f,0xaf,0xbe,0xfa,0x2a,0x7e,0xf4,0x47, 0x7f,0xf4,0x6b,0x85,0xdc,0x93,0x28,0xbe,0x67,0xa7,0xfd,0xd4,0x8d,0xd3,0x41,0x16, 0x36,0x33,0x8a,0x88,0xbe,0xf6,0xb5,0xaf,0x7d,0xd,0x7f,0xf0,0x7,0x7f,0x80,0xad, 0xad,0x2d,0x17,0x7b,0x68,0xb3,0xa0,0x6c,0xca,0x9f,0x5d,0x2c,0x4f,0x9f,0x3e,0x45, 0xaf,0xd7,0xcb,0x61,0xb3,0x36,0xe0,0x8c,0x70,0xfb,0xf6,0x6d,0xec,0xed,0x1f,0x22, 0x1e,0x8d,0x11,0x45,0x11,0x26,0x69,0x92,0x2f,0x2,0x96,0x40,0x4a,0xe9,0xba,0x7c, 0xe5,0x52,0xce,0x1c,0x64,0x90,0x57,0x2b,0xb7,0x50,0x9b,0x3d,0x1a,0xd2,0x60,0xad, 0x6b,0x22,0x4e,0xd7,0xf3,0xae,0x16,0x43,0x96,0xcf,0x75,0xd1,0x59,0x5d,0x96,0x5d, 0x61,0xde,0xbd,0x5f,0x94,0xb1,0x36,0xef,0x39,0x8b,0xe6,0xd4,0xbc,0x39,0x42,0x44, 0xd0,0x86,0xa0,0xbd,0xfe,0xda,0xb6,0x9e,0x2,0x0,0xfa,0xfd,0xfe,0x4c,0x96,0x93, 0xad,0xb4,0xb6,0x6,0x64,0xd1,0x8,0x82,0x0,0x69,0x9a,0xba,0xf5,0x15,0x86,0x21, 0x3e,0xfc,0xf0,0x43,0x84,0x61,0x88,0xef,0xf9,0x9e,0xef,0x19,0x0,0x10,0x94,0xb, 0x97,0x69,0x1f,0x51,0x74,0x1,0xee,0x6e,0x9c,0x6a,0xea,0xc7,0xe7,0x3e,0xf7,0xb9, 0xb5,0xe1,0x70,0x88,0x47,0x8f,0x1e,0x2d,0x15,0x33,0xf0,0xeb,0x24,0x6c,0xbc,0xe2, 0xd9,0xb3,0x67,0xb9,0x1,0x10,0x39,0x3c,0xef,0x5,0x21,0x5e,0xfb,0xe4,0x2b,0xb9, 0x14,0x88,0x17,0xbb,0xb0,0x9e,0x52,0x9a,0xa6,0x25,0xa9,0x11,0xad,0x35,0x8,0xfc, 0xc8,0x92,0xe6,0xc7,0xdd,0x80,0xda,0x7a,0xea,0xc7,0xf5,0xf8,0xe7,0xbd,0xef,0xf3, 0x58,0xd9,0xbc,0xec,0x79,0xb6,0x45,0x2b,0xa7,0x51,0xec,0x77,0xdc,0xef,0x68,0xe7, 0xa9,0x1f,0xa3,0xb0,0xf3,0x38,0x8,0x5,0x86,0x6b,0x53,0xf9,0x71,0xdb,0x2a,0x75, 0x7b,0x7b,0xdb,0xc5,0x1e,0xda,0xa,0x5,0x4a,0x29,0xc1,0x18,0x83,0x94,0x12,0x3b, 0x3b,0x3b,0xd8,0xdd,0xdd,0xc5,0xeb,0xaf,0xbf,0xe,0x0,0x71,0x61,0x28,0x9a,0x9c, 0xc0,0xe,0x61,0x74,0xc6,0xe2,0xe4,0xd7,0x78,0x11,0x10,0x1b,0xd9,0x60,0xf7,0xee, 0xee,0x6e,0xeb,0xbe,0xd9,0x96,0x57,0xb5,0x46,0xc3,0xb6,0x76,0xdc,0xdf,0xdf,0x7, 0xb7,0xc5,0x66,0xa4,0x71,0x6d,0xeb,0x5,0xbc,0xf6,0xca,0xab,0x98,0x4c,0x26,0x98, 0xc4,0x31,0xe2,0xc2,0x58,0x24,0x49,0x92,0x7,0xc0,0xb,0xe1,0x41,0x7f,0xb3,0xf4, 0x7b,0x61,0x1c,0x67,0x33,0xae,0x7a,0x9c,0xbe,0x8,0xdb,0x71,0x2a,0xbb,0xab,0xc5, 0x58,0xcb,0x6e,0x50,0x4d,0xcf,0x59,0xf4,0x1e,0xab,0x52,0xed,0x9c,0x2b,0xab,0x4e, 0x8f,0x6a,0xbf,0x90,0xea,0xe3,0xf3,0x9e,0x7f,0xb4,0xe7,0x2d,0x36,0x32,0x4d,0xf3, 0x61,0x59,0x2a,0xca,0x7f,0x1f,0x17,0x9b,0xf0,0xe2,0x14,0x36,0xa0,0x1d,0x46,0x79, 0x40,0x5b,0x30,0xee,0xd6,0x84,0x52,0xa,0x4f,0x9f,0x3e,0x6d,0xec,0xd3,0xbd,0xe8, 0x1c,0x6c,0x61,0xdf,0x93,0x27,0x4f,0x10,0x4,0x1,0x7e,0xf3,0x37,0x7f,0x13,0xf, 0x1e,0x3c,0xf8,0x3d,0x8b,0x22,0x2c,0x9d,0xdc,0xd1,0x50,0xdd,0x38,0x55,0x63,0xe1, 0xcb,0x16,0xbf,0xfe,0xfa,0xeb,0xf2,0xca,0x95,0x2b,0x78,0xfa,0xf4,0xa9,0xcb,0x56, 0x5a,0x74,0xf8,0x6d,0x1d,0x6d,0xa,0x20,0x0,0x3c,0x7e,0xfc,0x18,0xe3,0x78,0x82, 0x30,0x94,0x80,0x21,0x18,0xa5,0x71,0xe7,0xa5,0xdb,0x78,0xf1,0xc5,0x17,0x71,0x38, 0x19,0x23,0xc9,0x52,0x27,0xdb,0x6c,0xbd,0x32,0xa5,0x94,0x3b,0x2f,0xbf,0x7,0x46, 0x13,0xd,0xb0,0x88,0xee,0x59,0xb4,0x81,0x72,0x3e,0x35,0x18,0x47,0xf1,0x56,0xdb, 0x18,0x89,0xe3,0x7a,0xe7,0xf3,0xc,0xc5,0x71,0xbd,0xeb,0xa3,0x78,0xf6,0xcb,0x18, 0xa9,0xe3,0xbe,0x6e,0x91,0x51,0x6d,0xba,0x1e,0xf3,0x34,0x95,0xfc,0xc7,0xdb,0x1a, 0x8a,0xba,0x7b,0xee,0xf7,0xa8,0xb0,0x7d,0x2a,0x88,0x8,0xbd,0x5e,0xf,0xfd,0xa8, 0xe7,0x1c,0x1d,0x21,0x4,0xb6,0xb7,0xb7,0x31,0x99,0x4c,0x5c,0x42,0x88,0xcd,0x16, 0x5c,0x74,0x9d,0xfc,0x75,0xb0,0xb3,0xb3,0x83,0x38,0x8e,0x11,0x45,0x11,0xa4,0x94, 0xf8,0xca,0x57,0xbe,0xf2,0xdd,0x8c,0xb1,0xb5,0x42,0x38,0xb0,0x4b,0x95,0xed,0xc6, 0xd9,0xd1,0x50,0xc5,0x64,0xd3,0x1f,0x7f,0xfc,0xf1,0xe7,0xb4,0xd6,0x78,0xf2,0xe4, 0x89,0xe3,0x4a,0xab,0x9d,0xbb,0xfc,0xa,0x6f,0x3f,0x63,0xa3,0x5a,0xe1,0xbd,0xb3, 0xbd,0x8b,0x2c,0xd3,0x10,0x81,0x84,0x81,0x86,0xa1,0x14,0x9f,0x7a,0xf5,0x15,0x6c, 0xe,0x7,0x48,0xf,0xf,0x31,0x4a,0x32,0xc4,0xca,0x20,0x56,0x1a,0x87,0xc9,0x4, 0x99,0xc9,0x3d,0x34,0x32,0xa,0xa0,0xbc,0xf,0x6,0x98,0x80,0x2e,0xe4,0x13,0x66, 0xd1,0xe,0x73,0x47,0x93,0x77,0x3b,0xaf,0x43,0x9e,0x5d,0x5a,0x42,0xe4,0x59,0x59, 0x36,0x76,0xe2,0x2f,0xd2,0x79,0x1b,0xf3,0xc2,0xe6,0x46,0xc0,0xdc,0x8d,0xc6,0x10, 0xb9,0x63,0xda,0x95,0xc3,0x3b,0x16,0x6e,0x9a,0x47,0xf3,0xd6,0xdb,0x7a,0xfe,0xda, 0xe4,0xca,0xe9,0x86,0x58,0xed,0xb1,0xc8,0x48,0x2d,0x34,0x8c,0x95,0xc3,0x5e,0x7, 0x30,0x6,0x54,0x6a,0x7c,0x6a,0xf5,0xbd,0xc0,0x4b,0x87,0x21,0x56,0xfe,0x59,0xe9, 0xc3,0xe2,0x3b,0x6,0xb,0xd3,0x6c,0xc1,0x4b,0x52,0x1e,0x4,0xe,0x6d,0x0,0xa5, 0xc9,0x5d,0x93,0xcc,0x10,0x12,0x35,0xad,0xd4,0xde,0xda,0x5c,0x47,0x14,0x84,0xee, 0x35,0x52,0x4a,0x6c,0x6f,0x6f,0x3b,0xc1,0xce,0xea,0x7a,0xb2,0x73,0xa2,0xae,0xf0, 0xd5,0xce,0xc1,0x20,0x8,0xb0,0xbf,0xbf,0x8f,0x67,0xcf,0x9e,0x61,0x6b,0x6b,0xb, 0xd7,0xae,0x5d,0xc3,0xfa,0xfa,0x3a,0x18,0x63,0xf8,0xc5,0x5f,0xfc,0xc5,0x83,0xba, 0x69,0xd9,0x6d,0x95,0xdd,0x38,0xb5,0x6c,0x28,0x7f,0xbc,0xf3,0xce,0x3b,0xff,0xef, 0x5b,0x6f,0xbd,0x85,0x9d,0x9d,0x1d,0x6c,0x6f,0x6f,0x23,0x8a,0x22,0x97,0x95,0x61, 0x27,0xb2,0x45,0x13,0x8b,0xc6,0xde,0xde,0x9e,0xcb,0xb0,0xb2,0x9b,0x3d,0xe3,0x84, 0x4f,0x7f,0xfa,0xd3,0xe0,0x9c,0x23,0x8d,0x13,0x24,0x49,0x7e,0xc0,0x10,0x76,0x77, 0x77,0x73,0xa4,0xa1,0x4c,0xb1,0x99,0xf9,0xd,0x84,0x78,0x69,0xc3,0xb5,0xc5,0x6f, 0x7e,0xb7,0xcf,0x62,0x8f,0x99,0xbb,0x19,0x34,0x5f,0x8b,0xe9,0x86,0xc2,0x39,0x2f, 0x65,0xb1,0xb4,0xa1,0x8e,0x9a,0x32,0x74,0xa8,0x65,0x37,0xbc,0x3a,0x84,0xd2,0x6, 0x45,0x1d,0x85,0xdf,0x5f,0xd5,0xd8,0xc7,0xbc,0x4a,0xf8,0x65,0x91,0x9b,0xf5,0xe2, 0x8f,0x92,0x1,0x65,0xfb,0x65,0x3b,0xa4,0xcb,0x84,0x43,0x10,0xf6,0x79,0x69,0x9a, 0x42,0xa7,0x9,0x58,0xe1,0xe0,0xc,0x6,0x3,0x48,0x29,0x5d,0x50,0xda,0x6e,0xf2, 0x87,0x87,0x87,0x2e,0x9,0xc4,0xde,0x67,0xdf,0x21,0x91,0x52,0xba,0x7b,0x6f,0x8b, 0xf2,0xec,0xfc,0xe6,0x9c,0x23,0x4d,0x53,0x3c,0x7d,0xfa,0x14,0x83,0xc1,0x0,0x77, 0xef,0xde,0x45,0x10,0x4,0xd8,0xda,0xda,0xc2,0x70,0x38,0xc4,0xe3,0xc7,0x8f,0xf1, 0xe0,0xc1,0x83,0x52,0x5,0xa9,0x2f,0xe7,0xd3,0x8d,0xce,0x58,0x9c,0x24,0x5,0x65, 0x7c,0x3a,0xca,0x4a,0x81,0xbc,0xf9,0xe6,0x9b,0xe1,0x95,0x2b,0x57,0xb0,0xbd,0xbd, 0x8d,0xc3,0xc3,0x43,0x17,0x64,0xb3,0x29,0x81,0x76,0x21,0x2d,0xa2,0x16,0x82,0x20, 0xc0,0xb3,0x67,0xcf,0x70,0x70,0x70,0x80,0x20,0x8,0xdc,0xe7,0xf6,0xa3,0x0,0x9f, 0xfc,0xe4,0x27,0x91,0xa9,0x14,0x69,0x12,0x43,0x65,0x19,0x26,0x93,0xc4,0x69,0xfb, 0x27,0x49,0x32,0xd3,0x30,0x49,0x1b,0x3,0x4d,0xa6,0x16,0x61,0x4c,0x51,0xcf,0x51, 0xaf,0x43,0x79,0x83,0xb2,0x6,0xa3,0x8a,0x34,0xaa,0x31,0x94,0x26,0xd4,0x70,0x52, 0x34,0xcd,0xa2,0xd,0xde,0x47,0x24,0x3e,0x4a,0x99,0x8b,0x56,0x96,0x38,0x96,0x45, 0x6,0xa7,0xf9,0xfe,0x75,0xdf,0xaf,0x8d,0xf1,0x39,0xaa,0xa1,0xb0,0xf7,0x51,0xe9, 0x72,0xec,0xcc,0x52,0xa7,0x36,0xa8,0x3d,0x99,0x4c,0xd0,0xef,0xf7,0x31,0x1c,0xe, 0x5d,0xc1,0x9c,0x94,0x12,0x69,0x9a,0x3a,0xea,0xa8,0x29,0xad,0xd7,0x6f,0x90,0x4, 0xc0,0x51,0xb9,0x7e,0x25,0xb7,0x5d,0x83,0xaf,0xbe,0xfa,0x2a,0xb6,0xb6,0xb6,0xb0, 0xb6,0xb6,0x86,0x5e,0xaf,0x87,0xb5,0xb5,0x35,0xc,0x6,0x3,0x7c,0xfb,0xdb,0xdf, 0x46,0x8d,0x91,0xe8,0x3a,0xe2,0x5d,0xf2,0x71,0x2a,0x45,0x79,0x36,0xcd,0xce,0x13, 0x20,0xe3,0x44,0x94,0x3d,0x7a,0xf4,0x8,0xbf,0xf2,0x2b,0xbf,0x82,0xbd,0xbd,0x3d, 0x84,0x61,0x2e,0x41,0x61,0xb,0x8b,0x82,0x20,0x28,0xc5,0x17,0x9a,0x86,0xad,0xbf, 0x78,0xfc,0xf8,0xb1,0x53,0xdd,0x54,0x4a,0x41,0x19,0x83,0x1b,0xd7,0xaf,0x22,0xcb, 0x32,0x7c,0xf3,0x9b,0xdf,0x76,0xba,0x54,0x71,0xcc,0x40,0x51,0xee,0x61,0x25,0x85, 0x24,0x88,0x1f,0x8c,0x26,0xc3,0x41,0xcc,0x80,0x1,0xc8,0xb4,0x82,0xe4,0x41,0x8d, 0x7,0x3a,0x8d,0x47,0x2c,0xb3,0x5c,0xa6,0x2d,0xa7,0xa7,0x2f,0xa,0xa4,0x84,0xf6, 0xba,0xfb,0xd5,0x35,0x82,0x5a,0x14,0x37,0x99,0xf7,0x58,0x1d,0xa7,0x3e,0x4f,0x75, 0xb7,0x4e,0x7e,0x65,0x9e,0x12,0xeb,0xf3,0xb2,0x5f,0xb4,0x49,0x6d,0x5d,0x26,0x6e, 0x3b,0x35,0x10,0x66,0x61,0xda,0x6d,0x29,0x3e,0x50,0x9,0x9a,0x33,0x26,0x40,0x46, 0x97,0x68,0x56,0x1b,0xcc,0xb6,0xbd,0x2a,0xa4,0x94,0x58,0x5b,0x5b,0x83,0xe0,0x28, 0xa1,0x86,0x67,0xcf,0x9e,0x61,0x34,0x1a,0x39,0x44,0xe1,0x1b,0x2,0xfb,0xfe,0x36, 0xd6,0x67,0xd1,0x85,0x4f,0x51,0x71,0xce,0x31,0x1a,0x8d,0xf0,0xf4,0xe9,0x53,0xdc, 0xbd,0x7b,0x17,0xaf,0xbc,0xf2,0xa,0x46,0xa3,0x11,0x6,0x45,0x37,0xca,0xe1,0x70, 0x8,0xad,0x35,0xb6,0xb7,0xb7,0xc1,0x18,0x13,0x44,0xa4,0xad,0xf3,0xd7,0x19,0x8a, 0x6e,0xc8,0x53,0x58,0xa4,0xcc,0x73,0xf2,0x58,0x31,0xcf,0xac,0xe1,0x60,0x6f,0xbc, 0xf1,0x6,0xfd,0xd1,0x1f,0xfd,0x11,0x6,0x83,0x1,0x36,0x37,0x37,0x4b,0x39,0xdf, 0x6d,0x16,0xaf,0x2f,0x90,0xf6,0xe4,0xc9,0x13,0x44,0x51,0x84,0x30,0xc,0x91,0xaa, 0x3c,0x73,0xe4,0xce,0xad,0x97,0xa0,0x92,0x14,0xf7,0x1f,0x7e,0x84,0xb5,0xb5,0x35, 0x4f,0xc9,0x36,0x85,0x2e,0x4e,0x2b,0xc,0xc3,0x69,0xd,0x86,0xfd,0x5c,0xc6,0x40, 0xcc,0xc0,0xc0,0xc2,0xf5,0x69,0x9d,0xc2,0x51,0xa4,0x42,0xe6,0x6d,0xfa,0x9c,0x31, 0x70,0x21,0x40,0xc5,0xf7,0xae,0x22,0x8c,0xba,0x3a,0x90,0xea,0x63,0xd5,0x7f,0xcf, 0xdb,0x2c,0x17,0x19,0x9a,0x26,0xaa,0xe6,0xb8,0xfb,0xc3,0x51,0x53,0x89,0x4f,0xe2, 0x33,0x17,0x19,0xdd,0xc6,0x2,0xbd,0xca,0xfb,0x94,0xeb,0x72,0xa6,0xf3,0x61,0x9e, 0x71,0x2e,0x1d,0x28,0xcb,0xe5,0xdb,0xd,0xde,0xa2,0x6a,0x3f,0x98,0x9d,0x65,0x19, 0x4,0x7,0xae,0x5d,0x7d,0xa1,0xe8,0xfd,0x9e,0x3f,0x2f,0x8,0x2,0x3c,0x79,0xf2, 0xc4,0x55,0x69,0xdb,0xa3,0xa9,0xc8,0xd4,0x5f,0x4f,0xbe,0x6,0x94,0x31,0x6,0xf, 0x1f,0x3e,0x44,0xbf,0xdf,0xc7,0x5b,0x6f,0xbd,0x85,0x30,0xc,0x5d,0xc6,0x55,0xbf, 0xdf,0x87,0xd6,0x1a,0x87,0x87,0x87,0xf6,0x35,0x8c,0x31,0x26,0x6d,0x35,0x77,0x57, 0x67,0xd1,0x8d,0xd3,0xa0,0xa1,0xc8,0x13,0x16,0x9c,0xc9,0xcd,0x7e,0xfb,0xed,0xb7, 0xa3,0x8d,0x8d,0xd,0x3c,0x7e,0xfc,0x18,0x93,0xc9,0xc4,0x4d,0xee,0x36,0xa8,0x2, 0x0,0x64,0x28,0x4a,0x6,0xe3,0xd1,0xa3,0x47,0xf9,0x7b,0x14,0x68,0x59,0xab,0x14, 0xaf,0x7e,0xf2,0x13,0xb8,0x7e,0xe5,0x5,0x8c,0x46,0x23,0xa8,0x2c,0xf,0x16,0x26, 0x49,0x9e,0x1d,0x35,0x4e,0x62,0x24,0x2a,0x83,0xf2,0x5a,0x53,0x3a,0xef,0x9e,0xb8, 0x57,0x39,0x5b,0x8e,0x3b,0x2c,0x43,0x49,0xcd,0xeb,0x91,0x5d,0xa,0x8e,0x16,0x8b, 0x59,0x8,0xe1,0x29,0xe9,0xf2,0x52,0xf,0x73,0x9f,0x22,0x9b,0x27,0x17,0x51,0xfd, 0x5b,0xdb,0xd4,0xdb,0x36,0x69,0xb4,0x6d,0x8d,0xe0,0x71,0x32,0x97,0x4e,0x2a,0xe6, 0xb1,0x4c,0x66,0x57,0xd3,0xf9,0xfb,0xc8,0x93,0x73,0xe6,0xc5,0xac,0xe6,0x7f,0xde, 0x4c,0x96,0x13,0xd5,0xb7,0x33,0xb5,0xc6,0xc1,0x6a,0x3f,0xd9,0xa6,0x5e,0x86,0x71, 0x6c,0x6e,0x6e,0x42,0x4a,0xe9,0xd6,0x85,0xcd,0x7c,0xfa,0xf8,0xe3,0x8f,0x5d,0x40, 0xdb,0xbe,0xd6,0x47,0x14,0xf6,0x9c,0x7d,0xf5,0x2,0x3f,0xce,0xc2,0x39,0xc7,0xc3, 0x87,0xf,0x91,0x24,0x9,0x3e,0xfb,0xd9,0xcf,0xe2,0xca,0x95,0x2b,0x4e,0x67,0x2a, 0x8,0x2,0x84,0x61,0x8,0x29,0x25,0xfa,0xfd,0xbe,0x45,0xfd,0x1c,0x80,0xb1,0x56, 0xa3,0x33,0x14,0xdd,0x38,0xb5,0xa0,0x95,0x6f,0x24,0xa,0xaf,0xc4,0x1a,0x90,0xf4, 0xad,0xb7,0xde,0xfa,0x67,0x4a,0x29,0x3c,0x7a,0xf4,0xc8,0x6d,0xfa,0xd5,0xde,0xd2, 0x4d,0x47,0xae,0x67,0x23,0x5d,0xaa,0xe0,0xce,0xf6,0xc7,0x8e,0x92,0x62,0x4,0x30, 0x96,0x3f,0xe7,0x8d,0x37,0xde,0xc0,0xc6,0xfa,0x66,0xd1,0x8e,0x55,0x23,0x2d,0x3c, 0xa8,0x24,0x49,0x10,0xc7,0x31,0x92,0x24,0xc9,0x95,0x3c,0x51,0xe,0x6,0x6b,0x63, 0xa0,0xb4,0x86,0xd2,0x1a,0xda,0x10,0xc,0x2d,0xe6,0xc4,0x17,0x6d,0x78,0x65,0xea, 0x83,0x0,0x18,0x10,0x69,0x10,0x69,0x80,0xe5,0x1,0x7a,0x21,0x19,0x64,0xc0,0x11, 0xb8,0xbe,0x1c,0xfc,0x58,0x9b,0xee,0x51,0x8f,0x3a,0x3,0xe3,0xc7,0x4e,0x9a,0xce, 0x67,0xd9,0x98,0xc9,0x59,0x48,0x80,0xb4,0x35,0x8a,0x7e,0x5c,0xa9,0x9c,0x21,0xd5, 0xb4,0x64,0x66,0xf,0x9b,0xed,0xe5,0x8b,0x58,0x56,0x8d,0xb7,0x45,0x8f,0x56,0xbe, 0xc3,0x1a,0x8d,0x34,0x4d,0x41,0x5c,0x60,0x7d,0x7d,0x1d,0xfd,0x7e,0x1f,0x49,0x92, 0xab,0x28,0x33,0xc6,0x70,0x70,0x70,0x80,0xc7,0x8f,0x1f,0x43,0x29,0xe5,0xe6,0x44, 0x39,0x49,0x3,0x8d,0x52,0x39,0xfe,0x67,0xef,0xee,0xe6,0x6a,0xcd,0xaf,0xbf,0xfe, 0x3a,0x5e,0x7b,0xed,0x35,0x17,0x8,0x67,0x8c,0x39,0xa4,0xed,0x1b,0xe,0xeb,0xec, 0x35,0xad,0xe9,0x6e,0x74,0xc6,0xe2,0x44,0x11,0x86,0x67,0x24,0x4a,0xab,0xfc,0xee, 0xdd,0xbb,0x7f,0xf6,0x3b,0xbe,0xe3,0x3b,0x70,0x78,0x78,0x88,0xa7,0x4f,0x9f,0x3a, 0xcf,0xa7,0x8d,0x76,0x53,0x10,0x4,0x88,0xe3,0x18,0x52,0x72,0x18,0xa5,0x31,0x18, 0xc,0xf0,0xe4,0xd1,0x63,0x3c,0x7b,0xf6,0x6c,0x3a,0xa9,0x29,0x4f,0xbf,0x7d,0xfd, 0xf5,0xd7,0x31,0x58,0x1b,0x62,0x34,0x1a,0x21,0x49,0x12,0x8c,0x27,0x79,0xcf,0xe2, 0x38,0x8e,0x11,0xc7,0xf1,0x4c,0x40,0xdd,0xdf,0xc,0x95,0x52,0x6e,0x71,0xfb,0x19, 0x51,0x47,0xa1,0x4d,0x9a,0x36,0x3b,0xc6,0x18,0x38,0xca,0x46,0x52,0x8,0x51,0x5a, 0xb4,0x7e,0x4f,0x10,0xbf,0xba,0x77,0x99,0xc,0x9e,0x45,0x28,0xe1,0x24,0xea,0x1f, 0x96,0xbd,0x16,0xa7,0x38,0xef,0x5a,0x5f,0x97,0xd2,0x7d,0x70,0x9,0x8,0xbc,0x84, 0x24,0x8d,0xa1,0x4a,0xb2,0x42,0xf9,0xa8,0x7b,0x5f,0x3f,0x4e,0xe1,0x6f,0xee,0x16, 0x49,0xd8,0xbf,0xd9,0xf4,0x58,0x8,0xe9,0x2,0xda,0x4a,0x29,0x27,0xeb,0x6f,0xa9, 0x56,0xbb,0xf9,0x5b,0xca,0xca,0x6e,0xf2,0x3e,0x75,0xeb,0xd3,0x98,0x7e,0x2f,0xed, 0x30,0xc,0x91,0x24,0x9,0x1e,0x3d,0x7a,0x84,0xad,0xad,0x2d,0xbc,0xf5,0xd6,0x5b, 0xee,0x31,0x6b,0x1c,0x6d,0x66,0x95,0x35,0x46,0x5b,0x5b,0x5b,0x20,0xa2,0xb4,0xc6, 0xd1,0xeb,0xe2,0x16,0x9d,0xb1,0x38,0xb5,0x85,0x3b,0x13,0x1c,0xb3,0xde,0xc9,0x5b, 0x6f,0xbd,0x25,0x6f,0xdd,0xba,0x85,0x8f,0x3f,0xfe,0x18,0x7,0x7,0x7,0x25,0x4f, 0xba,0x5a,0x67,0x51,0xda,0x8,0x34,0xc0,0xb9,0xcc,0xbd,0x39,0x6,0x68,0x32,0x10, 0x41,0x2e,0x67,0xbe,0xbb,0xbb,0xb,0xf0,0x7c,0xd2,0x67,0x69,0x8c,0x61,0xc8,0xf1, 0x1d,0xaf,0xbf,0x86,0x8d,0x41,0xf,0xe3,0xf1,0x18,0xa9,0x56,0x48,0x92,0xc,0x4a, 0x13,0x92,0x54,0x61,0x92,0xc4,0xe5,0x2a,0x6f,0xcf,0x60,0xd8,0x5,0x98,0x43,0x7e, 0xff,0x1c,0x74,0xe9,0x60,0xcc,0xe3,0xfc,0xd,0x15,0xc8,0xbd,0xf9,0xa8,0xcb,0xa6, 0x61,0x4,0x70,0xe4,0x86,0xc3,0x22,0xd,0x2e,0x0,0x19,0x70,0x84,0x91,0x44,0xd4, 0xb,0x10,0x84,0x2,0x41,0x28,0xc0,0x58,0x7e,0x54,0x6b,0x1a,0x72,0x95,0xd2,0x66, 0xcf,0xd7,0xaf,0x7,0x69,0x52,0x3b,0x6d,0xc3,0xc1,0xcf,0xa3,0xb6,0x96,0x41,0x16, 0xcb,0x6c,0xfc,0x33,0x9b,0x71,0xc5,0x60,0x2e,0x63,0xac,0x18,0x0,0xce,0x18,0x4, 0xe7,0x90,0x42,0x20,0x90,0x12,0x82,0xf3,0x9c,0x12,0x64,0xb3,0x54,0xd3,0xec,0xf5, 0x30,0xa5,0x3,0x30,0x30,0xd0,0xd0,0xa4,0xa0,0x4c,0x6,0xaa,0xb4,0x86,0xf5,0xa9, 0x44,0x22,0x42,0xa2,0x4d,0x51,0x4b,0x51,0x14,0x8d,0xea,0x14,0x5b,0x6b,0x7d,0xbc, 0xb0,0xde,0x3,0xd4,0xc4,0xd5,0x41,0x28,0xa5,0xf0,0xe0,0xc1,0x3,0x27,0x3b,0x6e, 0xd7,0x45,0x35,0x56,0x51,0x8d,0x4d,0x58,0x43,0x61,0x91,0x43,0x9a,0xa6,0x78,0xf4, 0xe8,0x11,0x94,0x52,0xf8,0xc2,0x17,0xbe,0x80,0x5e,0xaf,0x57,0xa2,0xb0,0xec,0x6b, 0xfd,0x84,0x8b,0x9b,0x37,0x6f,0xfa,0x8c,0x80,0xa3,0x92,0xab,0x3f,0x2b,0xd7,0xa9, 0x4b,0xad,0xed,0x8c,0xc5,0xa9,0x20,0xe,0x41,0x44,0xfa,0x7,0x7e,0xe0,0x7,0x86, 0x7e,0x35,0xaa,0xf5,0xa8,0xec,0x64,0xae,0xb6,0x44,0x6d,0x6a,0x95,0x6a,0x17,0xd0, 0xf6,0xf6,0x36,0xc6,0xe3,0x71,0x1e,0x14,0x14,0xd3,0x2e,0x61,0x9f,0xfe,0xf4,0xa7, 0x31,0xe8,0x47,0x98,0x8c,0xe,0xa0,0x94,0x72,0x52,0x20,0x2a,0x33,0x98,0x4c,0x12, 0xc4,0x59,0x5a,0xa4,0x34,0xea,0x92,0x7,0x6f,0xff,0x9d,0x7b,0x80,0xaa,0xb6,0xfe, 0x81,0x3c,0x5e,0x9a,0x9,0x7e,0x12,0xd7,0x67,0x86,0x66,0xe0,0x9c,0x23,0xc,0x43, 0x44,0x51,0x84,0x28,0xa,0x10,0x4,0x79,0xfb,0x58,0x4b,0x69,0xe5,0x46,0x28,0xef, 0x76,0xb7,0x8,0x75,0x2c,0x92,0x18,0x59,0x54,0xef,0x51,0xd,0x9c,0x57,0x2b,0x8f, 0xdb,0x52,0x5d,0x6d,0x8e,0x79,0x68,0xa1,0xa9,0xea,0xbd,0x9,0xcd,0x31,0x2f,0x3e, 0x64,0xbd,0xe8,0x59,0x43,0xb0,0x14,0xcd,0xea,0x36,0x57,0xbf,0x5f,0x8a,0x1f,0x2b, 0xf0,0xaf,0x87,0xbd,0x3e,0x20,0x72,0xf3,0x2f,0x4d,0x53,0xbc,0xf0,0xc2,0xb,0x18, 0xc,0x6,0xee,0x7d,0x7a,0xbd,0x1e,0x46,0xa3,0x11,0x1e,0x3d,0x7a,0xe4,0x52,0xcc, 0x2d,0xea,0xae,0x66,0x72,0x59,0x34,0xe4,0x1b,0x9,0x1b,0xeb,0xb0,0xdf,0x7b,0x6f, 0x6f,0xf,0x1f,0x7f,0xfc,0x31,0xde,0x7e,0xfb,0x6d,0x5c,0xb9,0x72,0x65,0x36,0x55, 0xda,0xeb,0x99,0xa1,0x75,0x8e,0xd4,0x6f,0xdd,0xba,0x15,0x55,0x68,0x28,0x56,0x71, 0xfa,0x58,0x85,0x66,0x16,0x5d,0x4c,0xa3,0x33,0x16,0xa7,0x12,0xcb,0x20,0x22,0x5d, 0x78,0x2d,0xe3,0xcf,0x7f,0xfe,0xf3,0x98,0x4c,0x26,0x78,0xf6,0xec,0x19,0xb2,0x2c, 0x2b,0x65,0x29,0xd9,0x49,0x5c,0x5d,0x98,0x6e,0xe1,0xa1,0xdc,0xb7,0x3b,0x8e,0x63, 0x3c,0xb8,0xff,0x21,0xc6,0xe3,0xf1,0x54,0x1a,0x81,0x71,0x8,0xce,0xf1,0x99,0xcf, 0x7c,0x6,0x83,0x5e,0x1f,0x7b,0x7b,0x7b,0xa5,0x7c,0xf6,0x4c,0xe5,0x68,0x63,0x92, 0x66,0xb0,0x45,0x7a,0xd5,0x8d,0xc8,0xc2,0xff,0x7c,0xc1,0x8a,0x4a,0xe5,0xf2,0x72, 0x34,0xcc,0xc2,0x1b,0x52,0x6c,0x0,0x3e,0xd2,0xf2,0x1f,0x93,0x52,0x22,0xc,0x43, 0xf4,0xfb,0x7d,0xf4,0xfb,0x7d,0xf4,0x7a,0x3d,0x57,0x6f,0x92,0x7f,0xbe,0x99,0x41, 0x3f,0x2e,0x3e,0x82,0xf9,0x41,0xef,0xa6,0xa,0xf3,0x79,0x4a,0xa9,0xbe,0x11,0xa9, 0x93,0xc8,0x3e,0xa,0x55,0xd5,0x26,0xf6,0xb0,0xc8,0xf0,0x55,0x6b,0x5b,0xaa,0x46, 0xc2,0x6,0xae,0x97,0x67,0xe1,0x73,0x84,0x66,0x8a,0x4a,0x74,0x6d,0x0,0xa3,0xf3, 0x8e,0x76,0x64,0xa6,0x5e,0xba,0x9d,0xb7,0x76,0x1e,0xfb,0x32,0x34,0xc6,0xe4,0xb1, 0xb3,0xeb,0xd7,0xaf,0x23,0x8a,0x22,0xd7,0xbf,0x22,0x8,0x2,0xa7,0xd7,0xb4,0xbf, 0xbf,0x5f,0x9a,0xf3,0xf6,0x7d,0xfd,0x6e,0x93,0x3e,0x2d,0xe9,0x7f,0x66,0x92,0xe4, 0xca,0xcb,0xbb,0xbb,0xbb,0xb8,0x77,0xef,0x1e,0x3e,0xf5,0xa9,0x4f,0xe1,0x53,0x9f, 0xfa,0xd4,0x4c,0x25,0x77,0xd5,0xc8,0xc6,0x71,0x8c,0x6b,0xd7,0xae,0x81,0x88,0x52, 0x5f,0xa6,0xbc,0x40,0x17,0xa1,0xcf,0x18,0xd8,0x1a,0xaa,0xe2,0x77,0xdd,0x6d,0xa5, 0x17,0x7f,0xb0,0xf3,0xa0,0x21,0xab,0xd,0xe0,0xdf,0x7d,0xf7,0x5d,0x7a,0xef,0xbd, 0xf7,0x9c,0xf4,0x80,0xef,0xb9,0xf9,0x9b,0x83,0x5f,0xcc,0x66,0x7f,0xb7,0x8f,0xdb, 0x7f,0x67,0x59,0x86,0x28,0x8,0xf1,0xca,0x2b,0xaf,0x60,0x38,0xcc,0xe3,0x15,0xfd, 0xe1,0x1a,0x94,0xd6,0x48,0x92,0x4,0xdf,0xfc,0xe0,0x1e,0x76,0x77,0x77,0xb1,0xbe, 0xb1,0x81,0x28,0x8a,0xc0,0x39,0xc7,0x60,0x30,0x0,0x67,0xcc,0x49,0x40,0x4b,0x56, 0x56,0xbe,0xb5,0x95,0xe5,0xb6,0x28,0xd0,0x6d,0x44,0x95,0x34,0x4d,0x22,0x5d,0xbb, 0xc9,0x2f,0x33,0xc,0x9a,0xeb,0x22,0xe6,0xf5,0x8f,0x76,0xba,0x5a,0xa9,0x6e,0xdc, 0xb0,0x19,0x63,0x30,0x6c,0x7e,0xd7,0x42,0xee,0x39,0x88,0x6d,0x3b,0x1b,0x1e,0xc7, 0x3f,0xa9,0xbe,0x5e,0x63,0x7e,0x2d,0x4,0xa7,0xf9,0x72,0xe1,0x39,0xe2,0xaa,0x6, 0xab,0x7d,0x6b,0x72,0x4c,0xe4,0x87,0xd9,0x0,0xb3,0x3f,0x4f,0x7d,0x9d,0x26,0x9b, 0x1e,0x6b,0x1d,0xe,0x1b,0xa3,0xc8,0xb2,0xc,0xd7,0xae,0x5d,0x43,0xd4,0xb,0x40, 0xda,0x78,0x54,0x90,0xc2,0xfd,0xfb,0xf,0x70,0x78,0x78,0xe8,0x54,0x61,0x6d,0x5c, 0xcd,0xd6,0x23,0xf9,0x34,0xad,0x8d,0x65,0xf8,0x34,0x92,0x8d,0x7b,0x25,0x49,0x82, 0x6f,0x7e,0xf3,0x9b,0x18,0xe,0x87,0xf8,0xc1,0x1f,0xfc,0x41,0x57,0x77,0x61,0x87, 0xd5,0x4d,0xb3,0xc9,0x1e,0x7b,0x7b,0x7b,0xb8,0x7f,0xff,0x3e,0x26,0x93,0x9,0xbe, 0xfc,0xe5,0x2f,0xf7,0x89,0x28,0xf6,0xae,0x6f,0x68,0x63,0x18,0x75,0xeb,0xd7,0xa3, 0xa1,0xba,0xc2,0xbd,0xb,0x3c,0xe4,0x79,0x19,0xa,0xff,0x6f,0x6f,0xbd,0xf5,0x16, 0xdb,0xdb,0xdb,0xa3,0xf,0x3e,0xf8,0x0,0xc3,0xe1,0xd0,0x35,0xa2,0xb7,0x8b,0xc4, 0x4f,0xab,0xad,0xab,0x43,0xf0,0xbd,0xaf,0x50,0xe6,0x4d,0x92,0xee,0xdf,0xbf,0x8f, 0xbb,0x77,0xef,0xa2,0xdf,0xef,0x23,0x4d,0xf3,0xe,0x7a,0x83,0x61,0xf,0xaf,0xbd, 0xf2,0x9,0xbc,0xff,0xed,0x1c,0x9e,0x3,0x79,0x8f,0x0,0x4b,0x81,0x59,0xed,0x20, 0x23,0x25,0x4,0x18,0x4,0xa8,0x14,0x7c,0xf6,0xcf,0x89,0x31,0x6,0x2a,0xed,0x42, 0xe6,0xd8,0x86,0x2,0x0,0x48,0x1b,0xc0,0xcf,0xed,0xf7,0xd,0x46,0x45,0x76,0xc4, 0x79,0xd0,0x8c,0x81,0x15,0x9f,0x2d,0xfb,0x61,0xad,0xdc,0xb5,0x33,0xb0,0x64,0xe6, 0xab,0xa5,0x56,0xc,0x55,0x5b,0x71,0xbc,0xa3,0x1a,0x91,0xea,0x67,0x8,0xe4,0xb1, 0xa3,0xa6,0x73,0x34,0x95,0xfb,0x6f,0x8d,0x81,0xfd,0xb7,0x90,0xde,0x63,0xb6,0x9f, 0x39,0x3c,0x3a,0xea,0x98,0x60,0xbb,0x8a,0xc0,0xaa,0x4e,0x4d,0x9c,0xa5,0x53,0x45, 0x82,0x22,0xe3,0x9,0xc8,0xb,0x3e,0x27,0x69,0x2,0x68,0x93,0x1b,0x8a,0x28,0x2, 0x8c,0x2e,0xc5,0x1b,0x3e,0xfc,0xf0,0x21,0xf6,0xf7,0xf7,0x5d,0xea,0xac,0xd,0x42, 0xdb,0x84,0xb,0xbf,0xc7,0x8b,0x1f,0xc3,0xa8,0xa2,0x29,0xa5,0x14,0xee,0xdf,0xbf, 0xf,0x63,0xc,0xbe,0xf8,0xc5,0x2f,0x36,0x66,0x19,0xfa,0x8,0x7b,0x32,0x99,0x20, 0x8e,0x63,0x1c,0x1e,0x1e,0xe2,0x17,0x7e,0xe1,0x17,0x26,0x8c,0xb1,0x3e,0x80,0xb4, 0x30,0x0,0x69,0x65,0xdd,0x72,0xc6,0x98,0x45,0x17,0xbc,0x42,0x59,0x75,0xa3,0x43, 0x16,0x27,0x6a,0x30,0x4,0xca,0xc5,0x7a,0xc4,0x18,0xb,0x7f,0xe9,0x97,0x7e,0x29, 0xd9,0xdf,0xdf,0xc7,0xdd,0xbb,0x77,0x5d,0x8f,0x61,0xbb,0x70,0xaa,0x8,0xc3,0xe7, 0xa2,0x4b,0x8b,0x87,0xf2,0x85,0x69,0xd5,0x3a,0xef,0xde,0xbd,0x8b,0x28,0x8a,0x20, 0x84,0x28,0x62,0x18,0x11,0x92,0x34,0xc5,0x37,0xbe,0xf5,0x4d,0xec,0xed,0xed,0xa1, 0xd7,0x1f,0x3a,0x5a,0x47,0x4a,0x89,0x40,0x4a,0x47,0xf5,0x4,0x41,0x0,0x81,0xea, 0xe7,0x5a,0xca,0x25,0xaf,0x3e,0xcf,0xd,0x7,0x40,0x28,0xb4,0x78,0x96,0xd0,0x5c, 0x6b,0xab,0xf2,0xda,0xb4,0x1,0xd7,0xa1,0x2f,0x30,0x31,0xf3,0x5c,0xdf,0xb8,0xd4, 0x65,0x80,0xb5,0x41,0x2f,0xf3,0x1e,0x3b,0xc9,0x8c,0xca,0x45,0x9f,0x51,0x17,0xb7, 0xca,0xff,0xe6,0x66,0x74,0x23,0x5d,0xe6,0x3d,0x3c,0xe7,0xfa,0xf3,0xc6,0xfb,0x64, 0xe3,0x5a,0xd5,0xc2,0x3f,0xe5,0x19,0x60,0x1b,0x5b,0xc8,0x3c,0x43,0x61,0xfb,0xab, 0x8,0x21,0xb0,0xb5,0x36,0x75,0x86,0xfc,0xb9,0x7c,0xef,0xde,0x3d,0x47,0x3d,0x59, 0x24,0x6b,0x69,0x25,0x3f,0xf3,0xc9,0xdf,0xf8,0x7d,0xca,0xd6,0x6f,0x27,0x7c,0xef, 0xde,0x3d,0xec,0xec,0xec,0xe0,0xfb,0xbf,0xff,0xfb,0xf1,0xca,0x2b,0xaf,0xb8,0xf3, 0xb2,0x86,0xc4,0x26,0x6e,0x24,0x49,0x82,0x83,0x83,0x3,0x67,0x2c,0xf6,0xf7,0xf7, 0xb1,0xbf,0xbf,0x8f,0x83,0x83,0x3,0xc,0x6,0x3,0xfc,0xf0,0xf,0xff,0x70,0xe4, 0x65,0x45,0x31,0x7,0xee,0xa,0x1a,0xd9,0x22,0x89,0x8a,0x52,0x43,0x67,0x34,0x3a, 0x64,0x71,0x62,0x9b,0x1,0xf7,0x39,0x4e,0xcf,0x5b,0x51,0x7,0x7,0x7,0x9f,0xe3, 0x9c,0xff,0xde,0xd3,0xa7,0x4f,0x71,0xf3,0xe6,0x4d,0x27,0x38,0xe8,0x53,0x50,0x55, 0xde,0xd5,0x5f,0x40,0x3e,0x34,0xb7,0x12,0xa,0xf7,0xef,0xdf,0xc7,0xcb,0x2f,0xbf, 0x8c,0x7e,0xbf,0x5f,0x74,0xda,0xfb,0xff,0xd9,0xfb,0xf2,0x28,0xa9,0xca,0x33,0xfd, 0xe7,0xde,0xaa,0x5b,0x7b,0x75,0xf5,0xbe,0xb0,0xef,0x8b,0x40,0xb,0xcd,0x2a,0xb2, 0xb8,0x1b,0xcc,0x88,0x48,0x54,0xc0,0x25,0x24,0x82,0x33,0xc9,0x99,0xc9,0x64,0x26, 0x33,0x99,0x73,0xf2,0xcf,0x9c,0x99,0xcc,0xcc,0x2f,0x3a,0x49,0xcc,0x8c,0x27,0x9e, 0x68,0xc4,0x25,0x51,0xa3,0x82,0xb,0x8b,0x49,0x94,0x89,0x4a,0x14,0x45,0x16,0x69, 0x1a,0x10,0x6d,0xa0,0x11,0xe8,0xa6,0x1b,0xe8,0xbd,0xbb,0xf6,0xbb,0xfd,0xfe,0xa8, 0x7a,0xbf,0xfe,0xee,0xed,0x5b,0x4b,0xb,0xdd,0x40,0xbc,0xef,0x39,0x7d,0xaa,0xba, 0xf6,0xe5,0xd6,0xf7,0x7c,0xef,0xf3,0xbe,0xcf,0xf3,0x2a,0x10,0x5,0x1d,0x93,0x26, 0x8c,0xc3,0x89,0x93,0xa7,0xd3,0xad,0xbb,0xa1,0xbe,0x2,0xbb,0xcb,0x65,0x2c,0xae, 0x72,0x66,0x80,0xa9,0xdd,0x9b,0x98,0xde,0xb5,0x73,0x99,0x86,0xc4,0xb5,0x5b,0xa, 0xb9,0xd0,0xd9,0x7a,0xa1,0xca,0xb5,0x43,0xef,0x5b,0xa0,0xfa,0xdb,0x90,0x0,0x7d, 0x8a,0x73,0x4d,0x4b,0x8f,0xcd,0xd4,0xf9,0xcf,0x4a,0x67,0xa7,0xee,0xbe,0x1e,0x7a, 0xcb,0xfa,0x85,0x6a,0x2a,0x2c,0x5b,0x9d,0x9a,0x5f,0x9f,0x15,0x70,0x67,0x5a,0xf8, 0xad,0xba,0xae,0xc,0x34,0x92,0x29,0x6b,0xe0,0xc1,0xc1,0x78,0x1c,0xc0,0xf8,0x39, 0xe8,0x69,0x85,0xb5,0xd6,0x3f,0x83,0xe0,0x3f,0xf,0x7e,0xa,0xba,0x95,0xda,0x5b, 0xcf,0x0,0xd8,0x56,0xf5,0x1c,0x4d,0x40,0xbf,0xb6,0x6b,0x40,0x84,0x2c,0x2b,0x90, 0x65,0x95,0xdb,0xbd,0xab,0x70,0x38,0x24,0x4,0x83,0x41,0xf8,0x7d,0x6e,0x76,0x39, 0x65,0xa,0xa7,0x4e,0x9d,0x62,0x5d,0x4f,0x24,0xba,0xa3,0x1a,0xb,0x19,0x6e,0x52, 0x91,0x9b,0xdf,0x28,0xf1,0xb5,0x2c,0x7a,0xac,0x8e,0x8e,0xe,0xb4,0xb5,0xb5,0xa1, 0xa6,0xa6,0x6,0x23,0x47,0x8e,0x34,0xb4,0x64,0x13,0x3d,0x46,0x40,0x11,0x8d,0x46, 0x59,0xab,0xae,0xb9,0x5e,0xd6,0xd5,0xd5,0x85,0x6d,0xdb,0xb6,0x25,0x9a,0x9b,0x9b, 0xeb,0x74,0x5d,0xbf,0xfa,0xf0,0xe1,0xc3,0x10,0x4,0x1,0x45,0x45,0x45,0x44,0x4b, 0xc9,0xe6,0xdf,0xb0,0xd,0x14,0x76,0x66,0x31,0x98,0xa0,0xd1,0xcf,0x33,0xbf,0xb9, 0xb9,0x59,0xdf,0xb1,0x63,0x7,0x2,0x81,0x0,0x3b,0xd8,0x79,0x9e,0x96,0x76,0x59, 0x66,0xca,0x87,0x2f,0x84,0xeb,0xba,0xe,0xc1,0xd1,0xc7,0xeb,0xfa,0x7c,0x3e,0xc, 0xaf,0x1a,0x6,0x9f,0xcf,0x97,0x1a,0xcb,0x2a,0x8a,0xd0,0xa0,0x43,0x17,0x80,0x53, 0x8d,0x67,0x70,0xe6,0xcc,0x19,0xf8,0xfd,0x41,0x66,0x1d,0x42,0x3a,0x7,0x3a,0xf5, 0x48,0xce,0xbe,0x1d,0x9d,0xe8,0x80,0x83,0x69,0x23,0x52,0x98,0xe7,0x70,0xa6,0x84, 0x4d,0x92,0x53,0x82,0x96,0xe3,0xf7,0x22,0xe8,0xc8,0xda,0xee,0x99,0x9b,0xfa,0x11, 0x73,0x7c,0xae,0xd9,0x85,0x81,0xb9,0xec,0x2e,0x20,0x38,0x2c,0xe9,0xa,0x7e,0xe1, 0xcc,0xa4,0xcf,0xc8,0x27,0xcb,0xe0,0x41,0xdf,0xaa,0xcb,0x4a,0x14,0xf4,0x8c,0x63, 0x6f,0xf3,0x19,0xf4,0x93,0xe9,0xf2,0x7c,0x3e,0x93,0x14,0x58,0x88,0x96,0x40,0xc1, 0xbb,0xb8,0xb2,0xb9,0x28,0x2,0x2c,0x8a,0xcd,0x60,0xd9,0x1b,0x4d,0x6d,0x94,0x24, 0x9,0xa1,0x50,0x8,0x1e,0x8f,0x7,0x82,0x9a,0x64,0x54,0xa6,0xa6,0x69,0x38,0x7d, 0xfa,0x34,0xba,0xbb,0xbb,0xd9,0x22,0x6d,0xce,0x26,0xcd,0x59,0x34,0x7f,0xec,0xf3, 0x40,0xa0,0x69,0x1a,0x7a,0x7a,0x7a,0x70,0xea,0xd4,0x29,0x8c,0x1d,0x3b,0x16,0xd7, 0x5c,0x73,0x8d,0x61,0x4,0x2b,0x81,0xe,0x75,0x61,0xc5,0xe3,0x71,0x44,0xa3,0x51, 0x38,0x1c,0xe,0xe6,0xd,0x15,0x89,0x44,0xd0,0xdb,0xdb,0xcb,0xda,0x6d,0xf7,0xef, 0xdf,0x8f,0xce,0xce,0x4e,0xc4,0x62,0x31,0x56,0x1b,0x71,0xbb,0xdd,0x18,0x33,0x66, 0xc,0xee,0xb8,0xe3,0xe,0x8c,0x1f,0x3f,0x5e,0xb0,0xb3,0xa,0x1b,0x2c,0x2e,0x69, 0x1c,0x3d,0x7a,0x54,0xdf,0xbf,0x7f,0x3f,0xfc,0x7e,0x3f,0x46,0x8c,0x18,0xd1,0x6f, 0x11,0xe5,0x3d,0x9d,0xcc,0x4a,0x67,0xab,0x5,0x41,0x51,0x14,0x78,0x3c,0x1e,0xc, 0x1f,0x3e,0x1c,0xa1,0x60,0x1,0x12,0x89,0x4,0x4,0x87,0x8,0xd1,0xe9,0x80,0xae, 0x9,0x38,0x73,0xb6,0x5,0xa7,0x1b,0xcf,0xa4,0x86,0xc0,0xb8,0x5d,0xf0,0x48,0x2e, 0x78,0xdc,0x6e,0x38,0x85,0xbe,0xee,0x23,0x51,0x4a,0x1,0x87,0x11,0xa8,0xd2,0x36, 0x1c,0x9a,0xce,0xa,0x92,0xee,0xb4,0x1a,0x36,0xe5,0x23,0x94,0xde,0x8d,0xf2,0x25, 0x1,0xbd,0xff,0xce,0x90,0xff,0xef,0x52,0x4b,0x64,0xb3,0x59,0x7a,0xa7,0x32,0x27, 0x2d,0xeb,0x62,0x2c,0xe8,0x5f,0x8e,0x66,0xfa,0x32,0xd4,0x9d,0xf5,0x63,0xf5,0xcf, 0x3c,0xf8,0x2c,0x4c,0xc8,0xfd,0x2,0x59,0xd6,0x68,0x49,0xd1,0x9,0xa9,0xee,0x26, 0x51,0x70,0x1a,0xa,0xd8,0xb4,0x63,0x57,0xf4,0x34,0x58,0x28,0xa9,0x5a,0x80,0xdb, 0xe5,0x42,0x59,0x59,0x9,0xcb,0x76,0xa9,0x49,0x22,0x99,0x4c,0xa2,0xb9,0xb9,0x19, 0x5d,0x5d,0x5d,0x96,0x22,0xbb,0x6c,0xef,0xdf,0x3c,0x1f,0xc5,0xed,0x76,0xa3,0xbd, 0xbd,0x1d,0x8d,0x8d,0x8d,0x28,0x2f,0x2f,0xc7,0xf5,0xd7,0x5f,0xcf,0x8e,0x55,0xca, 0x28,0xe8,0xb5,0xa6,0xac,0x6f,0x52,0xc0,0x20,0x8,0x2,0x2a,0x2a,0x2a,0xa0,0x28, 0x4a,0xca,0xe9,0x20,0x5d,0xbf,0x38,0x72,0xe4,0x8,0x62,0xb1,0x18,0xce,0x9d,0x3b, 0x87,0x3,0x7,0xe,0x30,0x17,0x5c,0x2,0xc,0x2,0x98,0x35,0x6b,0xd6,0x60,0xee, 0xdc,0xb9,0xe,0x3a,0x84,0x4d,0x7a,0x2a,0x6,0x1e,0x36,0xa0,0xfc,0x65,0xc4,0x65, 0x29,0xa4,0x99,0x34,0x69,0x92,0x30,0x79,0xf2,0x64,0xc4,0x62,0x31,0xb4,0xb4,0xb4, 0xb0,0x14,0x9c,0xdf,0xe9,0xd1,0xce,0x3f,0x93,0x38,0xcb,0xd8,0x21,0x23,0x22,0x16, 0x8b,0xe1,0xf4,0xe9,0x54,0x27,0x94,0xd3,0x25,0xb1,0xd9,0x17,0x0,0x30,0x62,0xc4, 0x8,0x4c,0x18,0x3f,0x16,0x72,0x32,0x8e,0x64,0x2c,0xce,0xba,0x56,0x48,0x38,0x15, 0x4d,0xc4,0x99,0x7f,0xf,0xfd,0x48,0x53,0x3b,0xc9,0xf4,0xf3,0x89,0x7d,0x16,0xeb, 0x7d,0xf3,0xbf,0x39,0x8d,0x42,0xca,0xf,0x3b,0x35,0xdd,0x8f,0xf3,0x79,0x62,0x7f, 0x69,0xfa,0x45,0xbc,0xc,0xdc,0x14,0x6,0x22,0xc2,0xcb,0x36,0x51,0xce,0xc,0x10, 0x3,0x19,0xfb,0x79,0x61,0xb5,0x8d,0x3e,0x70,0xb0,0x9a,0x4b,0x92,0xdd,0xa6,0x5d, 0x80,0xa2,0x18,0x45,0x74,0xe6,0xcf,0x44,0x55,0x74,0x88,0x82,0x93,0x51,0x39,0xbc, 0x29,0xa0,0xac,0xa9,0xd0,0x64,0x5,0xba,0xa2,0x22,0x12,0x89,0xc0,0xef,0xf7,0xa3, 0xa2,0xa2,0x82,0x1,0x9,0xed,0xcc,0xe3,0xf1,0x38,0xce,0x9c,0x39,0x83,0xf6,0xf6, 0x76,0x6,0x14,0x64,0xf1,0x91,0xf3,0x7,0xcb,0xfd,0x16,0x4,0x41,0x80,0xdb,0xed, 0x46,0x6f,0x6f,0x2f,0x5a,0x5a,0x5a,0x10,0xc,0x6,0xb1,0x70,0xe1,0x42,0x46,0x2b, 0x51,0x26,0x41,0xc7,0x26,0x65,0x15,0xd4,0x5a,0x5e,0x59,0x59,0xc9,0x6a,0x82,0x5e, 0xaf,0x17,0x85,0x85,0x85,0x78,0xff,0xfd,0xf7,0xf1,0xcc,0x33,0xcf,0xe0,0xf4,0xe9, 0xd3,0x18,0x3f,0x7e,0x3c,0xae,0xb9,0xe6,0x1a,0x14,0x14,0x14,0x18,0xa6,0x4e,0xea, 0xba,0x8e,0xde,0xde,0x5e,0xfc,0xe6,0x37,0xbf,0xc1,0x8e,0x1d,0x3b,0x54,0x9d,0x86, 0xc3,0xf4,0x7d,0x37,0x2,0x6f,0x6f,0x6e,0x3,0x85,0x9d,0x59,0xc,0x3a,0x4d,0xb5, 0x73,0xe7,0x4e,0xf5,0xd4,0xa9,0x53,0x28,0x2f,0x2f,0x47,0x59,0x59,0x19,0x4b,0xa5, 0x29,0xe8,0x7,0xc8,0x77,0x4c,0xf1,0x76,0xcc,0xfc,0x18,0x4a,0x9e,0x4e,0x18,0x31, 0x62,0x4,0x8a,0x8a,0x8a,0xd2,0xbb,0xbd,0x74,0x17,0x49,0x7a,0xce,0xf7,0xf1,0x2f, 0x4e,0xa6,0xa,0xe1,0x2e,0x17,0x9b,0x27,0xe0,0x48,0x3f,0x7,0xcb,0x32,0xd2,0x94, 0x41,0x6a,0xa1,0xe8,0x5b,0x6c,0x1c,0xe8,0xa3,0x4f,0x88,0xc2,0x72,0x38,0x1c,0x10, 0x5,0x9d,0x2b,0x4a,0x3a,0xb3,0x2e,0xb2,0x83,0xdf,0xb2,0x7e,0xa1,0xfb,0x3,0x2d, 0xaf,0x22,0x78,0xbe,0x45,0xf3,0x81,0x51,0x70,0x5f,0x8e,0xa6,0x33,0xd4,0x37,0x4, 0xbd,0x3f,0x65,0xa6,0xb,0x69,0x5b,0x8f,0xcc,0x33,0xda,0xf9,0xff,0x59,0x93,0x80, 0x28,0x18,0x66,0x51,0x0,0x80,0x1c,0x4f,0x79,0x8f,0x15,0x17,0x17,0x23,0x18,0xc, 0x42,0xd7,0x34,0x43,0x3b,0x6f,0x2c,0x16,0x63,0x2d,0xaa,0x24,0xe2,0x23,0xe1,0x9d, 0xf9,0xf8,0xce,0xf6,0x19,0xf3,0xa,0xed,0x93,0x27,0x4f,0x42,0x14,0x45,0x5c,0x77, 0xdd,0x75,0x28,0x2d,0x2d,0x65,0xaf,0x8f,0xb7,0xd0,0xa1,0xcd,0x4e,0x38,0x1c,0x46, 0x2c,0x16,0xc3,0xd8,0xb1,0x63,0xe1,0x72,0xb9,0xc,0x16,0x22,0xbf,0xfd,0xed,0x6f, 0xf1,0xfc,0xf3,0xcf,0xb3,0x86,0x8f,0x59,0xb3,0x66,0x61,0xd6,0xac,0x59,0x68,0x6f, 0x6f,0xc7,0x87,0x1f,0x7e,0x88,0x70,0x38,0xcc,0x6c,0x68,0xfa,0xf4,0x2a,0x22,0x96, 0x2f,0x5f,0x8e,0xaf,0x7d,0xed,0x6b,0x82,0x9,0x2c,0xf8,0x2c,0xc3,0xc1,0x69,0xab, 0x6c,0xc0,0xb0,0xc1,0xe2,0xa2,0x81,0x84,0xc0,0xed,0x46,0x1c,0xef,0xbe,0xfb,0xae, 0xd2,0xdc,0xdc,0x9c,0xa2,0x90,0x42,0x21,0xd6,0x6d,0x62,0xee,0x8c,0x32,0x77,0x87, 0xd0,0x2e,0x8d,0x38,0x5b,0xbe,0x40,0x1a,0x8b,0xc5,0x50,0x51,0x51,0x81,0xe1,0xc3, 0x87,0xa7,0x6f,0xa3,0x43,0x72,0xa4,0x16,0xf1,0xa4,0xaa,0xa1,0xe1,0xe4,0x17,0xe8, 0xe8,0xec,0x84,0xe4,0x71,0xa7,0xe6,0x1f,0xbb,0xdc,0x90,0x1c,0x12,0x9c,0xa2,0x8, 0x51,0x72,0xb0,0xac,0x86,0xcc,0xde,0x68,0x81,0x37,0xeb,0x40,0x5c,0x8e,0x74,0xed, 0x83,0x13,0x83,0x99,0xc7,0x72,0x1a,0x16,0x57,0x4d,0x4f,0x9,0x9,0x2e,0x73,0xb0, 0xb8,0x50,0x6a,0x29,0xdf,0xc2,0xf7,0xa0,0xbc,0x3f,0xfe,0xf3,0xd5,0x85,0xb4,0xff, 0x93,0x66,0x49,0x3b,0xf5,0xcf,0xb6,0x8c,0x3e,0x4c,0x8a,0x9e,0xa2,0xa4,0xf4,0x34, 0x80,0x44,0x22,0x11,0x48,0x2,0x50,0x52,0x52,0x92,0x5a,0x50,0xd3,0x9b,0x9,0x7a, 0x4f,0xe1,0x70,0x18,0x2d,0x2d,0x2d,0x6c,0x26,0x5,0x69,0x27,0x78,0xa1,0x5d,0xae, 0xf7,0x6f,0x1e,0x64,0x74,0xe2,0xc4,0x9,0x28,0x8a,0x82,0x85,0xb,0x17,0x62,0xe4, 0xc8,0x91,0x90,0x65,0x99,0x3d,0x2e,0xef,0x42,0x90,0x48,0x24,0x58,0xd7,0xd3,0xf0, 0xe1,0xc3,0x99,0x25,0x39,0x65,0x16,0xcf,0x3f,0xff,0x3c,0x36,0x6c,0xd8,0x0,0x49, 0x92,0xe0,0xf5,0x7a,0x59,0x5d,0x65,0xd6,0xac,0x59,0xa8,0xae,0xae,0x46,0x24,0x12, 0xc1,0x9e,0x3d,0x7b,0x70,0xee,0xdc,0x39,0xf8,0x7c,0x3e,0x76,0xec,0x53,0x16,0x51, 0x48,0x56,0x82,0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0x73,0xdd,0x75,0xd7,0x61, 0xd5,0xaa,0x55,0x4e,0x0,0x1a,0x9f,0x49,0x98,0xe8,0x28,0x1b,0x2c,0x6c,0xb0,0xb8, 0xf8,0x80,0xc1,0x89,0x7d,0xbc,0x6f,0xbf,0xfd,0x76,0xb4,0xb5,0xb5,0x15,0xa3,0x47, 0x8f,0x46,0x30,0x18,0x64,0xad,0x7f,0x6e,0xb7,0x9b,0x9d,0x77,0x71,0x5d,0x4c,0xe6, 0x85,0x87,0xaf,0x71,0xf0,0x9c,0x6f,0x28,0x14,0xc2,0xb0,0x61,0xc3,0xe0,0x72,0xa6, 0x94,0xb3,0x6e,0xb7,0x1b,0x10,0x1d,0x50,0x54,0x15,0xcd,0xe7,0xce,0xa2,0xe5,0xec, 0x79,0x88,0x92,0x13,0x3e,0xb7,0x7,0xe,0xc1,0x91,0x6a,0xc1,0x75,0xf6,0x29,0x82, 0x29,0xdb,0x30,0xd4,0x30,0xd2,0x94,0x94,0x90,0xee,0xbe,0x11,0xd3,0xa6,0x86,0xae, 0x34,0xc0,0xf4,0x3,0x8,0xf6,0x45,0xa4,0x77,0x8c,0xb8,0xb4,0x99,0x45,0xee,0x59, 0x16,0xda,0x45,0xa9,0x49,0x58,0x15,0xaf,0x87,0x2,0x2c,0x74,0xa4,0x84,0x7b,0xb4, 0x49,0xe0,0xb3,0x2,0x41,0x10,0xd8,0xcc,0x13,0x23,0xad,0xd9,0xd7,0x6d,0x7,0x35, 0x9d,0x41,0x68,0x7d,0x1a,0x96,0x58,0x2c,0x2,0x59,0x4d,0x1d,0x83,0x65,0xa1,0x22, 0x6e,0x6c,0x70,0xdf,0x30,0xa2,0xee,0xee,0x6e,0x34,0x35,0x35,0xb1,0x41,0x5f,0xb4, 0x88,0xd3,0xa8,0x5d,0xba,0xbc,0xff,0x4c,0x78,0xd3,0xa7,0xcf,0xd5,0xcc,0xbe,0xf8, 0xe2,0xb,0x24,0x93,0x49,0xcc,0x99,0x33,0x7,0xe3,0xc7,0x8f,0x37,0x38,0x20,0xf0, 0x45,0xf7,0x64,0x32,0xc9,0x80,0xa2,0xa8,0xa8,0x8,0x25,0x25,0x25,0x6,0x3,0xc2, 0x17,0x5f,0x7c,0x11,0x4f,0x3c,0xf1,0x4,0xcb,0x28,0xf8,0xcd,0x96,0x24,0x49,0xa8, 0xae,0xae,0xc6,0xcc,0x99,0x33,0xa1,0x28,0xa,0xf6,0xed,0xdb,0x87,0xd3,0xa7,0x4f, 0xc3,0xef,0xf7,0xb3,0xf6,0x74,0xaa,0x9,0xce,0x9d,0x3b,0x17,0x6b,0xd7,0xae,0xf5, 0xe8,0xba,0x9e,0x30,0xff,0x96,0x6d,0xa0,0xb0,0xc1,0x62,0xd0,0xa9,0xa8,0xf4,0xee, 0x24,0xf0,0xf6,0xdb,0x6f,0xf7,0xb6,0xb7,0xb7,0x1b,0x32,0xc,0x33,0x0,0xf0,0x45, 0x6f,0x5e,0xa8,0x67,0xb5,0x6b,0x23,0xd,0x87,0xdf,0xef,0x47,0x59,0x59,0x19,0x4a, 0x8a,0x8a,0x53,0xed,0x8b,0x69,0x7f,0x27,0x41,0x74,0xa2,0xad,0xb3,0x3,0xa7,0x4f, 0x37,0x21,0x29,0xcb,0xf0,0xfb,0x53,0x7a,0xc,0x7,0x99,0xcf,0x71,0x80,0xc1,0x17, 0xfe,0x74,0xf0,0x45,0xea,0x74,0x7,0x8d,0xde,0xd7,0x96,0xe8,0xf1,0x78,0xfa,0xec, 0x3c,0x4c,0x2e,0xa1,0x57,0xa,0xd,0x75,0x31,0xc0,0x22,0x13,0x38,0xd,0x16,0x58, 0x30,0xc6,0x9,0x29,0x27,0x59,0x73,0x5d,0x82,0x40,0x41,0x13,0x34,0x53,0x2d,0x43, 0xec,0xd7,0x15,0xc5,0xdb,0xbf,0x24,0x12,0x31,0x28,0x8a,0x2,0xbf,0xdf,0x8f,0x92, 0x92,0x12,0x38,0xf4,0x3e,0xe0,0xa1,0xc7,0xee,0xe8,0xe8,0x40,0x73,0x73,0x73,0x3f, 0x3f,0x33,0x5e,0x23,0xc1,0xab,0xb0,0xb3,0x85,0xc3,0xe1,0x40,0x3c,0x1e,0x47,0x4b, 0x4b,0xb,0xc2,0xe1,0x30,0x66,0xcd,0x9a,0x85,0x49,0x93,0x26,0xb1,0x19,0xdd,0xf4, 0xba,0xa8,0xed,0x96,0x6,0x1a,0xc5,0x62,0x31,0x14,0x14,0x14,0x30,0x93,0x40,0x7a, 0xde,0x67,0x9e,0x79,0x6,0x1b,0x36,0x6c,0x80,0xaa,0xaa,0xf0,0x7a,0xbd,0x10,0x45, 0x91,0xcd,0x56,0x21,0xaa,0x4b,0xd7,0x75,0x5c,0x7d,0xf5,0xd5,0xa8,0xae,0xae,0x6, 0x0,0x1c,0x38,0x70,0x0,0x27,0x4e,0x9c,0x80,0xcf,0xe7,0x4b,0x65,0xd0,0x2e,0x17, 0xfb,0xd,0xce,0x9c,0x39,0x13,0xdf,0xf9,0xce,0x77,0xfc,0x0,0x62,0xbc,0xf,0x9c, 0x9d,0x59,0xd8,0x60,0x31,0x68,0x0,0x61,0x71,0x79,0x70,0xeb,0xd6,0xad,0x3d,0xe1, 0x70,0x18,0xc3,0x87,0xf,0x67,0x19,0x6,0xff,0xa3,0xa3,0xda,0x85,0xb9,0x50,0xc8, 0xbf,0x47,0xfe,0x7,0x40,0xb,0x46,0xda,0x3c,0xd,0x85,0x85,0x85,0xd0,0x34,0x85, 0xed,0x24,0x25,0x49,0x42,0x3c,0x21,0xe3,0x8b,0xd3,0xa7,0xd0,0xda,0xd6,0x1,0xbf, 0xdf,0xcf,0x38,0x5b,0x17,0x37,0x77,0x82,0xcf,0x32,0xac,0x17,0x4e,0xcd,0x40,0x95, 0x39,0x9d,0x4e,0xb8,0x9d,0x12,0xb3,0xe,0x11,0xf8,0xc5,0x69,0xb0,0x69,0x28,0x3d, 0x47,0x66,0x71,0xc1,0xdf,0x9f,0xfe,0x65,0xbe,0xf3,0x2f,0xff,0x76,0xfa,0x89,0xef, 0x1c,0x19,0x6f,0xa3,0xa7,0x67,0x88,0xd3,0x82,0xda,0x97,0x65,0x72,0xbb,0x71,0x18, 0x8f,0x29,0x3e,0xab,0xe0,0xc1,0x22,0x55,0x2c,0x8e,0x43,0x12,0x1d,0x28,0x2c,0x2c, 0x44,0x30,0xe0,0xeb,0xa7,0xac,0x57,0x55,0x15,0xcd,0xcd,0xcd,0x68,0x6b,0x6b,0x63, 0xd9,0x4,0x4f,0x97,0xf2,0xa0,0x92,0xef,0x34,0x46,0x45,0x51,0xd0,0xda,0xda,0x8a, 0xf6,0xf6,0x76,0xcc,0x9c,0x39,0x13,0x53,0xa7,0x4e,0x45,0x3c,0x1e,0x87,0xc7,0xe3, 0x49,0x5b,0xf7,0xf7,0x35,0x7d,0x24,0x12,0x9,0xa6,0xa7,0xa0,0x63,0x9c,0xff,0x6d, 0x6c,0xd8,0xb0,0x1,0x8f,0x3f,0xfe,0x38,0x0,0x20,0x10,0x8,0xb0,0x5a,0x1b,0x81, 0x1a,0xf9,0x56,0x49,0x92,0x4,0x59,0x96,0x31,0x63,0xc6,0xc,0xcc,0x9e,0x3d,0x1b, 0x92,0x24,0xa1,0xae,0xae,0xe,0xf5,0xf5,0xf5,0xcc,0x32,0x87,0xac,0xf4,0x9d,0x4e, 0x27,0x46,0x8f,0x1e,0x8d,0x7f,0xf9,0x97,0x7f,0x29,0xd4,0x75,0xbd,0x9b,0x6a,0x16, 0x69,0x66,0xd9,0x6,0xa,0x1b,0x2c,0x86,0xac,0x96,0xe1,0xdb,0xbc,0x79,0x73,0x38, 0x99,0x4c,0xa2,0xbc,0xbc,0x9c,0x1,0x86,0xb9,0x6e,0xc1,0xf7,0xc4,0xf3,0x3f,0x5e, 0xfe,0x94,0xed,0xe4,0x44,0x81,0x81,0x4e,0x55,0x55,0x15,0x2a,0xcb,0xcb,0x52,0x45, 0x49,0x21,0x3d,0xc3,0x18,0x29,0x2b,0x8d,0xf3,0x1d,0x9d,0xf8,0xe2,0xf4,0x29,0x48, 0x62,0x6a,0x8e,0x77,0x4a,0x57,0xe1,0x34,0x64,0x16,0xf4,0x63,0xa1,0xff,0xd9,0xe2, 0x21,0xf4,0x65,0x40,0x2,0x37,0xa6,0xd5,0xe5,0x70,0xb2,0xc7,0x61,0xef,0x41,0x18, 0xdc,0xdf,0x93,0xae,0x65,0xef,0x4a,0xba,0xf0,0x7e,0x25,0x6d,0xc0,0xe0,0xf0,0x65, 0xc1,0xc2,0xba,0xbe,0x20,0x18,0xc6,0xe2,0xa6,0xa8,0x96,0x3e,0x47,0x5c,0xa5,0xdf, 0xdc,0x6a,0xa3,0x3a,0x5a,0xd1,0x15,0x8e,0xba,0x84,0x1,0x20,0xb4,0xf4,0x60,0x2c, 0x55,0x51,0x20,0xcb,0x9,0x78,0x5d,0x6e,0x14,0x17,0x17,0xc3,0xed,0x4a,0xfb,0x36, 0x69,0x3a,0x20,0xa6,0x1e,0x27,0x1e,0x8f,0xa3,0xb1,0xb1,0x11,0xbd,0xbd,0xbd,0x8c, 0x22,0x4d,0xad,0x99,0x9a,0xe1,0x98,0xb4,0x9a,0x81,0x9e,0x2d,0x5a,0x5a,0x5a,0xd0, 0xd6,0xd6,0x86,0x99,0x33,0x67,0x62,0xfc,0xf8,0xf1,0xfd,0xea,0x5f,0xf4,0x5a,0x29, 0xab,0x20,0xfb,0xff,0xd1,0xa3,0x47,0x33,0xc0,0x12,0x4,0x1,0xcf,0x3e,0xfb,0x2c, 0x1e,0x79,0xe4,0x11,0xb8,0x5c,0x2e,0x56,0x83,0xd0,0x34,0x2d,0x45,0xc5,0x2,0x8c, 0x5e,0xa5,0x8d,0x15,0x8d,0x60,0x9d,0x3c,0x79,0x32,0xe6,0xcd,0x9b,0x7,0x8f,0xc7, 0x83,0xcf,0x3e,0xfb,0xc,0x87,0xe,0x1d,0x62,0x19,0x37,0xdd,0xc7,0xe1,0x70,0xa0, 0xb2,0xb2,0x12,0xf,0x3d,0xf4,0x50,0x57,0x65,0x65,0x65,0x51,0xae,0x8d,0xa0,0x1d, 0x36,0x58,0xc,0x4a,0x6c,0xda,0xb4,0x69,0xa6,0xc3,0xe1,0xa8,0x8d,0xc7,0xe3,0x4c, 0x99,0x6d,0x6e,0x9b,0xe5,0xbd,0xfa,0x79,0x6b,0xe7,0x4c,0x45,0x44,0x7e,0x47,0x58, 0x54,0x54,0x94,0xaa,0x63,0xb8,0x5c,0xac,0xc3,0x8a,0x8a,0x79,0xe1,0x70,0x18,0x5f, 0x9c,0x4e,0x15,0x28,0x9d,0x2e,0x27,0xdc,0x3e,0x2f,0x5c,0x8e,0x34,0x60,0xa4,0x6d, 0xc4,0x5,0x4d,0x65,0x80,0xa1,0x8b,0x42,0x7a,0xf6,0x86,0x11,0xb0,0xac,0xa8,0x5, 0x2,0x20,0x67,0x86,0x9a,0x5,0x6f,0xe7,0x21,0x18,0x2e,0x33,0x8e,0x5c,0xd5,0x74, 0x13,0x18,0x8,0x5a,0x8e,0x1a,0x84,0x69,0xc1,0xd6,0xb2,0x2b,0xac,0x73,0x1f,0x2f, 0xb9,0x45,0x83,0x86,0xc7,0x11,0x85,0xbc,0x32,0x8d,0x6c,0x34,0x95,0xae,0x9,0xfd, 0xbe,0x7b,0x73,0x36,0x40,0x22,0x3a,0xb3,0x33,0xae,0xb9,0xae,0xe5,0x40,0xea,0x98, 0x51,0x91,0xce,0x3c,0xd3,0x99,0x5,0xb5,0xc6,0x2a,0xf1,0x18,0x44,0x51,0x44,0x28, 0x10,0x44,0xa8,0x30,0x8,0x41,0x7,0xa3,0x7d,0x8,0x84,0xce,0x9e,0x3d,0x8b,0xf3, 0xe7,0xcf,0xa7,0x66,0x6a,0x73,0x26,0x94,0x7c,0x3,0x84,0xd9,0xaa,0xc3,0xf0,0x9, 0xa6,0x3b,0xa3,0xa8,0x8b,0x8f,0x40,0xe0,0xcc,0x99,0x33,0xe8,0xee,0xee,0xc6,0xe4, 0xc9,0x93,0x31,0x65,0xca,0x14,0xd6,0x12,0xcb,0x3b,0x1d,0xd0,0x65,0xb2,0x2c,0xb3, 0x16,0xd9,0x31,0x63,0xc6,0xc0,0xe3,0xf1,0xb0,0xc7,0x7f,0xf6,0xd9,0x67,0xf1,0xf0, 0xc3,0xf,0xb3,0xee,0x3e,0xa2,0x91,0xcc,0xee,0xbc,0xe6,0xff,0xa9,0xb0,0x3e,0x71, 0xe2,0x44,0xcc,0x9d,0x3b,0x17,0x7e,0xbf,0x1f,0xd,0xd,0xd,0xa8,0xab,0xab,0x63, 0xea,0x73,0x7e,0xb3,0x54,0x56,0x56,0x86,0x6f,0x7d,0xeb,0x5b,0x18,0x3b,0x76,0xac, 0x60,0xd1,0x21,0x65,0xa5,0xc3,0x10,0x6c,0x23,0x42,0x1b,0x2c,0x2e,0x76,0x86,0x51, 0xb0,0x75,0xeb,0xd6,0x2e,0xa2,0xa4,0x2,0x81,0x80,0x41,0x69,0x6c,0x6,0x5,0xf3, 0x8f,0xcf,0x8a,0x2b,0xe7,0x79,0x6a,0xb7,0xdb,0x8d,0xaa,0xaa,0x2a,0xe6,0xff,0xcf, 0x3,0x8e,0xe,0x27,0x9a,0xcf,0x9d,0xc5,0xb9,0xf3,0xe7,0xd9,0x8e,0x4b,0x92,0x24, 0x78,0xd2,0x3b,0x32,0x1a,0x49,0x49,0x3f,0x1e,0xa2,0x9a,0xe8,0x75,0x98,0x79,0x69, 0xf3,0xbc,0x5,0xbf,0xc7,0xdd,0x67,0xbb,0x20,0xf4,0xaf,0x69,0xb0,0x56,0x5f,0x51, 0x34,0xec,0x52,0xcd,0x34,0x4c,0xdf,0x65,0x9a,0x1,0x2c,0xb5,0x5c,0xb6,0xab,0x9a, 0x7e,0x81,0x75,0x83,0xfc,0xc0,0x82,0xbd,0x7f,0xc1,0x64,0xf7,0x1,0x21,0xeb,0x3c, 0xd,0xcb,0xd7,0xaf,0xf7,0x79,0x43,0x29,0x8a,0x6a,0xad,0x11,0x11,0xfb,0x4c,0x27, 0xcd,0xdf,0xbf,0x61,0x7e,0x86,0x9a,0xb2,0xf1,0x20,0xca,0x87,0x32,0x8a,0x78,0x22, 0x1,0x55,0x55,0xe1,0x77,0xbb,0x50,0x58,0x58,0x98,0x72,0x8c,0x4d,0x77,0xb0,0xd1, 0x62,0x2f,0xcb,0x32,0x9a,0x9a,0x9a,0xd8,0xbc,0xa,0x3e,0x83,0xe1,0x81,0xd0,0xdc, 0xa1,0x47,0xaf,0x8b,0x57,0x68,0xd3,0x31,0xeb,0x76,0xbb,0x91,0x4c,0x26,0x71,0xfa, 0xf4,0x69,0x44,0x22,0x11,0x4c,0x9a,0x34,0x9,0xe3,0xc7,0x8f,0x67,0xb,0x37,0x6d, 0x6a,0xf8,0xf7,0x4c,0x5a,0x8a,0x64,0x32,0x89,0xf1,0xe3,0xc7,0xc3,0xef,0xf7,0x33, 0x40,0x7b,0xf2,0xc9,0x27,0xf1,0xef,0xff,0xfe,0xef,0xf0,0xfb,0xfd,0xcc,0xf,0x8d, 0x1e,0x87,0xa8,0x57,0x73,0xa6,0xcc,0x5b,0xbd,0x3b,0x9d,0x4e,0xd6,0x7a,0xbb,0x74, 0xe9,0x52,0xf8,0xfd,0x7e,0x9c,0x3c,0x79,0x12,0xfb,0xf7,0xef,0x67,0xbf,0x7,0x9e, 0xce,0x2a,0x28,0x28,0xc0,0x3,0xf,0x3c,0x80,0x69,0xd3,0xa6,0x9,0x66,0x50,0xb0, 0x41,0xc2,0x6,0x8b,0xa1,0x2,0x8d,0xd0,0x96,0x2d,0x5b,0xba,0x7a,0x7b,0x7b,0x31, 0x72,0xe4,0x48,0x4,0x2,0x1,0xc3,0xf,0x8e,0x1f,0x5e,0xcf,0xeb,0x30,0x72,0xd9, 0x41,0xf0,0xa7,0x55,0x55,0x55,0xa8,0xac,0xac,0x34,0xb9,0x7a,0x3a,0xa1,0xe9,0x3a, 0xa2,0x89,0x38,0x4e,0x9f,0x6e,0x42,0x77,0x4f,0x4f,0x5a,0xdd,0x9a,0xca,0x30,0xc8, 0xb4,0x30,0xf5,0x3,0x4b,0x4d,0x64,0x23,0xe0,0x70,0x38,0xfa,0xcf,0xc0,0xe8,0xb7, 0xd8,0x6b,0x2a,0xcb,0x34,0x24,0xae,0x83,0x8a,0xed,0x4e,0x59,0x76,0xa2,0x65,0xd0, 0x69,0x8,0x59,0x69,0xa1,0xc1,0x1f,0xa3,0x3c,0xb0,0xcc,0xc2,0xfc,0x72,0xa9,0x2b, 0xcc,0x9c,0xd,0x9a,0x33,0x91,0x94,0xdf,0x53,0x5f,0xeb,0x2b,0xdd,0x86,0x16,0x4e, 0x1e,0xfc,0x35,0x81,0xf7,0xd8,0x72,0xf4,0x9b,0xb,0xc1,0x17,0xba,0xe5,0xa4,0x2, 0xd1,0x91,0x12,0xd9,0xd1,0x31,0x13,0x8b,0xa5,0xd4,0xce,0x25,0x25,0x25,0x28,0xf0, 0x7,0xa0,0x83,0x9b,0xa5,0xa2,0xa7,0x32,0xc3,0xde,0xde,0x5e,0x34,0x37,0x37,0x33, 0x65,0x74,0xa6,0xae,0x37,0xfe,0x7b,0x30,0x1f,0x73,0x7c,0x46,0x4c,0x99,0x8,0x39, 0xc8,0xc6,0x62,0x31,0x8c,0x1b,0x37,0xe,0x63,0xc7,0x8e,0x35,0x68,0x89,0x78,0xa0, 0xa1,0x5a,0x4a,0x3c,0x1e,0x87,0xaa,0xaa,0x18,0x36,0x6c,0x18,0x42,0xa1,0x10,0xab, 0x3b,0x3c,0xfe,0xf8,0xe3,0xf8,0x8f,0xff,0xf8,0xf,0xf8,0x7c,0x3e,0x96,0x8d,0x78, 0x3c,0x1e,0x6,0x6a,0xbc,0xfd,0xbe,0x39,0xbb,0xe0,0x8d,0xa,0x9,0x40,0x8a,0x8a, 0x8a,0x70,0xf3,0xcd,0x37,0xc3,0xef,0xf7,0xa3,0xa9,0xa9,0x9,0xb5,0xb5,0xb5,0x88, 0xc7,0xe3,0xe9,0x21,0x5d,0x6e,0xc3,0x66,0xea,0x9b,0xdf,0xfc,0x26,0x66,0xcd,0x9a, 0x25,0x9a,0x41,0xc1,0xaa,0xc5,0xd6,0xe,0x1b,0x2c,0x2e,0x5a,0x66,0xc1,0xb5,0xd5, 0x6,0xff,0xf0,0x87,0x3f,0xf4,0x74,0x74,0x74,0xa0,0xb2,0xb2,0x12,0xa1,0x50,0xc8, 0xb2,0xc3,0xc4,0x6a,0x7c,0x64,0xd6,0xcd,0x75,0xfa,0xc7,0x15,0x8b,0xc5,0x10,0xc, 0x6,0x31,0x76,0xec,0x58,0x96,0xc6,0x2b,0x8a,0x92,0xda,0x8d,0xe9,0x1a,0xa0,0x8b, 0x68,0xed,0xe8,0x44,0x63,0x53,0x13,0x34,0x4d,0x4f,0x3,0x85,0x94,0x9e,0x66,0x27, 0x31,0xc0,0x70,0xa6,0x29,0xa,0x40,0x83,0xd3,0xe9,0xca,0xb8,0x70,0xf3,0x94,0x3, 0x2d,0x0,0x44,0x15,0xb8,0x9d,0xe,0x26,0x10,0xec,0xbb,0xbd,0x6a,0xb1,0x0,0x99, 0x7d,0x95,0xb4,0x7e,0x85,0xd7,0xb,0x1,0x8f,0x4c,0x14,0x5e,0xbe,0x60,0xc1,0x83, 0x57,0xca,0xe6,0xbd,0x3f,0x58,0x64,0x7a,0x3e,0x41,0x10,0xa8,0x73,0xd5,0x90,0x15, 0xf0,0x56,0xec,0xe6,0xd7,0xa7,0xf5,0xb3,0x75,0x17,0x2c,0xb3,0x49,0xd6,0x5d,0x27, 0x3a,0x10,0x8b,0x44,0xa1,0x23,0xa5,0xa1,0x50,0x93,0x9,0x4,0x83,0x41,0x14,0x15, 0x15,0xc1,0xe9,0x10,0xd8,0xbc,0x11,0x4d,0xd3,0xe0,0x14,0x53,0xc0,0x73,0xee,0xdc, 0x39,0x9c,0x3f,0x7f,0xde,0x40,0x47,0xf1,0x8f,0x6d,0xc8,0xec,0x38,0xda,0xc9,0x9c, 0xe5,0xf0,0x96,0xfb,0x24,0xb8,0xa3,0x4c,0x65,0xdc,0xb8,0x71,0xfd,0x1c,0x64,0x9, 0x60,0x0,0x30,0xa5,0x76,0x34,0x1a,0x45,0x22,0x91,0x40,0x55,0x55,0x15,0x4a,0x4b, 0x4b,0xd9,0x71,0xff,0xc4,0x13,0x4f,0xe0,0x5f,0xff,0xf5,0x5f,0xd9,0x42,0x4e,0xd3, 0x17,0x29,0x9b,0xb0,0xa2,0xa1,0xac,0xc0,0x82,0x8e,0x6b,0xca,0x7a,0x8a,0x8a,0x8a, 0xb0,0x74,0xe9,0x52,0x94,0x94,0x94,0xe0,0xec,0xd9,0xb3,0x38,0x70,0xe0,0x0,0xda, 0xdb,0xdb,0x59,0xc1,0x9c,0x74,0x18,0x92,0x24,0xe1,0xee,0xbb,0xef,0xc6,0xe2,0xc5, 0x8b,0x69,0x34,0xab,0x53,0xd7,0x75,0xc5,0xea,0x77,0x6d,0x87,0xd,0x16,0x17,0x1b, 0x34,0x68,0x47,0xe2,0x7e,0xfb,0xed,0xb7,0xe3,0xad,0xad,0xad,0x8,0x85,0x42,0xa8, 0xac,0xac,0x34,0xc,0xa0,0xa1,0x3e,0xf7,0x7c,0x67,0x4d,0xf0,0xc2,0x39,0xa7,0xd3, 0xc9,0x44,0x4e,0x95,0x95,0x95,0x28,0x29,0x29,0x81,0x28,0x12,0xe7,0x9c,0x2a,0x80, 0x3b,0x9c,0x2e,0x24,0x14,0x15,0x4d,0x4d,0x4d,0xe8,0xec,0xea,0x82,0x20,0xa4,0x76, 0x68,0x6e,0xb7,0x9b,0xd9,0x97,0x8b,0xa2,0xc8,0xda,0x6d,0x69,0x47,0x48,0x8b,0x4a, 0xbf,0xe1,0x3f,0x9a,0xe,0x51,0xe8,0xbf,0xa3,0x26,0xda,0xc2,0xeb,0x92,0x8c,0x85, 0x74,0x76,0x3b,0xd5,0xa0,0x10,0xe7,0x6b,0x1a,0x42,0x8e,0x19,0x15,0xd9,0x0,0x23, 0x53,0x97,0x4e,0xe6,0x3a,0x46,0xfe,0x60,0x61,0x95,0x59,0xf0,0x16,0xef,0x56,0x3b, 0x73,0x45,0xd5,0x33,0xce,0xe1,0x4e,0xdd,0x5e,0xec,0x7,0x16,0x66,0xf3,0x43,0xab, 0x49,0x73,0x4c,0x93,0x90,0x90,0xa1,0x23,0xf5,0xbf,0xdb,0x29,0x21,0x14,0xa,0xc2, 0xef,0xf3,0x81,0xa6,0xc,0xb2,0xb9,0x19,0xe9,0x6c,0xa2,0xa5,0xa5,0x5,0xbd,0xbd, 0xbd,0x86,0xec,0x2e,0x53,0x8d,0xc5,0x9c,0x4d,0xf0,0xb7,0xa7,0xf7,0x42,0xb,0x33, 0x29,0xbd,0x55,0x55,0xc5,0xf8,0xf1,0xe3,0x51,0x5e,0x5e,0xce,0xee,0x47,0x8b,0xbc, 0x19,0x30,0xc3,0xe1,0x30,0x54,0x55,0x45,0x59,0x59,0x19,0xca,0xcb,0xcb,0x59,0x47, 0xd3,0xcf,0x7e,0xf6,0x33,0xfc,0xe7,0x7f,0xfe,0x27,0x1b,0xee,0x45,0xd4,0x15,0x51, 0x46,0xba,0xae,0x33,0x7d,0x85,0xb9,0x61,0xc3,0xc,0x16,0x74,0xec,0xf1,0xe2,0xc0, 0xf2,0xf2,0x72,0x2c,0x5d,0xba,0x14,0xc5,0xc5,0xc5,0x68,0x6f,0x6f,0x47,0x6d,0x6d, 0x2d,0x3a,0x3b,0x3b,0x59,0x3d,0x91,0x9e,0xc7,0xe1,0x70,0xe0,0x6b,0x5f,0xfb,0x1a, 0xbe,0xfe,0xf5,0xaf,0x13,0x60,0xd8,0x5d,0x52,0x36,0x58,0xc,0x59,0x66,0x41,0x9c, 0xa7,0x7b,0xc7,0x8e,0x1d,0xf1,0xa6,0xa6,0x26,0x4,0x83,0x41,0x54,0x54,0x54,0xc0, 0xe5,0x72,0x21,0x99,0x4c,0x1a,0x40,0xc2,0xaa,0x98,0x98,0x29,0x1c,0xe,0x7,0xbb, 0x3f,0xed,0xa4,0xa,0xa,0xa,0x30,0x6c,0x58,0x25,0x2,0x81,0x0,0x14,0x85,0xeb, 0xb8,0x12,0x52,0xc5,0xec,0x70,0x38,0x8c,0xa6,0xa6,0x66,0xc4,0xe3,0x71,0x56,0xfb, 0x70,0x71,0xb4,0x14,0x2d,0xee,0xe6,0x19,0xd0,0xbc,0x15,0xb7,0x46,0x34,0xc,0x74, 0xeb,0x42,0xac,0xa2,0xb2,0x1f,0xb0,0x24,0xf5,0x15,0x14,0xd9,0x63,0x5a,0x2c,0xce, 0xd9,0x2c,0xc6,0xb3,0x1,0x46,0xb6,0xa2,0x72,0xe6,0xc,0x23,0x3f,0xb0,0xc8,0x68, 0xe9,0xae,0x8b,0xfd,0x76,0xd9,0x86,0x21,0x4e,0x82,0xd5,0x7c,0xed,0xbe,0xdd,0xbc, 0xa0,0x71,0x8b,0xa8,0xc5,0xb0,0x28,0x56,0xec,0x36,0x81,0xd,0xd5,0x27,0x64,0x39, 0x1,0x51,0x14,0x51,0xe0,0xf,0x20,0x14,0xa,0xc1,0x21,0x1a,0xb,0xd2,0x74,0x5c, 0xb4,0xb6,0xb6,0xa2,0xb5,0xb5,0xd5,0xd0,0xaa,0x9d,0xb2,0x7e,0xe9,0xf,0xe,0x56, 0x1d,0x4b,0x3c,0xed,0x64,0xce,0x84,0x7b,0x7b,0x7b,0x71,0xf6,0xec,0x59,0x0,0xc0, 0xe8,0xd1,0xa3,0xd9,0xc2,0x4f,0x8b,0x39,0x2f,0xe6,0x23,0xbb,0x91,0x78,0x3c,0xe, 0x45,0x51,0x50,0x5e,0x5e,0x8e,0xca,0xca,0x4a,0xc8,0x69,0x6d,0xd0,0x7f,0xff,0xf7, 0x7f,0xe3,0x27,0x3f,0xf9,0x9,0x9c,0x4e,0x27,0xbc,0x5e,0xaf,0xa1,0x7e,0x46,0x19, 0x5,0xcd,0x8e,0x31,0xd7,0x2b,0xac,0xb2,0xc,0x6a,0xf,0x27,0xca,0x8a,0xb4,0x1d, 0x45,0x45,0x45,0x58,0xb4,0x68,0x11,0xaa,0xaa,0xaa,0xd0,0xd9,0xd9,0x89,0xfd,0xfb, 0xf7,0x33,0xef,0x2b,0xfe,0x71,0x9d,0x4e,0x27,0xae,0xbb,0xee,0x3a,0x7c,0xe3,0x1b, 0xdf,0x10,0xd3,0xeb,0x8f,0x66,0x67,0x16,0x36,0x58,0xc,0x2a,0x60,0xc0,0x38,0x84, 0x5,0xba,0xae,0x6b,0x7b,0xf6,0xec,0xd1,0x8f,0x1e,0x3d,0x8a,0x50,0x28,0x84,0xf2, 0xf2,0x72,0x43,0xcf,0x39,0x6f,0xb7,0x91,0x2b,0xb3,0x20,0x8f,0x1e,0xf2,0xce,0x21, 0x45,0x6b,0x32,0x99,0x84,0xd3,0x25,0xa1,0xac,0xa4,0x14,0x15,0x15,0x15,0x90,0x1c, 0xa9,0x5a,0x88,0x86,0x54,0xcb,0xa4,0xd3,0xe9,0x84,0xae,0x9,0x68,0x6b,0x6b,0x43, 0x5b,0x5b,0x1b,0xa2,0x89,0x14,0xd8,0x38,0x25,0x9,0x2e,0x97,0x3b,0xbd,0xc0,0x3b, 0xfb,0xcd,0xd8,0xe6,0xbd,0xa6,0x44,0xd1,0x1,0x64,0x18,0x6d,0xca,0x83,0x6,0x4f, 0x61,0x30,0x8a,0x40,0x4c,0x1,0x8,0x3f,0x97,0x40,0x10,0x8d,0x40,0x61,0xa6,0x79, 0xf2,0x5,0x10,0xab,0xee,0x25,0xab,0xeb,0x5,0x3d,0xd7,0xa4,0x39,0xd5,0x98,0x51, 0x89,0xc6,0xc7,0x50,0x34,0x58,0x76,0x32,0x59,0x3,0x58,0x7f,0xc7,0x61,0x47,0xba, 0x40,0x6e,0x56,0x62,0x5b,0x9,0xeb,0xcc,0x6d,0xa6,0x0,0x10,0xf4,0xa7,0xa8,0x15, 0x49,0x92,0xa0,0xca,0x4a,0xbf,0xcf,0x83,0xaf,0x4d,0xf0,0xba,0x1a,0x7a,0x5f,0x99, 0x45,0x81,0xfd,0x33,0xe,0xbe,0x5b,0x8f,0x57,0x7a,0x9f,0x3b,0x77,0xe,0xe,0x87, 0x3,0xe3,0xc7,0x8f,0x4f,0x6f,0x4c,0x14,0xd6,0x38,0xc1,0x53,0xab,0xe4,0x8d,0x16, 0x8f,0xc7,0x11,0x8b,0xc5,0x50,0x5e,0x5e,0x8e,0xe2,0xe2,0x62,0x26,0x36,0x7d,0xe4, 0x91,0x47,0xf0,0xff,0xfe,0xdf,0xff,0x63,0xd6,0xfb,0x54,0xc8,0x26,0x1,0x1e,0xff, 0x3d,0x10,0xbd,0x24,0x70,0x9b,0x19,0x2b,0xb0,0x0,0xc0,0x32,0x5,0xa2,0x98,0x28, 0x63,0x2e,0x2a,0x2a,0xc2,0x92,0x25,0x4b,0x50,0x5a,0x5a,0x8a,0x78,0x3c,0x8e,0xfd, 0xfb,0xf7,0xa3,0xa5,0xa5,0x85,0xd5,0x45,0x28,0x23,0x71,0x3a,0x9d,0xa8,0xa9,0xa9, 0xc1,0x83,0xf,0x3e,0xe8,0x4c,0xff,0x86,0xc9,0x3b,0xca,0x6,0xc,0x1b,0x2c,0x6, 0x2d,0xb3,0xe8,0xe7,0x3b,0x73,0xf8,0xf0,0x61,0xbd,0xae,0xae,0xe,0x6e,0xb7,0x1b, 0x15,0x15,0x15,0xac,0xd6,0x90,0xaf,0xfd,0x33,0x7f,0xf0,0x9b,0x81,0x45,0x14,0xc5, 0x54,0xad,0x42,0x4b,0xa5,0xed,0xc3,0xab,0x86,0xa1,0xb0,0xb0,0x30,0xbd,0x5f,0x56, 0x53,0x7c,0xb6,0x9e,0xfa,0x51,0x29,0xaa,0x8e,0xce,0xce,0x4e,0x9c,0x6d,0x6d,0x43, 0x34,0x16,0x83,0x24,0xb9,0xe0,0x74,0xbb,0x20,0x71,0x3b,0x34,0x3e,0xc3,0xa0,0x5d, 0xa8,0x83,0x33,0x68,0xb3,0x1a,0x26,0xa4,0xa6,0xbb,0x95,0xd8,0xa2,0x6f,0x9a,0x5f, 0xe1,0x80,0x6e,0xf8,0xa1,0x3b,0x25,0xd1,0xf0,0x3c,0xe,0xa1,0xff,0x2,0x9b,0xcf, 0x68,0x54,0xbe,0x20,0x6d,0x35,0x6f,0x22,0x5f,0xb0,0xe0,0x8d,0x17,0x75,0x5d,0x87, 0xaa,0x1b,0x77,0xf8,0xb2,0x9a,0xcb,0x88,0x50,0xeb,0x7,0x16,0x6,0x6a,0x47,0xeb, 0x3,0xa,0x73,0x4d,0x82,0xa7,0x9e,0xf8,0x16,0x53,0x0,0x8,0x6,0x83,0x8,0x85, 0x42,0xf0,0x4a,0xe8,0x27,0xd8,0x23,0x57,0x58,0xca,0x26,0xa8,0x36,0xd1,0x7,0xe0, 0x3c,0xb5,0xe4,0xe8,0x7,0xee,0x3c,0xc0,0x9b,0x2d,0xf5,0xf9,0xd1,0xc1,0x9d,0x9d, 0x9d,0x68,0x6d,0x6d,0x85,0xd7,0xeb,0xc5,0xa8,0x51,0xa3,0x18,0xdd,0xc4,0xd3,0x46, 0x44,0xa9,0xd2,0xeb,0x8e,0xc5,0x52,0xa,0xf2,0xca,0xca,0x4a,0x14,0x14,0x14,0xc0, 0xe9,0x74,0xc2,0xe3,0xf1,0xe0,0xd1,0x47,0x1f,0xc5,0x8f,0x7f,0xfc,0xe3,0x54,0xa7, 0x1e,0x57,0xc4,0xa6,0xc5,0x9a,0x3e,0x43,0x2,0x21,0xa2,0x45,0xad,0x5a,0x67,0xf9, 0xcd,0x7,0xdd,0x97,0xd7,0x54,0x90,0x8e,0x44,0xd7,0x75,0x4,0x83,0x41,0xdc,0x70, 0xc3,0xd,0xcc,0xd0,0xb0,0xae,0xae,0xe,0xa7,0x4e,0x9d,0x62,0x75,0x12,0xde,0xf9, 0x60,0xca,0x94,0x29,0xf8,0xdb,0xbf,0xfd,0xdb,0xa0,0xae,0xeb,0x61,0xbb,0xc0,0x6d, 0x83,0xc5,0x25,0x89,0x93,0x27,0x4f,0xea,0xbb,0x76,0xed,0x2,0x0,0xc,0x1b,0x36, 0xcc,0x30,0xc6,0x72,0xa0,0x22,0xa8,0x4c,0x1c,0x3e,0xed,0x8,0x8b,0x8a,0x8a,0x50, 0x55,0x55,0xc5,0xda,0x13,0x41,0x45,0x67,0xc1,0x61,0x0,0x8d,0xf3,0xe7,0xcf,0x23, 0x1c,0xe,0x43,0xf0,0x78,0xe1,0x91,0x5c,0xe9,0x5d,0x99,0xde,0x97,0xa6,0x33,0xb, 0x90,0xf4,0xeb,0x4b,0x1b,0xd0,0xf1,0x5,0xd3,0x7c,0xea,0x2d,0x7c,0xd6,0xc1,0x5f, 0xd6,0xb7,0x3b,0x14,0x8c,0xbb,0x47,0x8,0x86,0xcc,0xc6,0x6a,0xb8,0x50,0xae,0xae, 0x1e,0xab,0xcf,0xc8,0x8a,0xfa,0x11,0x4,0x1,0x49,0x55,0x31,0x70,0xf4,0xb9,0x46, 0xc7,0xf6,0xbf,0xcc,0x54,0xe0,0x57,0x8d,0xef,0x55,0x13,0xfa,0xa8,0x1d,0x8d,0xcb, 0x26,0x54,0x95,0x53,0x60,0x2b,0x32,0x9b,0xf1,0x50,0xe0,0xf7,0x21,0x14,0xa,0xa5, 0xc4,0x68,0xba,0x6a,0xf0,0x11,0x23,0xcb,0x8c,0xb6,0xb6,0x36,0xb4,0xb6,0xb6,0x22, 0x1a,0x8d,0xb2,0xdd,0x74,0xae,0x63,0x84,0xd7,0x73,0x98,0x5b,0xb9,0xf9,0x63,0x90, 0xa7,0xb5,0x3a,0x3b,0x3b,0x11,0xa,0x85,0x50,0x5a,0x5a,0xa,0x8f,0xc7,0xc3,0x1e, 0x87,0xa7,0x2c,0xd9,0x28,0xd7,0x34,0xd0,0xc9,0xb2,0x8c,0x92,0x92,0x12,0xe6,0xa2, 0xec,0xf1,0x78,0xf0,0xcb,0x5f,0xfe,0x12,0xff,0xf6,0x6f,0xff,0x66,0xe8,0xce,0xe3, 0x67,0xc7,0xf3,0x8b,0x3f,0x9f,0x35,0x64,0xfa,0x9f,0x16,0x78,0x3e,0x3b,0xc8,0x4, 0x2a,0xba,0xae,0x23,0x10,0x8,0x60,0xf1,0xe2,0xc5,0x18,0x31,0x62,0x4,0x92,0xc9, 0x24,0x3e,0xfd,0xf4,0x53,0x34,0x34,0x34,0x40,0x14,0x45,0x66,0x60,0x48,0x42,0xbe, 0x71,0xe3,0xc6,0xe1,0x7,0x3f,0xf8,0x41,0x21,0x80,0x1e,0x93,0xe,0xa3,0x1f,0xdd, 0x6c,0x2f,0xd7,0x36,0x58,0xc,0x4a,0xf6,0xd1,0xd2,0xd2,0xd2,0xb1,0x73,0xe7,0xce, 0xc2,0x44,0x22,0x81,0xd2,0xd2,0x52,0x94,0x94,0x94,0x18,0x16,0x27,0x33,0x2d,0x95, 0xef,0xf0,0x19,0x73,0x91,0x94,0x54,0xaf,0x25,0x25,0x25,0x28,0x2d,0x2d,0x85,0x4b, 0x4a,0x3b,0xd1,0xa2,0xcf,0x19,0xd4,0x29,0xa5,0x7a,0xe5,0x7b,0x7b,0x7b,0x71,0xb6, 0xad,0x1d,0xbd,0xbd,0xbd,0x70,0x3a,0x9d,0xf0,0xf9,0x7c,0x16,0xfd,0xec,0x5c,0xb6, 0x81,0xfe,0x3a,0x3,0xfe,0x7f,0xab,0x2e,0x27,0xf3,0x98,0x53,0x7e,0xf1,0xee,0x37, 0xaf,0x3c,0x7d,0x3d,0x4d,0xfe,0x13,0x38,0x97,0x54,0x73,0x3d,0x25,0xdf,0x30,0x9b, 0x39,0x9a,0xeb,0x2e,0x8a,0x89,0x62,0xcb,0x34,0x15,0xcf,0xc,0x58,0x6c,0x94,0xa9, 0xd6,0x1f,0x48,0xa8,0xb8,0x4f,0xaa,0x6b,0xc3,0xfc,0x9,0xce,0xc7,0x89,0xc4,0x75, 0xe,0x87,0x3,0x7e,0xbf,0x1f,0xa1,0x80,0x3f,0x95,0x79,0xea,0x2a,0xfb,0xae,0x34, 0x4d,0x83,0xc7,0xe3,0x81,0xa6,0x69,0x68,0x6f,0x6f,0xc7,0xb9,0x73,0xe7,0x52,0x20, 0x9f,0xa6,0x5d,0xf2,0xa1,0x31,0xe9,0xb1,0xf8,0xe9,0x77,0x2a,0xa7,0x1c,0xa7,0xf3, 0x4e,0xa7,0x93,0xf9,0x3c,0x45,0xa3,0x51,0x14,0x16,0x16,0xa2,0xb0,0xb0,0xb0,0xdf, 0xa2,0x6e,0x6,0xf0,0x44,0x22,0x91,0x9e,0x99,0xa2,0xb1,0x63,0x1b,0x0,0x7c,0x3e, 0x1f,0x1e,0x7d,0xf4,0x51,0xfc,0xd7,0x7f,0xfd,0x17,0xa3,0x95,0xe8,0xbd,0x50,0x7d, 0xc2,0xa,0x28,0x78,0x70,0xb0,0x6a,0x9d,0xb5,0x3a,0xcd,0xd4,0x5e,0x4b,0x35,0xc, 0x9f,0xcf,0x87,0x6b,0xaf,0xbd,0x16,0xa3,0x47,0x8f,0x86,0xa6,0x69,0xa8,0xaf,0xaf, 0xc7,0x91,0x23,0x47,0x58,0xe6,0x43,0xe3,0x5c,0x1d,0xe,0x7,0x46,0x8c,0x18,0x81, 0x6f,0x7f,0xfb,0xdb,0xa8,0xac,0xac,0x14,0xcd,0x33,0xbd,0xd1,0x37,0xe7,0xdb,0xce, 0x3c,0x6c,0xb0,0x18,0x94,0x7a,0x6,0x85,0x73,0xfb,0xf6,0xed,0xc9,0xb3,0x67,0xcf, 0xa2,0xa0,0xa0,0x80,0x79,0xe3,0x98,0x6d,0xa1,0x89,0x1e,0xa0,0xe2,0x61,0xae,0xc5, 0x80,0x6f,0xc5,0x25,0xce,0x9b,0x6,0xdb,0x54,0x94,0x97,0xa2,0xb0,0xa8,0x84,0xb3, 0x78,0x10,0xa0,0xe9,0x7d,0xc5,0x49,0x4d,0xd3,0xd0,0x1d,0xee,0x45,0x47,0x47,0x7, 0xba,0xba,0x7a,0x52,0x60,0xe3,0xf1,0xa4,0x7f,0xdc,0x46,0xcb,0x4,0xf3,0x8e,0x5f, 0xd3,0x34,0x38,0x1d,0x62,0x3f,0xb0,0x30,0x53,0x1d,0x56,0x8b,0x2d,0x5b,0xcc,0x9, 0x2c,0xf2,0x4,0x45,0xf3,0x63,0x99,0x81,0x28,0x5b,0x67,0x55,0xa6,0xc,0xc5,0xea, 0x7e,0x66,0xa,0xd0,0x6a,0xa6,0x44,0x26,0x70,0xd2,0x75,0x9d,0x65,0x11,0x7a,0x5a, 0x51,0xad,0xca,0xa,0x34,0x9d,0xf3,0x80,0x4a,0x37,0xe,0x84,0x42,0x41,0x78,0xbd, 0xde,0xbe,0x56,0x68,0x39,0x61,0xe8,0x50,0x13,0x45,0x11,0x1d,0x1d,0x1d,0x38,0x7f, 0xfe,0x3c,0x7a,0x7b,0x7b,0x59,0xbd,0x6a,0x20,0x9b,0x9,0xbe,0x90,0xcd,0x77,0x50, 0x51,0xa3,0x4,0x81,0x41,0x57,0x57,0x17,0xce,0x9f,0x3f,0xcf,0x9a,0x27,0x82,0xc1, 0xa0,0xa1,0x63,0x8e,0x8e,0x5,0xfa,0x4e,0xa9,0xc6,0x42,0xee,0xb2,0x45,0x45,0x45, 0x8,0x4,0x2,0x0,0x80,0xa2,0xa2,0x22,0x3c,0xfc,0xf0,0xc3,0x78,0xf4,0xd1,0x47, 0x59,0x77,0x13,0xff,0x39,0x5b,0xcd,0xd9,0xce,0xf6,0x67,0x5,0xa,0x7c,0x27,0x54, 0xa6,0xcc,0x82,0xa7,0xb3,0x24,0x49,0x62,0x80,0x21,0x8a,0x22,0x53,0x7b,0xd3,0x6f, 0x85,0x0,0x53,0xd3,0x34,0x94,0x97,0x97,0x63,0xdd,0xba,0x75,0x18,0x3d,0x7a,0xb4, 0x98,0x29,0x8b,0xb0,0x1,0xc3,0x6,0x8b,0x41,0xab,0x6b,0x8,0x82,0xe0,0x4,0xa0, 0xed,0xde,0xbd,0x5b,0x3d,0x76,0xec,0x18,0x5c,0x2e,0x17,0xaa,0xaa,0xaa,0xc,0x9a, 0x9,0x3a,0xc8,0x89,0xcb,0xce,0xb5,0x8b,0x36,0xcf,0xa4,0x30,0x2f,0xe6,0x9a,0xa6, 0xc1,0xeb,0xf5,0xa2,0xa2,0xa2,0x2,0xc5,0xc5,0xc5,0x6,0xcb,0x6,0x55,0x3,0x4, 0x68,0x70,0x48,0x4e,0x68,0x2a,0x10,0x89,0x44,0xd0,0xd9,0x93,0x2,0x8e,0x44,0x32, 0x9,0x97,0xcb,0xd,0x57,0xba,0x35,0xd6,0xe1,0x70,0x1a,0x76,0x7a,0x2,0xe9,0x2c, 0x4c,0x16,0x15,0xfc,0xce,0x9f,0xb7,0x96,0xce,0xf2,0x6,0x2c,0xb3,0x24,0x76,0x75, 0x8e,0xda,0x45,0xb6,0xcb,0xf2,0xb9,0xdc,0x9c,0x5,0x65,0xa2,0xb0,0xb2,0x81,0x52, 0x5f,0x96,0x91,0xa2,0x9a,0x88,0x62,0x32,0x88,0xf2,0x34,0x1d,0xaa,0xa6,0x40,0xd0, 0x74,0xb8,0x5c,0x4e,0x4,0x3,0x1,0x4,0x2,0x1,0x88,0x62,0x5f,0x17,0x12,0x2d, 0xba,0x54,0x13,0x88,0x46,0x7a,0xd1,0x74,0xa6,0x85,0xd9,0x64,0x10,0x3f,0x6f,0xd6, 0x43,0xe4,0x93,0x75,0x9a,0xc1,0x9c,0x7,0x43,0x55,0x55,0xd1,0xd6,0xd6,0xc6,0xba, 0x85,0xa8,0xa5,0x95,0xa8,0x27,0x9e,0x7a,0xe4,0xf5,0x41,0x34,0x16,0x55,0x10,0x84, 0x54,0x16,0xeb,0x72,0xc1,0xed,0x76,0xc3,0xeb,0xf5,0xe2,0x17,0xbf,0xf8,0x5,0x1e, 0x7b,0xec,0x31,0x46,0x37,0x91,0x7e,0x82,0x16,0x64,0xaa,0x75,0x98,0xe9,0x26,0x73, 0x26,0x91,0xb,0x2c,0xac,0x32,0xd,0xab,0xba,0x6,0x1d,0xf7,0x92,0x24,0x61,0xf1, 0xe2,0xc5,0x18,0x35,0x6a,0x14,0x9c,0x4e,0x27,0x9a,0x9a,0x9a,0xb0,0x77,0xef,0x5e, 0x0,0xc6,0x42,0xb9,0x20,0x8,0x8,0x6,0x83,0xf8,0xf6,0xb7,0xbf,0x8d,0xc9,0x93, 0x27,0x3b,0xd2,0x6d,0xf1,0xe,0xae,0x89,0x45,0xe4,0x75,0x19,0x76,0xd8,0x60,0x71, 0x31,0x80,0xc2,0xb2,0xb3,0xe2,0xd8,0xb1,0x63,0x7a,0x6d,0x6d,0x2d,0x64,0x59,0x46, 0x45,0x45,0x5,0x8a,0x8a,0x8a,0xd8,0xe2,0x42,0x8b,0x7e,0xb6,0x62,0x6f,0xa6,0xa2, 0xa5,0xf9,0x3e,0x8c,0x6e,0x51,0x14,0xf8,0x7c,0x3e,0xc,0x1b,0x36,0xc,0x5,0x5, 0x5,0xdc,0x8f,0x56,0x66,0x66,0x77,0x82,0x43,0x4,0x74,0x11,0xb2,0xa6,0xa2,0xa7, 0x27,0x9c,0xea,0xa0,0x8a,0xc5,0xd8,0xa2,0x42,0xea,0x57,0x41,0x48,0x3,0x92,0x28, 0xc0,0x65,0x6a,0xbb,0x35,0x2f,0xc4,0x62,0x96,0x91,0xa6,0xd4,0x9a,0x9b,0x6d,0x81, 0xd7,0x75,0xcd,0x32,0x5b,0xd0,0xf3,0xcd,0x48,0x32,0x64,0x16,0x2,0x3f,0xef,0xd4, 0x22,0xa3,0xc8,0x44,0xa9,0xf1,0xed,0xa7,0x3c,0x48,0x50,0xc6,0xa0,0x31,0xba,0x29, 0x5d,0x8f,0x90,0xd3,0x53,0xe2,0x1c,0x2,0x2,0x5e,0x1f,0x82,0x41,0x3f,0xbc,0x1e, 0xf,0x4,0xa1,0x2f,0x83,0xa4,0xec,0x91,0x16,0xb4,0x68,0x34,0x8a,0xb6,0xd6,0x73, 0x68,0x6b,0x6b,0x83,0xe8,0x90,0xfa,0x65,0x10,0xe6,0xce,0xa5,0x7c,0x33,0x32,0xb3, 0xc2,0x5a,0x14,0x45,0x24,0x12,0x9,0x9c,0x3b,0x77,0xe,0xd1,0x68,0xd4,0xe0,0xcd, 0x44,0x80,0x40,0x5c,0x3e,0x5f,0xfb,0x20,0xa0,0xa0,0xc,0x36,0x14,0xa,0xc1,0xe7, 0xf3,0xa5,0x6,0x73,0x79,0xbd,0x78,0xec,0xb1,0xc7,0xf0,0xbf,0xff,0xfb,0xbf,0xec, 0xb3,0xf2,0x78,0x3c,0x48,0x24,0x12,0x2c,0x33,0x51,0x55,0x95,0x15,0x98,0xf9,0x2c, 0xc7,0xea,0x2f,0x17,0x78,0xe4,0xa2,0xa1,0xa8,0x78,0x4d,0x9b,0x26,0xca,0xa8,0x17, 0x2e,0x5c,0x88,0xb1,0x63,0xc7,0x2,0x0,0xda,0xdb,0xdb,0xb1,0x7b,0xf7,0x6e,0x24, 0x12,0x29,0xc1,0x23,0x0,0xd6,0xa1,0xe5,0xf5,0x7a,0xb1,0x6a,0xd5,0x2a,0xcc,0x9e, 0x3d,0x5b,0x34,0xd3,0x4f,0xbc,0xdd,0xb9,0x1d,0x36,0x58,0x5c,0xcc,0xac,0x82,0xdf, 0x95,0x8,0xba,0xae,0xab,0xcd,0xcd,0xcd,0x7,0x6a,0x6b,0x6b,0xaf,0xee,0xe9,0xe9, 0x81,0xdb,0xed,0x46,0x65,0x65,0x25,0xb3,0x3d,0x18,0xe8,0x3c,0x5,0xb3,0x67,0x93, 0x19,0x3c,0xe8,0x47,0x2a,0xcb,0x32,0x2,0x81,0x0,0xca,0xcb,0xcb,0x51,0x50,0x50, 0x0,0x9f,0xcf,0x3,0x4d,0x83,0xc9,0x6f,0xaa,0xef,0x47,0xdc,0x13,0x9,0x23,0x1c, 0xe,0xa3,0xa7,0xa7,0x7,0x89,0x84,0x9c,0x5a,0xe0,0x98,0xd1,0xa0,0x1b,0xba,0xae, 0x19,0x1c,0x3e,0x59,0xd9,0x97,0x7e,0xe8,0x59,0x4c,0xff,0x68,0xd7,0xca,0xfe,0xcf, 0x42,0x23,0x59,0xed,0x8c,0x75,0x5d,0x87,0x90,0x85,0x4e,0xca,0x5,0xa2,0xe6,0xcb, 0xac,0xb2,0x6,0x73,0x3,0x82,0x59,0x1b,0xa1,0xb2,0xc1,0xe7,0xc6,0x7a,0x4,0xdd, 0x37,0xe0,0xf5,0xb0,0x45,0xc7,0xe9,0x74,0xa6,0x67,0x86,0xa8,0xfd,0xbc,0xc2,0x68, 0x8e,0xf4,0xf9,0xf3,0xe7,0xd1,0xd5,0xd5,0xc5,0x3e,0x1b,0xf3,0xc,0x14,0xfe,0x3b, 0xce,0xb7,0xa3,0xce,0xec,0x82,0x4c,0x59,0x6c,0x3c,0x1e,0xc7,0xb9,0x73,0xe7,0xc, 0xd3,0x1c,0xc9,0xe5,0x95,0x16,0x79,0xf3,0x31,0x45,0x56,0xe3,0x54,0x14,0x2e,0x28, 0x28,0x60,0x8b,0x70,0x69,0x69,0x29,0x9e,0x7b,0xee,0x39,0xfc,0xe4,0x27,0x3f,0x61, 0x9f,0x19,0x75,0x56,0x91,0x20,0x8f,0x94,0xd6,0x54,0xab,0xe1,0xd,0xf,0x79,0x80, 0xe0,0xe9,0x23,0xbe,0x1,0x82,0x7,0x86,0x6c,0x5,0x6e,0xba,0x1d,0x65,0x9,0xf4, 0xdc,0x54,0xc3,0x90,0x24,0x9,0x8b,0x16,0x2d,0xc2,0xb8,0x71,0xe3,0xe0,0x74,0x3a, 0x71,0xee,0xdc,0x39,0xd4,0xd6,0xd6,0xa2,0xbb,0xbb,0x1b,0xc1,0x60,0x90,0x7d,0x4e, 0x94,0x95,0xdc,0x75,0xd7,0x5d,0x4c,0xed,0x6d,0x87,0xd,0x16,0x83,0x9,0x18,0x56, 0x23,0x1d,0x19,0x35,0xb5,0x7b,0xf7,0x6e,0xf9,0xd8,0xb1,0x63,0x70,0x3a,0x9d,0x28, 0x2d,0x2d,0x65,0x7,0x6b,0xa6,0xb1,0x9a,0x66,0x8e,0xbc,0x6f,0x9c,0xaa,0xde,0x6f, 0x56,0x6,0x4f,0x1b,0xf0,0x1d,0x35,0xba,0x96,0xfa,0xe1,0x84,0xa,0x8b,0x51,0x59, 0x59,0xc9,0x7e,0xf0,0xbc,0x30,0x8b,0x5f,0xcc,0x15,0x55,0x47,0x2c,0x16,0x43,0x6f, 0x6f,0x2f,0x7a,0x22,0x29,0xb,0x7,0xaa,0x6f,0xd0,0x82,0x67,0xfe,0x41,0xa7,0xcc, 0x7,0xad,0x8b,0xe1,0x56,0x8b,0x36,0xbb,0x9c,0x7,0x86,0x3c,0xeb,0xe,0x99,0x3e, 0x27,0xdd,0x82,0x26,0xe3,0x23,0x17,0xcd,0xa7,0x72,0xc0,0xc0,0x67,0x14,0xf4,0x7c, 0x2c,0x83,0x50,0x15,0x68,0xaa,0xa,0x51,0x4,0x7c,0x6e,0xf,0x2,0x41,0x1f,0x7c, 0x1e,0x2f,0xfb,0x4c,0xf8,0x7a,0x6,0x4f,0xeb,0x68,0x9a,0x66,0xe8,0x6e,0x22,0xda, 0x86,0xc0,0xdd,0x6c,0x11,0xc3,0x7f,0xcf,0x66,0x53,0xc0,0x6c,0x60,0xc1,0x1f,0xb, 0xc9,0x64,0x12,0xdd,0xdd,0xdd,0xe8,0xe8,0xe8,0x60,0xd9,0x2c,0xf9,0x7e,0xf1,0x36, 0x1b,0xf4,0x9d,0xf2,0x35,0xa,0x9a,0xe4,0xe7,0x4a,0xcf,0x84,0x27,0xcf,0xa5,0xf2, 0xf2,0x72,0x6c,0xda,0xb4,0x9,0xff,0xf1,0x1f,0xff,0x61,0x18,0x2,0x46,0xdf,0x11, 0xb9,0xf,0x50,0x11,0x99,0xa7,0xc1,0x78,0xb0,0x30,0x3,0x87,0xe5,0x31,0x65,0xaa, 0x45,0xe4,0x2a,0x7c,0xd3,0xfb,0xe2,0x7d,0xd2,0xe8,0x3d,0x2f,0x5c,0xb8,0x10,0x13, 0x26,0x4c,0x80,0xc3,0xe1,0x40,0x77,0x77,0x37,0x3e,0xf9,0xe4,0x13,0x74,0x75,0x75, 0xb1,0x4e,0x2e,0xfe,0xb1,0xbe,0xf6,0xb5,0xaf,0x61,0xd9,0xb2,0x65,0x82,0x9d,0x55, 0xd8,0x60,0x31,0xa8,0x40,0x61,0x55,0xf0,0xe6,0x3b,0x2d,0x4e,0x9e,0x3c,0xa9,0xd7, 0xd6,0xd6,0xa2,0xb7,0xb7,0x17,0x65,0x65,0x65,0xac,0xf5,0x30,0x57,0xb7,0xb,0x2d, 0x2a,0x7c,0x47,0x95,0x79,0x17,0xc9,0x67,0x1e,0x29,0xea,0xa6,0xef,0xbc,0xa2,0xa6, 0xfa,0xe6,0x83,0xc1,0x20,0x4a,0x4a,0x4a,0x10,0xf4,0x7,0xe0,0x94,0xc4,0xbe,0x2e, 0x1a,0x5d,0x64,0x33,0x11,0x0,0x91,0xd,0xeb,0x89,0x44,0x62,0x8,0xc7,0xa2,0xe8, 0xe9,0xed,0x85,0x2c,0xcb,0xac,0xd7,0x9f,0x9f,0x5,0x2e,0x8a,0x62,0x5f,0xb,0x2e, 0xc7,0x77,0x9b,0x3b,0x9f,0x0,0x30,0x73,0xbd,0x54,0xe7,0x16,0x2c,0x69,0xa6,0x7c, 0xf4,0x17,0x56,0x9f,0x8f,0x55,0x66,0x92,0x29,0xd3,0xe1,0xc5,0x72,0x0,0xb8,0x42, 0x75,0x7f,0xb5,0x75,0xea,0x36,0x42,0x7a,0x47,0xee,0x82,0xcf,0xeb,0x45,0xc0,0xeb, 0x61,0x1d,0x68,0x9a,0xa6,0x30,0x9a,0x4b,0x4b,0x2f,0xf6,0x29,0x4a,0x4,0x2c,0x5b, 0xeb,0xe8,0xe8,0x60,0xa,0x7b,0x5a,0xd4,0xac,0x3a,0xc5,0xcc,0xdf,0x69,0xbe,0xc5, 0x6d,0x33,0xc8,0x86,0xc3,0x69,0x7a,0x31,0x1a,0x65,0x8b,0x3f,0xbf,0xc3,0xe7,0x55, 0xd1,0x66,0x90,0xa5,0xef,0x99,0xa,0xf2,0xf4,0x5d,0x97,0x94,0x94,0xe0,0x8d,0x37, 0xde,0xc0,0xc3,0xf,0x3f,0x6c,0x0,0x38,0xab,0xfa,0x8,0x65,0x44,0x54,0xe0,0xb6, 0x2,0xa,0x3e,0xa3,0xc8,0x6,0x10,0xf9,0x80,0x6,0x65,0x1e,0x94,0x61,0x50,0x77, 0x19,0xd5,0x4d,0x1c,0xe,0x7,0x16,0x2c,0x58,0x80,0x49,0x93,0x26,0x1,0x48,0x75, 0x76,0xed,0xd9,0xb3,0x7,0xed,0xed,0xed,0x29,0x8b,0xfe,0xf4,0x8c,0x18,0x7a,0x8e, 0xeb,0xaf,0xbf,0x1e,0x2b,0x57,0xae,0x74,0xe9,0xba,0x2e,0xdb,0x5,0x6e,0x1b,0x2c, 0x2e,0x65,0x5d,0xc3,0xf7,0xfe,0xfb,0xef,0x47,0x8e,0x1f,0x3f,0x8e,0x82,0x82,0x2, 0x94,0x97,0x97,0xb3,0x1d,0x3f,0x5f,0xcc,0xa6,0x1a,0x4,0x3f,0xed,0xcc,0x5c,0xbb, 0x18,0xc8,0xb4,0x33,0xbe,0x3,0xcb,0xeb,0xf5,0x22,0x14,0xa,0xb1,0xce,0x16,0x33, 0x2f,0xcf,0xff,0x30,0x35,0x2d,0x25,0x8,0x4c,0xc8,0x49,0x44,0x22,0x11,0xf4,0x86, 0xa3,0x8,0xc7,0xa2,0x50,0x54,0xde,0xe6,0xdc,0x61,0x59,0x74,0xa4,0x70,0x3a,0x44, 0x43,0xb,0xa5,0xb9,0x50,0x2f,0xea,0xd9,0x17,0xc5,0x5c,0xef,0x4f,0x85,0x75,0xbd, 0x83,0x65,0x6d,0x82,0x98,0x55,0x87,0x91,0xa2,0x4,0xd3,0x35,0x9,0x4d,0x83,0xae, 0xab,0x90,0xc4,0x14,0x5d,0xe3,0xf6,0x48,0xf0,0x7b,0x7d,0xcc,0x77,0x8b,0xff,0xac, 0xf8,0x85,0x9d,0xde,0xb,0xbf,0xa3,0xef,0x4d,0x83,0x6c,0x3e,0x3a,0x9,0xab,0xfa, 0x3,0x7f,0x3c,0x48,0x92,0xc4,0xa8,0x1e,0xba,0x9c,0x16,0x42,0x2,0xa1,0x44,0x22, 0x81,0x8e,0x8e,0xe,0x84,0xc3,0x61,0x36,0xad,0x8e,0xbe,0x73,0xea,0x14,0xe2,0x7d, 0x9e,0x78,0x80,0xa2,0x45,0x94,0x68,0x1d,0x7e,0xde,0x75,0x28,0x14,0xc2,0xef,0x7f, 0xff,0x7b,0x3c,0xf2,0xc8,0x23,0xec,0xf5,0x50,0xd1,0xdc,0x4a,0x43,0xc4,0x3,0x2, 0x7f,0xde,0x2a,0xb3,0xb0,0xaa,0x65,0x98,0x41,0x24,0x9b,0xba,0x3b,0x57,0x2d,0x83, 0xef,0x38,0x9c,0x3f,0x7f,0x3e,0xa6,0x4c,0x99,0xc2,0x2c,0xcf,0xf,0x1e,0x3c,0x88, 0x53,0xa7,0x4e,0xb1,0x3a,0xc,0xd1,0x6e,0x82,0x20,0x60,0xce,0x9c,0x39,0x58,0xbb, 0x76,0xad,0xa4,0xeb,0xba,0x62,0xdb,0x9c,0xdb,0x60,0x31,0xe4,0x35,0xd,0xca,0x42, 0x0,0xa0,0xbe,0xbe,0x5e,0xdd,0xbf,0x7f,0x3f,0x92,0xc9,0x24,0xd3,0x4b,0x98,0xe9, 0x1a,0x4a,0xa5,0x79,0x71,0x93,0xb9,0x35,0x72,0x20,0xbb,0x4e,0x5a,0xe4,0xe8,0xfe, 0x54,0xcc,0xae,0xa8,0xa8,0x80,0xcf,0xe7,0x63,0x1a,0xc,0xb2,0xa2,0xe0,0xe9,0x2d, 0xb6,0xd0,0xa7,0xb5,0x1c,0xd1,0x44,0x1c,0x91,0x48,0xc,0xf1,0x78,0x1c,0x89,0x64, 0x92,0xf5,0xe0,0xf3,0x99,0xf,0x3f,0x5b,0x83,0x7,0x8b,0x4c,0x54,0x53,0xa6,0xf7, 0x94,0xcb,0xe2,0x1d,0x10,0xb2,0x2a,0xc3,0x75,0x4e,0xb1,0xd,0xf3,0x2c,0x89,0x34, 0x25,0xe6,0x10,0xc9,0x8c,0x51,0x82,0xcf,0xed,0x81,0xdb,0x23,0x31,0xaa,0x48,0x57, 0xb5,0x7e,0x9f,0xbd,0x59,0xb4,0x46,0x19,0x44,0x6f,0x6f,0x2f,0xa3,0xef,0xd8,0x8c, 0xf4,0x1,0x1e,0xef,0x3c,0x15,0x45,0xc5,0x5a,0x1a,0x53,0x4a,0xcd,0x11,0x74,0x39, 0xdd,0xbe,0xa7,0xa7,0x7,0x3d,0x3d,0x3d,0x88,0xc7,0xe3,0xe8,0xee,0xee,0x46,0x24, 0x12,0x31,0x80,0x4,0xdd,0x8e,0x7,0xa,0x1e,0x74,0x88,0x7a,0x92,0x24,0x9,0x3e, 0x9f,0x8f,0x9,0xdd,0x82,0xc1,0x20,0x7e,0xff,0xfb,0xdf,0xe3,0xb1,0xc7,0x1e,0x63, 0xc7,0x84,0x19,0x30,0x32,0xbd,0x7e,0x33,0x58,0x64,0xca,0x30,0xcc,0x0,0x61,0x50, 0xff,0xe7,0x0,0x87,0x5c,0xdd,0x52,0x66,0x2d,0xc7,0xbc,0x79,0xf3,0x30,0x71,0xe2, 0x44,0x48,0x92,0x84,0x44,0x22,0x81,0xfa,0xfa,0x7a,0x9c,0x38,0x71,0x82,0x75,0xa8, 0xd1,0xf1,0xea,0x70,0x38,0x30,0x75,0xea,0x54,0x7c,0xf7,0xbb,0xdf,0xf5,0xe8,0xba, 0x9e,0xe0,0xf5,0x17,0x26,0x8a,0xd9,0x6,0xc,0x1b,0x2c,0x6,0x7,0x2c,0x4c,0x97, 0x87,0x76,0xec,0xd8,0xd1,0x75,0xf2,0xe4,0x49,0x78,0x3c,0x1e,0x94,0x95,0x95,0x21, 0x18,0xc,0x1a,0xf8,0x63,0x7e,0x5a,0x98,0x79,0x31,0xb6,0x2a,0xce,0xe6,0x3,0x18, 0x56,0x75,0xf,0x49,0x92,0x10,0x8,0x4,0x50,0x58,0x58,0x88,0x82,0x82,0x2,0x66, 0xd7,0xc0,0xef,0x1e,0xd9,0x73,0x3a,0x44,0x88,0x82,0xd3,0xb0,0xc3,0x4e,0x26,0x93, 0x4c,0xb8,0x45,0xa7,0x64,0x38,0xa7,0xa,0x62,0xbf,0x22,0x2a,0xff,0x23,0xd6,0x4c, 0xb5,0x8e,0x5c,0x53,0x6,0xfb,0xbd,0x2f,0xcd,0x8,0x14,0x66,0x67,0x58,0x70,0xdd, 0x8f,0xb4,0x90,0xb8,0x9d,0x52,0x1f,0x5,0xe1,0x76,0x19,0xe6,0x93,0xeb,0x50,0xa1, 0x73,0x2a,0x6d,0x3e,0x13,0xa2,0xfa,0x8e,0x2c,0xcb,0x8,0x87,0xc3,0x88,0x44,0x22, 0x68,0x6d,0x6d,0x65,0xf4,0x8d,0x15,0x90,0xe4,0x93,0x49,0x98,0x6b,0x1e,0xe6,0x56, 0x58,0x49,0x92,0x90,0x4c,0x26,0xd9,0x2,0x4d,0xad,0xb7,0xaa,0xaa,0xe2,0xfc,0xf9, 0xf3,0x4c,0x80,0xd9,0xdd,0xdd,0x8d,0x68,0x34,0xca,0x16,0x3f,0x9e,0xa6,0xe1,0x4f, 0x89,0xd6,0xa4,0xe7,0x94,0x65,0x19,0x1e,0x8f,0xc7,0x40,0xcb,0x84,0x42,0x21,0xfc, 0xe1,0xf,0x7f,0xc0,0x93,0x4f,0x3e,0x69,0x59,0x5b,0xcb,0x4,0x16,0xe6,0xcd,0x80, 0x15,0x38,0x98,0xc1,0xc4,0xaa,0x6e,0x31,0x50,0xb0,0xc8,0x34,0x69,0x8f,0x34,0x16, 0xd4,0x9a,0x3c,0x73,0xe6,0x4c,0x54,0x57,0x57,0xb3,0xef,0xeb,0xe0,0xc1,0x83,0x68, 0x6c,0x6c,0x64,0x9f,0x29,0x3f,0x17,0x63,0xdc,0xb8,0x71,0x18,0x3e,0x7c,0xf8,0xac, 0xbb,0xef,0xbe,0xfb,0x80,0x99,0x72,0x4e,0xd3,0xcd,0x82,0x4d,0x53,0xd9,0x60,0x71, 0xd1,0xeb,0x1a,0x48,0x35,0x3,0xc1,0xbc,0x3b,0x39,0x71,0xe2,0x84,0xbe,0x7f,0xff, 0x7e,0x44,0xa3,0x51,0x14,0x15,0x15,0xb1,0x36,0x45,0xf2,0xe2,0xe1,0xb,0xa6,0x56, 0xee,0xa1,0x39,0x17,0xd3,0xc,0x4e,0xa4,0xe6,0x22,0x2a,0x3f,0xb8,0xc9,0xef,0xf7, 0xa3,0xb0,0xb0,0x10,0xc1,0x60,0x10,0x1e,0x8f,0x2b,0xfd,0xe3,0x75,0xb0,0xc5,0xa5, 0xef,0xcb,0x4,0x34,0x18,0x95,0xbf,0x74,0xbd,0xaa,0xaa,0x29,0xe0,0xd0,0x54,0x6, 0x1c,0xd4,0x8e,0xc9,0x4f,0x84,0x13,0x44,0x29,0xa3,0xd6,0x21,0x5b,0x96,0xc1,0x6a, 0x22,0xa2,0x91,0x77,0x37,0x8f,0xdb,0xf4,0x48,0x4e,0xb6,0xc3,0xa6,0x85,0x90,0x6a, 0x2d,0xa9,0x49,0x78,0x69,0x35,0xb6,0xda,0x3f,0x73,0xd0,0x75,0x15,0x8e,0x74,0x6b, 0x2b,0x1,0x44,0x57,0x57,0x17,0xc2,0xe1,0x30,0x3,0x44,0x9e,0x72,0xb3,0xea,0x68, 0x1a,0x28,0x90,0xe7,0x2a,0xec,0x3b,0x1c,0xe,0x6,0xc8,0xad,0xad,0xad,0xd0,0x34, 0xd,0x8d,0x8d,0x8d,0xe8,0xe9,0xe9,0x81,0x2c,0xcb,0x6c,0x7e,0x4,0x81,0x8c,0xb9, 0xeb,0x88,0x6f,0x72,0x90,0x65,0x99,0x65,0xae,0xb4,0x41,0x70,0xb9,0x5c,0x8,0x4, 0x2,0xd8,0xb1,0x63,0x7,0x36,0x6c,0xd8,0xc0,0x8e,0x43,0x2b,0x71,0x68,0x3e,0xef, 0xc9,0x2a,0xab,0xb0,0xa2,0xa7,0x72,0x81,0x85,0x15,0x30,0x98,0xbb,0xa4,0xac,0x26, 0xed,0xf1,0xd9,0x2,0x3d,0xdf,0xf4,0xe9,0xd3,0x31,0x73,0xe6,0x4c,0x6,0xfe,0xf5, 0xf5,0xf5,0x38,0x7c,0xf8,0x30,0x7c,0x3e,0x1f,0xfb,0xd,0x50,0x77,0x55,0x55,0x55, 0x15,0xd6,0xad,0x5b,0x67,0x98,0xed,0x6d,0x87,0xd,0x16,0x43,0x52,0x4,0xe7,0xbb, 0x2c,0xb8,0x74,0xd6,0xb7,0x7b,0xf7,0xee,0x48,0x7d,0x7d,0x3d,0x0,0x30,0xef,0x1d, 0xde,0x85,0x76,0xa0,0xad,0xb6,0xfc,0xce,0x35,0xd3,0x14,0x35,0x2b,0xc1,0x9f,0x19, 0x10,0x82,0x41,0x3f,0xbc,0x5e,0x3f,0xa,0xa,0xa,0x10,0x8,0x4,0xe0,0x72,0x4a, 0x86,0x85,0x83,0x8c,0xf9,0x78,0xdd,0x88,0xd1,0xb2,0xc3,0xda,0x48,0x90,0x68,0x1d, 0x85,0x73,0x63,0x35,0xbb,0xbe,0xf2,0x80,0x68,0xf5,0x97,0x2,0xb,0x58,0x1a,0x25, 0xf2,0x99,0x10,0x19,0x21,0x5a,0x29,0xb5,0xf9,0xc6,0x1,0xfe,0x33,0x52,0x94,0x24, 0x64,0x59,0x46,0x67,0x67,0x8a,0xd6,0x89,0x44,0x22,0x8c,0x6e,0xe3,0x85,0x95,0xe6, 0x76,0xdc,0x81,0x66,0x7e,0xe6,0x4d,0x80,0xf9,0x3b,0x31,0x68,0x5a,0x38,0xdd,0x84, 0x2c,0xcb,0xe8,0xea,0xea,0xc2,0xf1,0xe3,0xc7,0x11,0x89,0x44,0xd8,0x4c,0x13,0x49, 0x92,0xd8,0xc,0x9,0x7e,0xc1,0xa5,0x6e,0xa1,0x78,0x3c,0xe,0x49,0x92,0x10,0x8f, 0xc7,0x59,0x4d,0x85,0xda,0x7e,0x5,0x41,0x40,0x71,0x71,0x31,0x3e,0xf8,0xe0,0x3, 0x3c,0xfd,0xf4,0xd3,0x86,0x16,0x61,0xfe,0xbb,0x1d,0xc8,0x6f,0xd8,0xa,0x1c,0xcc, 0x19,0x46,0xb6,0xf6,0xda,0x81,0x82,0x85,0x99,0x86,0xd2,0x75,0x1d,0x7e,0xbf,0x1f, 0xf1,0x78,0x9c,0x51,0x6c,0xe,0x87,0x3,0x33,0x66,0xcc,0xc0,0xf4,0xe9,0xd3,0x19, 0x4d,0x77,0xf2,0xe4,0x49,0x1c,0x38,0x70,0xc0,0xd0,0x35,0x46,0xb5,0xaa,0xa2,0xa2, 0x22,0xac,0x5d,0xbb,0x16,0x63,0xc6,0x8c,0x11,0xac,0x7e,0xbf,0xf6,0xb2,0x6e,0x83, 0xc5,0xc5,0x6,0xc,0x36,0xa9,0xcb,0xaa,0xcb,0x42,0x10,0x4,0xa1,0xb9,0xb9,0x59, 0x3b,0x72,0xe4,0x8,0x9a,0x9b,0x9b,0xe1,0xf1,0x78,0x10,0x8,0x4,0x50,0x54,0x54, 0x64,0xf8,0xd1,0x99,0x17,0xf7,0x8b,0xf5,0x79,0x9a,0x87,0xe2,0xf0,0x75,0x13,0xba, 0x9e,0x76,0xa0,0x1,0x9f,0x3f,0x9d,0x75,0x78,0xe0,0xf2,0xb8,0xd,0x36,0x11,0x3c, 0xd0,0xd0,0x18,0x50,0x2b,0xe0,0xe2,0x17,0xf3,0x6c,0xf5,0x89,0x4c,0x6d,0xb8,0xe6, 0xce,0xaf,0x8c,0x33,0xb4,0xf5,0xfe,0xd,0x1,0x66,0xaa,0x88,0xda,0x4b,0x63,0xb1, 0x18,0x22,0x91,0x8,0xc2,0xe1,0x30,0xa2,0xd1,0x68,0x3f,0x7a,0x89,0x7f,0xd,0x99, 0xf4,0x22,0xf9,0x64,0x48,0xf9,0x14,0xb8,0xcd,0x2d,0xd1,0x9a,0xa6,0xa1,0xa5,0xa5, 0x5,0xdd,0xdd,0xdd,0x28,0x2d,0x2d,0x45,0x43,0x43,0x3,0xde,0x7b,0xef,0x3d,0x96, 0x49,0xb8,0x5c,0x2e,0x56,0x7b,0x22,0x3a,0x85,0xa7,0x65,0xc8,0x2f,0xca,0xe5,0x72, 0x19,0x8a,0xef,0x4,0x30,0x1e,0x8f,0x7,0x45,0x45,0x45,0x78,0xf7,0xdd,0x77,0xf1, 0xbb,0xdf,0xfd,0x8e,0xe9,0x27,0x78,0xba,0x29,0x5b,0x61,0x3b,0xd7,0xb1,0x95,0xd, 0x2c,0xac,0xf4,0x17,0xb9,0x8c,0x7,0xb3,0xd1,0x50,0xe6,0xff,0x35,0x4d,0x63,0x59, 0x3,0xf,0x50,0xd5,0xd5,0xd5,0x98,0x31,0x63,0x6,0xbb,0x6d,0x63,0x63,0x23,0xea, 0xea,0xea,0x58,0xb6,0xc5,0x83,0x46,0x20,0x10,0xc0,0xb7,0xbf,0xfd,0x6d,0x4c,0x98, 0x30,0x41,0xe0,0x5a,0xe5,0x6d,0xb0,0xb0,0xc1,0x62,0x50,0x33,0x8b,0x8c,0x9a,0xc, 0xba,0xfd,0xf1,0xe3,0xc7,0xf5,0x43,0x87,0xe,0xa1,0xb7,0xb7,0x97,0xd5,0x12,0xa8, 0x73,0x89,0xb7,0xab,0xce,0x67,0x22,0x1f,0x5f,0x2c,0x35,0x5b,0x91,0x9b,0x17,0x5f, 0x2b,0xea,0x84,0x7,0x28,0xfe,0xbb,0xa3,0xc7,0x21,0xda,0x82,0xe6,0x2c,0x13,0xf7, 0x6d,0xe6,0xa6,0xcd,0x16,0xec,0xd9,0x46,0xaf,0x5a,0x17,0xb2,0x33,0xdb,0x75,0x64, 0xb2,0xf3,0x30,0x6b,0x1e,0x78,0x9b,0x70,0xa2,0x72,0x22,0x91,0x8,0x9b,0xcf,0x40, 0xa3,0x42,0xad,0x5e,0xbb,0x39,0xfb,0xb2,0xea,0x2,0x32,0x3,0x45,0x3e,0x63,0x75, 0x33,0xe9,0x2b,0x28,0x68,0xe6,0x44,0x6b,0x6b,0x2b,0x1c,0xe,0x7,0x26,0x4e,0x9c, 0x88,0xf9,0xf3,0xe7,0x7b,0x0,0x88,0xdf,0xfb,0xde,0xf7,0xa2,0x64,0xc7,0xed,0xf7, 0xfb,0x1,0x80,0x81,0x7,0x4f,0xbf,0xd0,0x62,0x48,0x54,0x5a,0x38,0x1c,0x66,0xed, 0xd4,0x4e,0xa7,0x13,0x81,0x40,0x0,0x6e,0xb7,0x1b,0xb5,0xb5,0xb5,0x78,0xf5,0xd5, 0x57,0xd,0x35,0xd,0x2,0x9,0xfe,0x78,0xa3,0x4c,0x32,0x9f,0x91,0xc1,0xe6,0xe3, 0x25,0x57,0xe1,0x9b,0x9f,0xe8,0x98,0xa9,0xd8,0x9d,0x4f,0x4b,0xad,0x68,0xb2,0xe6, 0x27,0xed,0x8,0x7f,0x9d,0xaa,0xaa,0x98,0x35,0x6b,0x16,0xa6,0x4f,0x9f,0xce,0xbc, 0xd5,0x3a,0x3a,0x3a,0xb0,0x6f,0xdf,0x3e,0x46,0xe9,0x51,0x87,0x98,0xa2,0x28,0x8, 0x6,0x83,0x58,0xb5,0x6a,0x15,0x6a,0x6a,0x6a,0x4,0x3b,0xb3,0xb0,0xc1,0x62,0x48, 0xb,0xdd,0x7c,0x57,0x5,0xd5,0x33,0x78,0x45,0xf8,0xc1,0x83,0x7,0x95,0x43,0x87, 0xe,0xb1,0xde,0xf7,0x92,0x92,0x12,0x66,0x7f,0x4e,0x74,0x48,0xbe,0x3f,0xd8,0x6c, 0x2d,0xb7,0x56,0x36,0x17,0x7d,0xd7,0xf3,0x3b,0x7f,0x13,0x8d,0x23,0xf6,0x39,0x9e, 0xd2,0x42,0x42,0xf6,0x11,0x4,0x22,0xd4,0x65,0xc2,0xd3,0x23,0x86,0x11,0xaf,0x9a, 0x9e,0x11,0x18,0x72,0xed,0x60,0x75,0x5d,0x67,0x6a,0x74,0xa,0xa2,0xb4,0xe8,0x4f, 0x4e,0xc6,0x99,0x9a,0x39,0x16,0x8b,0x21,0x91,0x48,0x30,0xab,0x6d,0x7a,0xcd,0xe6, 0x6e,0x2d,0x33,0x8d,0x64,0x55,0xe3,0xc9,0x35,0xfe,0x35,0xdf,0xd6,0x66,0xf3,0xed, 0xe9,0xb3,0x89,0xc7,0xe3,0x29,0x2f,0xaf,0xce,0x4e,0x24,0x93,0x49,0x8c,0x1c,0x39, 0x12,0x53,0xa7,0x4e,0xad,0x1b,0x36,0x6c,0xd8,0x4c,0xee,0xbe,0xae,0x9f,0xff,0xfc, 0xe7,0x89,0x1d,0x3b,0x76,0xb0,0x5a,0x13,0x89,0xcd,0x28,0x13,0xa4,0x85,0xde,0xef, 0xf7,0xa3,0xac,0xac,0xc,0xdb,0xb7,0x6f,0x67,0x75,0x31,0xea,0x7e,0xf2,0xfb,0xfd, 0xa8,0xaf,0xaf,0xc7,0xa6,0x4d,0x9b,0x72,0xd6,0x52,0x2e,0x24,0x73,0x35,0x17,0xbd, 0x73,0xd1,0x50,0x5f,0xc6,0x80,0x30,0x53,0xa7,0x14,0xeb,0x6e,0x4b,0x67,0xa,0x3c, 0xe5,0x5a,0x53,0x53,0x83,0xe9,0xd3,0xa7,0xb3,0xdb,0x74,0x76,0x76,0x62,0xdf,0xbe, 0x7d,0xe8,0xed,0xed,0x65,0xd4,0x95,0xdf,0xef,0x67,0x19,0xdb,0x9d,0x77,0xde,0x89, 0xc5,0x8b,0x17,0x3b,0xec,0xe2,0xb6,0xd,0x16,0x97,0x1b,0xc8,0xf8,0xf6,0xec,0xd9, 0x13,0x69,0x68,0x68,0x40,0x32,0x99,0x44,0x20,0x10,0x40,0x71,0x71,0x31,0x4b,0xab, 0xcd,0xed,0xb4,0xe6,0xdd,0xa9,0x99,0x67,0xe6,0x39,0xf2,0x81,0x80,0xcd,0x40,0x68, 0x14,0x2b,0x7,0x57,0xde,0xf0,0x8d,0xff,0xf1,0x12,0x47,0x4c,0xc5,0x58,0x7a,0x8d, 0xfc,0x8f,0x9e,0x1e,0x97,0xaf,0xdf,0xb0,0xe1,0x45,0xe9,0x45,0xdf,0x5c,0x3c,0x67, 0x60,0x91,0x2e,0xd0,0x9a,0x17,0xad,0x81,0xb6,0x1f,0x7f,0xd9,0xcf,0xc2,0x9c,0xf1, 0x58,0xb9,0xe9,0x92,0x33,0x2c,0x15,0xaf,0x7b,0x7a,0x7a,0xd0,0xdd,0xdd,0x8d,0x78, 0x3c,0x8e,0xaa,0xaa,0x2a,0xcc,0x98,0x31,0x3,0xc3,0x87,0xf,0x17,0x32,0x6d,0x3e, 0x76,0xef,0xde,0xad,0x6f,0xdf,0xbe,0x1d,0xc7,0x8e,0x1d,0x43,0x3c,0x1e,0x67,0x80, 0x2c,0x49,0x12,0x86,0xd,0x1b,0x86,0xea,0xea,0x6a,0xd4,0xd4,0xd4,0x3c,0x36,0x6e, 0xdc,0xb8,0xef,0x3f,0xf9,0xe4,0x93,0xfa,0x5b,0x6f,0xbd,0xc5,0xb2,0xc0,0x40,0x20, 0x80,0xe6,0xe6,0x66,0x6c,0xdb,0xb6,0x8d,0x15,0xec,0xad,0x84,0x83,0x17,0xf1,0x78, 0xce,0xd8,0x15,0x95,0xa9,0xb5,0x36,0x9b,0xb5,0xb9,0xd9,0x35,0x39,0x53,0xb6,0x91, 0xe9,0x32,0xfa,0x3e,0xa6,0x4f,0x9f,0x8e,0x59,0xb3,0x66,0xb1,0xd7,0x13,0x8f,0xc7, 0xf1,0xf1,0xc7,0x1f,0xa3,0xa7,0xa7,0x87,0xfd,0xd6,0x78,0xa3,0xc4,0x65,0xcb,0x96, 0xe1,0x96,0x5b,0x6e,0x11,0xf8,0xef,0x83,0x36,0x7c,0xe6,0x2f,0x39,0x29,0xdc,0x0, 0x0,0x20,0x0,0x49,0x44,0x41,0x54,0xda,0xa4,0x1d,0x36,0x58,0xc,0x35,0x68,0x84, 0x3e,0xfe,0xf8,0xe3,0xae,0xe3,0xc7,0x8f,0x43,0x96,0x65,0x14,0x17,0x17,0xb3,0x21, 0x3a,0xe6,0x7a,0x3,0xef,0xf,0xc4,0x9b,0xc4,0x59,0x65,0x11,0x83,0xb5,0x60,0x5a, 0xa9,0x93,0xcd,0x7a,0x8,0x5e,0x84,0x98,0x89,0xf3,0xcf,0x74,0x9e,0x7,0x21,0xab, 0x7a,0x45,0x36,0xea,0xea,0x62,0xef,0x9a,0xad,0x7c,0xbb,0xac,0xcc,0x1e,0xcd,0xc5, 0x6c,0x3a,0xef,0x76,0xbb,0x91,0x48,0x24,0xd0,0xd5,0xd5,0x85,0xde,0xde,0x5e,0x36, 0xb2,0xb4,0xba,0xba,0x1a,0x23,0x47,0x8e,0x14,0xb9,0xec,0x53,0xb0,0xb0,0x93,0xe1, 0x6d,0x65,0xfe,0xaa,0xb0,0xb0,0xf0,0xd,0x1a,0x9a,0x14,0xa,0x85,0x30,0x72,0xe4, 0x48,0x97,0xae,0xeb,0x32,0xb7,0xa0,0x89,0x1b,0x36,0x6c,0x50,0xb6,0x6d,0xdb,0x6, 0xb7,0xdb,0x8d,0xb2,0xb2,0x32,0x1c,0x3c,0x78,0x10,0x1f,0x7c,0xf0,0x81,0x25,0xad, 0x36,0x48,0xc7,0x72,0xd6,0xc2,0x77,0x36,0x3,0xc2,0x6c,0x73,0x30,0xac,0xf4,0x1a, 0x99,0x0,0x83,0xce,0xbb,0x5c,0x2e,0xe6,0x63,0x55,0x5d,0x5d,0x8d,0xea,0xea,0x6a, 0x56,0xaf,0xd1,0x75,0x1d,0xfb,0xf6,0xed,0x43,0x73,0x73,0x33,0x82,0xc1,0x20,0xa3, 0x5d,0x49,0xe7,0xb2,0x74,0xe9,0x52,0x7c,0xe3,0x1b,0xdf,0x10,0x4d,0x43,0x94,0x6c, 0xc7,0xda,0x8b,0x14,0x4e,0xfb,0x23,0xf8,0x72,0xf4,0x95,0xae,0xeb,0xdd,0x0,0x84, 0x5,0xb,0x16,0x4,0x3f,0xfc,0xf0,0xc3,0x9e,0x86,0x86,0x6,0x36,0xe9,0xcc,0xef, 0xf7,0x23,0x10,0x8,0xb0,0x83,0x9c,0x38,0x65,0x7e,0x78,0x8e,0x15,0xa7,0x3e,0xd8, 0x8b,0x81,0x79,0xf1,0x37,0xd7,0x57,0x68,0x17,0x78,0xa1,0x8b,0xf6,0x97,0x59,0xf8, 0x7,0x62,0x3,0x9e,0x2f,0x1f,0xcf,0x77,0x79,0x99,0x87,0x38,0xf1,0xd7,0xf3,0xb, 0x5b,0x32,0x99,0xc4,0x99,0x33,0x67,0xd0,0xdb,0xdb,0xb,0x45,0x51,0x50,0x52,0x52, 0x82,0x5,0xb,0x16,0x60,0xf4,0xe8,0xd1,0x2,0x7,0x34,0x94,0x45,0x64,0x9c,0xe4, 0x96,0x5e,0x9c,0x36,0xc3,0xe4,0xfa,0x9e,0xbe,0x3f,0xed,0x72,0x5,0x3a,0xd5,0x34, 0x4d,0x7f,0xf3,0xcd,0x37,0xe1,0x76,0xbb,0x71,0xe3,0x8d,0x37,0xa2,0xbb,0xbb,0x1b, 0x7,0xf,0x1e,0x34,0xdc,0x6f,0xa0,0x75,0x89,0x81,0x6e,0x24,0x32,0xd9,0xc2,0xf3, 0x75,0xa3,0x4c,0xdf,0x75,0x26,0x3,0xc9,0x4c,0x75,0x2d,0x33,0xb0,0xd3,0xf9,0x64, 0x32,0xc9,0x36,0x1c,0x87,0xe,0x1d,0x82,0xa2,0x28,0x98,0x39,0x73,0x26,0xeb,0x92, 0xaa,0xa9,0xa9,0x81,0xc7,0xe3,0xc1,0xe9,0xd3,0xa7,0x59,0x3b,0x2d,0x3d,0xc7,0xce, 0x9d,0x3b,0xf1,0xfc,0xf3,0xcf,0x6b,0x82,0x20,0xb8,0x75,0x5d,0x4f,0x72,0x4d,0x2c, 0x1a,0xdf,0xd0,0x62,0x87,0xd,0x16,0x43,0x12,0xfc,0x4,0xaf,0xf4,0x42,0x10,0x5e, 0xb8,0x70,0xa1,0x70,0xe6,0xcc,0x99,0x99,0x63,0xc7,0x8e,0xad,0xad,0xaf,0xaf,0x47, 0x6f,0x6f,0x2f,0x5c,0x2e,0x17,0xd3,0x46,0x10,0x48,0xf0,0x5,0x70,0xab,0x42,0xea, 0x60,0x67,0x15,0xb9,0xa8,0x9e,0x5c,0xce,0xb0,0xe6,0xd7,0x68,0xad,0xd0,0xd6,0x33, 0xba,0xc9,0x66,0x3,0x90,0x8b,0xf9,0xde,0xcd,0x3,0xa0,0xcc,0x3a,0x18,0xde,0xe4, 0x91,0x3a,0x6c,0xc2,0xe1,0x30,0xba,0xbb,0xbb,0x11,0xe,0x87,0x1,0x0,0x95,0x95, 0x95,0x98,0x3a,0x75,0x2a,0x46,0x8c,0x18,0xe1,0xe0,0x3b,0x6d,0xcc,0xc0,0x90,0xad, 0x31,0xc2,0x82,0xa,0xa1,0xff,0xd5,0xf4,0x29,0xdf,0xbe,0x2d,0x24,0x93,0x49,0xfd, 0x95,0x57,0x5e,0xc1,0x2d,0xb7,0xdc,0x82,0x3b,0xef,0xbc,0x93,0xa9,0x9a,0xcd,0xef, 0x6b,0x30,0x8f,0x11,0x5e,0x1c,0xc8,0x17,0xcf,0xf9,0xcb,0xad,0x32,0x1e,0xab,0x8d, 0x87,0xd5,0x86,0x24,0x93,0x5f,0x18,0x3f,0x23,0x9d,0x6a,0x18,0xb2,0x2c,0xe3,0xc8, 0x91,0x23,0x10,0x4,0x1,0x57,0x5f,0x7d,0x35,0xeb,0xfe,0x9b,0x36,0x6d,0x1a,0x0, 0xa0,0xb9,0xb9,0x19,0xaa,0xaa,0xc2,0xe3,0xf1,0x30,0x91,0xe4,0xbe,0x7d,0xfb,0xf0, 0xeb,0x5f,0xff,0x3a,0x21,0x8,0x82,0x5f,0xd7,0xf5,0x28,0xb7,0xb9,0xb3,0x81,0xc2, 0xa6,0xa1,0x2e,0x4d,0x66,0x91,0xe9,0x3a,0x0,0xd2,0xe1,0xc3,0x87,0x13,0x47,0x8f, 0x1e,0x45,0x4f,0x4f,0xf,0xb3,0x95,0xa6,0xe,0x17,0xbe,0x10,0x6e,0x16,0xe1,0xf1, 0x23,0x34,0x7,0x93,0xa7,0xcf,0x77,0xa1,0xce,0xb4,0xe3,0xcc,0x37,0xbb,0xb0,0xea, 0xb0,0x1a,0x4c,0x50,0xb4,0x7a,0x3f,0x56,0xd9,0x1b,0xaf,0xfc,0x8e,0x44,0x22,0xcc, 0x9a,0x3,0x0,0x46,0x8f,0x1e,0x8d,0x49,0x93,0x26,0x75,0x55,0x56,0x56,0x16,0x65, 0x2,0x2,0x33,0x8,0x58,0x1,0x47,0x1e,0xc7,0x4a,0x3f,0xe,0xfd,0xec,0xd9,0xb3, 0x9d,0x93,0x26,0x4d,0x2a,0xbc,0xea,0xaa,0xab,0x70,0xe7,0x9d,0x77,0x22,0x1e,0x8f, 0xe3,0xb9,0xe7,0x9e,0xc3,0xc9,0x93,0x27,0x59,0x96,0x3a,0x4,0xc7,0x77,0x56,0x1f, 0x29,0x2b,0x6b,0x10,0xf3,0xed,0xcc,0x53,0xf3,0xf2,0x6d,0xa9,0xe5,0x6b,0x1e,0x44, 0x7,0x52,0x6b,0xf0,0xd4,0xa9,0x53,0x31,0x77,0xee,0x5c,0x6,0xe,0x9a,0xa6,0xe1, 0xf0,0xe1,0xc3,0x68,0x68,0x68,0x80,0xcf,0xe7,0x33,0x74,0x57,0x39,0x9d,0x4e,0x8c, 0x1d,0x3b,0x16,0xdf,0xff,0xfe,0xf7,0x43,0xba,0xae,0xf7,0x98,0xed,0x41,0xec,0xb0, 0xc1,0x62,0x28,0x1,0x83,0xd7,0x68,0x98,0xb9,0x6b,0x6a,0xc5,0x75,0x35,0x34,0x34, 0x24,0xea,0xeb,0xeb,0x71,0xee,0xdc,0xb9,0xbe,0xb9,0xcf,0xa1,0x10,0x73,0xe1,0x34, 0xb7,0xae,0xe,0x16,0xcd,0xc0,0x2f,0x4,0xd9,0x54,0xe6,0x56,0x75,0x14,0xab,0x6c, 0x21,0x17,0x75,0x96,0x8d,0x92,0xc8,0x66,0x6d,0x7e,0x31,0x32,0x8c,0x4c,0xef,0x81, 0x7f,0xfd,0x54,0xb4,0x26,0x7d,0x83,0xcf,0xe7,0xc3,0xb8,0x71,0xe3,0x30,0x67,0xce, 0x9c,0x42,0x5d,0xd7,0xbb,0xc9,0x33,0xcc,0x4a,0x7b,0x63,0x95,0x39,0x98,0xb2,0x87, 0x7e,0xf7,0xb5,0x6a,0xd5,0xb6,0x38,0xef,0x6c,0x68,0x68,0x90,0x27,0x4c,0x98,0x0, 0x41,0x10,0xb0,0x64,0xc9,0x12,0x7c,0xfd,0xeb,0x5f,0x47,0x67,0x67,0x27,0x5e,0x7c, 0xf1,0x45,0x9c,0x3a,0x75,0x6a,0x28,0x8f,0xef,0x8c,0xf5,0xb,0xca,0x16,0xcc,0xc5, 0x6b,0x2b,0xb0,0xc8,0xa6,0xcb,0xc8,0xd6,0x29,0x45,0x63,0x61,0x29,0xcb,0xa0,0x63, 0x76,0xda,0xb4,0x69,0x98,0x3d,0x7b,0x36,0x7b,0x9d,0xe,0x87,0x3,0xd,0xd,0xd, 0xf8,0xfc,0xf3,0xcf,0xd9,0xb0,0x25,0x5e,0x39,0x5e,0x55,0x55,0x85,0xb5,0x6b,0xd7, 0x76,0x55,0x55,0x55,0x15,0xdb,0x40,0x61,0x83,0xc5,0xa5,0x0,0x8a,0x8c,0xea,0xef, 0x4c,0xbb,0xcd,0x33,0x67,0xce,0xec,0x3f,0x75,0xea,0xd4,0xd5,0x27,0x4f,0x9e,0x84, 0x2c,0xcb,0x70,0x3a,0x9d,0x8,0x6,0x83,0x8,0x6,0x83,0x6c,0x37,0x44,0xa9,0x78, 0xbe,0x13,0xfb,0x2e,0xc6,0xce,0x3b,0x17,0x8d,0x94,0xe9,0xb2,0x6c,0x42,0xb8,0x81, 0x5a,0x79,0x5f,0xec,0x30,0x5b,0xc8,0xd3,0xe2,0x93,0x4c,0x1b,0x2c,0x76,0x75,0x75, 0x21,0x12,0x89,0x40,0x55,0x55,0x54,0x54,0x54,0x60,0xf2,0xe4,0xc9,0x98,0x38,0x71, 0xa2,0xf,0x40,0x3c,0x3,0x65,0x64,0x6e,0xa5,0xce,0x68,0x93,0x9d,0x2b,0xb3,0xe0, 0xa8,0x2c,0xe2,0x66,0x74,0x1e,0x6c,0x4e,0x9d,0x3a,0xa5,0x4f,0x9c,0x38,0x91,0x15, 0x73,0x57,0xac,0x58,0x81,0x45,0x8b,0x16,0xa1,0xb5,0xb5,0x15,0x1b,0x36,0x6c,0x40, 0x57,0x57,0x57,0x4e,0x5b,0x8f,0xc1,0xcc,0x30,0xac,0xb2,0xc,0x2b,0xb0,0xb0,0x72, 0xab,0xcd,0x35,0x71,0x8f,0xcf,0x2c,0xf8,0xfb,0xf2,0x99,0x86,0xae,0xeb,0xc,0x30, 0xc8,0x53,0xcb,0xe3,0xf1,0xe0,0xe8,0xd1,0xa3,0x38,0x76,0xec,0x98,0x61,0x4e,0x8, 0xd1,0x8b,0x15,0x15,0x15,0xb8,0xff,0xfe,0xfb,0x49,0xed,0x6d,0xeb,0x30,0x6c,0xb0, 0x18,0x7a,0xc0,0x80,0x85,0xeb,0x65,0x6,0x5a,0x8a,0xaf,0x73,0xb8,0x3f,0xff,0xfc, 0xf3,0xe8,0x17,0x5f,0x7c,0x81,0xf3,0xe7,0xcf,0x1b,0xd4,0xa8,0x54,0xdb,0xa0,0xc5, 0x2d,0x53,0xfd,0xe0,0x42,0xbf,0xaf,0x81,0xd8,0xa8,0x67,0x2,0x84,0xcb,0xf9,0x98, 0xe1,0xb5,0x11,0xbc,0xe8,0x2d,0x16,0x8b,0x41,0x51,0x14,0xf8,0xfd,0x7e,0x8c,0x19, 0x33,0x6,0x5,0x5,0x5,0x3f,0x98,0x3a,0x75,0xea,0xff,0x98,0xeb,0x10,0xb9,0x68, 0x46,0x33,0x78,0x58,0x6d,0x14,0xb2,0xd4,0x37,0xfa,0x6d,0x28,0x4c,0xcf,0x1d,0x1c, 0x37,0x6e,0x5c,0xcf,0x89,0x13,0x27,0xd8,0x73,0xae,0x5e,0xbd,0x1a,0x73,0xe7,0xce, 0x45,0x4b,0x4b,0xb,0x9e,0x7a,0xea,0x29,0x74,0x77,0x77,0xf,0x19,0x58,0x98,0x41, 0xc3,0xac,0xc1,0x30,0x8b,0xf6,0xf2,0xf5,0x95,0xb2,0x32,0x17,0xe4,0x9b,0xc,0x78, 0xab,0x18,0xf3,0x75,0x9a,0xa6,0x61,0xea,0xd4,0xa9,0x98,0x37,0x6f,0x1e,0x3b,0x16, 0x5d,0x2e,0x17,0x9a,0x9a,0x9a,0x70,0xf0,0xe0,0xc1,0xd4,0x80,0xb0,0x74,0x36,0x42, 0x9d,0x89,0x5,0x5,0x5,0x58,0xb3,0x66,0xd,0xae,0xba,0xea,0x2a,0x7b,0xf2,0x9e, 0xd,0x16,0x57,0x5e,0xec,0xd9,0xb3,0x67,0x85,0xd7,0xeb,0x7d,0xe3,0xe4,0xc9,0x93, 0x68,0x6f,0x6f,0x67,0x7d,0xf8,0xc1,0x60,0x90,0xa9,0xaf,0xcd,0x5d,0x3d,0x66,0x1e, 0xde,0x4c,0xb5,0xe4,0xb2,0x1b,0xb1,0x2a,0x3e,0x67,0x2b,0xae,0x7f,0xd9,0x5a,0x45, 0xa6,0xac,0x25,0x9f,0x2e,0x29,0x73,0x7d,0x83,0xde,0x17,0x60,0x3d,0x80,0xc8,0x5c, 0x44,0x57,0x14,0x85,0x39,0xd0,0x92,0xe0,0xcf,0xed,0x76,0x63,0xe4,0xc8,0x91,0x18, 0x3d,0x7a,0x34,0x46,0x8e,0x1c,0x29,0x1,0x50,0x2f,0xd7,0x1d,0xe6,0xf,0x7e,0xf0, 0x3,0xfd,0x17,0xbf,0xf8,0x5,0xa3,0x24,0x1d,0xe,0x7,0xd6,0xac,0x59,0x83,0xf9, 0xf3,0xe7,0xe3,0xe8,0xd1,0xa3,0x78,0xee,0xb9,0xe7,0x10,0xe,0x87,0x33,0xa,0x15, 0x7,0x33,0xc3,0xc8,0x94,0x65,0xc,0x44,0xb4,0x97,0xc9,0x33,0x2a,0x9f,0x7a,0x6, 0x6d,0xa4,0xa8,0x86,0x31,0x67,0xce,0x1c,0xf6,0xbe,0xbd,0x5e,0x2f,0xce,0x9e,0x3d, 0x8b,0xfd,0xfb,0xf7,0xb3,0xe,0x29,0xaf,0xd7,0xb,0xa0,0x4f,0x8f,0xb1,0x76,0xed, 0x5a,0xcc,0x9c,0x39,0xd3,0x91,0xa9,0xdd,0xd9,0x5e,0x95,0x6c,0xb0,0xb8,0xec,0xe9, 0xac,0x13,0x27,0x4e,0xfc,0x6f,0x57,0x57,0xd7,0xdf,0x9f,0x3e,0x7d,0x1a,0xdd,0xdd, 0xdd,0x6c,0xd2,0x98,0xdf,0xef,0x67,0xca,0x5e,0x4a,0xaf,0xcd,0x36,0xe5,0x56,0x1e, 0x55,0x56,0xb6,0x18,0x56,0x75,0x8,0x2b,0x20,0xb0,0x52,0x93,0x9b,0xc1,0x23,0x9f, 0x8c,0xc4,0x4a,0xe7,0x60,0x25,0xc,0xe4,0x1,0x8b,0x2e,0xe3,0x5b,0x5d,0x79,0xa0, 0xcc,0x34,0x1b,0x9b,0xd4,0xd5,0xf1,0x78,0x9c,0xd,0x19,0xf2,0x78,0x3c,0xa8,0xac, 0xac,0xc4,0xd8,0xb1,0x63,0x31,0x7a,0xf4,0x68,0x8f,0xae,0xeb,0x89,0x5c,0x99,0xc3, 0xe5,0x10,0x8d,0x8d,0x8d,0x5b,0x6e,0xbb,0xed,0xb6,0xe5,0x87,0xf,0x1f,0x66,0x45, 0x6d,0xaf,0xd7,0x8b,0x7,0x1e,0x78,0x0,0x53,0xa7,0x4e,0xc5,0xe7,0x9f,0x7f,0x8e, 0x17,0x5f,0x7c,0x11,0xe1,0x70,0x78,0xc8,0xb2,0x3c,0xb3,0xda,0xdb,0xca,0x74,0xf0, 0x42,0xc0,0xc2,0x3c,0xe3,0x9b,0xbf,0x9d,0x59,0xe4,0x47,0xf7,0x53,0x14,0x85,0x1, 0x6,0xff,0x39,0x91,0x3d,0x8,0x59,0xc5,0xf0,0xea,0x79,0x49,0x92,0x70,0xd7,0x5d, 0x77,0x61,0xc1,0x82,0x5,0x42,0x36,0xb7,0x6,0x7b,0x75,0xb2,0xc1,0xe2,0x72,0x1, 0x9,0x2b,0x6a,0x82,0x15,0xc8,0x1b,0x1b,0x1b,0xb7,0x74,0x75,0x75,0x2d,0x6f,0x6a, 0x6a,0x42,0x67,0x67,0x27,0xab,0x71,0x78,0xbd,0x5e,0xa6,0xf2,0x25,0xaf,0x21,0xda, 0x6d,0x5b,0x15,0x9c,0x33,0xf5,0xcc,0x9b,0x77,0xe7,0xf9,0x66,0xf,0x56,0xde,0x4b, 0x99,0x16,0x96,0x4c,0xd6,0xde,0xd9,0x5a,0x6f,0xcd,0x0,0xc5,0xb7,0xba,0xf2,0x33, 0xcf,0x93,0xc9,0x24,0x0,0x30,0x1f,0x29,0x32,0x18,0x24,0x41,0xd7,0xe8,0xd1,0xa3, 0x51,0x51,0x51,0x81,0xb1,0x63,0xc7,0x7a,0x75,0x5d,0x8f,0xf,0xe4,0xfb,0xb8,0x1c, 0x16,0xb,0x41,0x10,0x84,0x53,0xa7,0x4e,0x69,0x4b,0x96,0x2c,0x31,0x14,0xb5,0x83, 0xc1,0x20,0xd6,0xad,0x5b,0x87,0xb1,0x63,0xc7,0xe2,0xd0,0xa1,0x43,0x78,0xf9,0xe5, 0x97,0x59,0x9b,0x2f,0x2d,0x96,0x43,0x1,0x1e,0xfc,0x8c,0x73,0xfe,0xbb,0x21,0x20, 0xc9,0x36,0xb,0xc3,0xca,0x53,0x2a,0x57,0x66,0x61,0xb6,0x38,0x37,0xd7,0x42,0xa6, 0x4c,0x99,0x82,0x9a,0x9a,0x1a,0x48,0x92,0xc4,0xa,0xe2,0x1d,0x1d,0x1d,0x38,0x70, 0xe0,0x0,0x22,0x91,0x8,0xab,0x5f,0xd0,0x70,0x2a,0x87,0xc3,0x81,0xaf,0x7f,0xfd, 0xeb,0xb8,0xe9,0xa6,0x9b,0x4,0x6e,0x62,0xa6,0xad,0xee,0xb6,0xc1,0xe2,0xf2,0x6, 0xd,0x2b,0xfe,0xda,0xc4,0x7d,0xfb,0x4f,0x9c,0x38,0x11,0x6e,0x6e,0x6e,0xc6,0xf9, 0xf3,0xe7,0xd1,0xdd,0xdd,0x6d,0x98,0x71,0x4c,0xae,0xa6,0x54,0xeb,0xa0,0x1f,0x10, 0x6f,0xc1,0x91,0x69,0xb1,0xb6,0xb2,0xb9,0x30,0x2f,0xe0,0x99,0x0,0xe7,0xcb,0x64, 0x1a,0x7c,0x6,0x64,0xa6,0x95,0xcc,0x3a,0x8,0x33,0xfd,0x26,0xcb,0x32,0x62,0xb1, 0xd4,0x24,0x40,0x2a,0x54,0xcb,0xb2,0xc,0x97,0xcb,0x85,0xd2,0xd2,0x52,0xc,0x1f, 0x3e,0x1c,0x3e,0x9f,0xef,0xb1,0xf1,0xe3,0xc7,0xff,0x23,0x4c,0x2d,0x92,0x57,0xe2, 0x6e,0x51,0x10,0x4,0xe1,0xc0,0x81,0x3,0xda,0x2d,0xb7,0xdc,0x82,0xd6,0xd6,0x56, 0xf6,0x19,0x96,0x95,0x95,0x61,0xdd,0xba,0x75,0x28,0x2b,0x2b,0xc3,0xa7,0x9f,0x7e, 0x8a,0x17,0x5e,0x78,0x81,0x81,0x67,0xb6,0xe1,0x47,0x17,0x3b,0xcb,0xb0,0x6a,0xa3, 0xcd,0x94,0x59,0x58,0x15,0xbe,0xb3,0x79,0x4a,0xe5,0x32,0x22,0xe4,0x95,0xde,0x74, 0x4c,0x5f,0x75,0xd5,0x55,0x98,0x3d,0x7b,0x36,0xcb,0x38,0x7c,0x3e,0x1f,0xc2,0xe1, 0x30,0xe,0x1c,0x38,0x80,0xf3,0xe7,0xcf,0xb3,0xcd,0x15,0xff,0x58,0x4b,0x96,0x2c, 0xc1,0xca,0x95,0x2b,0x45,0xdb,0xe,0xc4,0x6,0x8b,0x2b,0x26,0xb3,0xc8,0xb6,0xcb, 0x35,0x1,0x87,0x6b,0xf7,0xee,0xdd,0xb7,0xf9,0xfd,0xfe,0x37,0x3a,0x3a,0x3a,0xd0, 0xda,0xda,0x8a,0x9e,0x9e,0x1e,0xd6,0x1,0xe2,0xf5,0x7a,0xd,0x26,0x81,0x34,0x65, 0xcd,0xcc,0x39,0x67,0xb2,0xf,0xcf,0x25,0xc,0xcc,0xa5,0xca,0x1d,0xc8,0x62,0x63, 0x95,0x89,0xf0,0x86,0x83,0x4,0xc,0xe4,0x48,0x4b,0xb,0xa2,0x24,0x49,0x28,0x2f, 0x2f,0x47,0x71,0x71,0x31,0x2a,0x2b,0x2b,0x31,0x72,0xe4,0x48,0x96,0x3d,0x64,0x2a, 0x32,0x67,0xcb,0xe8,0x2e,0x47,0x10,0xe1,0x5f,0xd7,0xce,0x9d,0x3b,0xf5,0x65,0xcb, 0x96,0x21,0x12,0x89,0x30,0xa0,0x1d,0x31,0x62,0x4,0x1e,0x7a,0xe8,0x21,0x78,0xbd, 0x5e,0x1c,0x39,0x72,0x4,0x2f,0xbd,0xf4,0x12,0xa3,0x5c,0x86,0x8a,0x96,0xca,0x17, 0x2c,0xac,0xb4,0x1a,0x17,0xa,0x16,0x66,0x8b,0xf,0x7a,0xfc,0x29,0x53,0xa6,0x60, 0xde,0xbc,0x79,0x6,0xdb,0x7b,0x4d,0xd3,0x50,0x5b,0x5b,0x8b,0x96,0x96,0x16,0x56, 0x3,0x24,0x90,0x91,0x24,0x9,0x73,0xe7,0xce,0xc5,0xbd,0xf7,0xde,0x2b,0xa5,0x8f, 0x1b,0x5b,0xb4,0x67,0x83,0xc5,0x15,0xf,0x2e,0x99,0xe6,0xd,0x8b,0x0,0xfc,0x5f, 0x7c,0xf1,0x45,0xcf,0xf9,0xf3,0xe7,0xd1,0xd6,0xd6,0x86,0x9e,0x9e,0x1e,0x44,0xa3, 0x51,0x43,0xdb,0x21,0x71,0xb5,0xb4,0xb3,0xa2,0x53,0xbe,0x45,0xd1,0xbc,0x70,0x5b, 0x19,0xfb,0x65,0x9b,0xab,0x6d,0x5,0x2c,0x66,0x8b,0x75,0xb2,0xdd,0xa0,0x19,0xd3, 0x64,0x83,0x42,0x59,0x3,0x9,0xce,0x92,0xc9,0x24,0x4,0x41,0x60,0x5d,0x62,0xa1, 0x50,0x88,0xe6,0xa2,0x77,0x55,0x55,0x55,0x95,0x93,0xaf,0x52,0xbe,0x9f,0x57,0xa6, 0x2c,0xee,0x4a,0xd9,0x4c,0x6c,0xde,0xbc,0x59,0x5f,0xbd,0x7a,0x35,0x12,0x89,0x4, 0xbb,0xcd,0xb8,0x71,0xe3,0xb0,0x7e,0xfd,0x7a,0x78,0x3c,0x1e,0xec,0xdd,0xbb,0x17, 0xaf,0xbe,0xfa,0x2a,0x64,0x59,0x1e,0xf2,0x1a,0x46,0xa6,0x2c,0xe3,0x42,0xc0,0x22, 0x17,0x2d,0x45,0x97,0xb9,0xdd,0x6e,0xd6,0xbc,0x40,0xef,0x79,0xfa,0xf4,0xe9,0xa8, 0xa9,0xa9,0x61,0xa2,0x57,0x1a,0x7f,0xfb,0xe9,0xa7,0x9f,0x32,0x7b,0x10,0xba,0x2f, 0x6d,0xb2,0xa6,0x4d,0x9b,0x86,0xbf,0xfe,0xeb,0xbf,0x26,0xb5,0xb7,0x6d,0x9,0x62, 0x83,0xc5,0x95,0x91,0x59,0xe4,0x4b,0x5b,0x71,0x62,0x30,0x81,0x16,0xc6,0xf4,0x65, 0xce,0xdd,0xbb,0x77,0x7f,0xbd,0xaa,0xaa,0xea,0x8d,0x8e,0x8e,0xe,0x74,0x76,0x76, 0x32,0x23,0x3c,0x9a,0xc4,0x66,0x9e,0x66,0xc6,0x2b,0x6c,0xf9,0xb1,0x97,0x99,0xdc, 0x60,0x89,0xfb,0xe5,0x33,0x14,0x3e,0x53,0xe1,0x41,0xc1,0xfc,0xc7,0x7b,0x35,0x11, 0x1d,0xe5,0x72,0xb9,0xe0,0xf5,0x7a,0x51,0x50,0x50,0x0,0xbf,0xdf,0x8f,0xf2,0xf2, 0x72,0xf8,0xfd,0x7e,0x54,0x56,0x56,0xfa,0x1,0x24,0x78,0x6a,0x20,0x93,0x8e,0x21, 0x1f,0x4a,0xef,0x4a,0xa2,0xa4,0xcc,0x83,0xb9,0x36,0x6c,0xd8,0xa0,0xae,0x5f,0xbf, 0xde,0x40,0xdf,0x4d,0x9f,0x3e,0x1d,0xf7,0xdd,0x77,0x1f,0x3c,0x1e,0xf,0x76,0xed, 0xda,0x85,0xd7,0x5e,0x7b,0x6d,0x48,0x35,0x18,0xd9,0xb2,0x8c,0x4c,0xe6,0x83,0x56, 0xe,0xb4,0xf9,0x88,0xf7,0xf8,0xe3,0x93,0xf4,0x13,0xb4,0x9,0x22,0x3d,0xd,0x89, 0x5c,0xa7,0x4d,0x9b,0x86,0x79,0xf3,0xe6,0x31,0xc7,0x5e,0x52,0xeb,0x93,0x16,0x83, 0xee,0x47,0x9b,0x25,0x5d,0xd7,0x31,0x69,0xd2,0x24,0xfc,0xdd,0xdf,0xfd,0x5d,0x81, 0xae,0xeb,0xbd,0xf6,0xa,0x65,0x83,0xc5,0x15,0x3,0x22,0x26,0x2a,0xca,0xd2,0xa6, 0x60,0xa0,0x94,0x8a,0x20,0x8,0x12,0x0,0x4f,0x43,0x43,0xc3,0x7f,0x3a,0x1c,0x8e, 0xbf,0x8f,0x46,0xa3,0xcc,0x7,0x89,0xda,0x4b,0x69,0xb7,0x4f,0x94,0x46,0xbe,0x73, 0xb8,0xad,0x82,0xcf,0x5c,0x9c,0x4e,0x27,0x5c,0x2e,0x17,0x1b,0xc2,0x14,0xa,0x85, 0x10,0x8,0x4,0x10,0x8,0x4,0xba,0xaa,0xaa,0xaa,0x46,0x3,0x90,0x1,0x24,0xf3, 0x1d,0x8d,0x99,0x4d,0xd3,0x92,0xaf,0xb6,0xe1,0x4a,0x0,0xe,0xbe,0xf1,0x41,0x10, 0x4,0xf1,0xa7,0x3f,0xfd,0xa9,0xfa,0xc3,0x1f,0xfe,0xd0,0xb0,0x48,0xcf,0x9a,0x35, 0xb,0xab,0x57,0xaf,0x86,0x28,0x8a,0xf8,0xe0,0x83,0xf,0xb0,0x79,0xf3,0xe6,0x21, 0x7f,0x9d,0x7c,0xb1,0xdb,0xaa,0x4e,0x91,0xad,0x9e,0x91,0xaf,0xd2,0x3b,0x5b,0xe6, 0x41,0xd9,0x33,0x7f,0x7c,0x4e,0x9b,0x36,0xd,0x73,0xe7,0xce,0x35,0xcc,0xb1,0x77, 0x38,0x1c,0x38,0x76,0xec,0x18,0xea,0xeb,0xeb,0xd,0x5d,0x52,0xb4,0x39,0x1a,0x31, 0x62,0x4,0xee,0xbd,0xf7,0x5e,0xc3,0x7c,0x12,0x3b,0x6c,0xb0,0xb0,0xc3,0x7a,0x61, 0x72,0x2,0x70,0x0,0x70,0x6d,0xdc,0xb8,0x71,0xdc,0x82,0x5,0xb,0xfe,0xdd,0xe5, 0x72,0x2d,0x37,0x4f,0x69,0x23,0x9a,0x8b,0xcf,0x42,0x68,0xd1,0xd0,0x75,0xbd,0x2e, 0x1e,0x8f,0xff,0xf9,0x93,0x4f,0x3e,0x79,0xf6,0x9e,0x7b,0xee,0x39,0x96,0x6,0x2, 0xc5,0x1e,0x4a,0x73,0x61,0x59,0x24,0x9d,0xfe,0xf3,0x3f,0xff,0xb3,0xf6,0xb3,0x9f, 0xfd,0x8c,0xd1,0x4d,0x4e,0xa7,0x13,0xb,0x17,0x2e,0xc4,0x8a,0x15,0x2b,0xa0,0x28, 0xa,0xde,0x7f,0xff,0x7d,0xbc,0xf9,0xe6,0x9b,0x6,0x70,0xa7,0xef,0x6e,0x30,0xbd, 0xa5,0xcc,0x56,0x20,0xd9,0x80,0x63,0xa0,0xc3,0x93,0xcc,0x99,0x70,0x36,0x9b,0x10, 0x7e,0x16,0x7b,0x75,0x75,0x35,0x66,0xcf,0x9e,0xcd,0xe6,0xa4,0x7b,0x3c,0x1e,0x88, 0xa2,0x88,0x93,0x27,0x4f,0xe2,0xd0,0xa1,0x43,0xec,0xf8,0x25,0x37,0x68,0x5d,0xd7, 0x51,0x5c,0x5c,0x8c,0x7,0x1f,0x7c,0x10,0x23,0x47,0x8e,0x14,0xf8,0x4c,0xd6,0x6a, 0x9a,0xe6,0x95,0xb4,0xf1,0xb0,0xc1,0xc2,0x8e,0xb,0x5e,0x8c,0x2c,0x68,0x1a,0x31, 0xd7,0xc2,0x9e,0x8b,0xf2,0xc9,0x56,0x1f,0xb0,0xfb,0xd8,0xf3,0xfa,0x6e,0x44,0x8e, 0x5a,0xa4,0x45,0x8a,0xb5,0x78,0xae,0x5f,0xbf,0x5e,0x79,0xfa,0xe9,0xa7,0xd,0x20, 0x70,0xd3,0x4d,0x37,0xe1,0xc6,0x1b,0x6f,0x84,0xc3,0xe1,0xc0,0xf6,0xed,0xdb,0xf1, 0xd6,0x5b,0x6f,0x19,0xb2,0x3c,0xa2,0xa7,0x6,0x5b,0xb8,0x67,0x6,0xb,0xab,0xd3, 0x6c,0x36,0x20,0x56,0x34,0x95,0x19,0x2c,0x32,0x65,0x19,0xfc,0x6c,0x73,0x52,0x70, 0xcf,0x98,0x31,0x83,0xd,0x50,0x52,0x55,0x95,0xd1,0x4f,0xcd,0xcd,0xcd,0xa8,0xab, 0xab,0x63,0x1d,0x75,0xfc,0xc6,0xa7,0xb0,0xb0,0x10,0x6b,0xd6,0xac,0xc1,0xe4,0xc9, 0x93,0x5,0x2b,0x5a,0xd0,0xce,0x2c,0xec,0xf8,0x4a,0x53,0x5f,0xb9,0xc0,0x20,0x1f, 0xa,0x28,0xd3,0x7d,0xec,0xb8,0x60,0xc0,0x60,0x63,0x7d,0xd3,0x80,0xe1,0xbb,0xf3, 0xce,0x3b,0x23,0x5b,0xb7,0x6e,0x65,0x2,0x4d,0xa7,0xd3,0x89,0x3b,0xef,0xbc,0x13, 0x35,0x35,0x35,0x0,0x80,0x77,0xdf,0x7d,0x17,0xdb,0xb7,0x6f,0x37,0x64,0x13,0xe6, 0x61,0x4f,0x17,0x2,0xc,0x7c,0xc6,0x62,0x5,0x1a,0x66,0x80,0xb0,0x2,0x8b,0x4c, 0xa0,0x91,0x8b,0x8e,0xca,0x95,0x5d,0x50,0x96,0x40,0x9f,0xb,0x1,0x6,0x0,0x6, 0xe,0x92,0x24,0xe1,0xcc,0x99,0x33,0x38,0x78,0xf0,0xa0,0xc1,0x43,0x8c,0xe8,0x2c, 0xaf,0xd7,0x8b,0x7b,0xee,0xb9,0x7,0x35,0x35,0x35,0x34,0x38,0x49,0xcd,0x67,0xa3, 0xf3,0x97,0xbe,0x19,0xb2,0xc1,0xc2,0x8e,0x1,0x2d,0xf8,0xb9,0xac,0xba,0x33,0x65, 0x2d,0x76,0xe4,0xfd,0x3d,0x38,0x75,0x5d,0x57,0x78,0x90,0x48,0x7f,0x94,0x7c,0x61, 0x3f,0xb8,0x64,0xc9,0x92,0x9e,0x9d,0x3b,0x77,0xb2,0xc5,0xdf,0xe5,0x72,0xe1,0xde, 0x7b,0xef,0x45,0x75,0x75,0x35,0x92,0xc9,0x24,0xfe,0xef,0xff,0xfe,0xf,0xef,0xbc, 0xf3,0xe,0x80,0x54,0xcb,0xb1,0x79,0x9c,0xed,0x85,0x80,0x45,0xb6,0xaf,0x35,0x93, 0xe1,0x60,0x26,0x1a,0x2a,0x53,0x1,0x3c,0x5b,0x6b,0x6d,0x2e,0x1a,0x8a,0xba,0xff, 0x12,0x89,0x4,0x24,0x49,0xc2,0xcc,0x99,0x33,0x31,0x63,0xc6,0xc,0x70,0xc7,0x25, 0x2,0x81,0x0,0x3a,0x3a,0x3a,0xf0,0xe1,0x87,0x1f,0x22,0x99,0x4c,0xb2,0x51,0xad, 0x7c,0x9d,0x6d,0xf9,0xf2,0xe5,0xb8,0xf6,0xda,0x6b,0x79,0xf1,0x9e,0x65,0xe1,0xee, 0x72,0x12,0x75,0xe,0x66,0xd8,0xc3,0x8f,0xbe,0xc2,0xbb,0x56,0xab,0x3,0x3e,0x17, 0x80,0x64,0xbb,0x9f,0x4d,0x33,0x5d,0x78,0x98,0xe9,0xe,0x5a,0xa4,0x78,0xd1,0x98, 0xae,0xeb,0xbd,0x8d,0x8d,0x8d,0x5b,0x97,0x2d,0x5b,0xb6,0xfc,0xb3,0xcf,0x3e,0x63, 0xca,0xf6,0x8d,0x1b,0x37,0xc2,0xe5,0x72,0x61,0xe2,0xc4,0x89,0xb8,0xe5,0x96,0x5b, 0xa0,0x69,0x1a,0xde,0x7b,0xef,0x3d,0x6,0x14,0x17,0xcb,0x88,0x32,0x9f,0xeb,0xcd, 0x22,0x4b,0xf3,0xe5,0x14,0xbc,0x2d,0x7f,0x36,0x8b,0xfe,0x6c,0xde,0x65,0xfc,0x6b, 0x52,0x55,0x15,0x4e,0xa7,0x13,0x91,0x48,0x84,0xd9,0x9c,0xef,0xdf,0xbf,0x1f,0x0, 0xc,0x80,0x11,0xe,0x87,0xe1,0xf7,0xfb,0xb1,0x78,0xf1,0x62,0xec,0xdb,0xb7,0xf, 0xdd,0xdd,0xdd,0x70,0xbb,0xdd,0xec,0xb9,0x62,0xb1,0x18,0xb6,0x6c,0xd9,0x82,0x48, 0x24,0xa2,0x23,0x55,0xcb,0xa3,0xcd,0xb5,0x66,0xb5,0x31,0xfa,0x2a,0x6c,0x8e,0xec, 0xcc,0xc2,0x8e,0xb,0xa2,0xad,0xec,0x18,0xbc,0xcf,0x99,0xb7,0x32,0xb7,0xb2,0xbe, 0x6f,0x6c,0x6c,0x54,0x17,0x2e,0x5c,0x88,0xc6,0xc6,0x46,0x46,0x39,0x5,0x2,0x1, 0x3c,0xf4,0xd0,0x43,0x18,0x31,0x62,0x4,0xe2,0xf1,0x38,0xde,0x7a,0xeb,0x2d,0x7c, 0xf0,0xc1,0x7,0x83,0x3e,0x2b,0x25,0x53,0x86,0x91,0x49,0x77,0x61,0x76,0xaf,0xcd, 0xd7,0x4f,0x2a,0x57,0xcd,0x82,0x5a,0x68,0x5d,0x2e,0x17,0xd3,0xeb,0x24,0x93,0x49, 0xb8,0x5c,0x2e,0x5c,0x7d,0xf5,0xd5,0x98,0x31,0x63,0x86,0x61,0xe8,0x18,0x5d,0xbf, 0x6b,0xd7,0x2e,0x74,0x75,0x75,0xb1,0x59,0x33,0x84,0x3,0x6e,0xb7,0x1b,0x8b,0x17, 0x2f,0xc6,0x8a,0x15,0x2b,0x5c,0x56,0x1a,0x9f,0xaf,0xd2,0x6f,0xc2,0x6,0xb,0x3b, 0xbe,0x14,0x1d,0x65,0x75,0x1f,0x9b,0x7a,0xba,0xa8,0x40,0x61,0xe9,0x59,0x65,0x3e, 0x7f,0xe8,0xd0,0x21,0x6d,0xe9,0xd2,0xa5,0xe8,0xe8,0xe8,0x60,0x8b,0x74,0x51,0x51, 0x11,0xd6,0xaf,0x5f,0x8f,0xaa,0xaa,0x2a,0xc4,0xe3,0x71,0x6c,0xdb,0xb6,0xd,0x1f, 0x7d,0xf4,0xd1,0x90,0xdb,0xcb,0x67,0x9a,0xba,0x97,0xad,0x43,0x2a,0xd3,0x4,0xbe, 0x5c,0x34,0x94,0xd9,0x3b,0x8a,0x54,0xde,0x54,0xc7,0x50,0x14,0x5,0x4e,0xa7,0x13, 0x73,0xe6,0xcc,0x61,0x63,0x59,0x49,0xb8,0x47,0xb6,0xf6,0x7b,0xf6,0xec,0x41,0x4b, 0x4b,0xb,0xbc,0x5e,0xaf,0xa1,0x5b,0x4a,0x14,0x45,0xcc,0x9d,0x3b,0x17,0x6b,0xd6, 0xac,0x71,0xc3,0xd4,0xdd,0xf7,0x55,0x2,0xb,0xd1,0xfe,0x79,0x7e,0xf5,0x16,0xa3, 0x4c,0xdc,0x2b,0x37,0xaf,0x58,0x1f,0xe8,0xfd,0x73,0xdd,0xcf,0x8e,0xbc,0x69,0x1e, 0x2a,0x66,0x13,0x20,0x38,0x9,0x3c,0xac,0x44,0x88,0x33,0x66,0xcc,0x70,0x6c,0xd9, 0xb2,0x85,0xe9,0x6,0x0,0xa0,0xa3,0xa3,0x3,0x2f,0xbf,0xfc,0x32,0xda,0xdb,0xdb, 0xe1,0x74,0x3a,0xb1,0x7c,0xf9,0x72,0x2c,0x58,0xb0,0xe0,0x92,0xcc,0x21,0x31,0x6b, 0x76,0x78,0xdf,0x32,0x3a,0x6f,0x3e,0x35,0x8b,0x37,0xf9,0x3f,0xb3,0xd0,0x93,0xf4, 0x41,0x66,0xf1,0x27,0xaf,0x78,0x27,0xa0,0xd0,0x75,0x1d,0xfb,0xf6,0xed,0xc3,0xe7, 0x9f,0x7f,0xe,0x20,0x55,0x9f,0xa0,0xdb,0x69,0x9a,0x86,0x79,0xf3,0xe6,0x61,0xcc, 0x98,0x31,0x88,0xc5,0x62,0xcc,0x5d,0x40,0x96,0x65,0xa8,0xaa,0x8a,0x3d,0x7b,0xf6, 0xe0,0xe9,0xa7,0x9f,0x4e,0x0,0x70,0x72,0x19,0xdf,0x57,0x6b,0xed,0xb0,0x7f,0xdf, 0x76,0xd8,0x71,0xe5,0x65,0x1e,0x44,0x45,0xd1,0x2e,0x77,0xcb,0x96,0x2d,0xfa,0x3d, 0xf7,0xdc,0x3,0x59,0x96,0x19,0x28,0x4c,0x9e,0x3c,0x19,0x6b,0xd6,0xac,0x81,0xcf, 0xe7,0x83,0x2c,0xcb,0xd8,0xb2,0x65,0xb,0xf6,0xec,0xd9,0x63,0x98,0x95,0x31,0xd8, 0x6d,0xb5,0x7c,0x86,0x41,0xb,0x74,0xbe,0x9e,0x52,0x3,0x11,0xf0,0x99,0x29,0x2a, 0x2b,0xb7,0x5a,0x7a,0x6c,0x4d,0xd3,0xb0,0x68,0xd1,0x22,0x4c,0x9e,0x3c,0x19,0xaa, 0xaa,0x32,0x37,0x1,0xb2,0xc2,0x39,0x7c,0xf8,0x30,0x4e,0x9e,0x3c,0x69,0xb8,0x8c, 0x32,0x90,0x89,0x13,0x27,0x62,0xce,0x9c,0x39,0x77,0xce,0x9b,0x37,0x6f,0x33,0xf7, 0xfe,0xb2,0x9a,0x10,0xf2,0xb4,0xe2,0x95,0xac,0x39,0xb2,0xc1,0xc2,0xe,0x3b,0xae, 0x4c,0xd0,0xa0,0xae,0x29,0x27,0x0,0x15,0x0,0x36,0x6c,0xd8,0xa0,0xad,0x5f,0xbf, 0x9e,0x2d,0xca,0x24,0x4e,0x5b,0xb5,0x6a,0x15,0xe3,0xe8,0x5f,0x7b,0xed,0x35,0x7c, 0xf2,0xc9,0x27,0xec,0x71,0x86,0x4a,0x87,0xc1,0x83,0x6,0xf,0x14,0xb9,0x86,0x28, 0xe5,0x6b,0x6b,0x9e,0x4f,0xd7,0x14,0xdf,0x1e,0xb,0x0,0xf3,0xe7,0xcf,0xc7,0x94, 0x29,0x53,0x58,0x66,0x1,0x80,0x75,0x42,0x1d,0x39,0x72,0x4,0xc7,0x8f,0x1f,0x67, 0x54,0x14,0xa9,0xbe,0x1,0x60,0xe4,0xc8,0x91,0xb8,0xef,0xbe,0xfb,0x50,0x59,0x59, 0x29,0xf1,0xd,0x9,0x9c,0x2e,0x46,0x40,0xca,0x8a,0x7,0x56,0x23,0x98,0x6d,0x1a, 0xca,0xe,0x3b,0xec,0x18,0xa,0x90,0x10,0xd3,0x8b,0x90,0x92,0x5e,0x80,0x14,0xa2, 0x0,0xd7,0xaf,0x5f,0x2f,0x3e,0xf2,0xc8,0x23,0x86,0xdb,0x1f,0x3e,0x7c,0x18,0x6f, 0xbe,0xf9,0x26,0x53,0x36,0xaf,0x58,0xb1,0x2,0x73,0xe7,0xce,0x65,0xd7,0x53,0xf7, 0xd0,0x60,0x53,0x51,0x3c,0x25,0xc5,0xd3,0x4d,0x3c,0xe5,0x64,0xe5,0x1f,0x96,0xeb, 0xff,0x6c,0x7f,0x44,0x4b,0xf1,0xff,0x53,0x67,0x98,0xaa,0xaa,0xd8,0xbb,0x77,0x2f, 0x1a,0x1a,0x1a,0xc,0x33,0x61,0x34,0x4d,0x43,0x2c,0x16,0xc3,0xb4,0x69,0xd3,0x70, 0xd5,0x55,0x57,0x21,0x99,0x4c,0x42,0x51,0x14,0x66,0x7f,0xae,0x69,0x1a,0x9a,0x9a, 0x9a,0xf0,0xf4,0xd3,0x4f,0xa3,0xb9,0xb9,0x59,0x16,0xb8,0x20,0xa0,0x48,0x7f,0x1d, 0x1a,0xa9,0xbe,0xd3,0xef,0x5d,0xbd,0xd2,0xe9,0x2b,0xbb,0x75,0xd6,0xe,0x3b,0xae, 0xa0,0x30,0xd1,0x18,0xbc,0x87,0x98,0x90,0xde,0xb9,0xa,0x1d,0x1d,0x1d,0x3a,0x81, 0x86,0xa6,0x69,0xd8,0xb5,0x6b,0x17,0xbc,0x5e,0x2f,0x96,0x2d,0x5b,0x6,0x55,0x55, 0x71,0xfb,0xed,0xb7,0x43,0x51,0x14,0xd4,0xd6,0xd6,0x42,0x14,0x45,0x26,0xdc,0x1b, 0x4c,0x96,0xc1,0xfc,0xd8,0x7c,0x5b,0xad,0x19,0x50,0xcc,0xc0,0x42,0x59,0x9,0xdd, 0xc7,0x6c,0x6e,0x99,0x2d,0x9b,0xb1,0xa,0x5a,0xfc,0x93,0xc9,0x24,0x76,0xee,0xdc, 0x9,0x5d,0xd7,0x31,0x7e,0xfc,0x78,0xf6,0x7c,0x4e,0xa7,0x13,0xf1,0x78,0x1c,0x93, 0x26,0x4d,0x82,0xdb,0xed,0x46,0x5d,0x5d,0x1d,0xe2,0xf1,0x38,0xeb,0xb0,0x4a,0x26, 0x93,0x68,0x6f,0x6f,0xc7,0xaf,0x7e,0xf5,0x2b,0xd4,0xd7,0xd7,0x6b,0x93,0x26,0x4d, 0xe2,0x1,0x83,0xaf,0x35,0x29,0x26,0x9b,0x90,0x2b,0x9a,0xc6,0xb1,0x69,0x28,0x3b, 0xec,0xb8,0x42,0x33,0xc,0x8e,0xe2,0x60,0xb6,0x20,0x0,0x34,0x0,0x78,0xf0,0xc1, 0x7,0xb5,0x67,0x9e,0x79,0xc6,0x60,0x3b,0xbf,0x6c,0xd9,0x32,0x2c,0x5d,0xba,0x14, 0x9a,0xa6,0x41,0x51,0x14,0x6c,0xdc,0xb8,0x11,0x87,0xf,0x1f,0x1e,0xf2,0xc2,0x77, 0xb6,0x2e,0xa9,0x81,0x7a,0x49,0xe5,0x9a,0x87,0x61,0x45,0x43,0xa9,0xaa,0xca,0x1a, 0x2,0x34,0x4d,0x83,0xd7,0xeb,0xc5,0xfc,0xf9,0xf3,0x31,0x71,0xe2,0x44,0x56,0x34, 0xa7,0x9a,0x7,0xcd,0xf6,0xae,0xad,0xad,0x45,0x32,0x99,0x64,0x1e,0x53,0x34,0x99, 0xcf,0xe7,0xf3,0x61,0xf5,0xea,0xd5,0xb8,0xfa,0xea,0xab,0x5,0x1e,0x24,0x4c,0xef, 0xf7,0x2f,0xc2,0xe1,0xc0,0x6,0xb,0x3b,0xec,0xb8,0xf2,0x80,0xa2,0x5f,0xc1,0x54, 0x10,0x4,0x89,0xd7,0x1,0x8,0x82,0xe0,0x5e,0xbe,0x7c,0x79,0x7c,0xdb,0xb6,0x6d, 0x86,0xf9,0xe6,0xf7,0xdc,0x73,0xf,0x66,0xcf,0x9e,0xd,0x4d,0xd3,0x10,0x8f,0xc7, 0xb1,0x69,0xd3,0x26,0x1c,0x3e,0x7c,0x38,0xab,0x8d,0xc7,0x60,0x82,0x46,0xae,0x96, 0xda,0x81,0x6a,0x30,0xb2,0x1,0x5,0xd9,0x95,0xbb,0x5c,0x2e,0xc3,0x75,0xaa,0xaa, 0xc2,0xe5,0x72,0x61,0xf1,0xe2,0xc5,0x18,0x37,0x6e,0x1c,0xcb,0x3c,0x28,0x93,0xf1, 0xf9,0x7c,0x68,0x6d,0x6d,0xc5,0x81,0x3,0x7,0xd0,0xdb,0xdb,0x8b,0x60,0x30,0xc8, 0x66,0x7e,0x93,0xad,0xc8,0x8a,0x15,0x2b,0x70,0xcd,0x35,0xd7,0x8,0x16,0x40,0x2e, 0xe9,0xba,0x2e,0xff,0x25,0xb4,0xd8,0xda,0x60,0x61,0x87,0x1d,0x57,0x20,0x58,0xd0, 0x4e,0x35,0x83,0xe5,0xa,0x2d,0x50,0xbe,0x85,0xb,0x17,0x46,0x76,0xef,0xde,0xd, 0x41,0x10,0xd8,0x22,0xf8,0xc0,0x3,0xf,0x60,0xda,0xb4,0x69,0xac,0x3d,0xf4,0xf9, 0xe7,0x9f,0xc7,0xf1,0xe3,0xc7,0x87,0x6c,0x1e,0x46,0x26,0xc0,0xb0,0x12,0xeb,0x7d, 0x19,0xb0,0xb0,0xfa,0x9f,0x32,0x5,0x7a,0x7c,0x12,0xef,0x79,0x3c,0x1e,0x96,0x79, 0xb9,0xdd,0x6e,0x2c,0x5a,0xb4,0x8,0xa3,0x46,0x8d,0x32,0x18,0x35,0x12,0xc0,0xf4, 0xf4,0xf4,0xa0,0xb6,0xb6,0x16,0x9d,0x9d,0x9d,0x8,0x4,0x2,0x4c,0xa7,0x41,0x99, 0xc6,0xad,0xb7,0xde,0x8a,0x9b,0x6e,0xba,0x49,0x1c,0x88,0x55,0xfe,0x95,0x14,0x76, 0x81,0xdb,0xe,0x3b,0xae,0x3c,0xfa,0xc9,0xd2,0x7e,0x45,0x10,0x4,0x31,0xbd,0x48, 0xc9,0xe9,0xe2,0x77,0xf4,0xe9,0xa7,0x9f,0xfe,0xc1,0xd4,0xa9,0x53,0xa1,0x28,0xa, 0x73,0x5f,0x7d,0xf9,0xe5,0x97,0xd1,0xd0,0xd0,0xc0,0x16,0xe7,0x6f,0x7e,0xf3,0x9b, 0x98,0x30,0x61,0xc2,0x5,0x8d,0xcb,0xe5,0x17,0xff,0x81,0x5e,0xcf,0x17,0xbb,0xa9, 0x20,0xcd,0x17,0xa6,0x73,0x69,0x2d,0xf2,0xf9,0x23,0x2d,0x6,0x15,0xb8,0x65,0x59, 0x36,0xd4,0x6b,0x44,0x51,0x44,0x3c,0x1e,0xc7,0x7,0x1f,0x7c,0x80,0xc6,0xc6,0x46, 0x96,0x59,0x50,0x51,0x3b,0x1e,0x8f,0x23,0x14,0xa,0x61,0xde,0xbc,0x79,0x28,0x2b, 0x2b,0x43,0x38,0x1c,0x36,0xbc,0x4e,0x55,0x55,0xf1,0xc7,0x3f,0xfe,0x11,0x5b,0xb7, 0x6e,0x25,0x97,0x60,0xf2,0xf5,0xea,0xf7,0x9d,0xd9,0x99,0x85,0x1d,0x76,0xd8,0x71, 0xd9,0x50,0x54,0x3c,0x1d,0x72,0xe2,0xc4,0x9,0xfd,0xd6,0x5b,0x6f,0xc5,0xf1,0xe3, 0xc7,0xd9,0xed,0x7c,0x3e,0x1f,0xbe,0xf3,0x9d,0xef,0xa0,0xb2,0xb2,0x92,0x89,0xcf, 0x5e,0x7a,0xe9,0x25,0xd4,0xd7,0xd7,0x1b,0x16,0x76,0xf3,0xec,0xf5,0xc1,0xd6,0x62, 0x98,0xdb,0x66,0xcd,0x97,0x9b,0xdd,0x6a,0xcd,0xa,0xef,0x6c,0x9a,0x8c,0x4c,0x76, 0x21,0xfc,0xe5,0xa4,0xfe,0xbe,0xf6,0xda,0x6b,0x31,0x76,0xec,0x58,0x6,0x2e,0xbc, 0x33,0xad,0x2c,0xcb,0xa8,0xab,0xab,0x43,0x73,0x73,0x33,0x53,0x7b,0xf3,0xea,0xf1, 0xf9,0xf3,0xe7,0x63,0xd5,0xaa,0x55,0x6e,0x5d,0xd7,0x93,0xf9,0xba,0xd5,0x5e,0x9, 0x59,0x87,0xd,0x16,0x76,0xd8,0xf1,0x97,0x7,0x18,0xfd,0x7a,0xfa,0xf,0x1d,0x3a, 0xa4,0xdf,0x78,0xe3,0x8d,0x68,0x6d,0x6d,0x65,0xba,0x81,0x82,0x82,0x2,0x7c,0xf7, 0xbb,0xdf,0x45,0x28,0x14,0x62,0xbb,0xed,0x17,0x5e,0x78,0x1,0x47,0x8f,0x1e,0x65, 0x5c,0xfe,0x60,0xe,0x4d,0xb2,0xca,0x38,0xac,0xa,0xde,0x99,0xa8,0x28,0xab,0xd9, 0xde,0xd9,0x74,0x19,0x56,0x60,0x61,0x16,0xef,0x51,0x77,0x96,0xdf,0xef,0xc7,0xc2, 0x85,0xb,0x31,0x7a,0xf4,0x68,0x43,0xf6,0x41,0x14,0x96,0xae,0xeb,0x38,0x78,0xf0, 0x20,0x4e,0x9d,0x3a,0x5,0x9f,0xcf,0x67,0x78,0x2c,0xa7,0xd3,0x89,0xa9,0x53,0xa7, 0x62,0xdd,0xba,0x75,0x1,0x5d,0xd7,0x23,0x3c,0x70,0x9b,0xb4,0x18,0x57,0x94,0x63, 0xad,0x4d,0x43,0xd9,0x61,0xc7,0x5f,0x20,0x50,0x50,0x4f,0x3f,0x2d,0x4a,0xd5,0xd5, 0xd5,0x8e,0xd7,0x5f,0x7f,0x1d,0x5,0x5,0x5,0xac,0x1d,0x35,0x1c,0xe,0xe3,0xd9, 0x67,0x9f,0x45,0x2c,0x16,0x63,0x8b,0xec,0xbd,0xf7,0xde,0x8b,0x49,0x93,0x26,0xb1, 0x59,0x19,0x43,0x1,0x14,0x3c,0x15,0x65,0xa5,0xc1,0xb0,0xb2,0xc,0xc9,0xa4,0xb9, 0x18,0x88,0xe,0x23,0x13,0xdd,0x5,0xa4,0x26,0x42,0xee,0xdc,0xb9,0x13,0xa7,0x4e, 0x9d,0x62,0xe0,0x40,0x80,0x16,0x8f,0xc7,0x21,0x8a,0x22,0x6a,0x6a,0x6a,0x30,0x69, 0xd2,0x24,0xc4,0xe3,0x71,0x3,0x65,0x95,0x4c,0x26,0xf1,0xd9,0x67,0x9f,0xe1,0xf1, 0xc7,0x1f,0xf,0xb,0x82,0x10,0xe0,0xb,0xde,0xdc,0x69,0x3f,0xf7,0x66,0xe1,0x62, 0xf0,0x80,0x36,0x58,0xd8,0x61,0x87,0x1d,0x79,0x2e,0xba,0xaa,0xc9,0x56,0x82,0x16, 0x20,0x7d,0xf1,0xe2,0xc5,0xe2,0xb,0x2f,0xbc,0xc0,0x8a,0xba,0xaa,0xaa,0xa2,0xbd, 0xbd,0x1d,0x2f,0xbc,0xf0,0x2,0x62,0xb1,0x18,0x44,0x51,0x84,0xcb,0xe5,0xc2,0x7d, 0xf7,0xdd,0x87,0x9,0x13,0x26,0x30,0x77,0x56,0xb6,0x58,0x88,0xe2,0x50,0xbd,0x7, 0xc3,0xe2,0x9f,0xe9,0x2f,0x93,0x97,0x54,0x2e,0xc0,0xe0,0x6b,0x19,0x56,0xff,0x53, 0x4b,0x6d,0x24,0x12,0xc1,0x47,0x1f,0x7d,0x84,0xa6,0xa6,0x26,0xb8,0x5c,0x2e,0xc8, 0xb2,0xcc,0xda,0x67,0xa3,0xd1,0x28,0x64,0x59,0x46,0x75,0x75,0x35,0xa6,0x4e,0x9d, 0x8a,0x44,0x22,0x61,0x78,0x6e,0x45,0x51,0xd0,0xd0,0xd0,0x80,0x9f,0xfe,0xf4,0xa7, 0xbd,0xd,0xd,0xd,0xbf,0xc8,0xc2,0x40,0x5d,0x31,0x26,0x9c,0x36,0xd,0x65,0x87, 0x1d,0x7f,0x99,0x19,0x6,0x3f,0x6d,0xcf,0x40,0x4b,0x3d,0xf3,0xcc,0x33,0xfa,0x77, 0xbe,0xf3,0x1d,0x3,0x1f,0x3f,0x6d,0xda,0x34,0xac,0x5a,0xb5,0x8a,0xd1,0x4f,0xaa, 0xaa,0xe2,0x85,0x17,0x5e,0xc0,0xb1,0x63,0xc7,0x18,0x4d,0x34,0x14,0x6b,0x85,0xd9, 0x1a,0x24,0x9b,0xcd,0x79,0x2e,0x1f,0x29,0x33,0x4d,0x65,0x1e,0xdd,0x6a,0x45,0x4f, 0xf1,0x16,0xe7,0xf4,0x59,0x4,0x83,0x41,0x2c,0x5d,0xba,0x14,0xc3,0x86,0xd,0x63, 0x1d,0x64,0x5e,0xaf,0x97,0x75,0x97,0x49,0x92,0x84,0x2f,0xbe,0xf8,0x2,0x9f,0x7d, 0xf6,0x19,0x54,0x55,0x85,0xdf,0xef,0x7,0xd0,0xe7,0x83,0x55,0x5a,0x5a,0x8a,0xb5, 0x6b,0xd7,0x62,0xf8,0xf0,0xe1,0x59,0xd,0x3c,0x2f,0x77,0x2a,0xca,0xce,0x2c,0xec, 0xb0,0xe3,0x2f,0xb,0x24,0x98,0x27,0x91,0x19,0x28,0xe8,0xba,0x7,0x1f,0x7c,0x50, 0xf8,0xf1,0x8f,0x7f,0xcc,0xee,0xa3,0x69,0x1a,0x3e,0xfd,0xf4,0x53,0x6c,0xdd,0xba, 0x95,0x81,0x82,0xdb,0xed,0xc6,0xea,0xd5,0xab,0x31,0x61,0xc2,0x4,0xc3,0x22,0x3e, 0x14,0x59,0x85,0x99,0x96,0xb2,0xb2,0x3,0x31,0x9f,0xe,0xd4,0xfa,0xc3,0x8a,0x8a, 0xa2,0x6e,0x29,0xb2,0xf6,0xa0,0xcc,0xaa,0xbb,0xbb,0x1b,0xef,0xbf,0xff,0x3e,0xce, 0x9e,0x3d,0xcb,0x40,0x80,0x32,0x31,0x7a,0x8c,0x71,0xe3,0xc6,0xa1,0xba,0xba,0x1a, 0x3e,0x9f,0xf,0x3d,0x3d,0x3d,0xd0,0x75,0x1d,0xb2,0x2c,0x43,0xd3,0x34,0xf4,0xf4, 0xf4,0xe0,0x89,0x27,0x9e,0xc0,0xb1,0x63,0xc7,0x74,0x8e,0x1e,0x14,0x2f,0x77,0xda, 0xc9,0xce,0x2c,0xec,0xb0,0xe3,0x2b,0x0,0x18,0x99,0x26,0x18,0xf2,0xe7,0x7f,0xf8, 0xc3,0x1f,0xea,0x8f,0x3e,0xfa,0xa8,0x61,0x28,0xd2,0x8d,0x37,0xde,0x88,0x9b,0x6f, 0xbe,0x99,0xcd,0xab,0x8e,0x44,0x22,0x78,0xe5,0x95,0x57,0xc,0x5d,0x52,0x43,0xfc, 0x5e,0xb2,0x1a,0xe,0x5a,0x5d,0x67,0x95,0x59,0xe4,0x1a,0x9e,0x64,0x55,0xf8,0xd6, 0x75,0x1d,0x7e,0xbf,0x9f,0x65,0x60,0x5,0x5,0x5,0xb8,0xee,0xba,0xeb,0x50,0x51, 0x51,0xc1,0x0,0x86,0x14,0xe1,0x2e,0x97,0xb,0x6e,0xb7,0x1b,0x67,0xce,0x9c,0xc1, 0x67,0x9f,0x7d,0x86,0x58,0x2c,0xc6,0x54,0xe2,0xf4,0x5a,0x7c,0x3e,0x1f,0xee,0xbf, 0xff,0x7e,0x5c,0x75,0xd5,0x55,0x1e,0x5d,0xd7,0x13,0x57,0x9a,0x50,0xcf,0x6,0xb, 0x3b,0xec,0xf8,0xb,0x4,0xa,0x8b,0x6e,0x1b,0x43,0x86,0x41,0xa,0xf0,0x75,0xeb, 0xd6,0xa9,0xcf,0x3c,0xf3,0x8c,0x81,0x62,0xba,0xfd,0xf6,0xdb,0xb1,0x74,0xe9,0x52, 0x44,0xa3,0x51,0xb8,0x5c,0x2e,0x84,0xc3,0x61,0x6c,0xdc,0xb8,0x11,0x47,0x8f,0x1e, 0xbd,0x64,0x80,0x61,0xd5,0x1d,0x65,0x75,0xca,0x2f,0xf8,0xbc,0xc8,0xcf,0xec,0x42, 0x9b,0xcd,0xda,0x1c,0x0,0xf3,0x81,0xe2,0xdd,0x66,0x35,0x4d,0x43,0x28,0x14,0xc2, 0x75,0xd7,0x5d,0x87,0xd2,0xd2,0x52,0x66,0xb,0xc2,0x8f,0x8e,0xf5,0x7a,0xbd,0x4c, 0xed,0x1d,0x8f,0xc7,0xe1,0x76,0xbb,0x59,0x3b,0x2e,0xdd,0xee,0xee,0xbb,0xef,0xc6, 0xbc,0x79,0xf3,0x9c,0x57,0x9a,0xb,0xad,0xd,0x16,0x76,0xd8,0xf1,0xd5,0x6,0x15, 0xf7,0x8a,0x15,0x2b,0xe2,0x9b,0x37,0x6f,0x36,0x50,0x4d,0x2b,0x57,0xae,0xc4,0x35, 0xd7,0x5c,0x83,0x70,0x38,0xc,0x8f,0xc7,0x83,0x78,0x3c,0x8e,0x17,0x5f,0x7c,0x11, 0xc7,0x8e,0x1d,0x33,0xf8,0x4d,0xf1,0xd4,0xd1,0x50,0xe9,0x30,0xf2,0x6d,0xad,0xcd, 0xa4,0xc3,0xc8,0xf6,0x7f,0xae,0x53,0x5d,0xd7,0x11,0xc,0x6,0x71,0xd3,0x4d,0x37, 0xa1,0xb4,0xb4,0x14,0xc9,0x64,0x92,0xb5,0xd3,0x2,0x60,0x6a,0xee,0x68,0x34,0x8a, 0x4f,0x3e,0xf9,0x4,0x9d,0x9d,0x9d,0xf0,0xfb,0xfd,0xfd,0x5a,0x75,0x33,0xa9,0xbd, 0x33,0x65,0x1b,0x97,0x43,0x16,0x62,0xd7,0x2c,0xec,0xb0,0xe3,0xab,0x7,0x14,0x4c, 0x51,0xac,0xeb,0x7a,0x62,0xf3,0xe6,0xcd,0xa1,0xeb,0xae,0xbb,0xce,0xb0,0xf0,0x6f, 0xdd,0xba,0x15,0x87,0xe,0x1d,0x42,0x20,0x10,0x40,0x22,0x91,0x80,0x24,0x49,0xac, 0xad,0x56,0xd7,0x75,0x46,0xd3,0xc,0x5,0x50,0x50,0x64,0xeb,0x8c,0xca,0x35,0x61, 0xef,0x62,0xb5,0xdb,0xa,0x82,0x80,0x70,0x38,0x8c,0x77,0xde,0x79,0x7,0xad,0xad, 0xad,0x2c,0x73,0xe0,0x3b,0xb3,0x64,0x59,0x46,0x20,0x10,0x40,0x4d,0x4d,0xd,0x2a, 0x2a,0x2a,0x10,0x8b,0xc5,0x58,0xb,0x72,0x32,0x99,0x4,0x0,0xbc,0xf5,0xd6,0x5b, 0xd8,0xb6,0x6d,0x9b,0x66,0x21,0xa2,0xe4,0x9d,0x84,0x2d,0xb3,0x45,0x1b,0x2c,0xec, 0xb0,0xc3,0x8e,0x21,0xcf,0x2e,0xd2,0x8b,0x70,0xcf,0xaf,0x7e,0xf5,0xab,0x1f,0xd0, 0x6c,0x6a,0x5d,0xd7,0x99,0x2b,0xed,0xb1,0x63,0xc7,0xe0,0xf5,0x7a,0x99,0x8f,0xd2, 0x7d,0xf7,0xdd,0x87,0x29,0x53,0xa6,0x40,0x51,0x14,0xb6,0x73,0x1f,0x8a,0xb0,0x1a, 0xc5,0x6a,0x6e,0xaf,0xcd,0xa6,0xd1,0xb0,0x2a,0x66,0x9b,0x5b,0x66,0xf3,0xb1,0x13, 0x21,0x40,0x8c,0x44,0x22,0x78,0xf7,0xdd,0x77,0xd1,0xde,0xde,0xce,0x66,0x85,0xf0, 0x96,0x25,0xb1,0x58,0xc,0xc1,0x60,0x10,0xb3,0x67,0xcf,0x46,0x59,0x59,0x19,0x14, 0x45,0x41,0x22,0x91,0x30,0x14,0xbe,0xff,0xfc,0xe7,0x3f,0x63,0xe3,0xc6,0x8d,0x9a, 0x20,0x8,0x52,0xfa,0x3d,0xf2,0x83,0x92,0x34,0x33,0x80,0xd8,0x34,0x94,0x1d,0x76, 0xd8,0x71,0xa9,0xc0,0x82,0xa6,0xed,0x89,0xba,0xae,0x6b,0x8d,0x8d,0x8d,0xfa,0xe2, 0xc5,0x8b,0xd1,0xd8,0xd8,0xc8,0x8a,0xde,0x45,0x45,0x45,0xb8,0xff,0xfe,0xfb,0x31, 0x62,0xc4,0x8,0x24,0x12,0x9,0xd6,0x1,0xf4,0xd2,0x4b,0x2f,0xe1,0xb3,0xcf,0x3e, 0x63,0xd4,0xb,0xed,0xba,0x7,0x7b,0x3d,0xe1,0x5b,0x6b,0xcd,0x5,0x6e,0xb3,0x11, 0xa1,0x15,0xd,0x95,0x89,0xb2,0xca,0x56,0xfc,0xb6,0xa2,0xac,0x24,0x49,0x82,0x2c, 0xcb,0x28,0x2b,0x2b,0xc3,0xcd,0x37,0xdf,0xc,0xbf,0xdf,0xcf,0x46,0xd5,0x52,0x17, 0x15,0xbd,0x1e,0x0,0xa8,0xab,0xab,0xc3,0x99,0x33,0x67,0xd8,0x88,0x5b,0x9f,0xcf, 0xc7,0x3e,0xbb,0xea,0xea,0x6a,0xac,0x5d,0xbb,0x36,0x0,0x20,0xa,0x40,0xe4,0x45, 0x95,0xfc,0x40,0xa5,0x4b,0x4d,0x45,0xd9,0x99,0x85,0x1d,0x76,0x7c,0x5,0xb3,0x9, 0x7e,0xee,0x2,0xed,0x62,0x47,0x8d,0x1a,0xe5,0xd8,0xb6,0x6d,0x1b,0x8a,0x8b,0x8b, 0xd9,0x42,0xd6,0xd9,0xd9,0x89,0xdf,0xfd,0xee,0x77,0xe8,0xec,0xec,0x64,0x45,0x5a, 0xb7,0xdb,0x8d,0xbb,0xee,0xba,0xb,0x93,0x26,0x4d,0x32,0x50,0x57,0x43,0x95,0x61, 0xd0,0xa9,0x99,0x46,0xa2,0x5d,0x7d,0x36,0x33,0xc1,0x81,0xa8,0xba,0xad,0x32,0xf, 0x7a,0xfe,0x78,0x3c,0xe,0x8f,0xc7,0x83,0xb6,0xb6,0x36,0xbc,0xf5,0xd6,0x5b,0x88, 0x44,0x22,0x10,0x45,0x91,0xd1,0x4c,0xe6,0xdb,0xd7,0xd4,0xd4,0x60,0xec,0xd8,0xb1, 0x8,0x87,0xc3,0x4c,0xe0,0x47,0xd9,0xc8,0xc1,0x83,0x7,0xf1,0xcb,0x5f,0xfe,0x32, 0xc,0xc0,0x83,0xf4,0x3c,0x12,0x7e,0xd2,0x1e,0x47,0x19,0x5e,0xd2,0x9d,0xbd,0x9d, 0x59,0xd8,0x61,0xc7,0x57,0xc,0x2c,0xcc,0x8b,0xe,0x2f,0xe0,0x3,0x80,0x9d,0x3b, 0x77,0xea,0xb7,0xdc,0x72,0xb,0xb3,0x1,0x1,0x80,0xaa,0xaa,0x2a,0xac,0x5b,0xb7, 0xe,0x5e,0xaf,0x17,0xf1,0x78,0x1c,0xc1,0x60,0x10,0xbd,0xbd,0xbd,0x78,0xf5,0xd5, 0x57,0x71,0xe4,0xc8,0x11,0xc3,0x2c,0xef,0x21,0x7a,0x1f,0xec,0x34,0xd7,0x10,0xa5, 0x81,0x14,0xbf,0xf3,0x99,0xed,0x4d,0xdd,0x4d,0xf4,0xfc,0xba,0xae,0xa3,0xa2,0xa2, 0x2,0xd7,0x5f,0x7f,0x3d,0x8a,0x8a,0x8a,0xd8,0xe7,0xe6,0xf1,0x78,0x90,0x4c,0x26, 0x19,0x8d,0xe7,0x72,0xb9,0x70,0xfc,0xf8,0x71,0x1c,0x3a,0x74,0x8,0x6e,0xb7,0x1b, 0x2e,0x97,0xb,0x92,0x24,0x41,0xd7,0x75,0x48,0x92,0x84,0xb2,0xb2,0x32,0x8c,0x1e, 0x3d,0x7a,0xd6,0x3d,0xf7,0xdc,0x73,0x28,0xd,0x1a,0x2,0x47,0x47,0xf5,0x1b,0xaa, 0x64,0x67,0x16,0x76,0xd8,0x61,0xc7,0x60,0xee,0xcc,0x75,0x53,0xf1,0xd4,0x0,0x14, 0x0,0xb0,0x78,0xf1,0x62,0xe7,0xa6,0x4d,0x9b,0xc,0x45,0xec,0xe6,0xe6,0x66,0x6c, 0xdc,0xb8,0x11,0xaa,0xaa,0xc2,0xeb,0xf5,0x22,0x1c,0xe,0xc3,0xef,0xf7,0x63,0xf5, 0xea,0xd5,0x98,0x3a,0x75,0x2a,0x54,0x55,0x1d,0x32,0x3b,0x10,0xca,0x2c,0x32,0xf9, 0x45,0xe5,0xb2,0x0,0xb1,0x9a,0xcd,0x3d,0x10,0xfb,0x73,0x1a,0xad,0x4a,0xe7,0x1d, 0xe,0x7,0x9a,0x9b,0x9b,0xb1,0x63,0xc7,0xe,0x74,0x74,0x74,0xc0,0xe1,0x70,0xc0, 0xe5,0x72,0xb1,0x4e,0xa9,0x78,0x3c,0xe,0x5d,0xd7,0x91,0x4c,0x26,0x31,0x6e,0xdc, 0x38,0x5c,0x7d,0xf5,0xd5,0xec,0x7f,0x7a,0x1c,0x59,0x96,0x71,0xf6,0xec,0x59,0xd4, 0xd7,0xd7,0xd7,0x36,0x35,0x35,0x29,0x16,0x3a,0x19,0x85,0x2c,0xcf,0x6d,0xb0,0xb0, 0xc3,0xe,0x3b,0x86,0x6a,0xa1,0xd5,0xf8,0xf3,0x16,0xa6,0x76,0xea,0x5f,0xfd,0xd5, 0x5f,0x89,0xbf,0xfe,0xf5,0xaf,0xd,0xbb,0xf7,0xfa,0xfa,0x7a,0x6c,0xda,0xb4,0x89, 0x15,0xbb,0x13,0x89,0x4,0x4,0x41,0x20,0xa1,0x99,0x41,0xdc,0x77,0xa9,0x41,0xc3, 0xaa,0x68,0x3d,0x10,0x83,0xc1,0x6c,0x7f,0x44,0x35,0x11,0x68,0xe8,0xba,0xe,0x97, 0xcb,0x85,0x96,0x96,0x16,0x7c,0xf0,0xc1,0x7,0x48,0x24,0x12,0x6c,0x7e,0x6,0x7d, 0x76,0x44,0x39,0xc9,0xb2,0x8c,0xf1,0xe3,0xc7,0x63,0xfa,0xf4,0xe9,0x0,0xc0,0xee, 0x4f,0xdd,0x52,0xdd,0xdd,0xdd,0x78,0xe6,0x99,0x67,0x50,0x5f,0x5f,0xaf,0xa7,0x69, 0x28,0x27,0x57,0xaf,0xb8,0xa4,0xba,0xc,0x9b,0x86,0xb2,0xc3,0xe,0x3b,0x2c,0xa9, 0x2a,0x41,0x10,0x84,0x5f,0xfc,0xe2,0x17,0xda,0x3f,0xfe,0xe3,0x3f,0x1a,0xae,0x5f, 0xb0,0x60,0x1,0x96,0x2f,0x5f,0xce,0xc0,0x81,0xdc,0x69,0x5f,0x7d,0xf5,0x55,0x1c, 0x3a,0x74,0xc8,0x40,0xcf,0xf0,0x45,0xef,0xa1,0xd0,0x61,0xe4,0xd2,0x60,0x64,0x9b, 0xf1,0x9d,0x4d,0xb8,0x97,0x4d,0x97,0xc1,0x5f,0xaf,0x28,0xa,0x86,0xf,0x1f,0x8e, 0xa5,0x4b,0x97,0xa2,0xa0,0xa0,0x0,0x89,0x44,0x82,0x5d,0x4f,0x9f,0x87,0x24,0x49, 0x70,0x38,0x1c,0x38,0x7b,0xf6,0x2c,0xea,0xea,0xea,0x18,0x45,0x45,0xaf,0xc7,0xe5, 0x72,0xc1,0xeb,0xf5,0xe2,0xce,0x3b,0xef,0xc4,0xcc,0x99,0x33,0x5,0x2b,0xfa,0xd0, 0x34,0xba,0x75,0x48,0xa,0xdf,0x4e,0xfb,0xa7,0x61,0x87,0x1d,0x76,0x58,0x50,0x55, 0xb4,0x0,0x9,0xe7,0xce,0x9d,0xd3,0x1f,0x7e,0xf8,0x61,0x36,0xdb,0xe2,0xe3,0x8f, 0x3f,0x86,0xcf,0xe7,0xc3,0x6d,0xb7,0xdd,0x86,0x48,0x24,0x2,0x0,0xf0,0x78,0x3c, 0x58,0xb5,0x6a,0x15,0x44,0x51,0x44,0x5d,0x5d,0xdd,0x90,0x2,0x5,0x9f,0x65,0x0, 0xa9,0xe2,0x32,0x4f,0x89,0xf1,0x4e,0xb2,0x24,0xac,0xe3,0xcf,0x9b,0x33,0x93,0x4c, 0x40,0x64,0xbe,0xcc,0xc,0x52,0x40,0x6a,0xc,0x6b,0x4b,0x4b,0xb,0x76,0xec,0xd8, 0x81,0x1b,0x6e,0xb8,0x1,0x3e,0x9f,0xcf,0xa0,0xd1,0xa0,0xd7,0x91,0x4c,0x26,0x31, 0x6a,0xd4,0x28,0x8,0x82,0x80,0x43,0x87,0xe,0x21,0x91,0x48,0xb0,0xda,0x86,0xae, 0xeb,0x8,0x87,0xc3,0x78,0xe5,0x95,0x57,0x90,0x4c,0x26,0xf5,0xf9,0xf3,0xe7,0x8b, 0x56,0x40,0x41,0xa7,0x56,0x66,0x91,0x76,0x66,0x61,0x87,0x1d,0x76,0xc,0x76,0x56, 0x61,0xa8,0x61,0xd0,0x22,0xf4,0xe0,0x83,0xf,0xea,0xcf,0x3e,0xfb,0x2c,0x6b,0x93, 0x5,0x80,0x65,0xcb,0x96,0xe1,0xc6,0x1b,0x6f,0x44,0x22,0x91,0x40,0x32,0x99,0x84, 0xdb,0xed,0x86,0xae,0xeb,0xd8,0xb8,0x71,0x23,0xea,0xea,0xea,0xc,0x8b,0xea,0x50, 0xad,0x33,0x66,0xb7,0xda,0x81,0x66,0x16,0x99,0x6,0x28,0x99,0xb,0xdc,0x66,0xb7, 0x5a,0xfe,0xf6,0xf4,0x3a,0xaa,0xaa,0xaa,0x70,0xe3,0x8d,0x37,0xb2,0x22,0x36,0xa9, 0xb7,0x65,0x59,0x86,0xdf,0xef,0x47,0x32,0x99,0x84,0x24,0x49,0xe8,0xed,0xed,0xc5, 0x27,0x9f,0x7c,0x82,0x44,0x22,0xc1,0x6e,0x23,0x49,0x12,0xb3,0x12,0x59,0xb6,0x6c, 0x19,0xae,0xbf,0xfe,0x7a,0x87,0x39,0x93,0xe0,0x6d,0x5b,0x78,0xf0,0xb0,0xc1,0xc2, 0xe,0x3b,0xec,0x18,0x4a,0xd0,0x90,0x74,0x5d,0x97,0x39,0x0,0x11,0xee,0xb8,0xe3, 0xe,0x65,0xcb,0x96,0x2d,0x0,0xfa,0xb4,0x15,0x69,0x9f,0x23,0x44,0xa3,0x51,0x83, 0xed,0xc5,0xab,0xaf,0xbe,0x8a,0xfd,0xfb,0xf7,0x1b,0x1e,0x73,0xa8,0x3a,0xa6,0x72, 0x1,0xc6,0x40,0x3a,0xa6,0xf2,0xed,0x90,0xe2,0x81,0xc6,0xe9,0x74,0x32,0xe7,0xda, 0x91,0x23,0x47,0xe2,0xa6,0x9b,0x6e,0xca,0x48,0x93,0xd1,0x6d,0x3b,0x3a,0x3a,0x50, 0x5b,0x5b,0x8b,0x64,0x32,0xc9,0x3a,0xad,0x3c,0x1e,0xf,0x34,0x4d,0x83,0x24,0x49, 0x58,0xba,0x74,0x29,0x6e,0xbb,0xed,0x36,0xd1,0x3c,0x32,0x77,0x28,0xbb,0xa4,0x6c, 0xb0,0xb0,0xc3,0xe,0x3b,0xf8,0x85,0xd6,0x40,0x67,0x98,0xac,0x26,0x7c,0x8b,0x16, 0x2d,0xa,0x7f,0xfc,0xf1,0xc7,0xac,0x20,0x4b,0x9a,0x8b,0x9a,0x9a,0x1a,0x84,0xc3, 0x61,0x66,0x6f,0x4e,0x19,0xc6,0xc1,0x83,0x7,0x19,0x15,0x34,0xc4,0xef,0x23,0xa3, 0xf1,0x60,0x36,0xb0,0x30,0x8b,0xfa,0x6,0xea,0x58,0x4b,0x9d,0x50,0xe4,0x48,0xab, 0x28,0xa,0x46,0x8c,0x18,0x81,0x5b,0x6e,0xb9,0x85,0xd1,0x5e,0x7c,0xe6,0x42,0x2, 0x3e,0xb7,0xdb,0x8d,0xee,0xee,0x6e,0xec,0xdd,0xbb,0x97,0x65,0x69,0x24,0xde,0x23, 0xa,0x6f,0xc1,0x82,0x5,0xb8,0xfb,0xee,0xbb,0x5d,0x4,0xe2,0xa6,0xf7,0x3b,0xe8, 0xa0,0x61,0x77,0x43,0xd9,0x61,0x87,0x1d,0x2c,0xd2,0xea,0x61,0x5e,0xb8,0xc7,0x4, 0x61,0xba,0xae,0x47,0xfe,0xfe,0xef,0xff,0x7e,0xd6,0x94,0x29,0x53,0xd8,0x62,0x9b, 0x48,0x24,0xf0,0xc6,0x1b,0x6f,0xe0,0xf8,0xf1,0xe3,0xf0,0xfb,0xfd,0x6c,0x47,0xad, 0xaa,0x2a,0x1e,0x78,0xe0,0x1,0xcc,0x9e,0x3d,0xdb,0xc0,0xd7,0xf,0xe1,0xfb,0x18, 0x90,0x67,0x14,0x2f,0xc4,0xcb,0x67,0xc2,0x5e,0xa6,0x69,0x7b,0xb2,0x2c,0x23,0x91, 0x48,0x0,0x0,0xcb,0xa2,0xce,0x9c,0x39,0x83,0x3f,0xff,0xf9,0xcf,0x90,0x65,0x99, 0x2d,0xfc,0xf4,0x19,0x11,0x60,0xc4,0x62,0x31,0x14,0x14,0x14,0x60,0xfe,0xfc,0xf9, 0x90,0x24,0x89,0xa9,0xe5,0x15,0x45,0x41,0x32,0x99,0x84,0xd3,0xe9,0xc4,0xde,0xbd, 0x7b,0xf1,0xdc,0x73,0xcf,0x25,0x5,0x41,0x70,0x73,0xdf,0x11,0x59,0xb6,0x28,0x7c, 0x4b,0xb4,0x9d,0x59,0xd8,0x61,0x87,0x1d,0x83,0xbd,0x23,0xcf,0xc9,0x87,0x37,0x37, 0x37,0xeb,0x8b,0x17,0x2f,0xc6,0x89,0x13,0x27,0x18,0xb5,0x14,0x8,0x4,0xb0,0x6e, 0xdd,0x3a,0x54,0x55,0x55,0xb1,0x85,0x8e,0x76,0xcd,0xdb,0xb7,0x6f,0xc7,0xfb,0xef, 0xbf,0x7f,0xa9,0xde,0x4f,0xc6,0x2c,0xc3,0x9c,0x71,0x64,0xb3,0x4,0xc9,0xe6,0x5a, 0xcb,0x4f,0xe1,0x93,0x24,0x9,0x0,0x58,0xbd,0xc1,0xed,0x76,0xb3,0x82,0xf6,0xa4, 0x49,0x93,0x40,0x86,0x8d,0xf4,0x1c,0x8a,0xa2,0xc0,0xed,0x76,0x33,0x9a,0xce,0xe9, 0x74,0x22,0x12,0x89,0x60,0xcf,0x9e,0x3d,0x88,0xc7,0xe3,0x6c,0x62,0x1f,0xdf,0x29, 0x35,0x7c,0xf8,0x70,0x7c,0xef,0x7b,0xdf,0xf3,0xeb,0xba,0x1e,0xe5,0x68,0x42,0xc, 0x66,0xbd,0xc2,0xce,0x2c,0xec,0xb0,0xc3,0xe,0xf3,0x8e,0xdc,0xac,0xb9,0x60,0xf6, 0x13,0xb4,0x8b,0x1d,0x36,0x6c,0x98,0xf0,0xc6,0x1b,0x6f,0xb0,0x21,0x40,0xe4,0xc4, 0xfa,0xc2,0xb,0x2f,0xa0,0xab,0xab,0x8b,0xd1,0x50,0xa4,0x4c,0xbe,0xe9,0xa6,0x9b, 0xb0,0x64,0xc9,0x92,0x4b,0xf5,0x7e,0x32,0x1a,0xd,0xe6,0x12,0xf6,0xd,0x54,0x7f, 0xc1,0x67,0xc,0xa4,0xab,0xa0,0xd9,0x5b,0xfc,0x54,0xf8,0x0,0x0,0x1f,0x60,0x49, 0x44,0x41,0x54,0xdc,0x5e,0xaf,0x17,0xd,0xd,0xd,0x78,0xef,0xbd,0xf7,0x58,0xb1, 0x5f,0x55,0x55,0x96,0x89,0x51,0x76,0x92,0x48,0x24,0xe0,0xf7,0xfb,0x31,0x67,0xce, 0x1c,0x78,0xbd,0x5e,0x24,0x12,0x9,0x36,0x7c,0x89,0x46,0xba,0x36,0x35,0x35,0xe1, 0xe7,0x3f,0xff,0x79,0xe4,0xc4,0x89,0x13,0xff,0x9b,0x6,0x75,0x66,0xd,0x62,0x67, 0x16,0x76,0xd8,0x61,0xc7,0xe5,0x96,0x81,0x88,0xef,0xbf,0xff,0xbe,0x4a,0xed,0xb3, 0xb4,0x8e,0xc,0x1b,0x36,0xc,0xeb,0xd6,0xad,0x83,0xcf,0xe7,0x43,0x32,0x99,0x64, 0xdd,0x41,0x2e,0x97,0xb,0x6f,0xbe,0xf9,0x26,0x3e,0xf8,0xe0,0x3,0x43,0x47,0x15, 0x7f,0x7e,0xb0,0x75,0x18,0xf4,0x7c,0xd9,0xb2,0xb,0x73,0x4d,0xc3,0xaa,0x2e,0x91, 0xe9,0xf2,0x4c,0x45,0x6f,0xfe,0x7a,0x4d,0xd3,0x30,0x61,0xc2,0x4,0x2c,0x5a,0xb4, 0x8,0x6e,0xb7,0x9b,0xe9,0x30,0x48,0x2d,0xcf,0x3f,0x4e,0x2c,0x16,0xc3,0xde,0xbd, 0x7b,0x11,0x89,0x44,0xe0,0xf5,0x7a,0xa1,0xeb,0x3a,0x33,0x31,0x14,0x4,0x1,0x25, 0x25,0x25,0x58,0xbb,0x76,0x2d,0xaa,0xaa,0xaa,0x1c,0x3c,0x58,0x58,0x74,0x4d,0x5d, 0x94,0x2e,0x29,0x3b,0xb3,0xb0,0xc3,0xe,0x3b,0x6,0x4,0x12,0xb4,0x20,0x2d,0x59, 0xb2,0x44,0x7c,0xf1,0xc5,0x17,0x59,0xf7,0x4e,0x9a,0xa2,0xc2,0xcb,0x2f,0xbf,0x6c, 0xe8,0xea,0xa1,0x5d,0xf3,0xed,0xb7,0xdf,0x8e,0x1b,0x6e,0xb8,0x81,0xd5,0x30,0xe8, 0x3a,0x72,0x66,0x1d,0x8a,0x8d,0x6b,0xbe,0x59,0x46,0xae,0xcc,0xe3,0xcb,0xce,0xc4, 0x10,0x45,0x11,0xf5,0xf5,0xf5,0xf8,0xf0,0xc3,0xf,0x11,0x8b,0xc5,0x58,0x16,0x46, 0xd6,0x20,0xbc,0x4a,0x3c,0x18,0xc,0x62,0xee,0xdc,0xb9,0x8,0x6,0x83,0xac,0xdb, 0x8c,0xae,0xd3,0x34,0xd,0xed,0xed,0xed,0x78,0xf2,0xc9,0x27,0x71,0xfc,0xf8,0x71, 0xd5,0x9c,0x61,0x58,0xd0,0x88,0xc2,0x85,0xce,0xc3,0xb0,0xc1,0xc2,0xe,0x3b,0xec, 0x18,0xc8,0x62,0xcb,0xef,0x60,0xf5,0x3b,0xee,0xb8,0x43,0x7c,0xfc,0xf1,0xc7,0xd, 0x93,0xe2,0x8e,0x1d,0x3b,0x86,0x57,0x5f,0x7d,0x95,0x81,0x1,0xd9,0x79,0x27,0x93, 0x49,0xdc,0x7a,0xeb,0xad,0xb8,0xe1,0x86,0x1b,0xc,0x8f,0x49,0x85,0xde,0xc1,0x2c, 0x80,0xe7,0x1a,0x94,0x94,0x9,0x0,0xcc,0x97,0x67,0x9b,0x7f,0x91,0x4f,0x11,0x9c, 0x3e,0xa3,0x86,0x86,0x6,0x7c,0xf8,0xe1,0x87,0x2c,0xb3,0x0,0x0,0x45,0x51,0x98, 0x35,0x88,0xd3,0xe9,0x44,0x32,0x99,0x84,0xc7,0xe3,0xc1,0x9c,0x39,0x73,0x18,0x60, 0xf0,0xaf,0x89,0x8a,0xe9,0xcf,0x3f,0xff,0x3c,0xe,0x1c,0x38,0x90,0xd5,0xc2,0xc5, 0x8a,0x62,0x1c,0x68,0xd8,0xa,0x6e,0x3b,0xec,0xb0,0xe3,0xcb,0x66,0x19,0xd4,0x66, 0x2b,0x74,0x77,0x77,0xeb,0xff,0xf4,0x4f,0xff,0xc4,0x28,0xa5,0xc3,0x87,0xf,0x63, 0xf3,0xe6,0xcd,0x58,0xb9,0x72,0x25,0x5b,0x4,0x69,0x41,0xbc,0xf5,0xd6,0x5b,0x1, 0x0,0xef,0xbe,0xfb,0xae,0x41,0x51,0x3d,0x14,0xdd,0x52,0xb4,0xd8,0xf2,0x14,0x14, 0x4f,0x83,0xf1,0xb4,0x15,0xad,0xad,0xbc,0xd2,0x9b,0x57,0x86,0xf3,0x93,0x2,0x33, 0x65,0x46,0xfc,0x65,0x64,0x61,0x4e,0x34,0x52,0x43,0x43,0x3,0x44,0x51,0xc4,0xb5, 0xd7,0x5e,0xb,0xb7,0xdb,0xcd,0x8c,0x5,0xc9,0x84,0x90,0xc4,0x79,0x6e,0xb7,0x1b, 0x73,0xe6,0xcc,0x61,0x94,0x14,0x3f,0xf7,0x9b,0xa6,0xf0,0xbd,0xf6,0xda,0x6b,0x48, 0x24,0x12,0xfa,0xbc,0x79,0xf3,0xa8,0x4b,0x4a,0xe4,0x32,0xd,0x21,0x9d,0x18,0x5c, 0x90,0xc8,0xc5,0x6,0xb,0x3b,0xec,0xb0,0x63,0x40,0x34,0x14,0x37,0x90,0x47,0xe5, 0x2e,0x13,0x5a,0x5b,0x5b,0xf5,0x87,0x1f,0x7e,0x98,0x2d,0xc0,0xbb,0x77,0xef,0x66, 0xb6,0x20,0xa4,0xf2,0x26,0x8f,0xa4,0x65,0xcb,0x96,0x41,0x14,0x45,0xbc,0xfb,0xee, 0xbb,0x86,0x19,0x15,0x43,0x1d,0x44,0xd,0xf1,0xa7,0x4,0x16,0x7c,0xbb,0x6f,0x36, 0x20,0xcb,0x4,0x32,0x56,0xc0,0x41,0xf5,0xe,0x45,0x51,0xe0,0xf1,0x78,0x70,0xf4, 0xe8,0x51,0xe8,0xba,0x8e,0x45,0x8b,0x16,0xb1,0xba,0x45,0x22,0x91,0x60,0x82,0x3c, 0x59,0x96,0xe1,0x74,0x3a,0x19,0x25,0xb5,0x67,0xcf,0x1e,0x44,0x22,0x11,0x83,0xc7, 0x14,0x15,0xc0,0x5f,0x7f,0xfd,0x75,0x44,0xa3,0x51,0xfd,0xba,0xeb,0xae,0x13,0x0, 0x90,0x78,0x8f,0xf4,0x17,0x17,0xac,0x86,0xb4,0xc1,0xc2,0xe,0x3b,0xec,0x18,0x10, 0xd,0xd5,0xb7,0x2e,0xa,0x0,0xe0,0x48,0xf7,0xf8,0xb,0xba,0xae,0xb,0x5d,0x5d, 0x5d,0xfa,0x13,0x4f,0x3c,0xc1,0x76,0xd2,0xef,0xbd,0xf7,0x1e,0x5c,0x2e,0x17,0x6e, 0xbe,0xf9,0x66,0xb6,0x18,0xd3,0x58,0xd1,0xdb,0x6e,0xbb,0xd,0xba,0xae,0x63,0xc7, 0x8e,0x1d,0x86,0x41,0x41,0x43,0xf4,0x3e,0xb2,0x2,0x46,0xb6,0xac,0x23,0xd7,0xeb, 0xb4,0xb2,0x6a,0xe7,0xbd,0xa3,0xe2,0xf1,0xb8,0xa1,0xb8,0xdd,0xd0,0xd0,0x0,0x87, 0xc3,0xc1,0x34,0x16,0xa2,0x28,0x22,0x91,0x48,0xc0,0xed,0x76,0x33,0xea,0x2a,0x1a, 0x8d,0xc2,0xeb,0xf5,0x62,0xde,0xbc,0x79,0xd8,0xb7,0x6f,0x1f,0x22,0x91,0x8,0x13, 0xfe,0x51,0x56,0xe2,0x72,0xb9,0xf0,0xf6,0xdb,0x6f,0xa3,0xb7,0xb7,0x97,0xba,0x9f, 0x45,0x12,0xea,0x71,0x7a,0x8c,0x2f,0xfd,0x21,0xdb,0xdd,0x50,0x76,0xd8,0x61,0xc7, 0x97,0xca,0x2e,0xb8,0xff,0x25,0x0,0x4a,0x7a,0x85,0xf2,0xae,0x5c,0xb9,0x32,0xba, 0x65,0xcb,0x16,0xd6,0x1a,0xa,0x0,0x2b,0x56,0xac,0xc0,0xfc,0xf9,0xf3,0x11,0x8b, 0xc5,0xc,0x1c,0xbd,0xdf,0xef,0xc7,0xfb,0xef,0xbf,0x8f,0x6d,0xdb,0xb6,0x5d,0xca, 0xf7,0xd3,0x4f,0xd1,0x4d,0x8b,0xbe,0xd9,0x47,0x2a,0x1f,0xd,0x46,0xae,0xce,0x28, 0x49,0x92,0xa0,0x28,0xa,0xeb,0x70,0xa2,0x8c,0x63,0xca,0x94,0x29,0x58,0xb0,0x60, 0x1,0x3,0x9,0x55,0x55,0xd9,0x79,0xf2,0x8c,0x72,0x38,0x1c,0x88,0xc7,0xe3,0xd8, 0xb5,0x6b,0x17,0x3,0x58,0xb2,0xc,0xa1,0xf7,0xe0,0x76,0xbb,0x31,0x7b,0xf6,0x6c, 0xdc,0x75,0xd7,0x5d,0x12,0xcd,0xc1,0x20,0xb1,0xa5,0xd,0x16,0x76,0xd8,0x61,0xc7, 0x50,0x2d,0xac,0x2,0xe7,0x4f,0x24,0xa4,0xd7,0x10,0xcd,0x74,0x79,0x70,0xf1,0xe2, 0xc5,0x3d,0x3b,0x77,0xee,0x64,0xbb,0x70,0x97,0xcb,0x85,0x55,0xab,0x56,0xe1,0xea, 0xab,0xaf,0x46,0x2c,0x16,0x33,0x38,0xc3,0x4a,0x92,0x84,0x8f,0x3e,0xfa,0x8,0xdb, 0xb6,0x6d,0xc3,0xa5,0x5a,0x8f,0x72,0xd9,0x9b,0x67,0x9a,0xeb,0x6d,0xd5,0x46,0x6b, 0x75,0x99,0xd9,0x3b,0x8a,0x3f,0x4f,0xcd,0x1,0x9a,0xa6,0x61,0xea,0xd4,0xa9,0x2c, 0xc3,0x0,0x52,0xc5,0x7f,0x32,0x22,0xe4,0x1f,0x2b,0x91,0x48,0xe0,0xa3,0x8f,0x3e, 0x42,0x3c,0x1e,0x87,0x24,0x49,0xac,0xe,0x22,0x49,0x12,0x6b,0x2a,0xb8,0xea,0xaa, 0xab,0xb0,0x76,0xed,0xda,0x80,0xae,0xeb,0x91,0x8b,0xd1,0x3e,0x6b,0x77,0x43,0xd9, 0x61,0x87,0x1d,0x3,0xa1,0x6f,0x74,0xfe,0x3c,0x27,0xda,0xe3,0x57,0xf9,0xf0,0x73, 0xcf,0x3d,0xf7,0xd8,0xb4,0x69,0xd3,0xd8,0xc2,0x9a,0x4c,0x26,0xf1,0xda,0x6b,0xaf, 0xe1,0xe8,0xd1,0xa3,0xf0,0x78,0x3c,0x6c,0x31,0x96,0x65,0x19,0xba,0xae,0x63,0xe1, 0xc2,0x85,0x58,0xbe,0x7c,0x39,0xcb,0x3a,0x0,0x18,0xce,0xf,0x76,0xf1,0x3b,0x5b, 0x3b,0x6d,0xae,0xcb,0x33,0x75,0x45,0x59,0xd9,0x84,0xd0,0x9c,0x70,0xfe,0xbe,0x8a, 0xa2,0x30,0xd,0xc5,0x91,0x23,0x47,0xb0,0x67,0xcf,0x1e,0xf6,0xb9,0x50,0x6,0x46, 0x60,0x42,0x8f,0xe7,0xf5,0x7a,0x31,0x7f,0xfe,0x7c,0x4,0x2,0x1,0xd6,0x4a,0xcb, 0x3f,0x7,0x0,0x7c,0xfa,0xe9,0xa7,0x78,0xe2,0x89,0x27,0xc2,0x82,0x20,0x84,0x38, 0xed,0x85,0xc8,0xd3,0x52,0xe6,0x8d,0x80,0x9d,0x59,0xd8,0x61,0x87,0x1d,0x43,0x9e, 0x7d,0x34,0x37,0x37,0xeb,0xd7,0x5c,0x73,0xd,0x4e,0x9f,0x3e,0xcd,0xa,0xbf,0xa1, 0x50,0x8,0xdf,0xfa,0xd6,0xb7,0x30,0x62,0xc4,0x8,0x44,0x22,0x11,0xb8,0x5c,0x2e, 0xb6,0x18,0x7a,0xbd,0x5e,0x7c,0xf8,0xe1,0x87,0xd8,0xba,0x75,0x2b,0xab,0x1b,0xd0, 0x22,0x4a,0x4a,0xf1,0xc1,0x5e,0xaf,0xcc,0x99,0x45,0x36,0x4b,0xf3,0x6c,0xae,0xb5, 0xd9,0xec,0x41,0xac,0x8c,0x9,0xcd,0xc2,0xbd,0x49,0x93,0x26,0xe1,0x9a,0x6b,0xae, 0x61,0xe2,0x46,0x52,0xc3,0x3,0xa9,0xba,0x87,0x2c,0xcb,0x8,0x6,0x83,0xe8,0xe8, 0xe8,0xc0,0xc1,0x83,0x7,0xd1,0xde,0xde,0x8e,0x60,0x30,0xc8,0x5e,0x33,0xdd,0xd6, 0xe1,0x70,0x60,0xf8,0xf0,0xe1,0xf8,0xfe,0xf7,0xbf,0x1f,0x4,0x10,0x4f,0xd3,0x52, 0x4e,0x13,0x3d,0x95,0x57,0xd6,0x61,0x83,0x85,0x1d,0x76,0xd8,0x31,0x28,0x60,0x21, 0x8,0x82,0xf4,0xe9,0xa7,0x9f,0x26,0xaf,0xbf,0xfe,0x7a,0x9c,0x3f,0x7f,0x9e,0x5d, 0x5f,0x5a,0x5a,0x8a,0x7,0x1f,0x7c,0x10,0x45,0x45,0x45,0x50,0x14,0x5,0xb2,0x2c, 0x33,0x6e,0xde,0xeb,0xf5,0x62,0xd7,0xae,0x5d,0xd8,0xb6,0x6d,0x1b,0x64,0x59,0x36, 0x14,0x9c,0x87,0x62,0xad,0x32,0xf,0x35,0xca,0xe5,0x56,0x6b,0xf6,0x95,0xca,0x5, 0x1e,0xd9,0xd4,0xde,0xb4,0xc8,0x93,0xee,0x64,0xfc,0xf8,0xf1,0x58,0xb4,0x68,0x91, 0xe1,0x32,0xea,0xa4,0xf2,0xf9,0x7c,0xec,0x73,0x8b,0x44,0x22,0xd8,0xbf,0x7f,0x3f, 0x7a,0x7a,0x7a,0xe0,0x76,0xbb,0x59,0x46,0x46,0x35,0x11,0x49,0x92,0xe0,0xf5,0x7a, 0xb1,0x7e,0xfd,0xfa,0xae,0xaa,0xaa,0xaa,0x12,0xde,0xeb,0xcb,0x44,0x1f,0x66,0x5, 0xd,0x1b,0x2c,0xec,0xb0,0xc3,0x8e,0x8b,0xa,0x14,0x3c,0x2d,0x25,0x8,0x82,0xb8, 0x73,0xe7,0x4e,0xf5,0xb6,0xdb,0x6e,0x43,0x4f,0x4f,0xf,0xbb,0x5d,0x45,0x45,0x5, 0xfe,0xe6,0x6f,0xfe,0x6,0x1e,0x8f,0x87,0x65,0x16,0x54,0xc8,0x75,0xbb,0xdd,0xd8, 0xbd,0x7b,0x37,0xb6,0x6c,0xd9,0xc2,0x34,0x1a,0x43,0xbd,0x4e,0x65,0xb2,0x37,0xcf, 0x7,0x2c,0x32,0xd,0x4f,0xe2,0x2f,0x37,0xf,0x4c,0xb2,0xaa,0x69,0xa8,0xaa,0x8a, 0x89,0x13,0x27,0x32,0x6b,0x10,0x6a,0x91,0x75,0xbb,0xdd,0x50,0x14,0xc5,0x60,0xfd, 0x11,0x89,0x44,0xb0,0x77,0xef,0x5e,0xd6,0x40,0xe0,0x72,0xb9,0x18,0x50,0x38,0x1c, 0xe,0xb8,0xdd,0x6e,0x48,0x92,0x84,0x7,0x1e,0x78,0x0,0xe3,0xc6,0x8d,0x13,0x38, 0xb0,0xa0,0xec,0x22,0xe7,0xa4,0x3d,0xbb,0x66,0x61,0x87,0x1d,0x76,0x5c,0xb4,0x48, 0xd7,0x31,0x74,0x41,0x10,0x1c,0xe9,0xff,0xb5,0x45,0x8b,0x16,0x89,0xbf,0xfd,0xed, 0x6f,0x59,0xad,0x2,0x0,0xce,0x9d,0x3b,0x87,0xdf,0xfc,0xe6,0x37,0x6c,0xd1,0x53, 0x14,0x85,0x75,0x9,0x25,0x12,0x9,0x2c,0x58,0xb0,0x0,0xdf,0xf8,0xc6,0x37,0x58, 0x71,0x97,0xdf,0xf5,0xf,0xd1,0xfb,0xb0,0xac,0x4d,0x64,0xaa,0x65,0xc,0xc4,0x2, 0x9d,0xfe,0x78,0xd3,0x41,0xbe,0xde,0x1,0x0,0xb2,0x2c,0x43,0x92,0x24,0x1c,0x3f, 0x7e,0x1c,0x3b,0x77,0xee,0x44,0x3c,0x1e,0x67,0x20,0x12,0x8f,0xc7,0x99,0x50,0x90, 0xea,0x15,0x81,0x40,0x0,0x73,0xe7,0xce,0x65,0xa3,0x59,0x15,0x45,0x61,0xd,0x4, 0xb2,0x2c,0x23,0x1e,0x8f,0x23,0x1e,0x8f,0xe3,0xc5,0x17,0x5f,0xc4,0xe1,0xc3,0x87, 0xf9,0x5a,0x93,0x4a,0xa7,0xf4,0x9d,0xd9,0x99,0x85,0x1d,0x76,0xd8,0x71,0x49,0x69, 0xa9,0xa7,0x9f,0x7e,0x5a,0x5f,0xbf,0x7e,0xbd,0xc1,0xd4,0x6f,0xfc,0xf8,0xf1,0xf8, 0xe6,0x37,0xbf,0xc9,0x5a,0x42,0x49,0xb4,0xa7,0x69,0x1a,0xa,0xa,0xa,0xb0,0x7f, 0xff,0x7e,0x6c,0xdc,0xb8,0x91,0x39,0xba,0x5e,0x82,0xd7,0x9e,0x31,0xc3,0xc8,0x54, 0xb7,0xe0,0x33,0x8,0xab,0x2c,0x23,0x9b,0xc5,0x39,0x9,0xf3,0xc8,0xda,0x9c,0x6, 0x29,0x8d,0x1f,0x3f,0x1e,0xb,0x17,0x2e,0x64,0xff,0xf3,0x19,0xd,0xbd,0x4e,0x49, 0x92,0x10,0x8d,0x46,0xb1,0x77,0xef,0x5e,0xf4,0xf4,0xf4,0xc0,0xe7,0xf3,0xb1,0xeb, 0xc9,0xa7,0x8b,0x6,0x2d,0x2d,0x5f,0xbe,0x1c,0x73,0xe7,0xce,0x65,0x6a,0x6f,0x70, 0xa3,0x74,0xed,0xcc,0xc2,0xe,0x3b,0xec,0x18,0xaa,0x5,0xd6,0x99,0x3e,0x75,0xf0, 0x9c,0xf8,0xba,0x75,0xeb,0x84,0x9f,0xfd,0xec,0x67,0x6c,0xe7,0xae,0xaa,0x2a,0x4e, 0x9c,0x38,0x81,0x4d,0x9b,0x36,0xb1,0x5,0x8d,0x16,0x42,0x49,0x92,0xd0,0xd5,0xd5, 0x85,0xe9,0xd3,0xa7,0xe3,0xbe,0xfb,0xee,0xeb,0x67,0xb5,0x71,0xa9,0x32,0x8c,0x5c, 0xc6,0x81,0xe6,0xc,0x62,0x20,0x83,0x95,0x48,0xb0,0x48,0xa2,0x3c,0xde,0xbe,0xfc, 0xe8,0xd1,0xa3,0xd8,0xb5,0x6b,0x17,0xf3,0x8b,0xca,0xf4,0x18,0xc1,0x60,0x10,0xb3, 0x66,0xcd,0x42,0x71,0x71,0x31,0xe2,0xf1,0x38,0xbb,0x3f,0x59,0xa5,0x93,0x42,0x7c, 0xeb,0xd6,0xad,0xf8,0xe8,0xa3,0x8f,0x74,0xce,0x16,0x44,0xcf,0x65,0x71,0x6e,0x67, 0x16,0x76,0xd8,0x61,0xc7,0xc5,0x4,0x8a,0x7e,0xc3,0x92,0xf8,0xec,0x2,0x0,0x7e, 0xf4,0xa3,0x1f,0xe9,0xf,0x3f,0xfc,0x30,0xcb,0x30,0x68,0x64,0xe8,0x1d,0x77,0xdc, 0xc1,0xd4,0xdd,0x3c,0xe5,0x24,0x49,0x12,0x8e,0x1e,0x3d,0x8a,0x97,0x5e,0x7a,0x89, 0x4d,0xa1,0xbb,0x94,0x19,0x46,0xae,0xf1,0xac,0x94,0x4d,0xf0,0x97,0x67,0x2b,0x80, 0x9b,0x75,0x18,0x54,0x8b,0xa0,0x4e,0x30,0x1a,0x8e,0x24,0xcb,0x32,0x26,0x4e,0x9c, 0xc8,0x32,0xc,0xfe,0x75,0x11,0x90,0x92,0x28,0xaf,0xa7,0xa7,0x7,0x7,0xe,0x1c, 0x60,0x45,0x6f,0xbe,0x3b,0x8a,0x9e,0xd7,0xe5,0x72,0x61,0xe5,0xca,0x95,0x98,0x3d, 0x7b,0xb6,0x98,0x8f,0x58,0xcf,0xce,0x2c,0xec,0xb0,0xc3,0x8e,0x8b,0xb9,0x13,0xd7, 0xf8,0x53,0xee,0x72,0xb6,0x18,0xfd,0xe4,0x27,0x3f,0x11,0x1e,0x7a,0xe8,0x21,0xa6, 0x5c,0x6,0x80,0xdd,0xbb,0x77,0xe3,0xad,0xb7,0xde,0x82,0xc7,0xe3,0x61,0x8b,0x1a, 0x59,0x5d,0x24,0x93,0x49,0x4c,0x9d,0x3a,0x15,0xf7,0xde,0x7b,0x2f,0xbc,0x5e,0xaf, 0x81,0xc6,0x1a,0xca,0xc,0xc3,0xaa,0x66,0x91,0x49,0x83,0x61,0x95,0x45,0x98,0x6b, 0x13,0x99,0x74,0x18,0x94,0x61,0xd0,0x63,0x25,0x93,0x49,0x56,0xfc,0x3f,0x76,0xec, 0x18,0x76,0xed,0xda,0x65,0x50,0xc7,0xd3,0x7d,0xe8,0xbc,0x2c,0xcb,0x28,0x28,0x28, 0xc0,0xcc,0x99,0x33,0x11,0xa,0x85,0x98,0xd9,0xa0,0xf9,0x39,0x65,0x59,0xc6,0x1b, 0x6f,0xbc,0x81,0x2f,0xbe,0xf8,0xc2,0x30,0x38,0x89,0xb7,0x33,0xe7,0x4e,0x45,0x1b, 0x2c,0xec,0xb0,0xc3,0x8e,0xa1,0xde,0xa5,0xb,0x4f,0x3d,0xf5,0x94,0x7f,0xe5,0xca, 0x95,0x4c,0xc9,0x2d,0x8,0x2,0xfe,0xfc,0xe7,0x3f,0x63,0xfb,0xf6,0xed,0xf0,0xfb, 0xfd,0x6c,0xee,0x34,0x2d,0x98,0xf1,0x78,0x1c,0x13,0x27,0x4e,0xc4,0xaa,0x55,0xab, 0xe0,0x76,0xbb,0xd,0xbe,0x4d,0xbc,0x78,0x6f,0x28,0x69,0xa9,0x81,0xce,0xf9,0xce, 0xe7,0x2f,0x97,0xdd,0xb9,0xc3,0xe1,0xc0,0xf1,0xe3,0xc7,0xb1,0x7b,0xf7,0x6e,0x6, 0x4a,0x4,0xba,0x74,0x3d,0xcd,0xbc,0x8,0x4,0x2,0xa8,0xa9,0xa9,0x41,0x61,0x61, 0x21,0x1b,0x50,0x25,0xcb,0x32,0xd3,0xac,0x50,0xdb,0xf2,0x2b,0xaf,0xbc,0x2,0x0, 0x1e,0x7e,0xe,0x86,0xd5,0xc4,0x44,0x1b,0x2c,0xec,0xb0,0xc3,0x8e,0xa1,0x4,0xa, 0x47,0x7a,0x2d,0x8a,0xbe,0xfe,0xfa,0xeb,0x81,0x25,0x4b,0x96,0x18,0x4c,0x4,0xdf, 0x7b,0xef,0x3d,0xfc,0xe9,0x4f,0x7f,0x42,0x28,0x14,0x62,0xb,0x28,0xd1,0x2b,0xc9, 0x64,0x12,0x53,0xa6,0x4c,0xc1,0xfd,0xf7,0xdf,0x6f,0x28,0xd8,0x52,0x6,0x32,0x54, 0xdd,0x52,0x5f,0x6,0x18,0xb2,0x1,0x80,0xd5,0x9c,0x8c,0x6c,0x75,0xe,0x5d,0xd7, 0xf1,0xd9,0x67,0x9f,0xa1,0xae,0xae,0x8e,0xd5,0x79,0x28,0x13,0xa1,0xda,0x4,0xbd, 0x4e,0xaf,0xd7,0xcb,0x6a,0x18,0xe1,0x70,0xd8,0xf2,0xb9,0xda,0xda,0xda,0xf0,0xca, 0x2b,0xaf,0x44,0xac,0x34,0x16,0x7c,0x2d,0xc3,0x6,0xb,0x3b,0xec,0xb0,0x63,0x28, 0x77,0xe6,0x7c,0x8b,0x66,0xfc,0x95,0x57,0x5e,0xe9,0x9a,0x33,0x67,0xe,0x3,0xb, 0x4d,0xd3,0xb0,0x7d,0xfb,0x76,0xfc,0xe9,0x4f,0x7f,0x82,0xd7,0xeb,0x65,0x7c,0x7d, 0x32,0x99,0x84,0xa2,0x28,0x8,0x87,0xc3,0x98,0x30,0x61,0x2,0xd6,0xac,0x59,0x3, 0x9f,0xcf,0x67,0x68,0xab,0x1d,0xea,0x49,0x7b,0xd9,0x5a,0x67,0x73,0x65,0x1b,0x56, 0xc0,0x90,0x6b,0xb8,0x12,0x65,0x11,0x94,0x55,0xd5,0xd5,0xd5,0xe1,0xcc,0x99,0x33, 0xac,0x3e,0x42,0x20,0x1,0xa4,0x2c,0x42,0xa8,0xad,0x36,0x18,0xc,0x32,0x4a,0x4a, 0x51,0x14,0x96,0x51,0x0,0xa9,0x3a,0x88,0x20,0x8,0xa8,0xad,0xad,0xc5,0xc9,0x93, 0x27,0x33,0x75,0x44,0xe9,0x36,0x58,0xd8,0x61,0x87,0x1d,0x43,0x4e,0x41,0xf1,0xe2, 0xaf,0xca,0xca,0xca,0xa2,0x4d,0x9b,0x36,0x61,0xcc,0x98,0x31,0x4c,0x3b,0x20,0x8, 0x2,0xfe,0xf8,0xc7,0x3f,0x62,0xd7,0xae,0x5d,0x2c,0x7b,0xe0,0xb,0xc0,0xb1,0x58, 0xc,0x13,0x27,0x4e,0xc4,0x9a,0x35,0x6b,0xe0,0xf7,0xfb,0xd9,0xfd,0x2e,0x1,0xf0, 0xe5,0xd4,0x5b,0xc,0x24,0xb,0x31,0x67,0x1c,0x56,0x3a,0xc,0x55,0x55,0x99,0xf0, 0x2e,0x12,0x89,0xe0,0x93,0x4f,0x3e,0x31,0x74,0x3a,0x11,0xe0,0x12,0x70,0x50,0x6d, 0xa2,0xa0,0xa0,0x0,0xd3,0xa7,0x4f,0x67,0xaf,0x9d,0x80,0x84,0x74,0x2d,0x8a,0xa2, 0xe0,0x9d,0x77,0xde,0x81,0x55,0x47,0x14,0x1,0x88,0xd,0x16,0x76,0xd8,0x61,0xc7, 0x50,0x2e,0xb0,0xbc,0xb5,0x84,0x2a,0x8,0x82,0x30,0x66,0xcc,0x18,0xe1,0xcd,0x37, 0xdf,0x44,0x69,0x69,0x29,0x5b,0xec,0x0,0x60,0xcb,0x96,0x2d,0xf8,0xf8,0xe3,0x8f, 0xe1,0x76,0xbb,0xd,0x45,0xed,0x44,0x22,0x81,0x48,0x24,0x82,0xb1,0x63,0xc7,0x62, 0xf5,0xea,0xd5,0xcc,0x13,0xe9,0x12,0xbd,0x9f,0xac,0x6d,0xb4,0x99,0x32,0x88,0x7c, 0xe8,0x26,0x2b,0xfa,0x4a,0x96,0x65,0x38,0x1c,0xe,0x36,0x48,0xaa,0xa9,0xa9,0x89, 0xcd,0xc3,0xa0,0x1a,0x6,0x9,0xf2,0x4,0x41,0x40,0x22,0x91,0x80,0x28,0x8a,0x88, 0x46,0xa3,0xa8,0xa8,0xa8,0x40,0x69,0x69,0x29,0xf3,0x9a,0xa2,0xec,0x82,0x6,0x28, 0xd5,0xd7,0xd7,0xa3,0xb1,0xb1,0x51,0xe5,0x81,0x9d,0x3f,0x6f,0x83,0x85,0x1d,0x76, 0xd8,0x31,0xa4,0x99,0x45,0x7a,0x91,0x35,0x74,0xe0,0x4c,0x9f,0x3e,0xdd,0xf1,0xc6, 0x1b,0x6f,0xa0,0xa0,0xa0,0xc0,0x30,0x53,0xe2,0xf,0x7f,0xf8,0x3,0x3e,0xfa,0xe8, 0x23,0x66,0xe5,0x2d,0xcb,0x32,0x5c,0x2e,0x17,0x5b,0x0,0x47,0x8e,0x1c,0x89,0xbb, 0xef,0xbe,0x1b,0x3e,0x9f,0xef,0x92,0xeb,0x30,0xb2,0x39,0xd2,0x5a,0xfd,0x3f,0x10, 0x1d,0x86,0x15,0x8,0x11,0x8d,0xf4,0xe9,0xa7,0x9f,0x1a,0x5c,0x6a,0x9,0x34,0xc8, 0x6b,0x8b,0x46,0xb1,0x2a,0x8a,0x82,0xe1,0xc3,0x87,0x23,0x91,0x48,0x18,0xa,0xdc, 0xe1,0x70,0x98,0x39,0x3,0x1f,0x38,0x70,0xa0,0x1f,0xb0,0xd3,0x79,0x1b,0x2c,0xec, 0xb0,0xc3,0x8e,0x21,0x7,0x8c,0x34,0x1d,0xa5,0x71,0x8b,0x91,0x76,0xed,0xb5,0xd7, 0x8a,0x2f,0xbc,0xf0,0x2,0xdb,0x25,0xd3,0xa2,0xf7,0xfb,0xdf,0xff,0x1e,0x9f,0x7c, 0xf2,0x9,0xe3,0xeb,0xa9,0xd,0x14,0x0,0x62,0xb1,0x18,0x46,0x8d,0x1a,0x85,0x7, 0x1e,0x78,0x0,0x81,0x40,0xe0,0x92,0x66,0x17,0xfc,0x1f,0x5d,0x3e,0x50,0xda,0x2a, 0x5b,0x1d,0x83,0x2e,0xa3,0xcc,0x21,0x1e,0x8f,0xc3,0xe5,0x72,0xa1,0xad,0xad,0xd, 0x27,0x4e,0x9c,0x60,0xe,0xbe,0x4e,0xa7,0x93,0xdd,0x3e,0x91,0x48,0x30,0xa0,0x20, 0x3,0x42,0xf2,0x99,0x22,0xc0,0x91,0x24,0x9,0xf1,0x78,0x1c,0xba,0xae,0xe3,0xf3, 0xcf,0x3f,0x87,0xd9,0xf6,0x83,0x0,0xde,0x6,0xb,0x3b,0xec,0xb0,0x63,0x48,0x69, 0x28,0xbe,0x35,0xd3,0xbc,0x7b,0x5d,0xbe,0x7c,0xb9,0xe3,0xa9,0xa7,0x9e,0x32,0x28, 0xb6,0x55,0x55,0xc5,0xe6,0xcd,0x9b,0x51,0x5b,0x5b,0xb,0x8f,0xc7,0xc3,0x28,0x16, 0x2a,0xf8,0x12,0xc5,0xb2,0x66,0xcd,0x1a,0x14,0x14,0x14,0xf4,0x9b,0x9b,0x4d,0xa7, 0x83,0xd9,0x62,0x6b,0x2e,0x7a,0x67,0x9b,0x75,0xc1,0x83,0xc1,0x97,0x2d,0x84,0x53, 0x76,0x40,0x85,0xff,0xd3,0xa7,0x4f,0x1b,0xd4,0xdf,0xf4,0xd9,0xd1,0xed,0x49,0xec, 0x48,0x6d,0xc7,0x4,0x16,0xd4,0x66,0xcb,0x77,0x46,0x1,0x8,0xf0,0x14,0x14,0x9b, 0xd1,0x6a,0x1f,0xbe,0x76,0xd8,0x61,0xc7,0x65,0x4,0x26,0xda,0xb7,0xbe,0xf5,0x2d, 0xd7,0xff,0xfc,0xcf,0xff,0x18,0xda,0x66,0x5,0x41,0xc0,0xd6,0xad,0x5b,0xb1,0x77, 0xef,0x5e,0x78,0x3c,0x1e,0xb6,0x30,0x52,0xf6,0x11,0x8d,0x46,0x51,0x52,0x52,0x82, 0xd5,0xab,0x57,0xa3,0xb8,0xb8,0xb8,0xdf,0x42,0x4e,0xbb,0xed,0xa1,0xcc,0x34,0x32, 0x19,0x10,0xe6,0x5b,0xc,0x37,0xd3,0x52,0x7c,0x4d,0x82,0x28,0x28,0x6a,0x8,0x38, 0x7f,0xfe,0x3c,0x13,0xdf,0x51,0xb7,0x14,0xdf,0x52,0x4c,0x2d,0xc6,0xe4,0x48,0x4b, 0x20,0x43,0xc5,0x71,0x2,0x9e,0x48,0x24,0x82,0x53,0xa7,0x4e,0x75,0x59,0xe8,0x2c, 0x6c,0x1a,0xca,0xe,0x3b,0xec,0xb8,0xbc,0x28,0x2a,0x5d,0xd7,0xe5,0x7f,0xf8,0x87, 0x7f,0x70,0xfe,0xe8,0x47,0x3f,0x32,0xec,0x90,0x1,0x60,0xdb,0xb6,0x6d,0xd8,0xbd, 0x7b,0x37,0xb3,0xaf,0xa0,0xd,0x30,0xed,0x90,0x8b,0x8b,0x8b,0xb1,0x62,0xc5,0xa, 0x94,0x95,0x95,0x19,0xda,0x6a,0xc9,0xea,0x7c,0x28,0x81,0xe2,0xcb,0xa,0xf2,0xb2, 0xfd,0x65,0x52,0x82,0x77,0x74,0x74,0xa0,0xa7,0xa7,0x87,0x65,0x5c,0xfc,0xb0,0x28, 0x9a,0xc4,0xc7,0x3,0xe,0x9f,0x69,0x11,0x5d,0x45,0xe7,0xa9,0xf0,0x9d,0x66,0xb, 0x45,0xa2,0xd,0x9d,0xf6,0xe1,0x69,0x87,0x1d,0x76,0x5c,0x4e,0x34,0x15,0x75,0x4a, 0x1,0x10,0xda,0xda,0xda,0xf4,0xa7,0x9e,0x7a,0xca,0xa0,0x23,0x78,0xfb,0xed,0xb7, 0x1,0x0,0x33,0x66,0xcc,0x60,0x94,0xa,0x81,0x4a,0x3c,0x1e,0x47,0x49,0x49,0x9, 0x6e,0xbf,0xfd,0x76,0x6c,0xd9,0xb2,0x5,0x1d,0x1d,0x1d,0x43,0xde,0x56,0xcb,0x3f, 0x1f,0xef,0x73,0xc5,0xf,0x72,0xca,0x0,0x94,0xfd,0xee,0x6f,0x15,0xf4,0x9e,0xa9, 0x46,0x41,0xef,0xbd,0xbb,0xbb,0x1b,0x95,0x95,0x95,0xcc,0xc2,0x9c,0xa7,0xe1,0xe8, 0x7f,0x59,0x96,0x11,0x8d,0x46,0xa1,0x69,0x1a,0x9b,0x54,0xc8,0xcf,0xc7,0x0,0xfa, 0x1c,0x6a,0xd3,0xdf,0x85,0xdd,0x3a,0x6b,0x87,0x1d,0x76,0x5c,0xbe,0x54,0x14,0x71, 0xe6,0x4f,0x3d,0xf5,0x94,0x67,0xe5,0xca,0x95,0x86,0xba,0x43,0x32,0x99,0xc4,0x1f, 0xff,0xf8,0x47,0xd4,0xd6,0xd6,0x32,0xd1,0x1e,0xf1,0xf2,0xa4,0xc3,0x28,0x2c,0x2c, 0xc4,0x1d,0x77,0xdc,0x81,0xe2,0xe2,0xe2,0x4b,0xde,0x56,0x9b,0x4f,0xb6,0x31,0x90, 0x4e,0x28,0xca,0x0,0xcc,0xb5,0x8f,0x58,0x2c,0x66,0xd0,0x5b,0xf0,0x96,0xee,0xd4, 0x14,0xd0,0xdd,0xdd,0xcd,0x86,0x50,0xd1,0xe7,0x42,0x59,0x85,0xa2,0x28,0x70,0xb9, 0x5c,0x18,0x35,0x6a,0x54,0xa1,0x79,0x1e,0xb7,0xed,0xd,0x65,0x87,0x1d,0x76,0x5c, 0x8e,0x54,0x94,0x83,0x2b,0x80,0x27,0x5e,0x7f,0xfd,0xf5,0xc2,0xc5,0x8b,0x17,0x1b, 0xfc,0x8f,0x54,0x55,0xc5,0xf6,0xed,0xdb,0xf1,0xd1,0x47,0x1f,0xc1,0xeb,0xf5,0x1a, 0x28,0x15,0x2,0x8e,0x60,0x30,0x88,0x65,0xcb,0x96,0xa1,0xb4,0xb4,0xf4,0x92,0x4c, 0xdb,0xb3,0xa2,0xa5,0x6,0x6a,0x79,0x9e,0xa9,0x23,0x8a,0x6a,0xc,0x74,0x5f,0xd2, 0x5f,0x50,0xd1,0x9f,0xfe,0x28,0x23,0xa3,0xba,0xcd,0xa9,0x53,0xa7,0x10,0x8f,0xc7, 0x59,0xbd,0x83,0xda,0x67,0xa9,0xcb,0x6c,0xdc,0xb8,0x71,0x0,0x10,0xe6,0xbf,0xe, 0x2,0x70,0x1b,0x2c,0xec,0xb0,0xc3,0x8e,0xcb,0x9,0x28,0x4,0x12,0xeb,0x71,0xd3, 0xf6,0xba,0x9f,0x7f,0xfe,0xf9,0xad,0x33,0x66,0xcc,0x60,0x80,0x40,0x8b,0xeb,0x8e, 0x1d,0x3b,0xb0,0x6f,0xdf,0x3e,0x3,0x18,0xd0,0x22,0x18,0x8d,0x46,0x51,0x50,0x50, 0x80,0x5b,0x6f,0xbd,0x15,0x85,0x85,0x85,0x97,0x44,0x87,0x61,0xce,0x30,0x72,0x1, 0x44,0x26,0xab,0xf,0xf3,0xcc,0xb,0xf3,0xff,0x82,0x20,0x20,0x18,0xc,0x1a,0x5a, 0x8e,0xf9,0x7a,0x85,0xc3,0xe1,0x40,0x5b,0x5b,0x1b,0x8e,0x1e,0x3d,0xca,0x3e,0x7, 0xca,0x36,0x1c,0xe,0x7,0xa2,0xd1,0x28,0x54,0x55,0xc5,0xf5,0xd7,0x5f,0xf,0x5d, 0xd7,0x55,0xea,0x80,0xa2,0xef,0xc4,0xa6,0xa1,0xec,0xb0,0xc3,0x8e,0xcb,0x8d,0x82, 0x62,0x2d,0xb5,0xbc,0x8f,0xd4,0xa8,0x51,0xa3,0x56,0xbe,0xf9,0xe6,0x9b,0x18,0x33, 0x66,0xc,0xa3,0x50,0xc8,0xbe,0xfb,0x9d,0x77,0xde,0x61,0x94,0x14,0xdf,0xd,0x44, 0xa,0x66,0x9f,0xef,0xff,0xb7,0x77,0x6d,0xb1,0x51,0x94,0x6d,0xf8,0x99,0xd3,0xf6, 0xb0,0x2d,0x58,0x2b,0x6,0x39,0x37,0x35,0x6a,0x52,0x6d,0x4a,0x45,0x29,0x8d,0x85, 0xb6,0xc2,0x52,0x7a,0x22,0xbf,0x46,0xae,0xc,0x89,0x89,0x5e,0x91,0x78,0xe1,0x15, 0x77,0x6,0x83,0x89,0x4d,0x54,0xae,0xc,0xc4,0x78,0x61,0x83,0x50,0x96,0x4a,0xb, 0x4a,0xb7,0x5a,0x43,0x94,0xe0,0xf1,0x82,0x44,0x43,0x25,0x62,0xe9,0x99,0xc4,0x2a, 0x62,0x4a,0xd9,0x53,0xb7,0xbb,0xf3,0xfd,0x17,0xdd,0xf7,0xf3,0x9b,0xe9,0xf6,0x0, 0x95,0x1e,0xdf,0x27,0xd9,0x74,0x3b,0x33,0x3b,0x3b,0x33,0x69,0xdf,0xe7,0x7b,0xde, 0x63,0x26,0x7c,0x3e,0x1f,0x1e,0x78,0xe0,0x81,0xf9,0xbc,0xaf,0x9,0x35,0x18,0x33, 0xe9,0x60,0xeb,0xce,0xac,0x22,0x23,0xaf,0xce,0x26,0x1f,0x1b,0x1b,0x43,0x7a,0x7a, 0x3a,0xb2,0xb2,0xb2,0x1c,0xf3,0x40,0x48,0x2d,0xe8,0xba,0x8e,0x48,0x24,0x82,0x1f, 0x7e,0xf8,0x41,0xba,0xa0,0x28,0x75,0x96,0x7a,0x48,0x69,0x9a,0x86,0xe7,0x9e,0x7b, 0xe,0x45,0x45,0x45,0x8e,0x2c,0x59,0xaa,0x85,0xe1,0xd4,0x59,0x6,0x83,0xb1,0xd0, 0xc9,0x43,0xce,0x88,0x5e,0xbf,0x7e,0xbd,0xd6,0xd6,0xd6,0x86,0x9c,0x9c,0x1c,0xb9, 0x9f,0xc,0xe2,0xd7,0x5f,0x7f,0x8d,0x9f,0x7f,0xfe,0x59,0xce,0xa0,0x56,0x67,0x4a, 0x44,0xa3,0x51,0x64,0x64,0x64,0xa0,0xb2,0xb2,0xd2,0x91,0x56,0xab,0xe,0xc,0x9a, 0x6b,0x97,0xd4,0x54,0x55,0xde,0x93,0xc5,0x38,0xd4,0xca,0x6d,0xca,0x5a,0x22,0x83, 0xbf,0x61,0xc3,0x6,0x78,0xbd,0x5e,0xa9,0x24,0x68,0xbb,0xc7,0xe3,0x41,0x34,0x1a, 0xc5,0x37,0xdf,0x7c,0x83,0xde,0xde,0x5e,0xd9,0xda,0x43,0x6d,0x57,0x6e,0xdb,0x36, 0xa,0xa,0xa,0x70,0xe0,0xc0,0x81,0xc,0x95,0x20,0x5c,0xc4,0xcd,0xa9,0xb3,0xc, 0x6,0x63,0xf1,0xa0,0xa0,0xa0,0xc0,0xa,0x4,0x2,0xb2,0xbd,0x87,0x6d,0xdb,0xb2, 0x42,0xf9,0xc2,0x85,0xb,0xb8,0x7c,0xf9,0xb2,0x63,0xe,0x6,0x19,0x4e,0xca,0x1e, 0x2a,0x2d,0x2d,0x45,0x6e,0x6e,0xae,0x23,0xbb,0x8a,0x7c,0xfb,0x73,0x9d,0x5a,0x3b, 0x55,0xf1,0x5e,0xaa,0x16,0x20,0x6a,0xe7,0x59,0x52,0x15,0xe4,0x6a,0x7b,0xfa,0xe9, 0xa7,0x65,0xa0,0x9a,0xbe,0x83,0x9a,0xd,0x7e,0xf5,0xd5,0x57,0xe8,0xee,0xee,0x96, 0xed,0xcc,0x89,0x50,0x28,0x6,0x54,0x54,0x54,0x84,0x37,0xdf,0x7c,0xd3,0x2,0x30, 0xe5,0x18,0x42,0x26,0xb,0x6,0x83,0xb1,0x98,0x94,0x46,0xbc,0xa4,0xa4,0x44,0x3b, 0x79,0xf2,0x24,0x2c,0xcb,0x92,0xca,0x82,0x94,0xc2,0xb7,0xdf,0x7e,0x8b,0x5f,0x7e, 0xf9,0x65,0x2,0x61,0x90,0xc2,0xf0,0x7a,0xbd,0xd8,0xba,0x75,0x2b,0x56,0xae,0x5c, 0x29,0x3f,0x43,0x86,0x77,0x3e,0x14,0xc6,0x74,0x6d,0xcd,0x53,0x55,0x86,0x93,0xeb, 0x88,0x82,0xfd,0x95,0x95,0x95,0xf0,0x7a,0xbd,0x8e,0x1a,0x9,0x8a,0x57,0x5c,0xb8, 0x70,0x1,0x7d,0x7d,0x7d,0xb2,0x85,0xa,0xa5,0xc8,0xc6,0x62,0x31,0x8c,0x8d,0x8d, 0xe1,0xd9,0x67,0x9f,0xc5,0xa1,0x43,0x87,0x32,0x1,0x24,0xa6,0x1b,0xad,0xca,0x64, 0xc1,0x60,0x30,0x16,0xd,0x28,0xd8,0x5a,0x5f,0x5f,0xaf,0x1d,0x3b,0x76,0xcc,0xb1, 0x8f,0x7c,0xf9,0x97,0x2e,0x5d,0x42,0x67,0x67,0x27,0x2c,0xcb,0x92,0xab,0x68,0x72, 0xbd,0x84,0x42,0x21,0xa4,0xa7,0xa7,0xcb,0x81,0x40,0xee,0xac,0xa1,0x39,0x24,0xbd, 0x94,0x44,0x30,0x5d,0xb,0x10,0x72,0x41,0x51,0xab,0xf2,0xb2,0xb2,0x32,0x6c,0xd8, 0xb0,0xc1,0xd1,0x48,0xd0,0x30,0xc,0xc4,0xe3,0x71,0x9c,0x3d,0x7b,0x16,0xd7,0xae, 0x5d,0x83,0x69,0x9a,0xb2,0xd,0x88,0x3a,0xe7,0x62,0xcb,0x96,0x2d,0x38,0x74,0xe8, 0x50,0xa6,0x10,0x22,0xa2,0x6,0xb4,0x99,0x2c,0x18,0xc,0xc6,0x52,0x50,0x16,0xd4, 0xe2,0x5c,0x7b,0xe5,0x95,0x57,0xf4,0xf7,0xde,0x7b,0x4f,0x2a,0x4,0xfa,0x29,0x84, 0xc0,0x77,0xdf,0x7d,0x87,0xce,0xce,0x4e,0x69,0x38,0xd5,0x0,0x71,0x30,0x18,0x84, 0xd7,0xeb,0xc5,0x93,0x4f,0x3e,0x29,0x9b,0xf,0xaa,0xbd,0xa8,0xe6,0x92,0x30,0xe8, 0xe7,0xdd,0x64,0x47,0x91,0xfb,0x69,0xf3,0xe6,0xcd,0xd2,0xfd,0x44,0x8a,0xc3,0xe3, 0xf1,0x20,0x1c,0xe,0xa3,0xbd,0xbd,0x1d,0x3,0x3,0x3,0x48,0x4b,0x4b,0x93,0xc7, 0x53,0x37,0xdf,0x78,0x3c,0x8e,0x92,0x92,0x12,0x34,0x34,0x34,0x64,0x2,0x88,0x2a, 0x8d,0x1d,0xa7,0x54,0x16,0x5c,0xc1,0xcd,0x60,0x30,0x16,0x93,0xb2,0xd0,0x85,0x10, 0xb6,0x62,0xd8,0xb4,0x5b,0xb7,0x6e,0x89,0xc3,0x87,0xf,0x3,0x80,0x43,0x1d,0x7c, 0xff,0xfd,0xf7,0x48,0x24,0x12,0xc8,0xcf,0xcf,0x77,0x18,0x5d,0x0,0x72,0x80,0xd0, 0x53,0x4f,0x3d,0x85,0xab,0x57,0xaf,0x62,0x78,0x78,0x78,0x4e,0x95,0x85,0x9b,0x30, 0xe8,0xda,0xc9,0x25,0xe6,0xde,0x9e,0xbc,0x77,0x0,0xe3,0x99,0x4c,0x8f,0x3f,0xfe, 0x38,0x2a,0x2b,0x2b,0x11,0x8d,0x46,0x65,0xcd,0x85,0xd7,0xeb,0x45,0x28,0x14,0xc2, 0x97,0x5f,0x7e,0x89,0x9e,0x9e,0x1e,0x78,0xbd,0x5e,0x49,0x22,0x54,0xbd,0x9d,0x48, 0x24,0x50,0x56,0x56,0x86,0x86,0x86,0x86,0x6c,0x21,0x44,0x84,0x48,0x22,0x99,0xec, 0xc4,0x6e,0x28,0x6,0x83,0xb1,0x64,0x94,0x85,0x4d,0x3d,0x8b,0x48,0x61,0x1c,0x3e, 0x7c,0x58,0x3f,0x70,0xe0,0x80,0xc3,0xa0,0x52,0x80,0xf7,0xf2,0xe5,0xcb,0xb8,0x7a, 0xf5,0xaa,0xc,0xe6,0xd2,0xa,0x9e,0xa6,0xd0,0x99,0xa6,0x89,0xbc,0xbc,0x3c,0x78, 0xbd,0xde,0xf9,0xbc,0xa7,0x19,0xbd,0xa8,0xdb,0x6c,0x6e,0x6e,0x2e,0x76,0xef,0xde, 0x2d,0x63,0xf,0x34,0x6b,0x7b,0x64,0x64,0x4,0x6d,0x6d,0x6d,0xf8,0xfd,0xf7,0xdf, 0x1d,0xf3,0x3f,0xd4,0xd9,0x17,0x5b,0xb7,0x6e,0xc5,0x91,0x23,0x47,0x32,0x85,0x10, 0xc1,0x7f,0xf9,0x77,0x9c,0x80,0xa7,0x73,0x43,0xb1,0xb2,0x60,0x30,0x18,0x8b,0x49, 0x59,0x90,0xbb,0xc4,0xd1,0xda,0x5c,0xd3,0xb4,0x8c,0x97,0x5e,0x7a,0x29,0xd2,0xdc, 0xdc,0x2c,0x49,0x83,0x8c,0xe4,0xaf,0xbf,0xfe,0x8a,0x44,0x22,0x81,0xbc,0xbc,0x3c, 0x47,0x3b,0x6e,0x22,0xd,0xd3,0x34,0x91,0x9f,0x9f,0x8f,0xae,0xae,0x2e,0x44,0x22, 0x91,0x79,0x23,0xc,0xb7,0xd2,0x50,0x33,0xb4,0x68,0xbb,0xc7,0xe3,0x41,0x6d,0x6d, 0x2d,0x56,0xae,0x5c,0x89,0x68,0x34,0x2a,0xe3,0x11,0xe1,0x70,0x18,0x81,0x40,0x0, 0xbd,0xbd,0xbd,0x48,0x4f,0x4f,0x87,0x69,0x9a,0xb2,0xf7,0x13,0x25,0x0,0x6c,0xdf, 0xbe,0x1d,0x1f,0x7c,0xf0,0x41,0x26,0x80,0xa8,0xaa,0xd2,0x5c,0xcf,0x95,0x95,0x5, 0x83,0xc1,0x58,0xb2,0xc4,0x1,0x0,0x63,0xcd,0xcd,0xcd,0x19,0xe5,0xe5,0xe5,0x13, 0x8e,0x1b,0x1b,0x1b,0x43,0x67,0x67,0xa7,0xac,0x33,0x20,0xb2,0xa0,0x56,0x17,0x54, 0xb8,0xb6,0x71,0xe3,0x46,0x39,0xef,0xc1,0x6d,0xac,0xe7,0x32,0xad,0x16,0x80,0xa3, 0xad,0x87,0x4a,0x6c,0x3e,0x9f,0xf,0x1b,0x36,0x6c,0x40,0x38,0x1c,0x96,0x2d,0x3c, 0xc2,0xe1,0x30,0x5a,0x5a,0x5a,0xd0,0xd5,0xd5,0x25,0xd3,0x63,0xa9,0xfd,0x7,0x29, 0xa8,0xb2,0xb2,0x32,0x1c,0x3d,0x7a,0x34,0x8b,0x82,0xd9,0xa4,0xd2,0x54,0xc2,0x9d, 0xee,0xfa,0x98,0x2c,0x18,0xc,0xc6,0xa2,0xc1,0x64,0x46,0x2d,0x59,0xbc,0x37,0xd6, 0xd0,0xd0,0xf0,0xbf,0xc2,0xc2,0x42,0x19,0xb0,0x26,0xc3,0x2f,0x84,0x40,0x67,0x67, 0x27,0xfa,0xfa,0xfa,0xe4,0xef,0x89,0x44,0xc2,0x31,0x79,0x4f,0xd3,0x34,0xac,0x59, 0xb3,0x6,0xa6,0x69,0x3a,0x56,0xf4,0x73,0x99,0x5a,0x4b,0xfd,0x9d,0xd4,0xef,0x8a, 0xc7,0xe3,0x88,0x46,0xa3,0x54,0x61,0x8d,0x50,0x28,0x34,0xee,0x16,0x32,0x4d,0x4, 0x83,0x41,0x9c,0x3f,0x7f,0x1e,0xdd,0xdd,0xdd,0xb2,0xde,0x84,0x48,0x27,0x1c,0xe, 0x3,0x0,0xca,0xcb,0xcb,0x71,0xec,0xd8,0xb1,0x4c,0x21,0x44,0x68,0x56,0xe4,0x3c, 0x1f,0xcd,0xb5,0x18,0xc,0x6,0xe3,0x3e,0xa8,0xb,0x0,0xc0,0xe0,0xe0,0xa0,0xd8, 0xbe,0x7d,0xbb,0x24,0x6,0xb7,0x31,0xde,0xb4,0x69,0x13,0x1e,0x7e,0xf8,0x61,0x39, 0xc7,0x81,0xaa,0x9d,0xc9,0x48,0x87,0xc3,0x61,0xfc,0xf5,0xd7,0x5f,0x13,0xd2,0x51, 0xe7,0x62,0x78,0x12,0x11,0x93,0x4a,0x1a,0xba,0xae,0xe3,0x89,0x27,0x9e,0xc0,0x8b, 0x2f,0xbe,0x28,0x95,0x46,0x7a,0x7a,0x3a,0xc2,0xe1,0x30,0xce,0x9e,0x3d,0x8b,0x9e, 0x9e,0x1e,0xe9,0x7a,0x32,0xc,0x43,0x2a,0x22,0xaa,0xc1,0x68,0x6c,0x6c,0xcc,0x9a, 0x2d,0x51,0xb0,0xb2,0x60,0x30,0x18,0x8b,0x5e,0x69,0xa8,0x81,0x59,0x4d,0xd3,0x74, 0x6a,0xb,0xb2,0x66,0xcd,0x1a,0x87,0x11,0xa6,0x38,0x46,0x7f,0x7f,0xbf,0x24,0x3, 0xf7,0x40,0x20,0x8a,0x3,0xe4,0xe4,0xe4,0xc8,0x1,0x4b,0xe4,0x16,0x9a,0x8b,0xd4, 0x5a,0xd5,0xd,0x5,0x8c,0xa7,0x2,0xaf,0x5a,0xb5,0xa,0x3e,0x9f,0x4f,0xd6,0x4a, 0xa4,0xa5,0xa5,0xe1,0xce,0x9d,0x3b,0x38,0x77,0xee,0x1c,0xba,0xba,0xba,0x60,0x18, 0x86,0x9c,0x84,0x37,0x3a,0x3a,0x2a,0x83,0xe1,0x3b,0x76,0xec,0x40,0x63,0x63,0xa3, 0x17,0x40,0x24,0xf9,0xc,0x66,0x35,0x57,0x96,0xc9,0x82,0xc1,0x60,0x2c,0x3a,0x35, 0x91,0x8a,0x30,0x92,0x2a,0xc3,0x6,0x80,0x82,0x82,0x2,0xd3,0xef,0xf7,0xcb,0x4a, 0x6d,0xb5,0x5,0x46,0x3c,0x1e,0x47,0x5f,0x5f,0x1f,0x6e,0xde,0xbc,0x29,0xd,0xb3, 0xda,0x6,0x63,0x74,0x74,0x14,0x86,0x61,0x20,0x2b,0x2b,0xcb,0x41,0x18,0x73,0x74, 0x6f,0x30,0x4d,0x53,0xaa,0x19,0xd3,0x34,0x51,0x5f,0x5f,0x8f,0x9c,0x9c,0x1c,0x8c, 0x8e,0x8e,0x22,0x23,0x23,0x3,0xc1,0x60,0x10,0xad,0xad,0xad,0xf8,0xed,0xb7,0xdf, 0x60,0x18,0x86,0x54,0x21,0x54,0xbd,0x6d,0xdb,0x36,0x2a,0x2a,0x2a,0xf0,0xc9,0x27, 0x9f,0x64,0x27,0x89,0x82,0x62,0x14,0xb3,0x92,0x46,0x4c,0x16,0xc,0x6,0x63,0x51, 0xab,0x9,0xda,0xa6,0x14,0xec,0x19,0x42,0x88,0x44,0x59,0x59,0x99,0x71,0xfc,0xf8, 0x71,0x78,0x3c,0x1e,0x69,0x80,0xd5,0x46,0x7c,0x43,0x43,0x43,0xb8,0x79,0xf3,0xa6, 0x8c,0x57,0x90,0xdb,0x49,0xd7,0x75,0xc4,0x62,0x31,0x98,0xa6,0x9,0xaf,0xd7,0x2b, 0x33,0x8e,0xe6,0xa2,0xe,0x83,0x2,0xd9,0x54,0x5c,0xb8,0x67,0xcf,0x1e,0xac,0x5b, 0xb7,0xe,0xe1,0x70,0x18,0x96,0x65,0x21,0x12,0x89,0xa0,0xb9,0xb9,0x19,0xd7,0xae, 0x5d,0x83,0xae,0xeb,0xf0,0x78,0x3c,0xb2,0x32,0x9b,0x62,0x2d,0x65,0x65,0x65,0x68, 0x6a,0x6a,0x5a,0x41,0xe9,0xb1,0x6a,0x21,0x23,0x93,0x5,0x83,0xc1,0x58,0xf6,0x84, 0x91,0x34,0x88,0x7a,0xb2,0xb5,0xb9,0x29,0x84,0xb0,0xeb,0xea,0xea,0xb4,0x8f,0x3e, 0xfa,0xc8,0x31,0x7e,0x94,0x56,0xef,0xf1,0x78,0x1c,0x43,0x43,0x43,0x18,0x19,0x19, 0x71,0xb4,0x36,0xa7,0xf7,0xb1,0x58,0xc,0xba,0xae,0x23,0x2b,0x2b,0x6b,0x4e,0x7, 0x27,0x51,0x5c,0xa2,0xa4,0xa4,0x4,0xcf,0x3c,0xf3,0xc,0x82,0xc1,0x20,0xd2,0xd3, 0xd3,0x11,0xa,0x85,0xd0,0xdc,0xdc,0x2c,0x9b,0x2,0x2,0xe3,0x99,0x5e,0x96,0x65, 0xc9,0x96,0x26,0xe5,0xe5,0xe5,0x38,0x73,0xe6,0x8c,0x57,0x8,0x71,0xc7,0x4d,0x14, 0x62,0x96,0x37,0xc1,0x64,0xc1,0x60,0x30,0x16,0xd,0x54,0x82,0x70,0x1b,0x3f,0x72, 0x43,0x25,0x9,0x43,0xce,0x14,0xdd,0xbf,0x7f,0xbf,0xf1,0xfe,0xfb,0xef,0x3b,0x94, 0x81,0x4a,0x1e,0x7f,0xfe,0xf9,0x27,0xee,0xdc,0xb9,0xe3,0x68,0xa9,0x41,0xd3,0xe3, 0xc6,0xc6,0xc6,0x10,0x8b,0xc5,0x90,0x99,0x99,0x29,0xd5,0xc9,0x5c,0xa8,0x8b,0xc7, 0x1e,0x7b,0xc,0x3b,0x77,0xee,0x94,0xb5,0x12,0xc1,0x60,0x10,0x2d,0x2d,0x2d,0xe8, 0xee,0xee,0x96,0xe9,0xbf,0xa4,0x90,0xc8,0x7d,0xb6,0x6b,0xd7,0x2e,0xb4,0xb4,0xb4, 0x64,0xc2,0xd5,0x3d,0x96,0x26,0xf,0xb2,0xb2,0x60,0x30,0x18,0xcb,0x4a,0x51,0x4c, 0xb7,0x4f,0xa9,0xf2,0x96,0x23,0x41,0xdf,0x78,0xe3,0xd,0xfd,0xe0,0xc1,0x83,0x72, 0xe5,0xe,0x38,0x5b,0x83,0xdc,0xba,0x75,0xb,0xc1,0x60,0x50,0x1a,0x6b,0xa,0x7a, 0x53,0x60,0x9c,0x26,0xca,0x91,0x4b,0x6a,0x36,0xaa,0x41,0x1a,0xdf,0x49,0xce,0xb3, 0x6a,0xd5,0x2a,0xd4,0xd5,0xd5,0xc9,0x3a,0x8a,0xd1,0xd1,0x51,0xf8,0xfd,0x7e,0x99, 0xdd,0xa5,0xd6,0x5d,0xd0,0xf5,0xee,0xdc,0xb9,0x13,0xad,0xad,0xad,0xd4,0x14,0x30, 0xe1,0x7a,0x2e,0x89,0xe9,0x9e,0x1d,0x93,0x5,0x83,0xc1,0x58,0x6e,0xca,0x43,0x57, 0xc,0x23,0x8d,0x5,0xd5,0x85,0x10,0xe2,0x9d,0x77,0xde,0xd1,0x5f,0x7b,0xed,0x35, 0x7,0x49,0x78,0x3c,0x1e,0x69,0x94,0x87,0x87,0x87,0x11,0xc,0x6,0x61,0xdb,0xb6, 0x8c,0x19,0xd0,0xaa,0x5d,0x35,0xf0,0x6a,0xfd,0xc6,0xbd,0xa8,0x6,0xa,0x9a,0xd3, 0x2c,0xe,0x95,0x38,0xd2,0xd2,0xd2,0xf0,0xc2,0xb,0x2f,0x20,0x2b,0x2b,0xb,0xb6, 0x6d,0x23,0x12,0x89,0xe0,0xd4,0xa9,0x53,0x18,0x1a,0x1a,0x72,0xd4,0x7c,0xa8,0xd7, 0xf8,0xfc,0xf3,0xcf,0xe3,0xb3,0xcf,0x3e,0xcb,0x10,0x42,0xdc,0xd7,0xf2,0x73,0x6e, 0xf7,0xc1,0x60,0x30,0x96,0x92,0xf2,0xb0,0xc9,0x3f,0xaf,0xbc,0xb7,0x95,0xfe,0x47, 0x56,0x7d,0x7d,0xfd,0x58,0x20,0x10,0x90,0xed,0xba,0x81,0x7f,0xdd,0x52,0xa1,0x50, 0x8,0x19,0x19,0x19,0xb0,0x2c,0xcb,0xd1,0x78,0x90,0xc,0x3d,0xa9,0x3,0xaa,0x7f, 0x70,0xb7,0xe9,0x50,0x67,0x81,0x4f,0xa6,0x2c,0x28,0x6b,0x49,0x1d,0x7b,0x4a,0xdf, 0x53,0x55,0x55,0x85,0xd5,0xab,0x57,0x4b,0xf7,0xd2,0x99,0x33,0x67,0x30,0x38,0x38, 0xe8,0xb8,0x6,0xca,0x7e,0x8a,0xc7,0xe3,0xa8,0xad,0xad,0xc5,0xf9,0xf3,0xe7,0x57, 0x8,0x21,0xa2,0xf7,0x9d,0x88,0xb9,0x28,0x8f,0xc1,0x60,0x2c,0x21,0x65,0x61,0x24, 0x3,0xdc,0xd4,0x4d,0xd5,0x84,0x32,0xd8,0x27,0xe9,0x9a,0x4a,0xdf,0xb1,0x63,0x47, 0xf8,0xe2,0xc5,0x8b,0x13,0x7a,0x2f,0x91,0x11,0xb7,0x2c,0xb,0x86,0x61,0x48,0x5, 0xe0,0x1e,0x79,0x4a,0x9f,0x99,0xcc,0x7e,0x4e,0x65,0x57,0x55,0x92,0xa1,0x63,0x35, 0x4d,0xc3,0xb6,0x6d,0xdb,0xe0,0xf3,0xf9,0x90,0x48,0x24,0x10,0x8b,0xc5,0xd0,0xd4, 0xd4,0x84,0x81,0x81,0x1,0x79,0xbc,0xfb,0x9c,0xd5,0xd5,0xd5,0x8,0x4,0x2,0x2b, 0x28,0x98,0x4d,0xf7,0x7e,0xbf,0x9e,0x2d,0xbb,0xa1,0x18,0xc,0xc6,0x52,0x52,0x16, 0x6e,0x7f,0x7d,0x9c,0x5a,0x70,0x2b,0x8a,0x23,0x72,0xea,0xd4,0x29,0x14,0x17,0x17, 0x3b,0x8c,0x30,0xb9,0x82,0x6c,0xdb,0x46,0x2c,0x16,0x73,0xb8,0xa0,0xdc,0xe3,0x50, 0x67,0xb3,0xc8,0x76,0x77,0x93,0xd5,0x75,0x1d,0x8f,0x3e,0xfa,0x28,0x2a,0x2a,0x2a, 0xa4,0xeb,0xc9,0xef,0xf7,0x63,0x60,0x60,0x40,0x5e,0xf,0x11,0xa,0x5d,0x63,0x6d, 0x6d,0x2d,0x2,0x81,0x40,0xb6,0x10,0xe2,0x8e,0x12,0x9b,0xb9,0xaf,0x25,0xe6,0x4c, 0x16,0xc,0x6,0x63,0xa9,0xa9,0xb,0x4d,0x2d,0xd4,0x4b,0x1a,0x52,0xea,0xae,0xaa, 0x3,0xc0,0xea,0xd5,0xab,0xb5,0x73,0xe7,0xce,0x61,0xd3,0xa6,0x4d,0xe,0x92,0x50, 0x95,0x6,0x4d,0xde,0x53,0x5d,0x51,0x33,0x99,0xd5,0x3d,0x1d,0x91,0xb8,0xfb,0x56, 0xe5,0xe4,0xe4,0xa0,0xa6,0xa6,0x6,0x96,0x65,0x21,0x14,0xa,0xe1,0xf4,0xe9,0xd3, 0x32,0x98,0x4d,0xea,0x86,0xc6,0xc4,0xda,0xb6,0x8d,0xea,0xea,0x6a,0x9c,0x3f,0x7f, 0x7e,0x25,0x80,0x10,0xc5,0x63,0xd4,0x7b,0x65,0xb2,0x60,0x30,0x18,0x8c,0xe9,0x89, 0x42,0x1a,0x4f,0x2a,0xd4,0x53,0x8,0x83,0xe2,0x18,0x3a,0x0,0xac,0x5f,0xbf,0xde, 0x6c,0x6b,0x6b,0xc3,0x43,0xf,0x3d,0x24,0x89,0x80,0x56,0xf0,0x94,0x1,0x45,0x3d, 0xa3,0x66,0xa2,0x24,0x66,0xa2,0x38,0x54,0xb2,0xb1,0x6d,0x1b,0x1e,0x8f,0x7,0x7b, 0xf7,0xee,0xc5,0x83,0xf,0x3e,0x88,0x50,0x28,0x84,0x4f,0x3f,0xfd,0x54,0x2a,0xa, 0xcb,0xb2,0x1c,0xcd,0xe,0x75,0x5d,0x47,0x4d,0x4d,0xd,0x2,0x81,0x40,0x16,0x80, 0x90,0x72,0x3f,0xa6,0x98,0x83,0x78,0x2,0x93,0x5,0x83,0xc1,0x58,0x32,0x50,0x82, 0xd9,0x6a,0x35,0x37,0x4d,0x82,0x73,0x1f,0x93,0x28,0x28,0x28,0xd0,0x5b,0x5b,0x5b, 0x91,0x9d,0x9d,0x9d,0x32,0x16,0x41,0x29,0xb4,0xee,0x29,0x76,0xf7,0xea,0x8a,0xa2, 0xcf,0xd0,0xf9,0xaa,0xaa,0xaa,0x90,0x9f,0x9f,0x2f,0x15,0x45,0x7f,0x7f,0xbf,0x54, 0x13,0x54,0xeb,0x41,0xc7,0xee,0xde,0xbd,0x1b,0x6d,0x6d,0x6d,0x59,0x0,0x22,0x54, 0x78,0x98,0x3c,0x67,0x5c,0xbd,0x67,0x26,0xb,0x6,0x83,0xc1,0x98,0x21,0x61,0x28, 0xef,0x13,0xea,0x36,0xc5,0x55,0x43,0x35,0x19,0xa2,0xb4,0xb4,0x54,0xf3,0xfb,0xfd, 0x8e,0xa2,0x3b,0x3a,0x4c,0x6d,0x71,0x4e,0x59,0x4c,0xea,0x7e,0x37,0x9,0xa8,0xca, 0x61,0xba,0xf4,0xda,0x2d,0x5b,0xb6,0xa0,0xa4,0xa4,0x4,0xff,0xfc,0xf3,0xf,0xfc, 0x7e,0x3f,0xfa,0xfb,0xfb,0x1d,0x44,0x42,0xe7,0x25,0x52,0x69,0x6f,0x6f,0xcf,0x14, 0x42,0x84,0xe8,0x5e,0xd4,0xc2,0x43,0xf5,0x9e,0x99,0x2c,0x18,0xc,0x6,0xe3,0x3f, 0xb6,0x7d,0xd4,0x89,0xb5,0xba,0xba,0xda,0xf8,0xf8,0xe3,0x8f,0x1d,0xc6,0x5f,0xad, 0x94,0x76,0xc7,0x2a,0xa6,0xca,0x82,0x72,0x7f,0x56,0x7e,0xa1,0x42,0x3c,0x79,0x79, 0x79,0xa8,0xa9,0xa9,0xc1,0xc8,0xc8,0x8,0x5a,0x5a,0x5a,0x64,0x8c,0x42,0x55,0x2f, 0xf4,0x7d,0xbb,0x76,0xed,0x42,0x7b,0x7b,0x7b,0x16,0x92,0x13,0xee,0xe6,0xf5,0x81, 0x31,0x18,0xc,0xc6,0x32,0x51,0x1d,0x42,0xe9,0x1f,0x65,0x0,0xa0,0x55,0xba,0xfd, 0xf2,0xcb,0x2f,0x1b,0x47,0x8e,0x1c,0x71,0x18,0x75,0x0,0xd2,0xf0,0xcf,0xc4,0xfd, 0xa4,0xeb,0xba,0x6c,0x85,0xae,0x92,0xb,0xd5,0x6d,0x0,0x40,0x6e,0x6e,0x2e,0xf6, 0xee,0xdd,0x8b,0x58,0x2c,0x86,0x13,0x27,0x4e,0xa0,0xb7,0xb7,0xd7,0x41,0x14,0xea, 0xf7,0xef,0xd9,0xb3,0x7,0x1d,0x1d,0x1d,0x2b,0x93,0x8a,0x62,0x5e,0xeb,0x1c,0xb8, 0x28,0x8f,0xc1,0x60,0x2c,0x3b,0xce,0x48,0x6,0xc0,0x13,0x49,0x23,0x2d,0x8b,0xf8, 0x0,0x68,0x7f,0xfc,0xf1,0x87,0x78,0xf7,0xdd,0x77,0x65,0x95,0xb4,0x3a,0x5b,0x42, 0x55,0x1a,0xa9,0x40,0x2e,0x24,0xf5,0x45,0x63,0x4e,0x29,0xf5,0xb5,0xb6,0xb6,0x16, 0x5e,0xaf,0x17,0x4d,0x4d,0x4d,0xb8,0x71,0xe3,0x86,0x43,0x4d,0xd0,0x39,0x0,0xa0, 0xa6,0xa6,0x6,0x6d,0x6d,0x6d,0x73,0x56,0x47,0xc1,0x64,0xc1,0x60,0x30,0x18,0x49, 0xa8,0xdd,0x57,0x95,0xf8,0x85,0x46,0x4,0x92,0x5c,0xd1,0x6b,0xc3,0xc3,0xc3,0xe2, 0xc3,0xf,0x3f,0x74,0xc4,0x22,0xdc,0xd5,0xdc,0xa9,0xa,0xfa,0xd4,0x7d,0x6a,0xec, 0x81,0x88,0xc6,0xe7,0xf3,0x61,0xdd,0xba,0x75,0x38,0x71,0xe2,0xc4,0x84,0x49,0x7e, 0x6a,0x36,0x56,0x4d,0x4d,0xd,0x55,0x66,0xcf,0x59,0x1d,0x5,0x93,0x5,0x83,0xc1, 0x60,0x4c,0xc2,0x1d,0x49,0x35,0x21,0xd4,0x55,0x7b,0xd2,0x3d,0x65,0xed,0xdb,0xb7, 0x6f,0xec,0xf4,0xe9,0xd3,0xe,0x2,0x70,0x57,0x5e,0xa7,0x20,0xa3,0x94,0x71,0xb, 0xdb,0xb6,0x51,0x5c,0x5c,0x8c,0xcd,0x9b,0x37,0xe3,0xf8,0xf1,0xe3,0x18,0x18,0x18, 0x98,0xb4,0x35,0x48,0xb2,0x8e,0x62,0x5,0x80,0xa0,0x52,0x33,0x62,0x68,0x9a,0x66, 0xcf,0xa7,0x2b,0x8a,0xc9,0x82,0xc1,0x60,0x2c,0x1b,0x28,0x75,0x17,0x14,0xb7,0x50, 0xdf,0x9b,0xc9,0x8a,0x6f,0x22,0xd,0x6f,0x79,0x79,0x79,0xe8,0xd2,0xa5,0x4b,0x77, 0x55,0x6b,0x41,0xa4,0xa1,0xba,0xaf,0xd6,0xae,0x5d,0x8b,0x8a,0x8a,0xa,0xf8,0xfd, 0x7e,0xdc,0xb8,0x71,0xc3,0x71,0xac,0x1a,0x13,0xa9,0xae,0xae,0x46,0x5b,0x5b,0x9b, 0x17,0x40,0x54,0x51,0x40,0x66,0x32,0x3d,0x56,0x9b,0xcf,0x67,0xc7,0x1,0x6e,0x6, 0x83,0xb1,0x7c,0xa4,0xc4,0xbf,0xf1,0x89,0x4,0xd5,0x26,0x50,0xb0,0x5b,0x4d,0x45, 0x4d,0xee,0xb,0x1f,0x3d,0x7a,0xf4,0x8d,0xc2,0xc2,0xc2,0x7b,0x21,0x25,0x49,0x14, 0x5e,0xaf,0x17,0xbb,0x77,0xef,0xc6,0xe7,0x9f,0x7f,0x8e,0xee,0xee,0xee,0x9,0xee, 0x29,0xa,0x86,0x57,0x55,0x55,0x21,0x10,0x8,0x10,0x51,0xd8,0x94,0xa9,0x45,0xd7, 0x35,0xdf,0x1,0x6e,0x6e,0x24,0xc8,0x60,0x30,0x18,0x2e,0x32,0x51,0x8,0xc3,0x1e, 0x18,0x18,0x10,0x15,0x15,0x15,0xe8,0xed,0xed,0x95,0xd9,0x4a,0xee,0xb4,0x58,0x35, 0x7e,0xa1,0xee,0x37,0x4d,0x13,0x75,0x75,0x75,0xb8,0x7a,0xf5,0x2a,0xae,0x5d,0xbb, 0x36,0xc1,0xf5,0x44,0xbf,0x57,0x55,0x55,0xe1,0x8b,0x2f,0xbe,0xf0,0xa,0x21,0xc2, 0xb,0xf6,0xd9,0x30,0x59,0x30,0x18,0xc,0x86,0xc3,0xf0,0xeb,0xc9,0x85,0xbc,0x34, 0x8e,0x57,0xae,0x5c,0x11,0x3e,0x9f,0xf,0x43,0x43,0x43,0x13,0xc,0x3d,0xb5,0xc, 0x57,0xb7,0x91,0x6a,0x28,0x2e,0x2e,0xc6,0xc8,0xc8,0x8,0xae,0x5f,0xbf,0x9e,0x92, 0x60,0x84,0x10,0xf0,0xf9,0x7c,0xe8,0xe8,0xe8,0xc8,0x0,0x30,0x2a,0x16,0xb0,0x41, 0x66,0x37,0x14,0x83,0xc1,0x60,0x38,0x95,0x85,0xad,0xc6,0xb,0x0,0xa0,0xb0,0xb0, 0x50,0x6f,0x6f,0x6f,0xc7,0xda,0xb5,0x6b,0xa5,0x62,0xa0,0xa0,0x37,0x11,0x5,0x29, 0xb,0x42,0x5e,0x5e,0x1e,0x6e,0xdf,0xbe,0x8d,0xae,0xae,0xae,0x9,0xae,0x27,0x3a, 0xb6,0xb6,0xb6,0x96,0xea,0x28,0xa2,0xb,0xdd,0x1e,0x33,0x59,0x30,0x18,0xc,0x86, 0x8b,0x30,0x94,0x60,0x32,0x15,0xed,0x89,0xa2,0xa2,0x22,0xad,0xa3,0xa3,0x3,0x85, 0x85,0x85,0x72,0xa4,0xa9,0xaa,0x12,0x54,0x22,0xc8,0xce,0xce,0xc6,0xed,0xdb,0xb7, 0x71,0xfd,0xfa,0x75,0xe9,0x9a,0x52,0x5d,0x54,0xba,0xae,0xa3,0xba,0xba,0x1a,0xfb, 0xf7,0xef,0xdf,0x2c,0x84,0x18,0xa1,0x42,0xc1,0x5,0xfd,0x5c,0xd8,0xd,0xc5,0x60, 0x30,0x18,0xe,0xc3,0xef,0x18,0xa0,0x94,0xdc,0xa6,0x53,0xff,0xa5,0xc1,0xc1,0xc1, 0x73,0x7,0xf,0x1e,0xac,0x6f,0x6a,0x6a,0x92,0x4,0xa0,0x2a,0xc,0x77,0x9b,0x10, 0x1a,0x9f,0x4a,0x4,0xa3,0x69,0x1a,0x65,0x3d,0xc9,0x82,0xbb,0x45,0xf1,0x5c,0x98, 0x2c,0x18,0xc,0x6,0x63,0x52,0xc2,0x90,0xf1,0xb,0x95,0x30,0x0,0xa0,0xb1,0xb1, 0x51,0xbc,0xf5,0xd6,0x5b,0xe8,0xe9,0xe9,0x91,0xaa,0x42,0x25,0xd,0x8a,0x49,0x58, 0x96,0xe5,0x68,0x42,0x98,0x1c,0x85,0xba,0x92,0x14,0x5,0x92,0x4d,0xd,0x49,0xc1, 0x2c,0xd8,0x87,0xe2,0x6e,0xb9,0xcb,0x2f,0x7e,0xcd,0xe6,0xc5,0x60,0xcc,0xa7,0xbd, 0xc2,0x78,0x35,0xf6,0xa4,0xaf,0x19,0xfe,0xd,0x1b,0xee,0x73,0xa6,0x38,0xb7,0x91, 0xdc,0xb6,0xe2,0xed,0xb7,0xdf,0x16,0x45,0x45,0x45,0x2,0xe3,0xc5,0x7d,0x8e,0x9f, 0x86,0x61,0x88,0x24,0x19,0x8,0xc3,0x30,0xc4,0xeb,0xaf,0xbf,0x2e,0x0,0xa4,0xb9, 0xaf,0x7,0xe3,0xb5,0x1e,0xb,0xfa,0x7f,0x9b,0x95,0xc5,0xd2,0x5b,0x11,0xf1,0x43, 0x60,0x2c,0x8b,0x3f,0xf5,0x54,0x5c,0x32,0xcd,0xfe,0x99,0x40,0x57,0x8a,0xf2,0xe4, 0xaa,0x3f,0xd5,0x8a,0xdf,0xa5,0x3a,0xac,0x8b,0x17,0x2f,0xc6,0x4e,0x9e,0x3c,0x89, 0x1f,0x7f,0xfc,0x11,0x7f,0xff,0xfd,0x37,0xa2,0xd1,0x28,0x74,0x5d,0x47,0x6e,0x6e, 0x2e,0x4a,0x4b,0x4b,0xf1,0xea,0xab,0xaf,0x62,0xdb,0xb6,0x6d,0x9a,0xea,0xde,0x52, 0x5d,0x5c,0xee,0xed,0xec,0x86,0x9a,0x67,0x43,0xea,0xce,0x71,0x66,0x30,0x18,0x4b, 0x9e,0x54,0x66,0xfa,0x8f,0x3e,0x2b,0x63,0xa8,0xc6,0x37,0xba,0xbb,0xbb,0x8f,0x98, 0xa6,0xf9,0xba,0xc7,0xe3,0xc1,0x23,0x8f,0x3c,0xe2,0x11,0x42,0x8c,0x4d,0xd2,0x97, 0x6a,0xe1,0xbb,0x9f,0xe6,0x92,0x2c,0x52,0x19,0xe5,0xfb,0xf5,0xbd,0x4c,0x0,0xc, 0x6,0x23,0x95,0x62,0x98,0x1,0x69,0xfc,0x27,0x46,0xc9,0x35,0x68,0x49,0x23,0xd5, 0x30,0x13,0xb2,0x99,0xee,0xb8,0xf9,0x24,0x15,0xed,0xbf,0x36,0xe2,0x6c,0xac,0x19, 0xc,0xc6,0x2,0x26,0xc,0x37,0x69,0x88,0xff,0x80,0x30,0xd4,0xcf,0xd0,0x8c,0xc, 0xd,0x40,0xc2,0xf5,0xbd,0xf6,0x14,0xe7,0x9f,0x37,0x12,0x98,0x29,0x1,0xb1,0x65, 0x67,0x30,0x18,0xcb,0x9,0x6,0x66,0x5f,0x5f,0x26,0x66,0xb0,0xcf,0x48,0xfe,0x24, 0x82,0x50,0xb3,0x9e,0x52,0x11,0x94,0x98,0xe2,0xbc,0xda,0x3d,0xd8,0x6b,0x31,0xc9, 0x39,0xc4,0xdd,0xaa,0x1b,0xa1,0x44,0xf7,0x19,0xc,0x6,0x63,0xb9,0x40,0x3,0x60, 0xdd,0x23,0x61,0x88,0xe4,0xe7,0xc5,0x34,0x46,0xd9,0x56,0xde,0x4f,0x47,0x2c,0xb6, 0x72,0xfc,0x74,0xd7,0x3d,0x93,0xf8,0x8b,0x98,0xe5,0xfe,0x49,0x49,0x84,0x5b,0x94, 0x33,0xee,0x2b,0x68,0x1e,0x0,0x61,0xe3,0xc6,0x8d,0xf2,0x3d,0xd,0xa8,0xdf,0xb7, 0x6f,0x9f,0xdc,0xf6,0xd3,0x4f,0x3f,0x4d,0x79,0xbe,0x15,0x2b,0x56,0xa4,0xdc,0xee, 0xf1,0x78,0xee,0xea,0xba,0x2c,0xcb,0x9a,0xf9,0x52,0xd4,0x30,0xe4,0x7b,0xb5,0xf0, 0xea,0x6e,0x41,0xd5,0xbd,0x73,0xd,0x77,0x4f,0xa2,0xd9,0x40,0x6d,0x6d,0x91,0xa, 0x6a,0x3d,0xc1,0x54,0x88,0xc5,0x62,0x29,0xb7,0x5f,0xb9,0x72,0x65,0xca,0xcf,0xa9, 0x7f,0x2b,0xb3,0x54,0x6,0xd6,0x14,0xab,0xfc,0xd9,0x1a,0x5f,0x55,0x45,0xd8,0xca, 0xef,0xb6,0x42,0x52,0x2,0xe3,0x6e,0x2a,0xfb,0x2e,0xae,0x99,0x48,0x43,0x9f,0xa1, 0xd1,0x17,0x53,0xa8,0x94,0xc9,0x8e,0x4b,0xe9,0xa2,0xd3,0x34,0x4d,0xfb,0x3f,0x76, 0xcb,0x8f,0xd5,0x20,0x3f,0x7b,0x76,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae, 0x42,0x60,0x82, // /home/Adel/ZeGrapher/icons/bornes.png 0x0,0x0,0x7,0xee, 0x89, 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, 0x0,0x0,0x3c,0x0,0x0,0x0,0x3c,0x8,0x6,0x0,0x0,0x1,0x4d,0xfb,0xe9,0xe4, 0x0,0x0,0x0,0x1,0x73,0x52,0x47,0x42,0x0,0xae,0xce,0x1c,0xe9,0x0,0x0,0x0, 0x6,0x62,0x4b,0x47,0x44,0x0,0xff,0x0,0xff,0x0,0xff,0xa0,0xbd,0xa7,0x93,0x0, 0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xb,0x13,0x0,0x0,0xb,0x13,0x1, 0x0,0x9a,0x9c,0x18,0x0,0x0,0x0,0x7,0x74,0x49,0x4d,0x45,0x7,0xdb,0x4,0x6, 0x12,0xb,0x7,0x6,0xf4,0x84,0x26,0x0,0x0,0x0,0x19,0x74,0x45,0x58,0x74,0x43, 0x6f,0x6d,0x6d,0x65,0x6e,0x74,0x0,0x43,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x77, 0x69,0x74,0x68,0x20,0x47,0x49,0x4d,0x50,0x57,0x81,0xe,0x17,0x0,0x0,0x7,0x49, 0x49,0x44,0x41,0x54,0x68,0xde,0xed,0x9a,0x69,0x6c,0x55,0x45,0x14,0xc7,0x7f,0x5d, 0xd8,0x4b,0x59,0xa4,0xc8,0x2a,0x20,0x42,0x45,0x21,0x50,0x8c,0x62,0xd0,0x54,0x31, 0xac,0xa,0x8,0xc8,0x22,0x21,0xb8,0x81,0x80,0x4b,0x34,0x8a,0x4b,0x5c,0xc0,0x48, 0x44,0x45,0x3f,0x8,0xa2,0x88,0x4b,0x40,0x4,0x85,0x14,0x5,0x41,0x14,0x4,0x1, 0x49,0xc,0x11,0x31,0x60,0x42,0x51,0x4,0x34,0xda,0x82,0x6c,0x82,0x54,0x24,0x80, 0xa5,0x5c,0x3f,0xcc,0xb9,0xe9,0x74,0x98,0xbb,0xbe,0xf7,0x5a,0x45,0xfe,0xc9,0xcb, 0xbb,0x77,0x66,0xee,0xcc,0x9c,0x99,0x73,0xce,0xfc,0xe7,0xcc,0x40,0x2,0x70,0xbc, 0x32,0x32,0xf5,0x97,0xc,0xf9,0xdf,0xd,0x4c,0x3,0xfe,0x6,0x4a,0x80,0x83,0x61, 0x9a,0x98,0xd,0x90,0x6e,0x24,0xf6,0x3,0xae,0x91,0xe7,0x4d,0x7a,0xc6,0x4f,0xf2, 0x7f,0x7d,0xe4,0x1e,0x27,0x7,0xe,0x90,0xab,0x3d,0x67,0xdb,0xa,0xa5,0x1,0xd5, 0xf4,0x84,0x2b,0x80,0xbb,0xe5,0xb9,0x0,0xf8,0xd6,0xfc,0x62,0xb,0xd0,0x21,0xa8, 0xed,0x12,0xbf,0xcc,0x6a,0x71,0x25,0x72,0x25,0xd8,0x67,0x9b,0x7,0x1d,0x65,0xc0, 0x7a,0x23,0xed,0x4f,0x60,0x31,0xf0,0x83,0xed,0x83,0xd3,0xc6,0xfb,0x7c,0xf9,0xff, 0x46,0x1b,0x26,0x5f,0x79,0x1e,0x3,0xd6,0x6a,0xa,0xd7,0x55,0x9e,0xef,0xa,0x23, 0xd7,0x24,0xed,0x79,0xaf,0xf6,0x7c,0x4a,0x7b,0xae,0x6e,0xd3,0x9c,0xa3,0xf2,0x9f, 0x3,0xb4,0xd6,0xd2,0x9d,0x38,0xc6,0x32,0x1c,0x68,0xf,0xdc,0x48,0x55,0xc3,0xed, 0xdd,0x6d,0x9,0xfb,0x2,0x2f,0x25,0x99,0x1,0x6c,0xb4,0xa4,0x17,0x0,0x6f,0xf8, 0xd5,0xdc,0x53,0x7b,0x3e,0x69,0xe4,0xe5,0x78,0xd,0xee,0xa,0x63,0xfe,0x5c,0xeb, 0x68,0x19,0x24,0xc7,0x6e,0xed,0xb9,0xae,0x87,0x8c,0x43,0xc3,0xc,0xc6,0x5,0xc0, 0x18,0xe3,0x43,0xf7,0x7f,0x5e,0x18,0x25,0xd9,0x68,0x49,0xdf,0x5,0x74,0x2,0x7e, 0x9,0x33,0x15,0x57,0x49,0x2f,0x0,0xde,0x8c,0xe2,0x4,0xe7,0x48,0xa1,0x15,0x41, 0x2a,0xec,0xd6,0x7e,0x9d,0xe1,0x83,0x6f,0x9,0xe3,0xb0,0xdc,0x1a,0x6f,0xf5,0x98, 0xd3,0x26,0x71,0x55,0x71,0x4,0x30,0x37,0x25,0xeb,0x5a,0xaa,0x2d,0xb0,0x45,0x55, 0x75,0xe4,0x2d,0xe0,0x73,0x60,0x8,0x70,0x38,0xd1,0xca,0x56,0x1,0x5f,0x45,0x94, 0x3c,0x21,0x49,0xef,0x95,0xa,0x5c,0x83,0x1f,0x3,0x6c,0xf3,0x29,0x9f,0x63,0x34, 0xe8,0x0,0xad,0xc2,0x34,0x34,0xc5,0xf8,0xa8,0xba,0x45,0x92,0x65,0xc0,0xc4,0x38, 0xc3,0x98,0x69,0x49,0xdb,0x4,0xb4,0x3,0x1e,0x2,0xd6,0x1,0x47,0x8c,0x85,0x71, 0x87,0xac,0x48,0x7a,0xda,0x21,0xb1,0xdc,0xfe,0x9a,0x43,0x2e,0x13,0x1e,0x76,0xc6, 0xaf,0x3,0x69,0xc0,0xcf,0xc0,0x66,0x23,0xbd,0xa6,0x48,0xd6,0x4f,0x96,0x3c,0x13, 0x2d,0x25,0xbf,0xb1,0x31,0x12,0x37,0xc4,0x9d,0xcf,0x3a,0x52,0x41,0x5f,0x23,0xfd, 0xb8,0xf1,0x5e,0xc3,0x68,0xf0,0x79,0xa3,0xec,0x56,0xe0,0xf2,0x64,0x28,0x96,0xbe, 0xb6,0x65,0x7b,0x94,0x5d,0xd,0x14,0x1b,0x69,0xc7,0x80,0x6,0x89,0x78,0x9f,0x65, 0xc0,0x6,0xd1,0xce,0x6a,0xc0,0x9,0x8d,0x4f,0xfb,0x7d,0x7f,0x6d,0xd0,0xca,0x64, 0xb2,0xe6,0x7b,0xb4,0xf7,0x5d,0x86,0x94,0x65,0xf2,0x5d,0x3,0xf,0x9d,0xd9,0x4, 0x4c,0xd,0x23,0xd9,0xbb,0xc0,0xa2,0x0,0xd7,0x56,0x1f,0x18,0x2f,0xf9,0xad,0x13, 0x71,0x87,0x26,0x7f,0xcc,0x92,0xf9,0x48,0xb,0xf1,0x6d,0x7f,0xa0,0x33,0xd0,0x5d, 0xd6,0xb6,0x3a,0x5a,0xde,0xd1,0x44,0xe7,0x34,0x2c,0x8a,0x7c,0x94,0xcd,0x8a,0xf4, 0x10,0xa3,0x10,0x6,0x5b,0x85,0xba,0xff,0x7f,0xd1,0x47,0x23,0xfa,0x2e,0xde,0x3, 0x3e,0xad,0x8c,0xc6,0x8b,0x80,0xb1,0xf2,0xdc,0xb0,0xb2,0xd9,0x88,0xce,0x54,0x9b, 0x56,0x66,0xc3,0x3d,0xa5,0xd1,0xa5,0x61,0xb4,0x3a,0x8c,0x14,0x61,0xbf,0xab,0x27, 0xff,0xeb,0x92,0x31,0x74,0x8e,0xb8,0xd3,0x6e,0x11,0x87,0x3a,0x2d,0x91,0x46,0xef, 0x34,0x96,0xbd,0x8b,0x7d,0xca,0x1f,0x4,0x86,0xc9,0x73,0x2f,0xf1,0x88,0xb1,0x1a, 0x7d,0xce,0x48,0xfb,0x4e,0x98,0x4a,0xa6,0x7,0x21,0x37,0xa3,0x3d,0xc5,0x5a,0xd0, 0xc3,0x17,0xb5,0xe4,0xbf,0xbd,0x2c,0x87,0x3a,0x6,0x4b,0x67,0xe6,0x4a,0x7,0x96, 0x26,0xd3,0xc,0x26,0x78,0xe4,0x75,0xb5,0xd8,0xe4,0x61,0x4d,0x91,0x62,0xc1,0xe5, 0x58,0x8f,0xb,0xed,0xf9,0xdd,0xc8,0x6f,0x61,0x69,0xb4,0x26,0x50,0xaa,0x6d,0x53, 0xd3,0x44,0x8b,0x97,0x87,0x6d,0xb4,0xb1,0x11,0xb2,0x2,0xc8,0xb3,0x54,0xa0,0x13, 0xbb,0xc,0x60,0xa7,0xb1,0x37,0x5c,0x15,0x45,0xd2,0x6a,0xd2,0x68,0x33,0x23,0xfd, 0x75,0x60,0x89,0xc7,0xbe,0x31,0x5d,0x42,0x3d,0x7a,0x20,0xe9,0x15,0x91,0x3e,0x12, 0x32,0x2c,0x8d,0x3a,0xb2,0x55,0x1e,0x69,0xe1,0xc7,0xb3,0x8c,0xa9,0x18,0x6f,0x4c, 0xc3,0xc0,0x38,0x73,0x5d,0x60,0x99,0xcb,0x25,0x3e,0xa4,0xad,0x87,0x51,0x3e,0x57, 0xde,0xbb,0x7b,0x98,0x9b,0x15,0xfd,0x84,0x3d,0x9a,0xa6,0x75,0xda,0xc3,0x61,0x5c, 0x68,0x6c,0x71,0x5c,0x4e,0x3e,0x52,0xec,0xfc,0x37,0xa0,0x79,0x22,0xe4,0x7e,0xba, 0x96,0x76,0x99,0xa5,0x8c,0x6e,0x8a,0x6d,0xb5,0xf7,0xce,0x62,0xeb,0x91,0x90,0x2d, 0x15,0x4d,0x32,0xcc,0x67,0x25,0x50,0xe8,0x61,0xff,0xf9,0x46,0xda,0x5a,0x60,0x41, 0xd4,0x86,0x97,0x8a,0xd2,0x20,0xf3,0xf5,0x25,0x70,0x93,0xbc,0x4f,0xb3,0x44,0x82, 0xcc,0x35,0x77,0x7a,0x1c,0x2d,0xb7,0x39,0x8e,0x8e,0xd2,0xd8,0x2,0x8d,0xd4,0x7b, 0x61,0x42,0x10,0xeb,0x18,0x6,0x1c,0xf0,0x98,0x57,0x5d,0x4b,0x8b,0xb4,0xf7,0x77, 0x44,0x69,0x3e,0xf6,0x61,0xaf,0xa1,0xa8,0xce,0x3e,0x89,0x53,0xb8,0x38,0x63,0x9, 0xeb,0xed,0x45,0x5,0x1c,0xbb,0x3,0xdf,0x3,0x7b,0xb4,0xbc,0x6e,0xc0,0x13,0x89, 0xf2,0xa3,0x99,0xc0,0x27,0x1e,0x65,0x9a,0xa0,0x2,0x95,0x85,0x16,0x67,0x73,0x7b, 0xdc,0x86,0x7b,0xcb,0x90,0x7,0xd,0xd1,0x6,0x4b,0xda,0x16,0x6d,0x84,0x6a,0xc7, 0x95,0xba,0x75,0x88,0x72,0x1d,0x64,0xcf,0xbc,0x14,0x15,0xc7,0x77,0x50,0xc7,0x3d, 0x2e,0x35,0xca,0x8b,0xd3,0x70,0xa3,0x90,0x65,0x1f,0x44,0x45,0x66,0x9b,0x26,0x83, 0x33,0x47,0x69,0x58,0x67,0x92,0x3b,0xa3,0x36,0x94,0x4e,0xe2,0xe8,0x2b,0xe1,0x87, 0x34,0xaa,0x0,0xe3,0x38,0x8f,0x73,0xf,0x6f,0x8b,0xd,0xac,0xf4,0xc8,0x1f,0x28, 0xf9,0x7f,0x58,0x98,0xdc,0x7f,0x16,0xbd,0x45,0xa8,0x12,0x63,0x45,0x59,0x28,0xe9, 0xcb,0xcf,0xc5,0x99,0xae,0xb,0xfc,0x2a,0x2,0x3e,0xa9,0x2d,0x32,0xa3,0xaa,0xba, 0x63,0x69,0xc2,0x58,0xb2,0x53,0x54,0xff,0x66,0x11,0xb4,0xb4,0xb2,0x43,0x1d,0x36, 0xbc,0x2f,0x9d,0x39,0x85,0x3a,0xc0,0x6e,0x46,0x8c,0x28,0xa3,0x7,0x1a,0x69,0xb3, 0x3a,0x43,0x8,0xd3,0x5f,0x40,0x9b,0xaa,0x10,0x74,0xb2,0x46,0x7,0x9e,0x15,0x2a, 0xd9,0x6,0x78,0x1,0x15,0x78,0x2c,0x45,0x85,0xdf,0xe2,0x62,0x98,0xd4,0x7d,0x90, 0xf2,0x93,0xc4,0x2c,0xd4,0x89,0xa9,0x43,0xc5,0x40,0x77,0x4a,0x31,0x5c,0x13,0xf4, 0xe1,0x0,0x35,0x3c,0xa1,0x71,0xa3,0x28,0x8b,0xf8,0x87,0x52,0x7f,0x41,0x80,0x17, 0x5f,0x9d,0x4a,0x41,0xbb,0x68,0x82,0xce,0xa,0x60,0x34,0xf7,0x4b,0xb9,0x13,0xc2, 0x54,0x57,0x0,0xaf,0x2,0xf,0x84,0x88,0x54,0x1c,0x92,0x6f,0x87,0x85,0xd8,0xe9, 0xda,0xbc,0x78,0x64,0x2c,0x92,0x8a,0xbe,0xb6,0xcc,0x4a,0xc3,0x0,0x2a,0xdd,0x43, 0x54,0xd9,0x91,0xbd,0x42,0xb6,0x56,0x47,0x5b,0xd4,0x6d,0x17,0x7,0x75,0xf0,0x9a, 0x1e,0xe0,0x4,0x53,0x8a,0x74,0x9,0x1a,0xb9,0x9e,0xb0,0x54,0x36,0xa9,0x1f,0x89, 0x7d,0x6,0xa1,0x9d,0xec,0xb6,0x1c,0xe0,0x33,0x9f,0x72,0x57,0xca,0xce,0xad,0xd4, 0xd8,0xce,0x9b,0x31,0x87,0xf5,0x9c,0x7d,0x40,0x95,0x14,0x64,0xa3,0xe,0x85,0x1d, 0xe9,0x70,0x1e,0x15,0xcf,0x6f,0x9b,0x6b,0x33,0x3e,0xc5,0xa3,0x8e,0x47,0x25,0xff, 0x47,0xca,0xe3,0x92,0x26,0x32,0x65,0x8b,0xb9,0x5f,0xca,0x3e,0xe3,0xd3,0xa7,0xab, 0x65,0x17,0xd9,0x32,0x99,0x82,0xb6,0xd2,0x66,0xa4,0xd0,0x67,0xe3,0x96,0x86,0xba, 0x7b,0x71,0x4c,0xbc,0x63,0x76,0xc,0xcd,0xb9,0x4,0x75,0x5d,0xcd,0x41,0x1d,0x3, 0xda,0x4c,0x62,0xbe,0xb6,0x11,0x4c,0xc9,0xcc,0xe6,0x1,0x6b,0x34,0x77,0xef,0xd5, 0xd9,0x97,0x35,0x47,0xb5,0x57,0x96,0x9b,0x13,0xf2,0xed,0xd8,0x0,0x1b,0x6c,0x8a, 0x8a,0xd1,0x39,0x12,0xd5,0xb0,0xa9,0xf0,0x53,0x5a,0xfd,0x83,0xab,0x8a,0x48,0xd4, 0x40,0x9d,0xb3,0xba,0x1d,0x19,0x62,0x29,0xd3,0x4b,0x6c,0x71,0x1f,0xea,0xf2,0xa1, 0xd,0xb9,0xa8,0x93,0xc,0xdb,0x5a,0x3c,0x54,0xab,0xff,0x11,0x4b,0x7e,0x37,0x2d, 0x7f,0x74,0xaa,0x4,0xad,0x2f,0xbb,0x13,0xd7,0x71,0xe5,0x7,0x38,0x29,0x57,0x4d, 0x7,0x44,0xf0,0xb6,0x5d,0x34,0x2f,0x3e,0xdb,0xe2,0xa9,0x9b,0x8,0xd1,0x70,0x97, 0x9b,0x22,0x59,0xa6,0xb6,0x8a,0x56,0x35,0x48,0xb6,0xd0,0xe3,0xf0,0xbf,0xd1,0x50, 0xb,0x75,0x1c,0x54,0x26,0xbf,0xc9,0x11,0xeb,0x5f,0x29,0x81,0x9b,0x2c,0xcb,0xc0, 0xb8,0x7c,0x79,0x3b,0x2a,0xaa,0x98,0x69,0x68,0xdd,0x4c,0xa1,0x96,0xf3,0xe2,0x46, 0x99,0xa2,0x20,0x4b,0x54,0xcf,0x55,0xb3,0x17,0x2d,0x65,0xaa,0x4b,0xfa,0x7e,0xd4, 0xd,0xc3,0xc6,0x21,0xeb,0x5e,0xa8,0xed,0x6d,0x3b,0x7,0x10,0x8d,0x63,0x42,0x64, 0x52,0xb5,0x49,0xa1,0xb6,0x90,0x76,0x2f,0x2a,0x59,0x5f,0x9b,0x79,0x7d,0xb6,0xa6, 0xa2,0xa2,0x9e,0x3b,0xa8,0x18,0x4e,0x37,0x31,0x5a,0xea,0x1d,0x14,0xd0,0x8f,0x5, 0x52,0xee,0x48,0xb2,0x97,0x2b,0x3f,0x6,0xa5,0xa3,0xf,0xe5,0x37,0x51,0x4a,0xc4, 0x2e,0x8f,0xb,0x7d,0xec,0xa4,0xa9,0xe1,0x2e,0xb1,0xbf,0x56,0x31,0xdb,0x7d,0x5a, 0x1b,0xec,0x41,0x54,0x11,0x2e,0x15,0xd5,0xda,0x2e,0x6b,0xac,0x8e,0x59,0xd2,0xb9, 0x39,0xa8,0xa8,0x7e,0x21,0x2a,0xec,0xd8,0x30,0x62,0x1b,0xa3,0x34,0x41,0x27,0x26, 0x83,0x27,0x2f,0xf4,0x29,0xf3,0x5a,0xc0,0x4e,0xa4,0xa6,0xe4,0x9d,0xf6,0xa0,0x9d, 0xe9,0xa8,0x43,0x56,0x77,0x6b,0x67,0xee,0x5d,0xf3,0x9,0x17,0xd4,0xbf,0x8f,0xe4, 0x84,0x5c,0x19,0x20,0x9d,0x39,0x40,0xc5,0x40,0x71,0x1d,0x59,0x37,0x1d,0xe0,0x8e, 0x10,0xf5,0xb4,0x40,0xdd,0xbc,0x2c,0x16,0xcf,0x5b,0x2a,0xea,0xed,0xde,0x24,0xc8, 0xf5,0xf8,0x6e,0x84,0x94,0x79,0xa9,0x32,0xd5,0xb2,0x9e,0x74,0xd4,0x41,0xdd,0xf1, 0xcd,0x17,0x97,0x7f,0x98,0xe8,0xd7,0x75,0x33,0x84,0x80,0x38,0xb2,0xb4,0x4,0x45, 0x11,0x3f,0x10,0xfb,0xef,0x5c,0xd9,0x3b,0x24,0x64,0xf1,0x77,0x6d,0x65,0x71,0x82, 0x75,0x65,0xfa,0x50,0x54,0x84,0x34,0x74,0x14,0xcd,0xda,0x26,0x9b,0x84,0x1,0xa8, 0xb3,0xcb,0xa9,0xa8,0x3,0xb4,0x9b,0x93,0x15,0x60,0xf3,0x83,0x7b,0x88,0x92,0xc3, 0xd9,0xf7,0x11,0xe2,0x60,0xb0,0x70,0x68,0x1d,0xae,0x4d,0x9f,0x14,0x53,0x28,0x6, 0xbe,0x40,0xdd,0xbe,0xda,0x23,0xce,0xed,0x8c,0xa4,0x1f,0xe0,0xec,0x5b,0x59,0x49, 0x85,0x3b,0xc3,0x8d,0x92,0x5c,0x6f,0x86,0x85,0xa3,0xaf,0xa1,0xfc,0x10,0xbf,0xca, 0x90,0x2a,0x81,0x4d,0x5c,0x84,0xba,0x51,0xb8,0xa1,0x32,0xa2,0x19,0xff,0x6,0xe4, 0xa3,0x2,0xeb,0x73,0x39,0x8f,0xe4,0xe2,0x1f,0xd6,0x80,0xf7,0x8e,0x5d,0xe1,0x80, 0x77,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82, // /home/Adel/ZeGrapher/icons/logoLogiciel.png 0x0,0x0,0x14,0x47, 0x89, 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, 0x0,0x0,0x80,0x0,0x0,0x0,0x80,0x8,0x6,0x0,0x0,0x0,0xc3,0x3e,0x61,0xcb, 0x0,0x0,0x14,0xe,0x49,0x44,0x41,0x54,0x78,0xda,0xed,0x9c,0x89,0x7b,0x14,0x45, 0xde,0xc7,0x45,0x91,0x5d,0x10,0x2,0x39,0x48,0x48,0x26,0xc7,0xcc,0xe4,0xe,0x8, 0x12,0x12,0x20,0x31,0x40,0xc2,0x21,0x1,0x45,0x5,0x5d,0x6e,0x42,0x62,0x70,0xdd, 0x7d,0x56,0x14,0x41,0xc1,0x7d,0xf6,0x5d,0x7d,0x5d,0x4,0x14,0x76,0x41,0xe5,0x14, 0xe4,0xf0,0x40,0x20,0x5c,0xe1,0x14,0x42,0x48,0x22,0x47,0x10,0x44,0xe,0x15,0x5d, 0x8f,0xbd,0xef,0xf7,0xfa,0x17,0xea,0xad,0x5f,0xa5,0xab,0x53,0xdd,0x55,0x3d,0x5d, 0x3d,0x53,0x93,0x34,0x9b,0xee,0xe7,0xf9,0x3c,0x39,0x66,0x26,0x33,0x99,0xcf,0xf7, 0xf7,0xab,0xaa,0x3e,0xe6,0x8e,0x3b,0xbc,0xcd,0xdb,0xbc,0xcd,0xdb,0xbc,0xcd,0xdb, 0xbc,0xcd,0xdb,0xbc,0xcd,0xdb,0x2c,0xb6,0x6e,0x1e,0xb7,0x1d,0x4a,0xa4,0xdf,0x89, 0xe9,0x8e,0xb9,0x5b,0xa3,0x87,0x87,0xeb,0xa1,0xae,0xba,0x6b,0xfe,0xba,0x85,0x2b, 0xff,0x2e,0xcc,0xf,0xee,0xfd,0xbf,0x7f,0xa0,0xae,0xc2,0xa0,0xff,0xfd,0xbb,0x1c, 0xff,0xf3,0xb7,0xf0,0xf8,0xef,0xbf,0xca,0xf1,0x5f,0x7f,0x9,0x9f,0x7f,0xfd,0x59, 0x7,0xfc,0x69,0x1e,0xbb,0x85,0x23,0xff,0x87,0x98,0x18,0x4f,0xa8,0xbb,0xa4,0x86, 0xe4,0x9f,0x7f,0x32,0x0,0xfe,0x34,0x8f,0x8e,0x42,0xd0,0x4d,0x6b,0x25,0xf0,0xe0, 0x64,0x4f,0xa8,0x7b,0x84,0x2,0x3,0x65,0xf9,0xc7,0x1f,0x21,0x0,0xc9,0x9a,0xc7, 0x1e,0x4e,0x2,0x0,0xe3,0x46,0x4f,0x4c,0x2,0x26,0xd3,0x13,0xea,0x1e,0xa1,0x52, 0xfc,0xbd,0x1d,0xf0,0xa7,0x79,0xec,0xa9,0x79,0x95,0xda,0x60,0xf2,0xd0,0x1b,0xe3, 0xc3,0xc,0xee,0xea,0xe3,0xa8,0x9b,0x84,0xb6,0xf3,0x7,0x29,0xc0,0x9f,0xe6,0xb1, 0xb7,0xe6,0x55,0xaa,0xfd,0x77,0xd7,0xda,0x86,0x1f,0x53,0xdc,0xd5,0xab,0xd4,0x4d, 0x42,0x7,0xfe,0xed,0xf7,0x72,0xfc,0xb5,0xd,0xf0,0xa7,0x79,0x8c,0xd1,0xbc,0x76, 0x93,0x9,0x0,0x2c,0x21,0xfa,0x61,0x82,0x98,0x52,0xaf,0x4a,0xdd,0x25,0xb5,0x9d, 0xdf,0xd9,0x2,0xfe,0x34,0x8f,0xfd,0x34,0xaf,0xd2,0x1,0x88,0xc5,0x64,0x61,0xca, 0x3c,0xa1,0x1d,0x25,0x54,0x4e,0x2a,0xe1,0x2f,0xdf,0x73,0x14,0x8,0x0,0x7f,0x9a, 0xc7,0xd8,0x70,0x3,0x30,0xca,0x13,0xea,0x1e,0xa1,0x5,0x7f,0x16,0xf1,0x9d,0x25, 0xe0,0x2f,0x9c,0x0,0xf4,0xd0,0x1e,0x90,0x8d,0x19,0xdd,0xd5,0xc7,0x51,0x37,0x9, 0x35,0xf0,0xa7,0x6f,0x6d,0x1,0x7f,0x9a,0xc7,0x58,0xd9,0xa5,0x20,0x1f,0x0,0xaf, 0x4a,0x5d,0x23,0x94,0xf0,0x47,0x11,0xdf,0x8,0x51,0x12,0x0,0xaf,0x4a,0xdd,0x25, 0xd5,0xc0,0x1f,0x44,0xfc,0x56,0x47,0x4d,0x0,0x3c,0xa1,0x1d,0x27,0x54,0x42,0xaa, 0xce,0xef,0x45,0x7c,0x6d,0x40,0x4d,0x0,0x3c,0xa1,0xae,0x11,0x6a,0x45,0xfe,0xef, 0x44,0x7c,0xa5,0x28,0x0,0x5d,0x7c,0x1c,0x75,0x93,0x50,0x8e,0xef,0x45,0xdc,0xd2, 0x51,0x13,0x80,0x2e,0x3e,0x8e,0xba,0x49,0x68,0x48,0xbe,0xe3,0x51,0x12,0x0,0xaf, 0x4a,0x3b,0x49,0xea,0x77,0x22,0xbe,0xe4,0xf9,0x56,0xc4,0x17,0x4,0x35,0x1,0xf0, 0x84,0x46,0xb5,0x4a,0x9d,0x4a,0xb5,0xe5,0x9b,0x76,0xd4,0x4,0xc0,0x13,0xea,0x1a, 0xa1,0xed,0x7c,0xce,0xf3,0x5b,0x1e,0x35,0x1,0xf0,0x84,0xba,0x46,0x68,0x9e,0x90, 0x9b,0x3c,0x5f,0xb7,0xa1,0x26,0x0,0x5d,0x7c,0x1c,0x75,0x93,0x50,0x23,0x37,0x78, 0xbe,0x32,0xa2,0x26,0x0,0x5e,0x95,0xaa,0x97,0x1a,0xa6,0x50,0x6b,0xae,0xf3,0xdc, 0xba,0xae,0x26,0x0,0x9e,0xd0,0xe8,0x56,0xa9,0x53,0xa9,0x3c,0xd7,0x78,0xbe,0x6c, 0x43,0x4d,0x0,0x3c,0xa1,0xae,0x11,0x6a,0xcf,0x67,0x6,0xd4,0x4,0x40,0xa1,0xd0, 0xa4,0xc5,0xcf,0xa0,0x1,0x4b,0x9e,0x25,0x24,0x3f,0xbf,0xa8,0x9d,0x25,0xaa,0x79, 0x96,0x67,0x71,0x1b,0x3,0x9e,0x7b,0x6,0x25,0x2d,0x5a,0x88,0x32,0xde,0xdf,0x79, 0xdb,0x9,0x25,0x7c,0x21,0xe2,0x2a,0x47,0xee,0xe7,0x57,0x15,0x5,0x40,0x61,0x95, 0xf6,0xec,0xd9,0x13,0xf5,0xee,0xdd,0x1b,0xf5,0xe9,0xd3,0x7,0xf5,0xed,0xdb,0xb7, 0xc3,0x89,0x89,0x89,0x21,0xcf,0xdf,0xab,0x57,0x2f,0x12,0x82,0xdb,0x4d,0xa8,0x1c, 0x9f,0xea,0x28,0xa,0x80,0xba,0xb6,0xb,0x6f,0x3e,0x88,0x88,0x8b,0x8b,0x43,0xf1, 0xf1,0xf1,0x28,0x21,0x21,0xa1,0x43,0x81,0xe7,0xed,0xd7,0xaf,0x1f,0x9,0x60,0x32, 0xee,0x4,0x51,0x91,0x1a,0x45,0xa1,0x3a,0x37,0xe5,0x50,0x13,0x0,0x85,0xe3,0x28, 0xc8,0x7,0xf1,0x89,0x89,0x89,0x68,0xc0,0x80,0x1,0x84,0xe4,0xe4,0xe4,0xe,0x1, 0x9e,0x2b,0x29,0x29,0x89,0x4,0x1,0x42,0x90,0x82,0x87,0x3,0x37,0x54,0xa9,0x53, 0xa9,0xb9,0x37,0xae,0x70,0xe4,0xdc,0x64,0xf9,0x54,0xe3,0xb2,0x9a,0x0,0xa8,0x9c, 0x18,0xc5,0xc6,0xc6,0xa2,0xfe,0xfd,0xfb,0x13,0x21,0x3e,0x9f,0xf,0xa5,0xa6,0xa6, 0x46,0x44,0x5a,0x5a,0x1a,0x47,0x7a,0x7a,0x3a,0x7,0xbd,0xd,0x9e,0x13,0x82,0x0, 0x21,0xf4,0x41,0x0,0x5c,0x2a,0x94,0x13,0x4c,0x24,0x5f,0x26,0x82,0x73,0xb5,0xaf, 0xf0,0xb3,0xdd,0xe3,0xd4,0x4,0x40,0xe1,0xc4,0x8,0x5a,0x30,0x54,0x21,0x88,0x0, 0x31,0x19,0x19,0x19,0x11,0xe3,0xf7,0xfb,0x75,0x2,0x81,0x80,0x25,0x70,0x3b,0x3c, 0x67,0x4a,0x4a,0xa,0x9,0x61,0xf6,0xf3,0xcf,0x75,0x9a,0xd0,0x36,0x2e,0xf3,0x5c, 0xc7,0x72,0x35,0xda,0xbe,0xbf,0x42,0xe0,0x1e,0xab,0xdd,0x6e,0x87,0x9a,0x0,0x28, 0x9c,0x1c,0x41,0xe5,0x41,0x5,0x42,0xf5,0xd2,0x0,0xb0,0x2,0xc3,0x1,0xe4,0x6, 0x83,0x41,0x94,0x99,0x99,0x49,0xc8,0xca,0xca,0x12,0x2,0xf7,0x81,0xe7,0x83,0xf0, 0xc1,0x10,0x54,0xbe,0x77,0x77,0x87,0x8,0xb5,0x23,0xc7,0x24,0x3d,0x34,0x9f,0x70, 0xe4,0x5c,0xb3,0x46,0x4d,0x0,0x14,0xce,0x76,0xd9,0xe,0x60,0xd5,0xae,0xed,0x30, 0x57,0x3f,0xd,0x0,0x48,0xce,0xce,0xce,0x46,0x39,0x39,0x39,0x1c,0xf0,0x7b,0x8, 0x7,0xdc,0x1f,0x9e,0x7b,0xec,0xa2,0x67,0x50,0xd9,0x97,0xd7,0xa3,0x26,0x35,0x17, 0xbf,0xf9,0x22,0x74,0x39,0x44,0x9c,0x73,0xa1,0x6,0x3e,0xbb,0x64,0x8b,0x9a,0x0, 0x28,0x9c,0x18,0x3d,0x51,0x7f,0x10,0xd5,0x1e,0x39,0x84,0x16,0x1c,0x3d,0x4c,0x78, 0xf2,0x58,0x7d,0x68,0x8e,0xda,0xf3,0xe3,0x63,0x47,0xd0,0x7c,0xfc,0x37,0x73,0xe7, 0xce,0x26,0xa2,0x73,0x73,0x73,0x39,0x68,0x0,0x20,0x34,0x5,0xe5,0x63,0xd0,0x8c, 0x6f,0x6f,0x39,0x13,0x1a,0x42,0x2a,0xcf,0x25,0x3,0x39,0x98,0x6c,0x10,0xa2,0x48, 0xaa,0x25,0x57,0x5b,0x39,0xd4,0x4,0x40,0xe1,0xc4,0xa8,0xec,0xd6,0xd,0x39,0x70, 0x75,0xca,0x71,0x8d,0x90,0xdd,0x70,0x1c,0x65,0xe,0x19,0xa2,0x7,0x20,0x2f,0x2f, 0x8f,0x0,0xdf,0x43,0x7,0xa0,0x43,0x0,0x74,0x9d,0xb9,0xd,0x27,0x23,0x12,0x4a, 0xa4,0x86,0x10,0x1,0xb2,0xb3,0xaf,0xb5,0xa1,0x5a,0xa8,0x90,0x4f,0x2f,0x5a,0xa2, 0x24,0x0,0x6e,0x98,0x18,0xd9,0x11,0x18,0x5b,0x41,0x2a,0xdc,0x2a,0x0,0xb4,0xfd, 0x3f,0xf4,0xf2,0x4b,0x68,0x38,0xcc,0xa4,0x1d,0x8,0x95,0x91,0x92,0xd,0x5f,0xf1, 0xed,0x69,0xdb,0xb7,0xa0,0xe4,0x17,0x5f,0x40,0x89,0x35,0x55,0x28,0xb6,0xec,0xfe, 0x90,0x24,0x56,0x57,0xa1,0xd4,0x15,0xaf,0xa0,0xc0,0xbe,0xf,0xa4,0x85,0xda,0x72, 0xe5,0x82,0x1,0x35,0x1,0xe8,0x24,0xa9,0xb2,0x15,0xea,0x5f,0xba,0x98,0xb4,0x76, 0xa8,0x70,0x36,0x0,0x6c,0xf5,0xc3,0x3c,0xa1,0xf0,0xe1,0x29,0xe8,0xd1,0xaf,0x6e, 0x86,0x57,0x65,0x22,0xe9,0xf8,0xd,0xf,0x36,0x9f,0x41,0xbe,0x57,0x5f,0x41,0x9, 0x93,0x26,0x92,0x9d,0x4b,0xb0,0xa7,0x11,0x80,0xfd,0x1d,0xb0,0xaf,0x21,0x14,0x74, 0xcf,0x24,0x3c,0xee,0x9e,0x7b,0xee,0x41,0xfd,0xee,0x2f,0x41,0xa9,0xeb,0x56,0xa3, 0xcc,0xe6,0x6,0x4b,0xa1,0x96,0x5c,0x3e,0xcf,0x91,0x8d,0x51,0x13,0x0,0x55,0x42, 0xa3,0xd0,0x76,0x33,0xf7,0xef,0x21,0xcb,0x3a,0x98,0x1c,0xb2,0x1,0x60,0xc7,0x7e, 0xf8,0x7d,0x70,0x60,0x1,0x9a,0x7b,0xbe,0x39,0xa2,0x76,0xa,0x80,0xf4,0x6c,0xfc, 0x86,0xfb,0xf7,0xbc,0x87,0xfa,0x3f,0x3e,0x4d,0x97,0xe,0x42,0x61,0x1f,0x87,0x93, 0x3d,0x9c,0x70,0x3f,0x0,0x1e,0x7,0x61,0x80,0xbd,0xa4,0xb0,0xab,0x3c,0xb0,0x75, 0x93,0xa5,0x50,0x29,0x3e,0x39,0xa7,0xa3,0x26,0x0,0x1d,0x28,0xd4,0x49,0xdb,0xcd, 0xfa,0xb8,0x11,0x25,0xdd,0x3b,0x88,0x4,0x0,0x3a,0x0,0x3b,0x4,0x98,0x27,0x7e, 0x3f,0xda,0xb4,0x1e,0xdd,0x7,0x7f,0x4b,0xb2,0x75,0x9a,0xc9,0xbe,0xd2,0x26,0x1f, 0xaa,0x93,0x8a,0xa7,0xd2,0xa9,0x70,0xd8,0xb7,0x0,0xcb,0x4b,0x58,0xe5,0x0,0x74, 0x4f,0xa7,0x15,0xf4,0x7e,0xf0,0x38,0xf8,0x1b,0x64,0x2f,0x29,0x7e,0xcd,0xa5,0xf8, 0xfd,0xa,0x25,0xd5,0x92,0x4b,0x1f,0x73,0xa8,0x9,0x40,0x7,0x9,0x75,0x3a,0xe1, 0x49,0xae,0xad,0x21,0x6f,0x38,0x2c,0xeb,0x60,0x7c,0x7,0xd9,0xec,0xd2,0xf,0x5a, 0x3f,0xfc,0x7e,0xe4,0xec,0x59,0xe8,0x81,0x9b,0x57,0xc3,0x6a,0xa7,0xd9,0xe4,0xe7, 0xb6,0xdf,0xa7,0x6f,0xdb,0x84,0x62,0x52,0x92,0xf5,0x63,0x19,0x20,0x9d,0xa,0xa7, 0xbb,0xb4,0x21,0x8c,0x66,0xe0,0xf5,0x99,0xa1,0xb7,0xd1,0x5d,0xd4,0x10,0x2,0xf8, 0x9b,0x79,0xb3,0x66,0xd8,0x4a,0x95,0xa6,0xb5,0x45,0x4d,0x0,0x3a,0x4a,0xa8,0x93, 0xc9,0x4d,0xc6,0xb6,0xcd,0xfa,0x4e,0x25,0x98,0xd9,0xc3,0x18,0xf,0xc2,0x59,0xf9, 0xb4,0xf5,0xcf,0xbb,0xfa,0x89,0xb0,0xa5,0x72,0xe0,0x37,0x3c,0x87,0x7d,0xf3,0x99, 0xa,0x4c,0x5d,0xbb,0x9a,0xb4,0x7a,0xa8,0x78,0x2a,0x1e,0x9e,0x9b,0x15,0x6c,0xde, 0x4d,0x2d,0x12,0xcf,0xde,0x97,0x7e,0xf,0x21,0x80,0x10,0xc1,0xff,0x33,0x76,0xf3, 0x86,0x90,0x42,0xa5,0xb8,0xd8,0x8e,0x9a,0x0,0x44,0x43,0xaa,0x6c,0x35,0xa,0xc8, 0x6a,0x3a,0x8d,0x62,0xd3,0x52,0xf5,0xea,0x67,0xdb,0x3f,0x85,0xb6,0xfe,0xd9,0xbb, 0x76,0xa0,0x81,0x22,0xb9,0x2,0xb2,0x0,0x41,0xcb,0xf5,0x7f,0xf8,0x2e,0xea,0xeb, 0x4b,0x21,0x15,0xa,0x95,0x4a,0xc5,0x9b,0x8f,0x47,0xd0,0x9f,0x3,0x78,0x2,0x5a, 0x32,0x73,0x6,0x7a,0xf0,0x97,0xbf,0xb0,0x64,0xcc,0x82,0x5a,0x74,0x6f,0x79,0x39, 0x17,0x80,0x31,0xb0,0x84,0xc,0x21,0xb4,0x9d,0x66,0x29,0xd4,0x4,0x20,0xcc,0x2a, 0x75,0x84,0x4c,0x85,0x6a,0x22,0x13,0x27,0x57,0x92,0x2a,0x84,0x37,0xe,0x26,0x7f, 0xb4,0xfa,0x59,0xf9,0xd0,0xfa,0xc7,0x3d,0xf7,0x2c,0x1a,0x73,0xed,0x72,0xc8,0x76, 0x9a,0x75,0xa9,0x5,0x3,0x5f,0xc5,0xf7,0xf1,0xef,0xde,0x85,0xfa,0xa6,0xb4,0xc9, 0x87,0xc0,0x51,0xf1,0xec,0x5e,0x4c,0x2a,0xbf,0xfc,0xc9,0x5,0xa8,0xf6,0x60,0x1d, 0x5a,0xfa,0xdd,0xd7,0xa8,0xfa,0xd6,0x4d,0xf4,0x8,0x1e,0x76,0x84,0xdc,0xb8,0x8a, 0x66,0x7f,0x71,0x1d,0xfd,0xec,0xeb,0x2f,0xd1,0x7f,0x7c,0xff,0xd,0x79,0x4c,0xe5, 0xcf,0x97,0xa1,0xd2,0xf9,0x55,0xf6,0x52,0x2f,0x34,0x49,0x91,0x75,0xbe,0xd,0x35, 0x1,0x88,0xb2,0x50,0x33,0xa1,0xaa,0x34,0x75,0xf9,0xcb,0xfa,0xee,0x64,0x78,0xd3, 0xe9,0xd8,0x4f,0xe5,0xd3,0x25,0x5f,0x4e,0x71,0x31,0x9a,0xfa,0xc9,0x5,0xcb,0xd6, 0x99,0xd5,0x4a,0xc5,0x5b,0x8f,0xa1,0xc1,0xc6,0x93,0x28,0x6e,0xe8,0x7d,0x6,0xf9, 0x20,0x9b,0xdd,0x15,0xd,0x1,0x28,0x9d,0x35,0x13,0x2d,0xbd,0x79,0x8d,0x48,0x2d, 0xbd,0xd2,0xea,0xb8,0x4a,0x4b,0xf1,0x1c,0xe3,0x91,0xeb,0x57,0xd0,0xec,0xcf,0xaf, 0xd9,0xa,0x35,0x72,0xd6,0x16,0x75,0x1,0x88,0x92,0x50,0x27,0x13,0x9e,0x40,0xfd, 0x7e,0xd2,0xfa,0xa1,0xd,0xd3,0x99,0x3f,0x7b,0xc,0x80,0x3d,0xe0,0x33,0xa7,0x6e, 0xf,0x2a,0x10,0xc8,0xcf,0xc2,0x6f,0x38,0x20,0x33,0x8e,0xf6,0x9f,0xf6,0x28,0x19, 0xf3,0xa9,0x7c,0x90,0xcd,0x1e,0x84,0x82,0x9f,0x67,0x6e,0x5c,0x8f,0xab,0xfd,0x6, 0x2a,0x68,0x6d,0x9,0xbb,0x4a,0x9d,0x4a,0x25,0x9c,0x6b,0x94,0x42,0x4d,0x0,0xa2, 0x24,0xd4,0xe9,0xe4,0x26,0x7e,0xd4,0xfd,0x52,0xad,0x1f,0xc6,0xd8,0x52,0x58,0xb6, 0x31,0x55,0xa6,0x8b,0x97,0x1c,0x47,0x33,0xb6,0xac,0x27,0xcb,0x3c,0x1a,0x36,0x2a, 0x9f,0x1e,0x5a,0x86,0x90,0x95,0x3f,0x59,0x8b,0x26,0x5c,0xbd,0xd4,0xa1,0x42,0x61, 0xe9,0xcb,0x73,0xc6,0x12,0x25,0x1,0x70,0x2c,0x55,0x76,0xb6,0x2a,0xac,0x3c,0xb1, 0x90,0x94,0x17,0x16,0x4b,0xb5,0xfe,0x81,0x15,0xe5,0xa4,0x9d,0xea,0x52,0x2e,0x62, 0xe0,0x7b,0x87,0xe3,0x68,0x7c,0x59,0xa9,0x1e,0x36,0x68,0xfb,0xf0,0x7c,0x64,0x55, 0x81,0x81,0xef,0xb,0x1f,0x7a,0x8,0xb7,0xec,0xcf,0x3a,0x5c,0xa8,0x81,0x96,0x6, 0x5b,0xd4,0x4,0x20,0x4a,0x52,0xf9,0x9,0x8e,0x88,0x26,0xe4,0x7f,0x6f,0xbb,0xde, 0x8a,0x45,0xb3,0x7e,0xda,0xfa,0xa1,0x4a,0xe7,0x1c,0xab,0x47,0xd9,0x58,0x40,0x36, 0x11,0x11,0x5e,0xcb,0x4d,0xdf,0xf4,0x16,0x17,0x36,0x7a,0xbe,0x1,0xe9,0x0,0x5, 0x5,0xa8,0xfa,0xf2,0xc5,0x4e,0x11,0x4a,0x68,0x16,0x71,0x5a,0x88,0x9a,0x0,0x28, 0x16,0x2a,0x85,0x26,0x11,0x88,0x2f,0x1c,0x6a,0x68,0xfd,0xec,0xb8,0xcf,0xb6,0xfe, 0xa9,0xab,0x56,0xa0,0xc2,0xd6,0x8f,0x23,0x6e,0xbb,0xfd,0x2b,0x1f,0xe0,0xe6,0x19, 0xf4,0x64,0x13,0x32,0xc4,0xac,0x58,0x8e,0xf2,0xcf,0x35,0xaa,0x93,0xea,0x40,0xa8, 0x99,0xcc,0x26,0x11,0xa7,0x74,0xd4,0x4,0x40,0xb1,0xd0,0x50,0x64,0x9d,0x33,0x92, 0x34,0x6f,0x8e,0x70,0x87,0x8f,0xb9,0xf5,0xf,0x7d,0x70,0x32,0x9a,0xf4,0xe9,0x25, 0x25,0x6d,0x37,0xe,0x3f,0x8f,0xf9,0xf9,0xd8,0x2e,0xf3,0x40,0x4b,0x63,0xa7,0x4a, 0xd5,0x39,0x2b,0xe2,0x23,0x3,0x6a,0x2,0xa0,0x50,0x68,0x1b,0x72,0xe3,0x63,0xfa, 0xc6,0x37,0xc,0xad,0xdf,0x6a,0xdc,0xf7,0xe7,0xe7,0xa3,0x39,0x8d,0xa7,0x95,0xb4, 0xdd,0xf4,0xd,0xeb,0x48,0xb7,0x61,0x8f,0x2f,0xd0,0x0,0xc0,0x73,0xd,0x7e,0xfc, 0x31,0x94,0xdf,0x72,0xa6,0xd3,0x84,0x5a,0xd2,0x28,0xe2,0xa4,0xa2,0x0,0x28,0x12, 0x2a,0x2f,0xe5,0xc,0xa,0x9e,0xa8,0x47,0xb1,0x39,0xd9,0x86,0x59,0x38,0xdb,0xfa, 0x69,0x4b,0x6,0x49,0xb3,0x76,0x6c,0x43,0x83,0x61,0x3c,0x57,0x30,0x8e,0x26,0x3f, 0xb5,0x80,0x4,0x8e,0xec,0xd1,0x63,0xba,0xd,0x7d,0xae,0xe2,0x97,0x7e,0xd1,0xa9, 0x42,0x39,0xce,0x88,0x38,0xa1,0xa3,0x24,0x0,0xaa,0xa4,0xf2,0x58,0xb,0x4a,0xc4, 0x6b,0x70,0xab,0xd6,0xf,0x5f,0xe9,0x78,0x3c,0x72,0xe6,0x74,0x34,0xfa,0xd2,0x39, 0x65,0x2d,0x37,0xa9,0x72,0x22,0x79,0x4e,0x8,0x1c,0xdb,0x6d,0x68,0xfb,0x1f,0xb5, 0x7d,0x6b,0xa7,0xa,0xd,0x49,0x3,0x8f,0x9a,0x0,0x28,0x10,0x6a,0xac,0xbe,0xd0, 0x42,0xd2,0x5e,0x7b,0x95,0xb4,0x7e,0xd1,0x92,0x8f,0x6d,0xc7,0x41,0x3c,0x1b,0x9f, 0xd3,0x7a,0x4e,0x69,0xdb,0xed,0x3f,0xac,0x90,0x74,0x1c,0x78,0x4e,0x7a,0x70,0x89, 0x6,0x0,0x5e,0xcb,0x48,0xdc,0x69,0x9c,0x48,0x4d,0xdb,0xb6,0x9,0xa5,0xae,0x5b, 0xe3,0x98,0xf4,0xdd,0x3b,0x85,0x42,0x33,0xe1,0xd4,0x37,0x33,0xa7,0x45,0x1c,0x23, 0xa8,0x9,0x40,0x84,0x42,0x75,0x9a,0x44,0x9c,0x32,0x90,0x79,0xfc,0x10,0x8a,0x4d, 0x35,0xee,0xed,0x3,0xd9,0x6c,0x0,0xe8,0xde,0xbe,0x79,0x7b,0x77,0xa3,0xbc,0xe6, 0xd3,0x4a,0xdb,0x2e,0x8c,0xff,0x30,0xdf,0x80,0xe7,0xa4,0x67,0x18,0xc3,0x57,0xf8, 0x19,0x7e,0xef,0xb4,0x4a,0x63,0x8a,0x87,0x91,0xeb,0x10,0xe9,0xf5,0x90,0xec,0x59, 0x43,0x66,0xe0,0x36,0x7a,0x52,0x48,0x42,0x75,0x95,0xa5,0x54,0x96,0xa0,0x88,0x53, 0xed,0xa8,0x9,0x40,0x4,0x42,0xad,0xb0,0x12,0x15,0x5f,0x5a,0xa2,0x2f,0xf9,0x68, 0xf5,0x8b,0x96,0x7c,0x15,0xb,0x7f,0x66,0xac,0x46,0x45,0x6d,0x17,0x82,0x7,0xcf, 0x4b,0xcf,0x2e,0x62,0xcf,0x2b,0x80,0x40,0xca,0xb4,0x5d,0xb6,0x3a,0xfb,0xd,0x2f, 0xd6,0x2f,0x84,0xa5,0x67,0xc,0x51,0xe8,0x19,0x41,0x0,0xfc,0xc,0xb7,0xd3,0xeb, 0x16,0xfb,0xd7,0x54,0x9,0x85,0xb6,0x73,0x94,0xe7,0x23,0x1e,0x35,0x1,0x88,0x40, 0xa8,0x13,0x29,0x3,0x16,0x2d,0x34,0x5c,0x37,0x60,0x35,0xeb,0xcf,0x2d,0x2a,0x42, 0x8f,0xb4,0x9c,0x8d,0xca,0x38,0xa,0x13,0x40,0x98,0x73,0x40,0x0,0xcc,0x27,0x96, 0x90,0x0,0x48,0xb4,0x5d,0x96,0xd8,0x91,0x23,0x88,0x54,0xab,0xb3,0x86,0xe8,0xc9, 0x24,0xf0,0x15,0x7e,0x4f,0xaf,0x5b,0x4c,0xaa,0xad,0x16,0xa,0x15,0x73,0x84,0xe7, 0x64,0x1b,0x4a,0x2,0x10,0x89,0x54,0x5b,0x34,0x41,0xe9,0xdb,0x36,0xe3,0xd6,0xef, 0x93,0x3a,0xd0,0x53,0x7d,0xf4,0x30,0xca,0x6b,0x3c,0x19,0xf6,0xc4,0x28,0xd4,0x38, 0xa,0x22,0x20,0x0,0xec,0xd9,0x45,0x34,0x0,0xd0,0x95,0xec,0x5a,0xae,0xb9,0x42, 0xe3,0x4a,0x46,0xe8,0xd7,0x43,0x9a,0xcf,0x1c,0x32,0x9f,0x44,0x2,0xbf,0xa3,0xd7, 0x2d,0xe,0x20,0x1,0xe0,0x85,0x1a,0xa9,0xe7,0x39,0x61,0x44,0x4d,0x0,0xc2,0x10, 0x6a,0x5b,0x7d,0x26,0x29,0xb1,0xf7,0xd,0x21,0xff,0xb8,0xdd,0xde,0xbe,0xc9,0x3f, 0x5f,0x86,0xa,0x9b,0x1a,0x22,0x9e,0x1c,0x59,0x8d,0xa3,0x29,0x83,0x6,0x5a,0x6, 0x80,0x2c,0x47,0xdf,0xde,0x68,0xdb,0x76,0x59,0x52,0xee,0x2f,0xd5,0xf,0x27,0xb3, 0x67,0x10,0xd1,0x73,0xa,0xcc,0x87,0x96,0xe9,0x65,0x6b,0xc9,0xb,0x6a,0x84,0x42, 0xad,0x39,0xcc,0x73,0xfc,0xb0,0xa2,0x0,0x84,0x21,0xd4,0x52,0x8a,0x80,0xc4,0x5, 0xd5,0xa4,0x4a,0xe8,0x35,0x83,0xe6,0x71,0x5f,0x3f,0xd0,0x33,0x66,0x34,0x7a,0x18, 0xcf,0xfa,0x23,0x9d,0x18,0x85,0x1a,0x47,0x33,0x2a,0xca,0x43,0x7,0x0,0xcf,0xd0, 0xed,0xda,0x2e,0xcb,0xf8,0x95,0xcb,0xd1,0x84,0x25,0xcf,0xa1,0x89,0x2f,0x2c,0x41, 0x95,0x4b,0x9f,0x47,0x93,0x96,0xbd,0x80,0x26,0x2f,0x5b,0x8a,0x1e,0x7c,0x71,0x19, 0xa,0x14,0x16,0xea,0x97,0xb5,0x1,0xf0,0x7d,0x9a,0xb6,0x17,0x12,0xce,0x77,0xb4, 0x92,0xca,0x73,0x88,0x23,0x70,0xac,0xd,0x35,0x1,0x70,0x28,0x54,0xba,0xf2,0xb0, 0x84,0xb4,0x2d,0x1b,0x6c,0xf7,0xf6,0x91,0x37,0xa7,0x20,0x1f,0xcd,0x3a,0x54,0xa7, 0x64,0x62,0x14,0x6a,0x1c,0xcd,0x7f,0x62,0xbe,0x3e,0x7,0x10,0xad,0x2,0x52,0xe6, 0xce,0xb2,0x6d,0xbb,0x2c,0x63,0xf1,0xf2,0x78,0xca,0xf9,0x66,0x8d,0x26,0x3,0x81, 0x9,0xe3,0xf5,0xe3,0xc,0x74,0xdf,0x6,0x74,0x2,0x72,0xc2,0x28,0x74,0x0,0x81, 0x50,0x7b,0xe,0x1a,0x50,0x13,0x0,0x49,0xa1,0x99,0xa7,0x44,0x1c,0xe5,0x8,0x9c, 0x3a,0x42,0x24,0xfa,0xf,0xed,0x43,0xb1,0xd9,0x59,0xfa,0xae,0xd7,0x50,0xad,0x7f, 0xca,0xf2,0xff,0x44,0x43,0xf1,0x7c,0x43,0xc5,0xc4,0x28,0xd4,0x38,0x5a,0x8c,0x9f, 0x87,0xee,0x5,0x34,0x7,0x0,0x7e,0x9f,0x54,0x34,0xcc,0xb6,0xed,0xca,0x56,0x68, 0xfa,0xf8,0xb1,0xdc,0x3c,0x87,0x5e,0xbc,0xa,0x1d,0x40,0x24,0x94,0x70,0x54,0xc4, 0x1,0x9e,0x23,0x7,0x14,0x5,0x40,0x42,0xaa,0x6c,0xf5,0x5,0xb0,0x88,0x80,0x76, 0x7b,0xe2,0xcc,0xe9,0x52,0x7,0x7a,0xa,0x1f,0x9c,0x8c,0x2a,0x71,0xc5,0x84,0x23, 0xd4,0xe9,0x38,0x5a,0xb6,0xff,0x43,0xbd,0x13,0x99,0x77,0x4,0xc1,0x6b,0x84,0x89, 0x9c,0x7f,0xd7,0x36,0xcb,0x96,0xeb,0xa4,0x42,0xd3,0xc6,0x55,0x70,0x7b,0x38,0xf5, 0x4e,0x83,0x3b,0x80,0x48,0xa8,0x1c,0xfb,0x75,0x94,0x4,0x20,0x74,0x3b,0x95,0xab, 0xb4,0x0,0x16,0x11,0x80,0xef,0xb5,0xc7,0xf9,0x96,0xbf,0x6c,0xb9,0xb7,0xcf,0xd0, 0xfa,0xf3,0xf3,0x51,0xd5,0xc7,0x67,0x23,0x92,0xea,0xa4,0x4a,0x7,0xe1,0xd7,0x9f, 0x59,0x5a,0xa2,0x1f,0x8,0x62,0x2f,0x2d,0x87,0xe,0x45,0x96,0x6c,0x8f,0x4c,0xb1, 0x6c,0xb9,0x4e,0x2a,0xd4,0x57,0x3e,0xc6,0x30,0xdf,0x31,0x4,0x0,0x3a,0x80,0x40, 0xa8,0x4e,0xbd,0x1c,0x6a,0x2,0x70,0xd2,0xaa,0xda,0xe4,0xaa,0x2f,0x0,0x22,0xd8, 0x30,0x1c,0xdc,0x83,0x62,0x7d,0xfc,0x92,0x8f,0x6d,0xb9,0xb4,0x1d,0xce,0x7c,0x7b, 0x33,0xca,0x85,0xc7,0x29,0x6a,0xbb,0x32,0x94,0x2e,0x7a,0xc6,0x30,0xf,0x30,0xb7, 0x67,0x78,0xdd,0x69,0xab,0x57,0x59,0xb6,0x5d,0xd9,0x2a,0x85,0x0,0xb0,0x27,0xb7, 0x18,0x3,0x50,0x6d,0x2d,0xf6,0x70,0x9d,0x4,0xfb,0x8,0x8a,0x2,0x60,0x57,0x79, 0xd6,0x52,0x2,0xf0,0xd5,0x74,0xff,0x84,0x71,0x63,0x43,0x5e,0xd4,0x41,0x2b,0xae, 0x64,0xc6,0x74,0x54,0x76,0xf6,0x54,0xc4,0x42,0x9d,0x56,0xe9,0x84,0x3,0x7b,0x51, 0x5a,0x4e,0xb6,0xb0,0x3d,0xd3,0x61,0x20,0x1e,0xdf,0xee,0xdf,0xfb,0x7e,0x44,0x55, 0x9a,0x82,0x57,0x35,0x96,0x1,0x78,0xa2,0xda,0x52,0xaa,0x81,0x43,0x3c,0x7e,0x6, 0x35,0x1,0xb0,0xac,0x32,0xeb,0xca,0xb,0x0,0x27,0xe,0x71,0x15,0x9a,0xb2,0x74, 0x9,0x77,0xba,0x15,0x95,0x4f,0xaf,0xe6,0x85,0x37,0xa3,0x60,0xc4,0x8,0x34,0xb, 0xaf,0xf7,0x55,0x8,0x75,0x5a,0xa1,0x3,0xf1,0xeb,0x2c,0x99,0x37,0x87,0x3b,0x1f, 0x80,0x9d,0xa5,0x93,0xeb,0xf9,0x86,0xc,0x46,0x69,0x6f,0xad,0xd,0xb3,0x42,0xeb, 0x50,0xf2,0xe8,0x32,0xc3,0x51,0x47,0x63,0x0,0xe6,0xb,0x85,0xea,0x1c,0xdc,0x2b, 0x85,0x9a,0x0,0x8,0xaa,0x2f,0x78,0x4c,0xc4,0x41,0x2,0x8,0x9,0x1e,0x3f,0xc8, 0x55,0x69,0xfa,0xce,0xad,0x7a,0xeb,0x37,0x9f,0xdb,0x47,0x2f,0xe8,0xd4,0x2f,0xe7, 0x5e,0xbb,0x46,0x99,0xd0,0x70,0x2a,0xf4,0xb1,0xd3,0x27,0x51,0x6,0x7e,0x3d,0x74, 0x6e,0x42,0x3,0xc0,0xae,0xd5,0x61,0xf5,0x12,0xeb,0x4b,0x41,0xa9,0xab,0x96,0x87, 0x55,0xa1,0x29,0xa3,0x47,0x59,0x7,0xa0,0x66,0xbe,0x85,0xd4,0x3d,0x3c,0x7,0xac, 0x51,0x13,0x0,0x4d,0x6c,0xd0,0xb2,0xd2,0xda,0xf1,0xc3,0x57,0x8b,0x2a,0x8d,0x1b, 0x31,0x9c,0x3b,0xb7,0xcf,0x7c,0x39,0x37,0x7b,0x3d,0x3f,0xbc,0xd1,0x70,0x5f,0x7a, 0xe1,0x24,0xec,0x23,0x67,0x8f,0x9c,0x85,0x3,0x1c,0x6d,0x83,0x6b,0xf1,0xe1,0x88, 0x5b,0x9f,0xc2,0xfb,0x2c,0xab,0x33,0xa7,0xfe,0x0,0x9a,0xb6,0xfa,0x35,0xfd,0xf4, 0x73,0x7a,0x2,0xa,0xdd,0x1d,0xd,0xdd,0x8b,0x86,0x80,0x9c,0x3e,0xfe,0xf8,0x34, 0x94,0xfe,0xc1,0x4e,0x47,0x15,0xea,0xb,0x35,0x4,0xd4,0x54,0x85,0x14,0x4b,0xc0, 0x2b,0x16,0x3b,0x94,0x4,0x40,0xa6,0xfa,0xfc,0xf8,0xd,0xf3,0x87,0xb8,0x5f,0xe2, 0xfc,0x79,0xdc,0xac,0x9f,0x6d,0xfd,0xf4,0x13,0x3d,0xd8,0xb,0x3b,0xe9,0xae,0x51, 0x7a,0xf5,0x2c,0xbd,0xa6,0x9e,0x3d,0xa2,0xe6,0x4,0x78,0x7e,0x7a,0x2d,0x3e,0x39, 0x42,0x57,0x54,0x18,0xb2,0x4a,0x2b,0x1a,0x4e,0xa0,0x71,0x3f,0xfd,0x89,0xe1,0x90, 0x34,0xed,0x2,0xec,0x6b,0x23,0x9d,0x0,0x8e,0xe4,0xa5,0x24,0xa3,0xf8,0x49,0x13, 0x91,0x6f,0xe5,0x2b,0xb6,0x55,0x9a,0x86,0xbb,0x86,0x6f,0x78,0xb1,0xf5,0x2a,0xa0, 0xba,0x4a,0x4a,0xb0,0x4e,0xdd,0x6e,0x21,0x6a,0x2,0x60,0xd3,0x3a,0xfd,0xfa,0x6d, 0xe2,0xb6,0x9b,0xbe,0x7d,0x33,0x79,0xd3,0xcd,0xe7,0xda,0x99,0x3f,0xce,0x85,0x6, 0x80,0xae,0xbb,0xe1,0xcd,0x81,0x2e,0xc0,0x5e,0x46,0xcd,0x1e,0x45,0x73,0x2,0xec, 0x69,0x4,0xe8,0xb5,0xf8,0xe4,0xda,0xfe,0xe2,0x22,0xdb,0x2a,0x9d,0xda,0x7c,0x6, 0x8d,0x99,0x5f,0xa5,0x87,0x80,0xbd,0x36,0xc0,0x1c,0x50,0xf6,0xc3,0x1e,0xa0,0x4b, 0xc5,0x61,0xc1,0xb1,0xc5,0xc3,0x74,0xe2,0x86,0x17,0xa1,0x58,0xfc,0x7f,0xc3,0xfd, 0x68,0x21,0x58,0xed,0x7,0x48,0xc6,0x5,0x63,0x25,0x95,0x63,0xdf,0x7,0x96,0xa8, 0x9,0x80,0x2e,0xbb,0xce,0x80,0x1f,0x80,0x96,0x69,0x33,0xdb,0x4d,0x35,0x9d,0xe1, 0xc3,0xce,0xfa,0x45,0x9f,0xe7,0x43,0x57,0x1,0xf4,0xa,0x1c,0x7a,0xf1,0x65,0xa8, 0xcb,0xad,0x65,0xa0,0x41,0xa2,0x57,0xe2,0x82,0x20,0x99,0x71,0x74,0x46,0x4b,0x23, 0x9a,0xbe,0xe6,0x75,0xee,0xea,0x20,0x1a,0x2,0x78,0x6d,0xf4,0xef,0xd2,0x4e,0xc5, 0x76,0x1c,0xf3,0xa7,0x87,0xb0,0x97,0x9a,0x99,0xcf,0x3b,0xa4,0xc7,0x1c,0x92,0xab, 0xe6,0x86,0x14,0xb,0x64,0x88,0xc0,0x2b,0x13,0x16,0x35,0x1,0x10,0x8c,0x91,0x20, 0x1e,0xda,0xa4,0xcc,0x7a,0x14,0x26,0x49,0xa2,0x23,0x7d,0x74,0xd9,0xc7,0x8e,0xff, 0x6c,0x0,0x68,0xa5,0xb1,0x47,0xcb,0x22,0x81,0x6,0x89,0xce,0x2b,0x12,0x46,0x8e, 0x90,0x6e,0xb1,0x15,0x1f,0x1d,0x43,0x4f,0x1d,0xa8,0x43,0xc1,0xfc,0x3c,0xc3,0x87, 0x5b,0xd2,0xd7,0x45,0xf,0xe7,0xd2,0x4e,0x45,0xbb,0x8d,0x19,0x8,0x9,0x3d,0xd9, 0x85,0xbd,0xe6,0x80,0x1d,0xf6,0xc8,0xdf,0xc0,0x1,0x10,0x9,0xb5,0x64,0xcf,0x7b, 0x42,0xd4,0x4,0x80,0x1b,0x1f,0xf7,0x3a,0x9a,0xed,0xfa,0x56,0x2e,0xe7,0xae,0xe9, 0xa3,0xff,0x34,0x7b,0x4d,0x3f,0x7b,0xce,0x1f,0xd,0x0,0xad,0x34,0x15,0xb0,0x87, 0x5c,0x49,0xb5,0x96,0x8c,0x90,0x1a,0x47,0x29,0x43,0x70,0x37,0x5b,0xd8,0xdc,0x88, 0xc6,0xe3,0x79,0x41,0x66,0x7e,0x3e,0x17,0x4c,0x1a,0x30,0x1a,0x4,0x1a,0x6,0xf6, 0x43,0xb1,0xe9,0xe1,0x60,0x7a,0x28,0xd8,0x3c,0xac,0x90,0xe3,0xd,0xf8,0xb5,0xe5, 0xd5,0xd6,0x58,0x4a,0xb5,0xe5,0xc3,0x77,0x75,0xd4,0x4,0x0,0x8f,0x85,0x1,0x3a, 0x2e,0x1e,0xda,0xeb,0x78,0x3d,0x9a,0xce,0x74,0x0,0x7a,0x9d,0x1d,0xfb,0x8f,0x9b, 0x61,0x5b,0xac,0x59,0x60,0xa4,0xd0,0xf,0x8c,0x26,0x27,0x67,0x94,0x8e,0x94,0x1a, 0x47,0x59,0xb2,0x70,0x50,0xa6,0x36,0x9e,0x42,0x4f,0x1d,0x3f,0x42,0x82,0x10,0xc4, 0x43,0x17,0xfb,0x41,0xd5,0xe6,0x4f,0x7,0x11,0x7d,0x54,0x8c,0xf9,0x5c,0x0,0xfa, 0xbf,0x65,0xe2,0xee,0x32,0x6a,0xee,0x1c,0xf4,0xd8,0xaa,0x95,0x68,0xdc,0xfb,0xbb, 0x84,0x42,0x43,0xb2,0x7b,0x17,0x87,0x92,0x0,0xe8,0xe3,0x21,0x19,0x2f,0x9d,0xaf, 0x47,0xef,0xdd,0xf8,0x26,0x1a,0x54,0x51,0x81,0x86,0x8c,0x1f,0x8f,0xa,0x27,0x4e, 0x44,0x45,0x93,0x2a,0x51,0xf1,0xe4,0x49,0x1d,0xe,0x3c,0xef,0xb0,0xca,0x89,0x68, 0xe8,0x3,0x13,0xf0,0x6b,0x19,0x87,0x86,0xd1,0x36,0x6b,0x33,0x8e,0x8a,0xc8,0xc7, 0xff,0xd7,0xd4,0x86,0x93,0xe8,0xe9,0xb3,0xd,0xe8,0x47,0xaf,0xbf,0x86,0x4a,0x1e, 0x9b,0x86,0x72,0xb,0xb,0xa5,0x3f,0x1e,0x26,0x98,0x97,0x8b,0x5f,0x4b,0x25,0xe1, 0xd1,0x97,0x7f,0x89,0x9e,0xaa,0xdb,0x83,0x16,0x5f,0xba,0x80,0xa6,0xe3,0x70,0x95, 0x1f,0x3b,0x8c,0xf2,0x71,0x28,0xad,0xa4,0x4a,0x83,0x97,0xa5,0x6a,0x2,0xb0,0x3f, 0xb2,0xf5,0xe8,0x10,0xbc,0x44,0x7c,0xe2,0x42,0x8b,0x98,0xf3,0x92,0x9c,0x6b,0x96, 0xa2,0x46,0x48,0x93,0x90,0xa9,0x67,0x3e,0x92,0x1a,0x47,0x43,0x91,0x85,0x3,0x53, 0x7e,0xfc,0x30,0x9a,0xdb,0xd4,0x80,0x16,0x5e,0x3c,0x87,0x5e,0xbc,0xdc,0x8a,0x6a, 0x76,0xbc,0x13,0x92,0xa7,0x8f,0x1d,0x41,0x8b,0x5b,0xcf,0xa3,0x1a,0x3c,0xb9,0x4, 0x26,0x1c,0xaf,0x47,0x83,0xf1,0xfb,0x24,0x23,0x54,0x86,0xf4,0xf7,0xdb,0x51,0x14, 0x80,0xc8,0xd7,0xa3,0x4e,0x96,0x2e,0x4e,0x67,0xba,0x4e,0x27,0x46,0x4e,0xc7,0x51, 0xa7,0x6d,0xb7,0xe8,0xe0,0xbe,0x90,0xe4,0xc3,0xff,0x10,0xa6,0xd0,0x76,0x76,0x48, 0xa1,0x26,0x0,0xff,0xe,0x52,0x23,0x10,0xea,0xa4,0xe5,0x46,0x5b,0x68,0xfa,0x7b, 0xdb,0xe5,0x78,0xb7,0xd,0x35,0x1,0xf8,0x37,0xac,0x52,0xd7,0x48,0x75,0x28,0xd4, 0xc8,0x3b,0xb6,0x28,0x9,0x80,0x27,0x34,0xba,0x55,0xea,0x54,0x2a,0x61,0xd7,0x36, 0x29,0xd4,0x4,0xc0,0x13,0xea,0x1a,0xa1,0xe9,0x3b,0x45,0x6c,0xb5,0x44,0x6d,0x0, 0x3c,0xa1,0x9d,0x2e,0xd4,0xc0,0x8e,0xb7,0x39,0xd2,0x4c,0xa8,0x9,0x40,0x17,0x1f, 0x47,0xdd,0x24,0x94,0xb0,0x5d,0xc4,0x16,0x21,0x6a,0x2,0xe0,0x55,0x69,0x78,0x52, 0xa3,0x20,0x94,0xe3,0x1d,0x11,0x9b,0x75,0xd4,0x4,0xc0,0x13,0xea,0x2a,0xa9,0x3a, 0xdb,0x44,0x6c,0x32,0xa0,0x24,0x0,0x9e,0x50,0xf7,0x8,0xb5,0x64,0xab,0x88,0x8d, 0x8a,0x2,0xe0,0x9,0x75,0x8d,0x50,0x8e,0xb7,0x45,0x6c,0xd0,0x51,0x13,0x0,0x97, 0x49,0xed,0xca,0x42,0x29,0xa9,0x22,0xb6,0xf0,0xa8,0x9,0x80,0x57,0xa5,0x92,0x52, 0xa3,0x2f,0x34,0x75,0xcb,0x7a,0x9e,0xcd,0x22,0xde,0x22,0xa8,0x9,0x80,0xd7,0x76, 0x5d,0x25,0xd5,0x96,0x4d,0xed,0xa8,0x9,0x80,0x27,0xd4,0x35,0x42,0xdb,0x79,0x93, 0x67,0x23,0x8f,0x92,0x0,0x78,0x42,0xdd,0x23,0x54,0xcc,0x1b,0x3c,0x1b,0xda,0x50, 0x13,0x80,0x2e,0x3e,0x8e,0xba,0x49,0xa8,0x91,0x75,0x3c,0xeb,0x8d,0xa8,0x9,0x80, 0x57,0xa5,0xae,0x11,0xa,0xf8,0x84,0xac,0xe5,0x79,0x6b,0xad,0xa2,0x0,0x78,0x55, 0xea,0x2a,0xa9,0x3c,0xbf,0x31,0xf2,0x66,0x3b,0x6a,0x2,0xe0,0x9,0xed,0x5c,0xa1, 0x26,0xa9,0xa1,0xf9,0xb5,0x1,0x25,0x1,0xf0,0x84,0xba,0x47,0x28,0xe1,0xd,0x11, 0x6b,0x78,0xd6,0xad,0x51,0x14,0x80,0x68,0x4a,0xf5,0x84,0x3a,0x12,0x2a,0xc7,0x6a, 0x1d,0x45,0x1,0xe8,0xda,0xe3,0xa8,0x9b,0x84,0xea,0xac,0xe5,0x49,0x11,0xa0,0x26, 0x0,0x5e,0x95,0xba,0x47,0xea,0x6f,0x5e,0x97,0xe4,0x35,0x82,0xa2,0x0,0x78,0x42, 0xa3,0x59,0xa5,0x4e,0xa5,0x1a,0xf8,0x75,0x68,0xd4,0x4,0xc0,0x13,0xea,0x1a,0xa1, 0x3a,0x6b,0x56,0x49,0xa1,0x24,0x0,0x5d,0x7d,0x1c,0x75,0x93,0xd0,0x94,0x35,0x2b, 0x79,0x56,0x5b,0xa3,0x26,0x0,0x5d,0x7c,0x1c,0x75,0x93,0x50,0x3,0xaf,0xaf,0xb0, 0x45,0x4d,0x0,0xbc,0x2a,0xed,0x18,0xa9,0x12,0x42,0x9d,0x12,0x6e,0x0,0xee,0xd6, 0x1e,0x90,0x85,0x19,0xe5,0x9,0x8d,0x6e,0x95,0x46,0x13,0xf0,0xa7,0x79,0x8c,0xd5, 0xbc,0x3a,0xe,0x40,0x99,0x27,0xd4,0x3d,0x42,0xc3,0x8,0x40,0x59,0xb8,0x1,0xe8, 0x87,0x9,0x62,0x4a,0x7d,0x9e,0xd0,0xdb,0x16,0xf0,0xa7,0x79,0xec,0xe7,0x24,0x0, 0xdd,0x31,0x31,0x18,0x3f,0xa6,0x18,0xf3,0x30,0x66,0x1,0xe6,0x79,0xcc,0x4b,0x98, 0x5f,0x61,0x5e,0xc5,0xac,0xf0,0x70,0xd,0xaf,0x6a,0x5e,0x5e,0xd2,0x3c,0x2d,0xd0, 0xbc,0x15,0x6b,0x1e,0x63,0x34,0xaf,0xb6,0x1,0xb8,0x43,0xbb,0x63,0x6f,0x8c,0xf, 0x33,0x18,0x33,0x16,0x33,0x1d,0x53,0x8b,0x79,0x1a,0xb3,0x8,0xb3,0xd8,0xc3,0x75, 0x2c,0xd2,0xfc,0xd4,0x6a,0xbe,0xc6,0x6a,0xfe,0x7c,0x9a,0xcf,0xee,0x77,0x48,0x6e, 0x77,0x62,0x7a,0x62,0x12,0x30,0x99,0x98,0x22,0xcc,0x38,0xcc,0x14,0xcc,0xe3,0x98, 0x19,0x98,0x59,0x1e,0xae,0x63,0x86,0xe6,0x67,0x8a,0xe6,0xab,0x48,0xf3,0x97,0xa0, 0xf9,0xbc,0x53,0x36,0x0,0x74,0x29,0x8,0x6d,0x23,0x59,0x9b,0x44,0xc,0xd6,0xda, 0x49,0xa9,0x36,0xb1,0x18,0xa5,0x2d,0x31,0x3c,0xdc,0xc1,0x28,0xcd,0x4b,0xa9,0xe6, 0x69,0xb0,0xe6,0x2d,0x59,0xf3,0xd8,0x43,0xb6,0xfd,0xd3,0x0,0xdc,0x85,0xf9,0xa1, 0xf6,0xe0,0xfe,0x98,0x54,0x6d,0x2c,0x9,0x6a,0xa9,0xca,0xd2,0xd6,0x97,0x1e,0xee, 0x20,0x4b,0xf3,0x12,0xd4,0x3c,0xa5,0x6a,0xde,0x62,0x34,0x8f,0x77,0x39,0x9,0x0, 0x1b,0x82,0x1f,0x60,0x7a,0x61,0xfa,0x60,0xfa,0x6a,0xcb,0x9,0xf,0x77,0xd3,0x57, 0xf3,0xd5,0x4b,0xf3,0xe7,0x58,0x3e,0x1b,0x82,0x3b,0xb5,0xc9,0xc3,0xdd,0x1a,0x3d, 0x3c,0x5c,0xf,0x75,0xd5,0x5d,0xf3,0x17,0x96,0x7c,0x51,0x18,0x3c,0x6e,0x2f,0xbc, 0xcd,0xdb,0xbc,0xcd,0xdb,0xbc,0xcd,0xdb,0xbc,0xcd,0xdb,0xbc,0xcd,0xdb,0xc4,0xdb, 0xff,0x3,0xc6,0xbc,0x30,0xe1,0x5a,0x29,0x29,0x59,0x0,0x0,0x0,0x0,0x49,0x45, 0x4e,0x44,0xae,0x42,0x60,0x82, // /home/Adel/ZeGrapher/icons/zoom-out-icon.png 0x0,0x0,0xf6,0x96, 0x89, 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, 0x0,0x1,0x87,0x0,0x0,0x1,0x85,0x8,0x6,0x0,0x0,0x0,0x16,0xd6,0x3f,0x75, 0x0,0x0,0x0,0x1,0x73,0x52,0x47,0x42,0x0,0xae,0xce,0x1c,0xe9,0x0,0x0,0x0, 0x6,0x62,0x4b,0x47,0x44,0x0,0xff,0x0,0xff,0x0,0xff,0xa0,0xbd,0xa7,0x93,0x0, 0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xb,0x13,0x0,0x0,0xb,0x13,0x1, 0x0,0x9a,0x9c,0x18,0x0,0x0,0x0,0x7,0x74,0x49,0x4d,0x45,0x7,0xdb,0x4,0x8, 0xe,0x37,0xa,0xfe,0x55,0xac,0x43,0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0x78, 0xda,0xec,0xbd,0x49,0x8f,0x24,0x59,0x76,0x2e,0xf6,0xdd,0xc9,0x26,0x9f,0x3d,0x23, 0x32,0x32,0x32,0xb2,0xb2,0x86,0xec,0xaa,0x9e,0x1e,0xbb,0x49,0xa,0x20,0x37,0x4, 0x4,0xed,0x4,0x2d,0xa8,0xd5,0xa3,0x4,0x41,0xbf,0xa1,0xf9,0xc0,0x95,0xf6,0xda, 0x4a,0x7c,0x12,0xf5,0x3,0xb4,0x56,0x35,0x4,0x82,0xdc,0xb,0x12,0x88,0xc7,0x47, 0x56,0x77,0xb3,0x6b,0xe8,0xae,0xca,0x9a,0xa2,0x2a,0x33,0x23,0x33,0x23,0x2b,0x46, 0x9f,0xdd,0xa6,0x7b,0xaf,0x16,0xd7,0xae,0xb9,0xb9,0x85,0xf9,0x10,0x59,0x59,0xd5, 0x35,0xd8,0x5,0xc,0xe1,0xee,0xe1,0x93,0x99,0x9b,0x9d,0xef,0x9c,0xef,0x9c,0xf3, 0x1d,0xa2,0xb5,0x46,0xbd,0xea,0x55,0xaf,0x7a,0xd5,0xab,0x5e,0xc5,0x45,0xeb,0x43, 0x50,0xaf,0x7a,0xd5,0xab,0x5e,0xf5,0x2a,0x2f,0x5e,0x1f,0x82,0x3f,0xfc,0x22,0x84, 0x10,0x7d,0x8d,0x10,0x8e,0x10,0x42,0xec,0xed,0x6d,0x5f,0x47,0x8,0x61,0x0,0x8, 0x0,0x66,0xb7,0x37,0xdf,0x7c,0xf3,0xde,0x1f,0xfd,0xd1,0x1f,0xfd,0x57,0x8e,0xe3, 0xbc,0x12,0x4,0xc1,0x2f,0xb2,0xf7,0x83,0xd6,0x1a,0x4a,0xa9,0xfc,0x76,0x71,0xd9, 0xfb,0x84,0x10,0x10,0x42,0x40,0x29,0xcd,0x6f,0x67,0x5f,0x6b,0x90,0x24,0xc9,0x3f, 0x1d,0x1f,0x1f,0xff,0x9f,0x7f,0xfe,0xe7,0x7f,0xfe,0xff,0x0,0x90,0x0,0x34,0x80, 0x34,0xfb,0x2b,0xd7,0x7d,0x67,0xbb,0x6f,0xab,0x9e,0x53,0x3c,0x56,0x9b,0x9e,0x5b, 0xaf,0x7a,0xd5,0xeb,0x4b,0xd8,0xa5,0xfa,0xba,0xfa,0xe6,0x1,0xc5,0x2a,0x83,0xb7, 0xa,0x44,0xec,0xe3,0xd9,0x6b,0x59,0x6,0xfa,0xce,0xe1,0xe1,0xe1,0xff,0x1c,0x4, 0xc1,0x2f,0xa4,0x94,0xb9,0xc1,0xb7,0x46,0x1f,0x0,0x28,0xa5,0xb9,0x71,0xa7,0x94, 0xe6,0x46,0xbf,0x68,0xfc,0x8b,0x8f,0x95,0x57,0x11,0x3c,0xec,0xed,0xf2,0xe7,0x28, 0xa5,0x0,0x0,0x8c,0xb1,0xfc,0x73,0x18,0x63,0xd0,0x5a,0xbf,0x7b,0x70,0x70,0xf0, 0x5f,0x2,0x48,0x32,0x0,0x89,0x37,0x1,0xc2,0x2a,0x50,0xbc,0x2e,0xb8,0xd6,0xab, 0x5e,0xf5,0xaa,0xc1,0xe1,0x5b,0x15,0x39,0x5c,0xc7,0xf8,0x11,0x42,0x68,0x6,0x2, 0x2,0x0,0x7f,0xfa,0xf4,0xe9,0x40,0x29,0x5,0x29,0x65,0x6e,0x90,0xad,0x21,0x2e, 0xfe,0xe5,0x9c,0x83,0x31,0x96,0xdf,0xb7,0xc6,0xdf,0x82,0x44,0xe1,0xfd,0xaf,0x0, 0x41,0x11,0x2c,0x8a,0x60,0x50,0x7c,0xc,0xc0,0x12,0x30,0xd8,0xdb,0x71,0x1c,0xe7, 0xf7,0xa5,0x94,0xb0,0x80,0x65,0x37,0xfb,0xdd,0xa4,0x94,0xff,0x78,0xf7,0xee,0xdd, 0xff,0x31,0x3,0x8d,0xd4,0x46,0x1a,0xe5,0x63,0x90,0xed,0xbf,0x2e,0x1f,0xa7,0x1a, 0x3c,0xea,0x55,0xaf,0x1a,0x1c,0xbe,0xf3,0xd4,0x52,0x89,0x42,0xa1,0x0,0x9c,0xb7, 0xde,0x7a,0xeb,0xbf,0xbe,0x7b,0xf7,0xee,0xdf,0x5b,0x63,0x6b,0x97,0x10,0x2,0x8c, 0x31,0x8,0x21,0xf2,0xcd,0x7a,0xeb,0x65,0x43,0x6f,0xef,0x97,0xbd,0xfe,0x75,0x51, 0xc2,0xa6,0x55,0x6,0x8f,0xf2,0xff,0x2c,0x10,0x15,0xa3,0xb,0x29,0x25,0xd2,0x34, 0x85,0x52,0xa,0x51,0x14,0xe5,0xf7,0x2d,0x70,0x70,0xce,0x21,0x84,0x0,0x21,0x64, 0xb0,0xbf,0xbf,0x7f,0x27,0x3,0x8b,0x44,0x6b,0xad,0x9e,0xe7,0x78,0xd6,0xab,0x5e, 0xf5,0xaa,0xc1,0xe1,0x1b,0x6f,0xfc,0x33,0x2f,0x97,0x14,0xbd,0xdf,0xe2,0x63,0xd6, 0xe6,0xbf,0xf9,0xe6,0x9b,0x3f,0xf9,0x8b,0xbf,0xf8,0x8b,0xb7,0xc3,0x30,0x5c,0xe2, 0xf9,0x2d,0x0,0xb8,0xae,0xb,0xce,0x39,0x38,0xe7,0x4b,0xc6,0xb8,0xbc,0x28,0xa5, 0x57,0xbc,0xfd,0x22,0x7d,0x54,0xf5,0x9a,0x2a,0x23,0x5f,0x7e,0xff,0x6d,0xc1,0xa4, 0xea,0x33,0x8b,0x11,0x88,0xfd,0x7e,0x4a,0x29,0xa4,0x69,0x8a,0x24,0x49,0x90,0x24, 0x9,0xe2,0x38,0xce,0x41,0x83,0x10,0x2,0xce,0x39,0xb4,0xd6,0xff,0x78,0xf7,0xee, 0xdd,0xff,0x1,0x40,0x9c,0x45,0x16,0x6a,0x55,0x24,0x51,0x3,0x44,0xbd,0xea,0x55, 0x83,0xc3,0xb7,0x1a,0x38,0xb2,0x9b,0xc,0x80,0xfb,0xe4,0xc9,0x93,0x7f,0x4e,0x92, 0xe4,0xe7,0x52,0x4a,0x30,0xc6,0x72,0xf,0xda,0x82,0x81,0x10,0x22,0xf7,0xc4,0xed, 0x92,0x52,0x5e,0xf1,0xdc,0xcb,0xc6,0x7c,0x5d,0xee,0x60,0x9d,0x91,0xdf,0xf4,0xff, 0x2d,0xf7,0xb1,0x12,0xb8,0xec,0xe3,0x36,0xa,0x2a,0x3,0x87,0xa5,0xa2,0xd2,0x34, 0x45,0x1c,0xc7,0x8,0xc3,0x10,0x49,0x92,0x40,0x29,0x5,0x4a,0x29,0x1c,0xc7,0xc1, 0x70,0x38,0xfc,0x9b,0x1f,0xff,0xf8,0xc7,0xff,0x7,0x0,0xb5,0x4d,0x54,0x51,0xaf, 0x7a,0xd5,0xab,0x6,0x87,0x6f,0x74,0x4,0x61,0xa9,0x22,0x0,0xfc,0xc9,0x93,0x27, 0xe3,0x24,0x49,0x60,0x1,0xc1,0xf3,0x3c,0xf8,0xbe,0xf,0xc7,0x71,0x72,0x8f,0xb9, 0x48,0xcb,0x5c,0xd7,0x7b,0xdf,0x14,0x1d,0x6c,0x3a,0xf,0x5e,0x24,0xed,0x74,0x9d, 0xcf,0x29,0x82,0x87,0x4d,0xa0,0x4b,0x29,0x11,0x86,0x21,0xc2,0x30,0xcc,0xe9,0xa8, 0x24,0x49,0xe0,0x38,0xe,0xd2,0x34,0xfd,0xbb,0x7b,0xf7,0xee,0xfd,0x4f,0x0,0x22, 0xb,0x14,0x75,0x4,0x51,0xaf,0x7a,0xd5,0xe0,0xf0,0x6d,0x1,0x5,0x1,0xc0,0x3f, 0x3e,0x3e,0x1e,0x5a,0xe3,0xe6,0xba,0x2e,0x1c,0xc7,0xc9,0x1,0x81,0x31,0xb6,0x4, 0x6,0xd7,0x31,0xc2,0xeb,0xa8,0xa1,0x6f,0xca,0x2a,0x83,0x80,0x5,0x8f,0x22,0x88, 0xad,0x4a,0x82,0x3,0xc8,0x13,0xe8,0x96,0x72,0x8a,0xe3,0x18,0x51,0x14,0x21,0xc, 0x43,0xa4,0x69,0x6a,0x73,0x15,0xff,0x78,0xf7,0xee,0xdd,0xff,0x1e,0x40,0x58,0x83, 0x43,0xbd,0xea,0x55,0x83,0xc3,0x57,0x4e,0xff,0x54,0x25,0x8e,0x8b,0x8f,0xaf,0xc9, 0x2f,0x34,0x9e,0x3e,0x7d,0x3a,0x8a,0xa2,0x8,0x5a,0x6b,0x8,0x21,0xe0,0xfb,0x3e, 0x3c,0xcf,0x83,0xeb,0xba,0x5b,0x79,0xf0,0x7f,0xc0,0x7d,0xc7,0x37,0xf9,0x5c,0xb1, 0x39,0x8b,0x34,0x4d,0x11,0x86,0x21,0xe6,0xf3,0x39,0xe2,0x38,0xce,0x1,0xe6,0x57, 0xbf,0xfa,0xd5,0x9f,0xfc,0xd5,0x5f,0xfd,0xd5,0x7d,0xad,0x75,0xb4,0x29,0x9a,0x58, 0xf7,0x3b,0x57,0xfd,0xc6,0x84,0x10,0x5a,0xd3,0x59,0xf5,0xaa,0xc1,0xa1,0x5e,0xd7, 0x31,0xa8,0x14,0x80,0xf7,0xe6,0x9b,0x6f,0xbe,0xf1,0x67,0x7f,0xf6,0x67,0x6f,0x6b, 0xad,0x73,0xca,0xa8,0xd1,0x68,0xc0,0x75,0x5d,0x10,0x42,0x96,0x7a,0xf,0xbe,0x29, 0x9e,0x7c,0xd5,0xff,0xd7,0x45,0x21,0xdf,0x4,0xf0,0x28,0xe7,0x2b,0xe2,0x38,0xce, 0x41,0x62,0x3a,0x9d,0x42,0x8,0x1,0xc7,0x71,0x6,0xfb,0xfb,0xfb,0x2f,0x1,0x98, 0x6b,0xad,0x65,0xd1,0xb8,0x57,0x81,0xc2,0x1a,0x40,0xa8,0xa9,0xaa,0x7a,0xd5,0xe0, 0x50,0xaf,0x95,0x11,0xc2,0x95,0xa,0x99,0xec,0x71,0xe,0xc0,0x7f,0xf6,0xec,0xd9, 0xc8,0xd2,0x1c,0xcd,0x66,0x33,0x8f,0x12,0x8a,0x65,0x9d,0xdb,0x18,0xde,0xaf,0xcb, 0xb0,0x96,0x81,0x62,0x5b,0x40,0x59,0x7,0x2a,0xdb,0xe6,0x34,0x5e,0x44,0xe4,0x50, 0x6e,0xf0,0x2b,0x52,0x51,0x4a,0x29,0x8c,0xc7,0x63,0x8c,0xc7,0x63,0x48,0x29,0x6d, 0x2e,0xe7,0x1f,0xef,0xde,0xbd,0xfb,0xdf,0x69,0xad,0xc3,0xa,0x50,0xd7,0x5f,0xa6, 0x93,0xbb,0x5e,0xf5,0xaa,0xc1,0xe1,0x7b,0x6,0xc,0xeb,0xc,0x2,0x21,0xc4,0x79, 0xeb,0xad,0xb7,0xfe,0x9b,0xfd,0xfd,0xfd,0xbf,0x8f,0xa2,0x8,0x8c,0x31,0xb4,0x5a, 0x2d,0x34,0x9b,0xcd,0xbc,0x11,0xcd,0xf2,0xe4,0x4a,0xa9,0xca,0x1e,0x84,0x6f,0xf0, 0xfe,0xaf,0x5,0x8f,0x4d,0x65,0xaf,0x5f,0xf5,0x7e,0x16,0x73,0x16,0xab,0x80,0xcb, 0x46,0x69,0x51,0x14,0x61,0x3c,0x1e,0x63,0x3e,0x9f,0xe7,0x15,0x4f,0x7,0x7,0x7, 0x1,0x4c,0x97,0xb6,0xdc,0x36,0x4a,0x78,0x1e,0x19,0x93,0x7a,0xd5,0xab,0x6,0x87, 0xef,0x20,0x45,0x54,0xa8,0x7e,0xa1,0x99,0x41,0xb0,0x54,0x4,0x7f,0xf6,0xec,0x59, 0x5c,0x4c,0x2e,0xdb,0x48,0xc1,0x7a,0xb4,0xe5,0x84,0xea,0x2a,0x43,0xf6,0x2d,0x3c, 0x2e,0xdf,0x88,0x7d,0x28,0xf6,0x71,0x6c,0x8a,0x74,0x2c,0x48,0x47,0x51,0x84,0xc9, 0x64,0x82,0xf9,0x7c,0xe,0x29,0x25,0x3c,0xcf,0xc3,0xed,0xdb,0xb7,0x5b,0x0,0xa6, 0xc5,0x8e,0xf5,0x5a,0xcb,0xa9,0x5e,0x35,0x38,0xd4,0x6b,0x23,0x40,0x58,0x50,0xc8, 0xee,0xbb,0xcf,0x9e,0x3d,0xb,0xc7,0xe3,0x31,0x28,0xa5,0xf0,0x7d,0x1f,0xad,0x56, 0xb,0x9e,0xe7,0xe5,0x11,0x82,0x35,0xa0,0x45,0xcf,0xb6,0x9c,0x67,0xb0,0x86,0xed, 0x9b,0x1e,0x31,0x6c,0x3,0x2,0x55,0xcd,0x6e,0x5f,0x7,0x78,0x14,0x23,0xb1,0x72, 0x94,0xb3,0x2a,0xaa,0x28,0xf6,0x52,0x4c,0x26,0x13,0x4c,0xa7,0x53,0xc4,0x71,0xc, 0xd7,0x75,0x71,0xf7,0xee,0xdd,0x76,0x6,0x12,0xaa,0x2a,0x62,0xa8,0x1,0xa2,0x5e, 0x35,0x38,0xd4,0xab,0xca,0x60,0x7a,0xc7,0xc7,0xc7,0xf3,0xc9,0x64,0x2,0xce,0x39, 0x9a,0xcd,0x26,0x3a,0x9d,0xce,0x92,0xc1,0xa9,0x32,0xb2,0x45,0xb9,0x8b,0xaf,0x9b, 0x4e,0xba,0x2e,0x2d,0xb4,0x4e,0x74,0xaf,0xea,0xf5,0xc5,0x7d,0xab,0x7a,0x6e,0x39, 0xcf,0xf2,0x55,0xef,0x5f,0x39,0x42,0x2b,0x4b,0x85,0x14,0xc5,0x6,0x6d,0xa1,0x80, 0x94,0x12,0xf3,0xf9,0x3c,0xa7,0x9c,0x1c,0xc7,0xc1,0xcb,0x2f,0xbf,0xdc,0xd1,0x5a, 0x8f,0x8,0x21,0x6c,0x15,0xe5,0x54,0x47,0x13,0xf5,0xaa,0xc1,0xa1,0x6,0x5,0xef, 0xd9,0xb3,0x67,0xf3,0xe9,0x74,0xa,0x4a,0x29,0x5a,0xad,0x16,0x1a,0x8d,0x6,0x84, 0x10,0xb9,0xe7,0x5a,0x34,0x94,0x55,0x86,0xf5,0xba,0xdd,0xcb,0x2f,0x92,0x76,0x59, 0x67,0xe0,0x93,0x24,0xc9,0xbf,0x7b,0x59,0x51,0xb5,0xbc,0x4f,0x65,0xf,0x9d,0x10, 0x92,0x53,0x35,0x56,0xd0,0x6f,0x1d,0x18,0x7d,0xd5,0xe7,0xdc,0xf3,0x36,0xf6,0x15, 0x35,0xa0,0x66,0xb3,0x19,0x46,0xa3,0x11,0xe2,0x38,0x6,0x63,0xc,0xaf,0xbc,0xf2, 0x4a,0x3,0xa6,0xb1,0x4e,0xd6,0x57,0x42,0xbd,0x6a,0x70,0xf8,0xfe,0x18,0xfd,0xaa, 0x12,0xc6,0x62,0x8e,0x41,0x1c,0x1f,0x1f,0x9f,0x84,0x61,0xd8,0x55,0x4a,0xa1,0xd9, 0x6c,0xa2,0xdd,0x6e,0x43,0x8,0xb1,0x75,0x93,0x5a,0x31,0x72,0x58,0xd7,0xec,0xb5, 0x32,0xfa,0x20,0x69,0x66,0xd1,0x32,0x25,0xd5,0xc2,0x6d,0x46,0x8,0x12,0xad,0xae, 0xa8,0xab,0x12,0x8d,0xbc,0x7b,0x58,0xea,0x85,0x1a,0x6a,0x92,0x44,0x90,0x69,0x9a, 0x8b,0xdc,0x29,0xa5,0xa0,0x41,0x37,0xce,0x71,0x58,0x27,0xe2,0x67,0x1,0x28,0xaf, 0x12,0x22,0x0,0x67,0xe,0x84,0x10,0xe0,0x9c,0xc3,0x71,0x3c,0x50,0x8a,0x85,0x2a, 0x2c,0x2d,0x44,0x27,0x50,0x48,0x65,0xb9,0x62,0x4b,0x1,0x85,0xcf,0x54,0xfa,0xaa, 0x34,0x48,0x99,0x96,0x5b,0x95,0xcf,0xd9,0xa6,0x1a,0xac,0xdc,0x70,0x67,0x7f,0xaf, 0xe9,0x74,0x8a,0xe9,0x74,0x8a,0xf9,0x7c,0xe,0xcf,0xf3,0xf0,0xd2,0x4b,0x2f,0xb5, 0x1,0x4c,0xaa,0xd4,0x60,0xaf,0x23,0xb3,0x5e,0xaf,0x7a,0xd5,0xe0,0xf0,0xcd,0x3, 0x1,0x52,0x94,0x55,0x28,0xde,0x2f,0x5f,0xe8,0x84,0x10,0xfa,0xd6,0x5b,0x6f,0xfd, 0xe5,0xee,0xee,0xee,0xdf,0x17,0x41,0xc1,0x71,0x9c,0xdc,0x90,0xae,0x13,0xae,0x5b, 0x67,0x84,0x56,0xd1,0x1e,0xeb,0x5e,0x57,0xa6,0x66,0x8,0x33,0xf7,0x95,0x4,0x4, 0xa7,0x48,0x92,0x24,0x17,0xad,0xb,0xc3,0x10,0x71,0x1c,0xe7,0xaa,0xa7,0x71,0x22, 0xab,0xc1,0x88,0x64,0xf2,0xde,0xa,0x2b,0x39,0x7b,0x0,0xd0,0x6c,0xf5,0x77,0xd4, 0x5a,0x83,0xa8,0x42,0x7e,0x65,0xe9,0x7f,0xe6,0x75,0x94,0x64,0x54,0xe,0xe1,0xa0, 0x9c,0x65,0x80,0xe1,0xe4,0x5a,0x51,0x8e,0xe3,0xe4,0xe0,0x52,0x7e,0xef,0xe2,0xe7, 0xae,0x2,0x80,0x2a,0xd0,0xb0,0xc0,0x51,0xa6,0xf4,0x36,0x1d,0x67,0xfb,0x7e,0xb6, 0x4b,0x5d,0x29,0x85,0xd9,0x6c,0x86,0xc1,0x60,0x80,0x38,0x8e,0xd1,0x6a,0xb5,0xb0, 0xbf,0xbf,0xef,0x67,0x91,0x44,0x15,0x20,0xd4,0x4d,0x71,0xf5,0xaa,0xc1,0xe1,0xdb, 0xe,0x14,0x19,0xe,0x54,0xcd,0xb,0x68,0x7d,0xf6,0xd9,0x67,0xa3,0x34,0x4d,0xd1, 0x6a,0xb5,0xd0,0x6a,0xb5,0x72,0x59,0xb,0x2b,0x29,0x5d,0x65,0x9c,0xb6,0xa1,0x30, 0x56,0x79,0xbf,0xe5,0xc7,0x96,0xdf,0x9f,0x2d,0xee,0x5b,0x2a,0x48,0x49,0x44,0x51, 0x84,0x38,0x8e,0x11,0xcf,0xa6,0x39,0x18,0x5c,0xf5,0xa2,0x19,0x28,0xb5,0x54,0x51, 0xc1,0xe3,0xa7,0x4,0xd0,0xc6,0xeb,0x26,0x50,0x95,0x3,0x7e,0xf2,0xa,0x9f,0xd, 0xa7,0x89,0x24,0x65,0xdd,0x27,0x5,0x5a,0xf4,0xc4,0x75,0xa,0x62,0xa3,0x13,0x42, 0xa1,0x32,0xd0,0xd0,0xd9,0xa4,0x5a,0xce,0x8,0x84,0x10,0xf0,0x3c,0xf,0x9e,0xe7, 0xc1,0x71,0x3c,0x70,0xce,0x41,0x33,0xba,0xa,0x5a,0x2e,0x29,0xb7,0x56,0x1d,0xf3, 0x55,0xc7,0xd8,0xea,0x32,0x6d,0x3,0xda,0xc5,0xaa,0xb2,0xaa,0x63,0x31,0x1e,0x8f, 0x71,0x79,0x79,0x9,0xad,0x35,0x82,0x20,0x78,0xf7,0xe0,0xe0,0xe0,0xcf,0xb4,0xd6, 0xf1,0xaa,0x28,0xa2,0xce,0x49,0xd4,0xab,0x6,0x87,0x6f,0x9,0x75,0x54,0x30,0x6, 0xab,0x28,0xa4,0xc6,0xd1,0xd1,0xd1,0x24,0x8a,0x22,0x78,0x9e,0x87,0x56,0xab,0x5, 0xdf,0xf7,0x2b,0x69,0x94,0xb2,0x51,0x5a,0xb7,0xaa,0x4a,0x2d,0x8b,0x11,0x83,0x15, 0xdc,0x2b,0x3e,0x6f,0xd9,0x8b,0xa7,0x99,0x7e,0xd0,0x1c,0x51,0x14,0x61,0x1e,0x19, 0xe1,0x39,0x29,0x8d,0xd1,0x24,0xba,0x68,0x30,0x97,0xa7,0xbb,0x49,0x29,0x21,0x48, 0x56,0x4e,0x4b,0xb3,0x9c,0x0,0xa5,0x0,0x28,0x14,0x32,0xe5,0x53,0xf0,0xa5,0x41, 0x3c,0xc5,0x6a,0x2a,0x42,0x8,0x74,0x9c,0x2e,0x79,0xf6,0xe5,0x69,0x72,0x32,0xa3, 0x8c,0x8c,0x62,0x2c,0x40,0x94,0x86,0xd2,0x6,0xa8,0x88,0x6,0xa0,0x97,0xdf,0x53, 0x3,0x30,0x93,0x4b,0xb1,0x44,0x81,0xd9,0x8,0x89,0x30,0xd3,0x17,0xe2,0xba,0x3e, 0x5c,0xd7,0x45,0x10,0x78,0xf9,0xfb,0x17,0x41,0xb4,0x1c,0xd,0x55,0x95,0xc,0xdb, 0x72,0xe2,0x4d,0xb4,0x5f,0xd5,0xef,0x58,0x2c,0x7f,0xb5,0xdf,0x5f,0x4a,0x89,0xc9, 0x64,0x82,0xd1,0x68,0x4,0xc6,0x18,0x7e,0xfd,0xeb,0x5f,0xff,0xc9,0x5f,0xfd,0xd5, 0x5f,0xbd,0x57,0x47,0xb,0xf5,0xaa,0xc1,0xe1,0x5b,0xc,0x10,0xa5,0xee,0xe6,0x62, 0x59,0x2a,0x3d,0x3c,0x3c,0xfc,0x8f,0x84,0x90,0x5f,0x0,0xc8,0xa3,0x5,0x21,0x44, 0x2e,0x87,0x5d,0xa4,0x84,0xac,0xa1,0xb0,0xcd,0x6d,0x9b,0x8c,0xcf,0xa6,0xa,0xa1, 0x32,0xd5,0x64,0xd5,0x47,0xe7,0xf3,0xb9,0xd9,0xa2,0x99,0x89,0xc,0x62,0x93,0x38, 0xa6,0x99,0x21,0x64,0x30,0x7f,0xd3,0x2c,0xe7,0x40,0x28,0xcd,0x8d,0xae,0x8d,0x1a, 0x94,0x52,0x48,0xb3,0xdc,0xc3,0x34,0x9c,0x63,0x3e,0x8f,0x30,0x9d,0xcd,0x10,0x86, 0x91,0x89,0x3c,0x64,0x8a,0x30,0x92,0xb9,0x88,0x5d,0x71,0xe0,0x8e,0x5d,0x61,0x9a, 0x2c,0x35,0xf2,0x15,0xbf,0x27,0x63,0xc,0x2e,0xe3,0xb9,0xf1,0x76,0x38,0x83,0xe3, 0x38,0xf0,0x7c,0x7,0x4d,0x3f,0x30,0x7d,0x1f,0x8d,0x20,0x97,0x1f,0x77,0x18,0x5, 0xa1,0x1a,0x50,0x56,0x92,0x3b,0x5,0xd1,0xb4,0x10,0x19,0xc9,0xa5,0xe8,0x80,0x52, 0x13,0x69,0x70,0xce,0xe1,0xfb,0x3e,0x82,0x20,0x80,0xe7,0x79,0x4b,0xc9,0xef,0x72, 0x25,0xd8,0x75,0x13,0xfe,0x55,0x39,0xa1,0xa5,0xc8,0x28,0x3,0xef,0x62,0x14,0x31, 0x9f,0xcf,0x31,0x1a,0x8d,0x30,0x9b,0xcd,0xd0,0x68,0x34,0x70,0x70,0x70,0xd0,0xd2, 0x5a,0x4f,0xaa,0xce,0xb7,0x7a,0xd5,0xab,0x6,0x87,0x6f,0x78,0xe4,0xb0,0x42,0x34, 0xcf,0x7f,0xf8,0xf0,0xe1,0x34,0x8e,0x63,0x4,0x41,0x80,0x1b,0x37,0x6e,0xc0,0x71, 0x1c,0x24,0x49,0xb2,0x54,0xe6,0x58,0x4e,0x58,0x5a,0x83,0xb2,0xd,0x6d,0x51,0xa6, 0x27,0xca,0x46,0xab,0xe8,0xe5,0x87,0x61,0x88,0xc9,0x64,0x82,0xd9,0x6c,0x96,0xd3, 0x44,0x52,0x1b,0xa5,0x51,0x46,0x8c,0x17,0xac,0xd2,0x5,0x2f,0xce,0x29,0x5,0x84, 0x83,0x28,0x8a,0x4c,0xce,0x41,0x49,0x4c,0xa7,0x73,0xc,0x87,0x43,0xc,0x2e,0x87, 0x98,0xcd,0x66,0xb8,0x9c,0xc5,0x48,0x94,0x35,0xfe,0xd9,0x88,0xce,0xfc,0xf3,0x29, 0x4,0xa7,0x57,0xf6,0x6d,0x49,0xab,0x68,0x5,0xc8,0xe5,0xf7,0x97,0x46,0x84,0x2a, 0x40,0x2e,0x46,0x95,0x12,0xaa,0x41,0x9,0x87,0xe3,0x72,0x4,0x9e,0x8f,0x66,0xe0, 0xa3,0xdd,0xc,0xd0,0x6e,0x35,0xd1,0x6a,0x35,0x10,0xb8,0x5e,0xe,0x1c,0x84,0x10, 0xc8,0xd4,0x4c,0xb9,0xa3,0x64,0xf1,0x9e,0x84,0xf2,0xa5,0xc8,0x82,0x73,0xe,0xcf, 0xf3,0x10,0x4,0x41,0xae,0x64,0x5b,0x35,0xba,0x74,0x5d,0x54,0x70,0x1d,0xda,0xaf, 0x5c,0x89,0x66,0x81,0xc2,0xe,0x25,0x3a,0x3b,0x3b,0x3,0x21,0x4,0x9e,0xe7,0xd, 0xf6,0xf7,0xf7,0xf7,0x2c,0xd5,0x54,0x3,0x44,0xbd,0x6a,0x70,0xf8,0x76,0x46,0xf, 0xce,0x93,0x27,0x4f,0x7e,0x35,0x9b,0xcd,0x7e,0x4e,0x29,0xc5,0xce,0xce,0xe,0x5a, 0xad,0x56,0xee,0x41,0x5b,0xa,0x23,0x49,0x92,0x25,0xaf,0xb1,0x5c,0xaa,0x7a,0xdd, 0x59,0x5,0xb9,0xd1,0x2c,0xbc,0xdf,0x7c,0x3e,0xc7,0x6c,0x36,0xc3,0x64,0x32,0x41, 0x92,0x24,0x15,0xde,0x6b,0x46,0xb,0x11,0xa,0x4a,0x4c,0xc5,0x8f,0x4,0xc1,0x64, 0x32,0xc1,0x78,0x34,0xc1,0xf9,0x70,0x84,0xc1,0x60,0x80,0xe1,0x70,0x88,0x59,0x18, 0x99,0x81,0x38,0x85,0xa,0x1f,0x22,0xdc,0x9c,0x2,0x2a,0x56,0x15,0x2d,0x3e,0x43, 0x55,0x96,0xa9,0xda,0xef,0xcc,0x41,0x56,0xce,0x5a,0x30,0x79,0x84,0xab,0xe5,0xb9, 0x5a,0x6b,0xa8,0x82,0xb6,0x11,0xb4,0x86,0x94,0x26,0x2a,0x21,0x59,0xe,0xc1,0xe1, 0x2,0x8c,0x11,0x74,0x3a,0x1d,0xb4,0x5a,0x2d,0xf4,0x7b,0x1d,0x74,0x9a,0x2d,0x4, 0xbe,0x7,0x97,0xb3,0x3c,0xc2,0x48,0x92,0x64,0x49,0x2f,0xa9,0x8,0x14,0x8c,0xb1, 0x1c,0x24,0x82,0x20,0xc8,0x7f,0xb7,0x55,0xb9,0x89,0x4d,0xc0,0x5d,0xa6,0xa9,0xca, 0xe0,0x51,0x6,0x12,0x3b,0x8c,0xe8,0xe2,0xe2,0x2,0xf3,0xf9,0x1c,0xbe,0xef,0xe3, 0xce,0x9d,0x3b,0x4d,0x0,0xb3,0x1a,0x18,0xea,0x55,0x83,0xc3,0xb7,0xf,0x24,0x1a, 0x9f,0x7f,0xfe,0xf9,0x24,0x49,0x12,0xb4,0xdb,0x6d,0xf4,0x7a,0xbd,0xa5,0xb,0xbf, 0xc8,0xfd,0x97,0x3b,0x98,0xbf,0xac,0x2,0xa9,0x8d,0x12,0xe2,0x38,0xc6,0x78,0x3c, 0xc6,0x74,0x3a,0xcd,0xa7,0x9b,0x95,0x95,0x45,0x73,0xea,0x86,0x98,0xfc,0xc0,0x6c, 0x1e,0xe1,0x7c,0x30,0xc4,0xe9,0xd9,0x39,0xce,0x2e,0x6,0x18,0x4d,0xc6,0x88,0x92, 0x14,0x61,0x9c,0x82,0x52,0xe3,0x7d,0x33,0xce,0x41,0x8,0x3,0x63,0x2,0xc8,0x3e, 0x8b,0x93,0x6c,0xcc,0x26,0xa1,0xcb,0x20,0x40,0xcd,0x67,0x28,0xb0,0x2b,0x86,0xb2, 0x4c,0x7b,0x55,0x19,0xd1,0xdc,0x48,0x66,0x80,0x29,0x4d,0x3c,0x92,0xd1,0x43,0x8b, 0xe7,0x15,0x7b,0x27,0xcc,0x63,0x34,0x8f,0xba,0x8c,0x71,0x8d,0xa1,0xa4,0x4,0x21, 0x80,0x2f,0x38,0x1a,0x81,0x83,0x5e,0xbb,0x8d,0x9d,0x1b,0x3d,0x74,0x3a,0x1d,0xf4, 0x5a,0xcd,0xfc,0xb8,0xd9,0xd7,0x14,0x41,0xd7,0x1e,0x3b,0x4b,0x3d,0xd9,0x5c,0x11, 0x63,0xec,0x4a,0xcf,0xc6,0x2a,0xe0,0x5e,0x35,0x5b,0x42,0x29,0x95,0x53,0x87,0x55, 0xcf,0xb1,0x91,0x23,0x21,0x4,0xb3,0xd9,0xc,0x67,0x67,0x67,0x48,0x92,0x4,0xcd, 0x66,0xf3,0xdd,0x83,0x83,0x83,0xff,0xa2,0xee,0x8d,0xa8,0x57,0xd,0xe,0xdf,0xac, 0xa8,0xe0,0xca,0xed,0x8c,0x42,0xa2,0x87,0x87,0x87,0x7f,0x9b,0xa6,0xe9,0x2f,0x1c, 0xc7,0xc1,0xee,0xee,0x2e,0x7c,0xdf,0xcf,0xa5,0x2e,0x56,0xad,0xa2,0x1,0x58,0x57, 0x3b,0xbf,0x6c,0x34,0xd2,0x45,0xef,0x41,0x66,0x44,0xe3,0xc4,0xe4,0x11,0xa6,0xd3, 0x29,0x66,0xb3,0x19,0x92,0xd4,0x18,0x1c,0x66,0x13,0xbd,0xd9,0xf3,0x18,0x27,0xe0, 0x94,0x21,0x49,0x12,0x8c,0x87,0x23,0x3c,0x38,0xbd,0xc4,0xe9,0xe9,0x29,0x2e,0x2f, 0x87,0x98,0xce,0x67,0x50,0x32,0xeb,0x19,0xc8,0x4a,0x40,0x59,0x46,0xc9,0x58,0xf0, 0xc9,0x66,0x2d,0x1b,0x60,0xc8,0xa6,0xc8,0xd1,0xbc,0xf,0x2,0x10,0x94,0x99,0x7e, 0x3,0x4e,0xc0,0x8,0x5,0xe7,0x34,0xf7,0xc2,0xed,0x7e,0x16,0xff,0x42,0x65,0xd5, 0x4d,0x5,0x43,0x5f,0x1c,0xe3,0x29,0xa5,0x86,0x2c,0x24,0xb4,0x25,0xec,0xff,0x4d, 0xf4,0x40,0xa4,0xca,0x23,0xc,0x0,0x90,0x6a,0x71,0x5f,0x29,0x5,0x46,0x0,0x99, 0x2c,0xfa,0x2e,0x6c,0xee,0xc3,0x1a,0xfc,0x56,0xc3,0xc7,0x4e,0xff,0x6,0x6e,0xdd, 0xdc,0x45,0xaf,0xd3,0x82,0xef,0x9,0x70,0x98,0x8,0x2,0x5a,0x2,0x99,0x5c,0x89, 0x2e,0x44,0x4b,0xc2,0x31,0x5,0x5,0x41,0x10,0xc0,0x75,0xcc,0xf1,0xd1,0x2a,0x5d, 0xa6,0x89,0xf4,0xea,0xdf,0xb0,0x58,0x1d,0xb5,0x4d,0xf4,0x51,0x6,0xfd,0xc1,0x60, 0x0,0xd7,0x75,0xf1,0xca,0x2b,0xaf,0x4,0x5a,0xeb,0xf9,0xa6,0x12,0xd7,0x7a,0x5e, 0x44,0xbd,0x6a,0x70,0xf8,0xea,0x41,0x62,0x49,0x24,0xaf,0x70,0xdb,0x7f,0xf4,0xe8, 0xd1,0x6c,0x3e,0x9f,0xa3,0xdd,0x6e,0xa3,0xdf,0xef,0x83,0x73,0x9e,0x1b,0xa1,0x75, 0xab,0x58,0xc2,0x5a,0x4c,0x82,0x56,0x4d,0x2b,0x5b,0xf2,0xa8,0x33,0xde,0x3c,0x8e, 0x53,0x8c,0xc7,0x63,0x3,0x8,0xd9,0x38,0xd0,0xe2,0x7b,0x71,0x48,0x80,0x71,0x50, 0x26,0x90,0x68,0xe0,0xe2,0x72,0x84,0x87,0x47,0x4f,0xf0,0xe4,0xf8,0x19,0xc6,0xe3, 0x29,0xc2,0xd4,0x24,0xa2,0x1d,0xc7,0x81,0x10,0xa6,0xa4,0xd6,0x1a,0x72,0x63,0x94, 0xf4,0x12,0x38,0x38,0x8c,0xe7,0x3c,0xbe,0xeb,0xba,0x70,0x1d,0xd3,0x57,0xe0,0x79, 0x1e,0x9c,0xac,0xcf,0x40,0x38,0xc,0x9e,0x70,0xc0,0x39,0x7,0xe7,0x6c,0x25,0x38, 0x98,0xfd,0x5a,0x6,0xca,0x32,0x38,0x28,0x65,0xf2,0x25,0x71,0x66,0xd4,0x93,0x24, 0x41,0x9c,0x26,0x79,0xef,0x45,0x18,0xc6,0x19,0x3f,0x2f,0x91,0x64,0x9,0xef,0x5, 0x80,0xa8,0x42,0x44,0xb0,0xc8,0x1b,0x14,0x2b,0xa7,0x94,0x92,0x90,0x71,0x2,0xad, 0x52,0x34,0x3,0x1f,0xb7,0x6e,0xee,0x60,0xef,0xe6,0x2e,0x6e,0x74,0x3b,0x68,0x34, 0x1a,0x90,0x69,0xbc,0xa4,0x67,0x45,0x29,0x45,0x9a,0x9a,0x61,0x3f,0x8e,0xe3,0xc0, 0xf5,0x9a,0xe8,0x76,0xc,0x50,0xd8,0xa1,0x40,0x0,0x40,0x28,0xcf,0x4b,0x65,0xab, 0x22,0x6,0x9b,0xd7,0xd9,0xb6,0xe0,0xa0,0x58,0x4c,0x30,0x9b,0xcd,0xf2,0xdf,0xbc, 0xd5,0x6a,0xbd,0x7b,0xfb,0xf6,0xed,0x3f,0xce,0x9e,0xc3,0xb5,0xd6,0x69,0xc5,0xed, 0x7a,0x5e,0x44,0xbd,0x6a,0x70,0xf8,0xaa,0x40,0x1,0x85,0xbe,0x85,0xec,0xa2,0xd5, 0x0,0xf0,0xd9,0x67,0x9f,0xfd,0xef,0x94,0xd2,0x5f,0x68,0xad,0xd1,0xed,0x76,0xd1, 0x6e,0xb7,0x73,0x63,0xb2,0xd,0x2f,0x5d,0x15,0x39,0x14,0x79,0x67,0xfb,0x1e,0xc5, 0x84,0x25,0xa5,0x34,0x37,0x10,0xe3,0xc9,0x2c,0xcf,0x25,0x30,0x8a,0x9c,0xaa,0xe0, 0x9c,0x3,0x5a,0x22,0x95,0x1a,0xc3,0xd1,0x4,0x8f,0x9f,0x7d,0x81,0x47,0x4f,0x9e, 0xe0,0x7c,0x30,0x86,0x2,0x5,0xe3,0x2,0x84,0xb0,0xac,0x44,0x94,0x66,0x49,0x5b, 0xd,0x56,0xc8,0x59,0x70,0xce,0xe1,0x32,0x2,0xd7,0x75,0xb3,0xd9,0xd3,0x2e,0x1a, 0x7e,0x0,0x3f,0x70,0x11,0xb8,0x5e,0x6,0xe,0x22,0x6f,0x3a,0x63,0xcc,0x54,0x39, 0x59,0x30,0x60,0x9c,0x80,0x62,0xb5,0x96,0x92,0x79,0x9c,0x16,0xa8,0x22,0x5c,0xa1, 0x74,0x8a,0xb7,0x95,0x52,0x48,0x94,0xad,0x7e,0x32,0xd1,0x44,0x9c,0x98,0x51,0x9e, 0x61,0x18,0x62,0x1e,0x25,0x88,0xa2,0x8,0x51,0x94,0x20,0x8c,0xa3,0xac,0x44,0xd7, 0x0,0x66,0x2a,0x25,0xb4,0x36,0x81,0xa,0x34,0xcd,0x1,0x22,0x55,0x9,0x8,0x60, 0x72,0x16,0x71,0x82,0x34,0x89,0x0,0x0,0xad,0x46,0x80,0x56,0xab,0x85,0x57,0xef, 0x1e,0xa0,0xdb,0x6d,0x23,0x70,0x3d,0xc8,0x34,0x86,0xed,0xb3,0x50,0x2a,0x5,0xa4, 0x82,0xa4,0x2e,0x8,0x14,0x5c,0xd7,0x45,0xb7,0xdb,0x45,0xab,0xd5,0x2,0x88,0x1, 0x7c,0x45,0x28,0x88,0x8c,0xaf,0x14,0x15,0xd8,0xc8,0xc1,0x96,0xb,0x6f,0xca,0x59, 0x14,0x23,0xc,0xb,0x12,0xf3,0xb9,0x29,0xc,0x8,0xc3,0x10,0xae,0xeb,0xe2,0xce, 0x9d,0x3b,0xbe,0xd6,0x3a,0x5c,0xe5,0xc0,0x14,0xa3,0x88,0xe2,0xf9,0x5b,0xaf,0x7a, 0xd5,0xe0,0xf0,0x82,0xa3,0x7,0x42,0x8,0x7f,0xf2,0xe4,0x49,0x32,0x9b,0xcd,0xe0, 0xfb,0x3e,0xba,0xdd,0x2e,0x82,0x20,0xc8,0xa9,0x8b,0x22,0x7d,0xf0,0xbc,0xab,0x98, 0x97,0xb0,0x89,0xeb,0xe9,0x74,0x9a,0x27,0x28,0xcb,0x46,0x4,0x64,0x51,0x99,0x33, 0x18,0x4f,0x70,0x7a,0x7a,0x8a,0x4f,0x1e,0x7f,0x81,0x93,0x93,0x13,0x44,0x51,0x4, 0xdf,0xf7,0xf3,0xa4,0xaa,0xa0,0x6,0x18,0x74,0xf6,0xbe,0x96,0xcd,0x6f,0x78,0x3e, 0x9a,0x8d,0x6,0x3c,0xcf,0xcc,0x9d,0xee,0xb7,0x5b,0x59,0xf5,0x8e,0x7,0xcf,0x71, 0xe1,0xf9,0x2e,0x3c,0xc1,0x73,0xb9,0xa,0x9b,0x5b,0xb0,0x20,0xb0,0x9c,0x37,0x50, 0x20,0x9a,0xae,0xed,0x80,0xb6,0x94,0x52,0x79,0x5f,0x36,0xc9,0x53,0xa8,0xac,0xce, 0x49,0xa6,0x7a,0x41,0x19,0x69,0x93,0xe4,0x8f,0x2d,0x48,0x24,0x29,0x66,0x61,0x88, 0xd9,0x6c,0x86,0xe9,0x74,0x8e,0x59,0x38,0x47,0x14,0x9b,0xe8,0x23,0xcd,0xde,0x5b, 0x2a,0x40,0xa9,0x8c,0x76,0xca,0xde,0x47,0x4a,0x9,0x95,0x45,0x61,0x69,0x12,0xa1, 0xd5,0x8,0x70,0x70,0x67,0x1f,0x77,0x6f,0xdf,0x46,0xa7,0xd9,0x0,0x25,0x1a,0x5a, 0x99,0xe,0x71,0xa5,0x49,0x1e,0x21,0x0,0x80,0xe3,0xfa,0x68,0x36,0x9b,0x68,0x34, 0xdb,0xf0,0x3c,0x7,0x32,0xab,0xa,0xab,0xda,0xaf,0xeb,0xf4,0x49,0x14,0x13,0xe6, 0x36,0xba,0x93,0x52,0x62,0x34,0x32,0x5,0x3,0x8c,0x31,0xbc,0xfa,0xea,0xab,0x79, 0xc9,0xeb,0x36,0xe3,0x4a,0x6b,0x90,0xa8,0x57,0xd,0xe,0x2f,0x3e,0xef,0xd0,0x38, 0x3a,0x3a,0x9a,0xcc,0xe7,0x73,0x74,0xbb,0x5d,0x74,0xbb,0x5d,0x30,0xc6,0x10,0xc7, 0x71,0x4e,0xc7,0xd8,0x88,0x60,0xd3,0x71,0x28,0x1a,0x8,0x7b,0xdb,0x7a,0x94,0x36, 0xe9,0xa9,0xb5,0x46,0x18,0x86,0xb8,0xbc,0xbc,0xc4,0x74,0x3a,0x5,0x61,0x59,0x83, 0x58,0xaa,0xc1,0xa9,0x29,0xc7,0xa4,0x94,0x22,0x56,0x4,0xe7,0x17,0x97,0x78,0x78, 0xf4,0x4,0x8f,0x9f,0x1e,0x63,0x3c,0x1e,0x43,0x31,0x17,0xae,0xeb,0xc2,0xc9,0xb8, 0x71,0x4a,0x29,0x44,0x46,0xf5,0x70,0x42,0x41,0x60,0xe4,0x3b,0x9a,0xcd,0x0,0xcd, 0xa0,0x81,0x6e,0xbb,0x69,0xf8,0x74,0xcf,0x87,0x1f,0x78,0xa6,0x9c,0x93,0x71,0x30, 0x96,0x51,0x4b,0xc6,0xef,0x84,0xd6,0xd2,0xb4,0x81,0x53,0xf3,0x1d,0xa1,0xaa,0xeb, 0xfe,0x57,0x55,0xe9,0xac,0x4,0x44,0x52,0x2,0x47,0x54,0x8b,0xdd,0xd9,0xe7,0x51, 0x90,0xa5,0x26,0x3d,0x63,0xb0,0xb5,0xc9,0x55,0x48,0x89,0x58,0xc6,0x48,0x12,0x89, 0x28,0x8e,0x11,0x45,0x31,0x26,0xf3,0x19,0x46,0xe3,0x29,0x26,0x93,0x9,0xe2,0x38, 0xc5,0x24,0x8c,0xb2,0x63,0xbe,0x4c,0x69,0x49,0x29,0x91,0xc4,0x12,0x94,0x19,0xb1, 0xbc,0x34,0x8a,0xe0,0x3a,0x1c,0x37,0x7a,0x5d,0xbc,0x74,0xb0,0x8f,0xbd,0x9b,0xbb, 0x70,0x5d,0x1,0xa6,0x15,0x64,0x1a,0x5f,0x31,0xe0,0x9e,0xe7,0xa1,0xd5,0x36,0x91, 0x64,0x31,0xe1,0x6d,0xa3,0x3f,0x4b,0x41,0x59,0x29,0x8d,0x6d,0xa8,0xa5,0x72,0xb7, 0xbb,0x3d,0x96,0x51,0x14,0xe1,0xf2,0xf2,0x12,0x61,0x18,0x82,0x31,0xf6,0x77,0xaf, 0xbd,0xf6,0xda,0x5f,0x57,0xe4,0xc4,0x6a,0x20,0xa8,0x57,0xd,0xe,0x5f,0x61,0xb4, 0x40,0xde,0x7c,0xf3,0xcd,0x9f,0xff,0xe9,0x9f,0xfe,0xe9,0xdb,0x94,0x52,0xf4,0xfb, 0x7d,0x34,0x1a,0x8d,0xfc,0xc2,0x2f,0x7a,0x83,0x96,0xde,0xd9,0x74,0x1c,0xec,0xf3, 0xca,0xef,0x61,0xef,0xc7,0x71,0x88,0xc1,0x60,0x84,0xe9,0x74,0x6a,0x8c,0xb,0x25, 0x20,0x58,0x94,0xbf,0x3a,0x8e,0xe9,0x43,0x78,0x7c,0xfc,0xc,0x9f,0x1e,0x7e,0x86, 0x67,0x67,0x97,0x48,0xa5,0x6,0x77,0x5d,0x8,0xc7,0x83,0x4b,0x15,0x28,0x67,0x20, 0x60,0x0,0xa3,0x70,0x5c,0x2f,0x97,0xcd,0xe8,0xf5,0x7a,0x78,0x65,0xaf,0x8b,0x56, 0xb3,0x91,0x27,0x58,0x1b,0x9e,0xb,0x47,0x8,0x0,0xa,0x9c,0x73,0x48,0x59,0xac, 0xb6,0x91,0x5,0x0,0xc8,0xaa,0x83,0x88,0x58,0x73,0xdc,0xc,0x5f,0xb4,0x4a,0xba, 0x63,0xf1,0xa4,0xab,0xde,0x72,0xfe,0x1c,0x52,0xf2,0xac,0xb,0x91,0x88,0xd5,0x56, 0xaa,0x8a,0x30,0xf2,0x3c,0xd,0x5d,0x18,0xec,0x38,0xa7,0xa2,0x4c,0xf2,0x3e,0xc, 0x43,0x4c,0x66,0x11,0x46,0x93,0xb1,0xc9,0xbf,0x84,0x21,0x92,0x34,0xab,0x72,0xca, 0x40,0x22,0xcd,0x40,0x46,0x67,0xd1,0x45,0x3c,0x9f,0x23,0x4d,0x22,0x74,0x3a,0x1d, 0xdc,0xba,0x75,0x13,0xf7,0xe,0x6e,0x21,0x8,0x2,0x70,0x46,0x90,0xc4,0x21,0x94, 0x52,0x79,0xa2,0x5e,0x29,0x5,0xc7,0xf5,0xf3,0x72,0x5a,0x93,0xaf,0x48,0xaf,0xd0, 0x86,0x5b,0x9c,0x7f,0x4b,0xe,0x44,0xb9,0xd3,0xdd,0xf6,0x45,0x9c,0x9d,0x9d,0x61, 0x3a,0x9d,0xa2,0xd3,0xe9,0x60,0x7f,0x7f,0xdf,0xd3,0x5a,0x47,0xab,0x1c,0x9c,0x7a, 0xd5,0xab,0x6,0x87,0x17,0x14,0x31,0x64,0x34,0xd2,0x6f,0x66,0xb3,0xd9,0xcf,0x5d, 0xd7,0x45,0xaf,0xd7,0x83,0xef,0xfb,0x4b,0x40,0x0,0x0,0x69,0x9a,0x6e,0xdd,0xdd, 0x5c,0x34,0x62,0xf6,0xb9,0x9c,0xf3,0xe5,0x9c,0xc2,0x78,0x98,0xfd,0x2f,0xe3,0xa6, 0x29,0x1,0x67,0x4e,0x3e,0xe8,0xfe,0xe3,0x7,0x8f,0x71,0x74,0x74,0x84,0x93,0xb3, 0x73,0x10,0x6a,0xca,0x2d,0x91,0xe5,0x25,0x6c,0xce,0x80,0x31,0x66,0x0,0x22,0xab, 0xd0,0xe1,0x9c,0xe3,0x46,0xaf,0x8f,0x57,0x5f,0x7d,0x15,0xaf,0xdc,0xba,0x91,0xd3, 0x14,0x4,0x79,0x85,0x2a,0x54,0xba,0x68,0xce,0x2b,0x7a,0xf3,0x57,0x1e,0x53,0xcb, 0x89,0x72,0x85,0x2,0x10,0x80,0xe5,0xd,0x67,0x55,0xe3,0x35,0x57,0x76,0x77,0xd3, 0x35,0xff,0xcf,0xc1,0x86,0x5c,0x21,0x9a,0x96,0x7b,0x5,0x74,0xfe,0xbc,0xbc,0x82, 0x28,0x4b,0xae,0x13,0x30,0xa4,0x69,0x9a,0x77,0x71,0x47,0x51,0x84,0xe9,0x2c,0xc4, 0x64,0x32,0xc5,0x70,0x3c,0xc5,0x74,0x1e,0x62,0x1e,0xc6,0xa6,0x73,0x7c,0x29,0x89, 0x6d,0xa8,0xa4,0x24,0x49,0x90,0x46,0x46,0x6f,0xca,0x13,0x14,0xb7,0x6e,0xdd,0xc2, 0xdd,0x3b,0xb7,0xd1,0xeb,0x76,0xc0,0x9,0x90,0x26,0x51,0x4e,0x5,0xda,0x8,0xc1, 0xf3,0x3c,0xf4,0xfb,0x7d,0x93,0x93,0x28,0x38,0x2,0xd7,0x75,0x1e,0xca,0xc7,0xca, 0x2,0x47,0x91,0x66,0xba,0xb8,0xb8,0x0,0xe7,0x1c,0xf7,0xee,0xdd,0x73,0x1,0xc8, 0x7a,0x5e,0x44,0xbd,0x6a,0x70,0xf8,0xea,0x0,0x82,0x3f,0x79,0xf2,0x24,0x19,0x8f, 0xc7,0xe8,0x74,0x3a,0xe8,0xf7,0xfb,0x57,0xea,0xd3,0xcb,0x94,0xc1,0xb6,0x65,0x8a, 0x45,0x3,0x60,0xa9,0xa9,0xe1,0x70,0x88,0xf1,0x78,0x9c,0x69,0xfe,0x67,0xea,0xa3, 0xd4,0x70,0xfc,0x1a,0x6,0x38,0x3e,0x7b,0xf8,0x0,0x87,0x87,0x87,0x38,0x9f,0x13, 0x50,0xa2,0x33,0xea,0xc8,0xc9,0x1,0xc6,0xb3,0xd,0x5b,0xdc,0x3,0xa7,0x14,0x8d, 0xc0,0x41,0xbb,0xd1,0xc0,0xcd,0x1b,0x5d,0xdc,0xd9,0xbf,0x89,0x5e,0xab,0x89,0xc0, 0x73,0x4d,0xd2,0x94,0x10,0x50,0x2,0x28,0x25,0x97,0x12,0xe0,0x46,0x5b,0x69,0x41, 0xe3,0x58,0xe3,0x6f,0xee,0x67,0x49,0x6b,0xe8,0x42,0xf3,0x1e,0xdb,0x7a,0x9f,0x17, 0x54,0x9,0xf2,0x4c,0xb4,0xae,0x78,0xce,0xf2,0xfb,0x5d,0xa5,0xe9,0xac,0xd0,0x1e, 0x0,0x93,0xff,0xd0,0x6,0x6,0x16,0x9f,0xc1,0xd7,0x0,0x8d,0x2,0xa8,0x11,0xd, 0x4c,0x64,0x8a,0x79,0x94,0x20,0x8c,0x52,0xcc,0xc2,0x18,0xa3,0xd1,0x4,0x97,0xc3, 0x81,0x91,0xd5,0x8e,0xc2,0x2c,0x7a,0x20,0x46,0x2,0x4,0xa6,0x94,0xd6,0x76,0x8e, 0xa7,0x51,0x4,0xce,0x8,0x6e,0xee,0xdc,0xc0,0xbd,0x57,0x5e,0xc2,0x6e,0xdf,0xf4, 0xb6,0xc4,0x71,0xc,0x2,0xb5,0xe4,0xed,0x7,0x41,0x80,0x5e,0xaf,0x7,0xcf,0xf3, 0x56,0x7e,0xaf,0x2a,0xe7,0xa1,0xaa,0xd3,0xba,0x9c,0xa8,0xb6,0x7f,0xa7,0xd3,0x29, 0xce,0xcf,0xcf,0x91,0xa6,0x29,0xde,0x78,0xe3,0x8d,0x7a,0x5e,0x44,0xbd,0x6a,0x70, 0xf8,0x8a,0x80,0x41,0x7c,0xfe,0xf9,0xe7,0x71,0x1c,0xc7,0x79,0xa7,0xf3,0x75,0x46, 0x54,0x96,0xf9,0xe2,0x2b,0xb3,0x17,0x54,0x9a,0x6b,0xfc,0xcc,0xe7,0x73,0x9c,0x9d, 0x5f,0x62,0x36,0x9b,0xe5,0x11,0x4,0x53,0x11,0x8,0x17,0x20,0xcc,0xc5,0x60,0x32, 0xc3,0xa7,0xf,0x8e,0x70,0xf8,0xd9,0x3,0xc,0x27,0x13,0xb8,0xae,0xb,0xdf,0x29, 0x94,0x9f,0x66,0x95,0x47,0xd6,0xd3,0xf4,0x3c,0xf,0x37,0x1a,0x2,0x37,0x6f,0xde, 0xc4,0xad,0xbd,0x3d,0x74,0xbb,0x6d,0x34,0x3c,0x1f,0x94,0x99,0xda,0xff,0x62,0xa2, 0x7b,0x9d,0x71,0xaa,0xba,0xbd,0xee,0xb1,0xaf,0x73,0x6d,0x1a,0xf8,0x53,0xec,0x37, 0xa8,0xfc,0xbd,0x88,0x82,0x56,0xcb,0xcf,0x31,0x25,0xb2,0x21,0x92,0x24,0xc1,0xc5, 0x74,0x86,0xc1,0xe5,0xc8,0x68,0x1d,0x85,0x11,0xa2,0x24,0x86,0x4c,0x75,0x4e,0x3b, 0x19,0xea,0x2f,0x46,0x9a,0xc9,0x93,0x10,0x68,0xdc,0xb9,0xb5,0x87,0x7b,0x2f,0xdf, 0x41,0xbf,0xd7,0x5,0x87,0x36,0xa5,0xaf,0x52,0x81,0xd0,0x4c,0xc9,0x95,0x89,0x3c, 0x1f,0xe1,0x38,0xce,0xd5,0x88,0x20,0x3,0x37,0x2,0x5,0x10,0x76,0x85,0x52,0x2a, 0x82,0x46,0xb1,0x9a,0xa9,0x28,0x9,0x3e,0x9f,0xcf,0x71,0x7a,0x7a,0x8a,0x28,0x8a, 0xa0,0xb5,0xfe,0x9b,0x1f,0xfd,0xe8,0x47,0xff,0x71,0x13,0xb5,0x54,0x97,0xbc,0xd6, 0xab,0x6,0x87,0x35,0x17,0x45,0xf1,0x31,0x0,0xde,0xc7,0x1f,0x7f,0x3c,0x73,0x1c, 0x27,0x17,0xcc,0x2b,0xaa,0x68,0x6e,0x53,0xaa,0xba,0x2e,0xb2,0xb0,0x86,0x3c,0xc, 0x43,0x9c,0x9f,0x9f,0x63,0x3c,0x1e,0xe7,0xd4,0x8f,0x7d,0x8d,0x70,0x1d,0x84,0xf3, 0x18,0x87,0xf,0x1f,0xe1,0xfd,0xfb,0x1f,0x63,0x38,0x9d,0xc2,0xf1,0x2,0x38,0x8e, 0xbb,0x18,0x70,0x93,0xb,0xcf,0x19,0x1a,0xc7,0xf3,0x3c,0xec,0xf4,0x7b,0xb8,0x73, 0xe7,0xe,0x6e,0xed,0xf6,0x17,0x1d,0xbd,0x69,0x92,0xd,0xe0,0x91,0xf9,0xe7,0xac, 0x2b,0x35,0x5d,0x95,0x40,0xfe,0x43,0x3,0xc2,0x75,0x0,0xc3,0x4a,0x77,0x97,0xc7, 0x79,0x2e,0xfe,0x9f,0x39,0xd4,0x9a,0x5e,0xa1,0xf9,0x94,0x52,0x8,0x53,0x63,0xfc, 0xe7,0xf3,0x39,0x6,0xa3,0x9,0x2e,0x6,0x97,0x18,0x8f,0xa7,0x88,0xe2,0x34,0xd3, 0xa7,0x32,0xdd,0xdb,0x71,0x1c,0x23,0x49,0x53,0x28,0x99,0x22,0x9c,0x4d,0xe0,0x50, 0x8a,0xfd,0xbd,0x3d,0xbc,0xf6,0xea,0x5d,0xb4,0x1b,0x1,0x4,0xe7,0x48,0xd3,0x18, 0x50,0x3a,0xa7,0xe4,0x18,0x13,0xb8,0x71,0xa3,0x87,0x66,0xd3,0x74,0x69,0xdb,0x92, 0xe4,0xaa,0x82,0x86,0x75,0xd3,0x0,0x8b,0x33,0x39,0x8a,0xa5,0xd1,0x69,0x9a,0xe2, 0xf4,0xf4,0x14,0xb6,0xff,0xe6,0xd6,0xad,0x5b,0xac,0x3c,0x63,0x64,0x1d,0x0,0xd4, 0x0,0x51,0xaf,0x1a,0x1c,0xaa,0xc1,0xa1,0xf5,0xd1,0x47,0x1f,0x8d,0x1c,0xc7,0xc9, 0x13,0xcf,0x65,0xb9,0x84,0x6d,0xaa,0x91,0xca,0x17,0x6e,0x11,0x20,0xa4,0x94,0xb8, 0x1c,0xcf,0x30,0x1d,0xd,0x91,0xc4,0x21,0x4,0xa7,0x79,0x8f,0x4,0x65,0x2,0x94, 0x9,0x7c,0xfc,0xe0,0x31,0x3e,0xf8,0xe0,0x3,0x9c,0x9e,0x5f,0xc0,0xf3,0x1b,0xe0, 0xae,0x5b,0x90,0xb0,0xa6,0x20,0x94,0x83,0x33,0x2,0x87,0x31,0x74,0xda,0x4d,0x1c, 0xec,0xed,0xe0,0xce,0xc1,0x6d,0x74,0x5b,0x4d,0xf8,0xbe,0x8f,0x38,0x4e,0xf3,0xae, 0xea,0x62,0xa4,0xa0,0x4c,0x7f,0x14,0x1c,0x2e,0x2a,0x81,0x60,0xdd,0xac,0xe7,0x6f, 0x59,0xe4,0x57,0xa9,0xcd,0x94,0xcb,0x6f,0xa0,0xf0,0x98,0x22,0x57,0x12,0xbd,0x8a, 0x0,0x52,0x9a,0x68,0x22,0x8a,0x63,0xcc,0xe7,0x21,0x46,0x93,0x59,0x41,0x6f,0x2a, 0x81,0x54,0xa,0xa9,0x56,0x48,0x53,0xdb,0x85,0x9d,0x20,0x9a,0x99,0xc4,0x35,0xd1, 0xa,0x3f,0x78,0xed,0x15,0xbc,0x7c,0xf7,0x25,0x34,0x7d,0xf,0xd0,0x3a,0x6f,0xa2, 0x63,0x8c,0x99,0x52,0xd9,0x56,0xb,0xdd,0xde,0xd,0xf8,0xbe,0xbf,0x74,0x8e,0x95, 0x29,0xa5,0xe2,0xf9,0x54,0x15,0x39,0x14,0x1b,0x28,0xad,0xe3,0x21,0xa5,0xc4,0xc9, 0xc9,0x9,0x26,0x93,0x9,0xda,0xed,0x36,0x6e,0xdf,0xbe,0xcd,0xb5,0xd6,0xd2,0x36, 0xc9,0x95,0x86,0x50,0xd5,0x79,0x88,0x7a,0xd5,0xe0,0x50,0x30,0x1e,0x79,0x25,0x12, 0xb2,0x21,0x3d,0xf7,0xef,0xdf,0xff,0xf,0x9c,0xf3,0xbf,0x65,0x8c,0xe1,0xe6,0xcd, 0x9b,0x39,0x3f,0x6c,0xbb,0x64,0xaf,0xa3,0xca,0x69,0x2b,0x54,0xca,0x83,0xe7,0xad, 0x2c,0xf3,0x64,0x3a,0x7,0x81,0x2,0xcf,0x73,0xb,0x14,0xdc,0x9,0x70,0x7c,0x72, 0x8a,0xb7,0xdf,0x7b,0x1f,0x8f,0x9e,0x9d,0x80,0x73,0x33,0xac,0x86,0xb,0x1,0x9e, 0x77,0x2f,0x13,0xb8,0xdc,0x34,0xa0,0xf5,0xba,0x6d,0xec,0xef,0xdd,0xc4,0xc1,0xfe, 0x1e,0x3a,0xed,0x16,0x1c,0x46,0xf3,0xa4,0x28,0x60,0xca,0x5e,0x35,0x96,0x2b,0x64, 0x34,0x4c,0xb9,0xac,0x60,0xbc,0x72,0x52,0xdb,0x77,0x79,0x15,0x7f,0xb3,0x62,0x2, 0x5d,0x6b,0xd,0x25,0x4b,0x11,0x12,0xc9,0xaa,0xb2,0xb2,0x2a,0x29,0xdb,0x4b,0x31, 0x9d,0xcd,0x30,0x9d,0xce,0x70,0x31,0x98,0xe0,0xec,0xe2,0x1c,0xb3,0x70,0xe,0xa9, 0x49,0x56,0x8d,0x44,0x72,0xd1,0x43,0xa2,0x14,0x26,0xe3,0x21,0x9a,0x81,0x8f,0xd7, 0xef,0xbd,0x8a,0x3b,0x7,0xb7,0xe1,0x9,0x8e,0x34,0x89,0x8c,0x50,0x20,0x16,0x85, 0x8,0x9d,0x4e,0x7,0xdd,0x6e,0x17,0x1a,0xe6,0x9c,0x61,0xdc,0x1,0x81,0xba,0x72, 0x8e,0xad,0x1b,0x55,0xba,0x6a,0x18,0xd1,0xc5,0xc5,0x5,0x2e,0x2f,0x2f,0xd1,0x6c, 0x36,0xf1,0xd2,0x4b,0x2f,0x9,0xdb,0x3d,0x5d,0x47,0xc,0xf5,0xaa,0xc1,0x61,0xb, 0x80,0x0,0x80,0xa3,0xa3,0xa3,0x7f,0x98,0xcd,0x66,0x7f,0xe9,0xfb,0x3e,0xf6,0xf6, 0xf6,0x96,0x7a,0xd,0xca,0x43,0x5f,0xb6,0x89,0x1c,0xa4,0x94,0x10,0x42,0x2c,0x79, 0x83,0x83,0xc1,0x0,0x17,0x17,0x17,0xd0,0x5a,0x83,0x33,0x92,0x37,0x36,0x39,0xae, 0x8f,0x8b,0xd1,0x14,0xef,0xfc,0xee,0x3,0x1c,0x3e,0x38,0x82,0xa6,0x14,0xae,0x17, 0xe4,0x15,0x46,0x9c,0x53,0x38,0x42,0x40,0x50,0xa,0xd7,0xe1,0x68,0xb7,0xdb,0x78, 0xf5,0xce,0x2d,0xec,0xed,0xed,0xa1,0xdd,0x6e,0x1b,0xaf,0x35,0xa,0x17,0xd1,0x81, 0x52,0x10,0x7c,0x91,0x90,0x2d,0x2,0x84,0xd1,0x4d,0x22,0x20,0x1a,0xdf,0x69,0x60, 0xd8,0x44,0xfd,0x5d,0x1d,0x15,0x4a,0x97,0x24,0xba,0x97,0xf2,0xb8,0x94,0x40,0xab, 0x4c,0x2d,0x55,0x1b,0xdd,0xa7,0xe9,0xcc,0xcc,0xc5,0xb8,0x18,0x8c,0x70,0x7e,0x79, 0x81,0xc9,0x6c,0x8e,0x38,0x55,0xd0,0x59,0x55,0x55,0xc6,0xf9,0x23,0x8d,0x22,0x84, 0xf3,0x29,0x7a,0xad,0x0,0x6f,0xbc,0xfe,0x3,0xec,0xdf,0xdc,0x35,0xbf,0x91,0xcc, 0xa8,0xbe,0xac,0xa9,0x2e,0x8,0x2,0xec,0xec,0xee,0x21,0x8,0x2,0x44,0x71,0x9a, 0x57,0x7b,0xad,0xa2,0x96,0x8a,0xa5,0xb3,0x56,0xfe,0xbd,0xca,0x69,0xe1,0x9c,0xe3, 0xf2,0xf2,0x12,0x27,0x27,0x27,0x8,0x82,0x0,0x2f,0xbf,0xfc,0xf2,0x52,0xa9,0x6b, 0x9d,0x6f,0xa8,0x57,0xd,0xe,0x2b,0x3c,0x25,0x0,0xb8,0x7f,0xff,0xfe,0x7f,0x20, 0x84,0xfc,0x6d,0xa3,0xd1,0xc0,0xcd,0x9b,0x37,0xaf,0xd0,0x41,0x55,0x3,0xe7,0xb7, 0xa1,0x35,0x94,0x52,0x10,0x42,0x20,0xc,0x43,0x7c,0xf1,0xc5,0x17,0x88,0xa2,0x8, 0x42,0x8,0x23,0xd9,0x4d,0x1,0x2e,0x5c,0xa4,0x52,0xe3,0xf0,0xe1,0x11,0xde,0xfb, 0xe0,0x23,0xc,0x86,0x63,0x38,0x41,0x33,0x9b,0x83,0x6c,0x4a,0x4c,0x8d,0x3c,0x5, 0x85,0x60,0x4,0xbb,0xbd,0x1e,0x5e,0xb9,0x7b,0x7,0xb7,0x6e,0xed,0xa1,0xe1,0xb0, 0x4c,0x1e,0x42,0xe7,0x46,0x42,0x6b,0xd,0x64,0x43,0x72,0x88,0x4c,0x73,0x3,0x99, 0x77,0x35,0x2f,0x29,0x80,0x6e,0xbf,0x2f,0xdf,0xc9,0x13,0xb5,0x92,0xba,0x29,0x6a, 0x20,0x2d,0x64,0xbc,0x41,0xcd,0xac,0xea,0x25,0x15,0x58,0xc6,0x11,0x86,0x61,0x3e, 0xe4,0xe8,0x72,0x38,0xc6,0xe9,0xf9,0x85,0x89,0x8,0x9,0x85,0x84,0x89,0x12,0xa5, 0x34,0x72,0x1b,0x51,0x38,0x83,0x96,0x29,0xf6,0xf7,0x76,0xf1,0xc6,0x1b,0xaf,0xa3, 0x11,0x4,0x50,0x49,0xc,0x46,0x1,0x4a,0x32,0x9,0x71,0x26,0x4c,0x73,0x65,0xef, 0x6,0x28,0xd1,0x4b,0x6a,0xb1,0xdb,0x2,0x5d,0x91,0x2a,0x4c,0xd3,0x34,0xff,0xed, 0x87,0xc3,0x21,0x4e,0x4f,0x4f,0x21,0x84,0xc0,0xab,0xaf,0xbe,0xea,0x16,0xe6,0x43, 0xe4,0x43,0xaa,0x6a,0x70,0xa8,0x57,0xd,0xe,0x5,0x2f,0xe9,0xe9,0xd3,0xa7,0xef, 0xc,0x87,0xc3,0x9f,0xb7,0xdb,0x6d,0xec,0xee,0xee,0x5e,0x19,0xc4,0x53,0xbe,0x30, 0xb7,0x4d,0x48,0x5b,0x80,0xb9,0xbc,0xbc,0xc4,0x60,0x30,0x58,0xa,0xf9,0x1d,0xc7, 0x1,0x65,0x2,0x67,0x97,0x3,0xbc,0xf7,0xfe,0x87,0x38,0x7c,0x70,0x4,0x2a,0x4, 0x1a,0x8d,0x6,0x8,0x31,0x9a,0x46,0xdc,0xf6,0x26,0x8,0x8a,0x5e,0xa7,0x8b,0x7b, 0xaf,0xbe,0x82,0x5b,0x37,0x6f,0xc0,0xa1,0x4,0x94,0x1,0x69,0xb2,0xf0,0x1c,0x2d, 0x78,0x15,0x39,0x69,0xca,0x90,0x47,0x1e,0xa6,0x47,0xa0,0x20,0xd9,0xd,0x40,0x61, 0xb3,0xd1,0xf9,0x3e,0x80,0x43,0xd1,0xb8,0x9a,0xc7,0x16,0xf3,0x28,0x64,0x36,0x2a, 0x55,0x49,0x5c,0x91,0xbf,0x28,0x46,0x19,0x61,0x12,0x63,0x32,0x9d,0x63,0x32,0x9f, 0x63,0x30,0x9c,0xe2,0xe4,0xe4,0x4,0x49,0xd6,0x78,0x27,0x61,0x54,0x55,0xe3,0x38, 0x36,0xd2,0x1c,0x69,0xc,0xce,0x29,0x7e,0x78,0xef,0x35,0xdc,0xde,0xbf,0x5,0x41, 0x9,0xa2,0x70,0x6,0x47,0x98,0x82,0x7,0xa9,0x80,0x56,0xbb,0x8b,0x1b,0xfd,0xee, 0x52,0x81,0x42,0x55,0xf4,0xba,0x6a,0xd2,0x9c,0xcd,0x6b,0xb9,0xae,0x8b,0x24,0x59, 0x8,0x2c,0xe,0x6,0x3,0x9c,0x9e,0x9e,0x82,0x73,0x8e,0xd7,0x5e,0x7b,0x2d,0xd0, 0x5a,0xcf,0xeb,0x88,0xa1,0x5e,0x35,0x38,0x54,0xac,0xe3,0xe3,0x63,0x3d,0x1a,0x8d, 0xd0,0xe9,0x74,0xb0,0xb3,0xb3,0xb3,0x94,0x27,0xb0,0x46,0xb7,0xac,0x94,0xba,0x2d, 0xad,0xa4,0x94,0xc2,0xf9,0xf9,0x39,0x26,0x93,0x49,0x7e,0x1,0x17,0x8d,0xf7,0xef, 0x3f,0x3a,0xc4,0xfd,0x4f,0x3e,0xc3,0x70,0x3a,0x47,0xa3,0xd9,0x6,0x13,0x2e,0x38, 0x5,0x7c,0xc1,0x20,0x32,0xb9,0xeb,0x56,0xab,0x85,0x57,0x5f,0xbe,0x8b,0xdb,0x7, 0xb7,0x4c,0xe9,0xaa,0x56,0x19,0x17,0x2d,0xa1,0x99,0x97,0x7f,0xf,0x4e,0x16,0xd5, 0x2a,0x9c,0x73,0xe3,0x8d,0xf2,0xc2,0xf8,0xcd,0xec,0xab,0x52,0xd8,0x88,0x48,0x3, 0x54,0xaf,0x11,0xc5,0xfb,0x72,0xf3,0x25,0xbe,0x8d,0x14,0x54,0x9,0xda,0xa1,0xf4, 0xd5,0x26,0xbe,0xe2,0xbc,0x8,0xdb,0xa1,0xd,0x0,0x84,0x51,0xa4,0xa,0x8,0xa3, 0x4,0xd3,0x30,0xc4,0x78,0x34,0xc5,0xf9,0xe5,0x0,0x97,0x83,0x11,0xa2,0x34,0x85, 0xca,0xca,0x64,0x95,0x94,0x8,0xc3,0xb9,0x11,0xfa,0x8b,0x66,0xb8,0x75,0x73,0x7, 0x3f,0xb8,0xf7,0x1a,0x76,0xba,0xad,0x7c,0x5a,0x1d,0x88,0x91,0x55,0xf7,0x7d,0x1f, 0xbd,0x9e,0xa9,0x68,0xb2,0xd4,0x51,0x11,0x8,0xca,0xa5,0xad,0x65,0x0,0x61,0x8c, 0xe5,0x43,0xa5,0xec,0x7e,0x30,0xc6,0x30,0x99,0x4c,0xf0,0xc5,0x17,0x5f,0x40,0x8, 0xb1,0x4,0x10,0x55,0x8e,0x53,0x6d,0xce,0xea,0xf5,0x9d,0x4,0x87,0x4d,0x5a,0xf6, 0xc7,0xc7,0xc7,0xfa,0xf2,0xf2,0x12,0xfd,0x7e,0x1f,0xbb,0xbb,0xbb,0x57,0xaa,0x45, 0xaa,0xe6,0x8,0x2f,0x19,0x14,0xa2,0x0,0x95,0xcd,0x5d,0x26,0x1c,0x69,0x96,0xd1, 0xa4,0x8c,0x21,0x4c,0x62,0x9c,0x3e,0x3d,0x41,0x2a,0x63,0x68,0x15,0xe7,0x89,0x61, 0xd7,0x6b,0xe2,0x7c,0x38,0xc6,0x5b,0xff,0xf6,0xe,0x3e,0x3f,0x7a,0x8c,0x66,0xb3, 0x5,0x91,0xcd,0x4f,0x70,0x84,0x80,0x27,0x4,0x28,0xd1,0xf0,0x5d,0xf,0xaf,0xbc, 0x74,0xb,0x7,0x7,0x7,0xe8,0x76,0xbb,0x4b,0x0,0xb5,0x0,0x99,0xcc,0x83,0xd4, 0xd9,0xbc,0x85,0xac,0xb4,0xd5,0xd2,0x47,0xa4,0xa2,0x43,0x79,0x9d,0x17,0xfd,0x7d, 0x5e,0x36,0xe7,0x50,0x7d,0x6c,0x90,0xe7,0x11,0x8a,0xb4,0x92,0x2a,0xe5,0x2c,0xac, 0x51,0x4e,0xd3,0x14,0x61,0x12,0x23,0x9c,0x27,0xb8,0x18,0x5c,0xe2,0xec,0xec,0x2, 0xa3,0xd9,0x14,0x89,0x54,0x79,0xe2,0x3a,0x4a,0x62,0xa4,0x73,0xd3,0x48,0xe7,0x8, 0x86,0x1f,0xbc,0xf6,0x2a,0x5e,0xbe,0xb3,0xf,0xaa,0x8c,0x84,0x38,0xd5,0xa,0xb1, 0x62,0xa0,0x14,0xe8,0xf5,0x7a,0xe8,0xb4,0xda,0x8b,0xae,0x6b,0x25,0xf3,0xb2,0xea, 0xaa,0x1,0x52,0xc5,0xdb,0x55,0x82,0x7f,0x76,0x2a,0xe1,0x93,0x27,0x4f,0xa0,0xb5, 0xc6,0xf,0x7f,0xf8,0x43,0x57,0x6b,0x1d,0x17,0xb,0x34,0xaa,0xca,0xbb,0xeb,0xbc, 0x44,0xbd,0xbe,0x73,0x91,0x43,0xe1,0xa4,0xcf,0xe5,0xb7,0x9f,0x3d,0x7b,0xa6,0x87, 0xc3,0x21,0xba,0xdd,0x2e,0xfa,0xfd,0xfe,0x52,0x7d,0xb9,0xf5,0xc,0xcb,0x9e,0xfe, 0x55,0xa,0xc2,0xe8,0x14,0x59,0xaf,0x8e,0x73,0x7,0x94,0x12,0x5c,0x5c,0x9c,0xe3, 0xfc,0xf2,0x22,0xd3,0x88,0x56,0xb9,0x20,0x9f,0x66,0x1c,0x9f,0x3f,0x38,0xc2,0xaf, 0x7e,0xfb,0x36,0xe6,0xf3,0x4,0x7e,0xab,0x99,0xf1,0xc1,0x66,0x3e,0x82,0xa0,0x14, 0x8e,0x60,0xd8,0xbd,0xd1,0xc7,0xeb,0xaf,0xbf,0x8e,0x4e,0xd3,0x7,0xe7,0x7c,0x49, 0xa6,0xc3,0x52,0x55,0xc,0x8b,0x8b,0x3d,0xef,0x79,0x28,0x48,0x6e,0xdb,0xef,0xb7, 0xda,0x33,0xae,0x81,0x61,0x5b,0x70,0xa8,0x7a,0xae,0xd6,0x1a,0x69,0xe6,0xc9,0x97, 0x73,0x51,0xb9,0xc4,0xb8,0xcc,0x86,0xf4,0x4c,0x27,0x38,0xbb,0x18,0xe0,0x62,0x30, 0xc4,0x3c,0xa,0x91,0x48,0x2b,0xc9,0xa1,0x10,0xc7,0x11,0xc2,0xe9,0xc,0x4a,0x26, 0x78,0xe5,0xce,0x3e,0x5e,0xff,0xc1,0xab,0xf0,0xb3,0x8a,0x26,0x10,0xf3,0x7b,0x27, 0x51,0x9c,0x9f,0xa7,0xa0,0xb6,0xf2,0xcd,0x10,0x83,0xab,0x7e,0xdb,0x2a,0x3d,0xab, 0xf2,0x5c,0x9,0xdb,0x63,0xa3,0x94,0xc2,0xeb,0xaf,0xbf,0x6e,0x65,0xbf,0x6d,0x99, 0xeb,0x12,0x50,0x94,0x9d,0x2b,0x7b,0x1d,0xd5,0xe6,0xae,0x5e,0xdf,0x29,0x5a,0xe9, 0xe9,0xd3,0xa7,0xef,0xc,0x6,0x83,0x9f,0xf7,0x7a,0x3d,0xdc,0xb8,0x71,0x3,0x8e, 0xe3,0x20,0x8e,0xe3,0xa5,0xbe,0x4,0xdb,0x73,0x50,0x16,0xc6,0x2b,0xd3,0x2e,0x36, 0xb2,0x70,0x5c,0x17,0x4a,0x4a,0x7c,0xf1,0xc5,0x17,0x98,0x4d,0xa6,0x26,0x84,0xe7, 0x66,0x4a,0x9b,0xeb,0x5,0x98,0x46,0x31,0x7e,0xfb,0xbb,0xf7,0xf0,0xc9,0xa7,0xf, 0xc0,0x99,0x3,0xaf,0x11,0xe4,0xfd,0xa,0x2e,0x17,0x10,0x42,0xa0,0xd9,0xf0,0xf1, 0xda,0x2b,0x2f,0xe3,0xf6,0xad,0x9b,0x10,0x7c,0x79,0xc4,0xa6,0x5,0x2,0xaa,0x17, 0xfd,0x12,0xa2,0xd0,0x15,0x4d,0xa9,0x91,0xde,0x2e,0x1e,0xfa,0x22,0x38,0xac,0x3, 0x89,0x1a,0x1c,0xb6,0x7,0x87,0xe2,0xa1,0x92,0x6a,0x31,0xae,0xd4,0x4a,0x87,0x2f, 0x53,0x72,0x34,0xab,0x6c,0x92,0x98,0xce,0xe6,0x38,0xbf,0x1c,0x66,0x8d,0x74,0x66, 0xc,0xab,0xd4,0xd4,0xe4,0x21,0x94,0x84,0x4a,0x52,0x8c,0x86,0x97,0x68,0x35,0x3d, 0xfc,0xec,0x27,0x3f,0xc1,0xce,0x4e,0x1f,0x32,0xa,0xcd,0x6f,0xaf,0x81,0x24,0x8d, 0x10,0xf8,0x4d,0xec,0xdc,0xdc,0x35,0x9d,0xd5,0x7a,0x21,0x15,0xbe,0xaa,0x4a,0xa9, 0x9c,0x17,0x2b,0xab,0xe3,0x12,0x62,0xe6,0x85,0x9f,0x9c,0x9c,0x80,0x31,0x86,0x7b, 0xf7,0xee,0xd9,0x8,0x62,0x6d,0xe4,0x50,0xaf,0x7a,0x7d,0x27,0xc0,0xa1,0x2c,0x5d, 0x7c,0x78,0x78,0xf8,0xbf,0x45,0x51,0xf4,0xb,0x9b,0x63,0x28,0xeb,0x24,0x95,0x4b, 0x2,0x8b,0x51,0x43,0x11,0x28,0xcc,0x98,0x4b,0x53,0xc5,0x42,0x8,0x41,0x18,0x1b, 0xc9,0x82,0x38,0x8c,0xe0,0x70,0x17,0x2a,0x4d,0xa1,0x88,0x82,0xf0,0x7c,0x3c,0x3b, 0xbd,0xc4,0x5b,0x6f,0xbf,0x83,0x27,0xc7,0xa7,0x68,0x34,0x5b,0x8,0x7c,0xdf,0xf4, 0x19,0x50,0xa,0xc7,0xe5,0x8,0x3c,0x1f,0x7b,0x7b,0xbb,0xb8,0x73,0xb0,0x8f,0x6e, 0xab,0xd,0xad,0x24,0x38,0x1,0x24,0x48,0xde,0x1,0x4d,0xf5,0x22,0x9a,0x71,0x1c, 0x27,0x6f,0x86,0xcb,0xf7,0xb3,0xc2,0x5b,0xac,0x2,0x87,0x75,0xde,0xe5,0x3a,0xc3, 0xf2,0xdd,0x7,0x6,0x6c,0x1d,0x39,0x54,0x51,0x49,0x32,0x8b,0x16,0x8a,0x49,0x6a, 0x7b,0x3e,0x1,0x14,0x9a,0x12,0xc4,0x49,0x6a,0x2a,0x86,0x2e,0xce,0x31,0x1a,0x4e, 0x30,0x89,0x65,0xee,0xc1,0xc7,0x71,0xc,0x4e,0x8,0x66,0xd3,0x31,0x94,0x4a,0x71, 0xef,0xd5,0xd7,0xf0,0x83,0xbb,0xb7,0xc1,0xe8,0x42,0xd0,0xd1,0x3a,0x2b,0xbb,0xbb, 0xbb,0x8,0x1a,0xad,0x7c,0xd2,0x5c,0xd5,0xef,0x58,0x95,0x93,0xa8,0x8a,0x20,0x18, 0x63,0x98,0x4e,0xa7,0x78,0xfc,0xf8,0x31,0x5c,0xd7,0xc5,0xbd,0x7b,0xf7,0x1c,0x0, 0x69,0x15,0x10,0xd4,0x0,0x51,0xaf,0xef,0x1a,0x38,0xe4,0x7d,0xc,0x36,0x62,0x68, 0xb7,0xdb,0xd8,0xdb,0xdb,0x5b,0x2,0x84,0x62,0x4f,0x43,0x95,0xaa,0xaa,0xbd,0xa0, 0x8a,0xa3,0x38,0xb5,0x26,0xe0,0x9c,0x22,0x8a,0x22,0x9c,0x9c,0x7d,0x81,0x68,0x1e, 0x82,0x52,0xe,0x95,0x4a,0x53,0x8d,0x24,0x1c,0x1c,0x3e,0x78,0x88,0x7f,0xf9,0xcd, 0x6f,0x31,0x9,0x13,0x74,0xba,0x3d,0x93,0x5b,0x70,0x1c,0x30,0x4a,0xe0,0xb,0x8e, 0x4e,0xa7,0x85,0x3b,0xb7,0xf,0x70,0xfb,0xd6,0x4d,0xb0,0x4c,0x62,0x9a,0x41,0x2f, 0xe9,0x24,0xd9,0xcf,0xe7,0x9c,0xc3,0xf3,0x3c,0x8,0xc1,0x41,0x8,0xa0,0x4a,0x33, 0xaa,0xab,0xa4,0xab,0xaf,0xb,0xe,0x55,0xa,0xaa,0x35,0x38,0x6c,0xff,0x3e,0x72, 0x45,0x14,0x61,0xa7,0xc3,0x69,0xad,0x31,0x99,0x4e,0x31,0x1c,0x8e,0x70,0x72,0x39, 0xc1,0x70,0x38,0x84,0x84,0x86,0x94,0xa,0x51,0x14,0x41,0xca,0xd4,0x74,0x58,0xa7, 0x29,0xee,0xde,0xea,0xe3,0x7,0x3f,0xf8,0x1,0x7c,0x47,0x20,0x95,0x31,0x18,0xa1, 0x8,0xc3,0x10,0x8e,0xe3,0x60,0x67,0x67,0xc7,0xc8,0x85,0x67,0xb4,0xa3,0x9d,0xf, 0x51,0x25,0xf1,0xbd,0xa,0x20,0x8a,0xf3,0xc0,0x27,0x93,0x9,0x9e,0x3c,0x79,0x2, 0xcf,0xf3,0xf0,0xda,0x6b,0xaf,0xf1,0xa2,0x9a,0x6b,0xf6,0x9a,0x25,0x45,0xd7,0xe2, 0x63,0xf5,0xaa,0xd7,0xb7,0xe,0x1c,0x8a,0x9e,0xce,0x2f,0x7f,0xf9,0xcb,0x3f,0xfe, 0xd9,0xcf,0x7e,0xf6,0xb6,0xe7,0x79,0xd8,0xdb,0xdb,0xcb,0x9b,0xd3,0xca,0x33,0x82, 0x8b,0xd4,0x52,0xd9,0x58,0x96,0x67,0xfa,0x5a,0xaf,0xeb,0xd9,0xb3,0xa7,0x48,0x92, 0x24,0x2b,0x3b,0xa4,0xe0,0xc2,0x45,0x1c,0xa7,0x78,0xef,0x83,0xf,0xf1,0xfb,0xf, 0x3e,0x0,0x11,0x2,0x7e,0xa3,0x5,0x42,0x19,0x5c,0xc7,0x1,0x27,0x4,0x41,0x3b, 0x93,0xdf,0x16,0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0xc3,0xc3,0x6e,0xaf,0x87, 0x57,0x5f,0x7b,0x19,0xad,0xa0,0x1,0x99,0x26,0x26,0x9a,0x10,0x62,0x21,0x81,0x80, 0x45,0x8f,0x82,0x8d,0x16,0xf2,0xca,0x93,0x4c,0xb4,0xaf,0x4a,0xdf,0xbf,0x8a,0x3e, 0xba,0xae,0x62,0xea,0xf7,0x5,0x1c,0x96,0x8f,0x13,0xdd,0x8a,0x4e,0x5a,0x33,0x8e, 0xc2,0x8c,0x23,0xb5,0xa2,0x7c,0x99,0x5e,0x92,0x8d,0x36,0xad,0xc2,0x6e,0xa2,0x24, 0xa2,0x28,0xc2,0x68,0x1a,0xe2,0xe2,0xe2,0x2,0x67,0x17,0x66,0xe,0x47,0x94,0x26, 0x99,0x66,0x93,0xc6,0x64,0x32,0x41,0x32,0x9f,0xa0,0xd7,0xe9,0xe2,0x27,0x3f,0x7a, 0x3,0xdd,0x4e,0x1b,0x49,0x38,0x87,0xe0,0xe6,0x3b,0x46,0x51,0x84,0x7e,0xbf,0x8f, 0x76,0xbb,0xd,0xcf,0xf3,0x16,0xfd,0x18,0xab,0xaf,0x85,0xca,0xdf,0xd7,0x9e,0x3f, 0x8e,0xe3,0xe0,0xe2,0xe2,0x2,0x27,0x27,0x27,0x68,0x34,0x1a,0xb8,0x7b,0xf7,0x6e, 0x11,0x20,0xea,0x1c,0x43,0xbd,0xbe,0x7b,0x91,0x43,0x76,0x72,0xb7,0x3e,0xfc,0xf0, 0xc3,0x91,0xe3,0x38,0xd8,0xdf,0xdf,0xcf,0xd,0x70,0x31,0x24,0xb7,0x89,0xe7,0xbc, 0xc1,0x9,0x8b,0x32,0xd6,0x72,0x6d,0xb9,0x5,0x94,0xc9,0x6c,0x8a,0xf1,0x70,0x84, 0x38,0x9a,0x43,0x8,0x1,0x99,0x6a,0x8,0xcf,0xc7,0x78,0x1e,0xe1,0x5f,0x7f,0xf5, 0x1b,0x3c,0x38,0x3a,0x86,0xe7,0x79,0xf0,0x1a,0x1,0x18,0xa3,0x70,0x18,0x87,0xe3, 0x72,0xb4,0x9b,0x2d,0xdc,0xbe,0xb5,0x87,0xfd,0xdb,0x7b,0xe0,0x84,0x2,0x5a,0x81, 0x73,0x9b,0xeb,0xc8,0x2a,0x8d,0x28,0x83,0x20,0x3a,0x9f,0xd1,0x6c,0xeb,0xdd,0xa1, 0xe5,0x5a,0x6f,0x7f,0x1d,0x7,0x7d,0xe5,0x75,0x64,0x9d,0xa1,0x4,0x88,0xde,0xe4, 0x49,0x6f,0x1e,0x73,0xf9,0xed,0x1,0x86,0xcd,0x91,0x43,0x79,0x77,0x54,0x41,0x6f, 0xa3,0xaa,0xd3,0x3c,0x4e,0x64,0x3e,0xe0,0xa7,0x38,0x3b,0xda,0xf6,0x51,0x24,0x4a, 0x1a,0x89,0xed,0xe1,0x10,0x27,0xa7,0xe7,0x98,0x47,0x31,0x94,0x4,0xa6,0xe1,0xdc, 0x50,0x95,0x61,0x88,0x78,0x1e,0x42,0x70,0xe0,0x87,0xf7,0x5e,0xc3,0xcb,0x7,0xfb, 0x48,0x93,0x8,0x49,0x92,0xc0,0x71,0x38,0xd2,0xd4,0x4c,0xf2,0xeb,0x76,0xbb,0xf0, 0x3c,0x6f,0xa9,0x90,0x62,0x9b,0x52,0x64,0xad,0x4d,0xf3,0xa4,0x15,0xfd,0xe3,0x9c, 0xe3,0xec,0xec,0xc,0x27,0x27,0x27,0xd8,0xd9,0xd9,0x19,0xec,0xef,0xef,0xef,0xac, 0x9a,0x7,0x51,0x3,0x45,0xbd,0xbe,0xb,0xb4,0x92,0xf3,0xf1,0xc7,0x1f,0x47,0x0, 0x70,0x70,0x70,0x0,0xc7,0x71,0xae,0x54,0x96,0x14,0xc5,0xf0,0x6c,0x65,0x91,0xcd, 0x3d,0x94,0xb9,0x77,0xc6,0xcc,0xb0,0x98,0xc9,0x64,0x82,0x2f,0xce,0xcf,0x0,0xa5, 0xe0,0x3b,0x2,0x32,0x4e,0xe0,0xfa,0xd,0x9c,0xf,0xc6,0xf8,0xff,0xfe,0xf3,0xbf, 0xe2,0x7c,0x38,0x84,0x1b,0xf4,0x20,0x4,0x83,0xeb,0xf0,0x5c,0xf6,0x62,0xf7,0x46, 0x1f,0xb7,0x6f,0xdf,0xc6,0x4e,0xbf,0xf,0x29,0x63,0x3,0x54,0x2a,0x85,0xa0,0xc, 0x84,0x33,0x53,0xfd,0x44,0x28,0x28,0x77,0xd0,0x72,0x4d,0xd2,0x39,0x17,0x58,0x83, 0x5a,0x9b,0x60,0x2c,0x3e,0xb6,0x8d,0xd1,0xfe,0xaa,0xc1,0xe1,0x9b,0xe,0x12,0x9b, 0xc0,0xc1,0x7e,0xed,0x55,0xa7,0x33,0x85,0x51,0x59,0xd5,0x15,0x25,0xad,0x0,0x40, 0x28,0xcd,0x85,0xfb,0x6c,0xd2,0xda,0x3a,0x0,0x0,0xa0,0x91,0x40,0x49,0x60,0x34, 0x9b,0x63,0x3c,0xd,0x71,0x76,0x71,0x89,0xc1,0x70,0x9c,0x4b,0x6f,0xc4,0xa,0x88, 0xa3,0x39,0xe2,0x70,0xa,0xaa,0x53,0xbc,0xfe,0xea,0xcb,0x78,0xed,0xee,0x4b,0x46, 0xe1,0x55,0xeb,0x5c,0x87,0xa9,0xdd,0x6e,0xe3,0xc6,0x8d,0x1b,0x57,0xf2,0x67,0xc5, 0x28,0x78,0x55,0xe3,0x66,0x55,0x9,0xec,0xe9,0xe9,0x29,0x2e,0x2e,0x2e,0xc0,0x18, 0xfb,0x9b,0x1f,0xff,0xf8,0xc7,0x7f,0x57,0xcf,0x83,0xa8,0xd7,0xb7,0x16,0x1c,0xaa, 0x7a,0x18,0xac,0x24,0xc0,0xc7,0x1f,0x7f,0x2c,0xa5,0x94,0x38,0x38,0x38,0x40,0xb3, 0xd9,0xcc,0xc3,0xf6,0x62,0x82,0xcf,0x86,0xfd,0x65,0x8f,0xcb,0x4c,0x59,0xb6,0xcf, 0x5d,0x24,0xa4,0xcf,0xcf,0x4f,0xcd,0x60,0x77,0x9a,0x19,0x3,0x30,0x38,0x7e,0x80, 0xa3,0xe3,0x67,0xf8,0xe7,0xb7,0x7e,0x8d,0xcb,0xf1,0xc,0x9d,0x6e,0xcf,0x4c,0x63, 0x73,0x1c,0x38,0x8c,0xc1,0xe5,0xc,0x7,0xfb,0x7b,0x78,0xe9,0xe0,0x36,0x3c,0xdf, 0x35,0x1e,0x25,0x73,0x40,0xa8,0x86,0xa0,0x8b,0x6a,0x23,0xc6,0x8,0x2,0xd7,0xcc, 0x6f,0x26,0x15,0xc6,0x77,0x89,0x3b,0xce,0x8c,0x19,0xd9,0x60,0xac,0x57,0x8b,0x5, 0xd2,0x95,0x86,0xd0,0x8c,0xe9,0x24,0xd7,0x32,0xae,0x57,0xc0,0x85,0x6e,0x10,0x26, 0x4,0xdb,0xe0,0xa1,0x7f,0xd9,0xf3,0x88,0x5c,0xa1,0x82,0xbe,0xde,0xf3,0xb2,0x20, 0xea,0xa7,0x54,0x3e,0x86,0xd4,0x46,0xe,0x76,0x7c,0x52,0x9a,0x2a,0x44,0x49,0x8a, 0xe9,0x3c,0xc4,0xc9,0xd9,0x5,0x2e,0x6,0x43,0x33,0x71,0x4e,0x4a,0x24,0x49,0x82, 0x30,0x49,0x90,0x84,0x11,0x92,0x38,0xc2,0xcb,0x7,0xb7,0xf0,0x93,0x37,0x7e,0x0, 0xad,0x52,0x68,0x15,0x3,0x0,0x52,0xa9,0xe1,0x7,0x4d,0xec,0xed,0xed,0x81,0x73, 0x53,0x6,0x6b,0x73,0x11,0x55,0x89,0xe9,0x55,0xa0,0x61,0x23,0x89,0x34,0x4d,0x71, 0x72,0x72,0x82,0xe1,0x70,0x88,0xf,0x3e,0xf8,0xe0,0x4f,0xfe,0xfd,0xbf,0xff,0xf7, 0xef,0x54,0x5d,0x63,0xb5,0xa9,0xab,0xd7,0x37,0x1a,0x1c,0x56,0x49,0xd,0x13,0x42, 0xc8,0xc3,0x87,0xf,0xd5,0x7c,0x3e,0xc7,0xee,0xee,0x2e,0xda,0xed,0xf6,0x4a,0xc9, 0x81,0x72,0x7,0x74,0xd9,0xab,0x32,0x3d,0xc,0x46,0x57,0xe7,0xec,0xec,0xcc,0xcc, 0x5e,0xc8,0x9a,0xa2,0x1c,0xcf,0x85,0x6,0xc5,0xa7,0x9f,0x3f,0xc0,0x5b,0xbf,0x79, 0x1b,0x52,0x3,0x41,0xbb,0x3,0xad,0x1,0xdf,0xf7,0x40,0x94,0x46,0xbf,0xd7,0xc1, 0x9d,0xdb,0x7,0xd8,0xe9,0x77,0xc1,0x29,0x1,0x88,0xce,0x1a,0xdf,0x16,0x1d,0xcc, 0x94,0x18,0x79,0x83,0x86,0xe7,0x9a,0x2a,0x24,0xa2,0xf2,0x79,0xb,0xab,0x78,0x63, 0x42,0x58,0x21,0xc9,0x78,0x55,0x35,0x76,0x1d,0xed,0x64,0xfe,0xd2,0xab,0x80,0x50, 0x78,0x8d,0xda,0x64,0xfc,0x37,0x45,0x4,0x44,0x5d,0x1b,0x1c,0x96,0xdf,0x53,0xad, 0xfd,0xff,0xe6,0x84,0xfb,0xa6,0x8,0xaa,0xfc,0xfc,0xaf,0x6,0x1c,0xec,0xb1,0x93, 0xa,0x59,0x7f,0x83,0x2c,0xd1,0x9a,0x46,0x87,0x29,0x49,0x25,0x26,0xb3,0x10,0x17, 0x17,0x3,0x9c,0x5f,0x5e,0x20,0x8c,0x23,0x33,0x5c,0x28,0x4d,0xf3,0x21,0x44,0xf1, 0x7c,0x86,0xfd,0xdd,0x3e,0x7e,0xf4,0xc6,0xeb,0x70,0x84,0x99,0x1f,0x6d,0xb5,0xba, 0x84,0x10,0xb8,0x73,0xe7,0x4e,0x65,0x4,0xb9,0x2e,0xa2,0x2c,0x46,0xcf,0x36,0x9f, 0x16,0x45,0x11,0x4e,0x4e,0x4e,0x30,0x9f,0xcf,0xf1,0xe3,0x1f,0xff,0xb8,0xa3,0xb5, 0x1e,0x11,0x42,0x58,0x15,0xcd,0x54,0xaf,0x7a,0x7d,0xe3,0x23,0x87,0xe2,0x9,0xfb, 0xf4,0xe9,0xd3,0x77,0x2e,0x2f,0x2f,0x7f,0xbe,0xbb,0xbb,0x8b,0x9d,0x9d,0x9d,0x85, 0xe4,0x41,0x29,0x62,0x28,0xe7,0x1d,0x8a,0x17,0x52,0x51,0xf6,0x58,0x6b,0x6d,0x86, 0xf2,0xc,0x47,0xe0,0x22,0x3,0xc,0xe1,0x43,0x69,0x82,0x4f,0x1f,0x3c,0xc0,0xbf, 0xfe,0xe6,0x6d,0x50,0x26,0xe0,0x6,0x3e,0x8,0x21,0x68,0x78,0x3e,0x18,0x27,0xb8, 0xd1,0xeb,0x63,0x7f,0xef,0xa6,0x99,0xfc,0xc5,0x39,0x28,0x45,0x4e,0x5d,0x51,0x4a, 0x40,0xb3,0xe9,0x5d,0xae,0x2b,0x10,0xb8,0x5e,0xe,0xc,0x2a,0x95,0x4b,0x3d,0x17, 0x55,0x46,0x7a,0x89,0xc2,0xa8,0xd0,0x7e,0x2,0xe8,0x95,0xff,0x2f,0x49,0x54,0x2f, 0x29,0x90,0xea,0x2b,0xc6,0xbf,0x58,0x2d,0x55,0x4d,0xc3,0x5c,0x8f,0x3a,0xba,0x2e, 0xbd,0x54,0x94,0xa7,0xa8,0x8a,0x82,0x36,0xd,0x23,0xda,0x4,0xe,0x5f,0x57,0xe4, 0x90,0x7b,0xed,0x30,0xf3,0x21,0x8a,0x0,0xa1,0x94,0xca,0xab,0x98,0x52,0x29,0x41, 0x8,0xc5,0x7c,0x3e,0x37,0x2a,0xaa,0x17,0x97,0x8,0xc3,0x18,0x49,0x9a,0xcd,0xae, 0x4e,0x53,0x84,0xf3,0x29,0xe2,0x30,0x42,0xaf,0xd7,0xc1,0x4f,0x7f,0xf4,0xba,0xa1, 0x34,0xd3,0x18,0xd0,0x32,0x37,0xec,0x77,0x5f,0x7e,0xd5,0x44,0x95,0x25,0x87,0xa1, 0x8a,0x5a,0x2a,0xe6,0xd5,0x0,0x2c,0x51,0xab,0x71,0x1c,0xe3,0xe8,0xe8,0x8,0x84, 0x10,0xbc,0xf1,0xc6,0x1b,0xb6,0x7,0x82,0x65,0x33,0x21,0xea,0xe8,0xa1,0x5e,0xdf, 0x7c,0x70,0x28,0xaf,0x5f,0xfe,0xf2,0x97,0x7f,0xfc,0xd3,0x9f,0xfe,0xf4,0xed,0x5e, 0xaf,0x87,0x9b,0x37,0x6f,0xe6,0xf9,0x4,0x2b,0xa8,0x57,0x34,0xf8,0xc5,0x8b,0xb7, 0x2c,0x35,0xc0,0xb8,0x40,0x14,0xce,0xe1,0xba,0x2e,0x4e,0x4f,0x4f,0x31,0xb8,0x3c, 0x87,0xe3,0x38,0x48,0x52,0x23,0x78,0xa7,0xa8,0xc0,0xfd,0xf,0x3f,0xc2,0xaf,0xdf, 0x7e,0xf,0xc2,0x6f,0xc0,0xf3,0xfd,0x9c,0x46,0x12,0x9c,0xe2,0xd6,0x4d,0x3,0x4c, 0x9d,0x4e,0xc7,0xf4,0xb3,0xaa,0x74,0x69,0x58,0x8f,0x56,0x49,0x16,0x2d,0xf8,0xf0, 0x3c,0xf,0x8c,0x13,0x68,0xa9,0x2a,0x67,0x6,0x97,0xd,0x74,0xf9,0xfb,0x5e,0xed, 0x71,0x20,0x57,0xc6,0x64,0x16,0xa5,0x1f,0xb4,0xd6,0x90,0x58,0x2f,0xaf,0x21,0x28, 0x5b,0x2b,0xe9,0xfd,0xbc,0x15,0x51,0xdb,0x3e,0xbf,0x48,0xab,0xad,0xab,0xa2,0xaa, 0x2,0x48,0x73,0x9b,0xfe,0x61,0x2f,0x4,0x52,0xfa,0x5d,0x8,0xc9,0x64,0x38,0x8c, 0xb7,0x1e,0xcb,0x74,0x49,0xc7,0x2b,0x4d,0x17,0x34,0x50,0x18,0x86,0x18,0x4c,0x26, 0x38,0x3d,0x39,0xc7,0x74,0x1e,0x22,0x4e,0x64,0x5e,0x22,0x3b,0x1e,0x8f,0x11,0x86, 0x21,0x6e,0xb4,0x7d,0xfc,0xf8,0x47,0x3f,0x44,0xd3,0x13,0x20,0x50,0x50,0x49,0xc, 0xc2,0x5,0x18,0x77,0x70,0x73,0x6f,0x1f,0x8e,0x60,0x95,0xa0,0x5f,0x8c,0x18,0x6c, 0x44,0x5c,0x74,0x88,0xf2,0xdf,0x5f,0x8,0x8c,0xc7,0x63,0x3c,0x7e,0xfc,0x18,0xcd, 0x66,0x13,0x2f,0xbf,0xfc,0x32,0xab,0x95,0x5b,0xeb,0xf5,0xad,0xa2,0x95,0xb2,0xa8, 0xc1,0x7a,0x34,0xfe,0xfd,0xfb,0xf7,0x67,0x8e,0xe3,0xe0,0xa5,0x97,0x5e,0xca,0x85, 0xf4,0xec,0x45,0x20,0xa5,0xcc,0x3b,0xa2,0xcb,0x9e,0x79,0xd9,0xc8,0x5a,0xef,0xeb, 0xf2,0xf2,0x12,0xe3,0xf1,0x10,0x5a,0x67,0x9d,0xca,0xcc,0x18,0xf7,0xdf,0xbe,0xff, 0x1,0xde,0x7e,0xe7,0xf7,0x8,0xda,0x1d,0x70,0xe1,0x80,0x73,0x7,0x82,0x53,0x34, 0x7c,0x7,0x3b,0xfd,0x1e,0x5e,0xda,0xbf,0x5,0xd7,0x75,0x73,0x3,0x6b,0x67,0x43, 0xdb,0x59,0xbf,0x1e,0xa7,0x68,0x34,0x1a,0x70,0x5d,0x17,0x1a,0xe6,0xc2,0xa7,0x58, 0x18,0xfd,0x62,0x49,0x6d,0x19,0x18,0x2a,0x39,0xff,0x92,0x31,0x2c,0x8a,0xc4,0x95, 0x27,0xd9,0x1,0x80,0xa6,0xeb,0x8d,0x33,0x27,0x74,0x6b,0x2f,0x7d,0x1b,0xf0,0x58, 0x67,0xcc,0xaf,0xb3,0x36,0x81,0xd2,0x82,0xaa,0xfb,0xc3,0x4e,0xb4,0xbb,0xa2,0x6d, 0x55,0x38,0xde,0x4,0x4,0x89,0x32,0x32,0xdd,0xf6,0x77,0x29,0x2,0xb7,0xcd,0x51, 0x8c,0x46,0x63,0x9c,0x5d,0xc,0x30,0x9a,0x98,0xf1,0xa4,0x89,0x92,0x66,0x2c,0x69, 0x92,0x62,0x3e,0x1e,0xa2,0xd3,0x6a,0xe2,0x67,0x3f,0xfd,0x11,0x3c,0x4e,0xf2,0x86, 0x39,0xd,0xa,0xcf,0x6f,0x60,0x77,0xa7,0x9f,0x97,0x6c,0x5b,0xe7,0xa8,0x48,0xab, 0xe6,0xe7,0xf9,0x9a,0xaa,0x3d,0xc6,0x18,0x6,0x83,0x1,0x8e,0x8f,0x8f,0xd1,0xef, 0xf7,0x71,0xfb,0xf6,0x6d,0x52,0x47,0xd,0xf5,0x7a,0xde,0xc5,0xff,0x40,0x74,0x92, 0x24,0x84,0xb8,0x9f,0x7c,0xf2,0xc9,0x4c,0x6b,0x9d,0xcf,0x64,0xb0,0x91,0x42,0xb1, 0xc1,0xcd,0x76,0x9c,0x96,0x1b,0x83,0xae,0xca,0x31,0x23,0x9f,0xda,0x46,0x29,0x1, 0xa5,0xc,0x94,0x9,0x24,0x4a,0xe3,0x9d,0xf7,0x7e,0x8f,0xb7,0xdf,0xbf,0x8f,0x66, 0xab,0x3,0xca,0x39,0x2,0xdf,0x7,0x21,0x40,0x2b,0x68,0xa0,0xd7,0x6d,0xe3,0xf6, 0xad,0x3d,0x30,0x46,0xae,0x44,0x26,0x84,0x10,0x70,0x46,0xe1,0x38,0x2,0xed,0x66, 0x23,0x6b,0x5c,0xba,0xca,0x77,0xaf,0x2,0x86,0x2b,0x8f,0x51,0x2,0x62,0xb9,0x7b, 0xad,0x91,0x28,0x9,0x29,0xf5,0x52,0x49,0xee,0xe2,0xb5,0xd7,0x9b,0xfa,0x56,0x95, 0xa4,0xdf,0x34,0xcf,0x62,0x9b,0x3e,0x89,0x72,0x13,0xd6,0x75,0xa3,0x8c,0x4d,0x73, 0xd,0x74,0xa9,0x11,0xa1,0x2c,0x19,0x51,0xf8,0x57,0xc5,0xeb,0x5f,0xdc,0xf9,0x59, 0xae,0x26,0xd3,0xc5,0x7d,0x87,0x86,0xa0,0x4,0x4c,0x38,0x79,0x4e,0x1,0xda,0x7e, 0x3e,0x1,0xa3,0xc,0x9a,0x11,0x74,0x3b,0xed,0xfc,0x9c,0x1c,0x8e,0x27,0x20,0x31, 0x1,0xf5,0x28,0x80,0x8,0xbc,0xdd,0xc5,0x78,0x32,0xc2,0x3b,0xef,0xbe,0x87,0x9f, 0xff,0xec,0x8f,0x4c,0x4,0x41,0x1,0x46,0x29,0x66,0xd3,0x31,0x2e,0x28,0xf2,0x32, 0xd7,0x2a,0x4a,0xb2,0xd8,0x24,0x57,0x54,0x1f,0x2e,0x9f,0x3,0xdd,0x6e,0xd7,0xc, 0x35,0xba,0xb8,0x80,0x94,0xf2,0x1f,0xb4,0xd6,0xff,0x6d,0x6d,0xe6,0xea,0xf5,0x8d, 0x6,0x87,0xf2,0x3a,0x3a,0x3a,0xa,0x2f,0x2f,0x2f,0x71,0xf7,0xee,0x5d,0x4,0x41, 0x90,0x83,0x40,0x91,0x4b,0x35,0xe1,0x7b,0x6a,0xf4,0x69,0x94,0xba,0x62,0xf0,0x8a, 0x43,0x7e,0xa6,0xf3,0x19,0x8e,0x9f,0x3c,0x85,0xe3,0x70,0x0,0xc,0xa0,0x4,0x8a, 0x50,0xfc,0xee,0x83,0xf,0xf0,0xce,0xef,0xef,0xc3,0x6f,0xb7,0x1,0x42,0xe1,0xfb, 0x3e,0x18,0x51,0x68,0x6,0xd,0xec,0xf4,0x3b,0xb8,0x75,0xeb,0x56,0x76,0xc1,0x2d, 0x24,0xa,0x5c,0xd7,0x85,0xd6,0xa,0x94,0x0,0x4d,0x3f,0x40,0xc3,0xf,0xc0,0x4, 0x81,0x94,0x66,0xaa,0x18,0xa5,0xc,0x8c,0xb2,0xec,0x2,0x5,0x28,0xa1,0x4b,0xb4, 0x4a,0x55,0x82,0x99,0x32,0xe,0xa5,0x34,0x52,0x99,0x2e,0x81,0x82,0x4d,0x24,0xb3, 0x35,0x39,0x8b,0xaa,0xc8,0x64,0x93,0x91,0xdb,0x54,0x9d,0xf4,0x22,0xbd,0xff,0x55, 0xcf,0xdf,0xb6,0x4c,0x17,0x40,0x7e,0x1c,0xb2,0x8a,0x5,0xf3,0xbf,0xfc,0xef,0xa2, 0x96,0xe9,0xeb,0x8e,0x2c,0x72,0xa,0x27,0x2b,0x97,0x16,0x9c,0xe7,0x83,0x79,0xa4, 0x34,0x74,0x9f,0xd6,0x1a,0xe,0xe3,0x90,0x90,0x68,0x35,0x1b,0x66,0x26,0x7,0x21, 0xb8,0x1c,0x8e,0x40,0x25,0x5,0xf1,0x9,0xe2,0x79,0x8,0xcf,0x6f,0x60,0x32,0x9b, 0xe0,0xbd,0xf7,0x3f,0xc4,0x1f,0xfd,0xe4,0x87,0x68,0x5,0xbe,0xa9,0x56,0x62,0x46, 0x37,0xc9,0x82,0x93,0x3d,0xdf,0x8b,0xf9,0x85,0xe2,0xcc,0xe9,0x62,0x14,0x51,0x74, 0x50,0xec,0x6b,0x76,0x77,0x77,0x91,0xa6,0x29,0x66,0xb3,0xd9,0x5f,0x12,0x42,0x1a, 0x5a,0xeb,0x69,0x6d,0xea,0xea,0xf5,0x8d,0x5,0x87,0x62,0x12,0xfa,0xe8,0xe8,0xe8, 0x1f,0x46,0xa3,0x11,0x76,0x77,0x77,0xd1,0x6a,0xb5,0x96,0xfa,0x14,0x8a,0x92,0x18, 0xb6,0x1b,0xb4,0x8,0x1c,0x65,0xcf,0x58,0x29,0x23,0x65,0x70,0xfa,0xc5,0x9,0x3c, 0xcf,0x83,0xd6,0x32,0x8b,0x34,0x38,0xde,0xfd,0xfd,0xfb,0x78,0xfb,0xdd,0xdf,0x99, 0xf9,0xb,0xdc,0x81,0xe7,0xbb,0x60,0xd0,0xf0,0x5d,0x17,0x7b,0x37,0xfb,0xb8,0x79, 0x63,0x7,0x3a,0xcb,0x2d,0xd8,0xb,0xda,0x44,0x30,0x69,0x3e,0x9f,0xa1,0xdd,0xc, 0xa0,0xa4,0xca,0x39,0x66,0xb,0x5e,0x45,0x2f,0xd3,0xce,0xb,0x58,0x65,0xbc,0xb4, 0xd6,0x8,0xe7,0x61,0x3e,0xb6,0xd2,0xe,0xf2,0x1,0xa1,0x20,0xc4,0x46,0x45,0x6a, 0xc9,0x18,0x95,0xa3,0x18,0x48,0xb5,0xc1,0xb8,0xaa,0x25,0xc0,0xdc,0x96,0x36,0xda, 0xf6,0xff,0x55,0x1d,0xdd,0xe5,0xd2,0xcb,0xeb,0x80,0x50,0x15,0xbd,0x54,0xad,0xa6, 0xbb,0xa8,0xdb,0x2d,0x46,0x74,0x2f,0x1a,0x24,0xca,0x8a,0xa8,0xe5,0xef,0xb8,0x90, 0xd5,0xd6,0x5,0xa1,0x45,0x5,0x9d,0xe9,0x68,0x69,0xa5,0xf3,0xae,0x78,0x4a,0x18, 0x6e,0xee,0x98,0xd7,0x5c,0xe,0x47,0x20,0x29,0x1,0x9,0x2,0x73,0xc1,0x71,0x8e, 0xf1,0x68,0x80,0xf,0xee,0x7f,0x88,0x7f,0xf7,0xd3,0x9f,0xa0,0xe5,0x3b,0x26,0x49, 0x4d,0x8,0xc6,0xe3,0x31,0x0,0x23,0xfb,0x5d,0x1c,0xc,0x55,0x16,0x92,0x2c,0xaa, 0x10,0x97,0xb,0x32,0xec,0x34,0xc3,0x9d,0x9d,0x1d,0x3c,0x79,0xf2,0x4,0x9f,0x7e, 0xfa,0xe9,0x24,0x53,0x6f,0xad,0xfb,0x1f,0xea,0xf5,0x87,0xc9,0x39,0x14,0xcb,0x54, 0xab,0x34,0x5e,0xa,0xb7,0x83,0xf7,0xdf,0x7f,0x7f,0xea,0x79,0x1e,0xee,0xde,0xbd, 0xbb,0x74,0xb2,0xaf,0x7d,0x7f,0x98,0xc1,0x2a,0x76,0xc0,0x8a,0xbd,0x78,0xc3,0x30, 0xc4,0xe9,0xe9,0x29,0xb4,0x8c,0xb2,0x44,0x22,0x3,0xb8,0xc0,0x87,0x1f,0x7d,0x8a, 0x7f,0xfd,0xcd,0xdb,0xf0,0x9a,0x6d,0x78,0x6e,0x0,0x26,0x28,0x4,0x67,0x68,0x35, 0x7c,0xec,0xef,0xee,0xa2,0xdf,0x6d,0x2f,0x2a,0x91,0x84,0xb9,0xa8,0x5d,0x2e,0x0, 0xa5,0xe1,0xa,0x8e,0x6e,0xb7,0xb,0xd7,0x75,0xa0,0x94,0xbc,0x52,0x75,0xa3,0x75, 0xce,0x29,0x14,0x8c,0xca,0xa2,0x72,0x44,0x69,0x20,0x4d,0x25,0xa2,0x74,0x91,0x98, 0x5c,0x25,0xb8,0xb6,0xc9,0x70,0x56,0x25,0xaf,0xb7,0x31,0x74,0x65,0x63,0x6e,0x15, 0x62,0xaf,0xe3,0xcd,0x5f,0xc7,0xb0,0x6e,0x6a,0xe8,0xbb,0xce,0xfb,0xae,0x2,0xd8, 0xaa,0xfd,0xcb,0x8f,0xcb,0x86,0xbe,0x91,0xab,0xd5,0x50,0xea,0xda,0xdf,0x6f,0xb9, 0x82,0xc8,0x18,0xe6,0x24,0x49,0x90,0x24,0x9,0x24,0x23,0x66,0x5e,0x88,0x5a,0xe4, 0x21,0x46,0xb3,0x19,0x4e,0x2f,0xce,0x31,0x18,0xd,0x11,0x27,0x1a,0x32,0xd5,0x98, 0x86,0x73,0x48,0x29,0x31,0x9b,0x8c,0xd0,0x6d,0x36,0xf1,0xd3,0x1f,0xbd,0x8e,0xc0, 0x75,0x0,0x15,0x43,0x69,0xd,0xa5,0x0,0xdf,0xf7,0xb1,0x7f,0xfb,0x8e,0x39,0xd7, 0xb5,0x46,0x51,0xee,0xbb,0x98,0xe3,0xb2,0xdd,0xff,0xc5,0x88,0xdb,0x96,0xb9,0x72, 0xce,0x71,0x71,0x71,0x81,0x67,0xcf,0x9e,0xa1,0xd7,0xeb,0xe1,0xf6,0xed,0xdb,0xa4, 0xb0,0xaf,0x75,0x1e,0xa2,0x5e,0x5f,0x5f,0xe4,0x50,0x6,0x2,0x62,0x16,0xd7,0x5a, 0xa7,0x5,0xc0,0xa0,0x9f,0x7c,0xf2,0xc9,0x54,0x29,0x85,0xbd,0xbd,0xbd,0xfc,0xb5, 0x55,0xe2,0x79,0x57,0xaf,0x72,0x56,0xe0,0xd5,0x75,0x5e,0xdf,0x3d,0xb8,0x3c,0x47, 0x1c,0xcd,0xe1,0x3a,0xdc,0x0,0x3,0x61,0xf8,0xf8,0xd3,0xcf,0xf0,0xaf,0xbf,0xf9, 0x37,0x34,0xdb,0x1d,0x38,0xc2,0x5,0xe1,0x4,0xae,0x23,0xd0,0xa,0x4c,0xe2,0xaf, 0xdd,0x6e,0x41,0x66,0x29,0x61,0xe6,0x18,0xb5,0x54,0x91,0xd1,0x44,0x8d,0xc0,0x47, 0xbb,0xd1,0xcc,0xba,0xb3,0xb,0xa0,0x45,0x14,0xb4,0xa6,0x57,0xab,0x93,0x2c,0xed, 0xc3,0xb8,0xd1,0xfc,0xcf,0xca,0x18,0x13,0x55,0x5d,0x72,0x5a,0xe5,0x75,0xaf,0x2, 0x84,0xaa,0xd7,0x7d,0x59,0x5,0xd6,0x4d,0x89,0xe7,0xe7,0x19,0x36,0xb4,0xcd,0x77, 0xba,0xce,0x3c,0xef,0x6d,0xa2,0x9c,0xf2,0xfb,0x51,0x86,0xbc,0xd7,0xa4,0xb8,0x2f, 0xb,0x61,0x3b,0x56,0x99,0xa3,0xb8,0x8e,0x8e,0xd5,0xd5,0x88,0x85,0xe4,0x2,0x7a, 0x61,0x9a,0x18,0x6a,0x8c,0x9a,0x2a,0x27,0xa9,0x34,0x82,0xc0,0xc7,0x2e,0x6e,0x0, 0x0,0x86,0xa3,0x19,0x22,0xc4,0x68,0x78,0xbe,0xc9,0x59,0x48,0x85,0xc1,0x68,0x88, 0x8f,0x3e,0xfe,0x4,0x3f,0xfd,0xc9,0x8f,0xe1,0x50,0x2,0xad,0xc,0xbd,0x19,0x45, 0x11,0x46,0xc3,0x4b,0x34,0x9b,0xcd,0xac,0x48,0x43,0xe5,0xa5,0xca,0xd5,0xb3,0xb4, 0xaf,0x26,0xa8,0xd3,0x34,0x45,0xab,0xd5,0x42,0x1c,0xc7,0x38,0x3b,0x3b,0xc3,0xc1, 0xc1,0x41,0x47,0x6b,0x3d,0x2c,0x34,0x9e,0x16,0xfb,0x20,0x6a,0xb0,0xa8,0xd7,0x95, 0xf5,0xc2,0xeb,0x7,0x2d,0x48,0x64,0x7f,0x65,0xf1,0xf1,0xe3,0xe3,0xe3,0x34,0xc, 0x43,0xf4,0xfb,0x7d,0x34,0x1a,0x8d,0xfc,0xc2,0xb5,0x9a,0x36,0xeb,0x56,0xb1,0xdf, 0x1,0x30,0x62,0x66,0xa7,0xa7,0xa7,0x98,0x4d,0xc7,0x8,0x7c,0xd7,0x94,0x82,0x12, 0x86,0xa3,0xe3,0x2f,0xf0,0x2f,0xbf,0xfe,0x37,0x78,0x41,0x3,0x4c,0xb8,0xa6,0xd2, 0x48,0x8,0x34,0x3,0xf,0x7b,0x37,0x77,0xd0,0x6e,0x36,0x72,0x5e,0x97,0xa,0xe, 0x25,0x1,0xc1,0x4d,0x8e,0xc1,0xf3,0x5c,0xb4,0x5a,0x2d,0x78,0x9e,0x3,0xa5,0x16, 0xdd,0xd9,0x1a,0x12,0x50,0x1a,0x94,0x68,0x30,0x4a,0xf3,0xfc,0x80,0xd6,0x1a,0x19, 0x22,0x22,0x8a,0x62,0x44,0x51,0x84,0x79,0x9c,0x20,0x4c,0xd2,0x3c,0x62,0x50,0xda, 0xa8,0x85,0xaf,0x33,0x70,0x55,0xf7,0xb7,0x31,0x8e,0xab,0x7a,0x1e,0xf2,0x9a,0xfc, 0x42,0xc4,0xa2,0x8,0x5d,0xbb,0xad,0x7b,0xbf,0x6d,0x3e,0x7f,0xd5,0x76,0x5d,0xc3, 0x7f,0xdd,0x7d,0xb7,0xfb,0x29,0x53,0x8d,0x54,0x9a,0xe6,0x35,0x13,0x25,0x10,0x10, 0x42,0xb3,0xe6,0x45,0x66,0x46,0xad,0x6e,0xa0,0xc9,0xae,0x47,0x3f,0x2d,0x1c,0x1b, 0xce,0x39,0x5c,0x2e,0xc0,0x50,0x28,0x94,0xc8,0x1e,0xf,0x2,0x1f,0xbb,0xfd,0x1b, 0xe8,0xb4,0x9a,0x70,0x85,0x3,0xc7,0x35,0x51,0xaa,0xef,0xfb,0x68,0x36,0xdb,0xb8, 0x18,0x8d,0xf1,0xfb,0xfb,0x1f,0x2f,0x45,0x36,0x84,0x10,0x3c,0x7b,0xf6,0xc,0xf3, 0xb9,0x99,0x8,0xca,0x29,0x5b,0x29,0xc2,0xb7,0xaa,0x19,0xd4,0x96,0xbe,0xf6,0x7a, 0x3d,0x78,0x9e,0x87,0xf,0x3f,0xfc,0x70,0x40,0x8,0x71,0xb0,0x68,0x65,0x57,0x35, 0x30,0xd4,0xeb,0x6b,0x1,0x87,0xa2,0x3c,0xb0,0x95,0xc3,0x28,0x52,0x4c,0x84,0x90, 0xf6,0xe9,0xe9,0x29,0xfa,0xfd,0x3e,0x7a,0xbd,0x5e,0x5e,0x9e,0xba,0x75,0xb2,0x95, 0x98,0xbe,0x7,0xab,0x6f,0x74,0x7e,0x76,0x62,0x22,0x6,0xd7,0x45,0x1c,0xc7,0x10, 0x8e,0x87,0xd3,0x8b,0x4b,0xfc,0xd3,0x7f,0xfe,0x17,0x8,0xbf,0x9,0xaf,0x61,0x46, 0x35,0xba,0x9e,0x19,0xcc,0x73,0x6b,0x67,0x7,0xbe,0xeb,0x98,0x29,0x6c,0x9c,0x2c, 0x5d,0xd8,0x26,0x62,0xf0,0xd0,0xed,0xb4,0x10,0xb8,0xc2,0xe4,0x14,0x0,0x23,0xb9, 0x1,0x99,0x8d,0x16,0x35,0xb2,0xdf,0xb,0x4f,0xd4,0x18,0x97,0x28,0x4d,0x30,0xd, 0xe7,0x98,0x86,0x11,0xc2,0x24,0x5d,0x0,0x1d,0xa1,0x20,0x85,0xae,0xea,0x6d,0xbc, 0xe0,0xb2,0xf1,0xfb,0x32,0x46,0xf3,0xcb,0x18,0xf0,0x75,0xef,0x77,0xdd,0xe8,0xa4, 0xea,0xf5,0xcf,0xf3,0xbe,0xe5,0x68,0xa1,0x4a,0xa7,0xca,0x2,0x45,0x2a,0x25,0x52, 0xa9,0x72,0x40,0x58,0xf7,0x13,0x3c,0xef,0x71,0x2e,0x3,0x86,0xc3,0x8c,0xfc,0xa, 0xa5,0x80,0xc2,0xa2,0xea,0x8e,0x0,0x68,0xf9,0x3e,0x76,0x6f,0xf4,0xd0,0x6e,0x36, 0xc0,0x29,0x81,0xe3,0x9a,0xfe,0x19,0xd7,0xb,0xe0,0xf9,0x2d,0x5c,0x8c,0x46,0xf8, 0xe8,0xf0,0x33,0xb8,0x5e,0x90,0x97,0x38,0xb,0x21,0x70,0x76,0x72,0x8a,0xe9,0x78, 0x72,0x65,0x2a,0xdc,0xba,0x9c,0x4b,0x31,0x1f,0x61,0xaf,0x97,0xfd,0xfd,0x7d,0x24, 0x49,0x82,0x87,0xf,0x1f,0x46,0xf6,0x9a,0x2f,0xf4,0x3e,0xd4,0x3d,0x10,0xf5,0xfa, 0xea,0x69,0x25,0x4b,0x29,0x95,0xc7,0x7c,0x12,0x42,0xf8,0x87,0x1f,0x7e,0x38,0x24, 0x84,0xa0,0xdf,0xef,0x2f,0xf1,0xa6,0x71,0x1c,0xc3,0x71,0x9c,0x5c,0xe8,0x6c,0x25, 0x8a,0x51,0xa,0x9d,0x85,0xcb,0xa3,0xd1,0x8,0x51,0x14,0x65,0xfc,0x3e,0x81,0xe3, 0xfa,0xb8,0x18,0x8e,0xf0,0xff,0xfe,0xd3,0x3f,0x83,0x72,0x1,0xe1,0x7a,0xa0,0x94, 0xc2,0x73,0x1d,0x78,0x8e,0xc0,0xee,0x8d,0x3e,0x9a,0x81,0x7,0xb0,0xac,0xf7,0x81, 0x70,0x30,0x6a,0xe6,0x2c,0x38,0x9c,0xc2,0x75,0x5d,0xf4,0x7a,0x1d,0x33,0xe4,0x3d, 0x8d,0x41,0x34,0x16,0x2,0x7f,0xb6,0x53,0xdb,0xca,0x17,0x11,0x2,0x59,0x68,0x8a, 0x4a,0x12,0x9,0xa9,0x54,0x2e,0x6f,0x41,0x88,0x99,0x3f,0x5d,0x1e,0xe8,0xa3,0x37, 0x5d,0x83,0x15,0x6,0xe7,0x3a,0x92,0xdc,0xab,0xbc,0xc8,0xaa,0xff,0x55,0x3d,0x4f, 0x62,0x7b,0xa9,0x8b,0xaa,0xe7,0xd0,0xa,0xe7,0x53,0xaf,0xd8,0xa7,0x4d,0x39,0x85, 0x75,0xdf,0x63,0xd3,0x1c,0x8c,0xa2,0xf1,0x56,0x84,0x80,0xa8,0xc5,0x64,0xbe,0xe2, 0x27,0xd8,0xdf,0x83,0xd8,0x7e,0x6,0xbd,0x3d,0x38,0x54,0xde,0xd7,0x1a,0x8e,0x23, 0x0,0x42,0x30,0x8f,0x23,0x28,0xad,0x41,0x9,0x1,0x61,0xc,0x44,0x69,0x78,0xae, 0x83,0xdd,0x1b,0x3d,0x33,0xd1,0x6d,0x36,0x7,0x10,0x41,0x6b,0x6d,0x8a,0x28,0x28, 0xc1,0xe3,0x67,0x27,0x8,0x1a,0x6d,0xbc,0x74,0xe7,0x0,0x5a,0x1a,0xbd,0xa5,0x70, 0x3e,0xc5,0x68,0x34,0x32,0xb3,0x41,0x2,0xbf,0x92,0x4e,0x2b,0x97,0xbb,0xda,0x28, 0xbb,0x28,0x37,0xe3,0xba,0x2e,0x76,0x76,0x76,0x70,0x7a,0x7a,0x8a,0xc3,0xc3,0xc3, 0xbf,0x5,0xf0,0xd7,0xc5,0xa8,0xa1,0x8e,0x1e,0xea,0xf5,0x95,0xd3,0x4a,0x19,0x10, 0xd0,0x32,0xc5,0xf4,0xf8,0xf1,0xe3,0x24,0x49,0x92,0xa5,0xd9,0xc,0xb6,0x3,0xda, 0xf6,0x32,0x6c,0x73,0x51,0x3a,0x8e,0x93,0x35,0xb9,0x8d,0xb3,0x8b,0xdd,0xcc,0x63, 0x98,0xc5,0x12,0xff,0xe9,0x5f,0x7e,0x85,0x44,0x2a,0x30,0xe1,0xc2,0x73,0x1d,0x38, 0x82,0x23,0xf0,0x1c,0xf4,0x7a,0x1d,0x34,0x1a,0xd,0x68,0xad,0xe1,0x72,0xb1,0xa8, 0x2,0x61,0xa6,0x71,0xcc,0x75,0x4,0x6e,0xf4,0x7b,0x10,0x8c,0x40,0xcb,0x24,0x8f, 0x28,0xca,0x61,0x3b,0xa1,0xc,0x1a,0x14,0xb1,0x54,0x98,0x45,0x31,0x66,0xb3,0x10, 0xb3,0x79,0x94,0xc9,0x28,0x5c,0x4d,0x16,0x97,0x69,0x9d,0xe7,0xa5,0x4f,0xb6,0x8d, 0xc,0x9e,0xe7,0x35,0x9b,0xde,0x67,0x13,0x3d,0xb4,0xee,0x79,0x9b,0xf2,0x26,0xdb, 0x6c,0xc5,0x46,0xb3,0x4d,0x9f,0xab,0x2a,0x14,0x57,0x6d,0x43,0x99,0x29,0x3b,0x2d, 0xe,0xf5,0x79,0x3e,0x5a,0xe9,0x2a,0xd8,0x15,0x72,0x1e,0x14,0x90,0xd2,0x9c,0xd7, 0xbe,0xe3,0x66,0xd5,0x6b,0x6a,0xc9,0x11,0x6a,0x4,0x3e,0xfa,0xdd,0x36,0x5c,0xc1, 0xc1,0x29,0x81,0x1f,0xb8,0xb9,0xc4,0xbb,0xdf,0xec,0xe0,0x93,0xcf,0x1f,0xe0,0xf8, 0xd9,0x17,0x70,0x84,0x87,0x24,0x49,0xe0,0x7,0x4d,0x84,0x71,0x84,0xc1,0x68,0x98, 0x77,0x67,0xaf,0xea,0x63,0xa9,0x92,0x90,0x29,0x3e,0xb7,0xdf,0xef,0xa3,0xd9,0x6c, 0x22,0xc,0xc3,0x5f,0x10,0x42,0x1a,0xd9,0x73,0x54,0xf1,0x6f,0xbd,0xea,0xf5,0x95, 0x44,0xe,0xa5,0xa8,0x81,0xd8,0x13,0x8e,0x10,0xd2,0xf9,0xdd,0xef,0x7e,0x87,0x5e, 0xaf,0x87,0x20,0x8,0xae,0xc8,0x14,0xb,0x21,0x10,0xc7,0xf1,0x56,0x55,0x34,0x93, 0xc9,0x4,0xb3,0xe9,0x38,0xd3,0xb6,0xd1,0x70,0x3d,0x1f,0xb1,0x54,0x78,0xeb,0x57, 0xbf,0xc6,0xe9,0xc5,0x10,0xdd,0x6e,0x17,0x42,0x8,0x70,0x46,0xe0,0xba,0x2,0xdd, 0x76,0xb,0xad,0x56,0x2b,0x1b,0xcc,0xe3,0x42,0x6a,0xc0,0xb3,0x9d,0xcf,0x4a,0xa2, 0xd1,0xf2,0xd1,0x6d,0x35,0xcd,0x98,0xcf,0x2c,0x72,0x11,0xcc,0xc,0x1,0x32,0x55, 0x4a,0x14,0x8c,0x51,0x48,0xa9,0x90,0x12,0x20,0x8c,0x42,0x44,0x51,0x4,0xa5,0xec, 0xf4,0x37,0x5e,0xb8,0x48,0xaf,0xe,0xf2,0x31,0xa,0x3d,0x3a,0x93,0x6c,0x5e,0xef, 0x7d,0xab,0x8d,0x1e,0xf5,0x26,0x6f,0x5e,0x5f,0x89,0x42,0x96,0x26,0x8d,0x6d,0x59, 0xed,0xf4,0x3c,0x9,0x6f,0x42,0x4c,0x4f,0xc9,0xba,0xc5,0x36,0xc8,0x7f,0x3c,0x8f, 0xec,0x47,0xf1,0x7f,0xc5,0x9c,0x2,0xd5,0x57,0x23,0x2f,0x5b,0xe,0x6d,0xd,0x35, 0x65,0xd7,0xa7,0x95,0xd6,0x82,0x9,0x25,0xd0,0x69,0xa,0x2,0x6,0xc1,0x39,0xa0, 0x35,0xa2,0x38,0x46,0xaa,0x25,0x34,0x25,0x10,0xd4,0x9c,0xe7,0x81,0xef,0x61,0xa7, 0xdf,0x5,0x2e,0x80,0x59,0x18,0x81,0xb,0x8a,0x16,0x69,0x60,0x16,0x71,0x10,0x30, 0x7c,0xfa,0xd9,0x3,0x3,0x22,0xed,0x46,0xe,0x8e,0xb3,0xd9,0xc,0xa3,0xd1,0x8, 0xad,0x56,0x6b,0xc9,0x71,0x29,0x2,0x40,0x59,0xc5,0xb5,0xd8,0x27,0x61,0x1,0xe3, 0xe6,0xcd,0x9b,0x78,0xf4,0xe8,0x11,0x3e,0xff,0xfc,0xf3,0x9,0x21,0x44,0x68,0xad, 0xd3,0x62,0x62,0xba,0x5e,0xf5,0xfa,0x4a,0x22,0x87,0x52,0xd4,0x40,0xb3,0x8b,0x49, 0x7c,0xf4,0xd1,0x47,0x3,0xc6,0x18,0x76,0x76,0x76,0x96,0xaa,0x29,0xec,0xc5,0x96, 0x24,0xc9,0x15,0xd1,0xb8,0xca,0xf7,0x57,0x29,0x2e,0x2e,0x2e,0xf2,0xb,0xc6,0x75, 0x5d,0x24,0x4a,0xe3,0xfd,0xf,0xee,0xe3,0xe1,0xd1,0x13,0xf8,0xcd,0x26,0xc0,0x68, 0xc6,0xe7,0x32,0xf4,0xbb,0x1d,0x74,0x3a,0x1d,0xf0,0x8c,0xf7,0xb7,0x23,0x3f,0xad, 0x57,0xdf,0x6c,0x36,0xd1,0xeb,0xf5,0x4c,0xc3,0x9b,0x4a,0xf3,0xe1,0xf0,0x69,0xaa, 0xf2,0xb0,0xdc,0x18,0x15,0x23,0xc5,0x7c,0x31,0x1c,0x62,0x16,0x45,0x90,0x40,0xa5, 0x84,0xf2,0x15,0x59,0xf,0xad,0x2a,0x3d,0xe5,0x55,0xde,0xf7,0x26,0x43,0xf5,0xbc, 0xc9,0xe2,0xa2,0x17,0xfd,0x65,0xf2,0x12,0x9b,0x12,0xe0,0xd7,0xa1,0xa0,0xbe,0xe4, 0x79,0xb6,0xf1,0x38,0x94,0xa3,0x88,0x62,0x34,0x67,0xa8,0xc0,0xac,0xfc,0x34,0xfb, 0x9d,0x29,0xa1,0x5b,0x3,0xc3,0x2a,0x26,0x30,0x91,0xa6,0x5f,0x86,0x11,0x40,0x4b, 0x5,0xc1,0x38,0x5c,0xd7,0x14,0x44,0x90,0x42,0x82,0x98,0x73,0x8e,0x56,0xab,0x89, 0x9d,0x7e,0x17,0xbe,0xeb,0xc0,0xe1,0xc2,0x44,0xb1,0xc2,0x5,0x15,0x1c,0x94,0x33, 0x7c,0xf2,0xc9,0x27,0x8,0xa3,0x24,0xcf,0x19,0x50,0xca,0x31,0x18,0xc,0xae,0x38, 0x51,0x65,0xa0,0x2c,0x4f,0x1b,0xb4,0xcb,0x46,0x4d,0xbe,0xef,0xa3,0xdf,0xef,0x63, 0x34,0x1a,0xe1,0xcd,0x37,0xdf,0xfc,0x77,0xd9,0xeb,0x64,0x31,0xda,0xaf,0x57,0xbd, 0xbe,0x12,0x5a,0xa9,0x70,0xa2,0x4a,0x0,0x38,0x3e,0x3e,0x8e,0x67,0xb3,0x19,0xe, 0xe,0xe,0xae,0x50,0x35,0x45,0xe9,0xed,0xf2,0xdf,0xb2,0xa1,0xa5,0x94,0xe2,0xec, 0x7c,0x88,0x38,0x4e,0x97,0xc2,0xe7,0x47,0x47,0x8f,0xf1,0xde,0xfd,0x4f,0x21,0x9a, 0x3d,0x8,0xc7,0x81,0xef,0xfb,0xa0,0x94,0xa2,0xdf,0xee,0xa2,0x19,0x34,0x40,0x95, 0x1,0x11,0x4a,0x39,0x40,0x19,0x18,0x13,0xe0,0x94,0xa2,0xdd,0xf0,0xd0,0x6f,0x37, 0xb3,0xf2,0xc1,0x5,0x30,0x98,0xb,0x4e,0x9b,0x8b,0x99,0x12,0x44,0x52,0x61,0x32, 0xf,0x31,0x9c,0xce,0x40,0x94,0x6,0x51,0x1a,0x54,0x6f,0xae,0x34,0x32,0x2a,0xaa, 0xa6,0x4a,0x49,0x2a,0x9d,0x55,0x2b,0x99,0xa,0x1a,0x5d,0x90,0x5d,0x58,0xde,0x36, 0xd1,0x35,0x8b,0x4d,0x6b,0x75,0x65,0x2b,0x1a,0x8c,0x72,0xc2,0xb2,0x7c,0x4c,0x8b, 0x94,0x57,0x15,0x80,0x6d,0x3,0x24,0xe5,0xf7,0x28,0xdf,0xdf,0x44,0x53,0x5d,0x37, 0x11,0x6f,0x1a,0x7,0xaf,0x6e,0xe6,0x14,0xa6,0x4b,0xbf,0xf,0xd5,0xd5,0xf4,0xdc, 0xd2,0x31,0x90,0x30,0x15,0x4e,0x89,0x69,0x70,0xd4,0x20,0xf9,0x56,0x6,0x23,0x3b, 0xd7,0x61,0xf9,0x33,0x97,0x9d,0x3,0x46,0xb8,0x29,0x58,0x0,0x31,0x43,0x85,0x8, 0x20,0x38,0x87,0xc7,0x5,0xb8,0x56,0xa0,0x74,0xf1,0x3b,0x30,0xc6,0x10,0x4,0x1, 0xba,0xbd,0x36,0x3c,0x97,0xc1,0xe5,0x4,0xd,0x4e,0xe0,0x71,0x6,0xcf,0x6f,0x61, 0x14,0x2a,0xbc,0x7f,0xf8,0x0,0x8a,0x99,0xaa,0x39,0x4a,0x12,0x0,0x14,0x67,0x67, 0x17,0x8,0xc3,0x38,0x2b,0xeb,0xce,0xf6,0x27,0xab,0xa2,0xdb,0x14,0x95,0xd9,0x9e, 0x88,0x7e,0xbf,0x8f,0x20,0x8,0xf0,0x93,0x9f,0xfc,0xe4,0x6d,0x42,0x8,0x2d,0xe6, 0x1b,0x8a,0x20,0x91,0x95,0xa2,0xdb,0x62,0x12,0x52,0x9b,0xca,0x1a,0x1c,0xbe,0x2c, 0x28,0xe4,0x27,0x19,0x21,0xc4,0x3f,0x39,0x39,0xc1,0xcd,0x9b,0x37,0xe1,0xba,0xee, 0xca,0x13,0xb6,0x4c,0x67,0x58,0x7a,0xc7,0xde,0xe7,0x9c,0x63,0x34,0x1a,0x21,0x9c, 0x4f,0x1,0x28,0x48,0x5,0xf8,0x41,0x13,0xe7,0x17,0x3,0xfc,0xe6,0xb7,0xef,0x40, 0x8,0x1,0xc7,0xe1,0xf0,0x3d,0x17,0x9c,0x50,0xb4,0x1a,0x4d,0xf8,0xbe,0xf,0x21, 0x4,0x58,0x36,0x62,0x54,0x8,0x6,0xc1,0x38,0x94,0x4a,0xe1,0x79,0xce,0x22,0x62, 0x28,0x19,0x3b,0xc2,0x28,0x8,0xe5,0xa6,0x49,0x69,0x16,0x62,0x3a,0x9d,0x22,0x8a, 0x13,0xac,0x72,0xac,0xbe,0xac,0x24,0xc5,0x8b,0x14,0x3d,0x7c,0xde,0xdc,0xc2,0xa6, 0xfc,0xc0,0xf3,0x44,0x2e,0xd7,0xd9,0xcf,0xaa,0xef,0x50,0xf5,0x7d,0xcb,0x8d,0x6f, 0xeb,0x0,0xb0,0xea,0x3c,0xb3,0x51,0x6b,0xb9,0xf2,0x67,0x91,0x93,0x50,0x4b,0x91, 0xc0,0x72,0x8f,0x4,0x5d,0xaa,0x78,0x22,0x9b,0xa6,0xf2,0x15,0xbe,0xb,0x63,0x2c, 0x8f,0x58,0xb5,0x96,0x4b,0x0,0xd1,0xf0,0x7c,0x34,0x9b,0xa6,0xa7,0x86,0x31,0x2, 0xcf,0xf3,0xc0,0x39,0x47,0xb3,0xd9,0xc4,0x70,0x38,0xc6,0xa3,0x47,0x47,0x60,0xdc, 0x83,0x54,0x99,0xd3,0x42,0x34,0x2e,0x2e,0xce,0x40,0x60,0x46,0xd5,0x5a,0xbd,0x2e, 0x99,0x6e,0x3e,0x8f,0xec,0xbe,0x30,0xc6,0xd0,0xef,0xf7,0x41,0x29,0xc5,0xc3,0x87, 0xf,0xa5,0xa5,0x81,0x4b,0xd7,0xaf,0xa5,0x88,0xeb,0x4a,0xa6,0x1a,0x1c,0x5e,0x4c, 0xce,0xa1,0xf8,0xf7,0xf0,0xf0,0x70,0xc6,0x18,0xcb,0xa5,0x0,0xb6,0x31,0x2c,0xe5, 0x91,0x89,0x79,0xa3,0xdb,0x60,0x0,0x25,0x23,0x43,0x11,0x51,0x8e,0xf1,0x3c,0xc6, 0x7f,0xfa,0xf5,0x6f,0x90,0x48,0x65,0xe6,0x36,0x3b,0x2,0xe,0x33,0x82,0x7a,0x9d, 0x4e,0x27,0x8f,0x20,0xac,0x41,0xa0,0x9c,0x81,0x11,0x8d,0x86,0xef,0xa2,0xdd,0x6a, 0xc2,0x77,0x44,0xe6,0xe9,0x2e,0x64,0x39,0x18,0x77,0xa0,0x15,0x41,0x98,0xa4,0x98, 0x86,0x11,0xe6,0x61,0x88,0x38,0x49,0x57,0x34,0x3f,0x5d,0x1f,0x20,0x36,0x25,0x76, 0xaf,0x46,0x12,0xcb,0x9b,0x8d,0x38,0x56,0x6d,0x1b,0x5f,0xf,0x92,0x47,0x33,0xd5, 0x5b,0x36,0x33,0xa2,0x10,0xa3,0xd8,0xc7,0xd4,0x35,0x92,0xd7,0xab,0x80,0x44,0x82, 0xe4,0x5b,0xb9,0xc7,0xc2,0x56,0x4a,0x6d,0x2a,0xad,0xfd,0xb2,0xe0,0x59,0x95,0xe0, 0xb6,0x11,0x8f,0x9d,0xc1,0xa0,0x94,0x36,0xd1,0x3,0xa1,0x25,0xe7,0xa5,0x9a,0x4e, 0x5a,0x17,0x3d,0x5a,0x60,0x11,0x42,0xe4,0xcd,0x72,0xf6,0x97,0x62,0xcc,0xe8,0x7c, 0x75,0x9a,0x2d,0x34,0x1a,0xd,0x53,0xda,0xea,0xa,0x70,0x91,0xe9,0x7f,0x31,0x86, 0xe3,0x2f,0x4e,0xf1,0xec,0xf4,0xc,0x8c,0x7b,0xa6,0x3,0x5c,0x4b,0xa4,0x71,0x82, 0xf3,0xf3,0xf3,0x25,0x2a,0x96,0xb0,0xed,0x68,0x31,0x7b,0xc,0x3a,0x9d,0xe,0x5a, 0xad,0x16,0x2e,0x2e,0x2e,0x40,0x8,0x9,0xd6,0x81,0x40,0x2d,0xf9,0x5d,0x83,0xc3, 0x8b,0xca,0x39,0xd8,0x13,0xa9,0x35,0x18,0xc,0xb0,0xbf,0xbf,0xbf,0x55,0x3e,0xa1, 0xb8,0x6c,0xb7,0xb4,0xad,0xd3,0xbe,0xbc,0xbc,0x44,0x9a,0xa6,0xf0,0x44,0xa6,0x7d, 0x24,0x1c,0xbc,0xf3,0xbb,0xf,0x70,0x72,0x3e,0x40,0xd0,0x68,0x99,0x32,0x3f,0x87, 0xc3,0x11,0xc,0xed,0x76,0x13,0x9e,0xe3,0xe6,0xc0,0xc0,0x38,0x81,0x9b,0xe9,0xe7, 0x73,0x6,0x74,0x3b,0x6d,0xb4,0x2,0x3f,0x93,0x25,0x90,0xb,0xa9,0x6f,0xc2,0x90, 0x28,0x8d,0x79,0x9c,0x60,0x32,0x9d,0x62,0x1e,0x9a,0xa4,0x33,0x63,0xc,0x9a,0x12, 0x48,0x4d,0x56,0x56,0x4,0x5d,0xc7,0xab,0x5e,0xe5,0x15,0x6f,0xe3,0xf9,0xbf,0x88, 0xc8,0xa1,0xea,0xf9,0xab,0xe8,0xa5,0xe7,0xf9,0xae,0xab,0xf2,0x28,0xdb,0x80,0xc7, 0x36,0x40,0x70,0xdd,0x7c,0xc8,0x3a,0xaa,0xac,0xec,0x90,0xd8,0x7c,0x84,0xd9,0xa4, 0x1,0x0,0x42,0x1,0x42,0xf3,0x59,0x1b,0xeb,0x8e,0xe7,0xaa,0x62,0x2,0xeb,0x5c, 0xf8,0x8e,0xb,0x87,0xf1,0x2c,0x2,0x30,0x83,0xa3,0x28,0x35,0xcd,0x98,0x9d,0x66, 0xb,0x41,0xc3,0xcb,0xa3,0xc,0x4a,0x29,0xda,0x9d,0x1e,0x40,0x19,0x3e,0x7b,0xf8, 0x18,0x93,0x30,0xce,0xab,0xfc,0x8,0xd5,0x98,0x8c,0x87,0x18,0x8f,0x6,0xb,0xdd, 0x25,0xca,0xaf,0x5,0x92,0x80,0xa9,0x5e,0xf2,0x3c,0xf,0x87,0x87,0x87,0x53,0x4b, 0x27,0xad,0x98,0xd4,0x58,0x53,0x4a,0x35,0x38,0xbc,0xb0,0x8,0x82,0x7e,0xf0,0xc1, 0x7,0x83,0x56,0xab,0x85,0x66,0xb3,0x79,0x2d,0xaf,0xaf,0xa8,0x3c,0xa9,0x94,0x32, 0xd5,0x49,0xb3,0x99,0xa9,0x68,0x92,0xa,0xdc,0x11,0x78,0x74,0xf4,0x18,0x9f,0x3e, 0x78,0x80,0x46,0xab,0xb,0xc2,0x19,0x1c,0x97,0xc3,0x15,0x8e,0xa1,0x93,0x5c,0x6f, 0x49,0xd9,0xd2,0xe,0xea,0x11,0x42,0xe0,0x46,0xb7,0x83,0xa6,0x6f,0xe4,0x90,0xb5, 0x4a,0x8d,0xb7,0x95,0x49,0x72,0x28,0x42,0x31,0x1a,0x4f,0x30,0x9b,0x87,0x90,0x99, 0xc0,0x5d,0xe,0xa,0x8a,0x54,0x4a,0x7b,0xbc,0xc8,0xe,0xe0,0x17,0x99,0x28,0x7e, 0xfe,0x6d,0x39,0xa,0xd1,0xa5,0x3c,0x49,0xd5,0x7e,0xbf,0x88,0xdc,0xc2,0x62,0x98, 0x11,0xb9,0x12,0x4d,0x14,0xb7,0xeb,0x74,0x5e,0x57,0x7d,0xe6,0xaa,0xe8,0xaf,0x3c, 0x59,0x50,0x66,0xb3,0xa0,0xe3,0x38,0xce,0x41,0x22,0x57,0x50,0x79,0xe,0xed,0xa8, 0x62,0xde,0xcc,0x71,0x1c,0x38,0x8c,0x23,0xd7,0x75,0xca,0x1e,0xf7,0x3c,0xf,0xad, 0x56,0xb,0xae,0xc3,0x4d,0xa3,0x26,0x27,0x10,0x42,0x20,0x8,0x2,0xc4,0xa9,0xc4, 0x83,0x47,0x4f,0x21,0x95,0x89,0x6e,0xd3,0x34,0x85,0xeb,0xba,0x38,0x3b,0x3b,0x33, 0x9,0x75,0x46,0x37,0x4b,0xcf,0x94,0x8e,0x81,0x52,0xa,0x9e,0xe7,0xe1,0xc6,0x8d, 0x1b,0x18,0xe,0x87,0xb8,0x7f,0xff,0xfe,0x5f,0x57,0x80,0x42,0xfe,0xd2,0xda,0x4c, 0xd6,0xe0,0xf0,0x42,0xa2,0x87,0xe3,0xe3,0x63,0x39,0x9f,0xcf,0xb1,0xb7,0xb7,0xb7, 0xa4,0x1c,0x79,0x1d,0x43,0xc9,0x18,0x43,0x18,0x86,0xb9,0x4a,0x25,0x0,0x38,0xae, 0x8f,0xcb,0xf1,0xc,0xbf,0xf9,0xed,0x3b,0x60,0xd4,0xf4,0x2b,0xb8,0xae,0xb,0xdf, 0xf7,0xe1,0x79,0xe,0x1a,0xd,0x1f,0x84,0x68,0x70,0x4e,0xc1,0x1d,0x91,0x5f,0xec, 0x54,0x6b,0x74,0x5b,0xa6,0xa4,0x95,0x10,0x2,0xa9,0x12,0x68,0x2,0x40,0x53,0x28, 0x2,0xc4,0x52,0x61,0x3c,0x99,0x20,0x8e,0xe3,0x3c,0xdf,0xb1,0xd0,0xf4,0x97,0x1b, 0x8d,0xc2,0xa6,0x1e,0x80,0x6f,0xc3,0x5a,0xd7,0x5f,0xf0,0xbc,0x5e,0xfc,0x36,0x60, 0xb1,0xa9,0x4f,0xe3,0x45,0x81,0xec,0xba,0xdf,0x2d,0x37,0x98,0x84,0x42,0x53,0x6, 0x9d,0xd5,0xb8,0xda,0x5c,0x84,0xa5,0x9a,0x36,0xe5,0x36,0x56,0x81,0x45,0x7e,0x2e, 0xa9,0x14,0x8c,0x67,0x4e,0x4b,0x61,0x6a,0x1f,0x25,0x0,0x67,0x34,0xcf,0x3f,0x30, 0x42,0xe1,0x39,0x2e,0x38,0x23,0x79,0xfe,0xe1,0xfc,0xf2,0x2,0x47,0xc7,0x27,0x60, 0xdc,0x1,0x65,0x22,0xa7,0xc2,0x86,0xc3,0xe1,0xd6,0x52,0xee,0xc5,0x8,0xc9,0xfe, 0x6d,0xb7,0xdb,0x8,0x82,0x0,0x5a,0xeb,0xbf,0x25,0x84,0xf0,0x62,0xf4,0x50,0xbc, 0xa6,0x6b,0x33,0x59,0x83,0xc3,0x8b,0x88,0x1a,0xfc,0xd3,0xd3,0x53,0xdc,0xb8,0x71, 0x3,0x41,0x10,0x54,0x8a,0x84,0x6d,0x32,0xb2,0x94,0x52,0x24,0x49,0x82,0xc9,0x64, 0x92,0x97,0xb9,0x6a,0xad,0x11,0x6b,0x8a,0x7f,0x7b,0xf7,0x5d,0x8c,0x26,0x53,0x34, 0x1a,0xd,0x78,0x9e,0x99,0xda,0xe6,0xba,0x2e,0x82,0x20,0x30,0x93,0xdb,0x38,0x3, 0x13,0x3c,0xf,0xcd,0x5,0x65,0x68,0x35,0x9b,0xe8,0x36,0x5b,0x90,0x2a,0x81,0xd2, 0x26,0xc7,0x40,0x89,0x91,0xcc,0x88,0xe3,0x14,0xb3,0x79,0x88,0xf1,0x6c,0xb6,0xc4, 0x9,0x1b,0x50,0x1,0x18,0x8,0x40,0x94,0xd9,0xae,0x61,0x94,0xb6,0x89,0x30,0xbe, 0xc9,0x20,0x51,0x65,0xb8,0xab,0xf2,0x14,0xc5,0xa,0x9f,0xa5,0xfc,0x44,0x39,0x5f, 0xb1,0x5,0x10,0x6c,0x2,0x15,0x65,0x44,0x4f,0xf3,0x4d,0x42,0x2f,0x6d,0xd7,0xd9, 0xb7,0x75,0x23,0x5d,0x4d,0xd4,0x68,0x40,0xc2,0x52,0x4d,0x26,0x8a,0x48,0xd7,0x7a, 0xe8,0xdb,0x94,0xf7,0xda,0xce,0x7b,0x3,0x10,0x24,0xa7,0x3f,0x2d,0x9d,0xda,0xa, 0x1a,0xf0,0x7d,0x1f,0xae,0xe0,0x79,0x73,0x9c,0xe3,0xb9,0x70,0x3c,0x17,0x8f,0x9f, 0x3d,0xc3,0xe9,0xe5,0x0,0x5c,0xb8,0x88,0x62,0x33,0xe3,0x64,0x3c,0x1e,0x22,0x9c, 0xcd,0x9f,0xab,0xa3,0xdd,0x4a,0x7b,0xdf,0xbc,0x79,0x13,0x49,0x92,0xe0,0xf8,0xf8, 0x38,0xa9,0xf3,0xb,0xf5,0xfa,0x4a,0xc0,0x81,0x10,0x42,0x1e,0x3f,0x7e,0x3c,0xd3, 0x5a,0x63,0x77,0x77,0x37,0x3f,0x1,0xaf,0xeb,0x69,0x51,0x4a,0x31,0x99,0x4c,0x30, 0x99,0x4c,0xf2,0x8b,0x47,0x8,0x81,0x8f,0x3f,0xfd,0x1c,0x9f,0x3f,0x78,0x84,0x6e, 0xbf,0x67,0xf4,0x91,0x18,0x43,0xe0,0x39,0x8,0x3c,0xdf,0x54,0x83,0x30,0x9d,0x8f, 0xf9,0xb4,0x9a,0x49,0x9e,0xe7,0x65,0x9,0x71,0xba,0x34,0x4d,0x4e,0x29,0xd3,0xe5, 0x3c,0x1a,0x8f,0x11,0x26,0x31,0x3c,0x37,0x58,0x19,0x1,0xd8,0x12,0xc9,0xeb,0xf2, 0xff,0xdf,0x96,0xf5,0x3c,0x9d,0xd6,0xd7,0xdd,0xff,0x75,0xdd,0xd3,0xdb,0xe6,0x23, 0xb6,0xcd,0x33,0x6c,0x9a,0xf9,0x50,0xae,0x90,0x5b,0xf7,0xd9,0xe5,0x7c,0x44,0x55, 0x42,0xbb,0x2a,0x12,0xa9,0x3a,0x6,0x79,0x7e,0x0,0x2a,0x4f,0x50,0xdb,0xe7,0x53, 0x4a,0xc1,0x29,0x83,0x10,0x2,0xfd,0x6e,0x3b,0x73,0x54,0x34,0x7c,0xdf,0xcd,0x45, 0xfa,0x94,0x26,0x78,0x70,0x74,0x84,0x58,0x9a,0xd7,0xcb,0xec,0xbb,0xc,0x6,0x83, 0x3c,0xc2,0x5d,0xb7,0x6c,0x54,0x5c,0xfc,0x5c,0x29,0x25,0xda,0xed,0x36,0x5a,0xad, 0x16,0x4e,0x4e,0x4e,0x0,0x40,0x14,0xa3,0x87,0xba,0x84,0xb5,0x6,0x87,0x6b,0x1, 0x40,0xf6,0xd7,0x86,0xa0,0xc5,0xd7,0xbb,0x27,0x27,0x27,0xe8,0xf7,0xfb,0x70,0x5d, 0x77,0xa9,0xd1,0x6d,0x93,0x46,0x10,0x21,0x4,0x8c,0x2a,0x48,0xad,0x10,0xa6,0x1a, 0x97,0xe3,0x89,0x31,0xe8,0x59,0xf2,0xee,0x72,0x3c,0xc1,0xbb,0xbf,0xbf,0x8f,0x66, 0xbb,0x63,0xb8,0x5b,0xc1,0x10,0x38,0x2,0xd,0xdf,0x83,0xe3,0x64,0x2a,0x97,0xdc, 0x3,0x5,0xc9,0xa4,0xb6,0x35,0x98,0x43,0xd1,0xeb,0xf5,0x4c,0x22,0x4f,0x4a,0x40, 0x53,0x10,0x30,0xa4,0x8a,0x62,0x38,0x9d,0x61,0x32,0x9d,0x1,0x20,0x46,0xaa,0x3b, 0x8d,0xd7,0x52,0xe,0xcf,0x6b,0x74,0xcb,0xf7,0xcb,0x92,0x1a,0x5f,0x56,0x89,0xf5, 0x45,0x36,0xb3,0xad,0xeb,0x65,0x28,0xd3,0x4c,0xc5,0x39,0xd7,0xdb,0xbe,0xbf,0xad, 0x88,0xd2,0xd7,0xa0,0x82,0xae,0x43,0x13,0xd9,0xdc,0x44,0xaa,0xb1,0xb4,0x95,0x73, 0x16,0xab,0xf6,0x49,0x6b,0x79,0x65,0xb3,0x51,0x8a,0xa6,0x4,0x89,0x6,0xc2,0x54, 0x22,0x8a,0x53,0x63,0x98,0x17,0x7b,0x6,0x23,0x93,0xa1,0xb3,0x39,0xd4,0xf6,0x3e, 0xb1,0xfa,0x1a,0xe6,0xb9,0x8a,0x80,0x52,0xd3,0xb,0x41,0x0,0xb8,0xae,0xb,0x4f, 0x70,0x50,0x9d,0xbd,0x96,0x1a,0xf5,0x55,0xc6,0x18,0xba,0x6d,0xa3,0xe0,0x4a,0x29, 0x85,0xe7,0x8,0x8,0xc1,0xd0,0x68,0x76,0x31,0x9e,0x84,0x78,0xfc,0xe4,0xa9,0xa9, 0xac,0xcb,0x66,0xa4,0x27,0x49,0x82,0xe1,0xe5,0x60,0xb9,0x7a,0xa9,0x54,0xe2,0x5b, 0xd4,0x5d,0x2a,0x5e,0x97,0x80,0xe9,0x1c,0xb7,0xd3,0x10,0x1f,0x3d,0x7a,0x14,0xd5, 0x26,0xb1,0x5e,0xd7,0x6,0x87,0x62,0xc8,0x99,0xb5,0xdd,0x13,0xab,0xb,0xf,0x0, 0xf,0x1e,0x3c,0x98,0xb,0x21,0xd0,0x6e,0xb7,0x97,0x6a,0xb9,0xad,0x26,0x4c,0xb9, 0xc5,0xbf,0xec,0x65,0x49,0xa9,0xe1,0x70,0x81,0xe1,0xc5,0xb9,0x69,0x66,0xb2,0xaf, 0xa1,0x1c,0x6f,0xbf,0xf3,0x3b,0x48,0x95,0x2c,0x42,0x72,0x21,0xe0,0x79,0x5e,0x1e, 0x7a,0x53,0x4a,0x1,0x4a,0xb3,0xe,0x55,0x3,0x2a,0x9d,0x56,0x1b,0xad,0xa6,0xf, 0x19,0x47,0x20,0x59,0x4,0x12,0x26,0x31,0x66,0xb3,0x19,0xd2,0x54,0x5e,0x29,0x9b, 0xfd,0x43,0x78,0xec,0x2f,0xd2,0xeb,0x7f,0x9e,0x8,0xa1,0xc,0xd0,0x5b,0xcf,0x7b, 0x6,0x36,0x2,0x5c,0x19,0x48,0xcc,0x63,0xc8,0x47,0xa3,0x56,0xe9,0x4e,0x6d,0xd2, 0x66,0xfa,0xba,0x23,0xb3,0xe2,0xf1,0x2a,0x76,0xc5,0x97,0x7,0x38,0x55,0xd1,0x56, 0xf9,0xe,0x67,0xca,0xac,0x9a,0x5c,0xcd,0x45,0xd8,0x8,0x98,0x6a,0x64,0x92,0x1e, 0x24,0x3f,0xb7,0x6d,0xaf,0xe,0x21,0x24,0x7,0x8a,0x46,0xa3,0x81,0xd3,0xd3,0x53, 0x5c,0x8e,0x86,0xd9,0xd4,0x39,0xa3,0x20,0x3c,0x99,0x4c,0x30,0x9f,0xcf,0xaf,0x48, 0x79,0xaf,0x92,0xf5,0x2e,0xd3,0xb8,0x9c,0x9b,0xe1,0x56,0xc3,0xe1,0x10,0x84,0x90, 0xa0,0xce,0x37,0xd4,0xeb,0xb9,0x68,0xa5,0x42,0xb4,0x60,0xcb,0xde,0x24,0x21,0xa4, 0x71,0x71,0x71,0x81,0x4e,0x67,0x21,0x72,0x57,0x25,0x2d,0xb1,0xee,0xe2,0x23,0x94, 0x22,0xc,0x43,0xcc,0xa6,0x63,0x8,0x6e,0xc2,0x60,0xe1,0xf9,0xf8,0xe4,0xf3,0x87, 0x38,0x3a,0x3e,0x31,0x9e,0x96,0xe7,0x99,0x8a,0xf,0xc7,0x81,0xeb,0xba,0x79,0x78, 0xee,0x70,0x1,0xca,0x4d,0x58,0x4e,0xb4,0x44,0xaf,0xd9,0x46,0xbf,0xdd,0x86,0x4e, 0xb3,0x91,0xa1,0xd4,0x94,0xa9,0xce,0xe7,0x11,0xc2,0x28,0xce,0x2e,0x76,0xe,0x42, 0xd8,0xd6,0x65,0x89,0x5f,0x25,0x0,0x5c,0xb7,0x74,0xf5,0xcb,0xd0,0x2e,0xab,0x80, 0xa5,0xcc,0xe1,0x97,0xb7,0xcd,0xe0,0xb1,0xba,0xf7,0x42,0x6b,0x94,0xaa,0xa2,0xb6, 0xcb,0xd1,0x6c,0x9b,0xa3,0xd8,0x66,0x6d,0x9a,0x67,0x41,0x8,0xab,0xdc,0x6c,0x7, 0xf6,0x22,0x42,0xd1,0x8b,0xb2,0x57,0x29,0xb3,0x4e,0x65,0x56,0x49,0x27,0xad,0x1a, 0x70,0x64,0x1f,0xe7,0x7c,0x91,0x1f,0xb3,0x8f,0x31,0x66,0xce,0x63,0x3f,0x70,0xe1, 0xbb,0x5e,0x2e,0xb9,0x61,0x9a,0x3d,0x1d,0xa4,0xa,0x78,0xfc,0xd8,0x54,0x2f,0x69, 0xb2,0xa0,0xab,0xc6,0xe3,0xf1,0x92,0x84,0xc6,0xb6,0xe7,0x9c,0x5,0xa9,0x7e,0xbf, 0xf,0xa5,0x14,0x1e,0x3c,0x78,0x30,0xad,0x41,0xa1,0x5e,0xd7,0x2,0x87,0xb2,0xfe, 0x7b,0x31,0x6a,0xf8,0xfc,0xf3,0xcf,0x27,0x9c,0x73,0xf4,0xfb,0xfd,0x9c,0xdf,0xb4, 0x25,0x73,0xb6,0x1,0x6e,0x55,0x12,0x70,0x51,0xd1,0x44,0x30,0x18,0xc,0xc0,0x28, 0xa0,0xa4,0x4,0xe3,0x1c,0x93,0x59,0x8c,0x77,0xdf,0xff,0x10,0xdc,0xb,0xf2,0xee, 0x51,0xab,0x59,0x23,0x84,0xf1,0xba,0x4,0x33,0x17,0x98,0x70,0x9d,0x5c,0x2,0xb9, 0xdf,0xed,0x80,0x43,0x43,0xa6,0xa6,0x42,0x24,0x8c,0x63,0x4c,0xa7,0x53,0xc4,0x49, 0x9a,0x11,0x1,0x14,0xa,0x80,0x26,0x24,0x7,0x88,0xaf,0xda,0xfb,0xbc,0x2e,0x4d, 0xb5,0xa9,0xa6,0xfe,0x45,0xce,0x51,0xde,0x86,0x7e,0x92,0x52,0xae,0xdd,0xaa,0x24, 0x39,0x56,0x7f,0x67,0xb2,0x94,0xa4,0x5e,0x47,0x4f,0x6d,0x9b,0xa3,0xd8,0x26,0xa7, 0xb5,0x6e,0xdb,0xf4,0xba,0x62,0x32,0x5a,0x6b,0xb2,0xa8,0x66,0x92,0x56,0xb2,0x7d, 0x1,0x24,0x46,0x62,0xa3,0x40,0x35,0x29,0x79,0x5,0x2c,0xcc,0xb9,0x8f,0xdc,0xf0, 0xe7,0xc6,0x1a,0x59,0x79,0xab,0x70,0xe0,0x7,0x2e,0x3c,0xc7,0x5,0x23,0x14,0x6e, 0x46,0x9f,0xb6,0x5a,0x2d,0xc,0x86,0x23,0x7c,0x71,0x76,0xe,0x4a,0x4c,0x11,0x6, 0xe7,0x1c,0xb3,0xd9,0xc,0x61,0x18,0x56,0x46,0xc4,0xeb,0x66,0x61,0xd8,0xe3,0x6f, 0x75,0x97,0xb2,0xc6,0x38,0xb7,0x4c,0x25,0xd7,0xeb,0xfb,0xb7,0xae,0xa5,0xca,0x5a, 0x51,0xcd,0xa0,0x8,0x21,0x8d,0xb7,0xdf,0x7e,0x1b,0xbb,0xbb,0xbb,0xf0,0x7d,0x3f, 0x4f,0x7c,0x99,0xf1,0x86,0x69,0x6e,0x34,0xac,0x87,0x53,0x35,0x5b,0x80,0x10,0x82, 0xe1,0x68,0x82,0x28,0x8a,0xc0,0x19,0x20,0xa5,0x6,0x13,0xe,0x7e,0xff,0xde,0xbb, 0x98,0xcd,0x23,0xf8,0xad,0x56,0x3e,0xbc,0xdd,0x46,0x10,0x36,0x6a,0xe0,0x9c,0xe7, 0xc3,0x78,0x28,0xd5,0xb8,0xd1,0xef,0x81,0x33,0x92,0xd7,0x83,0x8f,0xe7,0x33,0xcc, 0xc2,0x39,0x52,0x69,0x81,0x88,0x43,0x16,0x86,0xa6,0x50,0x62,0x26,0x86,0xad,0x1b, 0x63,0xf9,0x65,0x47,0x73,0x96,0xdf,0x63,0xdb,0xd9,0x5,0x2f,0x82,0x52,0xc9,0x8d, 0x28,0x25,0x6b,0xa9,0x9b,0x4d,0xef,0x5b,0x59,0xa7,0xa3,0x17,0xdf,0x9d,0xaa,0xab, 0xf4,0xd4,0xaa,0xdb,0xe6,0xfe,0xa2,0x80,0x9e,0xa0,0x3a,0xa1,0x5b,0xce,0x57,0x95, 0x8f,0xd5,0xd7,0xed,0xe0,0x2e,0xa2,0x2c,0x53,0xa9,0x5,0xad,0x0,0x99,0x3d,0x6e, 0xd5,0x7e,0xb,0xdf,0xd9,0x6a,0x76,0x29,0xad,0x41,0x68,0xb1,0x13,0x1e,0xa6,0x74, 0x89,0x18,0x75,0x58,0xc7,0xe5,0x48,0x35,0x10,0xc7,0x26,0xaa,0x65,0x94,0x40,0x73, 0x8e,0xc0,0xf5,0xa0,0x7c,0x5,0x95,0xa6,0xd0,0x24,0x85,0x10,0x2,0x9,0x0,0xe1, 0x7,0x78,0xf4,0xf4,0x29,0xba,0xdd,0x2e,0x3c,0xc1,0xa1,0x54,0x2,0xad,0x35,0x26, 0x93,0x49,0x26,0xc5,0xb1,0x18,0xa9,0x5b,0x3e,0x8e,0xab,0x22,0x35,0x1b,0x3d,0x9c, 0x9d,0x9d,0xe1,0xe8,0xe8,0x28,0xcc,0x34,0x97,0xea,0x8,0xa2,0x6,0x87,0xe7,0x2, 0x6,0x68,0xad,0xf5,0xe1,0xe1,0xe1,0x64,0x36,0x9b,0xa1,0xd7,0xeb,0xe5,0xde,0x95, 0xf5,0x34,0x6d,0x97,0x73,0x31,0xd4,0xad,0x32,0xb4,0x71,0x1c,0x63,0x32,0x99,0xe4, 0x5e,0xa5,0xe7,0x7b,0x38,0x3e,0xbd,0xc0,0xe1,0x67,0x8f,0xc,0x95,0x24,0x84,0xe1, 0x62,0x1d,0xab,0x7f,0x6f,0x72,0x8,0x4e,0x36,0x9f,0xc1,0x18,0x79,0x8d,0x5e,0xbb, 0xd,0xdf,0xf7,0x4d,0x71,0xa5,0xd6,0x98,0x87,0x21,0xa6,0xb3,0x10,0x52,0x16,0x12, 0x72,0x25,0xe3,0xa2,0xa1,0xf0,0x75,0x39,0x47,0xd7,0xed,0xf7,0xb8,0xce,0x73,0x36, 0xed,0xc3,0xb2,0xe7,0xab,0x9f,0xeb,0x3b,0xad,0x33,0xd2,0x69,0x3e,0xf4,0x6,0x95, 0xf3,0x2d,0x4,0x65,0x25,0x90,0x20,0x45,0x74,0xc9,0xdb,0x70,0xb7,0x91,0x58,0xa9, 0xda,0xef,0x4d,0xc7,0xe2,0xcb,0xda,0xb9,0xb2,0x58,0xa4,0xf9,0xc,0x86,0x54,0x6b, 0xe8,0x54,0xe6,0xa5,0xa1,0x42,0x70,0x90,0x22,0x95,0x6,0x18,0x39,0x6f,0xb,0x86, 0x8b,0x91,0xe4,0xd0,0xd2,0x9c,0x7b,0x9c,0x32,0xb8,0x2e,0x81,0x94,0x9,0x92,0xc4, 0xcc,0x38,0xe1,0x94,0x41,0x31,0x5,0xc7,0xe1,0x70,0x5d,0x1,0x19,0x6a,0x68,0x47, 0x23,0x4d,0x53,0xf8,0x8d,0x26,0x86,0x97,0x17,0x78,0x7a,0xfc,0xc,0xf7,0x5e,0x7e, 0x29,0x7,0xa5,0xf9,0x7c,0x8e,0xe9,0x74,0x9a,0xf7,0xf4,0x14,0x9b,0x4a,0x57,0xe6, 0x45,0xa,0xe7,0x87,0xe3,0x18,0xdd,0xb1,0xb3,0xb3,0x33,0x0,0xf0,0x0,0xcc,0x6b, 0x80,0xa8,0x69,0xa5,0xe7,0xbd,0x60,0x9a,0xe3,0xf1,0x18,0xdd,0x6e,0x37,0xaf,0x50, 0x2a,0xaa,0xae,0x56,0x5d,0xd0,0xc5,0xf2,0x40,0x5b,0x4e,0x37,0x99,0x4c,0xf2,0xc4, 0x35,0x0,0x44,0x71,0x8a,0xdf,0xdf,0xff,0x18,0x52,0x1,0x8e,0xe3,0x20,0x70,0x38, 0x1c,0x2e,0xf2,0x3c,0x83,0x4d,0xa2,0x89,0xc,0x34,0x84,0x10,0x68,0x38,0x1e,0x3a, 0xed,0x36,0xac,0x34,0x7d,0xac,0x24,0x2e,0xc7,0x13,0xd3,0xf1,0x4c,0x39,0x34,0x25, 0x50,0xc4,0x5c,0x95,0xb9,0x8,0x1b,0xb5,0x14,0x85,0x7a,0xa1,0x34,0xcd,0x57,0xd, 0x22,0xdb,0x88,0xd9,0x5d,0xd9,0x14,0xc9,0x37,0x68,0x7a,0x65,0x23,0x60,0x4b,0x5b, 0xd5,0x73,0xca,0xdb,0xaa,0xf7,0xb4,0x8f,0x29,0x89,0xfc,0xb6,0xa5,0x9e,0x96,0xa9, 0xa8,0x42,0x5,0x51,0xb9,0x2f,0x2,0x58,0xba,0xbd,0x6a,0xdf,0xb7,0xc9,0xbf,0xbc, 0x8,0x6a,0x6d,0x13,0xa5,0x97,0x6a,0x33,0x1d,0x30,0x49,0xfd,0xf2,0x1c,0x5,0x0, 0x0,0x20,0x0,0x49,0x44,0x41,0x54,0x52,0xa8,0x4c,0x10,0xaf,0x7c,0xfe,0x57,0xc9, 0x6d,0xdb,0xf7,0x16,0x74,0x21,0x9d,0x1,0x18,0xe5,0xe,0xa,0x93,0x8c,0xf6,0x5d, 0xf,0x8e,0x6b,0x72,0xf,0x8e,0xeb,0x83,0x51,0x81,0xa0,0xd9,0xc2,0xc9,0xf9,0x19, 0xc6,0xe3,0xf1,0x52,0x8f,0xce,0x74,0x3a,0x45,0x14,0x45,0x4b,0xd7,0xdc,0x36,0x43, 0xa7,0xec,0x7e,0xf6,0x7a,0x66,0x5a,0xdd,0xd1,0xd1,0xd1,0xac,0xa6,0x94,0x6a,0x70, 0xb8,0x56,0xce,0xa1,0x28,0xe5,0xfb,0xf0,0xe1,0xc3,0x31,0xa5,0x14,0xed,0x76,0x7b, 0x29,0x8c,0x2d,0x9e,0xac,0x76,0xe2,0x5b,0x59,0x11,0x33,0xf,0xd1,0xa5,0xc4,0x74, 0x3a,0x2d,0x18,0x6c,0x8e,0xc7,0xc7,0xcf,0xf0,0xf8,0xe9,0x31,0xbc,0x46,0x60,0x7a, 0x17,0xb4,0xca,0x41,0xa0,0x8,0xa,0xb9,0x7c,0x37,0x3,0xba,0xed,0x16,0x38,0x59, 0x54,0x25,0x4d,0x66,0x53,0x53,0xfd,0x4d,0x79,0xc6,0x3,0x2f,0xc0,0x49,0x22,0x85, 0xd2,0x69,0x46,0x7f,0x7d,0x3d,0xa0,0xf0,0xbc,0xd3,0xc6,0xaa,0x1e,0xab,0xe2,0xcc, 0xb7,0x9d,0xa4,0xb6,0x8a,0x53,0xdf,0xc4,0xd1,0xdb,0x9e,0x93,0x4d,0xdb,0x2a,0x2e, 0xbf,0x5c,0x2,0xbb,0xd8,0xb6,0x3,0xba,0x4d,0xc7,0xe4,0xcb,0x56,0x37,0x6d,0xca, 0x49,0x28,0x95,0x56,0x9f,0xc3,0x84,0x80,0x32,0x6,0x4a,0x39,0xd2,0x34,0x45,0x98, 0x5c,0xed,0xb4,0x7,0x54,0x25,0xad,0x58,0xbe,0xef,0x3b,0x2e,0x18,0x23,0x4b,0xc9, 0xe9,0xbc,0x0,0x83,0x8b,0x5c,0x82,0x83,0xa,0xe,0xd7,0xf1,0x41,0xc0,0xf0,0xf4, 0x8b,0x67,0x90,0x52,0x42,0x6b,0xd,0xce,0x39,0xe2,0x38,0x46,0x18,0x86,0xb,0xba, 0x8f,0xd2,0x2b,0x8e,0xda,0xaa,0xc8,0x8a,0x52,0x23,0xfa,0xd7,0x6e,0xb7,0x71,0x7e, 0x7e,0x7e,0x6d,0xda,0xb9,0x5e,0xdf,0xe3,0x9c,0x43,0x9,0x24,0x9c,0xdf,0xfe,0xf6, 0xb7,0xe8,0xf5,0x7a,0x68,0x36,0x9b,0x4b,0x17,0x84,0x5,0x83,0x55,0xd3,0xaa,0x2c, 0xdd,0x44,0x8,0xc1,0x68,0x34,0x32,0x17,0x82,0x8a,0x0,0xee,0x22,0x94,0xc0,0x7b, 0xf7,0x3f,0x1,0x11,0xa6,0x22,0x89,0x50,0xd,0x2f,0x68,0xc0,0xf5,0x39,0x38,0xd3, 0x70,0xb8,0xb9,0x10,0x29,0x67,0x60,0x8e,0x0,0x83,0x46,0x27,0x68,0xc2,0xf7,0x5d, 0x10,0x4e,0x90,0x24,0x12,0xd3,0x59,0x88,0x58,0xda,0x91,0x89,0xca,0xd4,0x92,0x63, 0x31,0x2b,0x98,0x82,0xe4,0x82,0x39,0xe5,0x39,0xeb,0x55,0x33,0x8a,0xab,0xe6,0xf5, 0x5e,0x27,0x4f,0xb0,0xcd,0x73,0x37,0x19,0xf0,0xcd,0xbf,0x4b,0xf1,0x39,0x24,0xe7, 0xf5,0xed,0x62,0x5f,0xd7,0x19,0xb5,0xf2,0xbb,0xb2,0xd2,0xf7,0xb5,0x15,0x4d,0xb6, 0xa4,0x52,0x2e,0x8d,0xef,0x2c,0x96,0x17,0x6b,0xad,0xa1,0xa,0x34,0x14,0x5d,0x91, 0x73,0xa8,0xa2,0x2c,0xaf,0x93,0x9f,0xd8,0xac,0x9d,0xa4,0xf2,0xef,0x9e,0xe7,0x4d, 0xb4,0x91,0xfa,0x56,0xa0,0xa0,0x4c,0x80,0x0,0x8,0x93,0x14,0x42,0x92,0x8c,0xff, 0xa7,0x50,0x5a,0x99,0xbd,0x57,0x85,0xd2,0x56,0x68,0xa3,0xef,0xa5,0x1,0x29,0x1, 0x4a,0x12,0x30,0x26,0xd0,0xf0,0x7c,0x4c,0xe6,0xa1,0x49,0x72,0x33,0x2,0x2d,0x15, 0x5c,0x8f,0x23,0xd6,0x1e,0x58,0x1c,0x81,0x40,0xc2,0x65,0x40,0x2a,0x8,0x5c,0xdf, 0xc3,0x60,0x1c,0xe2,0xd9,0xe5,0x1c,0x7,0x37,0x7c,0x28,0xa9,0xc1,0x88,0x69,0x22, 0x6d,0x34,0x5a,0xb9,0xac,0xf7,0x36,0xa5,0xda,0x36,0x47,0x68,0x73,0xf,0x83,0xc1, 0x0,0x4f,0x9f,0x3e,0x8d,0xb1,0x41,0x78,0xaf,0xee,0xaa,0xae,0x23,0x87,0x2b,0xeb, 0xc9,0x93,0x27,0x11,0x63,0x2c,0x8f,0x1a,0xb6,0xb9,0xf0,0x8a,0xd1,0x82,0xeb,0xba, 0x88,0xe3,0x18,0xf3,0xf9,0x3c,0x2f,0x2d,0x65,0x8c,0xe1,0xe1,0xc3,0x47,0x18,0x8e, 0x47,0x68,0x34,0x1a,0xc6,0x9b,0xca,0xe4,0x8b,0x19,0x63,0x10,0x8e,0x51,0xae,0xf4, 0x9c,0x6c,0x16,0xb4,0x96,0x68,0x78,0x3e,0xda,0xcd,0x6,0xc0,0x8c,0xec,0xc6,0x3c, 0x34,0xe2,0x79,0xd7,0xad,0x46,0xd9,0x24,0xcc,0xb6,0xcd,0x73,0xaf,0xeb,0x8d,0x6e, 0xbb,0x6d,0x32,0x5c,0xdf,0x85,0x6b,0xb3,0x2c,0xfe,0x57,0xf6,0x76,0x8b,0xa0,0xa7, 0xae,0x11,0x25,0x5c,0x67,0x6,0xc5,0xf3,0xd0,0x50,0xc5,0xfb,0x45,0xca,0xcc,0x50, 0x4c,0x9,0xd2,0x54,0x19,0xaa,0xad,0x5c,0xb1,0x46,0xb,0x23,0x5c,0xd9,0xb2,0xf7, 0x6e,0xe9,0x25,0x92,0x19,0x6d,0x4a,0xb9,0xa9,0x5e,0xf2,0xfd,0xbc,0x30,0xc3,0x2a, 0x7,0x50,0xce,0x70,0x7e,0x7e,0x8a,0x24,0x55,0x86,0xca,0xa2,0x96,0x5e,0x1a,0x5f, 0xeb,0xf8,0x17,0x23,0x7f,0xdf,0xf7,0xd1,0x68,0x34,0x6c,0xe5,0x12,0x2f,0x83,0x41, 0x91,0x6e,0xaa,0x81,0xa1,0x6,0x87,0xfc,0xc4,0xc8,0xfe,0x8a,0xb3,0xb3,0x33,0xf8, 0xbe,0x8f,0x56,0xab,0x95,0x87,0xb5,0xd7,0xed,0xc4,0xb5,0xb5,0xd9,0x8c,0x31,0x80, 0x72,0xcc,0xc3,0x18,0x9f,0x7d,0xf6,0x59,0x5e,0x85,0xe4,0xbb,0x22,0x4b,0xd6,0x9, 0x8,0xe1,0xc2,0x71,0x9c,0x7c,0x0,0x90,0x20,0xa6,0x8c,0xb5,0xd9,0x8,0xe0,0xba, 0x2,0x5a,0x13,0x44,0x51,0x82,0x38,0x4e,0xb2,0x92,0x40,0xc3,0x9b,0x53,0xbd,0xf5, 0xbe,0x6d,0x35,0xb3,0xe1,0xba,0x46,0xfd,0xc5,0x38,0xe3,0xd5,0x0,0xf1,0x6d,0xd2, 0x6d,0xb2,0x9d,0xc3,0xab,0x37,0x94,0x28,0x27,0x9d,0x51,0x4e,0x28,0x39,0xaf,0x64, 0x2b,0xc3,0x7d,0x9d,0x9c,0x42,0xf9,0x35,0xd5,0xcf,0xab,0x9e,0x40,0x97,0x4f,0xa2, 0x2b,0x24,0xd5,0xad,0x91,0xb5,0x33,0x22,0xec,0x50,0x1e,0x3b,0x21,0x4e,0x93,0xaa, 0x73,0xcf,0x54,0x18,0x31,0x66,0xc0,0x81,0x17,0x3a,0x9e,0x6d,0x8e,0x2d,0xc8,0xfa, 0x1e,0x6c,0x23,0xa8,0xed,0xf7,0x99,0x4c,0x26,0xb8,0x1c,0x8c,0x40,0x28,0xcf,0x8b, 0x3f,0xa6,0xd3,0x29,0x92,0x24,0x59,0x49,0x39,0xae,0xec,0x64,0x57,0x2a,0x8f,0x1e, 0xc2,0x30,0xc4,0xe1,0xe1,0xe1,0xff,0xba,0x8a,0x5e,0x2e,0xdb,0x85,0x7a,0x7d,0xbf, 0x23,0x7,0x3b,0xc8,0xe7,0x7f,0x89,0xe3,0x18,0xed,0x76,0x7b,0xeb,0x79,0xd,0xc5, 0x4a,0x26,0xc6,0x18,0x66,0xb3,0x59,0x2e,0xc7,0xad,0xb5,0x6,0xe1,0x2,0x9f,0x3f, 0x3a,0xc2,0x60,0x34,0x31,0x42,0x7a,0x14,0xd9,0x88,0x4f,0x9a,0x85,0xe7,0x2,0x8c, 0x2d,0x72,0xd,0x8c,0x68,0x34,0x3d,0xf,0x4d,0x3f,0x0,0x1,0x30,0x9f,0xcf,0x11, 0x59,0x60,0x60,0xa2,0x10,0xa9,0xd0,0xe7,0x32,0xc4,0x65,0x20,0xb8,0x2e,0x8d,0xf4, 0x55,0xe6,0x2d,0x36,0xf5,0x3e,0x7c,0x1b,0xb7,0xa2,0xa1,0x2d,0x4e,0x69,0x2b,0x76, 0x23,0x2f,0xf6,0x99,0xac,0x1d,0x40,0xb4,0xca,0xc0,0x6f,0x1b,0xd,0x3c,0x8f,0xfc, 0x8,0x41,0x79,0xea,0x1c,0x83,0x84,0x46,0x2c,0x8d,0x70,0xdf,0x52,0xc2,0xbe,0xdc, 0xb9,0x5c,0xca,0xbb,0x8,0xa,0x70,0x4e,0x97,0xe8,0x58,0x4e,0xd9,0xa2,0x19,0x2e, 0xeb,0xf1,0x31,0xb3,0x4c,0x8c,0xd3,0xf4,0xc5,0xd9,0xb9,0x29,0xea,0xa0,0x3c,0xcf, 0xc5,0xcd,0x66,0xb3,0x8c,0x92,0xbb,0x5e,0xbe,0x2b,0x4d,0x53,0xb4,0xb3,0xca,0xbf, 0x38,0x8e,0x7f,0xb1,0x2a,0x5a,0xa8,0x41,0xa1,0x6,0x87,0xe2,0xc9,0xa3,0x8,0x21, 0x24,0x49,0x92,0x5f,0xd8,0xc4,0x95,0xcd,0x35,0x5c,0x87,0x56,0x32,0x61,0xef,0x74, 0xe9,0xff,0xd3,0x79,0x8c,0xc3,0xcf,0x3e,0x7,0x77,0x44,0xae,0xb6,0xca,0x18,0x83, 0xe7,0x39,0x60,0x84,0xe6,0xba,0x33,0xae,0xeb,0x82,0x67,0x3a,0x34,0xed,0x46,0xd3, 0xcc,0x7a,0x48,0x12,0x84,0x51,0x9c,0xf5,0x53,0xf0,0xe7,0xa2,0x7c,0xb6,0x89,0x22, 0xae,0x5b,0x8a,0xfa,0xbc,0x86,0x66,0xd3,0x7b,0x3d,0x9f,0x67,0xfe,0x87,0xde,0xb6, 0xf7,0xf6,0xb5,0x26,0x4b,0x51,0x44,0x35,0x40,0x14,0xa6,0x6a,0xaf,0x29,0xcd,0xdd, 0x24,0xea,0xf7,0x3c,0x95,0x4d,0x9b,0x7e,0x9b,0x62,0xb4,0x21,0xa5,0x46,0x94,0x4a, 0xc4,0x71,0xbc,0xa0,0xca,0xf4,0xe2,0xb2,0x23,0x7a,0x79,0xd6,0x82,0xce,0x8e,0x95, 0xcb,0x5,0x18,0x5b,0x76,0x54,0x4,0xe3,0x59,0xd2,0x9a,0xe5,0xd7,0x84,0x9d,0x7, 0x31,0xf,0x23,0x9c,0x5e,0xe,0xf2,0x8e,0x67,0x5b,0xda,0x9a,0x24,0xc9,0x56,0x39, 0x87,0xe5,0x86,0x54,0xe3,0xc0,0x75,0x3a,0x1d,0x4c,0x26,0x13,0x0,0x68,0x94,0x1, 0xa1,0x48,0x27,0xd5,0xd4,0x52,0xd,0xe,0x76,0x35,0xc6,0xe3,0x31,0x3a,0x9d,0xe, 0x3c,0xcf,0x5b,0x2a,0x41,0xdd,0x6,0x1c,0x6c,0x45,0x45,0x14,0x45,0x79,0x25,0x93, 0xe3,0x38,0xf8,0xf4,0xc1,0x43,0x8c,0x26,0x33,0x38,0x8e,0x57,0xe8,0x86,0xa6,0x79, 0x85,0x92,0xc3,0x5,0x28,0x5,0x90,0x49,0x1d,0x37,0x3,0x1f,0x41,0x10,0x98,0x6a, 0xa7,0x30,0x5a,0x94,0xd0,0x62,0x59,0x37,0x86,0x10,0xfd,0x5c,0xf9,0x82,0x55,0x40, 0xb1,0xed,0x75,0xf0,0x3c,0xf9,0x89,0x75,0xbc,0xf6,0xf7,0xe9,0xfa,0xb3,0xd3,0xd2, 0xca,0x5d,0xbc,0xcb,0xc2,0x85,0xab,0x87,0x3a,0x5f,0x7,0x70,0x37,0x1d,0xf3,0xeb, 0x4e,0xd6,0x2b,0xce,0x9e,0x2e,0x56,0x36,0xcd,0xe3,0x8,0x51,0x9a,0x2c,0x80,0xa0, 0x9c,0xa0,0x27,0x8b,0xa6,0x39,0x68,0x65,0xa6,0x18,0x66,0x7d,0x3c,0x20,0x4,0x2c, 0x33,0xfa,0xb6,0xc9,0x8d,0xb,0xba,0xd4,0x8,0xca,0x5c,0xf,0x5f,0x9c,0x9d,0x21, 0x4c,0x52,0x53,0xb0,0x1,0x53,0x18,0x62,0x35,0x97,0xb6,0x5d,0xc5,0xfe,0xa4,0x56, 0xab,0x5,0xc7,0x71,0x70,0x78,0x78,0x38,0x5e,0x71,0xc,0x6b,0x50,0xf8,0xe,0xaf, 0x6b,0x77,0x48,0x3f,0x78,0xf0,0x60,0x7c,0x79,0x79,0xb9,0x75,0x22,0xba,0xec,0x99, 0x68,0xad,0x31,0x9b,0xcd,0x20,0xa5,0xcc,0x45,0xf3,0xe6,0xf3,0x39,0x3e,0x7b,0xf0, 0x10,0xc2,0xf5,0xc0,0x1d,0x61,0x1a,0xd9,0xb2,0x69,0x6e,0x8c,0xd0,0xac,0x74,0x95, 0x81,0x71,0xe,0xd,0x9,0xc7,0xf1,0xf2,0x46,0x9f,0xf1,0x74,0x86,0x79,0x92,0x40, 0x50,0x33,0xd2,0x93,0x40,0x3,0x3a,0xab,0x76,0x21,0xa,0xc4,0x4c,0xf6,0x79,0xee, 0xae,0xda,0x4d,0xfa,0x50,0xcf,0x43,0x57,0x5d,0xe7,0x35,0xcf,0x53,0x19,0xf5,0x6d, 0x5c,0x9a,0x2,0x4a,0xab,0x95,0xfb,0x6a,0x3d,0x6c,0x4b,0x51,0x2e,0x80,0x77,0x11, 0x45,0x6c,0xf8,0x21,0xaf,0x75,0xc,0x9f,0xb7,0x9,0xf1,0xa,0x68,0x64,0xe0,0xa5, 0x15,0x41,0x9a,0x2a,0x44,0x24,0x81,0xcb,0xc5,0x2,0x8,0xec,0xef,0x5c,0x7e,0x3f, 0xd,0x8,0x21,0x90,0x6a,0x40,0xc5,0x9,0xac,0xd2,0x2b,0x23,0x14,0xbe,0x93,0xa9, 0x1e,0x6b,0x33,0xd7,0x41,0x29,0x5,0xd7,0xf,0x30,0x1d,0xe,0x31,0x18,0xc,0xe0, 0xde,0xe8,0x9b,0xef,0xa3,0x35,0xc2,0x30,0x84,0x9f,0x4,0xe0,0x94,0x6d,0x75,0x7e, 0x16,0xd5,0xc,0x3c,0xcf,0x43,0xa7,0xd3,0xb1,0x89,0x69,0x4f,0x6b,0x1d,0x16,0xc7, 0x1,0x97,0xff,0xd6,0xe6,0xf4,0xfb,0x1d,0x39,0xb0,0xe1,0x70,0x88,0x20,0x8,0x2c, 0x1f,0xb9,0x75,0xc2,0xcb,0x9e,0x3b,0xb6,0xe,0xdb,0xe,0xf1,0x61,0x8c,0xe1,0xf8, 0xf8,0x18,0xb3,0x59,0x8,0xc6,0x4d,0xa2,0xcd,0x56,0x33,0x59,0x11,0x32,0xc6,0x9, 0x28,0x0,0x47,0x2c,0xe6,0x34,0xb8,0xae,0x8b,0x28,0x8a,0x30,0xb,0xe7,0xa0,0x4c, 0x2c,0x7b,0xeb,0xd4,0xc8,0x15,0x98,0x8b,0x55,0xad,0xcc,0x23,0x6c,0x9b,0x48,0xde, 0xa6,0x6b,0xf7,0x45,0xf3,0xff,0xe5,0xf7,0xfe,0x2a,0x13,0xde,0xdf,0x8c,0x68,0x81, 0xe4,0x7d,0x12,0x57,0x23,0xb6,0xab,0x91,0x44,0x59,0xc8,0xef,0x45,0x19,0xfc,0xe7, 0x6,0xb7,0x52,0xf7,0xb1,0xd6,0x3a,0x9f,0xb9,0x0,0x2c,0x66,0xa3,0xdb,0x89,0x83, 0xb,0xe1,0xd6,0xec,0x3c,0x55,0xcb,0x12,0x17,0x16,0x0,0x39,0xe7,0x79,0x70,0xc4, 0xb2,0x17,0x39,0x8e,0xb3,0x90,0x8d,0xc9,0x2a,0xf9,0x8,0x21,0xe0,0x8e,0xc0,0x70, 0x38,0xcc,0xa9,0x24,0x42,0x4c,0x47,0x75,0x18,0x86,0x1b,0xaf,0x4d,0x1b,0x91,0x59, 0x2d,0x34,0x9b,0x98,0xf6,0x7d,0x1f,0x0,0xf0,0xe8,0xd1,0xa3,0xff,0xab,0x24,0xd1, 0x5f,0x47,0x10,0xdf,0x97,0xc8,0xa1,0xe0,0x5,0xd0,0xec,0xf7,0xd6,0x45,0x7e,0x91, 0x10,0x42,0x1e,0x3d,0x7a,0xf4,0x7f,0x9f,0x9c,0x9c,0xe0,0xe0,0xe0,0x60,0xa9,0xb1, 0xcd,0x9e,0xc8,0xc5,0x93,0xbd,0x7c,0x31,0x53,0xa2,0xa1,0xb4,0xe9,0x7e,0xd6,0x52, 0x81,0x13,0x93,0x38,0x9e,0x4b,0xe0,0x83,0x87,0xc7,0x60,0xc2,0x88,0x8b,0x39,0x5c, 0xc0,0x73,0x4,0x18,0x1,0x4,0x33,0x65,0x7b,0x8c,0xa,0x30,0xe1,0x82,0x13,0xe, 0xc1,0x8,0xda,0x81,0x19,0x9,0x3a,0x9c,0x8c,0xc1,0x5d,0xc7,0xe8,0x9a,0xb1,0xe5, 0xf3,0x36,0x4f,0x80,0x13,0x52,0xc5,0x3c,0x6c,0xb2,0x54,0x95,0x9e,0xeb,0x3a,0x50, 0xf8,0x32,0xc6,0x5a,0x6b,0xd,0x4d,0x49,0x89,0x4f,0x2f,0x7c,0x20,0x59,0xf1,0xfd, 0xbf,0x83,0xd1,0x44,0x75,0x9f,0x2,0xb9,0x12,0x1a,0x54,0xd,0xd3,0x31,0x3d,0x7, 0xeb,0x23,0xad,0xaf,0x23,0x12,0xcb,0x69,0xcd,0x82,0x74,0xb7,0xb6,0xd1,0x81,0x2, 0xe6,0x71,0x2,0xad,0x9,0x84,0x60,0x20,0x2c,0x93,0x4,0xc7,0x55,0xa0,0xa3,0x4, 0x10,0x4,0x8,0x4,0xc3,0x2c,0x56,0x0,0x1,0x28,0xa7,0xd0,0x12,0xf0,0x84,0x83, 0x54,0xa8,0x5c,0xb6,0x43,0x6a,0x40,0x39,0xe,0xc6,0x93,0x9,0x26,0x61,0x4,0x27, 0x6b,0x1e,0x85,0x4e,0x11,0xcf,0x67,0x8,0x3c,0x7f,0x9,0xb8,0xca,0x1a,0x56,0x45, 0x5a,0xc9,0x1e,0x4f,0x5b,0x74,0x72,0x76,0x76,0x86,0xd1,0x68,0xf4,0x97,0x35,0x18, 0x7c,0x4f,0x23,0x87,0xc2,0xac,0x6,0x55,0xb8,0xad,0x8b,0x27,0x42,0x14,0x45,0x7f, 0x69,0xcb,0xe7,0x6c,0xe2,0xaa,0x8,0xc,0x55,0xa0,0x50,0xe6,0x6f,0xc3,0xf9,0x1c, 0x3a,0x1b,0xf3,0x8,0x4a,0xf0,0xec,0xd9,0x17,0x18,0x8d,0x46,0x70,0x85,0xb3,0xc4, 0xa1,0x16,0x3b,0xa2,0x8d,0x7,0x45,0xa1,0xb5,0xcc,0x66,0x46,0x7,0x18,0x4e,0xc6, 0x4b,0x2,0x63,0xdf,0x25,0x83,0x58,0x15,0x29,0xd4,0xb,0x5b,0x78,0xbe,0xdb,0x2b, 0xdf,0x7e,0xdd,0xe3,0x5c,0x8b,0x54,0x98,0x52,0xa,0x51,0x9a,0xe4,0x25,0xe0,0xeb, 0x7e,0x73,0x5b,0xc6,0x9a,0xcb,0x6a,0x14,0xba,0xd5,0xb9,0xa0,0x79,0xe4,0x60,0xa5, 0xbd,0xb9,0xeb,0xe0,0xfc,0xfc,0xfc,0x8a,0x91,0xb7,0x23,0x77,0xcb,0xd7,0x68,0xb9, 0xeb,0xbb,0x18,0xc1,0xd9,0xdb,0xad,0x56,0xb,0x51,0x14,0x1,0x40,0x60,0x1d,0xc9, 0x32,0xdd,0x5c,0x9f,0x9d,0xdf,0xe1,0xc8,0xa1,0x18,0x3d,0x14,0x7f,0xf0,0x2,0x38, 0xfc,0xff,0xec,0xbd,0x79,0x8c,0x64,0xc9,0x79,0x27,0xf6,0x8b,0x88,0xf7,0x5e,0x5e, 0x75,0x77,0x57,0x57,0x77,0xf5,0x35,0x3d,0x3d,0xd3,0x33,0x43,0xe,0x67,0x86,0x33, 0x22,0x47,0xd2,0x4a,0x1e,0x12,0x90,0xd6,0xd2,0x1a,0x5a,0xad,0x28,0x83,0x32,0x24, 0xc0,0xb2,0x20,0x3,0x16,0xc,0x78,0xd,0xb,0x36,0x4,0x1f,0x58,0x40,0x7f,0x18, 0x96,0xd7,0xb,0x43,0xf0,0x1a,0xb0,0x28,0x11,0xd0,0x41,0x61,0x17,0x1e,0x18,0xd2, 0x92,0xc2,0x5a,0x4b,0x99,0xc2,0x2e,0xc5,0xa5,0x6e,0x8a,0x1c,0x71,0x24,0x6a,0x44, 0xcd,0x4c,0x4f,0xdf,0xdd,0x55,0x5d,0x55,0x59,0x79,0xbe,0x23,0x22,0xfc,0x47,0xbc, 0x2f,0x32,0xde,0xcb,0x97,0x57,0x1d,0xdd,0x55,0xd5,0x2f,0x6,0x39,0x5d,0x57,0x66, 0xbe,0xcc,0xfc,0x22,0x7e,0xdf,0xf1,0xfb,0x7e,0x5f,0xd0,0x6c,0x36,0xb1,0xb2,0xb2, 0x62,0xc6,0x72,0x3a,0x9b,0x6a,0x9a,0xfe,0x0,0xce,0x19,0xa2,0x30,0x42,0x1c,0x87, 0x56,0xb4,0x4c,0x2a,0xe0,0xfd,0x1b,0x1f,0x20,0x49,0x12,0xcc,0x37,0xe6,0x6,0x6, 0xee,0xdc,0xa8,0xf8,0x26,0x18,0x83,0xe7,0x9,0xcc,0xcd,0xcd,0x21,0xd1,0xa,0xbd, 0x5e,0x8,0xcf,0xf7,0x4d,0x1f,0x3,0x67,0x93,0x3b,0x80,0xf7,0xb9,0xef,0xf,0xdb, 0xfe,0x99,0xd2,0x28,0x77,0xd8,0xec,0x29,0xa1,0xe1,0x3a,0x4,0xb7,0x1f,0xf6,0x24, 0x35,0xdd,0x69,0xa5,0x4a,0xe,0xea,0xfa,0x79,0x3a,0x19,0xce,0xce,0xa6,0x86,0x46, 0x80,0x0,0xc2,0x1b,0x95,0xca,0x54,0x60,0x8c,0xdb,0xc3,0x3f,0x8a,0x22,0xf3,0x18, 0xdc,0x48,0x7d,0x57,0xa4,0x8f,0x58,0x18,0x80,0x49,0x94,0x84,0x2f,0x3c,0x48,0xcf, 0x43,0xab,0xdd,0x46,0xb7,0xdb,0xc5,0xfc,0x5c,0xdd,0xca,0x87,0xf7,0x7a,0x3d,0x54, 0x2a,0x95,0xc1,0xb5,0x38,0xa2,0x98,0xf4,0x3a,0x8b,0x94,0x5c,0x19,0x63,0x58,0x58, 0x58,0xc0,0x83,0x7,0xf,0x70,0xeb,0xd6,0xad,0x16,0xa,0x1a,0x4d,0xca,0x48,0xe2, 0x9,0x0,0x87,0xfc,0x7,0xce,0x18,0xe3,0xa9,0x91,0xe8,0xbb,0x77,0xef,0xde,0xbb, 0x75,0xeb,0x16,0x16,0x17,0x17,0x33,0x39,0xca,0xfc,0x70,0x91,0x51,0x32,0xcb,0x1a, 0x3c,0xa3,0x37,0x2f,0xbc,0x0,0x9b,0xdb,0x3b,0xd8,0xdc,0xd8,0x42,0xa3,0x56,0x77, 0x0,0x81,0x5b,0xaa,0x1e,0x79,0x47,0xa6,0x17,0x42,0xa2,0xd1,0x30,0xec,0x89,0x9d, 0x9d,0x9d,0xd4,0xa8,0x19,0x38,0x67,0x69,0xea,0x68,0xb6,0xba,0xc0,0x49,0x88,0x2e, 0xca,0x55,0x7c,0x8,0x33,0x96,0x25,0x21,0x1c,0x34,0x28,0xed,0xe5,0x71,0x85,0xb3, 0x4f,0x68,0xcf,0x84,0x89,0x84,0xe6,0x31,0x6a,0xbc,0x62,0x59,0x75,0x45,0x0,0xc1, 0xb9,0x49,0x41,0xc5,0xb1,0xa1,0xc7,0xf2,0xb4,0xd6,0xe0,0xfb,0x3e,0x3c,0x3f,0x82, 0x4a,0x27,0xc9,0xf9,0xbe,0x8f,0x38,0xf6,0x21,0x44,0x8c,0x87,0x3b,0x4d,0xcc,0xcf, 0xcf,0x43,0xab,0x18,0x82,0xfb,0x8,0xc3,0x10,0x71,0x1c,0xdb,0xbe,0x22,0xb7,0xef, 0x68,0x5c,0x84,0xa6,0x94,0x42,0xa5,0x52,0x41,0xbd,0x5e,0xc7,0xf6,0xf6,0x36,0x2e, 0x5c,0xb8,0x20,0x34,0xa9,0x5b,0x96,0xeb,0xc9,0x48,0x2b,0x8d,0xa,0x13,0xc9,0x2b, 0xd8,0xda,0xda,0x5a,0xaa,0xd5,0x6a,0x66,0xd8,0x79,0xa1,0xb4,0xc1,0x68,0xcf,0x8b, 0x66,0xdd,0x46,0xfd,0x10,0xd0,0xe9,0x88,0x4e,0xc1,0xf1,0xc1,0x8d,0x9b,0x48,0x92, 0xc4,0x52,0x57,0xdd,0xa9,0x57,0xae,0x4c,0x0,0x79,0x4e,0x8d,0x46,0x1d,0x61,0x18, 0x22,0x8a,0x22,0xf8,0x5e,0x30,0x8,0x7d,0x81,0x47,0xd6,0xad,0x7c,0xd8,0x0,0x70, 0x9c,0xaf,0xff,0x71,0xbd,0x37,0x45,0x94,0xd7,0x22,0xd6,0xd0,0xb8,0xdb,0x5e,0xd2, 0x5b,0xfb,0x5,0x7a,0xad,0x4d,0xc1,0x98,0x28,0xae,0xe3,0x9e,0x2b,0x10,0x9e,0x95, 0x3d,0xa7,0x41,0x41,0x42,0x8,0xfb,0x73,0x5f,0x38,0xfb,0xa7,0x5a,0xc1,0x6e,0xab, 0x8d,0xbe,0x1d,0x6e,0x65,0xde,0x17,0x92,0xaa,0x21,0xfd,0xb3,0x22,0x29,0x6f,0x8a, 0xc2,0xf2,0xe9,0xb0,0xa5,0xa5,0x25,0xea,0x4d,0xaa,0xbb,0x59,0x86,0x32,0xa5,0xf4, 0x84,0x80,0x43,0x41,0x78,0x48,0x29,0xa6,0x2a,0xe9,0xc4,0xbb,0x61,0xe8,0xb8,0x70, 0x3f,0xbf,0xfa,0xfd,0xc8,0x1a,0xa1,0xe7,0x79,0xe8,0x74,0xfb,0xb8,0x75,0xe7,0x1e, 0x82,0x6a,0xcd,0xb2,0x32,0x28,0x6a,0xf0,0x45,0xa,0x10,0x3e,0xb7,0x5e,0xd6,0x5c, 0xa3,0xe,0x4f,0x8,0xb4,0x3b,0x1d,0x78,0x7e,0x60,0x47,0x24,0x9a,0xc3,0x41,0x9f, 0x88,0xc3,0xaf,0x5c,0xfb,0x7f,0xff,0x5c,0x16,0xd3,0xa3,0x88,0x52,0xa6,0x5,0xa, 0xa5,0x92,0x4c,0xfa,0x66,0x10,0x75,0xb3,0x94,0xc1,0xa4,0x33,0xe2,0x89,0x45,0xc3, 0x91,0x8c,0x3a,0x80,0xb6,0x29,0x2a,0xce,0x59,0x26,0xf5,0x4a,0xf4,0x6f,0x6,0x81, 0x58,0x49,0xb4,0x5a,0x2d,0x70,0xe1,0x5b,0x40,0xa0,0x46,0xbc,0x49,0x3,0xad,0xdc, 0x7a,0x7,0xfd,0xae,0xd1,0x68,0x80,0x73,0x8e,0x9b,0x37,0x6f,0xee,0x96,0x29,0xa5, 0x27,0xc,0x1c,0x8a,0x3c,0x0,0xfa,0xe0,0xef,0xdc,0xb9,0xd3,0x63,0x8c,0x61,0x6e, 0x6e,0x6e,0xa8,0x29,0x6b,0x52,0xaf,0x3,0x79,0x73,0x44,0x7b,0x25,0xda,0xdd,0xdd, 0xbb,0xf7,0xd0,0xb,0x23,0x13,0x35,0x70,0x1,0x21,0xd8,0xa0,0xa1,0x87,0x6,0xaf, 0x53,0xe1,0xcd,0xf3,0x50,0xab,0xd5,0x10,0x86,0x61,0x66,0xf4,0xe8,0x71,0xf2,0x6c, 0xcb,0x28,0xe0,0xf0,0xf,0xea,0x3c,0xc8,0xce,0x42,0x73,0x7d,0x94,0xd7,0x69,0xb4, 0xbf,0xb8,0xf5,0xbe,0xa4,0x82,0xa5,0xb8,0x8e,0x62,0x97,0x6b,0x6d,0x28,0xac,0x3e, 0x17,0xb6,0x49,0x90,0x5b,0xa7,0xca,0x1b,0xc8,0xa6,0x7b,0x2,0xdc,0x13,0x8,0xfc, 0x2a,0x76,0x9a,0xbb,0x36,0x42,0xa0,0x1a,0x43,0x14,0x45,0x99,0xd4,0x56,0xde,0xc1, 0x1b,0x35,0xb1,0xd0,0xf7,0x7d,0xcc,0xcf,0xcf,0x63,0x7b,0x7b,0x1b,0x8c,0x31,0xdf, 0x5,0x85,0x32,0x7a,0x38,0xe1,0xe0,0x90,0xf7,0x0,0x98,0xb3,0x9a,0xcd,0x26,0x82, 0x20,0x40,0xb5,0x5a,0xcd,0xe4,0x22,0xc7,0xf5,0x38,0xe4,0xc3,0x7c,0x62,0x66,0xf8, 0xdc,0x84,0xb4,0x77,0xee,0xdf,0x3,0x13,0x1c,0x8c,0x7b,0x19,0x96,0x12,0x81,0x3, 0x31,0x25,0x7c,0xdf,0x47,0x2d,0x30,0xd3,0xdf,0xfa,0xfd,0xbe,0xed,0x83,0x20,0xaf, 0x6b,0xda,0x81,0xea,0xe5,0x7a,0x32,0xc0,0x61,0x38,0xf5,0x73,0x34,0xce,0x2d,0xd7, 0xb,0xe7,0x4c,0xa4,0x8d,0x6f,0x3,0xf,0x3d,0x8e,0xe3,0x21,0x47,0x2b,0x7f,0x68, 0x73,0xe,0xbb,0x37,0xe8,0x26,0x44,0x9a,0x76,0x4d,0x9b,0x45,0x1,0xa0,0x5a,0xad, 0x67,0xe6,0x4a,0xbb,0xf2,0x19,0x34,0x8a,0x34,0x3f,0x90,0xcb,0xdd,0xaf,0x6e,0x4a, 0xc9,0xd5,0x81,0x9a,0x9f,0x9f,0x47,0xb7,0xdb,0x5,0x80,0xa0,0x4,0x85,0x93,0xbf, 0xbc,0x2,0xf,0x38,0xdf,0xfd,0xe8,0xef,0xee,0xee,0xe2,0xcc,0x99,0x33,0x85,0xa3, 0x5,0x8b,0xa6,0x5c,0xb9,0x6c,0x7,0xcf,0xf3,0xd0,0x6c,0x36,0x91,0x48,0x9,0x4f, 0x70,0x48,0xc6,0xb0,0xbd,0xdb,0xc6,0x83,0x8d,0x87,0x8,0xaa,0xf5,0x94,0x8e,0xc7, 0xcc,0xc8,0xcf,0x34,0x77,0xca,0x5,0x50,0xf1,0x8d,0xc1,0x43,0x2a,0xd4,0xeb,0x75, 0x44,0xb1,0x2,0xe3,0x2,0x4a,0x69,0x87,0x92,0x67,0x94,0x3b,0xa7,0xd1,0x8e,0x29, 0x53,0x48,0x4f,0x46,0x5a,0xa9,0xd8,0x53,0x7,0x4,0x2f,0x96,0x40,0xb1,0x5e,0xf2, 0xa4,0xc7,0x9f,0x1,0x9c,0x8a,0x27,0xbe,0xd,0xbe,0x27,0xfd,0x24,0xa7,0xb0,0x7, 0xed,0x5,0xe8,0x46,0x31,0x94,0xd6,0xa8,0x56,0xfc,0x34,0x55,0x9a,0x76,0x2d,0x43, 0x3,0x4c,0x43,0x69,0x93,0x36,0x32,0x92,0xe0,0xe9,0x44,0x43,0xa5,0x21,0x2,0x1f, 0x5e,0x12,0x23,0x4e,0x19,0x4b,0xa1,0x4a,0xe0,0x5,0x3e,0xa2,0x98,0x63,0xab,0x49, 0xf2,0xf7,0xca,0xa6,0x96,0x68,0x6e,0x43,0x9e,0x3c,0x92,0x9f,0x37,0x9d,0xe9,0x53, 0xe2,0xdc,0x8,0x62,0x7a,0x1e,0x6e,0xdf,0xbe,0xdd,0x6,0xc0,0x5c,0xca,0x7b,0x69, 0x81,0x27,0x38,0x72,0xc8,0x47,0x10,0xf4,0xef,0xbb,0xef,0xbe,0xfb,0xcf,0x0,0xa0, 0x5e,0xaf,0x67,0x72,0x92,0xee,0xe4,0xaf,0xfc,0xe1,0xec,0x2,0x46,0x92,0x24,0x46, 0x2a,0x23,0x35,0x46,0x21,0x7c,0xdc,0xbf,0xbf,0x1,0x29,0x25,0xfc,0x54,0x4c,0xcf, 0xce,0x6b,0x48,0x15,0x57,0xdd,0xd4,0x52,0xb5,0x5a,0xb5,0x5,0x6d,0x32,0xd2,0x3c, 0xf,0xfb,0xb8,0xa5,0x95,0xca,0x54,0xd3,0xa3,0x7f,0xff,0x1f,0xe5,0xf3,0x17,0x47, 0x30,0x93,0xc0,0x45,0xd9,0x2,0x75,0x92,0x24,0x76,0x6b,0xe6,0x7b,0xf,0x88,0xa0, 0x91,0x7,0x24,0x21,0x4,0x7c,0x4e,0x69,0xd9,0xc1,0xdf,0xf5,0xfb,0x7d,0x44,0x32, 0xc9,0x44,0x2e,0xe6,0xf1,0x67,0x73,0x52,0x88,0xb5,0x44,0x6c,0xc1,0x32,0x6a,0x78, 0x2,0x23,0x87,0xfc,0x92,0x52,0xfe,0x63,0xdf,0x37,0x7a,0x47,0x14,0x76,0xe6,0x59, 0xe,0xe3,0xc6,0xe,0xe,0xe4,0x2,0xc,0xff,0x3c,0x4e,0x14,0x6e,0xdf,0xb9,0x33, 0xa0,0xa9,0x8a,0x6c,0x5a,0x89,0xea,0x12,0x64,0xdc,0x66,0x36,0xb5,0xb4,0xde,0x8e, 0xb,0x6,0xf9,0xe6,0x9d,0x93,0xe8,0xf9,0x96,0xeb,0x60,0xd3,0x4e,0xa3,0xe,0x70, 0xec,0x51,0xfb,0xea,0xa0,0x6d,0x40,0x29,0x85,0x38,0x51,0xf0,0xbc,0xac,0x17,0x3f, 0xa8,0x55,0xa4,0xce,0x14,0x12,0xc4,0x4a,0x66,0xe4,0x39,0x84,0x10,0xf0,0x34,0x83, 0x90,0x89,0x89,0xc2,0x7d,0x1f,0xbd,0x6e,0x17,0xbd,0x5e,0x88,0xea,0x7c,0xdd,0x3e, 0x4e,0x18,0x86,0x76,0x16,0xbb,0xb,0x40,0x93,0xde,0x3f,0xc3,0x18,0x6c,0x60,0x63, 0x63,0x3,0x0,0x2,0xc6,0x58,0x54,0x6a,0x2b,0x3d,0x41,0x91,0x83,0x9b,0x4b,0x64, 0x8c,0x79,0xad,0x56,0xb,0x8d,0x46,0x3,0xbe,0xef,0xf,0xcd,0x0,0x1e,0x55,0x63, 0x70,0x37,0x23,0x81,0x83,0x52,0x46,0x2d,0x72,0x7b,0xb7,0x85,0xed,0xdd,0x5d,0x54, 0xab,0x55,0x7b,0xd8,0xbb,0xb4,0x55,0xcf,0xe7,0xf0,0x18,0x77,0x40,0xc2,0x44,0x1f, 0x6e,0xc4,0x90,0xf7,0x9a,0xca,0x55,0xae,0xc7,0x5,0x38,0x7,0xd5,0x59,0x6d,0xbb, 0xa7,0x59,0x5a,0x38,0x8e,0x25,0xa4,0x36,0xd3,0xdd,0x48,0x74,0x30,0xab,0x36,0x4c, 0xc0,0xa1,0x21,0xc0,0x6,0x64,0xf,0xae,0xad,0xec,0x8c,0xe9,0x69,0x0,0xda,0xa9, 0x3c,0x3e,0xdd,0xc7,0x95,0xf,0x9f,0x45,0x97,0x8a,0x94,0x5a,0x1,0xe0,0xc6,0x8d, 0x1b,0x6f,0x96,0x16,0xf0,0x64,0x47,0xe,0xb5,0x38,0x8e,0xd1,0x68,0x34,0x32,0xf4, 0xb6,0x69,0xd4,0x28,0x5d,0x83,0x2,0x8c,0x36,0x11,0x17,0x2,0xf7,0xee,0x3f,0x40, 0x22,0x35,0x16,0x2a,0x15,0x78,0x9c,0x59,0x96,0x12,0x79,0x32,0x24,0x49,0xcc,0x39, 0xb7,0x1d,0x9d,0xd0,0x1a,0x42,0xf0,0xd4,0xb9,0xa3,0xd,0x92,0x4e,0xe2,0x4d,0x39, 0xdf,0xfb,0x6e,0x81,0x2e,0xd7,0x13,0x9d,0x92,0x3a,0x8,0xa0,0x38,0xa8,0x48,0x22, 0x56,0x1a,0x2a,0x8e,0x50,0x63,0x15,0xf8,0x1,0x87,0x56,0xa,0x2c,0x5,0x9,0xce, 0x34,0x20,0x4,0x3c,0x8f,0x23,0x56,0xe6,0x77,0x9c,0x33,0x48,0x69,0xf6,0x11,0x62, 0x18,0xa1,0x4a,0x1,0x78,0xda,0x4c,0x8d,0x6b,0xb7,0x3b,0x88,0xe3,0x25,0xdb,0x0, 0x47,0xfb,0xd2,0x1d,0xd4,0x35,0xcd,0x28,0x55,0x52,0x6a,0x4d,0x45,0x2f,0xff,0x61, 0x59,0x73,0x78,0x2,0xc1,0x81,0x3e,0xec,0x9b,0x37,0x6f,0xee,0xde,0xbd,0x7b,0x37, 0x4d,0xed,0xa8,0xc2,0x82,0x55,0x5e,0x78,0xcf,0xdd,0x28,0xc4,0xc0,0xe0,0x9c,0x83, 0x33,0x63,0x90,0xf7,0x37,0x1e,0x82,0xa7,0x92,0xc5,0x1e,0x17,0x8,0x3c,0x7f,0x40, 0x5b,0x15,0x40,0x20,0x3c,0x27,0x9a,0xe0,0x56,0x6a,0x39,0xaf,0x7,0x43,0x20,0xf5, 0xa4,0x48,0x5a,0x97,0x6b,0xdf,0xa7,0xf7,0xa1,0xdb,0xc8,0x7e,0x6c,0x51,0x2b,0x5, 0x45,0xa9,0x25,0xad,0xa1,0x62,0x5,0xce,0x8d,0x1e,0x12,0x4b,0x9d,0x2b,0x38,0x29, 0x54,0xb3,0x67,0x24,0xa4,0x52,0x0,0x6,0xa4,0xc,0x8f,0x71,0x28,0x36,0x50,0x81, 0xf5,0x2a,0x1,0x7a,0xbd,0x1e,0xfa,0xfd,0xbe,0x1d,0xb3,0xb,0x98,0x69,0x6f,0x54, 0xe3,0x9b,0xf6,0x6c,0xa7,0x88,0x85,0x46,0x93,0xba,0x22,0x9d,0xa5,0x81,0x3d,0x21, 0x69,0x25,0x4a,0x2d,0x35,0x9b,0x4d,0xeb,0x29,0x50,0x4,0xe0,0x82,0x44,0x51,0x6a, 0x29,0xf,0xe,0xf4,0xb5,0xcf,0x5,0x9a,0xcd,0x16,0x9a,0xad,0x36,0x2a,0x41,0xd, 0x9c,0x7b,0x19,0xe1,0x30,0x2e,0xb2,0x34,0x3d,0x32,0xc4,0xfc,0xe0,0x94,0x51,0x93, 0xdb,0xca,0x55,0xae,0xbd,0x46,0x7,0x7,0x4d,0x1e,0xd8,0xcb,0x14,0xc0,0x6c,0xf3, 0x9e,0x51,0x70,0x4d,0x12,0x95,0x99,0x3,0x6d,0x1,0x48,0xc3,0x3a,0x54,0x6e,0x44, 0x4f,0xd4,0x6f,0xce,0x39,0xfc,0x74,0x4a,0x9c,0xef,0x55,0xc0,0x99,0x87,0x76,0xbb, 0x9d,0x49,0x4b,0xd,0xfa,0x2a,0x30,0xb5,0xdc,0x3e,0xed,0xc5,0x7a,0xbd,0x4e,0xfd, 0x12,0x8d,0x12,0x18,0x9e,0x40,0x70,0x0,0xc0,0x7b,0xbd,0x1e,0xaa,0xd5,0xaa,0xe5, 0x4f,0xbb,0x7,0xff,0xb8,0xb9,0x7,0x4,0x1a,0x2e,0x77,0x9b,0x31,0x86,0xad,0xe6, 0xe,0xa2,0x28,0x82,0x57,0x9,0x6,0x3a,0xf4,0x5c,0xf,0x8a,0xcf,0x69,0x44,0x41, 0xdf,0xe7,0x3d,0x31,0xda,0x0,0xf9,0x88,0xa1,0x4,0x87,0x72,0x3d,0xca,0x94,0xd2, 0x61,0x30,0xa3,0xf2,0x91,0xb1,0x10,0x9e,0x15,0xe8,0x73,0x7f,0x9f,0x2f,0x40,0xe7, 0x6b,0x71,0x42,0x18,0xe2,0x87,0xfb,0x3b,0xe1,0x7b,0xe8,0xf7,0xfb,0x19,0x59,0x91, 0x24,0x49,0xa,0x47,0xaf,0x8e,0xbb,0x3e,0x2,0x93,0x46,0xa3,0x1,0xa5,0x14,0xee, 0xdc,0xb9,0xb3,0x5b,0x5a,0xd0,0x93,0x9,0xe,0x73,0x49,0x92,0x58,0x43,0xc8,0x6f, 0xa6,0x51,0x3d,0xe,0x0,0x32,0x3,0x43,0x28,0xdc,0x8d,0xe1,0xe3,0xce,0xdd,0x7b, 0xf0,0x3c,0x8e,0xc0,0x4b,0x65,0x88,0x99,0x67,0x86,0xfa,0x78,0x26,0x1c,0x26,0x23, 0x1f,0x14,0xd3,0xc,0x8b,0xc4,0xa4,0xa5,0x18,0xb4,0x52,0x40,0x2a,0x1d,0x90,0xaa, 0xfc,0x83,0x51,0xca,0xc0,0xf9,0xbe,0xbc,0x95,0xb7,0xfc,0xed,0xd1,0x64,0xae,0xf6, 0xa9,0xb9,0x4,0x33,0xc3,0xc1,0x94,0xd3,0xcc,0xfe,0x92,0x60,0xe8,0x84,0x9,0x94, 0x66,0x50,0xb6,0xe9,0x53,0x2,0x4c,0x21,0x10,0x3c,0xbd,0x8f,0x99,0x88,0x47,0xb3, 0x2f,0x3c,0x2f,0xad,0xdf,0x9,0xf,0x1e,0x7,0x2a,0x82,0xa3,0x1d,0x4a,0x74,0x22, 0x39,0x18,0x8c,0x5,0x5,0x99,0xc,0xba,0xa5,0x27,0x2d,0xda,0xcb,0x5a,0x6b,0xdb, 0x10,0xdb,0x6a,0xb5,0xe8,0x4c,0xe0,0xe5,0x51,0xfa,0x4,0x81,0xc3,0x9d,0x3b,0x77, 0x76,0xe8,0x90,0x9e,0xd5,0x3,0xca,0x33,0x22,0x38,0xe7,0xe8,0x86,0x7d,0x74,0xbb, 0xdd,0x8c,0xa7,0xe3,0x79,0x1e,0xb8,0xc6,0x50,0xcf,0x84,0x31,0xd6,0x81,0x44,0x40, 0xb9,0xca,0x75,0x1c,0x22,0x90,0x7c,0xf,0xce,0x41,0xf4,0xbb,0xb8,0xea,0x2,0xae, 0x73,0xe6,0x4e,0x81,0x1b,0x44,0x16,0x18,0x4a,0xcb,0x52,0x14,0xce,0x18,0x43,0xbf, 0xdf,0xcf,0x46,0xf8,0x12,0x33,0x45,0xe,0x74,0x3d,0x34,0xcb,0xba,0xdb,0xed,0x82, 0x31,0xe6,0x69,0xad,0x55,0x69,0x1,0x4f,0x8,0x38,0x50,0xbd,0xc1,0xf7,0x7d,0x54, 0x2a,0x95,0xa9,0x73,0x92,0xee,0xf7,0x71,0x1c,0xf,0x9e,0x84,0x73,0xec,0xee,0xee, 0xa2,0xd5,0xed,0xc,0x72,0xa2,0xc2,0x43,0xe0,0x51,0xf1,0xd9,0xb7,0xfa,0x30,0x99, 0xc1,0x26,0x40,0xe1,0xd8,0xc8,0xb2,0x79,0xac,0x5c,0x8f,0x22,0x7d,0xb4,0x97,0xa8, 0x61,0xbf,0x6a,0xad,0xa3,0x94,0x66,0x93,0x24,0x31,0x8f,0xcf,0x6,0xcf,0x65,0xf6, 0xb,0xcf,0xdc,0x97,0xf3,0x1,0x48,0xb9,0xd,0xa6,0xcc,0x13,0xe8,0x76,0xbb,0x83, 0xb4,0x30,0xc4,0x50,0x6a,0x69,0xd2,0xfe,0xa6,0xeb,0xa1,0x6e,0xe9,0x5e,0xaf,0x7, 0x0,0x95,0xd2,0xba,0x4e,0xe6,0x1a,0x45,0x65,0x65,0xed,0x76,0x1b,0xf5,0x7a,0xdd, 0xc,0x39,0x4f,0xf3,0x9e,0xb3,0x84,0xd4,0x3a,0xc7,0x32,0xda,0xda,0xde,0x81,0x92, 0xe9,0xfc,0x5b,0xce,0xac,0x2,0xab,0x15,0xc,0xcb,0x78,0x3a,0xdc,0x2,0x43,0x51, 0xf7,0xf5,0xa3,0xdc,0xf4,0xe5,0x3a,0x79,0x0,0x71,0x54,0x19,0x6e,0xe3,0xea,0x68, 0x71,0x6c,0xf4,0xc4,0x98,0xd3,0xe3,0xc0,0xb9,0x86,0xcf,0x5,0xc2,0x34,0xcd,0xaa, 0xec,0x7e,0x43,0x26,0x6a,0xa0,0xc,0x40,0xaf,0xd7,0x87,0x84,0x86,0x9f,0x4a,0xe6, 0x4b,0xad,0x52,0x21,0xcb,0x0,0x93,0x46,0x34,0xe4,0x27,0xd9,0x39,0xb3,0xa5,0xff, 0x5,0x63,0xec,0x1f,0x95,0x85,0xe9,0x13,0x1e,0x39,0x38,0x2d,0xf1,0x41,0x1c,0xc7, 0xa8,0x56,0xab,0xd6,0x30,0x66,0x89,0x1e,0xdc,0xc2,0x17,0x19,0xf2,0xd6,0xd6,0xce, 0xd0,0x8c,0x6,0x57,0x2a,0xc3,0x0,0x4,0x4b,0xfb,0x19,0x58,0xa1,0x27,0x55,0x2, 0x41,0xb9,0xe,0xa,0x24,0x8e,0xb2,0x2d,0x15,0x81,0x44,0xac,0xa4,0x2d,0x8,0x53, 0x63,0x1c,0x45,0xe5,0x5e,0x9a,0xf2,0xe7,0x8c,0x41,0xe4,0x9c,0x2d,0x2,0x9,0xcf, 0xf3,0xac,0x2a,0xab,0xfb,0xb8,0xd3,0x32,0x96,0xe8,0x1c,0x20,0x75,0x57,0x1a,0xe3, 0x2b,0xa5,0xfc,0x87,0xa5,0x45,0x3d,0x41,0x91,0xc3,0xbb,0xef,0xbe,0xfb,0xbf,0x3e, 0x78,0xf0,0x0,0xd5,0x6a,0x75,0xa2,0x24,0x77,0x91,0x67,0xe6,0x86,0xab,0x8c,0x31, 0x84,0x61,0x88,0x9d,0xdd,0x36,0xfc,0x4a,0xd5,0xe6,0x4a,0x3d,0x27,0xf4,0x25,0x60, 0xb0,0xd1,0x43,0x41,0x5f,0x43,0x9,0xc,0xe5,0x3a,0xa8,0x43,0xf7,0x30,0xd2,0x4e, 0xc5,0x92,0xe1,0x7a,0x4f,0x8f,0x3f,0x4a,0x96,0x26,0x56,0x12,0xbe,0xf4,0x21,0x3c, 0x6,0x8d,0x1,0x2d,0xd5,0xf3,0x38,0x64,0x32,0x88,0xd4,0xa9,0x40,0xed,0x46,0xe5, 0x82,0x1b,0x26,0x60,0xaf,0x17,0xa2,0x51,0xab,0x40,0xab,0x1,0x6b,0x29,0x8,0xf4, 0x4c,0xaf,0x51,0x6b,0x6d,0xa3,0x91,0x56,0xab,0x55,0x36,0xc1,0x3d,0x9,0xe0,0x40, 0x1f,0x32,0xe7,0xfc,0x1f,0xf,0x74,0x8d,0xd4,0xd4,0x86,0xed,0xce,0xa6,0x75,0x29, 0x77,0xcd,0x66,0x13,0x51,0x14,0xa1,0x3e,0xd7,0xb0,0xf5,0x6,0xf3,0x2f,0xcf,0xc8, 0x73,0x1b,0x23,0xe6,0xd6,0xe8,0x4b,0x40,0x28,0xd7,0x61,0xa4,0x95,0xe,0x3,0x1c, 0x8a,0xee,0x3f,0xa,0x28,0xa6,0x79,0xac,0xfc,0xdf,0x73,0xce,0xa1,0x94,0x39,0xcc, 0x85,0x97,0x92,0x44,0x94,0x76,0x8,0x1c,0x32,0x13,0x29,0x50,0x13,0x9c,0xdb,0xf, 0xe1,0x79,0x9e,0xa9,0x13,0xe8,0x25,0xe8,0x74,0x22,0xa3,0x94,0x1a,0x4a,0x4f,0x37, 0xbf,0xdc,0x5c,0x83,0xb2,0xcf,0x51,0xa9,0x54,0xb0,0xbb,0xbb,0x4b,0x45,0xe9,0xa4, 0xb4,0xb0,0x13,0x9a,0x56,0x72,0x55,0x16,0x49,0x3,0x9e,0x98,0x4a,0xd3,0x6c,0x1c, 0xb7,0x29,0xce,0x65,0x29,0x31,0xc6,0xd0,0x6c,0x36,0xa1,0x19,0x79,0x31,0x5e,0x2a, 0xb0,0xa7,0x87,0x9a,0xde,0x44,0x1,0xd3,0xa3,0x5c,0xe5,0x3a,0xaa,0x69,0xa9,0x49, 0x76,0x3a,0x4b,0x91,0xba,0x88,0x8d,0x94,0x7f,0x3e,0x2a,0x4c,0xe7,0x75,0x91,0xdc, 0xe9,0x8c,0xcc,0xa1,0x7e,0xbb,0x11,0x39,0xa5,0x96,0x68,0xd8,0x8f,0x7b,0xd8,0x4f, 0x7b,0x7d,0xe4,0xf8,0x91,0xd3,0x17,0x4,0x1,0xd5,0x23,0x83,0xd2,0x2a,0x4e,0x70, 0xe4,0xe0,0xce,0x83,0xfd,0xb3,0x3f,0xfb,0x33,0x2b,0x95,0x3d,0x2b,0x3,0x43,0xaa, 0x34,0xec,0xe4,0x80,0x52,0x12,0x52,0x1,0x5b,0xad,0x1e,0x38,0x57,0xe9,0xdc,0x6, 0x43,0xbd,0x13,0x81,0xf,0x9d,0x16,0xce,0xcc,0x74,0x2b,0xe,0xc6,0x85,0xb9,0xb1, 0xac,0xe7,0x75,0x14,0x6,0xfa,0x78,0xa8,0x21,0x52,0x4d,0x30,0x4f,0x82,0xc1,0x83, 0xa7,0x2b,0xd0,0x1a,0x48,0xa0,0x20,0x45,0x4,0x4f,0x7a,0x99,0x82,0x67,0x5e,0x66, 0x44,0x1d,0xb2,0xf6,0xd3,0x41,0xa5,0x45,0x1e,0xd7,0xe3,0x1f,0xf6,0xeb,0x9b,0x6c, 0xb7,0x12,0x3e,0xaf,0x81,0xe9,0x4,0x4a,0x25,0x90,0xa2,0x6,0x89,0x10,0x1,0xd7, 0xe0,0x51,0x5,0x52,0xc4,0x63,0x23,0x81,0x83,0x7a,0x7d,0xe3,0x66,0x49,0xb,0x21, 0x90,0x68,0x8d,0x28,0x51,0x8,0x2,0x1f,0xcc,0x28,0x67,0xc0,0x4b,0x8b,0xce,0x49, 0x92,0xe4,0x40,0x8b,0x83,0xb1,0xb4,0x28,0xed,0xc5,0x60,0x9e,0x40,0xdc,0x8b,0xd1, 0x8b,0x62,0x34,0x2a,0x1e,0xb4,0x32,0x82,0x96,0x71,0x12,0xa2,0x1a,0x54,0x9c,0x21, 0x5a,0xda,0x19,0x63,0x9a,0x9d,0x2d,0xed,0x52,0xd5,0x49,0xc6,0xff,0xf6,0xed,0xdb, 0x7f,0x8,0xe0,0x95,0xf2,0x38,0x3d,0xe1,0x69,0x25,0xc6,0x58,0xe0,0xea,0xae,0x4c, 0x5b,0x73,0xb0,0x9e,0x85,0x32,0x1a,0x4a,0xc,0x46,0xe2,0x37,0x91,0x12,0xdd,0x6e, 0x37,0x13,0xde,0xba,0xb9,0xd0,0x21,0xb6,0x12,0x2b,0xa6,0xaa,0x3e,0xee,0x28,0x22, 0x51,0x11,0xfc,0x40,0x40,0xa3,0x82,0x24,0x66,0x48,0xb8,0x86,0xd6,0x9,0xaa,0x5e, 0x3,0x32,0xe,0xa0,0x58,0xc,0xe6,0x6,0xe7,0x1a,0x8f,0x56,0x41,0x76,0x9f,0x4f, 0xc1,0x1e,0xf3,0xe3,0x4f,0x94,0x8c,0x56,0x87,0xfb,0x1e,0x56,0xbc,0x18,0x91,0xec, 0x22,0x51,0x2,0x75,0xbf,0xa,0xa5,0xba,0x0,0x18,0x12,0x25,0x50,0x11,0x11,0x0, 0x76,0xa8,0x35,0x8b,0x59,0xc0,0xd5,0xa8,0x22,0x1b,0x35,0x56,0x7a,0xee,0x7c,0x1a, 0xd6,0xfd,0x19,0x63,0xcc,0x2a,0xb7,0x2,0x26,0x35,0x85,0x8a,0x37,0x14,0xe1,0x4c, 0x2,0x74,0xb7,0x16,0x42,0x91,0x48,0x3a,0xb3,0xe5,0xe5,0x31,0xef,0x4b,0x29,0xe7, 0x7d,0xdc,0xc1,0xc1,0xf9,0x10,0xab,0x49,0x92,0x58,0x45,0xd4,0x59,0xd5,0x26,0xad, 0xa,0x2b,0x63,0x0,0x13,0xe8,0x86,0x21,0xba,0xdd,0xee,0xd0,0x6c,0x68,0x8f,0xd, 0x68,0x76,0xd6,0x80,0x39,0x2b,0x14,0xd9,0x3b,0xa,0xe9,0x25,0x26,0x24,0x92,0x98, 0x43,0x8,0x8d,0x4a,0xe0,0x41,0x26,0x1c,0xc2,0xaf,0x20,0x89,0xbb,0x8,0x4,0x83, 0xa8,0x4,0x36,0xdc,0x26,0xa9,0x1,0x97,0xce,0xab,0xd9,0x84,0x59,0xdb,0x4a,0x4c, 0xb8,0x80,0x43,0xee,0x33,0xd2,0xe3,0x9b,0x5c,0x19,0x97,0x13,0xe,0x2f,0x76,0xa4, 0x23,0x9b,0x51,0xf7,0xb7,0xf7,0x93,0x55,0x88,0x40,0x42,0x40,0xa0,0xdf,0xea,0xa0, 0x26,0x12,0x68,0x5e,0x43,0x14,0x3,0x10,0x3d,0x70,0xd1,0x18,0x2a,0x14,0xcf,0x22, 0x5a,0x77,0x90,0x11,0xa2,0x94,0xd2,0xd6,0x1e,0xe8,0x7a,0x3c,0x6,0x48,0xa7,0x26, 0x90,0x49,0x31,0xf1,0x2c,0x6d,0x3c,0xc,0x43,0xa0,0x51,0xcd,0x80,0x4d,0xd1,0x3c, 0xe9,0x49,0xef,0x27,0xcd,0x60,0x49,0x47,0x87,0xe,0x1,0x41,0x7e,0xaa,0x64,0x79, 0xdc,0x1e,0xe3,0xc8,0x1,0x0,0xee,0xdd,0xbb,0xd7,0xfc,0xf6,0xb7,0xbf,0x6d,0x9b, 0xdf,0x66,0xf5,0x7c,0xcd,0x60,0x9f,0x81,0x9c,0x76,0xa7,0xd3,0x41,0x94,0x28,0xd4, 0x2a,0x1e,0xbc,0x54,0xc,0x4c,0x78,0xc3,0xd1,0x3,0x1,0x83,0xb,0x8,0x47,0xa9, 0xe6,0xa0,0xb5,0x46,0xe0,0x57,0xa0,0x74,0x88,0x24,0xec,0xc3,0xe7,0xf3,0x50,0xaa, 0xd,0x6f,0x41,0x23,0xd1,0x73,0xb8,0x71,0x77,0x17,0xcd,0x66,0x13,0x61,0x18,0x66, 0x46,0x30,0x4e,0x5f,0xcc,0x3f,0xf8,0x82,0xe8,0xc1,0xbe,0x7e,0x39,0xe1,0xf9,0xc5, 0x21,0x7f,0x2,0xea,0x50,0xc1,0x49,0x8,0x1,0x19,0xf7,0xb0,0x38,0xbf,0x84,0xf5, 0x33,0x2b,0xf0,0xeb,0x15,0xf4,0x3a,0x5d,0x28,0xcf,0x47,0x18,0x34,0x50,0x89,0x87, 0xf7,0x40,0x91,0xac,0xcc,0x61,0x82,0xc2,0x20,0x5d,0x39,0x98,0xa7,0xc2,0x9c,0xeb, 0x17,0x49,0x2,0xed,0x76,0x50,0x73,0x86,0x24,0x7,0x12,0x10,0x3c,0x53,0x77,0x0, 0x0,0x2d,0x55,0x86,0x78,0x52,0xb4,0xef,0xf3,0xb5,0x10,0xba,0x96,0x54,0xbe,0xdb, 0x9d,0x1,0x33,0x34,0x3e,0xb4,0x4,0x86,0x63,0xe,0xe,0xf4,0x1,0xf6,0xfb,0x7d, 0x78,0x9e,0x29,0x1a,0x93,0xc1,0x4c,0xc3,0x58,0x62,0x50,0xd0,0x7a,0x50,0xb0,0x2, 0x33,0x40,0x40,0x5d,0x99,0x82,0xf1,0x91,0xe9,0x24,0xce,0x50,0x28,0x3b,0x70,0x94, 0x56,0xc0,0x7c,0xf4,0xe2,0x5d,0x70,0x56,0x45,0x45,0xcc,0x43,0xa9,0xe,0x82,0x6, 0xf0,0xef,0xff,0xfa,0x1,0xfe,0xaf,0x5f,0xfb,0x1d,0x7c,0xf5,0xaf,0xb6,0xd0,0x6c, 0x36,0x87,0x6,0xba,0xd3,0x46,0x52,0x98,0x74,0x78,0x3e,0xde,0x9c,0xfc,0x64,0xcf, 0x9c,0x1f,0xea,0xf5,0x4f,0x7e,0xfe,0x49,0x8f,0xcf,0xa7,0x7e,0xfc,0x42,0xd1,0x48, 0xb4,0x51,0x15,0xb,0x58,0xac,0xf8,0x78,0xfa,0xea,0x29,0xfc,0x67,0xff,0xf1,0x7f, 0x80,0xff,0xf4,0xfb,0x9e,0x43,0x10,0xed,0xa2,0xdf,0xf3,0xa0,0x44,0xd6,0x71,0xd9, 0x2b,0x4d,0xf5,0x60,0x40,0x22,0xab,0x8e,0x9c,0x89,0xb0,0x73,0xcd,0xa7,0x19,0xb9, 0x9a,0x74,0xf,0x46,0x71,0xc,0xa9,0x15,0x4,0x63,0x80,0x2,0x34,0x26,0xd7,0x15, 0x8b,0xce,0x0,0x22,0xad,0x34,0x9b,0x4d,0x0,0x10,0x25,0x63,0xe9,0x84,0x47,0xe, 0xbd,0x5e,0xcf,0x8e,0xed,0xcc,0x8f,0x4,0x9d,0x78,0x38,0x30,0x92,0x14,0x1e,0x14, 0x62,0xdb,0x9d,0x2e,0x34,0xe3,0x99,0x99,0xd,0x99,0x6,0x9d,0x9c,0x1e,0x4c,0xe1, 0xb6,0xd7,0xa,0x9a,0x8b,0xc7,0xfa,0x46,0x49,0x29,0x50,0xf1,0x2a,0x90,0x4a,0x40, 0xa2,0xf,0x7f,0x5e,0xe0,0x37,0xfe,0x9f,0x6f,0xe0,0x7f,0xf8,0xdf,0xfe,0x5f,0x6c, 0x2a,0xc0,0xf,0xcc,0xa6,0xac,0x36,0xbc,0xc,0xab,0x63,0x30,0xb5,0x6b,0xd2,0xf5, 0xab,0x7d,0xfe,0x7e,0xbf,0x4b,0xec,0xd3,0x33,0x9f,0x94,0x76,0xda,0x2f,0xf8,0x1c, 0x2e,0xb8,0x29,0xbe,0x4,0x2f,0xf6,0xd0,0x54,0x21,0xfe,0xe8,0xaf,0xbe,0x8d,0x3f, 0xfa,0xcb,0xbf,0xc3,0xbf,0xff,0x83,0x97,0xf1,0x8b,0xff,0xe4,0xc7,0x51,0xad,0x77, 0x10,0x47,0xbc,0x30,0xcd,0x59,0x4,0x16,0x87,0x15,0xb9,0xe6,0xbd,0x77,0xa5,0x14, 0x78,0xaa,0x5e,0x3c,0xa8,0x2d,0x28,0x68,0x17,0x1c,0x18,0x45,0x11,0x83,0x34,0xae, 0x8a,0x63,0x93,0x96,0xf2,0xbd,0xcc,0xe1,0xef,0x2a,0x21,0xe7,0x23,0x96,0x22,0x80, 0x25,0x7a,0x6c,0x1a,0x89,0x78,0x0,0x92,0x32,0x9d,0x74,0x42,0xc1,0x81,0x31,0xc6, 0xfe,0xe2,0x2f,0xfe,0xc2,0x1a,0x11,0xe5,0xcd,0xa7,0x4d,0x8f,0xe4,0xe9,0x78,0x52, 0x1,0x9d,0x4e,0x67,0x48,0x4,0xcc,0x63,0xc3,0x85,0xe8,0x51,0xf4,0x40,0x61,0x2a, 0xbb,0x8f,0x7d,0xce,0x5b,0xc2,0x24,0xaa,0xbc,0xa,0xa8,0x10,0xfe,0x5c,0x5,0xff, 0xea,0xdf,0xfd,0x15,0xfe,0xfb,0x7f,0xfa,0x6f,0xb0,0x9b,0x9c,0x82,0x3f,0xdf,0x44, 0x45,0x89,0xd4,0x73,0x3,0x74,0xa2,0xe1,0x21,0x2d,0x10,0xaa,0xd4,0xeb,0xda,0xf7, 0xe1,0xfe,0x78,0x85,0x2f,0x39,0x9b,0xf4,0xd9,0xf3,0x9,0xf7,0x3f,0xdc,0xc8,0x86, 0xcf,0x58,0x73,0xc8,0xdb,0xb3,0x50,0xc,0x71,0x92,0x40,0xf8,0xc,0xb5,0xda,0x1c, 0x92,0xa8,0x82,0xff,0xfb,0x5f,0x7f,0xb,0x67,0x96,0x7f,0x7,0xff,0xf3,0x7f,0xf7, 0xf,0xa0,0x24,0x35,0x76,0x2a,0x68,0x3d,0x10,0xba,0x33,0x9a,0x73,0xec,0xd0,0x3f, 0x9f,0x22,0x72,0x86,0x52,0xa,0xc8,0x8,0xef,0xd,0x9a,0xe0,0xdc,0xda,0x83,0xe0, 0xc,0xd2,0x89,0x22,0xa4,0xd6,0x48,0x92,0x4,0xd5,0xc0,0xb7,0xcd,0x74,0xe3,0x58, 0x52,0xa3,0x80,0x8a,0xe6,0x4a,0x3,0xc0,0x9b,0x6f,0xbe,0xf9,0x3c,0x80,0x6f,0xe4, 0xfe,0xae,0x4,0x86,0x13,0x14,0x39,0xb0,0x38,0x8e,0x51,0xa9,0x54,0x66,0xe2,0x40, 0xe7,0x8d,0x46,0x70,0x61,0x39,0xd9,0xbd,0x5e,0xcf,0x8a,0xe9,0xd1,0xec,0x86,0x7c, 0x6b,0x7f,0x5e,0x93,0xde,0x1a,0xba,0x92,0x60,0x47,0x80,0xc6,0xa,0x0,0xac,0x12, 0x23,0xee,0x6a,0x54,0xab,0xc,0x9b,0x2d,0x8d,0x5f,0xfc,0xec,0x1f,0xe0,0xa1,0xd4, 0xa8,0x2e,0xef,0x82,0xc7,0x12,0x9,0xe3,0x96,0x82,0xab,0x31,0xc8,0xd,0x3,0x0, 0xf7,0xf8,0xc4,0x9c,0xfd,0xe4,0xc3,0xe5,0xb0,0x23,0x87,0xc3,0x7e,0x7e,0x7d,0xc4, 0xae,0x2f,0xc7,0xc4,0x61,0x5d,0xa0,0xba,0x2,0x1d,0x79,0xa8,0xc9,0x26,0x22,0xaf, 0x89,0xde,0xd2,0x2,0x7e,0xe5,0xb7,0xbe,0x8a,0xff,0xe8,0x3f,0xfc,0xe,0x7c,0xf7, 0x8b,0x6b,0x48,0x92,0x24,0x43,0x17,0x7d,0xe4,0x36,0x98,0x1e,0xfa,0x9c,0xf,0x53, 0xcc,0x33,0x8e,0x15,0x8a,0x99,0x7e,0x45,0xb2,0x19,0x2c,0xd5,0x65,0x9a,0x4,0x2, 0x14,0x5,0xbb,0xbf,0x73,0x8b,0xd2,0xdf,0xfb,0xbd,0xdf,0xfb,0x6f,0x19,0x63,0xa7, 0xf4,0x0,0x2d,0x4b,0x60,0x38,0x61,0xe0,0x50,0x4d,0x92,0xc4,0xe,0x11,0xcf,0x87, 0xb3,0xe3,0xb7,0x1a,0x87,0xd6,0xa,0x4c,0x49,0x68,0xcd,0xe0,0xf9,0x1,0x7a,0xbd, 0x3e,0xda,0xbd,0x2e,0xfc,0xa0,0x9a,0x49,0x1b,0xb1,0x9c,0x40,0xd8,0x28,0xca,0xaa, 0xe6,0x86,0xd7,0xcd,0xb9,0xb0,0xa9,0xaa,0xc7,0xb5,0x82,0x58,0x20,0xe,0x14,0x44, 0xe0,0xe3,0x2b,0x7f,0x74,0xb,0x5f,0xfb,0xdb,0x5b,0x68,0xd4,0xe6,0xa0,0x23,0x5, 0xc6,0x3c,0x13,0xe1,0xb8,0xd7,0xe8,0x7e,0xad,0xe4,0x14,0x1d,0xa8,0x8f,0x5b,0xf5, 0xf8,0xa8,0xab,0x2e,0x1f,0xee,0xf5,0x69,0x55,0x83,0x64,0x21,0xe0,0xf7,0xd0,0x8b, 0x38,0x84,0xae,0x20,0xd0,0x5d,0xf4,0x22,0x86,0x7f,0xf9,0xff,0xfd,0x35,0xfe,0xde, 0x87,0x4f,0x43,0x27,0xd4,0x85,0xec,0xa6,0x5f,0x34,0xb8,0x6,0xd4,0x23,0xc0,0xa, 0xad,0xb5,0xb1,0x33,0x5,0x1b,0x1d,0x44,0x71,0x8c,0x20,0x8,0x6c,0xa,0x38,0x56, 0x12,0xd0,0xca,0x3a,0x77,0x94,0xe2,0x34,0xf3,0xa5,0x63,0xf8,0x9c,0x23,0x66,0xc, 0x51,0x2,0x28,0x2d,0xc0,0x85,0x86,0x96,0x6a,0x24,0x18,0xb9,0x5,0x68,0x37,0xbd, 0x44,0x40,0x45,0xcf,0xdd,0xef,0xf7,0x97,0x48,0xba,0x5b,0x6b,0xad,0xca,0x94,0xd2, 0xc9,0x3,0x7,0x5e,0x94,0x7b,0x9c,0x85,0xde,0xe6,0x1a,0x13,0xc9,0x76,0xbb,0xb5, 0x6,0x57,0x78,0x4f,0xe4,0x22,0x88,0x3c,0x85,0x55,0x3f,0x82,0xb9,0xbf,0xd3,0x1f, 0x1e,0xc,0xcc,0x3,0x38,0xf3,0x70,0xfd,0xfa,0x75,0x24,0xb1,0x84,0xe7,0x29,0x8, 0xdf,0x83,0x94,0x71,0xd9,0xcd,0x7d,0xcc,0x17,0x15,0x73,0x95,0x52,0x10,0xdc,0x83, 0x42,0x2,0xc6,0x38,0x12,0xd,0x7c,0xfb,0xdd,0xf7,0xc1,0xd8,0x1b,0x85,0xf7,0x39, 0x2a,0xc7,0x9f,0x1b,0x39,0xe4,0x85,0xfb,0x5c,0xa7,0x8c,0xf6,0x99,0x2b,0xb8,0x47, 0xff,0x16,0xd,0xf0,0x72,0xd3,0xca,0xf9,0x9f,0xbb,0xa9,0x62,0x57,0xa2,0xbf,0x5c, 0x27,0x10,0x1c,0xfe,0xe4,0x4f,0xfe,0xe4,0xfb,0xfa,0xfd,0x3e,0x7c,0xdf,0x1f,0xe2, 0x3e,0x4f,0xc3,0x23,0xcf,0x3,0x4a,0xaf,0xd7,0xb3,0xcd,0x71,0x93,0x86,0xa0,0xe4, 0x7f,0xef,0x2,0x44,0x3e,0xa2,0x78,0x4c,0xf0,0x0,0x9d,0xba,0x87,0xcd,0x66,0x6b, 0x68,0xae,0x6e,0xb9,0x8e,0xf7,0x52,0x52,0x2,0x9c,0x41,0x23,0x9d,0xc0,0x26,0x1, 0x8,0xe,0x2e,0x7c,0x6c,0x19,0x36,0x8e,0xb1,0xd3,0x74,0xa6,0x42,0x1e,0x54,0x1e, 0x99,0x7d,0xea,0xe1,0xbd,0x40,0x11,0x2,0xe7,0x1c,0x2,0x2c,0x2d,0x48,0xa3,0x70, 0x8f,0xd1,0x8d,0x64,0xf8,0x95,0x52,0xe0,0x18,0xcf,0xbe,0x2a,0x6a,0xe6,0xcc,0x83, 0x43,0x18,0x86,0xf4,0xb7,0x4c,0xa7,0xab,0x8c,0x1e,0x8e,0xf7,0xca,0x24,0x72,0x2f, 0x5d,0xba,0xf4,0xab,0x80,0x99,0xb9,0x50,0x74,0xd8,0x4f,0x23,0xd7,0xed,0x7a,0x2c, 0x34,0x79,0xca,0x5,0x87,0x41,0xa7,0xe6,0xb0,0xb0,0xd8,0x24,0xf1,0xb2,0xc7,0xed, 0x99,0xd1,0xeb,0xab,0x4,0x35,0x13,0xda,0x73,0x23,0x83,0xcc,0x78,0x69,0xff,0xc7, 0x3f,0x72,0xd0,0xd6,0xc3,0x56,0xd0,0xd0,0x9c,0x41,0x6a,0x5,0xd,0xe,0x26,0x2a, 0x56,0x22,0x3b,0xcf,0x18,0xe2,0xfa,0xd1,0x53,0x59,0xf3,0x36,0xa9,0xb5,0xce,0xb0, 0xfe,0xe8,0xf5,0xe4,0x23,0xa,0x97,0x18,0x32,0xe8,0x47,0xca,0x3e,0xce,0x34,0xc3, 0xbc,0xdc,0xaf,0x9,0x1c,0xf2,0xbd,0x13,0xe5,0x3a,0x61,0x91,0x83,0x94,0x72,0x89, 0x24,0xb5,0xf7,0x2,0xf8,0xf9,0xf6,0x7a,0xc7,0x9b,0xc8,0xb4,0xdc,0x7b,0x9e,0x67, 0xf5,0x60,0xac,0xf7,0x91,0xe6,0xec,0x19,0x18,0x38,0xe3,0x60,0x43,0x93,0x7,0x1f, 0x2f,0x5b,0x47,0x6b,0xd,0xcf,0xf7,0x2c,0x53,0x5,0x69,0x61,0x92,0x73,0x7a,0xdd, 0x25,0xc5,0xfb,0x78,0x6f,0x4,0xe,0x29,0x15,0x34,0x93,0x50,0x2a,0x1,0x13,0x0, 0x3,0x83,0x52,0x72,0xe4,0xa1,0x4c,0xec,0x34,0x2,0x89,0x43,0x8d,0x6c,0x68,0x46, 0xb4,0x1e,0x76,0x56,0x4c,0xf4,0xca,0x47,0x2,0x49,0x51,0x44,0xae,0x9c,0xe,0xfe, 0xfd,0xec,0x9,0x3a,0x2f,0xa8,0x11,0xae,0x8c,0x14,0x4e,0x68,0xe4,0x10,0x45,0x91, 0x23,0x1,0xbc,0xb7,0x81,0xe9,0xae,0x1,0xd2,0xe3,0x11,0x0,0x4,0xc2,0x43,0x10, 0x4,0x8,0x2,0x1f,0x41,0x10,0xc0,0xf7,0x7d,0x2b,0xab,0x51,0x44,0x63,0x3d,0x4a, 0xcd,0x70,0x6e,0x64,0x93,0x24,0x9,0xe0,0xfb,0x90,0x32,0x4e,0xdf,0xa7,0x32,0xb5, 0x74,0xdc,0x97,0xd6,0x46,0x13,0xcc,0x63,0x46,0xd1,0x14,0x4a,0x2,0x30,0xe9,0x1a, 0x51,0x10,0x2d,0x3c,0xea,0xa8,0x61,0x1a,0xe5,0x57,0xc6,0xf3,0x4d,0x71,0x7a,0x6c, 0xda,0xd6,0xed,0x63,0x2a,0xea,0xdd,0x28,0x8a,0x9a,0x5d,0x50,0xa0,0xaf,0x89,0xf6, 0xe,0x40,0x94,0x96,0x74,0x42,0x23,0x87,0x38,0x8e,0x87,0x94,0x18,0xf3,0x74,0xb6, 0x49,0x1b,0x2c,0xf,0x36,0xf9,0x70,0x96,0x22,0x7,0x57,0x67,0xc9,0x4f,0x65,0x35, 0x28,0x4c,0x1d,0xe9,0xa5,0x3d,0xe6,0xb4,0x83,0x29,0xd8,0xa5,0xd1,0x4e,0x1a,0x5d, 0x69,0x9d,0x80,0x31,0xc3,0x58,0x2a,0xd7,0x31,0x6,0x7,0xf0,0xf4,0x73,0x4,0x94, 0x96,0xa6,0x6b,0x58,0x49,0x30,0xf0,0x14,0x28,0xc6,0xf3,0x33,0xf,0x5d,0xbe,0x64, 0xc4,0xf3,0x65,0xc0,0x1,0xac,0x30,0x62,0x10,0x60,0x88,0x81,0x4c,0xdd,0x41,0xa6, 0x4e,0x8e,0xef,0x5,0xb6,0x43,0x3a,0xdf,0xd3,0x54,0xb4,0xf7,0xf3,0x13,0x1e,0x29, 0x72,0x48,0xc1,0x61,0xa8,0x11,0xae,0xb4,0xac,0x93,0x93,0x56,0xca,0x80,0xc3,0xac, 0x3d,0xe,0x79,0x6f,0x86,0x8a,0x5e,0x54,0x28,0x2b,0xf2,0x76,0xcc,0xef,0x7,0xb2, 0xdc,0x2e,0xe3,0xe2,0x28,0x31,0x80,0x94,0x52,0x50,0x4c,0x3,0x30,0x33,0x2e,0x54, 0x18,0x42,0xd4,0xe7,0x20,0x91,0x40,0x43,0x2,0xba,0x74,0x9a,0x8e,0x35,0x38,0xa4, 0x4c,0x9d,0x38,0x8e,0xc0,0xb4,0x80,0xe7,0x33,0x44,0x4a,0x3,0xda,0xa4,0x99,0x86, 0x22,0x49,0xd,0xe0,0x88,0x11,0xd4,0x8a,0x23,0x6d,0x95,0xf9,0x9d,0x1b,0x41,0x50, 0xdd,0x41,0xa3,0x78,0x8e,0x44,0xd1,0xe3,0x13,0x1,0xc3,0xfd,0x3b,0xa2,0xcd,0x16, 0x45,0xe,0x25,0x48,0x9c,0xb0,0xc8,0x81,0xba,0x1e,0x67,0x55,0x9f,0xd4,0xda,0x48, 0x68,0x8,0x21,0x90,0x48,0x89,0x38,0x8e,0xd,0xbf,0x3a,0x5d,0xe6,0x6b,0xd,0x6, 0x5,0xce,0x1,0x8f,0xa5,0x1d,0xd0,0x69,0x37,0xb1,0xab,0xdf,0xe2,0x36,0xdc,0x14, 0xd5,0x40,0x8a,0x8a,0xe0,0x33,0x64,0xd0,0xf6,0xb2,0xf3,0xc0,0x99,0x0,0xd3,0x40, 0x22,0x14,0xb8,0x56,0x48,0x74,0x68,0x5e,0x8f,0xf6,0x70,0xf4,0xfb,0x4,0xca,0x35, 0xde,0x3c,0x18,0x18,0x14,0x4,0x2a,0xd0,0x90,0x48,0xa4,0x84,0x7,0xf,0x91,0xea, 0x1,0xdc,0x7,0xc0,0xed,0x21,0xca,0x98,0x86,0x84,0x82,0x80,0x48,0x6d,0xf7,0x11, 0x5c,0x1e,0x99,0x7f,0x2a,0x70,0x68,0xcc,0x9e,0xd9,0xe7,0x96,0xca,0xd8,0x28,0x45, 0xa,0x4a,0x29,0xe3,0x90,0x31,0x8e,0x84,0x25,0x26,0xc5,0x84,0x81,0x4c,0x46,0x5f, 0x29,0x28,0x46,0xba,0x5f,0x12,0xc,0x62,0xa2,0x43,0xe6,0xfe,0xde,0xdd,0xab,0x24, 0xb5,0xe3,0x6e,0xb2,0x12,0x10,0x4e,0xc0,0x96,0x70,0x11,0xde,0xe5,0x3e,0x13,0x95, 0x35,0xff,0xf5,0xa8,0x5b,0xbe,0x61,0xc6,0x15,0x6,0x1b,0x27,0x8f,0x91,0xff,0x1a, 0x18,0x3f,0xd,0xab,0x88,0x79,0x31,0x4a,0x93,0x69,0xb4,0x37,0xb5,0xd7,0xf3,0xa3, 0xec,0x65,0x38,0xb1,0x91,0x83,0xb5,0x65,0x39,0xf4,0xb3,0xd1,0x69,0x24,0x75,0xa4, 0xae,0x7f,0xda,0xc8,0x22,0x9f,0x36,0x2a,0x4a,0x51,0xcd,0x72,0x73,0x9f,0xa2,0xb4, 0xa4,0x93,0x19,0x39,0xb0,0xfd,0x72,0xf6,0xdd,0x43,0xd8,0xc,0x24,0x51,0x85,0x7, 0x79,0x11,0x8f,0x7a,0x5c,0x58,0x7b,0x10,0x87,0xfb,0x64,0x55,0xcf,0x49,0x9b,0xaf, 0xc0,0x8b,0xd2,0x86,0xf6,0xc8,0xc0,0x50,0x3a,0x4a,0xc7,0x1c,0x1c,0xe8,0xff,0x14, 0x91,0x32,0x9,0x68,0x9e,0x1,0x8c,0x62,0xfe,0xbf,0x4e,0x7d,0xac,0xc7,0xb,0x14, 0x46,0xef,0x52,0xf,0x35,0xc3,0x8d,0x73,0xca,0x26,0xe9,0x4d,0x4d,0xbb,0x17,0x29, 0x25,0xfc,0xe6,0x9b,0x6f,0x3e,0xcd,0x18,0x7b,0xab,0x8c,0x1a,0x4e,0x58,0xe4,0x40, 0x7,0xfa,0xa8,0x7e,0x83,0x59,0x41,0x82,0xa2,0x87,0x49,0xc2,0x7a,0xd3,0x32,0x93, 0x8a,0xec,0xed,0x71,0x4f,0x8a,0xb3,0x46,0x52,0xd9,0x7e,0x0,0x0,0x20,0x0,0x49, 0x44,0x41,0x54,0xd7,0x34,0x51,0x37,0xa9,0x5c,0xc7,0x25,0x72,0x80,0x2a,0x9e,0xfb, 0x3c,0xde,0xd6,0xd4,0x91,0xb8,0xfe,0x51,0xd1,0xf2,0xa8,0xbd,0x97,0xef,0x4b,0xda, 0xf3,0x21,0x92,0x46,0xee,0xaf,0xbd,0xf6,0xda,0x4f,0x15,0x5c,0x57,0x9,0x14,0x27, 0x21,0x72,0xb0,0x1a,0x2c,0xd8,0x7b,0xe7,0xaf,0xeb,0xb5,0x18,0x7a,0x1d,0x9f,0x68, 0x7c,0xd3,0x4e,0xf1,0x2a,0xca,0x89,0x8e,0xa2,0xdc,0x1d,0xb4,0x4d,0xb2,0x9c,0x32, 0x2c,0xd3,0x86,0xc2,0xaa,0xe9,0x60,0x29,0x75,0xc6,0x8e,0xf5,0x32,0x93,0x6a,0x14, 0xa8,0xa6,0x6a,0x2,0x4d,0xd,0x40,0x1f,0x9b,0xa8,0x70,0x9a,0x48,0x60,0x54,0xe4, 0x30,0x49,0xd,0x61,0x14,0x6b,0xd1,0x5,0xd2,0x6a,0xb5,0xfa,0x46,0x69,0x49,0x27, 0x13,0x1c,0xf4,0x34,0x43,0x7d,0xa6,0xf5,0x5c,0xdc,0xe,0xca,0x51,0xde,0xc9,0x2c, 0x9e,0xff,0xb4,0xbf,0xcf,0x4e,0xcc,0x9a,0x5d,0x1f,0x6a,0xfc,0x73,0xa4,0xec,0x2a, 0x5d,0x30,0x2d,0x8b,0x95,0x5,0xe9,0x93,0x81,0x12,0xa3,0x6c,0x46,0xd,0xdb,0xdb, 0x11,0xc4,0x8c,0x3c,0x41,0x63,0x54,0x84,0x7e,0x90,0x3,0x8b,0x2c,0x65,0x56,0x88, 0x97,0xcb,0x48,0xe1,0x84,0x82,0x43,0xbe,0x40,0x75,0x50,0x46,0x3a,0xa,0x18,0xc6, 0x85,0xbf,0x93,0x3c,0xa0,0x59,0x80,0xe2,0xc0,0x36,0xde,0x8,0xa0,0x31,0x91,0x43, 0xb9,0x8e,0xff,0x32,0x35,0x7,0xc3,0x4a,0x52,0xce,0x67,0x9d,0xce,0x46,0xe0,0x1a, 0xd0,0xfc,0xd1,0xeb,0x29,0xed,0xe3,0xd0,0x9e,0xb4,0x5f,0x66,0xdd,0x5b,0x45,0x51, 0xfa,0x41,0x3a,0x60,0xe5,0x3a,0x9a,0xe0,0x60,0xb,0xd2,0xae,0x42,0xe3,0xac,0x86, 0x98,0xd7,0x5e,0x29,0xf2,0x58,0x46,0xfd,0x6c,0xaf,0x86,0x5a,0xe4,0x31,0xe5,0x8d, 0xf8,0xe0,0xc7,0x68,0xa6,0xc2,0x84,0x65,0xc4,0x70,0x12,0x83,0x86,0xcc,0x44,0xc3, 0xcc,0x67,0x9f,0xa6,0x9e,0x68,0x6e,0xc2,0xb8,0x54,0xcc,0x51,0x4a,0x29,0x8d,0x3, 0x5,0x73,0xfd,0x93,0xf,0xf8,0xa2,0x26,0x39,0x97,0x95,0x58,0x82,0xc3,0xc9,0x5, 0x87,0xcc,0x87,0x4e,0xc,0x84,0xa9,0xd,0x5f,0x69,0x68,0xe,0xc3,0xb5,0xd6,0x83, 0x6e,0x52,0xcd,0x0,0x2f,0xfd,0x4e,0x6b,0x5,0xce,0x18,0xb8,0xe6,0x60,0x2a,0x1b, 0xb2,0x73,0x66,0x66,0xa5,0x65,0x98,0x16,0xee,0x1,0x3f,0xe1,0xe9,0xf9,0x4,0xef, 0x48,0x3,0x63,0xd3,0x4c,0xe3,0xe4,0x9,0xe8,0xf1,0x15,0x87,0x19,0x85,0xca,0x35, 0xa0,0x14,0x84,0x56,0x48,0x20,0x1,0x30,0x30,0xcd,0x4b,0x6b,0x3a,0xce,0x31,0x3, 0x33,0x37,0x46,0x29,0x43,0x9e,0x82,0x85,0x96,0xe6,0x67,0xa9,0xb6,0x91,0x56,0xc, 0x60,0x83,0x26,0xb8,0xa3,0xd2,0xac,0xe9,0xf6,0x9,0xb9,0xb3,0x1c,0xe8,0x0,0xf7, 0x18,0x87,0x42,0x2,0x9e,0xe,0xf7,0x11,0x7c,0xd0,0x3b,0x41,0x5d,0xff,0x45,0x91, 0xc0,0xa8,0x88,0xbf,0xc8,0x19,0x73,0x7e,0x56,0x36,0xbe,0x9d,0xb4,0xc8,0xc1,0xf5, 0x4,0xdc,0x82,0xf4,0x54,0x1c,0x6a,0x4c,0x66,0x1f,0x3d,0x6e,0xad,0xa4,0x71,0x46, 0x3d,0x95,0x2d,0xab,0x82,0x30,0x9a,0xe6,0x66,0x97,0x89,0xa5,0xe3,0x9e,0x50,0x2, 0x83,0x34,0xb3,0xbe,0x19,0xc9,0xd5,0xcb,0xa9,0xd3,0x31,0x8f,0xfb,0x2c,0x2c,0x1a, 0xca,0x33,0xea,0xef,0x8a,0xd2,0x4d,0xa3,0xee,0x37,0xe9,0x67,0x45,0xb2,0x1b,0xe5, 0x3a,0xc1,0x91,0x43,0xfe,0xdf,0x69,0xd,0xdf,0xbd,0x5f,0xbe,0x39,0x6d,0x9c,0xb0, 0x57,0xd1,0x81,0x3d,0x4d,0xbe,0x74,0x3f,0x9b,0x28,0xff,0xbc,0x93,0xa8,0xb2,0xa3, 0x36,0x8,0x69,0xda,0xe8,0x92,0xce,0x7a,0xec,0xc1,0x61,0x50,0x73,0x20,0x85,0x60, 0x98,0xef,0xa7,0x28,0xdc,0x1e,0x87,0x83,0x71,0x1a,0x42,0x48,0x51,0x8a,0x68,0x9a, 0x94,0x51,0x9,0xe,0x27,0x1b,0x1c,0xb4,0xab,0x9d,0x52,0x24,0xc0,0x35,0xc9,0x38, 0x80,0xe1,0x29,0x51,0x7a,0x4a,0xe3,0x74,0x8d,0xf0,0x51,0x19,0xda,0x2c,0xc5,0x37, 0x68,0x9,0xc6,0xdc,0xd4,0x91,0x13,0x59,0x41,0xe2,0x71,0x4b,0x8a,0x97,0xeb,0xa0, 0x96,0xa2,0x38,0x1a,0x3a,0x8d,0x14,0x99,0x91,0xe5,0xb3,0x93,0xdf,0x8a,0xa6,0xad, 0x1d,0x9,0x80,0xdb,0x87,0x82,0xf2,0xb8,0xc7,0x99,0x14,0x89,0x38,0x99,0x86,0x9d, 0xd2,0x7e,0x4e,0x26,0x38,0x30,0x2,0x7,0x37,0xb5,0x34,0x6d,0xa1,0x89,0x81,0xd, 0x79,0x11,0x8c,0x31,0xa8,0x31,0x85,0xe2,0x71,0x69,0x9f,0xc3,0xd8,0x38,0xd3,0xb2, 0x36,0x46,0x45,0x32,0x85,0xd7,0x7c,0x4,0x5,0xd8,0xca,0xb5,0x7,0x47,0xc1,0xfd, 0x1c,0x95,0xb6,0x12,0x72,0x6e,0x91,0x3a,0xf3,0xf5,0x8c,0x51,0xf5,0xa3,0x8e,0x10, 0xa6,0x99,0xec,0x56,0x4,0xa,0xb3,0xbe,0x1e,0x57,0x5a,0x27,0x8e,0xe3,0x3f,0x28, 0x2d,0xe9,0x84,0x46,0xe,0xc2,0xca,0x50,0xeb,0x7d,0x1f,0xd6,0x76,0xe2,0x14,0xf4, 0xd4,0x86,0x77,0x98,0x1e,0xd8,0x5e,0x1e,0x7b,0x14,0x3,0x8a,0xbb,0x9b,0x9,0x86, 0xe9,0x51,0xd6,0xdf,0x8e,0xff,0xe2,0x5a,0x99,0x34,0x52,0x5a,0x73,0x30,0x14,0x9, 0x55,0x68,0x47,0x7a,0x9f,0x5e,0xfb,0x61,0xd9,0xf7,0x2c,0xca,0xc6,0xe3,0x34,0xc9, 0x66,0x7d,0x4e,0x0,0xe8,0x74,0x3a,0xff,0x2e,0xfd,0xbe,0xdc,0xc,0x27,0x11,0x1c, 0x48,0x7c,0x6f,0x54,0xbd,0x60,0xaa,0x30,0x15,0xcc,0xce,0x6a,0x20,0x2d,0xfc,0xc7, 0xbd,0x89,0xd8,0x24,0x3,0x9f,0xf6,0xda,0xf4,0x80,0xe6,0xa8,0x9d,0xfc,0x34,0x58, 0xb9,0x1f,0x8e,0xfd,0xd2,0xe,0xe0,0x6b,0x80,0x15,0x8b,0xcb,0x3d,0x72,0xc7,0x66, 0x56,0x67,0x66,0xd2,0x35,0x8d,0x9b,0x10,0xb7,0x9f,0x9,0x90,0xdf,0xfc,0xe6,0x37, 0xff,0xed,0xf3,0xcf,0x3f,0x5f,0xda,0xd1,0x9,0x4,0x87,0x4c,0xfe,0x30,0x3f,0x2d, 0x6a,0x62,0x41,0x2a,0x3d,0x80,0x89,0xff,0x4d,0x3,0xce,0x8b,0x8c,0x77,0xd4,0x86, 0xdb,0x6f,0x97,0xe6,0x61,0x47,0x17,0x99,0x6b,0xa6,0x1e,0x7,0xd,0x30,0xa5,0xa1, 0xca,0xd4,0xd2,0xf1,0xc7,0x86,0xf4,0x33,0x75,0x7b,0x1c,0x4c,0x44,0x51,0xec,0x6c, 0x1c,0x65,0x77,0x60,0xd6,0x83,0x5e,0x4f,0x0,0xc2,0xa2,0x28,0x84,0x7e,0x46,0x75, 0xca,0x4f,0x7f,0xfa,0xd3,0xef,0x97,0x41,0xc3,0x9,0x4,0x7,0xad,0xb5,0xfe,0xcb, 0xbf,0xfc,0x4b,0x74,0xbb,0x5d,0x48,0x29,0x51,0xa9,0x54,0xec,0x98,0xcf,0xa9,0x8c, 0x8b,0x1,0x50,0x1a,0x5c,0x70,0x48,0xad,0xc0,0x4,0x43,0xb5,0x52,0x41,0xaf,0x15, 0x21,0x49,0xa1,0xc3,0x1a,0x20,0x67,0xd0,0xdc,0x31,0x34,0x46,0xe1,0xfb,0x60,0x26, 0x33,0x18,0x9f,0xca,0xf3,0x77,0xc1,0xe9,0xa0,0x36,0x55,0x5e,0xa3,0xc9,0x78,0x93, 0xc,0x1e,0x63,0x46,0xc7,0x9f,0x31,0x70,0x68,0xc4,0x2a,0x86,0xf,0xe,0xc9,0x35, 0xb8,0x2e,0xd1,0xe1,0x38,0x2f,0xc6,0x18,0x12,0x99,0x38,0xc2,0x93,0xa,0x12,0x12, 0xd0,0x12,0x12,0x32,0xc5,0xa,0x5e,0x78,0x58,0x1e,0x85,0x4f,0x5e,0xe5,0xa,0xe4, 0x79,0x2a,0xba,0xe6,0x2c,0xe3,0xc0,0x8,0x30,0x78,0x9e,0x67,0x1c,0x41,0xd,0xb0, 0xc1,0xc0,0x9e,0x6c,0xcd,0xd0,0x19,0x25,0x5a,0x4,0x18,0x42,0x8,0xc4,0x71,0x4c, 0xef,0x85,0x72,0xde,0xcf,0xb2,0xd7,0xe1,0x24,0x45,0xe,0xee,0x60,0x9e,0x59,0xfb, 0x1c,0xb2,0xc3,0xce,0xd3,0xe9,0x6f,0x42,0xec,0x79,0xa3,0xea,0x23,0x76,0x70,0xc, 0x46,0x98,0x22,0x33,0xe1,0x4e,0xcb,0x34,0xd2,0x2a,0xd9,0x4a,0xc7,0x3e,0x6a,0x30, 0xf6,0x6a,0x48,0x14,0x5a,0x2b,0x3,0xf8,0xf6,0xd0,0x2d,0xee,0x93,0x39,0x2a,0x4c, 0xa5,0x71,0x91,0xc2,0x28,0x8f,0xdf,0xa6,0x94,0xa6,0x28,0x5e,0x17,0x3d,0x4f,0xbe, 0x69,0x16,0xe3,0x1a,0x43,0xca,0x75,0xbc,0xc1,0xc1,0xf7,0xfd,0x21,0xa6,0xd2,0xb4, 0xe0,0x90,0x37,0x3c,0xce,0x39,0x7c,0xdf,0x1f,0x92,0x41,0x1e,0xa5,0x9a,0x5a,0x54, 0x48,0x9b,0x85,0xd2,0xba,0x5f,0x27,0x65,0x92,0xec,0x86,0x5,0x8,0xc,0x3a,0xc7, 0xdd,0x5a,0x43,0xe9,0x24,0x1d,0xef,0xa5,0xa0,0x4d,0x17,0xb1,0x52,0x0,0xd7,0xe0, 0x8c,0x83,0x29,0x96,0x76,0xfc,0xcb,0x21,0x3b,0xd9,0x8b,0x8d,0x1e,0x7a,0x4a,0xc, 0x28,0x9c,0xe7,0x90,0xff,0x7d,0x91,0x86,0x9a,0xdb,0x0,0x9b,0x4f,0x35,0x15,0x31, 0xf9,0xdc,0xc7,0x4b,0x92,0x84,0x1c,0xc1,0xc4,0xcd,0x44,0x94,0x56,0x75,0xc2,0xc0, 0x41,0x4a,0x99,0x31,0x8a,0x69,0x3f,0xe3,0xfc,0xdf,0x33,0xc6,0x10,0x4,0x1,0x98, 0xd2,0x85,0x2a,0x90,0x45,0x87,0xf2,0x7e,0xd9,0x51,0x87,0xe1,0x8d,0xb9,0x4b,0x26, 0x9,0x84,0xc7,0xc1,0x45,0xba,0x39,0xa4,0x34,0x3,0xb0,0xf,0x34,0xb1,0x55,0xae, 0xc7,0xb1,0x38,0x4c,0xbf,0x8a,0x52,0x80,0x60,0x2,0x8a,0x49,0x68,0x85,0xe1,0x29, 0x4f,0x39,0xdb,0x38,0x4a,0x91,0xc3,0xb4,0x7a,0x4a,0xe4,0xe9,0x4f,0x93,0x32,0x9e, 0x46,0xc1,0xd5,0x49,0x3d,0xc9,0xdc,0x7d,0xcb,0xd4,0xd2,0x49,0x3,0x7,0x29,0xa5, 0xf5,0xfa,0x67,0xf5,0x8c,0x5c,0x63,0xaa,0x54,0x2a,0x43,0x0,0x32,0xae,0xe0,0x95, 0x31,0xe0,0xfc,0xe3,0x3e,0x76,0xcf,0x52,0x9a,0xb4,0x12,0x54,0xda,0x10,0x5,0x30, 0xc6,0x1d,0x99,0x5,0x51,0x5a,0xd3,0x9,0x48,0x2d,0x71,0x9e,0x7e,0x8e,0x52,0x1, 0x8a,0x83,0x71,0x6,0x8e,0xd1,0x51,0xe5,0x71,0x3b,0xfb,0x5c,0x29,0x7d,0xe3,0xed, 0xab,0x7d,0x81,0x9c,0x52,0xa,0x49,0x92,0xd0,0xdc,0xf9,0x12,0x8,0x4e,0x2a,0x38, 0x78,0x9e,0xb7,0x3,0x60,0x29,0x8e,0x63,0xd4,0x6a,0xb5,0x3d,0xd5,0x1d,0x3c,0x2e, 0xa0,0x60,0x52,0x49,0xb5,0x5a,0x2d,0x63,0x90,0x93,0xc0,0xe1,0x28,0x6f,0x38,0xe, 0x6,0xe1,0xb,0x28,0x95,0x98,0xe8,0x4a,0x29,0x8,0xce,0x80,0x44,0x81,0xb,0x56, 0x6e,0x8b,0x13,0x0,0xc,0x80,0x91,0xcc,0xb0,0xa9,0x51,0x8f,0x23,0x9,0x95,0xa5, 0x77,0x8f,0x3a,0x44,0x8f,0x83,0x6c,0x44,0x3e,0xa5,0x2b,0x84,0xc8,0xcc,0xa4,0x70, 0xf5,0xd4,0x26,0xd,0x2,0xca,0xff,0x2e,0x8e,0x63,0xd4,0xeb,0xf5,0x21,0x70,0xd0, 0x5a,0xeb,0x32,0x7a,0x38,0x21,0xe0,0xf0,0x95,0xaf,0x7c,0xe5,0x93,0xcb,0xcb,0xcb, 0x5f,0x8f,0xa2,0x28,0x63,0xc,0xd3,0xca,0x77,0x4b,0x29,0xe1,0xf1,0x81,0x7,0x5d, 0xad,0x56,0x33,0x92,0x18,0x6e,0x37,0xe5,0xb8,0x41,0xe5,0xae,0x4c,0xc1,0x51,0xdc, 0x60,0xb5,0x5a,0xd,0xd0,0xda,0xe4,0x5a,0xb5,0x82,0xd6,0x6c,0x64,0xfa,0xa1,0x5c, 0xc7,0x4,0x1c,0x58,0x1a,0x9d,0x2a,0xd,0x5,0x5,0x2e,0x52,0x72,0x45,0x92,0xa0, 0x56,0xf1,0x8f,0x1d,0x20,0x14,0xd5,0xf6,0xdc,0x7d,0x46,0x7d,0x48,0x4a,0xca,0x94, 0x0,0xa2,0x27,0xa6,0xa3,0xf2,0xa9,0x29,0x97,0xfa,0x1e,0x4,0x41,0x59,0x67,0x38, 0x61,0x2b,0x93,0x74,0xfc,0xf4,0xa7,0x3f,0xfd,0x6d,0x2a,0x30,0xe5,0xb,0x58,0xd3, 0xdc,0x5c,0x2a,0x1c,0x0,0x53,0x73,0x98,0x70,0xff,0x49,0xe9,0xa6,0xa3,0xb2,0x18, 0x63,0xa0,0x31,0xaa,0xa7,0x4f,0x9f,0x86,0x1f,0x4,0xe6,0xd,0x9c,0xa2,0x7,0xa4, 0x5c,0xc7,0x65,0xe5,0x9c,0x20,0xa9,0xc0,0x7c,0x1f,0xeb,0xeb,0xeb,0x27,0xee,0x95, 0x8e,0x92,0xce,0x70,0xf7,0xb2,0x4b,0x4e,0xc9,0xff,0xcc,0xfd,0x9e,0xd2,0xd0,0xe5, 0x3a,0xc1,0x91,0x3,0x80,0x90,0xc0,0xc1,0xd,0x35,0xa7,0xf1,0x92,0x8c,0xd4,0x0, 0x87,0x64,0x86,0xe9,0x21,0xa5,0x44,0xe0,0x99,0xe8,0x21,0x51,0x32,0x7d,0x1c,0xc3, 0x6,0x61,0x4a,0x43,0xb8,0x39,0x7a,0xcd,0x73,0x51,0x83,0x6,0x67,0xe3,0x67,0xda, 0x3e,0x72,0x4f,0xc,0x1c,0xc,0x11,0x0,0x86,0xef,0xff,0xae,0xf,0xe3,0xd4,0x29, 0x1f,0xf7,0x5a,0x31,0x64,0x95,0xc1,0x93,0x2,0x9,0x74,0xa1,0x20,0x9b,0xd,0xd5, 0xf9,0x3e,0x1,0x64,0xd2,0xbc,0x88,0x49,0x43,0x87,0xe,0xfb,0xfe,0xfb,0x3e,0xad, 0x1e,0xff,0xd0,0x24,0x2f,0xa9,0x41,0x20,0x6,0xe3,0x3d,0x24,0x8,0xc0,0x45,0x3, 0xac,0x73,0x1b,0x3f,0xfa,0xfd,0xaf,0xa4,0xa9,0x18,0x36,0xe4,0xc8,0x70,0x7e,0x34, 0xda,0xe1,0x4c,0x9a,0xd3,0x5c,0x8f,0xd6,0xda,0x56,0x86,0x7,0x36,0xc9,0xa1,0x35, 0x83,0x4e,0x62,0x70,0xad,0x4c,0x4d,0x51,0xa5,0xe4,0x22,0xce,0xa0,0x62,0x35,0xb4, 0xd7,0xa8,0x60,0x6d,0x67,0x9a,0xa4,0xbd,0x10,0x6e,0x31,0x3e,0xc,0x43,0x0,0x40, 0xbd,0x5e,0x37,0xe2,0x6c,0xc8,0x32,0x95,0xca,0x68,0xe2,0xe4,0x80,0x83,0xa,0x82, 0x20,0x13,0x39,0xcc,0x72,0x40,0x93,0x27,0xc1,0xb9,0x9,0x59,0x7d,0xc1,0x51,0xa9, 0x4,0x8,0xbb,0xfd,0x21,0x6f,0x23,0x1f,0x31,0xe4,0x75,0xe1,0x8f,0xaa,0xa0,0x19, 0x14,0x70,0x79,0xad,0x86,0xff,0xf2,0x27,0x7f,0x8,0xff,0xe4,0x7f,0xf9,0x4d,0x68, 0x76,0xa,0x89,0xd7,0x5,0x57,0x5e,0x86,0x31,0x22,0x93,0x4,0xca,0x61,0x85,0x68, 0xb9,0xdf,0xd7,0x23,0x8f,0xf9,0xfd,0x8f,0x78,0x5a,0xc9,0xf,0x11,0x2b,0x8d,0x58, 0x70,0x20,0xe0,0x80,0xe2,0x50,0xbb,0x6d,0x7c,0xf2,0xb5,0xe7,0xf1,0xa3,0xdf,0xff, 0xe2,0x90,0x1d,0x1c,0xd5,0x33,0x6f,0xd4,0xac,0x85,0x3c,0xa8,0xe5,0x7b,0x90,0x46, 0xd5,0x18,0xdc,0xbd,0x9d,0x57,0x4d,0x26,0x47,0x32,0x49,0x12,0x54,0x2a,0x95,0xc, 0x10,0x94,0xb5,0x86,0x13,0x6,0xe,0x5a,0x6b,0xf5,0xb5,0xaf,0x7d,0xd,0x9d,0x4e, 0x27,0x53,0x8c,0xce,0x1b,0x4a,0xb1,0x67,0x9d,0xa,0xd0,0x29,0x96,0x26,0xab,0x14, 0x3c,0xee,0xa3,0x51,0xaf,0xa3,0xd9,0xea,0x16,0x86,0xa5,0x45,0xa1,0x2c,0x79,0x2b, 0x7b,0xed,0x77,0x38,0x34,0x60,0xe0,0xd2,0x9c,0x8f,0xba,0x2,0x16,0x1,0xff,0xf5, 0x4f,0xff,0x3,0xfc,0xcd,0xdf,0xbc,0x83,0x7f,0xf1,0xdb,0x7f,0x2,0x2c,0x2c,0x40, 0x79,0x80,0xe1,0x3e,0xa6,0xd7,0xe9,0xd,0xa8,0x82,0x49,0x1c,0x3,0xa2,0x64,0x33, 0x1d,0xe9,0x15,0x5,0xe0,0xd5,0x1a,0x94,0x94,0x40,0x47,0x2,0xdd,0x16,0x5e,0x78, 0x6a,0x15,0xff,0xfc,0x17,0xfe,0x5b,0x54,0xbd,0x81,0x7c,0xf7,0xb8,0xd4,0xcc,0x51, 0x5,0x88,0xa2,0xaf,0x53,0x76,0x51,0xa6,0x6e,0x50,0xd4,0xdc,0x36,0x6a,0xff,0x2b, 0xa5,0x20,0x84,0x40,0x92,0x24,0x50,0x4a,0xe1,0xec,0xd9,0xb3,0x8b,0x5,0xda,0x4e, 0x25,0x40,0x9c,0xa0,0xc8,0x1,0xf5,0x7a,0x1d,0x3b,0x3b,0x3b,0x90,0x52,0xce,0x94, 0x4f,0xa7,0x39,0xb4,0xd6,0xb0,0x94,0x2,0x4,0xd0,0x68,0x34,0xa0,0xf5,0x46,0x61, 0x2e,0x73,0x94,0xea,0x69,0x91,0xa1,0x3f,0x6e,0x1b,0x53,0x31,0x20,0x3c,0x66,0xd4, 0x9c,0x3d,0x60,0x4e,0x49,0xfc,0xd2,0x3f,0xfb,0x6f,0xf0,0xec,0xb3,0x9f,0xc7,0x2f, 0xfd,0xe6,0xbf,0xc6,0xd6,0xc3,0x18,0x71,0x1c,0xf,0x36,0x9c,0x94,0x86,0x24,0x48, 0x5c,0xf2,0x72,0x8f,0x1c,0xf1,0x8d,0xc0,0x91,0xb0,0x26,0x20,0x18,0xea,0x8b,0x35, 0xfc,0xfd,0xef,0x7b,0x15,0xff,0xf4,0x7f,0xfc,0xcf,0xf1,0xcc,0xe9,0x39,0xb0,0x18, 0x90,0x5c,0x8e,0x3d,0x84,0x8f,0x4a,0x64,0x3b,0xd8,0x4b,0xc3,0x4d,0xa6,0x45,0x34, 0xd6,0x69,0x67,0xa8,0xe4,0x9b,0xeb,0x1c,0x99,0x6e,0x2,0x9a,0xb0,0xe0,0xfd,0x29, 0x8d,0xfe,0xa4,0x80,0x3,0x63,0x8c,0xbd,0xff,0xfe,0xfb,0x90,0x52,0xda,0x50,0x71, 0xfa,0x99,0xe,0x1c,0xa,0x69,0x51,0xda,0xf1,0x92,0xeb,0xf5,0xaa,0xf9,0xcd,0xc, 0x74,0xd6,0x3c,0x28,0x1d,0x85,0xc8,0xc1,0x63,0x2,0x4a,0xb,0x84,0x68,0xa1,0xca, 0xab,0x60,0xca,0x47,0x1d,0xc0,0xff,0xf4,0x5f,0xfd,0x30,0x7e,0xf2,0x3f,0xf9,0xfb, 0xf8,0xbd,0xaf,0xfe,0xd,0xee,0xde,0xbd,0x8b,0x66,0xb3,0x9,0x21,0x4,0x84,0x10, 0x99,0xe8,0xab,0x9c,0x92,0x75,0xb4,0x97,0x92,0x1d,0x54,0xfd,0x39,0xac,0x9d,0x5a, 0xc1,0x77,0xbd,0xf6,0x2c,0x5e,0xfb,0xf0,0x5,0x40,0x85,0xd0,0x2c,0x42,0x4,0x9e, 0xce,0x41,0x3f,0x26,0x29,0xb2,0x31,0x91,0x3,0x79,0xfc,0x9c,0x73,0xe8,0x2,0x15, 0x84,0xa2,0x7d,0xe7,0xc8,0x63,0xc,0xa5,0x82,0xa3,0x28,0xa2,0x7e,0xa6,0xa4,0x8c, 0x16,0x4e,0x78,0xe4,0x10,0x4,0xc1,0x5b,0x5a,0xeb,0x97,0xc3,0x30,0x1c,0x6a,0x62, 0x9b,0xc6,0x28,0xd,0x98,0x78,0x60,0xcc,0x34,0x8c,0x35,0xaa,0x35,0x90,0x14,0x78, 0x3e,0x72,0x98,0xc6,0x13,0x3b,0x2a,0xf9,0xdd,0x44,0x46,0x10,0x3c,0x0,0x47,0x3, 0x31,0xfa,0x8,0x84,0xf,0xc1,0x1,0x9d,0xf4,0x70,0x65,0x95,0xe3,0xbf,0xf8,0x47, 0x1f,0x85,0x94,0x2f,0x39,0xc2,0x6d,0x83,0x3c,0x6d,0x9,0xc,0xc7,0xe0,0x40,0xc5, 0x40,0x35,0x8e,0xc3,0x24,0x7,0x93,0x84,0xc3,0xf3,0x7d,0x8,0x5,0x80,0x1f,0x8f, 0x9a,0xcb,0xa8,0x3a,0x9e,0xfb,0x33,0x97,0x59,0x54,0x54,0x7,0x1c,0x15,0xb9,0xbb, 0x11,0x6,0x39,0x70,0x51,0x14,0xa1,0x5e,0xaf,0x43,0x6b,0x2d,0xf3,0xc0,0x40,0xdf, 0x97,0x80,0x71,0x2,0xc0,0x21,0xfd,0x20,0xff,0xde,0xef,0xfd,0xde,0xef,0xb5,0xc3, 0x30,0x9c,0x59,0x5b,0x49,0x6b,0x9d,0x69,0x18,0x52,0x4a,0xa1,0x5a,0xad,0xa2,0x5a, 0xad,0x66,0x64,0x39,0xa4,0x94,0xa9,0x31,0x8a,0x1,0x5,0x36,0x37,0x68,0xc8,0xf5, 0xb6,0x8f,0xc2,0x1,0xeb,0x57,0x34,0xa2,0x18,0xa8,0x78,0x1c,0x52,0xd6,0xa0,0x58, 0x8,0x28,0xd,0x21,0x2,0x40,0x3,0x52,0x69,0x5b,0xe4,0x53,0x2a,0x23,0x46,0x86, 0x24,0x51,0xfb,0x1e,0xac,0x52,0xae,0x43,0x6,0x7f,0x68,0x8,0x84,0x86,0x45,0x17, 0xfb,0xd0,0xa,0xf0,0x2a,0x3e,0xc2,0x58,0xc1,0xb,0x52,0x9d,0xa5,0x63,0x12,0x2d, 0x8c,0x4a,0x27,0xd1,0x2d,0x48,0x69,0xd8,0xee,0x3e,0x1d,0x27,0xc9,0x5d,0x34,0x27, 0x42,0xa7,0x7d,0x3e,0x49,0x92,0x60,0x6e,0x6e,0xe,0x65,0x4a,0xe9,0x4,0x83,0x83, 0x83,0xee,0x21,0xe7,0x3c,0x93,0x3f,0x9f,0x96,0xce,0x4a,0x74,0x47,0x9d,0xaa,0x5a, 0x9a,0x48,0xa4,0x8a,0x6a,0xb5,0x82,0x56,0xab,0x6d,0x3d,0x94,0x49,0x85,0xe9,0x3c, 0x40,0x1c,0x5,0x70,0x90,0xaa,0x82,0xc0,0xf,0xa1,0x95,0x80,0xc7,0x3c,0x28,0xf8, 0x80,0xc7,0xa0,0xc1,0xa0,0x24,0xc0,0xb9,0xce,0x6c,0x32,0x21,0x6,0x2,0x7d,0x9e, 0x57,0xf6,0x42,0x1c,0xf9,0x8d,0xc0,0x0,0x26,0xab,0xe6,0xb3,0xe,0x22,0x68,0x26, 0x91,0x68,0x86,0x6a,0x50,0x5,0x64,0x4,0xcd,0x8f,0x3e,0x8f,0x7f,0x9c,0x7e,0x59, 0xbe,0x3b,0xba,0xa8,0xc7,0xa8,0xa8,0xd9,0x6d,0xd4,0xa8,0x5c,0xa5,0x14,0xe2,0x38, 0x86,0x94,0x92,0xba,0xa3,0xc7,0x1,0x57,0x69,0xfc,0xc7,0x19,0x1c,0x9c,0xf,0x50, 0xd6,0xeb,0x75,0xf4,0xfb,0xfd,0xb1,0x29,0xa0,0x62,0x2b,0x50,0x90,0x89,0x84,0x94, 0xbe,0xd5,0x66,0x12,0x1c,0x58,0x99,0xaf,0xe3,0xe1,0xf6,0xae,0x89,0x18,0xb4,0x46, 0xa2,0x13,0x48,0x19,0x43,0x6b,0xdf,0xe4,0x3d,0x35,0x87,0xd2,0xc,0xd0,0xc5,0x6d, 0xfb,0x8c,0x31,0x3c,0xee,0x71,0x9,0x8c,0x69,0x28,0x4,0x0,0x47,0xda,0x4d,0x4a, 0x1a,0x50,0x1a,0x4c,0x98,0xbc,0x44,0x7e,0xf3,0x64,0x37,0x66,0x99,0x5a,0x3a,0xd2, 0x7,0xab,0x69,0x5,0x80,0xf9,0xc7,0x44,0x83,0x2,0x29,0x8f,0x80,0x7,0x47,0x22, 0xf1,0x95,0x57,0x59,0xcd,0xa7,0x2f,0xf3,0x72,0x37,0xb4,0x77,0x93,0xc4,0x48,0xbe, 0x40,0x1a,0xf5,0xd4,0xc0,0x17,0xe0,0x4c,0x43,0x69,0xd3,0xbb,0x40,0x7d,0x4d,0x45, 0x72,0x39,0x79,0x50,0x71,0x53,0xa5,0x61,0x18,0x42,0x4a,0x89,0xfb,0xf7,0xef,0xff, 0xc8,0xe5,0xcb,0x97,0x4b,0x10,0x38,0xc9,0x69,0x25,0x8a,0x1e,0xde,0x7e,0xfb,0x6d, 0xdc,0xbb,0x77,0xcf,0x65,0x22,0xcc,0xb4,0xf2,0x34,0xd8,0x46,0xa3,0x61,0x7e,0xce, 0x30,0xcc,0x56,0x62,0xc,0xa,0x12,0xa2,0x60,0x1e,0x82,0x7b,0xd8,0xea,0x63,0x24, 0x5e,0x54,0x5c,0x10,0x2c,0xc1,0xa1,0x5c,0xfb,0x3,0x87,0x22,0xdb,0x2a,0x2a,0x18, 0x17,0xfd,0x4b,0xfb,0x92,0x34,0x95,0x5c,0x69,0x9c,0x69,0xce,0x74,0xee,0xc,0x3, 0xa2,0xd5,0xef,0xf7,0xe1,0x79,0x1e,0x5e,0x7f,0xfd,0xf5,0x7f,0x53,0xe2,0xc2,0x9, 0x7,0x7,0x5a,0x8b,0x8b,0x8b,0xb8,0x75,0xeb,0x16,0xa2,0x28,0x9a,0x1a,0x1c,0x5c, 0x43,0xa5,0xfa,0x2,0xfd,0x7c,0x61,0x61,0x1,0xc2,0x1b,0xf0,0xa9,0xa5,0x56,0x88, 0x95,0x44,0xa2,0x15,0x2,0xa0,0x30,0xc5,0x34,0xa4,0x43,0x7f,0xec,0xdf,0x6a,0x55, 0x5a,0x5b,0xb9,0xf6,0xed,0x74,0xe4,0x23,0x87,0x51,0x62,0x79,0x6e,0xca,0x88,0x7e, 0x2e,0xa5,0x44,0xad,0x56,0xcb,0x80,0x3,0xf5,0x29,0x4c,0xeb,0xf4,0x51,0x4a,0x8a, 0x31,0x86,0x7e,0xbf,0x4f,0xe2,0x9a,0x61,0xf9,0xe9,0x9c,0xbc,0xc5,0x73,0xc6,0xa4, 0x19,0x63,0xec,0xee,0xdd,0xbb,0x3f,0x2,0x0,0x71,0x1c,0xcf,0x9c,0x2b,0xa7,0x30, 0xd6,0x35,0xc8,0x6a,0xb5,0x8a,0x5a,0xad,0x86,0x28,0x8a,0x20,0xa1,0xa1,0x15,0x43, 0x2c,0x8d,0x51,0x26,0x5a,0x8d,0x64,0x58,0x1c,0xd7,0xd,0x5c,0xae,0x72,0x1d,0xc6, 0x9a,0x76,0xf6,0xc9,0xa8,0x6,0x53,0x97,0xa9,0x44,0x7,0xbc,0x4b,0x14,0x99,0xa4, 0x9b,0x46,0xc,0x25,0xfa,0x3e,0x8a,0x22,0x2c,0x2c,0x2c,0x94,0x1f,0xcc,0x93,0x0, 0xe,0xb4,0x5e,0x7f,0xfd,0xf5,0xdf,0x15,0x42,0xa0,0xd7,0xeb,0x8d,0x34,0xb6,0x51, 0x34,0x39,0x20,0xcb,0x7e,0x30,0x5,0x59,0xf,0x4b,0xf3,0xb,0x48,0xc2,0xc8,0xa4, 0x95,0x18,0x20,0x13,0x3d,0xe8,0x8b,0x0,0x46,0x4e,0x89,0x2b,0xa9,0xa0,0xe5,0x2a, 0x17,0xa,0xf7,0x43,0x7e,0x4a,0xe1,0xb8,0xbd,0x4a,0xb5,0x2,0xb7,0x33,0x9a,0x9c, 0xb7,0x69,0xe5,0xf8,0x5d,0x6d,0xa5,0x38,0x8e,0x4b,0x70,0x78,0x92,0xd2,0x4a,0x8c, 0x31,0xae,0xd,0xcd,0x28,0xfc,0xea,0x57,0xbf,0x8a,0x6e,0xb7,0xbb,0x67,0xaf,0x59, 0x4a,0x9,0xcf,0xf3,0xac,0x11,0x2e,0x2f,0x2d,0xe2,0xee,0xdd,0x3b,0x50,0xb1,0x19, 0x26,0xa4,0x84,0x82,0x4a,0x24,0x98,0xa7,0xc1,0xb8,0x2e,0x1c,0x3f,0x38,0xce,0x53, 0x1a,0x96,0xf8,0xd6,0x47,0x76,0x33,0x97,0xab,0x5c,0x87,0x61,0x57,0xa3,0xe4,0x2e, 0x8a,0xc0,0x81,0x94,0x53,0xd,0xdd,0x7a,0x10,0x35,0xb8,0xd4,0xf3,0x69,0xf6,0x37, 0x39,0x7d,0x74,0x36,0x28,0xa5,0xfe,0x8f,0xb2,0x10,0xfd,0x64,0x44,0xe,0xf6,0x43, 0x5e,0x59,0x59,0x41,0x14,0x45,0x96,0xd2,0x3a,0x6d,0xf4,0x90,0x4f,0x2d,0x91,0xb7, 0xb1,0xbc,0xb0,0x88,0x1a,0xf5,0x3b,0x24,0x2a,0xf3,0x37,0x5a,0xaa,0xc2,0x10,0x78, 0xda,0x83,0x96,0x54,0x27,0x1f,0xef,0x6d,0xb4,0x87,0x57,0xae,0x72,0x1d,0x86,0xa3, 0x51,0x94,0x7e,0x2d,0x2,0x8,0xda,0x4f,0x41,0x10,0xd8,0xd4,0x10,0x81,0x43,0x3e, 0x72,0x1f,0xb7,0xb7,0x5d,0x4a,0x7b,0xb7,0xdb,0x45,0xb5,0x5a,0xc5,0xd5,0xab,0x57, 0x7f,0xae,0xfc,0x64,0x4e,0x38,0x38,0x38,0xdd,0x8c,0x9c,0x31,0xc6,0x96,0x96,0x96, 0xa0,0xb5,0x46,0x18,0x86,0x53,0x37,0x70,0xb9,0x86,0x19,0xc7,0xb1,0x35,0x26,0xe2, 0x42,0xd7,0x2b,0x55,0x68,0x39,0x60,0x2b,0x49,0xa9,0xa1,0x21,0xa7,0xca,0x7b,0x9e, 0xa4,0x4d,0x5d,0xae,0x72,0x1d,0xe6,0x1a,0x15,0x41,0xb8,0x91,0x3c,0x15,0xb3,0xa7, 0x2d,0x46,0xbb,0xe0,0xa0,0x94,0x42,0x18,0x86,0xd4,0xdf,0x10,0xb2,0xd2,0xc0,0x4f, 0x36,0x38,0x10,0x30,0xa4,0x69,0x25,0xb6,0xbe,0xbe,0x5e,0x53,0x4a,0xa1,0xd7,0xeb, 0x65,0xf4,0xdc,0xdd,0xaf,0xf3,0x21,0x6d,0xde,0x2b,0x21,0xa3,0x24,0x91,0xaf,0xd3, 0xa7,0x57,0xd0,0xf,0x7b,0x69,0xd4,0x20,0x91,0x48,0x89,0x5e,0x18,0x83,0x71,0x6f, 0x10,0xfe,0x2a,0x33,0x3b,0x61,0x2f,0xf3,0xab,0x27,0x98,0xf6,0x88,0xdb,0x41,0xbe, 0x95,0x83,0x9b,0xd6,0xc,0x86,0x63,0xc5,0x4a,0xcd,0xbd,0x72,0x1d,0xd8,0xa1,0x9f, 0x67,0x1a,0xd,0xba,0xf2,0xc9,0xab,0xe7,0x66,0xfc,0xb5,0x33,0x88,0x47,0x4a,0x9, 0x9f,0x29,0x54,0x2b,0x3e,0xa0,0x7,0x69,0x24,0x52,0x41,0x98,0xb6,0xe6,0xe0,0xca, 0x74,0xf7,0xfb,0x7d,0x2c,0x2f,0x2f,0x43,0xa7,0xab,0xfc,0x74,0x4e,0x7e,0xe4,0xa0, 0x52,0x2f,0x40,0x3,0x8,0x1b,0x8d,0x6,0x3a,0x9d,0x4e,0xe1,0xa4,0x37,0x57,0x2b, 0xc9,0xd,0x3b,0x5d,0xcf,0x85,0xd8,0x4e,0x64,0x58,0xf3,0xf3,0xf3,0xf0,0x3c,0xcf, 0x36,0xe5,0x90,0x1,0xdb,0xf4,0xd2,0xc,0x93,0xe1,0x8e,0xc7,0xdc,0xde,0xd2,0xc0, 0xca,0x75,0xb0,0x11,0x28,0x39,0x61,0x2e,0x30,0xb8,0x91,0x40,0x9e,0x14,0xe2,0xd6, 0x1b,0xdc,0xbf,0x25,0xa,0xeb,0xa4,0x42,0x76,0x7e,0x7e,0x3,0xa5,0x94,0x0,0x60, 0x69,0x69,0xa9,0xfc,0x50,0x4e,0xf0,0x72,0xb,0xd2,0x4,0xa,0x2c,0x8d,0x1e,0xf0, 0xf6,0xdb,0x6f,0xe3,0xe6,0xcd,0x9b,0xb6,0x19,0x2e,0xaf,0xb5,0x92,0x67,0x49,0xe4, 0x7f,0x16,0xc7,0xb1,0x15,0xef,0xd3,0x2a,0xc1,0xfc,0xfc,0x3c,0xaa,0xd5,0xaa,0x55, 0x72,0x34,0x0,0x1,0xc4,0x4a,0xc2,0x1b,0xea,0x75,0xc0,0xd8,0xb6,0xfe,0x61,0xce, 0xf7,0xa4,0x93,0x98,0x15,0x86,0xde,0x8f,0x33,0xb5,0x54,0xa4,0x23,0x55,0xae,0x72, 0x8d,0x4b,0x15,0xd1,0x4a,0x92,0x4,0xd5,0x6a,0x75,0xa8,0xc9,0x4d,0x6b,0x96,0x39, 0xec,0x29,0x7a,0x68,0xd4,0xab,0x99,0x8,0x3f,0xc,0xc3,0x91,0x9a,0x4a,0xa3,0x16, 0x91,0x4c,0x3a,0x9d,0xe,0x84,0x10,0x38,0x7b,0xf6,0x6c,0xb5,0xc,0x1a,0x9e,0x8c, 0xb4,0x92,0x72,0xff,0x65,0x8c,0xb1,0xd5,0xd5,0x55,0x68,0xad,0xd1,0xeb,0xf5,0x32, 0x1c,0xe7,0x71,0x87,0x9f,0xfb,0x2f,0xb5,0xe5,0xd3,0x7d,0x83,0x20,0xc0,0xc2,0xc2, 0x2,0xe2,0x38,0xca,0x8,0x77,0xe5,0x9b,0xe6,0xa6,0xa9,0x37,0x14,0x1,0xc6,0x7e, 0xf,0xeb,0xc7,0xe1,0x9,0x96,0x85,0xeb,0x72,0xcd,0x62,0xaf,0xa3,0xb4,0xce,0xdc, 0xfd,0x43,0x11,0x3c,0x1,0x3,0x63,0x6c,0x28,0x72,0xd8,0x4b,0xf,0x13,0xed,0xd3, 0x7e,0xbf,0x8f,0xf9,0xf9,0x79,0x0,0x88,0xca,0x4f,0xe6,0x9,0x0,0x7,0x2,0x4, 0xf7,0xdb,0xb3,0x67,0xcf,0xd6,0x84,0x10,0xe8,0x74,0x3a,0x19,0xc3,0x73,0x43,0xd7, 0x3c,0xb3,0x28,0xcf,0x92,0x20,0xe3,0x64,0x8c,0x41,0x70,0x60,0x75,0x65,0x19,0xc8, 0x1,0x3,0x15,0xaf,0x8b,0xfa,0x26,0xa6,0x5,0x88,0xa3,0x9c,0x5a,0x2a,0x9d,0xab, 0x72,0x1d,0xe4,0x72,0x23,0x79,0x77,0xdf,0xe5,0xa7,0xba,0xd1,0xfe,0xf4,0x7d,0xdf, 0x16,0xa3,0x9,0x5c,0xf2,0x14,0xd6,0x69,0x9a,0xe0,0x3c,0xcf,0x43,0x18,0x86,0xe8, 0xf7,0xfb,0x38,0x7d,0xfa,0x74,0xa9,0xa5,0xf4,0x24,0x81,0x83,0xb,0x12,0x69,0x4, 0x11,0x35,0x1a,0xd,0xf4,0x7a,0x3d,0x24,0x49,0x32,0x52,0xb5,0xb1,0x28,0xbd,0x44, 0x5f,0x87,0x61,0x68,0x7e,0xa6,0x4d,0x8d,0x61,0x69,0x69,0x9,0xd5,0x6a,0xd5,0xfe, 0x9c,0x6a,0xe,0x54,0x83,0x98,0x95,0xa9,0x74,0x5c,0xbc,0xee,0x93,0xc0,0xba,0x2a, 0xd7,0xd1,0xb1,0x25,0xe1,0x48,0xdc,0xe7,0xf,0xf1,0x1,0x1b,0xd0,0x78,0xfa,0x95, 0x4a,0x25,0x43,0x20,0x21,0x67,0x6c,0x54,0xca,0x6a,0xd4,0x73,0xfa,0xbe,0x8f,0x76, 0xbb,0x4d,0x45,0xee,0x9f,0x2d,0x70,0x28,0xcb,0x75,0x52,0xc1,0x21,0x3f,0x98,0x43, 0x6b,0xad,0xd6,0xd6,0xd6,0xd0,0xef,0xf7,0xd1,0xef,0xf7,0xc1,0x39,0x1f,0x9a,0x8, 0x55,0x64,0x1b,0xee,0xcf,0xa2,0x28,0xca,0x84,0xb9,0x41,0x10,0xe0,0xd4,0xa9,0x53, 0x48,0x92,0xd8,0x7a,0x30,0x4a,0x61,0xa8,0x48,0x7d,0xd8,0x54,0xd6,0x47,0x7d,0x50, 0x1f,0x95,0x71,0xa7,0xe5,0x3a,0xde,0xa0,0xe0,0x16,0xa2,0xf3,0xcd,0x6f,0xf9,0x22, 0x34,0x45,0xed,0xf9,0xf9,0xd,0xb4,0x27,0x67,0xb1,0x49,0x62,0x20,0xb6,0xdb,0x6d, 0xcc,0xcd,0xcd,0xe1,0x85,0x17,0x5e,0xf8,0x3f,0xe9,0xcc,0x28,0x3f,0x99,0x27,0x28, 0x72,0x70,0x3d,0x82,0x6b,0xd7,0xae,0x2d,0x11,0x75,0xad,0x28,0x4,0x25,0xa3,0xcc, 0x47,0x13,0x79,0x2f,0x45,0x8,0x1,0x28,0x53,0xc,0x5b,0x5e,0x5e,0xb6,0x20,0x10, 0x46,0x51,0x21,0x28,0xcc,0x72,0x88,0x1f,0xa7,0xe8,0xe1,0x28,0x0,0x55,0xb9,0x8e, 0xef,0x4a,0x92,0x4,0x9e,0xe7,0xd9,0x83,0x3f,0x2f,0xac,0xe7,0x7e,0x4d,0x7a,0x48, 0x24,0xb5,0xed,0xce,0x7d,0x1e,0xa5,0x44,0x30,0xf2,0xa0,0x48,0x8b,0xd8,0x61,0x18, 0x22,0xed,0x81,0x8a,0xf3,0x67,0x45,0xb9,0x9e,0x10,0x70,0xc0,0x80,0xde,0xd3,0x99, 0x9f,0x9f,0x47,0xab,0xd5,0xca,0xe4,0x2a,0x89,0xb9,0x40,0xe9,0x26,0xf7,0x70,0x77, 0xc3,0x5a,0xce,0x39,0xba,0xdd,0x2e,0x34,0x38,0xa4,0x56,0x50,0x32,0xc6,0xea,0xa9, 0x45,0x2c,0xd4,0x6b,0x88,0x53,0x60,0x48,0xa4,0x69,0xaa,0xa1,0x2,0x36,0x0,0x24, 0x52,0xf,0x3d,0xde,0x41,0x1,0xc4,0x5e,0xe,0x63,0xc6,0xcc,0x6d,0xf4,0x1a,0xf4, 0x4e,0x30,0x46,0xec,0xa9,0xe1,0x7e,0x8a,0xa2,0x48,0xa8,0xdc,0x5b,0xe5,0x9a,0x5, 0x18,0xe8,0xb0,0x76,0xeb,0x6,0x52,0x2b,0xd3,0xdf,0x90,0x46,0x17,0xb4,0x1f,0x6b, 0xd5,0x0,0x9c,0xd,0x80,0x20,0x49,0x12,0x84,0x61,0x98,0xf9,0xbe,0x8,0x60,0xdc, 0x8,0x84,0x7e,0xd7,0xed,0x76,0x11,0x86,0x21,0xd6,0xd7,0xd7,0xc1,0x18,0x13,0x4, 0xc,0x65,0xf4,0xf0,0x84,0x80,0x83,0x9b,0x52,0xa2,0x53,0x6f,0x75,0x75,0x15,0x61, 0x18,0x22,0x8a,0x22,0x9b,0x5a,0x22,0xe3,0x74,0xc5,0xb8,0xf2,0x7,0x1e,0xfd,0x8c, 0x8a,0xcf,0xe4,0xc1,0x8,0x21,0xb0,0xb2,0xb2,0x32,0x34,0x57,0xda,0x65,0x2e,0xed, 0xa5,0x53,0xfa,0x30,0xf,0xd9,0xbd,0x14,0x96,0x47,0x31,0xaa,0xca,0xfa,0x43,0xb9, 0xf6,0x1a,0x75,0xe6,0x3d,0xfd,0x7c,0x2f,0x2,0xed,0x1f,0xda,0x6f,0x6e,0x4a,0x89, 0x31,0x86,0x28,0x8a,0xec,0xd7,0xee,0x1c,0x8,0x7a,0x2c,0x77,0x6,0x7a,0x3e,0x8d, 0xdc,0xe9,0x74,0x50,0xad,0x56,0x71,0xf6,0xec,0xd9,0x86,0xd6,0x5a,0x96,0x9f,0xca, 0x13,0x2,0xe,0x6e,0x68,0x48,0x5f,0x53,0x61,0x7a,0x69,0x69,0xe9,0xb,0x61,0x18, 0xa2,0xdb,0xed,0x66,0xa8,0x74,0xee,0x54,0xa8,0x22,0xaf,0xdc,0x9d,0x35,0x1b,0x45, 0xd1,0x20,0x57,0xaa,0x81,0x33,0x67,0xce,0xd8,0xb4,0x53,0x92,0x24,0x88,0x95,0xb6, 0x5f,0xef,0xa5,0x30,0x7d,0x1c,0x56,0x9,0x10,0xe5,0xda,0xeb,0xa2,0x28,0xa1,0x48, 0x64,0x2f,0x5f,0x84,0xa6,0x8,0x3f,0x8,0x2,0x3b,0x91,0x91,0xf6,0x62,0xbf,0xdf, 0xcf,0xa4,0xa3,0xf2,0x64,0x12,0xf7,0xf1,0x5d,0xfb,0x8c,0xe3,0x18,0xed,0x76,0x1b, 0x2b,0x2b,0x2b,0xd0,0x5a,0x77,0xf3,0xce,0x64,0xb9,0x4e,0x30,0x38,0x8c,0xf8,0x90, 0x19,0x0,0x5c,0xba,0x74,0xe9,0x47,0xeb,0xf5,0x3a,0xda,0xed,0x76,0x26,0xf4,0x74, 0x87,0x8d,0xe4,0x29,0xa8,0xee,0x1,0x4f,0x5a,0x2c,0x94,0x3,0x55,0x4a,0x61,0x7e, 0x7e,0x1e,0x8b,0x8b,0xf3,0x88,0xd2,0x51,0x83,0x52,0x4a,0x44,0x52,0x65,0x42,0x62, 0xa5,0xd9,0xcc,0x0,0xf1,0xb8,0x53,0x34,0xa3,0x22,0x28,0x1a,0x73,0x5a,0x2,0x44, 0xb9,0xf6,0x12,0x35,0xe4,0xbb,0x94,0xf3,0x51,0x83,0xcb,0xf6,0x23,0x20,0xa9,0x56, 0xab,0x99,0xfa,0x5f,0x14,0x45,0x88,0xa2,0xa8,0x90,0x5d,0x58,0x24,0xd4,0xe7,0x36, 0xc9,0x75,0x3a,0x1d,0x24,0x49,0x82,0x73,0xe7,0xce,0x8d,0x74,0x26,0xcb,0x75,0x82, 0xd3,0x4a,0x5,0x1f,0x32,0xa5,0x98,0x92,0x73,0xe7,0xce,0xa1,0xdd,0x6e,0xdb,0x8, 0xc0,0x15,0xd5,0x1b,0xa7,0xe,0xe9,0xce,0x9b,0xa5,0xfb,0x4a,0x29,0x21,0x3c,0x86, 0xb5,0xb5,0xb5,0x4c,0x3a,0x49,0x4a,0x39,0x31,0xb5,0x74,0xac,0x37,0xb8,0x19,0x93, 0x5d,0x2,0x44,0xb9,0x66,0x4e,0x27,0x51,0x9a,0x27,0x5f,0x84,0x76,0x6d,0xc8,0x4d, 0xcf,0xa,0x21,0xe0,0xfb,0xbe,0x2d,0x5c,0x3,0xb0,0x3a,0x69,0xae,0x46,0x5a,0x51, 0xa4,0x5f,0xa4,0x84,0xd0,0x6a,0xb5,0x10,0x4,0x1,0x2e,0x5c,0xb8,0x50,0x49,0x35, 0xd8,0x4a,0xa3,0x7d,0x92,0xc0,0x21,0x1f,0x45,0xb8,0x6,0xe0,0x79,0xde,0xcf,0x4a, 0x29,0xb1,0xbb,0xbb,0x9b,0x19,0x1d,0x9a,0x17,0xe0,0x2b,0x9a,0xc3,0x40,0xd1,0x2, 0x9,0x7d,0x11,0xa8,0xac,0x2c,0x2e,0xa1,0x5e,0xaf,0x23,0xc,0xfb,0x16,0x14,0x22, 0xa9,0x2c,0xc3,0x49,0x29,0x53,0x64,0x3b,0x6a,0xd1,0xc3,0xe4,0xe2,0xf4,0x84,0xd, 0x3f,0x2,0x20,0xca,0xfd,0x56,0xae,0x51,0x0,0xe1,0xd6,0x2,0x8a,0x7a,0x1a,0x5c, 0xfa,0x2a,0x51,0xc6,0x9,0x4,0x38,0xe7,0x76,0x38,0x8f,0x5b,0x63,0x70,0x45,0xfc, 0xf2,0x7b,0x98,0x9e,0x8f,0x52,0xbf,0xbd,0x5e,0xf,0xa7,0x4e,0x9d,0x82,0xd6,0x3a, 0x82,0xa3,0x45,0x53,0x16,0xa4,0x9f,0x10,0x70,0x18,0xf7,0x21,0xbf,0xf0,0xc2,0xb, 0xff,0x7c,0x69,0x69,0x9,0xcd,0x66,0x13,0x71,0x1c,0x8f,0x2c,0x68,0x8d,0xea,0x96, 0x36,0xd1,0x43,0xf,0x51,0xd4,0xb7,0xd1,0x83,0xef,0xfb,0x58,0x5b,0x5b,0x33,0x35, 0x7,0xaa,0x3d,0xa4,0x46,0xec,0xd2,0x5b,0x8f,0x6a,0x7a,0xa9,0x8,0x24,0x66,0xe9, 0xe6,0x2e,0xaa,0xd5,0x94,0xfb,0xac,0x4,0x82,0x51,0x29,0xa5,0xfc,0x9e,0x72,0x1, 0x82,0xea,0xc,0x14,0x35,0x54,0xab,0xd5,0x4c,0xca,0xb7,0xd7,0xeb,0xd9,0x28,0xc2, 0xa5,0xc1,0xe6,0x23,0x91,0x22,0xad,0xb4,0x56,0xab,0x5,0x29,0x25,0xce,0x9f,0x3f, 0x4f,0xbf,0x2b,0x8b,0xd1,0x4f,0x12,0x38,0xb8,0x45,0x68,0xf7,0x67,0xf4,0xbd,0xd6, 0x3a,0x39,0x73,0xe6,0x4c,0xa6,0x21,0xae,0x48,0xad,0xb5,0x8,0x20,0xe8,0xf7,0x51, 0x14,0xd9,0x82,0x18,0xe9,0xe4,0xad,0xad,0xad,0x41,0x8,0x61,0x6b,0xd,0xae,0xf7, 0xb3,0xdf,0xd9,0xd2,0x87,0x1,0x10,0xd3,0x3c,0xe4,0xb8,0xeb,0xb4,0xaf,0x83,0x3d, 0x3a,0x10,0x2b,0xd7,0xf1,0x6,0x8a,0x51,0x85,0x62,0x17,0x1c,0x68,0xdf,0x10,0xc5, 0x3c,0x8,0x82,0x4c,0x8d,0xcf,0xed,0x53,0xa2,0x9a,0x44,0x5e,0x45,0xd9,0xfd,0xd7, 0x65,0x12,0xb6,0x5a,0x2d,0x70,0xce,0xb1,0xbe,0xbe,0xee,0x33,0xc6,0x78,0x6a,0xb7, 0x7c,0x92,0x43,0x59,0xae,0x13,0x2,0xe,0x45,0xa9,0xa4,0xbc,0x56,0xfb,0x87,0x3e, 0xf4,0xa1,0x79,0xce,0x39,0x76,0x77,0x77,0x33,0x86,0x95,0xf,0x4f,0x47,0xf3,0xf8, 0x39,0xba,0xdd,0xfe,0xc0,0x8,0x55,0x82,0xaa,0xc7,0x70,0x61,0xed,0x34,0xba,0x51, 0x84,0x28,0x8e,0xcd,0x8c,0x87,0x28,0x1c,0xa8,0x46,0xa6,0x37,0xa5,0x19,0x34,0xb8, 0xdd,0x8,0xb3,0xd0,0x5b,0xf,0xe4,0x0,0xe6,0x1a,0xe0,0x1a,0x9a,0xd,0x6e,0x2a, 0xfd,0x4f,0x33,0x85,0xa2,0xe9,0x70,0x5a,0x33,0x7b,0x83,0x32,0x37,0xa6,0x39,0x98, 0xe6,0x80,0x72,0x7e,0x87,0x6c,0x2e,0xb9,0x48,0xb3,0xaa,0x5c,0x4f,0x6,0x18,0xb8, 0xb6,0x4a,0x36,0x20,0x84,0x0,0xd3,0x18,0xee,0x27,0x82,0xb9,0x49,0x5,0x28,0xc9, 0xa1,0x94,0xf9,0x9b,0x46,0xbd,0xe,0xad,0x12,0x30,0x28,0x78,0x81,0x8f,0x4e,0xaf, 0x6b,0x7b,0x88,0xf2,0x73,0x57,0x46,0xed,0x55,0xca,0x8,0x44,0x51,0x84,0x4e,0xa7, 0x83,0xb,0x17,0x2e,0x0,0x80,0x22,0x59,0x7f,0x57,0xa0,0xb3,0x2c,0x48,0x3f,0x1, 0x69,0xa5,0x29,0x8c,0xb7,0x7d,0xea,0xd4,0x29,0x34,0x9b,0x4d,0xdb,0xe3,0x30,0xab, 0x5d,0x50,0x88,0x4b,0x75,0xb,0x21,0x4,0xce,0x9c,0x39,0x3,0xce,0x99,0x4d,0x2b, 0x69,0xad,0x6d,0x6a,0x49,0x16,0x8,0xf2,0xed,0xe7,0xe0,0x3f,0xa8,0x3,0xf7,0x51, 0x1d,0xdc,0x25,0x40,0x3c,0x39,0x2b,0x9f,0x66,0x74,0xed,0x5b,0xb3,0x61,0x9,0x7b, 0xa5,0x14,0x94,0xa4,0x6e,0xe8,0x4,0x71,0x1c,0x22,0x8,0x82,0x4c,0xa3,0x5c,0x1c, 0x46,0xb6,0xb7,0x61,0xec,0x41,0x90,0xce,0x88,0x70,0x9b,0xe1,0x3c,0xcf,0xb3,0x8e, 0x60,0x10,0x4,0x3f,0xeb,0x0,0xc3,0x48,0x7,0xb2,0x5c,0x4f,0x28,0x38,0x0,0xc0, 0xa5,0x4b,0x97,0x10,0x45,0x11,0x76,0x77,0x77,0xad,0xa1,0xce,0x62,0x1b,0x4a,0x29, 0x4b,0x89,0x25,0x2f,0x68,0x61,0x61,0x1,0xa7,0x97,0x57,0xd0,0xef,0xf7,0x21,0x93, 0x4,0x52,0x1a,0x70,0xa0,0xe8,0x41,0x3a,0x79,0xd5,0x59,0xc6,0x1a,0x1e,0x64,0x2a, 0x89,0xe9,0xc1,0xd,0x4a,0x67,0xbe,0x67,0x7,0xb0,0x35,0xc6,0xbd,0x87,0xe5,0xde, 0x7b,0xf2,0x22,0x88,0xa2,0x59,0x26,0xae,0x1d,0x48,0x29,0x21,0x13,0x9d,0x61,0xf9, 0x69,0xad,0x51,0xaf,0xd5,0x32,0x85,0x68,0x52,0x51,0x9d,0x66,0x5f,0xfa,0xbe,0x6f, 0x9b,0x54,0xa9,0x88,0xdd,0x6a,0xb5,0xb0,0xb4,0xb4,0x84,0x17,0x5e,0x78,0xe1,0x17, 0xf3,0x67,0x46,0x19,0x35,0x94,0xe0,0xe0,0x7a,0x36,0xec,0xc2,0x85,0xb,0xc1,0xdc, 0xdc,0x1c,0x9a,0xcd,0x26,0x0,0x58,0xf9,0x8c,0x49,0x92,0xbf,0x2e,0xa3,0x22,0xc, 0x43,0xc4,0x71,0x9c,0xd1,0x7c,0xb9,0x70,0xfe,0x1c,0x18,0x94,0x95,0xf0,0x96,0x60, 0xe8,0x86,0xb9,0xc2,0x74,0x4e,0x8a,0x78,0x2f,0x5,0xea,0xe2,0xc2,0xf0,0x78,0x60, 0x70,0x37,0xec,0xa3,0x3c,0xa8,0x4f,0x5a,0x13,0x60,0xb9,0x66,0x73,0x14,0xf2,0xc0, 0xe0,0xda,0xbf,0xcb,0xe2,0x23,0xfa,0x6a,0xa5,0x52,0x49,0xf,0xf8,0xc4,0x1e,0xf8, 0xfd,0x7e,0x1f,0x2a,0x91,0x23,0x1d,0xd,0x77,0x5f,0xba,0xc0,0x23,0x84,0x40,0xab, 0xd5,0x42,0xaf,0xd7,0xc3,0xe5,0xcb,0x97,0xed,0x18,0x61,0xa4,0x5a,0x30,0x14,0x41, 0x90,0x58,0x67,0xf9,0xa9,0x95,0x69,0x25,0xad,0xb5,0x8e,0xcf,0x9d,0x3b,0x87,0x7e, 0xbf,0x6f,0x35,0x5a,0xa6,0x7e,0x32,0x87,0xd9,0xd4,0x6e,0xb7,0x2d,0x65,0x2e,0x49, 0x12,0x2c,0x2f,0x2c,0xe2,0xf4,0xe9,0xd3,0xe8,0xf5,0x7a,0x6,0x1c,0x52,0x6f,0x88, 0xbe,0x9e,0x34,0xc2,0x70,0xd6,0xb0,0x3d,0xfb,0xba,0xc6,0x3,0xc3,0x51,0xf2,0x26, 0x4b,0x90,0x78,0x32,0x53,0x4d,0xf9,0x89,0x6f,0xae,0xd2,0x71,0x1c,0xc7,0x0,0x53, 0xa8,0x37,0xaa,0x0,0x94,0xf5,0xfe,0xc3,0x30,0xb4,0x83,0xba,0x26,0xd9,0x92,0x10, 0xc2,0x3a,0x6c,0x14,0x8d,0xb4,0xdb,0x6d,0xf8,0xbe,0x8f,0x2b,0x57,0xae,0x54,0xd2, 0xfb,0x29,0x27,0x85,0xc4,0xdc,0x73,0xa1,0xfc,0xa4,0xca,0xb4,0x12,0x0,0xe0,0x23, 0x1f,0xf9,0xc8,0x22,0x63,0xc,0x9b,0x9b,0x9b,0xf0,0x3c,0x6f,0xa4,0xdc,0x45,0xde, 0x8,0xdd,0x1c,0x6a,0xbb,0xdd,0x46,0x18,0x86,0x3,0xc3,0xd5,0x12,0x97,0xce,0x5f, 0x0,0x0,0x44,0x71,0x8c,0x7e,0x68,0x64,0x85,0xfb,0x71,0x54,0x38,0xc,0x68,0x3f, 0x7,0xe5,0x34,0xb5,0xa,0xf7,0xd7,0x47,0xc5,0xf4,0x67,0x99,0xb1,0x5d,0xae,0xe3, 0x1d,0x35,0x8c,0x8a,0x1e,0xb5,0xd6,0x96,0xda,0xed,0x36,0x90,0x92,0x54,0x86,0xab, 0x73,0xd6,0xed,0x76,0x11,0xc7,0x71,0xa6,0xe9,0x6d,0x92,0xf3,0x46,0x73,0x1b,0xba, 0xdd,0x2e,0x9a,0xcd,0x26,0x2e,0x5d,0xba,0x44,0xbd,0xd,0x99,0xc,0x2,0xd2,0x6, 0xd9,0x32,0x6a,0x28,0xc1,0x81,0x8c,0x82,0xe8,0x6b,0xbb,0x67,0xce,0x9c,0xc1,0xce, 0xce,0xce,0xd4,0xd1,0x3,0x19,0xb2,0x5b,0xf0,0x6a,0xb5,0x5a,0x96,0x8d,0x91,0x24, 0x9,0x16,0x17,0xe6,0xb0,0xba,0xba,0xa,0x99,0x36,0xc2,0xc5,0xa9,0x82,0x24,0xf5, 0x40,0xe4,0x23,0x88,0x22,0x89,0xef,0x59,0x80,0x61,0x94,0x5d,0x17,0x3,0x3,0x9f, 0x70,0x7b,0xb4,0x11,0x44,0x19,0x4d,0x9c,0xec,0x74,0xd2,0x68,0xea,0xea,0x40,0x8e, 0x9b,0xf6,0x5,0x63,0xc,0xb5,0x5a,0xcd,0x32,0x9a,0x38,0xe7,0xe8,0x75,0xba,0xe8, 0xf5,0x7a,0x43,0x52,0x19,0xa3,0x6e,0x79,0x75,0xe5,0x9d,0x9d,0x1d,0x70,0xce,0xf1, 0xd2,0x4b,0x2f,0x2d,0xe4,0x69,0xee,0x6e,0x11,0xba,0x8c,0x1a,0x4a,0x70,0x20,0xe3, 0x52,0x64,0x20,0x17,0x2f,0x5e,0x7c,0x8b,0x31,0x86,0xed,0xed,0x6d,0x2b,0xa8,0x37, 0x4d,0x4a,0xc9,0x8e,0xc,0x4d,0xc7,0x8f,0x12,0x2b,0x49,0x70,0x3,0x20,0xeb,0xeb, 0xeb,0x19,0x19,0x80,0x24,0x51,0x36,0xb5,0x54,0x24,0xb,0xbe,0xd7,0xc3,0x71,0x1a, 0x60,0x38,0x6a,0xe9,0x85,0x52,0x76,0xe3,0xc9,0x49,0x25,0x15,0x81,0x83,0xb,0xc, 0x94,0x76,0x55,0x4a,0x81,0xfb,0x1e,0x2a,0x95,0x4a,0x86,0xf6,0xda,0xed,0x76,0xad, 0xc4,0xf7,0x34,0x24,0xe,0xcf,0xf3,0xec,0xf8,0x51,0x12,0xd9,0x5c,0x5b,0x5b,0x83, 0xd6,0xba,0x55,0x94,0x3e,0x2a,0x8b,0xd1,0x25,0x38,0xc,0x45,0xe,0x64,0x20,0xe7, 0xcf,0x9f,0xff,0x8e,0x53,0xa7,0x4e,0x61,0x77,0x77,0x37,0xd3,0x31,0x4d,0xf6,0x42, 0x63,0xc,0x5d,0x23,0x77,0x67,0xdc,0xd2,0x6,0xd8,0xd9,0xd9,0x81,0xef,0xfb,0x60, 0x30,0xd1,0xc3,0xca,0xd2,0x1c,0xce,0xae,0xad,0xa0,0xdb,0x6b,0x19,0x70,0x90,0xa, 0x61,0x6c,0xa,0x6b,0x52,0x4a,0x28,0xcd,0x4c,0x31,0x2e,0xd7,0x1b,0xb0,0xf7,0x14, 0x93,0x99,0xbb,0x30,0x98,0xc1,0x60,0x6e,0x5a,0x2b,0x18,0x2a,0xf7,0xe4,0x9b,0x69, 0x18,0x1d,0xfe,0xd9,0xa8,0x5b,0xf1,0x63,0x4c,0x9e,0xe1,0x5b,0xf4,0x1a,0x47,0x49, 0x29,0x94,0xeb,0xf8,0x82,0x42,0xd6,0xa6,0x4d,0xbf,0x8c,0x52,0x83,0xa6,0x35,0x43, 0xf1,0x8e,0x21,0x55,0xc,0xd,0x89,0xe5,0xf9,0x39,0xc3,0xa0,0x4b,0x3d,0xff,0x7e, 0x14,0xa2,0xd3,0xeb,0x4e,0x9d,0x4e,0xa2,0xc8,0x9e,0x9c,0xbc,0x9d,0x9d,0x1d,0xda, 0xd3,0x3f,0x32,0xc6,0x51,0x2c,0x29,0xac,0x25,0x38,0xc,0x3c,0x5,0x37,0x72,0xd0, 0x5a,0x27,0x57,0xae,0x5c,0x41,0x14,0x45,0xd8,0xd9,0xd9,0x31,0x1e,0x8b,0x73,0xf8, 0x53,0x1f,0x44,0x51,0xd8,0xec,0x1e,0x6a,0x24,0x5,0x4c,0xd4,0x3b,0x29,0x25,0x2e, 0x5c,0xb8,0x80,0x46,0xad,0x8e,0x30,0xc,0x21,0x13,0x23,0xa7,0x91,0x2f,0x4e,0xbb, 0x45,0xb9,0xfd,0x1e,0x88,0x79,0x7,0x68,0xd2,0x63,0x15,0xd5,0x52,0xf6,0x92,0x1a, 0x2a,0xaa,0xc7,0x14,0xdd,0xc6,0x5d,0xd7,0x38,0xa5,0xce,0x93,0x9a,0x76,0x7a,0x12, 0x0,0x30,0x9f,0xa,0x22,0x87,0x2a,0x8c,0xa2,0xcc,0x1e,0xab,0xd5,0x6a,0xf6,0x50, 0x27,0x7,0x6c,0x67,0x67,0x27,0x73,0xe8,0x4f,0x6b,0x9f,0x34,0x98,0xab,0xd3,0xe9, 0x60,0x65,0x65,0x5,0xaf,0xbf,0xfe,0xfa,0x17,0x4a,0xed,0xa4,0x12,0x1c,0xa6,0x31, 0xd6,0x21,0x3,0xb9,0x70,0xe1,0x82,0xbf,0xb0,0xb0,0x80,0xdd,0xdd,0xdd,0x4c,0xa3, 0xd,0x79,0x30,0x79,0x8a,0x5c,0x3e,0x7f,0x4a,0x3a,0x2f,0xd4,0x9e,0x4f,0xdc,0xea, 0x46,0xad,0x86,0x73,0xe7,0xce,0x21,0x8e,0x6,0x82,0x7c,0x61,0x22,0xd1,0xef,0xf7, 0x33,0xa2,0x7c,0x45,0x29,0xa6,0x59,0x37,0xdf,0x5e,0x37,0xed,0xac,0x7f,0x33,0xee, 0xb0,0x9e,0x74,0xa0,0xbb,0x40,0x31,0xea,0x75,0x4e,0x4a,0x3b,0x9d,0x8,0x55,0xdb, 0x31,0xda,0x5d,0x27,0x15,0x20,0x5c,0x70,0x70,0x53,0x4a,0x24,0xa2,0x57,0xaf,0xd6, 0x32,0xac,0xbd,0x5e,0xaf,0x67,0x26,0x2f,0x16,0xcc,0x6a,0x98,0x44,0x18,0xd1,0x5a, 0xa3,0xd5,0x6a,0xa1,0xd3,0xe9,0xe0,0xea,0xd5,0xab,0x96,0x9d,0x54,0xa6,0x8f,0x4a, 0x70,0x98,0xc6,0xc3,0x16,0x39,0x90,0x90,0xcf,0x3c,0xf3,0xc,0xfa,0xfd,0x3e,0x5a, 0xad,0x56,0xc6,0xa8,0x8b,0x84,0xc2,0x46,0x79,0xe9,0x61,0x38,0x8,0x83,0x99,0x36, 0x61,0xf3,0xfa,0xd9,0x33,0x98,0x9f,0x9f,0x37,0x8c,0x8b,0xc4,0x30,0x96,0xc2,0x44, 0xda,0x71,0xa2,0x5a,0xa7,0xb2,0x1,0x5,0x2c,0xa6,0xc7,0xe1,0x75,0x4e,0x3a,0xf8, 0x27,0x81,0x45,0x51,0xd,0x65,0x9a,0xae,0xf0,0x22,0x20,0x39,0x69,0x5e,0xf7,0xb4, 0x80,0xbc,0xd7,0x9,0x82,0x47,0x15,0x10,0xf2,0xd7,0x4f,0xcc,0x23,0x8a,0xa4,0x1b, 0x8d,0x86,0xd5,0x4e,0xa2,0x45,0x85,0x64,0xd7,0x1e,0xa6,0xed,0x3,0x4a,0x92,0x4, 0xdb,0xdb,0xdb,0x58,0x5e,0x5e,0xc6,0x85,0xb,0x17,0x78,0x9,0xa,0x25,0x38,0xcc, 0xb2,0x32,0x7a,0x2a,0x5a,0x6b,0xfd,0xd4,0x53,0x4f,0x79,0x8d,0x46,0x3,0xdb,0xdb, 0xdb,0x19,0xb5,0xc7,0xbc,0x71,0x8e,0x9b,0xf7,0xa0,0x94,0xc2,0xd6,0xd6,0x8e,0x55, 0x94,0xd4,0xd2,0xe4,0x3f,0x2f,0xae,0x9f,0x7,0xd7,0x83,0xf9,0xd2,0xd4,0x20,0x17, 0x45,0x51,0x86,0xe7,0x4d,0x8f,0x37,0x29,0x82,0x38,0x88,0x43,0xa2,0x28,0xe5,0x73, 0x10,0x87,0x52,0x11,0x68,0x4e,0xa3,0xd4,0x3a,0xaa,0xef,0x63,0x54,0x51,0x73,0x52, 0x64,0x31,0xed,0xeb,0x38,0xec,0x43,0x78,0xd6,0xc7,0x9c,0xb6,0x9,0xf3,0xa8,0x82, 0xc5,0xa4,0x88,0x92,0xa4,0x64,0xc8,0xfe,0x83,0x20,0x40,0xad,0x52,0xb5,0xe2,0x7a, 0x8c,0x31,0xb4,0xdb,0x6d,0x2b,0x8a,0xe9,0xee,0x8d,0x69,0xd7,0xee,0xee,0x2e,0xc2, 0x30,0xc4,0xb,0x2f,0xbc,0x50,0x32,0x92,0xca,0x35,0x73,0xcd,0xa1,0x48,0x9c,0x4f, 0x3e,0xf7,0xdc,0x73,0x68,0xb7,0xdb,0xb6,0x6b,0x9a,0xa,0x61,0x45,0xf9,0xce,0x51, 0x9b,0x34,0x8a,0x22,0x34,0x9b,0x2d,0xdb,0x35,0xad,0x12,0x89,0x53,0x2b,0x2b,0x38, 0x73,0xe6,0xc,0xa2,0xa8,0x6f,0xbd,0xa5,0x30,0x31,0x21,0x35,0xa5,0x97,0xa8,0x53, 0x74,0x52,0x4,0x71,0x58,0x6a,0xae,0xd3,0x3e,0xee,0xa4,0x7a,0xc2,0xb8,0x3a,0xc3, 0x38,0x31,0xbe,0x59,0x0,0x6a,0xdc,0x21,0x3f,0xeb,0xe1,0x7b,0x58,0x91,0xc9,0x61, 0x1d,0xde,0xb3,0x46,0x98,0x8f,0xb,0x18,0x46,0x49,0x71,0x47,0x71,0xc,0x0,0xb6, 0xa9,0x6d,0x6e,0x6e,0xce,0xde,0xdf,0xe3,0x86,0xcc,0x41,0x51,0x3,0x39,0x69,0xae, 0xbd,0x4c,0x2,0xcb,0x28,0x8a,0xb0,0xb9,0xb9,0x89,0xd5,0xd5,0x55,0x9c,0x3f,0x7f, 0x5e,0x10,0x6d,0xbd,0x5c,0x4f,0xee,0xf2,0x66,0x30,0x60,0xed,0x82,0x44,0x2e,0x17, 0xc9,0xbf,0xf4,0xa5,0x2f,0xa9,0xad,0xad,0x2d,0x34,0x1a,0xd,0x54,0xab,0x55,0x9b, 0x1f,0x1d,0x57,0x94,0x76,0x53,0x50,0x8c,0x19,0xb5,0xd7,0xf9,0xf9,0x6,0x3c,0x2e, 0x20,0xb8,0x80,0x66,0xc0,0xb9,0x73,0xe7,0xd0,0x6c,0x36,0x11,0x86,0x21,0x3c,0xcf, 0x83,0x10,0x2,0x11,0x83,0x2d,0x80,0x7,0x41,0x0,0xa9,0x0,0xc1,0x47,0x8b,0xf3, 0xed,0x87,0xea,0x3a,0x4d,0x14,0x72,0x98,0xf5,0x8b,0x69,0xee,0x93,0x7f,0x8d,0xe3, 0xba,0xc6,0xc7,0xa5,0xf7,0xc6,0xbb,0x11,0x13,0x9a,0x6,0xf5,0xc1,0x47,0x69,0xa3, 0x1e,0xaf,0xe8,0xb3,0xd1,0x13,0xf0,0x3c,0xe5,0xa0,0xd,0xee,0xb,0xd,0x36,0xe6, 0xfa,0xf,0x7a,0x4d,0xfa,0x3c,0x34,0x33,0xd7,0x44,0xff,0x29,0x68,0x48,0xad,0x20, 0xa5,0xce,0xc8,0x71,0x2b,0xa5,0xd0,0x68,0x34,0x4c,0xc3,0x9b,0x54,0xf0,0xb8,0xe9, 0x68,0xa6,0xba,0x1f,0x35,0xc2,0x8d,0x52,0x49,0x1e,0x75,0x1d,0x3b,0x3b,0x3b,0x90, 0x52,0xe2,0xda,0xb5,0x6b,0x70,0x14,0x57,0x79,0x91,0xd8,0x5e,0xb9,0xca,0xc8,0x61, 0x24,0x48,0xb8,0x5a,0xee,0x64,0x34,0xd7,0xae,0x5d,0x43,0xbf,0xdf,0x47,0xa7,0xd3, 0xb1,0x11,0x3,0x1,0x43,0x51,0xe,0x7d,0x8,0x34,0x60,0x6a,0xd,0x5b,0x5b,0x5b, 0x6,0x0,0xd2,0x48,0x61,0x69,0x69,0x9,0x17,0x2e,0x5c,0xb0,0xf3,0x6f,0x89,0xb5, 0x94,0xa9,0x3d,0x14,0xc8,0x6b,0x1c,0xc6,0x21,0x35,0x4d,0x8a,0x62,0x54,0x84,0x30, 0xe9,0x7e,0xa3,0xa8,0xa8,0xe3,0xd2,0x58,0xc3,0x0,0xcb,0x26,0x82,0xda,0x7e,0xd3, 0x36,0x8f,0xcb,0xb3,0xde,0xef,0xb5,0x14,0x45,0x64,0x8f,0x53,0xcc,0x31,0xbf,0x2f, 0xf2,0x3f,0x57,0x39,0xb1,0x49,0xad,0x35,0xfa,0xfd,0x3e,0x82,0x20,0x40,0xa3,0xd1, 0xb0,0xf7,0x11,0x42,0xa0,0xdf,0xef,0x63,0x77,0x77,0x37,0x33,0x44,0x8b,0xf4,0x91, 0x8a,0x1c,0x99,0x22,0x3b,0x6c,0x36,0x9b,0x58,0x58,0x58,0xc0,0xb9,0x73,0xe7,0x5c, 0x59,0xc,0x55,0x8e,0x4,0x2d,0xc1,0x61,0x56,0xa3,0x56,0x79,0xc0,0xb8,0x74,0xe9, 0x92,0x58,0x5e,0x5e,0xc6,0xd6,0xd6,0x96,0x65,0x2e,0xb9,0x9b,0xae,0x68,0x0,0x50, 0xc6,0x40,0xb5,0x4,0x63,0x1a,0xbb,0xbb,0xbb,0x68,0x75,0xda,0x10,0xbe,0x67,0xa8, 0xae,0x51,0x1f,0x6b,0x67,0x4e,0x63,0xed,0xf4,0x29,0xf4,0x7a,0x1d,0xf4,0xfa,0x7d, 0x24,0x60,0xe8,0x46,0x31,0xda,0x3d,0xc3,0x5e,0x62,0x0,0x12,0x69,0x64,0x5,0x5c, 0x69,0x81,0xbc,0x7,0xb5,0x57,0x8f,0x6f,0xbc,0x97,0x3d,0x7a,0x86,0xc3,0x80,0x9f, 0x8e,0xa1,0x9f,0xe7,0x6f,0x85,0x33,0x20,0xa,0x1e,0x6f,0x54,0x87,0xf6,0x24,0x36, 0xcf,0xb8,0xe7,0xd5,0x9a,0x4d,0x61,0x28,0xc,0x1c,0x6c,0x48,0x8d,0xf6,0xa0,0x54, 0x69,0xf7,0x1d,0x5d,0x29,0x3d,0xd3,0x2d,0x7f,0xfd,0x87,0x35,0x43,0x63,0x92,0x54, 0x8b,0x7d,0xbe,0xf4,0xba,0xb4,0x34,0x32,0xdc,0x5a,0x31,0x28,0x9,0x44,0x32,0x41, 0x98,0xc4,0x88,0xe2,0x3e,0x18,0xd7,0xa8,0xd5,0x2b,0xe0,0xc2,0x5c,0xaf,0xe7,0x79, 0x88,0x92,0x18,0x9b,0x5b,0xf,0x33,0xf5,0xa6,0x24,0x49,0x6c,0x7a,0x29,0xaf,0xc9, 0xe4,0xfe,0x4b,0x7f,0xff,0xf0,0xe1,0x43,0xf4,0xfb,0x7d,0x7c,0xf8,0xc3,0x1f,0xde, 0x61,0x8c,0x89,0xfc,0x5e,0x2f,0x53,0x4c,0x25,0x38,0xec,0x77,0x13,0xab,0xf,0x7d, 0xe8,0x43,0xe8,0xf7,0xfb,0xb6,0x6f,0x61,0x9a,0xce,0xe9,0xbc,0xf7,0xec,0x79,0x1e, 0x1e,0x3e,0x7c,0x68,0x3d,0x1f,0x1a,0x52,0x72,0xf1,0xe2,0x45,0x78,0x9e,0x87,0x5e, 0xaf,0x67,0x67,0x51,0x93,0x38,0x98,0x3b,0xd9,0x8a,0xc6,0x8a,0x1e,0x86,0xb7,0x3b, 0x49,0x76,0xe3,0x20,0xd2,0x46,0xb3,0x78,0xf7,0x7,0xf1,0xda,0x8e,0x5a,0xe,0xfe, 0x51,0xd5,0x5,0xc6,0x45,0x9a,0x53,0x4d,0xf2,0xdb,0xe7,0x75,0x8e,0x93,0x41,0x21, 0x75,0x0,0x57,0x29,0x20,0x8e,0x63,0x54,0x2a,0x15,0x3b,0xfe,0xd3,0xe3,0xa6,0xc9, 0x94,0x24,0x6c,0x26,0x81,0x10,0x35,0xb9,0xd1,0xbe,0xa4,0xef,0xe3,0x38,0xc6,0xe6, 0xe6,0x26,0xd6,0xd7,0xd7,0x71,0xee,0xdc,0xb9,0x33,0x5a,0x6b,0x99,0x67,0x29,0xe5, 0x9d,0xc1,0x72,0x3d,0x19,0xcb,0x3b,0xc8,0x7,0x5b,0x5f,0x5f,0x67,0x67,0xcf,0x9e, 0xd5,0xf,0x1e,0x3c,0xb0,0x79,0xd1,0x99,0x90,0x2a,0x2d,0x64,0x87,0x61,0x88,0x9d, 0x9d,0x1d,0xac,0xae,0xae,0xda,0xd,0x52,0xaf,0xd7,0x71,0xf5,0xa9,0x2b,0xf8,0xf6, 0x7b,0xef,0xa2,0xd7,0xeb,0x99,0x1,0x24,0x4b,0x4b,0x88,0xe3,0x18,0xdd,0x5e,0xf, 0xf5,0x7a,0x3d,0x7b,0x90,0x3,0x53,0xa7,0x58,0xf6,0x97,0x33,0x9e,0xc,0xc,0x5a, 0x6b,0xec,0xf7,0xa,0xd8,0x88,0xeb,0xb1,0x91,0xd1,0x1e,0x1b,0xf2,0xe,0x1a,0x6c, 0x1e,0x69,0xb4,0x70,0x80,0x8f,0x33,0xee,0x6f,0x27,0x8b,0x34,0x8e,0x8f,0xc,0x46, 0xcd,0xa,0x2f,0x2a,0x42,0x9b,0x68,0x73,0x50,0x88,0x56,0x71,0x2,0x19,0xc5,0xf0, 0x7d,0x1f,0xf5,0x7a,0xdd,0x16,0x9a,0x5,0x17,0xe8,0x76,0xbb,0x56,0x9f,0x6c,0x9a, 0xbd,0x45,0x8d,0xa9,0x71,0x6c,0x1e,0x4f,0x6b,0x8d,0xfb,0xf7,0xef,0x93,0xd8,0xde, 0x8f,0x68,0xad,0x63,0xca,0x4,0x94,0x47,0x63,0xb9,0xe,0x2c,0x72,0x20,0x6f,0xe3, 0xde,0xbd,0x7b,0x1f,0x5,0x80,0xad,0xad,0xad,0x91,0x2c,0xa2,0x71,0xd2,0xdb,0xe4, 0xd1,0xec,0xec,0xec,0xa0,0xdd,0x6e,0xdb,0x59,0xb8,0x4a,0x27,0x38,0x75,0xea,0x14, 0xd6,0xd6,0xd6,0xd0,0xeb,0x76,0xc1,0x69,0xf0,0x39,0x98,0x1d,0x68,0xe2,0x46,0x10, 0x89,0x1c,0x6c,0x3e,0x8a,0x3e,0xe,0x32,0x4d,0x50,0x74,0x20,0x4c,0xd3,0xa7,0x70, 0x50,0x1e,0xfe,0xd,0x67,0x40,0x3f,0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0x28, 0xaa,0xeb,0xa3,0xe8,0xe3,0x38,0xec,0xdb,0xa3,0xf8,0xac,0xf2,0xbf,0x1f,0x75,0x80, 0xe7,0xdf,0xdf,0x71,0x8c,0xb3,0x49,0xc0,0x33,0xea,0xf3,0x32,0xff,0xb2,0x8c,0x76, 0x92,0x52,0xca,0xb2,0xf2,0x0,0x60,0x6e,0x6e,0xe,0x41,0x10,0x18,0x59,0x6d,0x66, 0xe,0x78,0xa2,0x8f,0x53,0x44,0x30,0x49,0x58,0x8f,0x9c,0x2f,0xd2,0x51,0xa2,0xfe, 0xa4,0x2b,0x57,0xae,0xe0,0xe3,0x1f,0xff,0xf8,0xbf,0x4a,0x5f,0x9f,0xc8,0xef,0xe9, 0x72,0x95,0x91,0xc3,0x7e,0xf,0xf,0x9d,0x36,0xc9,0x7d,0xe3,0xad,0xb7,0xde,0xc2, 0x3b,0xef,0xbc,0x83,0x85,0x85,0x5,0xd4,0x6a,0xb5,0xa9,0xbd,0x38,0xea,0x73,0x20, 0x40,0xd9,0xd8,0xd8,0x40,0xb5,0x5a,0x35,0xe9,0x29,0x6d,0x74,0x90,0x2e,0x9c,0x5b, 0x47,0xb3,0x69,0xba,0x38,0x6b,0xb5,0x5a,0xaa,0xa,0x5b,0x1,0xf,0x43,0x3b,0xc1, 0x8a,0x78,0xdf,0x4a,0x33,0x68,0x5,0x30,0x64,0x69,0xb5,0x7,0x61,0xf3,0x83,0xc7, 0x60,0x53,0xf7,0x24,0x1c,0xae,0x67,0xcd,0x72,0x11,0x45,0xf6,0x5a,0x27,0x5d,0xd5, 0x93,0x72,0xa,0x8c,0xfb,0xec,0x47,0x1,0xfe,0x34,0x7f,0x33,0x4d,0xf3,0xe1,0x38, 0x80,0x30,0x25,0x7,0x6d,0xa7,0x1e,0x26,0x49,0x62,0x6b,0x77,0xd5,0x6a,0xd5,0x8, 0xe8,0x25,0x12,0x22,0x4d,0xff,0xef,0xee,0xee,0xa2,0xd3,0xe9,0x4c,0xad,0x9f,0xe4, 0xfb,0xbe,0x65,0xfc,0xa5,0x63,0x3f,0xf1,0xfe,0xfb,0xef,0xa3,0x52,0xa9,0xe0,0xd5, 0x57,0x5f,0xad,0x3,0x10,0x5a,0x6b,0x49,0x69,0x25,0x97,0x91,0x58,0x46,0x12,0x65, 0xe4,0x70,0x10,0x4b,0x1,0xc0,0x2b,0xaf,0xbc,0xd2,0xa8,0xd5,0x6a,0x78,0xf0,0xe0, 0xc1,0x4c,0x7,0xa6,0x6b,0xe8,0x14,0xfe,0xd2,0xcc,0x8,0x23,0x8e,0xc7,0x50,0xad, 0x54,0x70,0xf5,0xa9,0xcb,0x36,0xf,0xdb,0xf,0x43,0x84,0x29,0x93,0xa9,0xdf,0x37, 0xfd,0x10,0x6e,0xee,0x56,0x29,0x5,0x30,0xb1,0x67,0x99,0x8d,0xfd,0x1e,0x38,0xd3, 0x7a,0xe2,0xfb,0xf5,0xe8,0xc7,0x3d,0xee,0x71,0xec,0x1e,0x9e,0xf5,0x1a,0xa7,0x7d, 0x8d,0x87,0xd1,0x5c,0xb7,0x9f,0xe8,0x2f,0xcf,0x4a,0x52,0x4e,0xa3,0x9b,0x52,0xa, 0x7e,0x20,0xd0,0x98,0xab,0x81,0xa7,0x4e,0x88,0xef,0xfb,0xe8,0x74,0x3a,0xb6,0xa7, 0x28,0x2f,0x78,0x39,0xce,0xf1,0xf2,0x7d,0x1f,0x8c,0x31,0x78,0x9e,0x87,0xed,0xed, 0x6d,0xec,0xec,0xec,0xe0,0x99,0x67,0x9e,0x1,0x80,0x3e,0xed,0xdd,0x7c,0x5a,0xa9, 0x4,0x86,0x12,0x1c,0xe,0x24,0xad,0x44,0x34,0x57,0xad,0x75,0xf7,0xf9,0xe7,0x9f, 0x47,0xbf,0xdf,0xb7,0xfc,0xe9,0x69,0xc1,0x81,0x7a,0x23,0xa8,0x70,0xb6,0xbb,0xbb, 0x8b,0x66,0xb3,0x69,0x27,0xc6,0x29,0x95,0x60,0x79,0x79,0x19,0x57,0x9f,0xba,0x82, 0x30,0xc,0x87,0xe8,0xad,0x4,0x10,0x14,0x9e,0xbb,0x1d,0xa6,0x7b,0x39,0xc,0xc7, 0x75,0x8,0xbb,0x69,0x6,0x8a,0x56,0xf6,0xda,0x39,0x3d,0x4a,0x5d,0x75,0x3f,0x1d, 0xcb,0xc3,0xf9,0x6c,0x7d,0x64,0xc1,0x63,0x12,0x2b,0x6b,0x5a,0xb6,0xd7,0xa4,0xbf, 0x1d,0xfd,0x77,0xd3,0x35,0x10,0x8e,0xa2,0x2f,0x4f,0xf6,0x9a,0xb4,0xe9,0x65,0x48, 0x6f,0xca,0xe9,0x65,0x48,0xd4,0x60,0xe,0x34,0xd9,0x72,0x92,0x24,0x8,0x2a,0x1e, 0xea,0xf5,0x3a,0x3c,0x2e,0xac,0x8d,0xf5,0xfb,0x7d,0x6c,0x6f,0x6f,0x23,0x8a,0xa2, 0x8c,0xf2,0xf1,0x2c,0x9f,0x53,0xaf,0xd7,0xc3,0xe6,0xe6,0x26,0x7c,0xdf,0xc7,0x9f, 0xfe,0xe9,0x9f,0xe2,0xf6,0xed,0xdb,0x5f,0xa7,0xbd,0xeb,0xce,0x6e,0x20,0x96,0x52, 0x99,0x5e,0x2a,0xc1,0x61,0xdf,0x69,0x25,0xfa,0x12,0x0,0xae,0x5d,0xbb,0xe6,0x2d, 0x2f,0x2f,0xe3,0xc1,0x83,0x7,0x53,0xd7,0x1d,0x68,0x4c,0x21,0xd,0x1e,0xa1,0x7f, 0xef,0xdf,0xbf,0x8f,0x38,0x8a,0xe0,0xfb,0x69,0x6e,0x55,0x29,0x9c,0x3d,0x7b,0x16, 0xa7,0x4f,0x9f,0x46,0xbf,0xdf,0x47,0x3f,0x8e,0x32,0x1b,0x8b,0x0,0x83,0x36,0xb3, 0xab,0xe4,0x5a,0x14,0xc9,0x4c,0xdb,0xe8,0x36,0xee,0xc0,0xe4,0x7c,0x0,0x10,0x7b, 0xf1,0x46,0xa7,0x1,0x85,0xfd,0x7a,0xdf,0xe3,0x80,0x61,0xbf,0xde,0xf3,0x5e,0x3c, 0xf7,0x59,0x40,0x69,0xbf,0xf7,0x9b,0x4,0xa2,0xa3,0xa2,0x8a,0x51,0xb5,0x85,0xa2, 0xc1,0x3c,0xb3,0xa4,0x94,0x8a,0xa2,0x6,0x6a,0x74,0xa3,0xfe,0x9d,0x6a,0xb5,0x8a, 0x7a,0xb5,0x66,0x9d,0x2b,0xc6,0x18,0x9a,0xcd,0x26,0x3a,0x9d,0x8e,0x5,0x6,0xfa, 0xdd,0x34,0xef,0x9,0xd9,0xd7,0xd6,0xd6,0x16,0xfa,0xfd,0x3e,0x2a,0x95,0xa,0x84, 0x10,0xf8,0xd2,0x97,0xbe,0xf4,0x32,0x63,0x6c,0xce,0x15,0xda,0x4b,0xb3,0x4a,0x25, 0x4b,0xa9,0x4,0x87,0x3,0x4d,0x7,0x90,0x71,0xc9,0x87,0xf,0x1f,0x7e,0x34,0x49, 0x12,0x6c,0x6c,0x6c,0xd8,0x6,0x1d,0xaa,0x29,0x8c,0x4a,0x25,0x91,0x74,0x37,0xfd, 0x4b,0x46,0xbd,0xb1,0xf5,0x10,0xb1,0x4c,0x20,0x4,0x43,0x92,0x44,0xe0,0x4c,0xe2, 0xea,0x53,0x97,0x31,0xd7,0xa8,0xa1,0xdf,0x6d,0xa3,0x13,0x46,0x8,0xa5,0x42,0x28, 0x15,0xda,0xfd,0x10,0xb1,0x4a,0xa7,0x5b,0x41,0x81,0x21,0xa5,0xb7,0x32,0x61,0xc5, 0xfa,0x86,0x39,0xed,0xcc,0xde,0x26,0xf5,0x14,0x14,0x4d,0x80,0xa3,0xd9,0xf,0x42, 0x30,0x7b,0x33,0x97,0xaf,0xcc,0xc0,0xf7,0x29,0x54,0x52,0xdd,0x83,0xc6,0x6d,0xce, 0x2a,0x8a,0x44,0x86,0xd2,0x11,0x5a,0xdb,0xdb,0x60,0x2a,0xc5,0xe0,0x36,0xa,0x14, 0xc7,0xf5,0x41,0x4c,0xe3,0x8d,0x4f,0xeb,0xd9,0x4b,0x5,0xf3,0xde,0xa7,0xbd,0x28, 0xf9,0xdb,0x34,0x69,0x98,0xb1,0x76,0x97,0xbb,0xd1,0xfb,0x0,0xc6,0x80,0x2,0xbd, 0xaf,0xa1,0x28,0xf,0xdc,0xa4,0x1f,0xc1,0xa1,0xc1,0x4d,0xbd,0xca,0xfd,0xd7,0xb1, 0x17,0x37,0x52,0x9c,0x4,0xb0,0x86,0xa9,0xc6,0x4d,0xad,0x20,0xed,0x63,0x80,0xe6, 0x50,0x12,0x90,0x89,0x86,0x92,0x48,0xfb,0x19,0x14,0xc2,0x44,0xda,0xa8,0x61,0x71, 0x61,0xe,0x81,0xe7,0xdb,0xc3,0x9f,0x28,0xde,0x24,0x91,0x41,0x7b,0x64,0x9c,0xa4, 0x7b,0x3e,0x8a,0xf5,0x3c,0xf,0xed,0x76,0x1b,0x9b,0x9b,0x9b,0x58,0x58,0x58,0xc0, 0xea,0xea,0x2a,0xe6,0xe7,0xe7,0xc1,0x18,0xc3,0xef,0xfc,0xce,0xef,0xb4,0xf2,0x25, 0x28,0xb7,0xd9,0xb5,0x3c,0x2a,0x4b,0x70,0xd8,0x4f,0x5a,0x89,0xe7,0xa3,0x88,0x4f, 0x7f,0xfa,0xd3,0x6f,0xbd,0xf4,0xd2,0x4b,0xd8,0xd9,0xd9,0xc1,0xd6,0xd6,0x16,0xaa, 0xd5,0xaa,0x65,0x4d,0x90,0xc1,0x92,0xd2,0x24,0xc6,0x1c,0x60,0x0,0xb0,0xbd,0xbd, 0x8d,0xed,0x87,0x5b,0x36,0xed,0x44,0x40,0xf3,0xec,0xb3,0xcf,0x42,0x30,0x8e,0x28, 0xc,0x11,0xa6,0x37,0xa4,0xfc,0xef,0x24,0x49,0x10,0x46,0x49,0x41,0xb7,0x29,0xcb, 0x48,0x20,0x9b,0xb0,0x1c,0xf6,0xe6,0x9c,0x29,0x33,0xd5,0x4c,0xf2,0x9b,0x92,0x36, 0xb1,0xa9,0x99,0x0,0x70,0xd2,0x3b,0x6e,0xe7,0x74,0xd1,0x5c,0xa,0xba,0xaf,0xeb, 0xf1,0x4d,0xeb,0xdd,0x8f,0xd3,0x11,0x9a,0x86,0xbf,0x3f,0xcb,0xe1,0x7c,0x54,0xeb, 0x16,0x79,0x6f,0x7e,0x9a,0x99,0x17,0xe3,0xde,0x9b,0xa2,0xb4,0xe1,0xa4,0xd4,0x92, 0x3b,0xef,0x99,0x58,0x47,0x60,0xc2,0x8a,0x48,0xba,0x7b,0x20,0xee,0xf7,0xc0,0xb5, 0x42,0xb7,0xdb,0xb5,0x12,0x34,0x54,0x3c,0xe6,0x9c,0xdb,0x2,0x34,0xd9,0x2b,0x45, 0xc3,0x94,0x8a,0xa5,0x7a,0x4,0xbd,0xe,0xda,0x23,0xa4,0xb3,0xc4,0x39,0x47,0x18, 0x86,0x20,0x9a,0xf9,0xa5,0x4b,0x97,0xe0,0x79,0x1e,0x16,0x17,0x17,0xd1,0x68,0x34, 0xf0,0xe0,0xc1,0x3,0xdc,0xbe,0x7d,0x5b,0xe7,0xae,0xbf,0x6c,0x80,0x2b,0xc1,0xe1, 0x40,0x22,0x6,0x55,0x54,0x83,0x78,0xe1,0x85,0x17,0x82,0xa5,0xa5,0x25,0x6c,0x6c, 0x6c,0xa0,0xd5,0x6a,0xd9,0xc6,0x38,0x17,0x24,0xc6,0xa5,0x53,0x68,0x5,0x9e,0x8f, 0xcd,0xcd,0x4d,0xb4,0x5a,0x1d,0x54,0x2a,0x15,0xc3,0xd9,0x66,0x1a,0xb5,0xa0,0x82, 0xab,0x57,0xaf,0x22,0x8e,0x43,0x84,0xfd,0x3e,0xe2,0x28,0xb2,0xb3,0x73,0x7b,0xbd, 0x5e,0x3a,0x20,0x28,0x5b,0xa0,0x56,0xda,0xe4,0x7f,0x8b,0xe,0xdd,0x41,0xe8,0xbf, 0xe7,0xf7,0x21,0x73,0x60,0xd0,0x21,0x4f,0x4c,0x2a,0x6,0x8c,0x14,0xd2,0xcb,0x47, 0x4,0x93,0x64,0xbd,0xf7,0xaa,0xaa,0x5a,0x28,0xdf,0xe1,0x44,0x1c,0x6e,0x14,0x32, 0x2e,0x1a,0x99,0xe5,0x36,0xab,0xe7,0x7f,0x98,0x8f,0x5f,0xf4,0xfa,0xa6,0x5,0xfc, 0x59,0x1a,0x20,0xdd,0x6e,0x7d,0xc0,0x74,0xf1,0xbb,0xf5,0x37,0x77,0xd4,0x27,0xa9, 0xaa,0xce,0xcf,0xcf,0xdb,0x91,0x9f,0x2e,0x15,0x9b,0x52,0x41,0x23,0xd9,0x4e,0x29, 0xc3,0xc9,0x7d,0x6c,0xb2,0x3f,0xea,0x6f,0x78,0xf8,0xf0,0x21,0xda,0xed,0x36,0x9e, 0x7e,0xfa,0x69,0x2c,0x2f,0x2f,0x63,0x6e,0x6e,0xe,0xb5,0x5a,0xd,0xf3,0xf3,0xf3, 0xa8,0xd7,0xeb,0xb8,0x7e,0xfd,0xfa,0x10,0x28,0x94,0xa9,0xa5,0x27,0x77,0x1d,0x68, 0x13,0x5c,0x5e,0xb9,0x35,0xa5,0xb6,0xc6,0xf7,0xee,0xdd,0xc3,0x97,0xbf,0xfc,0x65, 0xec,0xee,0xee,0xa2,0x52,0xa9,0xd8,0x30,0x99,0x66,0xdc,0x92,0x21,0x4f,0xc2,0x31, 0x21,0x7c,0x3c,0x78,0xf0,0x0,0x41,0x10,0xa0,0x52,0xa9,0xd8,0xcd,0x70,0xf6,0xf4, 0x29,0xc4,0xf1,0xd3,0x78,0xf7,0xdd,0x77,0xe1,0x79,0x9e,0xb3,0x89,0xab,0xf6,0xeb, 0x4a,0xa5,0x92,0x89,0x58,0xb4,0xe2,0xd0,0xc,0x90,0x5a,0x41,0x2b,0x80,0x33,0x2f, 0xd3,0x38,0xe7,0x2,0x4,0xe7,0x6c,0x26,0xb0,0x28,0xda,0xc0,0x4,0x12,0x36,0xb7, 0x9c,0x4b,0x53,0x14,0xa5,0x90,0xdc,0x71,0xaa,0xf9,0x21,0x49,0x45,0xb9,0xef,0xfc, 0x35,0x4c,0x4a,0x39,0x8c,0x93,0x51,0x1f,0x7,0x7a,0x47,0x79,0x4d,0x43,0x35,0x9d, 0xa5,0xbe,0xea,0x2,0x2,0x63,0xd3,0xf,0x7a,0x52,0xb9,0x22,0x37,0x18,0x87,0xd6, 0x6e,0xa4,0xaa,0xad,0x4,0xbd,0x52,0xa,0xbd,0x5e,0xf,0x95,0x4a,0x5,0x73,0x73, 0x73,0xf0,0xc4,0x20,0xb2,0x15,0x42,0xe0,0xc1,0x83,0x7,0xe8,0x76,0xbb,0x19,0x5b, 0xa0,0xb4,0x52,0x1e,0x4,0x28,0xda,0x70,0x89,0x1d,0x9c,0x73,0xb4,0x5a,0x2d,0x6c, 0x6c,0x6c,0xe0,0xe2,0xc5,0x8b,0xb8,0x7c,0xf9,0xb2,0xa5,0x82,0xf7,0xfb,0x7d,0xd4, 0xeb,0x75,0x48,0x29,0xb1,0xb9,0xb9,0x49,0x33,0x5b,0xa4,0x8b,0xb9,0x25,0x9d,0xb5, 0x4,0x87,0x3,0x3,0x6,0xa7,0xa0,0x25,0x1,0xe0,0xec,0xd9,0xb3,0xec,0xda,0xb5, 0x6b,0xfa,0x6f,0xff,0xf6,0x6f,0x51,0xaf,0xd7,0xb1,0xb8,0xb8,0x68,0x27,0x59,0x4d, 0xab,0x7d,0xa4,0x65,0x3a,0x3f,0x17,0xa,0x77,0xef,0xde,0xc5,0xe5,0xcb,0x97,0xed, 0x46,0x88,0xa2,0x8,0x17,0xd6,0xcf,0x22,0xee,0x87,0xb8,0x71,0xfb,0x16,0xe6,0xe7, 0x17,0x33,0x87,0x40,0xa2,0xcd,0xd7,0xbe,0xef,0x67,0xc2,0x70,0x4a,0x1f,0x69,0x2d, 0x81,0x34,0x6d,0xc0,0x39,0x4b,0xbd,0x7b,0xec,0x49,0x97,0x69,0xd2,0x1e,0xb2,0xbd, 0x18,0x4e,0x5a,0x6b,0xd2,0x1,0x36,0x8b,0xfc,0xf8,0xa4,0xb1,0xa2,0xa3,0xe,0xcc, 0x3c,0x30,0x1d,0xf4,0x1,0xbd,0xdf,0xf7,0x6d,0xda,0xe7,0x9c,0x44,0x2e,0x18,0xd9, 0x10,0x97,0x7b,0x9c,0x2c,0x28,0x90,0x3d,0xd0,0x5f,0xa9,0x89,0x4d,0x90,0x3a,0x17, 0x94,0xbb,0x11,0x83,0x95,0x9b,0x4f,0x23,0x87,0x28,0x8a,0xc0,0xa0,0x70,0xfa,0xd4, 0x72,0x7a,0xff,0x81,0xbd,0x3e,0x7c,0xf8,0xd0,0xe,0xd2,0xb2,0xfd,0x3b,0x23,0x84, 0x2,0xa9,0x9e,0xe7,0x8a,0x5e,0xd2,0x75,0xdd,0xbe,0x7d,0x1b,0xf5,0x7a,0x1d,0x2f, 0xbe,0xf8,0x22,0x7c,0xdf,0x87,0xef,0xfb,0x48,0x92,0xc4,0x2,0x3,0xf5,0x4c,0xa4, 0xdb,0x97,0x0,0xa2,0x4,0x86,0x32,0xad,0x74,0xf0,0xd1,0x83,0x4b,0x83,0x63,0x8c, 0xb1,0x57,0x5f,0x7d,0xb5,0xb2,0xb0,0xb0,0x80,0x7b,0xf7,0xee,0xd9,0xb4,0xf,0x45, 0xd,0x53,0xa1,0x98,0xe7,0x21,0x51,0xd2,0x36,0xf3,0x6c,0x6c,0x6c,0xc,0x8a,0xd6, 0x4a,0x23,0xe,0x23,0x3c,0x75,0xe5,0x12,0x56,0x57,0x4e,0xa1,0xd3,0xe9,0x58,0xaf, 0x8c,0xa,0x7c,0xdd,0xb0,0x8f,0x48,0x26,0x90,0x28,0x48,0xb7,0x68,0xee,0x50,0x5f, 0x8d,0xcb,0x64,0x6a,0xe,0x6c,0xa6,0x14,0xd3,0xb4,0xe3,0x3b,0x19,0x63,0xf0,0x84, 0xb0,0x9b,0x54,0x8,0x61,0x25,0xc8,0x55,0xe,0x34,0x66,0x39,0x5c,0x67,0xa1,0xc2, 0x4e,0x43,0x69,0x9d,0xe6,0xf0,0xde,0x2f,0xb3,0xe8,0xa0,0x6a,0x16,0xd3,0xea,0x50, 0x8d,0xbb,0xd6,0x6c,0x2a,0x90,0x39,0x35,0xa7,0xe1,0x6d,0x33,0xee,0xb5,0xa8,0x11, 0xd4,0x58,0x37,0x8d,0x94,0x24,0x89,0x1d,0x7b,0xab,0xb9,0xc0,0xa9,0x53,0xa7,0x86, 0xc0,0xab,0xd9,0x6c,0x62,0x63,0x63,0x23,0x13,0x75,0x12,0x48,0xd0,0xd7,0xc4,0x5a, 0x2a,0x12,0xd5,0xa3,0xfb,0xdd,0xbe,0x7d,0x1b,0x61,0x18,0xe2,0x23,0x1f,0xf9,0x8, 0x56,0x56,0x56,0xac,0x72,0x2b,0x45,0xe0,0xbe,0xef,0xa3,0x5a,0xad,0x52,0x54,0xcf, 0x28,0x6a,0x28,0x81,0xa1,0x4,0x87,0x83,0xaa,0x39,0xe4,0x7,0x1,0xd9,0xef,0xd3, 0x15,0xbd,0xf8,0xe2,0x8b,0x5f,0x48,0x92,0x4,0xf7,0xef,0xdf,0xb7,0xb2,0xdc,0x93, 0xe,0x14,0x5a,0xfd,0x28,0x44,0xa5,0x52,0x41,0x18,0x47,0x60,0x82,0x63,0x73,0xeb, 0xa1,0x6d,0xb2,0x63,0xcc,0xb0,0x83,0xe2,0x38,0xc6,0x73,0xcf,0x3d,0x87,0xc5,0xc5, 0x45,0x74,0x3a,0x1d,0x84,0x51,0x8c,0x7e,0x18,0x21,0x8e,0x92,0x4c,0x93,0x5c,0xac, 0xe4,0x10,0x48,0xb8,0x54,0x42,0xa5,0xf4,0x54,0x80,0x30,0xe9,0x80,0xcb,0x46,0x2, 0x1a,0x80,0x4a,0x53,0xb,0x9,0xb4,0x36,0x35,0x13,0xe1,0x31,0x78,0x3e,0xb7,0x20, 0x41,0xde,0xe1,0xa3,0x94,0xab,0x18,0x55,0xcf,0xc8,0x4b,0x5a,0xef,0x87,0xa2,0xba, 0x1f,0xe0,0xd8,0x6b,0x6f,0x4a,0x5e,0x9a,0xa5,0x8,0xd0,0xf2,0xe4,0x1,0xf3,0xfd, 0xde,0x41,0xd9,0x65,0x5e,0xe5,0x67,0x3f,0x13,0xd5,0x9a,0x40,0x22,0x8e,0x63,0x40, 0x78,0xb6,0xce,0x40,0x9f,0x1,0x9,0x4c,0xde,0xbe,0x7d,0x3b,0x73,0xf0,0xe7,0xaf, 0x3d,0xff,0x3a,0xdc,0x54,0x12,0xdd,0x6f,0x67,0x67,0x7,0xdb,0xdb,0xdb,0x78,0xf6, 0xd9,0x67,0xf1,0xf4,0xd3,0x4f,0xdb,0xd4,0x13,0x39,0x67,0x44,0x98,0xf0,0x7d,0xdf, 0x82,0x43,0x51,0xfd,0xb0,0x3c,0x2a,0xcb,0xb4,0xd2,0x41,0x45,0xf,0x36,0x2c,0x75, 0x3d,0x90,0x8b,0x17,0x2f,0xfe,0x70,0xb3,0xd9,0xd4,0x6f,0xbf,0xfd,0x36,0x36,0x37, 0x37,0xb1,0xb2,0xb2,0x32,0x55,0xfa,0x83,0x22,0x7,0x62,0x36,0x69,0xad,0x11,0x4, 0x1,0xee,0x6f,0x3c,0x0,0x63,0xc,0x6b,0xab,0x67,0x20,0x55,0x2,0xa6,0xcd,0x26, 0x7f,0xf6,0xd9,0x67,0xf1,0x37,0xef,0xbc,0x83,0x76,0xbb,0x33,0x38,0xa4,0x99,0x97, 0xd9,0x68,0x8c,0x31,0x30,0xb0,0xa1,0xbc,0x3e,0x49,0x78,0x40,0x8,0x8,0x3e,0x3a, 0x72,0x98,0xb6,0x6b,0x37,0x1f,0x31,0x64,0xea,0x1e,0x69,0x98,0xc2,0x38,0x3,0x73, 0x98,0x4d,0x74,0x90,0x8c,0x6a,0xdc,0x9b,0x26,0x7f,0x3e,0xee,0x3e,0x6e,0xe3,0xd4, 0x5e,0x52,0x49,0x93,0xea,0x1b,0x87,0x91,0x36,0x9a,0x35,0x6a,0x1b,0x57,0x37,0xc9, 0xa7,0x8e,0x18,0x63,0x76,0x96,0x91,0xd6,0x80,0x52,0xc3,0xc3,0x71,0xf2,0xf,0xa7, 0x35,0x87,0xd3,0x54,0x6c,0xe,0x76,0x70,0x37,0x55,0x3f,0x92,0x60,0x40,0x11,0xad, 0xe6,0x2,0xb5,0x6a,0x15,0x8d,0x46,0x3,0x32,0x9,0x53,0x27,0x47,0x20,0xc,0x43, 0xdc,0xbd,0x7b,0x37,0x93,0x1a,0x72,0xf,0x7e,0x37,0x85,0x64,0x47,0xeb,0xe6,0x24, 0xbb,0xab,0xd5,0x2a,0x3a,0x9d,0xe,0xee,0xdd,0xbb,0x87,0xa5,0xa5,0x25,0xbc,0xf4, 0xd2,0x4b,0x36,0xa5,0x45,0x29,0x25,0x2a,0x54,0xd3,0xf3,0x2c,0x2d,0x2d,0x41,0x6b, 0x1d,0x11,0x18,0x94,0xf2,0x19,0x65,0xe4,0x70,0x18,0x1b,0x55,0xe6,0xa3,0xa,0x32, 0xb8,0x8f,0x7c,0xe4,0x23,0xde,0xb9,0x73,0xe7,0x2c,0x73,0xc2,0x3d,0x2c,0x29,0x5c, 0xce,0xcf,0x9d,0x76,0xf,0x75,0xc1,0xb8,0x91,0x12,0x90,0xa,0x82,0x19,0x6,0xc6, 0x76,0x73,0x7,0x42,0x18,0xcf,0x3b,0x89,0x43,0xd4,0x3,0x81,0xf,0x5f,0x7b,0x16, 0x8b,0x8d,0x1a,0x7a,0xdd,0xe,0xe2,0x28,0x44,0x18,0xc6,0x48,0xa4,0x46,0x14,0x4b, 0xf4,0xc2,0x41,0x17,0xb5,0x4e,0xf9,0xab,0xae,0x77,0x46,0x9e,0x9d,0x54,0xe,0x4b, 0x47,0x4b,0x53,0x9b,0x80,0x72,0x6e,0xe9,0x1,0x32,0xc5,0xd6,0xc9,0x37,0xc8,0x65, 0xb8,0xf6,0x1a,0x0,0x53,0xd0,0x90,0x0,0x53,0x10,0x1e,0x43,0xa5,0xea,0xa3,0x5a, 0xb,0x10,0x54,0x3c,0x78,0x3e,0x7,0x63,0xc2,0xde,0x8a,0xe6,0x45,0x4c,0xd3,0x8f, 0x51,0xa4,0x1,0x35,0xad,0x57,0x3f,0x89,0x51,0x76,0x50,0xa9,0xa2,0x49,0xd,0x5c, 0xb3,0x8c,0x2b,0xcd,0xfd,0x0,0x9c,0x31,0x8,0xce,0x4d,0x4a,0xcf,0xf3,0x20,0x38, 0x7,0x4f,0x81,0x21,0x4b,0x63,0x2e,0x12,0xe3,0x53,0xf6,0xa6,0xa0,0xa0,0x99,0xca, 0x74,0x38,0xe7,0x6b,0xc,0x6e,0xc4,0xa0,0x94,0xe9,0xbf,0x49,0xb4,0x99,0xcf,0x10, 0xc7,0x31,0xe2,0x24,0xc4,0x62,0xa3,0x8a,0xa5,0xb9,0xa,0x98,0x34,0xa2,0x91,0x95, 0x4a,0x5,0x51,0x14,0xe1,0xce,0x9d,0x3b,0x8,0xc3,0x30,0x3,0xba,0x6e,0x7f,0x50, 0xbe,0x10,0x9d,0x27,0x33,0x90,0x23,0xf5,0xe0,0xc1,0x3,0x24,0x49,0x82,0xef,0xfc, 0xce,0xef,0xb4,0xc,0x3f,0x37,0x95,0x9b,0x7f,0xcc,0xb5,0xb5,0xb5,0x81,0x49,0x3b, 0xc0,0xe0,0x76,0x4d,0xbb,0xa9,0xe2,0x32,0xaa,0x28,0xc1,0xe1,0xc0,0xd2,0x4e,0x14, 0x51,0x7c,0xe2,0x13,0x9f,0x68,0x8,0x21,0xb0,0xb9,0xb9,0x89,0x5e,0xaf,0x97,0xc9, 0xb7,0xbb,0x87,0xa9,0xe7,0x79,0x19,0x8f,0xdb,0x5,0xd,0xa,0x8b,0x95,0x52,0x96, 0x26,0x4b,0x0,0x43,0x2,0x63,0xcf,0x3d,0xf7,0x1c,0x6a,0xb5,0xa,0x3a,0x9d,0x16, 0x92,0x24,0x41,0xaf,0xd7,0x33,0xdd,0xd3,0xb1,0x42,0xaf,0x17,0xa2,0x1f,0x1b,0x1d, 0xa6,0x24,0x5,0x9,0x57,0x72,0x43,0x4a,0x9a,0x55,0x9d,0xc,0x79,0xd8,0xe6,0xe0, 0x71,0xa,0x7e,0xec,0x40,0xde,0x9f,0xa1,0x3,0x9c,0x73,0x6e,0xc3,0xfd,0x20,0xf0, 0xe0,0xfb,0x2,0x9c,0xf,0x52,0x54,0xa6,0x30,0xaa,0xc1,0x39,0xf6,0x34,0x43,0xbb, 0xe8,0xe0,0x1f,0x15,0x29,0x8c,0x9b,0xa2,0x56,0x34,0x89,0x6f,0x94,0x6e,0xd0,0xa4, 0xdb,0x34,0xef,0x4d,0xd1,0x73,0x8c,0xaa,0x81,0x90,0xed,0x50,0x5d,0xa7,0xa8,0x8b, 0x7d,0x26,0x1c,0xe3,0xd9,0x26,0x45,0x57,0x4d,0xd8,0x65,0x21,0xb9,0x75,0x6,0xa5, 0x14,0x74,0xca,0x48,0x22,0x99,0x97,0x95,0x95,0x15,0x34,0x1a,0xd,0xfb,0x58,0xd5, 0x6a,0x15,0xed,0x76,0x1b,0xf7,0xee,0xdd,0x43,0xbb,0xdd,0xb6,0x23,0x71,0xdd,0x79, 0xd0,0xee,0xeb,0xc9,0xef,0x85,0x7c,0x64,0xb1,0xb3,0xb3,0x83,0xcd,0xcd,0x4d,0xbc, 0xfa,0xea,0xab,0x85,0x11,0xba,0xb,0x5e,0x52,0x4a,0x54,0xab,0x55,0x9c,0x3b,0x77, 0xce,0x4b,0x1,0x41,0xe5,0xa3,0xfe,0xa2,0x14,0x72,0x39,0x25,0xae,0x4,0x87,0x83, 0x4a,0x35,0xb1,0x54,0xf1,0x51,0x68,0xad,0xbb,0xaf,0xbf,0xfe,0xba,0xd5,0x78,0xa1, 0x6,0x21,0x37,0x7a,0x70,0x1b,0x85,0xf2,0x9b,0x91,0xbc,0x7b,0x3a,0x40,0xfb,0xfd, 0x3e,0xee,0xde,0xbd,0x8b,0x5e,0xaf,0x67,0x37,0xb,0x1d,0x4,0x1f,0x7a,0xee,0x79, 0xd4,0x6a,0x35,0x34,0x9b,0x4d,0x2b,0x6a,0xd6,0xeb,0xf5,0x10,0x27,0x9,0xc2,0x30, 0x46,0x2f,0x8a,0xb,0xb,0x8c,0x6e,0xd,0xc2,0x6c,0x76,0x86,0xa2,0xce,0xe8,0x71, 0xa9,0x9d,0x99,0xf2,0x7b,0x5c,0x40,0x30,0x6e,0x23,0x23,0x77,0x5a,0x19,0x7,0xb3, 0x5,0xc4,0x5a,0xad,0x86,0x7a,0xbd,0x6e,0x9b,0xa4,0x6,0xef,0x85,0xb2,0xd1,0x4d, 0xfe,0x66,0xba,0xb4,0xd5,0xd8,0xa8,0x60,0xd4,0xe1,0x3a,0xea,0x67,0x99,0x94,0x4c, 0xc1,0x9c,0xf0,0x83,0x16,0x16,0x9c,0x56,0x5b,0x2a,0xdf,0x5b,0x92,0x7,0x5,0x2a, 0x34,0xcf,0xfe,0x91,0xa5,0x9d,0xd3,0x69,0x47,0x33,0xdd,0xb4,0x62,0xd0,0x6a,0x40, 0x25,0x75,0xb,0xc3,0x24,0xe9,0x62,0xeb,0xb,0x50,0x8,0xc3,0x10,0xab,0xab,0xab, 0xb6,0x97,0x41,0xa9,0xc1,0xa8,0x4f,0xd3,0xc7,0xd3,0xca,0x10,0x13,0xdc,0x86,0x37, 0x77,0x1f,0xe4,0x53,0x55,0xee,0x9c,0x86,0x66,0xb3,0x89,0x1b,0x37,0x6e,0xe0,0x99, 0x67,0x9e,0xc1,0xb3,0xcf,0x3e,0x3b,0x4,0x5e,0x79,0x47,0x28,0x8a,0x22,0xac,0xad, 0xad,0x21,0x97,0xa,0xf6,0xd2,0x83,0x9f,0xe5,0x3b,0xa5,0x9,0x14,0x9c,0x59,0xd3, 0x65,0xf4,0x70,0x2,0x17,0x7b,0x54,0xc0,0x9f,0xcf,0x63,0x2,0xc0,0x37,0xbf,0xf9, 0x4d,0xf5,0xad,0x6f,0x7d,0xb,0x4b,0x4b,0x4b,0x58,0x5d,0x5d,0xcd,0xe4,0x84,0x27, 0xd1,0x35,0x5d,0xe6,0x6,0x19,0x7b,0x10,0x4,0xb8,0x7c,0xf9,0x32,0xea,0xf5,0x3a, 0xba,0xdd,0x2e,0xea,0xf5,0x39,0x24,0x52,0xa2,0xdf,0xef,0xe3,0xbd,0xf,0x6e,0x60, 0x67,0x67,0x7,0xf3,0xb,0xb,0xb6,0xe7,0xa1,0x5e,0xaf,0x83,0x33,0x86,0x5a,0xad, 0x6,0xdf,0xf7,0xe1,0x31,0xc,0xe5,0x75,0xe9,0xe0,0x21,0x1a,0xac,0xdb,0xc8,0x36, 0xe8,0x74,0x3e,0x9c,0xf9,0x9,0x99,0xef,0x59,0x71,0xed,0x80,0x6e,0x51,0x98,0x8c, 0x3c,0x40,0x19,0x63,0x50,0x69,0xa3,0xeb,0xa8,0x7d,0xcc,0xb,0x7a,0x9d,0x66,0x95, 0xb7,0x9e,0xd1,0x1e,0x32,0xdf,0xcb,0x9c,0xe4,0x78,0xfe,0xf7,0x5c,0x8f,0xaf,0x2b, 0x98,0x88,0x8a,0xd,0x49,0x5b,0x10,0xd,0x75,0xbf,0xa7,0x97,0x46,0x76,0xbc,0x6d, 0xfe,0x33,0xa0,0xc3,0x99,0x9e,0x97,0xa,0xcf,0x44,0xb5,0xa6,0x34,0xe6,0xe9,0xd3, 0xa7,0xe1,0x7,0xc2,0x80,0x7f,0x7a,0xbd,0x4a,0x25,0xb8,0x75,0xeb,0xe,0xda,0xed, 0xb6,0x8d,0x88,0x49,0x5f,0xc9,0x4d,0x3,0x91,0x6d,0x52,0x94,0xe0,0x16,0x9f,0x5d, 0x47,0xe9,0xbd,0xf7,0xde,0xc3,0xdc,0xdc,0x1c,0x7e,0xf0,0x7,0x7f,0x30,0xd3,0x47, 0x44,0x35,0x35,0x9a,0xe5,0x10,0x86,0x21,0x9a,0xcd,0x26,0x6e,0xdd,0xba,0x85,0x4e, 0xa7,0x83,0x4f,0x7d,0xea,0x53,0x35,0xad,0x75,0xdf,0x79,0x7f,0x3,0xad,0x75,0x94, 0x8f,0x22,0x72,0xb4,0x75,0x9e,0x6e,0xeb,0x32,0x82,0x38,0x61,0xcb,0x7b,0x94,0x4f, 0x56,0x20,0x5,0xcc,0x76,0x77,0x77,0xf5,0x7,0x1f,0x7c,0x80,0xb9,0xb9,0x39,0xd4, 0xeb,0x75,0xeb,0x11,0x91,0x51,0xbb,0x1a,0x4b,0xe4,0x39,0xd1,0x1,0x90,0xdf,0x18, 0x71,0x1c,0xe3,0x83,0xf,0x3e,0xc0,0xc5,0x8b,0x17,0x51,0xaf,0xd7,0x11,0x45,0x7d, 0x80,0x33,0xd4,0x1b,0x55,0x5c,0x7d,0xea,0x32,0xde,0xbd,0xe,0x2b,0x75,0x5c,0xab, 0xd5,0xd0,0xeb,0xf5,0xcc,0xb4,0x3a,0x92,0xb1,0xf0,0x3c,0x8,0x30,0x8,0xe8,0x8c, 0x97,0xe5,0xd2,0x6,0xe9,0x6,0xc6,0xc0,0x19,0x4b,0x3d,0x76,0xbd,0xef,0xc3,0x92, 0x36,0x70,0x51,0xe1,0xd8,0xad,0x6b,0xe8,0x5c,0xea,0x85,0x33,0x53,0xcc,0x16,0x35, 0x7f,0x88,0x1d,0xe3,0xa6,0x5c,0xb8,0x56,0xe3,0x8b,0xb6,0x7,0xdc,0xcf,0x31,0x9, 0x40,0xf2,0xef,0x99,0x48,0xb,0xb9,0x7a,0x44,0x6a,0x49,0xa1,0xa8,0x90,0xec,0x0, 0x82,0xc8,0xa7,0xbf,0x9c,0x54,0x14,0x34,0x18,0x26,0x37,0x59,0x4e,0x7a,0xbd,0xae, 0xa7,0x9e,0x4f,0x33,0xf6,0xe3,0x28,0xb5,0x99,0x2c,0x99,0x20,0x91,0x89,0x49,0x5f, 0x4a,0x89,0x95,0x95,0x15,0x23,0x9b,0xad,0x15,0x98,0x3,0x60,0x77,0xee,0xdc,0x43, 0xb3,0xd9,0xb4,0xf2,0x17,0xee,0x60,0x1e,0x2a,0x1a,0xbb,0xa0,0x44,0x4e,0x8b,0x5b, 0x2f,0x20,0x40,0xb9,0x7d,0xfb,0x36,0x0,0xe0,0x13,0x9f,0xf8,0x84,0xdd,0x37,0xae, 0x5e,0x97,0x2b,0xee,0x17,0x86,0x21,0x7a,0xbd,0x9e,0x9d,0x28,0xf7,0xdb,0xbf,0xfd, 0xdb,0x3d,0xc6,0x58,0x1d,0x40,0x94,0xce,0x76,0x88,0x72,0xe4,0x12,0xce,0x18,0x53, 0x2e,0x55,0xbd,0xec,0xa0,0x2e,0x23,0x87,0x83,0x8a,0x1e,0x4,0x0,0x95,0x2b,0x76, 0x5,0xbf,0xfb,0xbb,0xbf,0x1b,0x36,0x9b,0x4d,0x5c,0xba,0x74,0x9,0x8d,0x46,0x63, 0xa8,0x41,0xce,0xcd,0xa9,0xba,0x11,0x43,0x3e,0x17,0x2c,0xe3,0xc4,0xe6,0x6f,0x2f, 0x5d,0xba,0x64,0x23,0x84,0x28,0x89,0x51,0xf1,0xab,0x8,0xa3,0x8,0x7f,0xf7,0xfe, 0x7b,0x68,0x36,0x9b,0xa8,0xd6,0x1a,0x36,0x4d,0xe3,0x79,0x1e,0x7c,0xcf,0x83,0xe7, 0x79,0x8,0x82,0xc0,0xd0,0x4a,0xa1,0x73,0x82,0x80,0xe4,0x95,0xc2,0xe6,0x83,0x39, 0x67,0x46,0x78,0x59,0x6b,0x93,0xa,0x3a,0xa0,0x83,0x35,0xdf,0xd,0x5d,0xd4,0x41, 0x9d,0x8f,0xae,0xa8,0x20,0x3a,0x6a,0xa2,0x19,0x79,0xa2,0xf9,0x3a,0xc3,0xb4,0x7, 0xfa,0xb4,0x7a,0x42,0xa3,0x5e,0xcb,0xa4,0xbf,0x75,0x89,0x9,0xc5,0x91,0x1,0x1f, 0x4a,0x65,0x65,0x68,0xa7,0x13,0xa2,0x37,0xf7,0xd7,0xc5,0xef,0x3f,0x1f,0xfb,0x39, 0x24,0x4e,0x17,0x7f,0xbe,0x48,0xae,0xd8,0x0,0xdc,0x29,0x62,0x0,0x60,0xa9,0xd3, 0x9e,0xe7,0x61,0x69,0xae,0x61,0x1b,0xce,0xdc,0xbe,0x85,0x1b,0x37,0x6e,0x64,0x9a, 0xdc,0x5c,0x7,0x28,0x6f,0x3,0xae,0x3d,0x92,0x3,0x40,0x29,0x33,0x0,0xb8,0x75, 0xeb,0x16,0xb6,0xb6,0xb6,0xf0,0xc6,0x1b,0x6f,0xe0,0xf2,0xe5,0xcb,0xf6,0x73,0xa6, 0x59,0xd1,0x4,0xc,0xbd,0x5e,0xf,0xad,0x56,0xb,0xfd,0x7e,0xdf,0x7e,0x4d,0xd2, 0xf8,0x8d,0x46,0x3,0x9f,0xfa,0xd4,0xa7,0x2,0x0,0x49,0x2e,0x3a,0x70,0x65,0x35, 0x74,0x6e,0xf,0xf3,0x12,0x24,0x4a,0x70,0xd8,0xf,0x30,0x14,0x1a,0x10,0x63,0x8c, 0xbf,0xf9,0xe6,0x9b,0x2f,0x71,0xce,0xbf,0xee,0x79,0x1e,0xce,0x9e,0x3d,0x6b,0x99, 0x15,0xee,0xc1,0x98,0x57,0x2c,0xcd,0x1f,0x2c,0x52,0x9b,0xa1,0xeb,0x74,0xbf,0xc0, 0xf3,0x71,0xe1,0xd2,0x45,0xd4,0x6a,0x35,0x3,0x2c,0x60,0x48,0x94,0x4,0x38,0xc3, 0x7b,0xd7,0x6f,0x60,0x63,0x63,0x3,0x73,0xf3,0x8b,0x3,0x8e,0x77,0x10,0x58,0x70, 0x8,0x82,0x0,0x1e,0xcb,0x17,0xff,0x6,0x87,0x32,0xe7,0x69,0x14,0xe1,0x4d,0x2f, 0xd3,0x6d,0x3d,0xff,0x19,0xba,0x9d,0xb3,0x7,0x24,0x9f,0xc0,0xce,0x91,0x43,0x29, 0x19,0xf7,0x70,0xe3,0xdc,0x2b,0xf4,0x80,0x6d,0xe,0x3a,0x27,0x67,0x3e,0xfd,0x75, 0xcd,0x6,0x12,0xa3,0x52,0x47,0x3c,0xd3,0x91,0x9c,0x9d,0x8f,0xe1,0x1e,0x9c,0xc3, 0x94,0x52,0x37,0xb6,0x28,0xbe,0xc6,0x51,0x69,0xca,0x22,0x70,0xcd,0xa7,0x8b,0x46, 0x15,0xeb,0xed,0xf8,0x4d,0x4d,0xef,0x1b,0xb3,0x29,0x1b,0xf2,0xf8,0xc3,0x30,0x4, 0xe7,0x1c,0xf3,0xf3,0xf3,0x58,0x6c,0x54,0xb3,0x54,0x69,0x0,0xd7,0xaf,0x5f,0x47, 0xbf,0xdf,0xb7,0x3f,0xa3,0x7f,0x69,0x76,0x9,0xd5,0xce,0xdc,0xe8,0x81,0xde,0xb, 0xda,0x13,0xf4,0xfb,0xed,0xed,0x6d,0xdc,0xbc,0x79,0x13,0xaf,0xbe,0xfa,0x2a,0x5e, 0x7c,0xf1,0xc5,0xcc,0x6c,0x14,0xea,0xc8,0xa6,0x86,0xd0,0x56,0xab,0x65,0x1b,0x51, 0xa9,0x43,0x7b,0x67,0x67,0x7,0xdd,0x6e,0x17,0x9b,0x9b,0x9b,0x58,0x5c,0x5c,0xc4, 0xb5,0x6b,0xd7,0x7e,0x76,0x61,0x61,0xe1,0x7f,0xdf,0xdc,0xdc,0x44,0x10,0x4,0x58, 0x5a,0x5a,0xc2,0xb9,0x73,0xe7,0x2,0x9a,0x33,0x9d,0x4f,0x35,0x95,0x47,0x69,0x9, 0xe,0x7,0x6,0x12,0x79,0xa3,0xba,0x7d,0xfb,0xb6,0xfe,0xf2,0x97,0xbf,0x8c,0xb9, 0xb9,0x39,0x5c,0xbc,0x78,0x71,0xa8,0xfe,0x40,0x1b,0x26,0x7f,0x18,0xdb,0x42,0x1b, 0x3,0xa0,0x52,0xcd,0x19,0x69,0xd2,0x29,0xb5,0x5a,0xd,0xeb,0x17,0xce,0xa3,0xd1, 0x68,0x40,0x25,0xe9,0x6,0x4b,0x87,0xae,0x7c,0x70,0xf3,0x36,0x6e,0xdf,0xbe,0x8d, 0x46,0x63,0x3e,0x65,0x3,0x5,0x16,0x28,0xe8,0xdf,0xaa,0xef,0xd,0xe,0x16,0x61, 0x52,0x4e,0xe6,0xba,0xd2,0x34,0x93,0xc7,0x4c,0xa4,0xe1,0xf9,0x50,0x13,0x1c,0x27, 0xa6,0x31,0x95,0x3a,0xea,0x5e,0xd3,0x1e,0x8c,0x8d,0x6f,0xc4,0x9b,0xe4,0xc1,0xeb, 0x1c,0xdd,0x35,0x7f,0x28,0x8e,0x9b,0x59,0x3d,0xa,0x24,0x8a,0x0,0x64,0xd4,0xc, 0x66,0xce,0x8a,0xe5,0x43,0x8a,0x34,0xa5,0x66,0x89,0x62,0xa6,0x79,0x4f,0xf2,0xe0, 0x50,0xd4,0x6d,0x3e,0x2c,0xbb,0xc2,0x20,0xa1,0x1d,0xc6,0xcf,0x80,0xa5,0x44,0x39, 0x7d,0xdf,0xf7,0xb1,0xb8,0xb8,0x88,0x6a,0xb5,0xa,0x24,0xa1,0xc9,0xe3,0xa6,0xe9, 0x9f,0x9b,0x37,0x6f,0xa2,0xd5,0x6a,0x65,0x52,0x3f,0xf9,0xa6,0xb6,0xa2,0xf4,0x9b, 0xfb,0x73,0xa2,0xa2,0x36,0x9b,0x4d,0x7c,0xf0,0xc1,0x7,0xb8,0x72,0xe5,0xa,0x5e, 0x7f,0xfd,0x75,0xdb,0x50,0x47,0x87,0x3f,0xbd,0x96,0x5e,0xaf,0x87,0x30,0xc,0xd1, 0xe9,0x74,0xe0,0x79,0x1e,0xe6,0xe6,0xe6,0x6c,0xe4,0x40,0xe9,0xa5,0x8d,0x8d,0xd, 0x7c,0xfd,0xeb,0x5f,0xc7,0xc6,0xc6,0x6,0xc2,0x30,0xb4,0xa9,0xae,0x6a,0xb5,0x8a, 0xa7,0x9e,0x7a,0xa,0x3f,0xfc,0xc3,0x3f,0x8c,0xab,0x57,0xaf,0x32,0x27,0x6a,0x10, 0x79,0xea,0x7a,0xb9,0x4a,0x70,0x38,0xf0,0xf5,0xce,0x3b,0xef,0xe8,0x6f,0x7c,0xe3, 0x1b,0x68,0x34,0x1a,0x38,0x77,0xee,0x5c,0x46,0x4b,0x86,0x36,0x85,0xcb,0xef,0x76, 0x9b,0xb9,0x8a,0x1a,0x9c,0xa8,0x19,0xe8,0xfc,0xf9,0xf3,0x98,0x9f,0x6f,0xd8,0x82, 0xa1,0x10,0x3e,0x94,0x66,0xb8,0x7d,0xef,0x3e,0x3e,0xb8,0x71,0x3,0x41,0xad,0x86, 0x6a,0xca,0x6,0xa,0x82,0x20,0x23,0x6d,0xe1,0x79,0x1e,0x7c,0x2e,0x20,0xa1,0x2d, 0xe5,0xd6,0xb0,0x80,0x34,0x78,0xaa,0x81,0xe3,0x79,0x1e,0xaa,0x95,0xa,0xb8,0x6d, 0x9a,0x33,0x1c,0x78,0x77,0xd3,0xb3,0xa1,0x82,0x2a,0x47,0x7e,0x9a,0xc4,0x63,0x35, 0x84,0x31,0x7,0xbb,0xf1,0xcb,0xe5,0xd8,0xc3,0x75,0x52,0x4d,0x7e,0xbf,0x35,0x99, 0x71,0x20,0x94,0x7,0x4f,0xf7,0xd7,0x3,0xf1,0x44,0x14,0xda,0x89,0x3d,0x80,0x39, 0x87,0x94,0xc5,0x6a,0xb9,0x4,0x62,0x64,0x3f,0xf4,0xb5,0xab,0x9a,0x9a,0x68,0xa4, 0x69,0x9b,0x18,0x51,0xaf,0xf,0xcf,0xe7,0x38,0x7d,0xfa,0x34,0x2a,0x7e,0x60,0x25, 0x33,0x7c,0xdf,0x47,0x1c,0xc7,0xb8,0x73,0xe7,0xe,0xb6,0xb7,0xb7,0x6d,0xa7,0xf2, 0xb4,0xd,0x95,0xf9,0x6b,0x26,0xed,0xa5,0x9b,0x37,0x6f,0x62,0x6d,0x6d,0xd,0x9f, 0xfc,0xe4,0x27,0x11,0x4,0x81,0x15,0xec,0xa3,0xeb,0xa5,0x1,0x58,0x61,0x18,0x5a, 0x9a,0xec,0xa9,0x53,0xa7,0xa0,0xb5,0x46,0xa7,0xd3,0xb1,0xc,0xbe,0xbf,0xfe,0xeb, 0xbf,0x46,0x18,0x86,0xb8,0x77,0xef,0x1e,0xbe,0xfe,0xf5,0xaf,0xa3,0xdf,0xef,0xa3, 0x56,0xab,0x65,0xd8,0x5f,0xf5,0x7a,0x1d,0x3f,0xfe,0xe3,0x3f,0x8e,0xef,0xf8,0x8e, 0xef,0xe0,0x45,0x4d,0x72,0x45,0x19,0x82,0x32,0xed,0x74,0x3c,0xd7,0x91,0xd2,0x6a, 0x7f,0xfe,0xf9,0xe7,0xc5,0x73,0xcf,0x3d,0x87,0x7e,0xbf,0x8f,0xfb,0xf7,0xef,0x5b, 0xc3,0xa6,0x8,0x81,0x9a,0x78,0xa8,0xbf,0x61,0x62,0xaa,0x82,0x73,0xf4,0x7a,0x3d, 0xdc,0xb8,0x61,0x98,0x4a,0x86,0x71,0xe4,0x99,0x70,0x9f,0x31,0x5c,0x3a,0xbf,0x8e, 0x67,0x9f,0x79,0x6,0xd2,0x95,0xd6,0x48,0xbb,0x57,0x69,0xe4,0x68,0x18,0x86,0x88, 0x64,0x92,0xd3,0x3d,0x4a,0xf,0x7d,0x3e,0x60,0x80,0x74,0x7b,0x3d,0xf4,0xc3,0xc8, 0x34,0xce,0x39,0x87,0x53,0x5e,0xf3,0x26,0xe3,0x35,0xa7,0xe9,0x14,0x7e,0x4,0x98, 0x80,0x93,0x26,0xd3,0x15,0xfd,0x6d,0xfe,0xf0,0x1f,0x77,0x3b,0x2c,0x10,0x73,0x1, 0x81,0x6e,0x45,0xb3,0x39,0xdc,0x94,0x4c,0x11,0x99,0x21,0x49,0x54,0x86,0xde,0x99, 0x7f,0x4f,0x68,0x2c,0x27,0x81,0x1,0x79,0xfc,0x51,0x44,0xc0,0x10,0xa3,0xdf,0xef, 0xa2,0xd3,0xe9,0xa0,0x5a,0xad,0x62,0x6d,0x6d,0xd,0xbe,0xef,0xa3,0xdf,0x37,0xe4, 0x9f,0x4a,0xa5,0x82,0x30,0xc,0x71,0xfb,0xf6,0x6d,0x3c,0x7c,0xf8,0xd0,0x4a,0x57, 0xb8,0x8f,0x3b,0x4d,0x4d,0x86,0xec,0x50,0x8,0x81,0x4e,0xa7,0x83,0xfb,0xf7,0xef, 0x63,0x7e,0x7e,0x1e,0xdf,0xfd,0xdd,0xdf,0x8d,0x20,0x8,0x2c,0x88,0xd0,0x2c,0x75, 0x4a,0x1b,0x45,0x51,0x84,0x6e,0xb7,0xb,0x29,0x25,0xce,0x9e,0x3d,0x6b,0x88,0x18, 0x30,0xc4,0x8c,0xa5,0xa5,0x25,0x7c,0xe5,0x2b,0x5f,0xc1,0x67,0x3f,0xfb,0x59,0x5c, 0xbf,0x7e,0x1d,0xcf,0x3c,0xf3,0xc,0xbe,0xeb,0xbb,0xbe,0xb,0x8d,0x46,0x3,0xfd, 0x7e,0x3f,0x33,0x7b,0xa2,0xd5,0x6a,0xe1,0xd7,0x7f,0xfd,0xd7,0xf1,0xe5,0x2f,0x7f, 0x59,0xe5,0xcf,0x10,0xea,0x91,0x60,0x8c,0x9,0xa7,0x49,0x4e,0x94,0xc0,0x50,0x46, 0xe,0x7,0xb5,0xf9,0xc5,0x57,0xbf,0xfa,0xd5,0xe4,0xfa,0xf5,0xeb,0x58,0x5d,0x5d, 0xc5,0x99,0x33,0x67,0x32,0xfd,0xe,0x2e,0x83,0x83,0xf2,0xad,0xb4,0x79,0xf2,0xe1, 0x3f,0x85,0xdd,0x74,0x9f,0x8b,0x17,0x2f,0x62,0x79,0x79,0x39,0xcd,0xef,0xa6,0xac, 0x27,0x21,0xd0,0x6e,0xb7,0xf1,0xb7,0xef,0xbd,0x8f,0x38,0x8e,0x11,0x4,0x1,0x1a, 0x8d,0x86,0xf5,0xea,0x82,0x34,0x7a,0x18,0x14,0xa1,0xb9,0xa5,0xaf,0x5a,0xf6,0x8, 0x18,0x14,0x33,0xff,0x8a,0x34,0xea,0xf0,0x3c,0xf,0x9c,0xe9,0xc,0xd5,0x31,0x4b, 0x33,0xe5,0x99,0x43,0xf5,0xf0,0x23,0xf3,0xfd,0xfa,0x1,0xea,0xd0,0xa8,0xad,0xd3, 0xca,0x6f,0x8c,0xff,0x1b,0x3e,0x12,0x34,0x0,0x40,0x8f,0x8,0x6d,0xec,0xac,0x85, 0x58,0x8d,0x6d,0x1e,0x64,0x4c,0xd8,0x3,0x17,0x22,0xdb,0x8b,0x63,0xea,0xb,0x3d, 0x24,0x49,0x82,0xa5,0xf9,0x5,0x2c,0x2f,0x2f,0x43,0xaa,0x18,0x5a,0x2a,0x4,0x41, 0x60,0x3a,0xa4,0xc3,0x10,0x37,0x6f,0xde,0xb4,0xb9,0x7e,0xb7,0x98,0x4c,0xf5,0x85, 0x69,0x5e,0x3f,0x45,0xc,0x51,0x14,0xe1,0xfd,0xf7,0xdf,0x7,0xe7,0x1c,0x6f,0xbc, 0xf1,0x6,0x56,0x57,0x57,0x6d,0xa,0x89,0x7a,0x23,0xc,0x78,0x19,0x87,0xa7,0xd3, 0xe9,0xa0,0xd3,0xe9,0xe0,0xca,0x95,0x2b,0x56,0xee,0x9e,0x58,0x81,0xbf,0xf1,0x1b, 0xbf,0x81,0xdf,0xfc,0xcd,0xdf,0x84,0xe7,0x79,0xa8,0xd5,0x6a,0x78,0xed,0xb5,0xd7, 0xf0,0xca,0x2b,0xaf,0x60,0x63,0x63,0x3,0x7f,0xf8,0x87,0x7f,0x88,0x4e,0xa7,0x63, 0x89,0x1a,0x4,0xae,0x9c,0x73,0xfc,0xd0,0xf,0xfd,0x10,0x7e,0xe0,0x7,0x7e,0x80, 0x8d,0x4a,0x19,0x53,0xca,0xa9,0x8c,0x1c,0x4a,0x70,0x38,0x90,0x5a,0x44,0xfa,0xb5, 0xff,0xfb,0xbf,0xff,0xfb,0xd1,0xdd,0xbb,0x77,0x71,0xfe,0xfc,0x79,0x2c,0x2e,0x2e, 0x66,0xb8,0xda,0xa3,0x18,0x3c,0x4,0x8,0xf9,0x59,0x8,0xb4,0xb9,0xfb,0xfd,0x3e, 0xd6,0xd6,0xd6,0x70,0xfe,0xfc,0x39,0x9b,0x76,0xa2,0x2e,0xec,0x7e,0xa2,0xf1,0xc1, 0x7,0x1f,0x60,0x6b,0x6b,0xb,0x41,0xa5,0x82,0x6a,0xb5,0x9a,0xa6,0x99,0xc,0xe3, 0xc9,0x13,0xdc,0x1e,0xfa,0x94,0x5e,0xa2,0xda,0x43,0x7e,0xa2,0x5b,0x20,0xd2,0xda, 0x5,0xc9,0x73,0x17,0xe4,0xab,0xa9,0x37,0x42,0x6b,0xd,0x28,0x6d,0x3b,0x6f,0x8f, 0x32,0x38,0xec,0x17,0xc,0xa6,0xd1,0x3b,0xda,0x3b,0xc0,0x8c,0x8f,0x50,0x18,0xcf, 0x46,0x13,0x4,0xc,0x6e,0xb3,0x59,0x11,0x30,0x98,0xcf,0x94,0xdb,0x94,0xa6,0xd6, 0x1a,0xb1,0x4a,0xe7,0x3c,0xa7,0x3f,0xeb,0x74,0x3a,0xf0,0x19,0xb0,0xbc,0xbc,0x8c, 0x7a,0xbd,0xe,0x30,0xf3,0xb8,0x22,0xed,0x2d,0xe9,0x76,0xbb,0xb8,0x73,0xe7,0x8e, 0x95,0xc5,0xf6,0x7d,0x7f,0xc8,0xe1,0x99,0x86,0xcd,0xe5,0x3a,0x46,0xef,0xbd,0xf7, 0x1e,0xa2,0x28,0xc2,0xf7,0x7c,0xcf,0xf7,0xe0,0xf2,0xe5,0xcb,0x8,0xc3,0xd0,0x3a, 0x43,0xae,0x43,0x44,0x74,0xd5,0x5e,0xaf,0x87,0xf5,0xf5,0x75,0x4b,0xd0,0xa0,0x6, 0xca,0xcf,0x7d,0xee,0x73,0xf8,0xec,0x67,0x3f,0xb,0xdf,0xf7,0x51,0xaf,0xd7,0xad, 0x23,0xf3,0xca,0x2b,0xaf,0xe0,0x95,0x57,0x5e,0x41,0xb7,0xdb,0xc5,0x1f,0xff,0xf1, 0x1f,0xe3,0xc1,0x83,0x7,0x96,0xd9,0x47,0xaf,0x41,0x6b,0x8d,0x4f,0x7c,0xe2,0x13, 0xf8,0xb1,0x1f,0xfb,0x31,0xcf,0x91,0xf8,0x26,0x80,0x70,0xf7,0x73,0x59,0xb4,0x2e, 0xc1,0x61,0xdf,0x0,0xe1,0x36,0xd7,0x54,0xbf,0xf8,0xc5,0x2f,0xf6,0x1e,0x3c,0x78, 0x60,0x3d,0x7e,0xf2,0xd4,0x28,0xaf,0x9a,0x24,0x9,0x7c,0xdf,0x2f,0x9c,0x89,0xe0, 0x1e,0xd8,0x6,0x48,0x6,0xfc,0xf0,0xc5,0xc5,0x79,0x9c,0x3f,0x7f,0x1e,0xbe,0xf0, 0xd0,0xef,0xf7,0x11,0x54,0x3c,0x28,0x98,0x54,0xd5,0xed,0x7b,0x77,0x71,0xff,0xfe, 0x6,0x84,0xe7,0xa5,0x3,0xd8,0xcd,0xbf,0x9e,0x18,0x74,0xdc,0x52,0x24,0x31,0xa0, 0xd3,0x2a,0x73,0xb8,0x2b,0x47,0xf6,0x59,0x9b,0xd,0x1d,0xa4,0xb5,0x8b,0xe1,0x5c, 0xbd,0xb2,0xb9,0x7a,0xc6,0x98,0xad,0x51,0x1c,0x17,0x70,0x18,0x55,0x7f,0x98,0x74, 0xc8,0x15,0x89,0xf6,0x1d,0x4,0x38,0xd0,0x34,0xcb,0x91,0xe6,0x9c,0x49,0xf5,0x69, 0xeb,0x39,0xdb,0x9f,0xb1,0xe1,0x6b,0xa2,0x71,0xb2,0x5a,0x6b,0x33,0x0,0x1b,0x30, 0x8a,0xbe,0x69,0xfa,0xa9,0xd7,0xeb,0x21,0x49,0xed,0xf1,0xcc,0x29,0xc3,0x7c,0xd3, 0x72,0xa0,0xac,0xaa,0xb5,0xb6,0x2c,0x22,0xf2,0xf8,0xdd,0x3e,0x1e,0x4a,0xfb,0xb8, 0x36,0x3c,0x6a,0x51,0x4a,0x55,0x6b,0x8d,0x77,0xdf,0x7d,0x17,0x51,0x14,0xe1,0xe3, 0x1f,0xff,0x38,0x9e,0x79,0xe6,0x19,0x33,0xf,0xc2,0xf9,0x1c,0xdc,0xe6,0xbb,0x6e, 0xb7,0x8b,0x5e,0xaf,0x87,0x95,0x95,0x15,0x9c,0x3a,0x75,0x2a,0xc3,0xf8,0xfb,0xdc, 0xe7,0x3e,0x87,0xcf,0x7c,0xe6,0x33,0xa8,0x54,0x2a,0x99,0x21,0x5c,0x74,0x7d,0x2f, 0xbf,0xfc,0x32,0x3e,0xfa,0xd1,0x8f,0x22,0x8e,0x63,0xfc,0xf9,0x9f,0xff,0x39,0x6e, 0xdc,0xb8,0x81,0x46,0xa3,0x61,0xb,0xd4,0x54,0xd3,0xfb,0xd8,0xc7,0x3e,0x86,0x9f, 0xfc,0xc9,0x9f,0xac,0xb8,0xd,0x73,0x6e,0x26,0xa0,0x2c,0x58,0x97,0xe0,0x70,0x20, 0xe0,0xe0,0x6c,0x50,0xcd,0x18,0x9b,0xfb,0xe2,0x17,0xbf,0xd8,0xda,0xdc,0xdc,0xc4, 0x85,0xb,0x17,0xb0,0xb0,0xb0,0x60,0x3d,0x3d,0x37,0x8d,0x94,0x4f,0xdd,0x10,0x85, 0xaf,0x48,0x79,0x94,0xa2,0x85,0x46,0xa3,0x81,0xd5,0xd5,0x55,0x9c,0x5a,0x5e,0x41, 0xaf,0xd7,0x3,0x38,0x3,0x13,0x1c,0xc,0x2,0x9b,0xdb,0x5b,0xb8,0x71,0xe3,0x16, 0xc2,0x28,0xc2,0xdc,0xdc,0x1c,0x82,0x20,0x30,0xe9,0x22,0x7,0x14,0x28,0x82,0x70, 0x79,0xe6,0xee,0x41,0x4a,0x5,0x6b,0x4a,0x7f,0x51,0xcf,0x5,0x37,0x95,0x51,0x5b, 0xd4,0xce,0x73,0xd8,0x8f,0x1b,0x38,0xec,0x35,0x92,0x98,0x15,0x54,0xa6,0x1,0x87, 0xa2,0xb7,0x90,0x1e,0x56,0xe9,0x62,0x95,0x54,0x4b,0x74,0x80,0x1e,0x2,0x86,0x3c, 0x73,0x8b,0xa8,0xaa,0x3,0x69,0x8c,0x8,0xb5,0x5a,0xd,0xcb,0xcb,0xcb,0xf0,0x52, 0xc2,0x2,0x15,0x83,0xb5,0xd6,0xd8,0xd8,0xd8,0xb0,0xe2,0x77,0x4,0x0,0xae,0xd3, 0x92,0x9f,0xd3,0x30,0x6e,0xb9,0x6a,0xad,0xed,0x76,0x1b,0xaf,0xbc,0xf2,0xa,0xae, 0x5d,0xbb,0x66,0x75,0xc4,0xdc,0x5a,0x8,0x1,0x1f,0xf5,0x32,0x2c,0x2c,0x2c,0xe0, 0xec,0xd9,0xb3,0x16,0x14,0x18,0x63,0xf8,0xb5,0x5f,0xfb,0x35,0xfc,0xf2,0x2f,0xff, 0x32,0x94,0x52,0xa8,0xd7,0xeb,0x76,0xb8,0x10,0x45,0x4,0x14,0x85,0xbc,0xfc,0xf2, 0xcb,0x78,0xe5,0x95,0x57,0xa0,0xb5,0xc6,0x37,0xbe,0xf1,0xd,0xbc,0xf7,0xde,0x7b, 0x99,0xbf,0x77,0x23,0x8d,0x9f,0xf9,0x99,0x9f,0x69,0x0,0xe8,0xe5,0x59,0x4c,0x65, 0x5a,0xa9,0x4,0x87,0x3,0x8b,0x1a,0x72,0x3f,0x9f,0xfb,0xc2,0x17,0xbe,0xd0,0x6a, 0xb7,0xdb,0x58,0x5f,0x5f,0xc7,0xe2,0xe2,0x62,0x26,0x47,0x4b,0x1e,0x55,0x1c,0xc7, 0x76,0x93,0xb8,0xf9,0xd9,0xc1,0xd9,0xa6,0xc1,0x3d,0xb3,0x69,0xa5,0x56,0x76,0x53, 0xac,0x9f,0x3d,0x87,0xc5,0xc5,0x45,0x68,0x95,0x18,0xed,0x1c,0xa5,0xe0,0x5,0x3e, 0xfa,0x51,0x82,0xeb,0xd7,0xaf,0x63,0x63,0x73,0xcb,0xd6,0x20,0x2a,0x95,0xa,0x2a, 0x41,0x90,0x61,0x6f,0x50,0x14,0x51,0x7c,0xf8,0x65,0xb5,0x6f,0x3c,0xcf,0x43,0xc5, 0x33,0x1b,0x90,0xf1,0x1,0x83,0x49,0xeb,0x47,0x90,0x56,0xd2,0x13,0xa8,0xb0,0xfb, 0xfe,0xfc,0xf4,0x5e,0x3e,0xf3,0x7d,0xd5,0x29,0x8a,0xc0,0x6f,0x54,0x64,0x22,0x47, 0x80,0x82,0x75,0x1a,0x74,0x4e,0x7e,0xdb,0x99,0xff,0x9c,0x9f,0xc9,0x10,0x45,0x11, 0x4,0x34,0x16,0x17,0x17,0xb1,0x30,0x3f,0x6f,0x3f,0x67,0xf2,0xa4,0xc3,0x30,0xc4, 0xad,0x5b,0xb7,0xb0,0xbd,0xbd,0x3d,0xc4,0xac,0x73,0x5f,0xbb,0x4b,0x93,0x9d,0xe6, 0xf5,0xde,0xbd,0x7b,0xd7,0x8a,0xe9,0xbd,0xf0,0xc2,0xb,0xe8,0x76,0xbb,0xd6,0x83, 0x77,0x1d,0x23,0x22,0x57,0x18,0x9,0x99,0x3a,0xd6,0xd7,0xd7,0x33,0xd7,0xf0,0x2b, 0xbf,0xf2,0x2b,0xf8,0xa5,0x5f,0xfa,0x25,0x48,0x29,0x31,0x3f,0x3f,0x9f,0xa9,0x23, 0x0,0x40,0xb5,0x5a,0xb5,0xd1,0x4f,0x14,0x45,0x78,0xf9,0xe5,0x97,0xf1,0xda,0x6b, 0xaf,0xc1,0xf3,0x3c,0xbc,0xf5,0xd6,0x5b,0x78,0xe7,0x9d,0x77,0xac,0xb3,0xe3,0xe, 0xab,0xba,0x74,0xe9,0x12,0x7e,0xee,0xe7,0x7e,0x6e,0x11,0x40,0x8b,0x0,0x22,0xbd, 0xf6,0x32,0x72,0x28,0xc1,0xe1,0x40,0xd3,0x4a,0x6e,0xce,0x72,0xfe,0xf3,0x9f,0xff, 0xfc,0x6e,0x18,0x86,0x58,0x5b,0x5b,0xc3,0xdc,0xdc,0x9c,0xf5,0xd0,0xf2,0xf2,0xc3, 0xa3,0xf2,0xb7,0x9c,0x99,0x2e,0x57,0x21,0x7c,0x48,0xad,0x6,0x45,0x41,0xc6,0x71, 0xe6,0xcc,0x19,0x9c,0x3b,0x7b,0xc6,0x8e,0x77,0xb4,0x63,0x1e,0x5,0xc7,0xc6,0xe6, 0x16,0xae,0x5f,0xbf,0x6e,0xbd,0x7f,0xd3,0xd7,0x30,0x5c,0xa0,0xae,0x78,0x7e,0x3a, 0x7,0x82,0x3b,0x12,0xb,0xda,0xa6,0x8c,0x98,0xe6,0xb6,0x51,0x2d,0x10,0x1e,0x82, 0x8a,0x7,0x5f,0x78,0xe9,0xa6,0x95,0xd0,0xec,0x70,0x89,0x63,0x5a,0x4d,0xc8,0xc9, 0xef,0xfb,0x19,0x26,0xa7,0x9d,0x26,0xd1,0x65,0xf7,0xe,0xc,0x6,0x1c,0x6,0x92, 0x1a,0x48,0xa5,0xcc,0x1d,0xe5,0xd1,0x5c,0xd,0x2a,0x5f,0x7c,0x4e,0xb4,0xeb,0xd5, 0x63,0x18,0x14,0xa4,0x84,0x4c,0x81,0xa1,0x5e,0x9,0xb0,0xbc,0xbc,0x8c,0x6a,0x25, 0xad,0x1d,0x28,0x6d,0x53,0x96,0xed,0x6e,0x7,0xb7,0x6f,0xdf,0x46,0xab,0xd5,0x32, 0x4e,0x40,0x81,0x62,0x6a,0x51,0xd4,0x34,0x69,0x1f,0x52,0xf7,0xf3,0x47,0x3f,0xfa, 0x51,0x5c,0xbd,0x7a,0xb5,0x10,0xe0,0xac,0xd4,0xbc,0x94,0xb6,0x87,0xe2,0xf2,0xe5, 0xcb,0xd6,0xc3,0x67,0x8c,0xe1,0x57,0x7f,0xf5,0x57,0xf1,0xb,0xbf,0xf0,0xb,0xa8, 0xd5,0x6a,0x26,0x5d,0x9a,0xa6,0xaa,0xc8,0x9e,0xe9,0xfb,0x20,0x8,0x0,0xc0,0xd2, 0x6f,0x9f,0x7f,0xfe,0x79,0x7c,0xec,0x63,0x1f,0x43,0xb5,0x5a,0xc5,0xb7,0xbe,0xf5, 0x2d,0xbc,0xfd,0xf6,0xdb,0x16,0x18,0x28,0x6d,0xea,0x79,0x1e,0xd6,0xd7,0xd7,0xf1, 0xd3,0x3f,0xfd,0xd3,0x3b,0x67,0xcf,0x9e,0x5d,0x9e,0xe4,0xf8,0x95,0xab,0x4,0x87, 0x83,0x2,0x8e,0x85,0xdf,0xfa,0xad,0xdf,0x6a,0xf6,0x7a,0x3d,0x5c,0xba,0x74,0xc9, 0x16,0xcf,0x68,0x63,0x10,0xfb,0x83,0x3c,0x31,0x29,0xe5,0xd4,0x1d,0xb2,0x5a,0x6b, 0x2c,0x2d,0x2d,0x61,0x7d,0x7d,0xdd,0x32,0x39,0x68,0xc3,0x30,0xc6,0xd0,0x6e,0xb7, 0xf1,0xee,0x8d,0xdb,0x46,0x8b,0x29,0x65,0x74,0x50,0xc4,0xe0,0x79,0x1e,0x4,0xf7, 0x20,0x98,0x2,0xf3,0x5c,0x5,0xd0,0x81,0x68,0x9f,0x86,0xa1,0xac,0x66,0xc5,0xfa, 0x6,0xcc,0x26,0xdf,0xf7,0x11,0xf0,0xd1,0x9d,0xc9,0x66,0x40,0xbd,0x0,0x1b,0x73, 0x18,0x67,0xe,0x9a,0x82,0xfc,0xf9,0x28,0xc7,0x7e,0x5c,0x7a,0x67,0xda,0x79,0xd4, 0xd3,0xa4,0xad,0x32,0x5,0xf8,0x22,0xf,0x9f,0xcd,0x5e,0xb0,0xce,0x74,0x80,0xa7, 0xc3,0x9c,0x8a,0x52,0x47,0xca,0x11,0x54,0x1c,0x55,0x74,0x66,0x4a,0xdb,0x68,0x21, 0x56,0x32,0x1d,0xf7,0xa9,0x11,0xa7,0x92,0x2c,0x71,0xcf,0x14,0x93,0xe7,0xe6,0xe6, 0xb0,0xb4,0xbc,0x60,0x18,0x41,0xf1,0xa0,0xdb,0x59,0x8,0x81,0x7b,0xf7,0xee,0x61, 0x63,0x63,0xc3,0xe,0xa5,0xb2,0xd7,0xe6,0xc8,0x62,0xe4,0x53,0x9f,0x99,0x77,0xd0, 0x51,0x56,0x25,0xe7,0x27,0x49,0x12,0xdc,0xb9,0x73,0x7,0x3b,0x3b,0x3b,0x78,0xee, 0xb9,0xe7,0xf0,0xc2,0xb,0x2f,0x98,0xda,0x47,0x1c,0x5b,0x5b,0x75,0x53,0xa6,0xd4, 0xcf,0x10,0xc7,0xb1,0x95,0xa3,0xa1,0xdf,0x13,0x30,0xb8,0x4a,0x0,0xf4,0xbc,0x6e, 0x8a,0x34,0xaf,0x66,0x4b,0xd7,0xf5,0xdc,0x73,0xcf,0xe1,0xe3,0x1f,0xff,0x38,0xea, 0xf5,0x3a,0xfe,0xee,0xef,0xfe,0xe,0x6f,0xbd,0xf5,0x56,0x26,0xc5,0x4a,0x20,0x71, 0xfa,0xf4,0x69,0xfc,0xd4,0x4f,0xfd,0x14,0xae,0x5c,0xb9,0xc2,0xc6,0xf5,0x41,0x14, 0x9,0xf9,0x95,0xab,0x4,0x87,0xbd,0x80,0x3,0x7,0x30,0xff,0xf9,0xcf,0x7f,0x7e, 0xa7,0xd3,0xe9,0xe0,0xc2,0x85,0xb,0xb6,0x38,0x46,0x35,0x88,0xfc,0xa6,0x27,0x90, 0x70,0x7f,0x57,0xd8,0x1d,0x9b,0x6e,0xd6,0x7a,0xbd,0x8e,0xd5,0xd5,0x55,0x9c,0x3e, 0x7d,0xda,0x76,0xba,0x5a,0xf6,0x13,0x17,0xb8,0x73,0xe7,0xe,0x1e,0x3e,0x7c,0x88, 0x24,0x31,0x14,0xc5,0x6a,0xb5,0xa,0x2f,0x1d,0x32,0xe4,0x7,0x9e,0x7d,0x7c,0x37, 0xaa,0x98,0x4,0x4e,0x4,0x14,0x8d,0x6a,0x65,0xb0,0x21,0xd9,0xf0,0x5c,0x63,0xad, 0xd9,0xc8,0x14,0x4e,0xd1,0x44,0x37,0xcd,0x72,0x42,0x74,0x6a,0xb2,0x9e,0xd3,0xfe, 0xf2,0xfe,0xd3,0x81,0xc3,0xa8,0xc8,0x21,0x3f,0x1a,0x95,0x7e,0x66,0x99,0x69,0xd0, 0x63,0xc1,0xcd,0xa5,0xa2,0x66,0xe4,0x41,0x78,0x56,0x72,0x25,0x5f,0xb8,0xb5,0xbd, 0xe,0x9a,0xdb,0xf4,0x12,0x39,0x7,0xc4,0xf6,0x89,0xe2,0x18,0xb,0xf5,0x1a,0x16, 0x17,0x17,0x4d,0x2f,0x1,0xa4,0x91,0x52,0x4f,0x3f,0xdf,0x38,0x8e,0x71,0xeb,0xd6, 0x2d,0x3b,0x2f,0xc4,0x4d,0x25,0xb9,0xd7,0x49,0xb6,0x58,0xd4,0xe1,0xef,0xd6,0xc9, 0x88,0x74,0x41,0x42,0x92,0xdd,0x6e,0x17,0xd7,0xae,0x5d,0xc3,0xd3,0x4f,0x3f,0x6d, 0x6b,0x14,0x41,0x10,0x64,0xf4,0xb2,0x48,0x1e,0x83,0x9a,0xda,0xae,0x5e,0xbd,0x6a, 0xb5,0x9c,0x84,0x10,0xf8,0xcc,0x67,0x3e,0x83,0x9f,0xff,0xf9,0x9f,0x47,0xa3,0xd1, 0xb0,0xce,0xd,0x3d,0xf,0x15,0xcb,0x5d,0x30,0xa0,0xda,0x1a,0x81,0x85,0xef,0xfb, 0xe8,0x76,0xbb,0xb8,0x72,0xe5,0xa,0xde,0x78,0xe3,0xd,0x34,0x1a,0xd,0x5c,0xbf, 0x7e,0x1d,0x5f,0xfb,0xda,0xd7,0x6c,0xa4,0xe1,0xde,0x7f,0x71,0x71,0x11,0x3f,0xf1, 0x13,0x3f,0x81,0x17,0x5f,0x7c,0x91,0xe5,0x41,0xa0,0x4,0x85,0x12,0x1c,0xe,0x25, 0xed,0xf4,0xe6,0x9b,0x6f,0xbe,0x5c,0xa9,0x54,0xbe,0xde,0x6a,0xb5,0x70,0xe1,0xc2, 0x5,0xcc,0xcf,0xcf,0x67,0x6,0xa2,0xb8,0x7,0x31,0x49,0x15,0x4c,0x4a,0x61,0xb8, 0xdc,0x70,0xcf,0xf3,0xb0,0xba,0xba,0x8a,0xb3,0x67,0xcf,0x5a,0x8f,0xc9,0xf3,0x3c, 0xe8,0xd4,0xfb,0x6c,0xed,0x76,0x70,0xeb,0xee,0x1d,0x34,0x9b,0x2d,0x33,0xa0,0xbd, 0x5a,0x3,0x63,0xc,0xd5,0x6a,0xd5,0x6e,0x24,0x52,0xb,0x15,0xe9,0xf7,0xe6,0xc, 0x29,0x16,0x76,0xb3,0x87,0xb2,0x4c,0xb2,0xda,0x4e,0x4e,0xf7,0xac,0x4e,0xa7,0x98, 0x99,0xfb,0xc8,0xc2,0x6e,0xf0,0xa2,0xa6,0xb4,0xc9,0x5d,0xc5,0x7,0xb9,0x66,0x8b, 0x1c,0x46,0x1d,0xf4,0xf9,0xd7,0x64,0xff,0x3e,0x8d,0xc4,0x58,0x66,0x9c,0xe7,0x0, 0x4,0xe8,0xa0,0x74,0xdf,0x57,0xe5,0x44,0x23,0xe4,0x28,0x14,0x35,0xb8,0x99,0x3, 0x5e,0xda,0xcf,0xdb,0x3c,0x96,0x91,0x7a,0x67,0x8c,0xe1,0xd4,0xa9,0x53,0x98,0xaf, 0x37,0xd2,0x4e,0x6a,0x4d,0x49,0xac,0xff,0x9f,0xbd,0x2f,0x8f,0x92,0xaa,0x3c,0xd3, 0x7f,0xee,0xad,0x7d,0xeb,0xbd,0x9b,0x6e,0x11,0x9a,0x45,0xf6,0xa5,0xd9,0x17,0x1, 0x1b,0x5,0x1,0x45,0xc,0x60,0x44,0xdc,0x62,0x50,0x33,0x39,0x73,0x32,0x27,0x33, 0x93,0x4c,0xce,0x2c,0xe7,0xcc,0x39,0x33,0x99,0xe4,0x77,0x62,0x5c,0x32,0x49,0x8c, 0xe6,0x88,0xeb,0x28,0x41,0x41,0x4,0x64,0xd1,0x80,0xd1,0x20,0x62,0x40,0x64,0x47, 0x9b,0xb5,0x81,0x66,0x6b,0xe8,0xa6,0xd7,0xda,0x97,0xfb,0xfd,0xfe,0xa8,0x7a,0xbf, 0xfe,0xee,0xed,0x5b,0x55,0xdd,0x48,0x37,0x20,0xdf,0x7b,0x4e,0x9f,0xea,0xaa,0xba, 0x75,0xeb,0xde,0x5b,0x55,0xef,0xf3,0xbd,0xcb,0xf3,0xbc,0x50,0x55,0x15,0xcd,0xcd, 0xcd,0x38,0x7b,0x36,0x19,0x55,0xd2,0xfb,0x64,0x1a,0xbd,0x2a,0x7e,0x2e,0x22,0x9, 0x4f,0x14,0x96,0x24,0x76,0x33,0x1,0x4e,0xbf,0x7e,0xfd,0xd0,0xaf,0x5f,0xbf,0x76, 0x20,0x42,0xdf,0x77,0xe,0x62,0xd1,0x28,0xe2,0xf1,0x38,0xca,0xca,0xca,0x90,0x9f, 0x9f,0xcf,0xb,0xcb,0x2f,0xbc,0xf0,0x2,0x7e,0xfe,0xf3,0x9f,0xc3,0xed,0x76,0xf3, 0x68,0xc3,0xe9,0x74,0x72,0x10,0xa3,0xf4,0x97,0xca,0xbf,0xaf,0xed,0x23,0x9,0x71, 0x46,0x4a,0x41,0x41,0x1,0xee,0xbc,0xf3,0x4e,0x78,0xbd,0x5e,0x9c,0x39,0x73,0x6, 0xbb,0x77,0xef,0x46,0x28,0x14,0x82,0xd3,0xe9,0xe4,0xd1,0x3,0x7d,0x87,0x1f,0x7b, 0xec,0x31,0x8c,0x1a,0x35,0x4a,0x31,0x5b,0xec,0x19,0x5b,0x5e,0xa5,0x49,0x70,0xb8, 0x12,0xf5,0x8,0xdf,0x86,0xd,0x1b,0x5a,0x1a,0x1a,0x1a,0x50,0x56,0x56,0x46,0xb3, 0x6f,0x75,0x8a,0x97,0xa2,0xdc,0x77,0x47,0x72,0xba,0x62,0x98,0x1f,0x8b,0xc5,0xe0, 0xf3,0xf9,0xd0,0xab,0x57,0x2f,0xe,0x3e,0x9a,0x16,0x7,0x90,0xfc,0xa1,0xc4,0x13, 0xc,0x75,0xd,0x8d,0xc9,0x71,0x8e,0xd1,0x18,0x3c,0x1e,0xf,0x14,0x8b,0xd,0x76, 0x47,0xb2,0xe0,0x9c,0x3c,0x86,0xd4,0x8f,0x29,0x55,0x98,0xb6,0x58,0xed,0x3c,0x2d, 0x64,0x96,0xae,0x21,0xc7,0x40,0x2b,0x5c,0x2,0xa,0x87,0xd5,0x92,0x22,0xd4,0x29, 0xa6,0x29,0xa5,0x6c,0xb3,0x93,0x8d,0x12,0xd3,0x97,0xb,0x16,0xe9,0xa,0xbd,0x1d, 0x5,0x7,0xdd,0x58,0xd5,0x8e,0x8,0x15,0x1a,0xa2,0x8a,0x84,0xd6,0x3e,0x15,0x24, 0x4a,0x93,0xb7,0x93,0xfb,0x50,0xda,0xa7,0x9e,0xcc,0xe6,0x30,0x70,0x56,0x34,0x92, 0xb3,0x10,0x18,0x63,0xd0,0x12,0x49,0xb9,0x89,0x1c,0x8f,0x17,0x5,0x85,0x79,0x3c, 0xf,0x4f,0xdf,0x13,0xab,0x9a,0xac,0x6f,0x5d,0xb8,0x70,0x1,0x17,0x2f,0x5e,0xe4, 0xab,0x73,0x63,0x3d,0x43,0x4,0x3a,0xf1,0xfb,0x65,0xa6,0xb0,0xcb,0xf7,0x9d,0x2a, 0x2,0x9f,0x3e,0x7d,0x1a,0xe1,0x70,0x18,0xfd,0xfa,0xf5,0x43,0x9f,0x3e,0x7d,0x0, 0x40,0x17,0x5,0xb7,0x31,0xb4,0x93,0xc4,0xbc,0x60,0x30,0x88,0x48,0x24,0x82,0x9b, 0x6e,0xba,0x89,0x13,0x3d,0xad,0x56,0x2b,0x9e,0x7f,0xfe,0x79,0xfc,0xd7,0x7f,0xfd, 0x17,0x6f,0x57,0x55,0x55,0x55,0x17,0x2d,0x10,0x80,0x18,0xd3,0x48,0xe9,0xd2,0x4c, 0x14,0xb5,0xe4,0xe5,0xe5,0xa1,0xb2,0xb2,0x12,0x85,0x85,0x85,0xb8,0x70,0xe1,0x2, 0xf6,0xec,0xd9,0x83,0xc6,0xc6,0x46,0x9e,0xc6,0x12,0x6b,0x16,0xf7,0xdf,0x7f,0x3f, 0xa6,0x4d,0x9b,0x26,0x32,0xa6,0x13,0xb2,0x1e,0x21,0xc1,0xa1,0xcb,0x40,0x82,0xc8, 0x95,0xcb,0xfd,0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0x78,0x10,0x75,0x75,0x75, 0xc8,0xcf,0xcf,0x47,0x8f,0x1e,0x3d,0xb8,0x1c,0x1,0xad,0x82,0xcc,0xd2,0x4d,0x69, 0xd7,0xbd,0x42,0x94,0x0,0x24,0xdb,0x2,0x1d,0xe,0x7,0xa,0xb,0xb,0x93,0xfb, 0x56,0x18,0xc0,0x54,0xc4,0xb5,0x14,0x3b,0xdb,0x6a,0x87,0x3f,0x94,0x94,0xf9,0x68, 0x68,0x68,0x0,0x94,0xb6,0x91,0x9e,0xc9,0x55,0x3f,0x74,0x1d,0x4d,0xe2,0xaa,0xd2, 0x62,0x48,0x2d,0x24,0xf3,0xdb,0x80,0x45,0xd5,0xa7,0x1b,0xe8,0x35,0xaa,0xaa,0xc2, 0x65,0xb7,0xe9,0x57,0x76,0x3c,0xa7,0x4d,0x2d,0xb1,0x96,0x76,0x2b,0x52,0xfd,0x7b, 0x24,0x3a,0x5,0x10,0xe9,0xd2,0x4c,0xe9,0xeb,0x10,0x1d,0x7,0x87,0x8e,0x80,0x81, 0x71,0xff,0xf1,0x44,0x7a,0x59,0x8f,0xe4,0xf6,0x6a,0x3b,0x70,0x30,0x8a,0x5,0x8a, 0x6d,0xa4,0x22,0xb0,0x24,0x12,0x9,0xc4,0x52,0xed,0x9f,0xf1,0x58,0x52,0x6c,0xae, 0x20,0x37,0xf,0x1e,0xaf,0xb,0x48,0x71,0x22,0x2c,0x36,0x2b,0x8f,0x16,0x5a,0x5b, 0x5b,0x71,0xee,0xdc,0x39,0x3e,0xb5,0xcd,0xac,0x1d,0xd9,0x2c,0x65,0x66,0x4c,0x25, 0xd2,0xe7,0x4c,0xe,0x5a,0x51,0x14,0x84,0xc3,0x61,0xd4,0xd4,0xd4,0x40,0xd3,0x34, 0xf4,0xef,0xdf,0x1f,0x25,0x25,0x25,0xfc,0x75,0xe4,0x70,0xc5,0x54,0x52,0x3c,0x1e, 0xe7,0xb2,0x18,0x85,0x85,0x85,0x28,0x2b,0x2b,0x3,0x63,0xc,0xe,0x87,0x3,0xcf, 0x3d,0xf7,0x1c,0x7e,0xfe,0xf3,0x9f,0xb,0x84,0xce,0x64,0x2a,0xca,0x6e,0xb7,0xf3, 0x63,0x72,0xb9,0x5c,0x48,0x24,0x12,0xed,0xd2,0x4a,0x46,0x70,0x30,0x46,0x18,0xf1, 0x78,0x1c,0xc5,0xc5,0xc5,0x98,0x3e,0x7d,0x3a,0xa,0xb,0xb,0x51,0x5f,0x5f,0x8f, 0xbd,0x7b,0xf7,0xa2,0xa1,0xa1,0x21,0x29,0x34,0x28,0x0,0x84,0xd5,0x6a,0xc5,0x9c, 0x39,0x73,0x30,0x77,0xee,0x5c,0xe,0x10,0xf4,0x31,0x49,0x60,0x90,0xe0,0x70,0x45, 0x6a,0xe,0x26,0x82,0x5e,0x8e,0x4f,0x3e,0xf9,0x24,0x7c,0xf6,0xec,0x59,0xf8,0x7c, 0x3e,0xae,0x67,0x23,0xd6,0xa,0x8c,0xc2,0x7d,0x99,0x9c,0xa1,0x91,0x85,0x4a,0xd7, 0xc6,0xe3,0xf1,0xa0,0xf7,0xcd,0xbd,0x92,0x2d,0x7e,0xa,0xad,0xe0,0xac,0xb0,0xa4, 0xd2,0x56,0xa1,0x50,0x8,0xa7,0xce,0x9c,0x45,0x34,0x1a,0x4d,0xae,0xac,0x52,0xab, 0x34,0xe3,0xca,0x4b,0x9c,0x45,0xa0,0x1a,0x74,0x87,0x18,0x48,0x9d,0x14,0xa6,0x2b, 0x5d,0x24,0x34,0x1,0x6c,0xda,0xd8,0xda,0x62,0xb,0xa2,0xee,0xda,0xc0,0x28,0xbf, 0xad,0x75,0x28,0x22,0x48,0x7,0x2e,0xd9,0x23,0x88,0x8e,0x81,0x43,0x36,0x55,0x58, 0xe3,0x60,0x1a,0x5e,0x5c,0x56,0x90,0xb6,0x26,0x1,0x0,0x8a,0xd6,0x6,0x28,0x66, 0x51,0x3,0x75,0xb5,0x19,0xc1,0x85,0xc6,0x78,0x26,0x12,0xc9,0x22,0xb2,0xc7,0xe3, 0x41,0x7e,0x4e,0x2e,0xd4,0xe4,0xe4,0x11,0x41,0x15,0x38,0x19,0x51,0xd6,0xd7,0x37, 0xa0,0xae,0xae,0x4e,0xd7,0x3e,0x6a,0x56,0x5f,0x30,0x3b,0x4e,0xe3,0xf4,0x42,0x23, 0xd7,0xa1,0xb5,0xb5,0x15,0x17,0x2e,0x5c,0x80,0xa6,0x69,0xe8,0xdb,0xb7,0x2f,0x8a, 0x8b,0x8b,0x75,0xe9,0x4e,0x12,0xef,0xa3,0x7a,0x58,0x3c,0x1e,0xe7,0x92,0xdf,0x24, 0x35,0xc3,0x18,0x83,0xdb,0xed,0xc6,0x53,0x4f,0x3d,0x85,0xa7,0x9e,0x7a,0x8a,0x2f, 0x58,0xc4,0xf4,0x1a,0xed,0x23,0x39,0x10,0x2b,0x9a,0x11,0x18,0xc4,0xfb,0xe2,0x44, 0x44,0xe2,0x6d,0xe4,0xe7,0xe7,0x63,0xea,0xd4,0xa9,0x28,0x2b,0x2b,0x43,0x63,0x63, 0x23,0xf6,0xec,0xd9,0x83,0xfa,0xfa,0x7a,0xae,0x6c,0x2c,0x2e,0x90,0xa6,0x4f,0x9f, 0x8e,0xfb,0xee,0xbb,0x4f,0x4d,0xf9,0x1d,0xc9,0x9e,0x96,0xe0,0x70,0x65,0xa3,0x6, 0xfa,0x62,0x89,0x3,0x48,0x76,0xec,0xd8,0xc1,0x8e,0x1d,0x3b,0x86,0x9c,0x9c,0x1c, 0x94,0x94,0x94,0xe8,0x98,0xa8,0x66,0x53,0xe3,0x32,0x45,0xe,0xf4,0x45,0xa6,0xb4, 0x14,0x89,0xff,0x59,0xad,0x56,0xf4,0xe8,0xd1,0x3,0x45,0x45,0x45,0x7c,0x5,0x46, 0x3f,0x5a,0x55,0x55,0xa1,0x31,0x5,0x97,0x2e,0x5d,0xc2,0x85,0xfa,0x3a,0x84,0xc3, 0x51,0x28,0xa9,0x1f,0x90,0xcd,0x66,0x87,0x6a,0xb3,0xc2,0x29,0xac,0xba,0x92,0x20, 0xa0,0x9f,0xbf,0xac,0x5a,0xac,0x0,0xd3,0xda,0x39,0x3d,0x31,0x45,0x61,0x74,0x40, 0xbc,0x78,0xa8,0xa8,0xb0,0x3a,0xac,0xfc,0x7f,0x5d,0xd1,0x53,0x68,0xab,0xcd,0x9c, 0x16,0xca,0x12,0x1d,0xa8,0x99,0xbb,0x98,0x14,0x96,0x6d,0x92,0x5a,0xa2,0x5d,0x4d, 0x41,0xdc,0x47,0x2c,0xd,0x49,0xad,0x6d,0x1b,0x25,0x23,0x38,0x91,0x9c,0x7a,0x7b, 0x32,0x1b,0x4b,0x1b,0x2d,0x88,0x73,0xca,0xbd,0x6e,0x3b,0xa,0xa,0xa,0xb8,0x8a, 0xaa,0xc8,0x4f,0x51,0x55,0x15,0x2d,0x2d,0x4d,0x38,0x77,0x2e,0x39,0xca,0xd3,0x62, 0xb1,0xb5,0xfb,0x1c,0x8c,0x3,0x7a,0xd2,0x45,0x41,0x74,0xd,0xa8,0x4e,0x46,0xed, 0xd8,0xcd,0xcd,0xcd,0xa8,0xad,0xad,0x85,0xd5,0x6a,0x45,0xbf,0x7e,0xfd,0x90,0x93, 0x93,0x83,0x68,0x34,0xca,0x99,0xcb,0x22,0x59,0x8e,0xba,0xa1,0x42,0xa1,0x10,0xc2, 0xe1,0x30,0x4a,0x4a,0x4a,0x50,0x58,0x58,0xc8,0x55,0x53,0x9f,0x7e,0xfa,0x69,0xfc, 0xf2,0x97,0xbf,0x4c,0xa6,0x25,0x53,0x35,0x6,0x9a,0x91,0xe2,0x72,0xb9,0x74,0xd1, 0xe,0x7d,0x7f,0xc5,0x9a,0x82,0x19,0x38,0x28,0x8a,0xa2,0x4b,0x15,0x1,0xe0,0x80, 0x91,0x97,0x97,0x87,0xdb,0x6e,0xbb,0xd,0xc5,0xc5,0xc5,0x88,0x44,0x22,0xd8,0xb5, 0x6b,0x17,0x6a,0x6b,0x6b,0xf9,0xb1,0x8b,0x11,0xc4,0x98,0x31,0x63,0xf0,0xf8,0xe3, 0x8f,0x5b,0x85,0x79,0xf2,0x9,0x9,0x10,0x12,0x1c,0xae,0x64,0xcd,0x41,0x6c,0x87, 0x53,0x19,0x63,0xda,0xc1,0x83,0x7,0xd9,0x9e,0x3d,0x7b,0xe0,0x74,0x3a,0x51,0x5a, 0x5a,0xca,0x43,0xdb,0x8e,0xa6,0x96,0x44,0x49,0x3,0x91,0xb1,0xda,0xf6,0x63,0x4e, 0x3a,0xb,0x8f,0xc7,0x83,0xd2,0xd2,0x12,0xe4,0xe7,0xe7,0x27,0xc5,0xf7,0xa8,0x4e, 0xa0,0x24,0x41,0x25,0x16,0xd7,0x70,0xa9,0xa9,0x11,0x75,0x75,0x97,0x10,0x8,0x6, 0xa1,0xa6,0x56,0x6e,0x36,0x3,0xab,0xda,0x98,0x5e,0x32,0xe,0xb7,0x31,0xa6,0x20, 0xa8,0xd9,0x88,0xfb,0xf8,0x76,0xdd,0x3f,0x6d,0xc3,0x5f,0xec,0x16,0x3d,0x7b,0x5b, 0x51,0x14,0x58,0x2d,0xe6,0x13,0xe2,0x3a,0xa,0xe,0x62,0xab,0xe9,0xe5,0x80,0x83, 0x28,0x54,0x68,0x96,0x1e,0x8a,0x6a,0xe9,0x1d,0x6b,0xd6,0x63,0x63,0xc,0x8a,0xd6, 0x6,0xc,0xc6,0x9a,0x82,0x11,0x74,0x88,0xe9,0xc,0x20,0x39,0x88,0x27,0x37,0x17, 0x6e,0xbb,0xc2,0x15,0x77,0xc5,0xbc,0x7e,0x28,0x14,0x42,0x5d,0xdd,0x25,0xd4,0xd5, 0x9d,0x17,0x34,0x89,0xd4,0x8c,0xc5,0x66,0xb3,0xd4,0x91,0xf8,0x1d,0xa4,0x6d,0xa8, 0x61,0xa2,0xb1,0xb1,0x91,0x6b,0x17,0x11,0x2f,0x81,0x1c,0x37,0x75,0x14,0x11,0xf8, 0x50,0xda,0x54,0x54,0x58,0xcd,0xc9,0xc9,0xd1,0x1,0xc3,0x2f,0x7e,0xf1,0xb,0xce, 0xc9,0xa1,0xef,0x4,0x39,0x67,0x3a,0x4e,0x72,0xd8,0x62,0xb1,0x39,0x1d,0x38,0x88, 0x0,0x21,0x8a,0xef,0x89,0xfc,0x9,0xb7,0xdb,0x8d,0x19,0x33,0x66,0xa0,0xb8,0xb8, 0x18,0xb1,0x58,0xc,0xfb,0xf6,0xed,0x43,0x4d,0x4d,0x8d,0x69,0x4,0x31,0x78,0xf0, 0x60,0xfc,0xe8,0x47,0x3f,0xf2,0x31,0xc6,0xfc,0x12,0x18,0x24,0x38,0x74,0x8b,0x55, 0x57,0x57,0xb3,0x1d,0x3b,0x76,0x40,0x51,0x14,0x94,0x96,0x96,0xc2,0xeb,0xf5,0xb6, 0x2b,0xe,0x9a,0x15,0x3,0x3b,0x92,0x76,0xe2,0xd9,0x9d,0xd4,0x8a,0xaf,0xa0,0xa0, 0x0,0xa5,0xa5,0xa5,0xbc,0x5d,0x50,0x94,0xea,0x50,0xad,0xa9,0xe9,0x5c,0xd,0xcd, 0xa8,0xad,0xbb,0x8,0xbf,0xdf,0xf,0xbb,0xc3,0x9d,0x9c,0xfb,0x90,0x2,0x2d,0x9a, 0x56,0x67,0xb1,0xa6,0x0,0x82,0x5a,0x55,0x53,0xc4,0x39,0x63,0x81,0xb3,0x23,0x8a, 0xa8,0x46,0x50,0x13,0x6b,0x16,0x76,0x8b,0xaa,0x4f,0x6b,0xa9,0xaa,0xe,0x90,0x4c, 0x53,0x53,0x59,0xba,0x6e,0xcc,0xd2,0x51,0x46,0x0,0xe0,0xdd,0x40,0x29,0xee,0x80, 0xf1,0xaf,0xa3,0x40,0x0,0xdd,0x30,0x9e,0x4,0xc4,0xa,0x35,0xd,0xde,0x69,0x7b, 0x5f,0x81,0xc4,0xc6,0x45,0xe8,0x34,0x24,0x62,0x71,0xc4,0xe2,0x51,0x0,0x1a,0x72, 0x3c,0x5e,0xe4,0x17,0xe4,0xc2,0x6e,0x4f,0xea,0x21,0x1,0xfa,0xe9,0x6a,0xb1,0x58, 0xc,0x97,0x2e,0x5d,0x42,0x5d,0x5d,0x1d,0x42,0xa1,0x90,0x29,0xb,0xde,0xc,0x18, 0xc4,0xeb,0x95,0x2e,0xdd,0x44,0x4e,0x39,0x1a,0x8d,0xa2,0xae,0xae,0xe,0x8d,0x8d, 0x8d,0x3c,0xea,0x75,0x3a,0x9d,0xba,0x74,0x93,0x71,0x1a,0x22,0x75,0x24,0x45,0xa3, 0x51,0x14,0x17,0x17,0x23,0x2f,0x2f,0x8f,0x13,0x34,0x9f,0x7f,0xfe,0x79,0xfc,0xf7, 0x7f,0xff,0x37,0x67,0xf3,0xd3,0xca,0x9e,0x3a,0xdf,0xc4,0xcf,0x5d,0x74,0xfa,0xe9, 0xee,0x8b,0xb,0x19,0xda,0x47,0x3a,0x10,0x61,0x8c,0xc1,0xeb,0xf5,0x62,0xca,0x94, 0x29,0xe8,0xd5,0xab,0x17,0xe2,0xf1,0x38,0xe,0x1e,0x3c,0x88,0x63,0xc7,0x8e,0x25, 0x79,0x3c,0x29,0x80,0xa3,0x2e,0xa6,0xbe,0x7d,0xfb,0xe2,0x27,0x3f,0xf9,0x49,0x1e, 0x80,0x96,0x74,0x6d,0xad,0xb2,0x93,0x49,0x82,0xc3,0x15,0xb5,0xda,0xda,0xda,0xc6, 0xad,0x5b,0xb7,0xe6,0xc5,0x62,0x31,0x14,0x14,0x14,0xa0,0xa0,0xa0,0x40,0xf7,0xe3, 0x22,0x27,0x48,0x2b,0x4a,0xfa,0x1,0x75,0xc6,0xc8,0xf1,0xd9,0xed,0x76,0x14,0x15, 0x15,0xf1,0x54,0x93,0x2e,0x95,0xa1,0x0,0x16,0x35,0x29,0xad,0x1c,0x8,0x4,0x70, 0xfe,0x62,0x1d,0x82,0xc1,0x20,0x6f,0x7b,0x15,0x8b,0x7b,0xe,0x87,0x3,0x50,0xd4, 0xb6,0xe3,0x13,0x7e,0xf,0x22,0x57,0x42,0x2c,0x7c,0x66,0x6a,0x67,0xcd,0x94,0x92, 0x32,0xce,0x61,0xa6,0xc7,0x2c,0x60,0xed,0xd2,0x3e,0xd9,0xda,0x32,0x8d,0x91,0x97, 0x59,0x37,0x10,0xbd,0x7f,0xdc,0x24,0x65,0x96,0xee,0xd8,0xcd,0xa2,0x3,0xa3,0xfc, 0x90,0x38,0x74,0x89,0x24,0xd0,0x29,0x5d,0x64,0x2c,0xd8,0x26,0x12,0x9,0x4e,0x2e, 0xf3,0x7a,0xbd,0xc8,0xf5,0x7a,0x60,0xb3,0x5b,0x0,0x8d,0xf2,0xfe,0x40,0x3c,0xae, 0x71,0xc7,0x5c,0x5f,0x5f,0x8f,0x8b,0x17,0x93,0xa0,0x4e,0xab,0xe5,0x6c,0xfa,0x47, 0xe9,0xc6,0xd9,0xf2,0x5,0x83,0x40,0xcc,0xb4,0x5a,0x93,0x82,0x8f,0xe7,0xcf,0x9f, 0x47,0x30,0x18,0x44,0x5e,0x5e,0x1e,0xef,0x30,0xa2,0xef,0xa4,0x28,0x5,0x43,0x46, 0x73,0x46,0x80,0xa4,0x2,0x6c,0x51,0x51,0x51,0x32,0x25,0xe6,0xf5,0xe2,0x99,0x67, 0x9e,0xc1,0x2f,0x7f,0xf9,0x4b,0x5e,0x3f,0xa0,0x69,0x70,0x14,0xd,0x1b,0x41,0xc0, 0x8,0x6,0x66,0xad,0xac,0x66,0xb7,0xe9,0xda,0x5d,0xa9,0x26,0xe2,0x76,0xbb,0x31, 0x75,0xea,0x54,0xf4,0xe9,0xd3,0x7,0x89,0x44,0x2,0x55,0x55,0x55,0xa8,0xaa,0xaa, 0x82,0xc5,0x62,0x81,0xcb,0xe5,0xe2,0x5,0x71,0x55,0x55,0x71,0xf3,0xcd,0x37,0x63, 0xc9,0x92,0x25,0x28,0x2d,0x2d,0x55,0x8d,0x33,0xa9,0xd1,0x36,0xa7,0x5a,0x2,0x84, 0x4,0x87,0x2b,0x53,0xb0,0x4e,0xd5,0x25,0x6c,0x9b,0x37,0x6f,0x8e,0x9c,0x3f,0x7f, 0x1e,0x3e,0x5f,0x52,0x81,0x95,0xd8,0xa6,0x22,0x11,0xa9,0x33,0xc2,0x77,0xe2,0xb8, 0x52,0x92,0xfb,0xa6,0x99,0xbf,0xe,0x87,0x3,0xc5,0x85,0x45,0x28,0x2e,0x2e,0x86, 0xdd,0x99,0x1c,0xea,0xc2,0xf3,0xc9,0x5a,0xdb,0xca,0xbf,0xa5,0xa5,0x5,0xf5,0x8d, 0xd,0x68,0x6d,0x6d,0x85,0xa6,0x25,0x7,0xc0,0x58,0x39,0x48,0x58,0x4c,0x7f,0x88, 0xe4,0xe4,0xac,0xc2,0xca,0xdf,0xcc,0x91,0x1a,0x87,0x9,0xa5,0x2b,0x32,0x67,0x2a, 0x2c,0xa7,0xeb,0x66,0xea,0xa8,0xa4,0xb4,0x31,0x15,0x97,0xee,0xbd,0xcc,0x56,0xd9, 0xe4,0xc4,0xb2,0xd5,0x86,0x8c,0x60,0xa4,0xf1,0xf4,0x51,0xea,0xbe,0x96,0x0,0x13, 0x40,0x1,0x48,0xae,0xc2,0xb,0x72,0xf3,0x92,0xed,0x9c,0xce,0x94,0xa4,0x45,0x3c, 0xa1,0x73,0xdc,0x16,0x8b,0x5,0xd,0xd,0xd,0xb8,0x78,0xf1,0x62,0xea,0xf3,0xd1, 0xf8,0xaa,0xb9,0x33,0xd,0xd,0x46,0x50,0x16,0x6b,0xc,0xf4,0xb9,0x52,0x1a,0x29, 0x1e,0x8f,0x23,0x27,0x27,0x7,0x3e,0x9f,0x8f,0xa7,0x7e,0xc4,0x55,0xba,0x78,0x8d, 0x68,0x8,0x15,0x45,0xad,0x5e,0xaf,0x17,0x8a,0xa2,0x20,0x2f,0x2f,0xf,0xbf,0xfa, 0xd5,0xaf,0xf0,0x9b,0xdf,0xfc,0x6,0x0,0x74,0x91,0xa9,0x58,0x1f,0x30,0x3,0x86, 0x6c,0x91,0x84,0x91,0x14,0x97,0x29,0x72,0x20,0x30,0x23,0xc2,0xdc,0x94,0x29,0x53, 0x50,0x5e,0x5e,0xe,0x55,0x55,0x39,0x9b,0x5a,0x14,0xa0,0xa4,0xb6,0xd8,0x92,0x92, 0x12,0x3c,0xf1,0xc4,0x13,0x28,0x2f,0x2f,0x57,0xd3,0xa5,0x97,0xa4,0xb2,0xab,0x4, 0x87,0x2b,0x56,0x97,0xa0,0x56,0xb9,0xed,0xdb,0xb7,0xc7,0x8f,0x1f,0x3f,0xe,0xab, 0xd5,0x8a,0xd2,0xd2,0xd2,0x24,0x1f,0x21,0xe5,0xd8,0x33,0x39,0xc5,0x6c,0x4e,0x49, 0x5c,0x59,0xf3,0x1a,0x85,0x96,0x6c,0x1f,0x2c,0x29,0x29,0x41,0x49,0x49,0x9,0x14, 0x8b,0xca,0x8b,0x9d,0x3a,0x27,0xe,0x86,0x50,0x30,0x82,0xfa,0xc6,0x6,0x34,0x35, 0x35,0x21,0x16,0xd7,0x78,0x1a,0x20,0xf9,0x43,0xd4,0xaf,0xf0,0x14,0x6b,0xea,0x87, 0x68,0xe2,0xdc,0xc5,0xbe,0xf9,0xac,0xd3,0xc4,0xb2,0x80,0x81,0x82,0xf4,0x52,0x1a, 0xe9,0xe6,0x18,0xa7,0x4b,0x7,0x65,0x2,0x9f,0x4c,0xb3,0x9e,0xd3,0x45,0x44,0x66, 0x35,0x86,0x84,0xa6,0x21,0x91,0x10,0x24,0x32,0x84,0x7a,0x42,0x22,0x9e,0xac,0x27, 0xb8,0xec,0x36,0xe4,0xe4,0xe4,0x24,0x1d,0x29,0xe2,0x29,0x87,0x4,0xe,0xea,0x94, 0xf3,0xf,0x7,0x43,0x38,0x7d,0xf6,0xc,0xcf,0xe3,0x8b,0xa0,0x90,0xe9,0x1c,0x3b, 0x12,0x3d,0x50,0x94,0x4a,0x92,0x18,0xf5,0xf5,0xf5,0x7c,0x12,0x9c,0xdb,0xed,0x4e, 0xce,0x2a,0x77,0x3a,0x75,0xcd,0xd,0x46,0xcd,0xa5,0x44,0x22,0x81,0x68,0x34,0xa9, 0x86,0x5d,0x58,0x58,0x8,0xa7,0xd3,0x9,0xa7,0xd3,0x9,0xb7,0xdb,0x8d,0x67,0x9f, 0x7d,0x16,0xbf,0xfd,0xed,0x6f,0x75,0x32,0xe1,0xc6,0x9a,0x85,0x59,0xfa,0xc8,0x18, 0x29,0x64,0x3,0x7,0xb3,0x48,0xc2,0x2c,0x5,0x45,0xef,0x69,0xb5,0x5a,0x51,0x59, 0x59,0x89,0x3e,0x7d,0xfa,0x40,0x51,0x14,0x9c,0x3d,0x7b,0x16,0x5f,0x7c,0xf1,0x85, 0xae,0xde,0x41,0x35,0x11,0x9f,0xcf,0x87,0x25,0x4b,0x96,0x60,0xd0,0xa0,0x41,0x16, 0x9a,0x24,0x47,0x43,0x82,0x0,0xa8,0x8c,0xb1,0xb8,0x74,0xd5,0x12,0x1c,0xbe,0x71, 0xe4,0x60,0x7c,0xfc,0xd8,0xb1,0x63,0x6c,0xd7,0xae,0x5d,0xd0,0x34,0xd,0x45,0x45, 0x45,0xc8,0xcd,0xcd,0x6d,0x27,0x86,0xd6,0x99,0x9a,0x43,0xba,0x5c,0x3c,0x4b,0x68, 0xbc,0xf3,0xc4,0xe1,0x70,0x24,0xc9,0x79,0x5,0xf9,0x2,0x9b,0x35,0xde,0x26,0x83, 0xa1,0x26,0x7f,0x98,0x91,0x58,0xb2,0x4b,0xa5,0xa9,0xa9,0x9,0xfe,0x40,0x88,0x87, 0xff,0x6d,0x53,0xb7,0x52,0xe,0xdf,0xa2,0xc2,0x2e,0xb4,0xc2,0x1a,0x1,0x47,0x64, 0x50,0x1b,0x57,0xef,0xc6,0x82,0x76,0xfa,0x73,0xd1,0x32,0xf2,0x20,0x32,0xf5,0xf0, 0x9b,0xbd,0xa6,0xdd,0xad,0xc9,0x7e,0x8c,0x1d,0x45,0xc6,0x73,0x33,0x2,0x86,0x98, 0x36,0x12,0x23,0x6,0x92,0x8e,0x60,0x8c,0xc1,0x66,0xb5,0xc0,0xe3,0xf1,0x20,0xcf, 0xe7,0x4d,0xa6,0xeb,0x58,0x22,0x25,0xd3,0xde,0xd6,0xed,0x63,0xb1,0xd8,0xf8,0xfc, 0xe4,0xfa,0x8b,0x75,0x49,0x9e,0x8a,0xda,0x3e,0x42,0x30,0x76,0x16,0x75,0xd4,0x44, 0x42,0x23,0x39,0x50,0x1a,0x7d,0x1b,0x8,0x4,0x78,0xe,0x9e,0xd2,0x2b,0xa2,0x7c, 0x85,0x58,0x93,0xa0,0x99,0xc,0xd4,0x9d,0x94,0x97,0x97,0x7,0xb7,0xdb,0xcd,0xc1, 0xe1,0xb7,0xbf,0xfd,0x2d,0x7e,0xff,0xfb,0xdf,0xf3,0x6b,0xe5,0x70,0x38,0xf8,0xd8, 0x51,0xf1,0xbb,0x68,0xac,0x2d,0x99,0xfd,0x65,0x3,0x8b,0x6c,0x69,0x25,0x8a,0x1e, 0xa8,0x45,0x96,0xd2,0x47,0xb7,0xde,0x7a,0x2b,0x7a,0xf7,0xee,0xd,0x55,0x55,0x51, 0x5f,0x5f,0x8f,0x2f,0xbe,0xf8,0x2,0xd1,0x68,0x94,0x2f,0xd4,0x34,0x4d,0x83,0xc3, 0xe1,0x80,0xcb,0xe5,0xc2,0xe2,0xc5,0x8b,0x31,0x66,0xcc,0x18,0xc5,0xf8,0x7b,0x96, 0xa9,0x25,0x9,0xe,0x57,0x2a,0xad,0xc4,0xdb,0xe3,0x52,0x8e,0x87,0x55,0x57,0x57, 0xff,0xf6,0xeb,0xaf,0xbf,0xfe,0x71,0x6b,0x6b,0x2b,0xdc,0x6e,0x37,0x6f,0x77,0xa5, 0x8e,0x95,0x8e,0xd4,0x1d,0x8c,0xd3,0xde,0xc4,0x95,0xbb,0x28,0x6f,0x4c,0x3f,0x42, 0x6a,0x1f,0xec,0xd1,0xa3,0x18,0x85,0x85,0x85,0x7c,0xb5,0xc4,0xe7,0x4f,0xa7,0xf8, 0x12,0xa,0x92,0x3f,0xb0,0x66,0x7f,0x2b,0xfc,0x7e,0x7f,0x4a,0x83,0x3f,0xc9,0x7a, 0x55,0x53,0x40,0x61,0xb7,0x3b,0xa0,0x69,0x89,0x76,0x1d,0x48,0xe4,0x88,0x14,0xc3, 0x1c,0x6a,0x33,0x71,0x39,0xd5,0x10,0x59,0x74,0x64,0xf5,0x6f,0x4c,0x1,0x65,0x8a, 0xe,0x8c,0xdd,0x38,0xed,0x0,0xc0,0xc4,0xf1,0x1a,0x9d,0xb0,0x99,0xde,0x15,0xaf, 0x1d,0x90,0x83,0x4e,0xad,0xa4,0xe9,0x8f,0xcc,0xeb,0x72,0xc3,0xed,0x4e,0xae,0xa6, 0xb9,0x5a,0x2f,0x4b,0x8,0x29,0x8c,0x38,0xef,0x3a,0xf3,0xfb,0xfd,0xb8,0x74,0xe9, 0x12,0x9a,0x9a,0x9a,0x78,0x14,0x61,0x64,0xd3,0x1b,0x27,0xe,0x76,0x24,0xad,0x44, 0xe,0x5d,0x3c,0x3f,0x92,0xb6,0x38,0x7f,0xfe,0x3c,0xbf,0x4f,0xe9,0x15,0x7a,0x1d, 0x49,0x64,0x8b,0xe9,0x1f,0xc6,0x18,0x22,0x91,0x8,0x9f,0x5,0x91,0x9b,0x9b,0xb, 0x97,0xcb,0x5,0x0,0x28,0x28,0x28,0xc0,0x1b,0x6f,0xbc,0x81,0xff,0xf7,0xff,0xfe, 0x5f,0x3b,0xa9,0x18,0x45,0x51,0xe0,0x70,0x38,0x10,0x8b,0xc5,0xe0,0x74,0x3a,0x11, 0x8d,0x46,0x75,0xd3,0xb,0x8d,0x80,0x20,0x76,0x2b,0x89,0xed,0xac,0xc6,0x2e,0xa5, 0x74,0x69,0x25,0x63,0xda,0x89,0x24,0xc4,0xa9,0x4e,0x43,0x29,0xa6,0xfe,0xfd,0xfb, 0x43,0x55,0x55,0x5c,0xbc,0x78,0x11,0x7b,0xf7,0xee,0x45,0x53,0x53,0x13,0x4f,0xa7, 0x51,0x6d,0xc4,0x6a,0xb5,0xe2,0xfe,0xfb,0xef,0xc7,0xd4,0xa9,0x53,0x15,0xe9,0x9a, 0x25,0x38,0x74,0x15,0x50,0x88,0x83,0x46,0x8,0x2c,0x2c,0xdb,0xb7,0x6f,0x8f,0x1f, 0x3d,0x7a,0x14,0x56,0xab,0x15,0x25,0x25,0x25,0xf0,0xf9,0x7c,0xba,0x54,0x51,0xb6, 0x74,0x12,0xfd,0x50,0x8c,0x79,0xf1,0xb6,0x15,0xa9,0x85,0x3f,0x47,0xe,0x89,0x5e, 0x57,0x58,0x98,0x14,0xf4,0x13,0xc5,0x2,0xc5,0x42,0x25,0xed,0x3b,0x16,0x4f,0x4e, 0x18,0x6b,0x69,0x69,0x41,0x4b,0x20,0x29,0x89,0xa0,0x69,0x1a,0x1c,0x82,0x16,0x8e, 0x69,0x71,0xd1,0x40,0xaa,0x33,0xa6,0x36,0xcc,0x52,0x24,0xe9,0x3a,0x84,0x2e,0x47, 0x6e,0xc3,0x4c,0x7e,0xda,0xc,0x3c,0xd2,0xed,0x27,0x2e,0xb4,0x9c,0x9a,0x75,0x34, 0x51,0x84,0x90,0x48,0xc4,0x53,0x40,0xc3,0xe0,0x76,0x38,0xe1,0xf5,0xb9,0xe1,0x76, 0xba,0x74,0x9f,0xd,0x39,0x73,0xca,0x83,0x53,0xc4,0xd1,0xd4,0xd4,0x84,0xba,0xba, 0x3a,0xf8,0xfd,0x7e,0xe,0xe8,0xe2,0x9c,0x3,0xb1,0x80,0xac,0xd3,0xb5,0x52,0xd5, 0xe,0x2d,0x1e,0x8c,0xfc,0x85,0x68,0x34,0x8a,0xa6,0xa6,0x26,0xd4,0xd7,0xd7,0x73, 0x56,0x31,0x39,0x41,0x51,0xb6,0x42,0x4,0x4,0xfa,0x3e,0x70,0x42,0xa5,0xdd,0xe, 0x9f,0xcf,0xc7,0x79,0xa,0x25,0x25,0x25,0x58,0xb1,0x62,0x5,0x7e,0xf9,0xcb,0x5f, 0xb6,0xd3,0x12,0xa3,0xef,0x6,0x15,0xdf,0x45,0xc0,0x36,0x82,0x83,0x11,0x28,0x32, 0x15,0xac,0x8d,0x1c,0x88,0x74,0x11,0x5,0x15,0xa5,0xa9,0x53,0x8a,0xea,0x7c,0xe, 0x87,0x3,0x93,0x27,0x4f,0x46,0xbf,0x7e,0xfd,0x60,0xb1,0x58,0xd0,0xda,0xda,0x8a, 0x9d,0x3b,0x77,0xa2,0xb9,0xb9,0x99,0x47,0x51,0xe2,0xbe,0xe6,0xcc,0x99,0x83,0xbb, 0xee,0xba,0x4b,0x91,0xf5,0x6,0x9,0xe,0x57,0xb4,0xde,0x20,0x46,0x12,0xa9,0xc0, 0x81,0x89,0xcf,0x9f,0x3a,0x75,0x8a,0xed,0xde,0xbd,0x1b,0xad,0xad,0xad,0xbc,0x15, 0xd0,0x38,0xd3,0x37,0x5d,0xaa,0x80,0xb6,0x31,0x6a,0xe4,0x58,0x2c,0x16,0x24,0x98, 0x6,0x15,0xc6,0x4e,0xa2,0xb6,0x74,0x88,0xa6,0x25,0xbb,0x92,0x3c,0x1e,0x17,0xa, 0xb,0xb,0x91,0x97,0x97,0x97,0xdc,0x8f,0xd6,0xe6,0x10,0x15,0x8b,0xda,0x26,0x5, 0x91,0x8a,0x3e,0x82,0xc1,0x30,0x5a,0x83,0x1,0xb4,0xb4,0xb6,0x22,0x16,0x8b,0x71, 0x20,0x31,0xae,0x6,0x2d,0x2,0x53,0xda,0xe8,0x4,0xd2,0xe5,0xf0,0x2f,0x27,0x7d, 0x96,0xee,0xf5,0x1d,0x6d,0x85,0x35,0x6b,0x75,0x25,0x59,0x73,0xa3,0xaa,0xaa,0x9e, 0x10,0x87,0x54,0x6d,0xc6,0xe,0x8f,0xdb,0xd,0x8f,0xd3,0x1,0x87,0x9d,0x9c,0x7f, 0x1c,0x10,0x1,0x8d,0xa9,0xfc,0x33,0x69,0x6d,0x6d,0x45,0x6b,0x6b,0x2b,0x2e,0x5d, 0x6a,0xe4,0xd7,0x2f,0x79,0x6d,0xd0,0x6e,0x61,0x60,0x9c,0x2a,0x68,0x16,0x85,0x65, 0x2b,0x48,0xd3,0xb5,0x6f,0x6d,0x6d,0xe5,0x6d,0xb0,0x44,0xb8,0x13,0xb,0xb7,0xe2, 0x90,0x28,0x23,0x83,0x9a,0xa6,0xcd,0xb9,0x5c,0x2e,0xb8,0x5c,0x2e,0xfe,0x79,0x17, 0x14,0x14,0x60,0xed,0xda,0xb5,0xa6,0xc0,0x60,0x6c,0x93,0xa5,0xfd,0x51,0xfd,0x41, 0x8c,0x4a,0xc4,0x4e,0x34,0xb3,0x88,0xc2,0x2c,0x8a,0xe8,0x28,0x48,0x10,0x28,0x91, 0xdc,0x7,0x5d,0x47,0x8b,0xc5,0x82,0xf1,0xe3,0xc7,0x63,0xd0,0xa0,0x41,0x5c,0x26, 0x64,0xe7,0xce,0x9d,0x68,0x68,0x68,0xe0,0x5c,0x8,0xf1,0xda,0xdc,0x71,0xc7,0x1d, 0x58,0xb0,0x60,0x81,0x9d,0x31,0x16,0x93,0x69,0x25,0x9,0xe,0xdd,0x99,0x7a,0xf2, 0x6c,0xdd,0xba,0xd5,0x7f,0xe4,0xc8,0x11,0xf8,0x7c,0x3e,0x4e,0x9a,0x4b,0xa7,0xf7, 0x6f,0x26,0x90,0x26,0x3a,0xc4,0x8e,0x5c,0x43,0x5a,0x55,0xd2,0x8a,0xd1,0xe9,0x74, 0x22,0x27,0x27,0x7,0x5,0x5,0x5,0x5c,0xdc,0xaf,0xd,0x48,0xda,0xa4,0x32,0xc4, 0xf7,0x8b,0xc5,0x92,0xc3,0xec,0x5b,0x5a,0x5b,0x11,0xc,0x86,0x11,0x4d,0x24,0xeb, 0x74,0xaa,0x62,0x81,0x9a,0x9a,0x25,0x1,0x4b,0x7b,0xe,0x3,0x0,0x58,0x99,0x62, 0xca,0x69,0xe0,0x8f,0x21,0xa1,0xab,0x51,0x74,0x14,0x14,0x78,0x64,0xa2,0xa8,0x69, 0x53,0x5a,0xa4,0x1d,0x65,0x2c,0x3c,0xeb,0x54,0x51,0x69,0x86,0x82,0x96,0xe4,0x30, 0x30,0x24,0x60,0x51,0x54,0x4e,0xe6,0xca,0xf3,0x7a,0xb8,0x13,0x21,0xc7,0x27,0x46, 0x43,0xa2,0x3e,0x51,0x34,0x1a,0x45,0x73,0x73,0x33,0x1a,0x1a,0x92,0x9d,0x61,0xb4, 0x92,0xee,0x8c,0x99,0x15,0xe5,0xa9,0xd8,0x6a,0x4c,0x1b,0x89,0x82,0x74,0x91,0x48, 0x4,0x97,0x2e,0x5d,0x82,0xdf,0xef,0x47,0x24,0x12,0xd1,0x15,0xb9,0xa9,0x93,0x87, 0x56,0xd7,0x4,0x28,0xe2,0x79,0x50,0xa7,0x9b,0xcd,0x66,0xe3,0x22,0x76,0xe,0x87, 0x3,0x3e,0x9f,0xf,0x1f,0x7e,0xf8,0x21,0x9e,0x7a,0xea,0x29,0x5d,0x74,0x2a,0x72, 0x6c,0x8c,0xdf,0x37,0x63,0xad,0x21,0x5d,0xe4,0x60,0x56,0x8b,0x30,0x82,0x46,0xa6, 0x42,0x74,0xa6,0x6d,0xc4,0x5b,0x4d,0xd3,0x30,0x71,0xe2,0x44,0xc,0x1a,0x34,0x8, 0x16,0x8b,0x5,0xe1,0x70,0x18,0x7,0xe,0x1c,0xc0,0xc9,0x93,0x27,0xe1,0x72,0xb9, 0x78,0x2b,0x31,0xa5,0xdc,0xc6,0x8c,0x19,0x83,0x25,0x4b,0x96,0x38,0x18,0x63,0xd1, 0x74,0x73,0x21,0x24,0x89,0x4e,0x82,0x43,0x97,0x0,0xc5,0x91,0x23,0x47,0x12,0x7b, 0xf7,0xee,0x45,0x38,0x1c,0x46,0x51,0x51,0x11,0xf2,0xf3,0xf3,0xdb,0xfd,0xf0,0xc5, 0x5c,0xae,0x59,0xb1,0x54,0x5c,0x71,0x76,0x74,0x35,0x2e,0x4a,0x7b,0x90,0xf6,0x4d, 0x49,0x49,0x9,0x3c,0x1e,0xf,0xdc,0x6e,0x37,0x4f,0x41,0x88,0x91,0x8a,0xae,0xdb, 0x47,0x49,0xfe,0xd0,0x22,0x91,0x18,0x5a,0x2,0xfe,0xa4,0x8c,0x42,0x4a,0xb2,0x59, 0x5c,0xc1,0x8a,0x2b,0x54,0x63,0x4e,0xdb,0xec,0x7c,0x8c,0xe0,0x60,0x8c,0x38,0xcc, 0x1c,0xbf,0x70,0x66,0xa6,0x51,0x42,0x9b,0xe4,0x78,0x7b,0x29,0xb,0xdd,0xf3,0x44, 0xd6,0xb3,0xdb,0xe1,0x74,0xda,0xe1,0x76,0x24,0xc5,0xe2,0xac,0x36,0x15,0x16,0xa5, 0xcd,0x81,0x8a,0x69,0x23,0x31,0x1d,0xc3,0x18,0x43,0x4b,0x4b,0xb,0x7,0x84,0x48, 0x24,0xa2,0xdb,0x6f,0xb6,0xcf,0xc7,0xac,0x23,0xcb,0x98,0x5a,0xa,0x87,0xc3,0x7c, 0x11,0x21,0xa6,0x5,0x69,0x3b,0xbf,0xdf,0x8f,0x96,0x96,0x16,0x4,0x83,0x41,0x34, 0x37,0x37,0x23,0x18,0xc,0x72,0x80,0x17,0x7,0xeb,0x88,0x6a,0xa8,0xf4,0x5e,0xf4, 0x79,0x53,0x71,0xda,0xed,0x76,0x43,0xd3,0x34,0x78,0xbd,0x5e,0x78,0xbd,0x5e,0xac, 0x5f,0xbf,0x1e,0x7f,0xf8,0xc3,0x1f,0x78,0xa7,0x9d,0x28,0xef,0x6d,0x16,0xf5,0x1a, 0x1b,0x12,0xcc,0x8a,0xd2,0x46,0xd0,0xd0,0x45,0xa2,0x42,0x6d,0x2b,0x1b,0x18,0x64, 0xeb,0x66,0x12,0x7,0x22,0x59,0x2c,0x16,0x4c,0x98,0x30,0x1,0xb7,0xdc,0x72,0xb, 0x6c,0xb6,0x24,0xf,0xe8,0xeb,0xaf,0xbf,0xc6,0x89,0x13,0x27,0x38,0xf8,0xd3,0xeb, 0xec,0x76,0x3b,0x86,0xc,0x19,0x82,0x1f,0xfe,0xf0,0x87,0x6e,0xc6,0x58,0xc8,0x18, 0x41,0x48,0x60,0x90,0xe0,0xd0,0xa5,0x69,0x28,0x45,0x51,0x72,0x3e,0xf9,0xe4,0x93, 0x66,0x5a,0xbd,0x14,0x17,0x17,0xc3,0xeb,0xf5,0xa6,0xcd,0xd3,0x8b,0x73,0x7f,0x2f, 0xa7,0xdb,0x49,0x5c,0x89,0x8a,0x11,0x8,0x15,0xf1,0x7c,0x3e,0x1f,0xf2,0xf2,0xf2, 0x90,0x9b,0x9b,0xcb,0x35,0xf7,0xe9,0xc7,0xaf,0x7,0x24,0xab,0xae,0x3d,0x95,0x3a, 0x76,0x22,0x91,0x48,0x72,0xc5,0x1a,0x9,0x73,0x2e,0x46,0x34,0x1a,0x5,0x4,0xd5, 0x56,0xb3,0x4e,0x15,0xcd,0x0,0x16,0xe9,0xc8,0x68,0x66,0x51,0x84,0xa2,0x28,0x60, 0xf1,0x84,0x29,0x28,0xf0,0xe3,0x4b,0x44,0x75,0x2b,0x5a,0x72,0x4,0xc4,0x98,0x75, 0x58,0x6d,0xb0,0xa7,0xa6,0xe2,0x71,0x87,0x9f,0x68,0xeb,0x60,0x4c,0x30,0xad,0x9d, 0x83,0x8b,0xc7,0xe3,0x68,0x6d,0x4d,0x16,0xf2,0x49,0xc,0xcf,0xe8,0xb4,0xd3,0x15, 0xe9,0xd3,0x81,0x83,0x59,0xed,0xc1,0x18,0x39,0xd0,0x73,0x54,0x63,0x22,0x36,0xb5, 0xdf,0xef,0x87,0xdf,0xef,0x47,0x20,0x10,0xe0,0x11,0x3,0x49,0x65,0x8b,0x5a,0x46, 0x74,0x2b,0xb6,0x54,0xd3,0xe7,0x47,0xdb,0x13,0xa8,0xe7,0xe6,0xe6,0x62,0xe3,0xc6, 0x8d,0xf8,0xe3,0x1f,0xff,0xd8,0xee,0x3b,0x40,0xe,0xd7,0x48,0x40,0x34,0x2,0x4, 0x7d,0xe6,0x46,0x30,0x30,0x82,0x87,0x59,0xdd,0xa1,0xb3,0xe0,0x90,0x6e,0x92,0x1c, 0x75,0xe1,0x51,0x14,0x55,0x51,0x51,0x81,0x8a,0x8a,0xa,0x7e,0x2d,0xf7,0xef,0xdf, 0x8f,0x53,0xa7,0x4e,0x71,0xdd,0x32,0x2,0x61,0x9b,0xcd,0x86,0x7e,0xfd,0xfa,0xe1, 0xe6,0x9b,0x6f,0x1e,0x7d,0xff,0xfd,0xf7,0xef,0xa5,0xdf,0x6e,0xea,0x5a,0x30,0x9, 0x12,0x12,0x1c,0xae,0x18,0x20,0xd0,0x12,0xd7,0xd8,0x26,0x77,0xec,0xd8,0x31,0xb6, 0x77,0xef,0x5e,0x84,0x42,0x21,0xe4,0xe4,0xe4,0x20,0x2f,0x2f,0xf,0x5e,0xaf,0x17, 0xf1,0x94,0x94,0xb3,0x98,0xb6,0xe8,0x28,0x51,0xcb,0xac,0xd0,0x9b,0x8d,0x57,0x21, 0xe6,0x8d,0x3d,0x1e,0xf,0xf2,0xf2,0xf2,0xe0,0xf3,0xf9,0xe0,0x72,0xda,0xa1,0x2a, 0x56,0x28,0x16,0x55,0xa7,0x19,0xd4,0xb6,0xc2,0xa5,0x1f,0xb8,0xa,0x2d,0x55,0xc7, 0x40,0xa,0x58,0xc2,0xe1,0x30,0xa2,0x9,0x8d,0x33,0x85,0x49,0x5b,0x88,0xce,0x2d, 0xb9,0x6d,0xe7,0xa2,0x1f,0xa3,0x59,0x75,0xb3,0xb3,0xdb,0x0,0x80,0xfe,0xec,0x96, 0xb6,0x89,0x62,0xe2,0xa4,0x3c,0xee,0xc4,0x79,0x54,0x11,0x6f,0x2b,0x28,0xab,0x6d, 0xd7,0x5b,0xb5,0x5a,0x78,0x7,0x4f,0x6b,0x6b,0x2b,0x5a,0x5a,0x5a,0x10,0x8,0x4, 0xf8,0x48,0x4c,0x91,0xe7,0x91,0x4e,0xe3,0xa8,0x33,0x9f,0x93,0x19,0x98,0x8b,0x20, 0x4e,0x22,0x7e,0xc1,0x60,0x30,0x35,0x1d,0x30,0x39,0xce,0xb3,0xa5,0xa5,0x5,0x91, 0x48,0x84,0xb7,0x67,0x8a,0xd7,0x42,0xcc,0xf1,0x8b,0x35,0x3,0x12,0xfa,0x13,0x49, 0x62,0x76,0xbb,0x1d,0x5e,0xaf,0x17,0x5b,0xb6,0x6c,0xc1,0xcb,0x2f,0xbf,0xcc,0x3b, 0xeb,0xc4,0x28,0x8f,0xa,0xbe,0x1d,0xf9,0xac,0xcc,0xa2,0x6,0xb3,0x74,0x53,0x36, 0x70,0x30,0x3,0x2,0x63,0x17,0x93,0xd9,0x24,0x39,0x91,0x2c,0x47,0xfb,0x1d,0x3e, 0x7c,0x38,0x2a,0x2a,0x2a,0xf8,0x36,0x87,0xe,0x1d,0xc2,0xc1,0x83,0x7,0x79,0x3a, 0xd,0x0,0x7,0x89,0x1e,0x3d,0x7a,0xe0,0xc9,0x27,0x9f,0x94,0xb3,0xa9,0x25,0x38, 0x74,0x7d,0xd1,0x3a,0x8d,0x96,0x8b,0x67,0xfb,0xf6,0xed,0xfe,0xa3,0x47,0x8f,0x82, 0x31,0x86,0xfc,0xfc,0xfc,0xe4,0x20,0xf9,0x54,0x2e,0x54,0x74,0xc8,0xa2,0x23,0xef, 0x4c,0xda,0xc2,0x4c,0xda,0x42,0x2c,0x46,0x8a,0xe,0x40,0x5c,0xc1,0xe6,0xf8,0x3c, 0x70,0xba,0x5c,0xc8,0xc9,0xc9,0x83,0xc7,0xe3,0xe1,0x4e,0x84,0x3,0x95,0xd6,0x16, 0xc1,0x28,0x16,0x55,0x97,0x7a,0x11,0xc7,0x8c,0x9a,0xa9,0x95,0x32,0xc6,0xf8,0x3c, 0x3,0xa3,0x20,0x9e,0x98,0xce,0x31,0x46,0x16,0xe2,0x7d,0x8b,0xda,0x96,0xc2,0x12, 0xf5,0x76,0xc4,0x56,0x4b,0xb3,0xc8,0x42,0x54,0x7d,0x6d,0xab,0x7f,0xb4,0x1d,0x2b, 0x31,0x83,0x9b,0x9a,0x9a,0x10,0xc,0x6,0xd1,0xda,0xda,0xaa,0x6b,0x19,0x16,0x1d, 0xb7,0xd9,0x35,0x4e,0x97,0x12,0x4b,0x97,0xee,0xcb,0x94,0x3a,0x14,0xd3,0x38,0x9a, 0xa6,0xe1,0xf4,0xe9,0xd3,0x60,0x8c,0xa1,0xa1,0xa1,0x1,0xd5,0xd5,0xd5,0x68,0x69, 0x69,0x81,0xdd,0x6e,0x87,0xdb,0xed,0xe6,0x4e,0x50,0x94,0x6e,0xa7,0x63,0x74,0x38, 0x1c,0x8,0x87,0xc3,0xb0,0x5a,0xad,0x1c,0xdc,0x88,0xc,0x47,0x69,0x95,0xfc,0xfc, 0x7c,0x6c,0xd9,0xb2,0x5,0xaf,0xbc,0xf2,0x8a,0xe9,0x88,0x53,0x11,0x24,0x3a,0x5a, 0xf3,0x32,0x8b,0x1c,0x44,0xa0,0xc8,0xd4,0xee,0xda,0x59,0x70,0x30,0xa6,0x95,0x48, 0xb4,0x52,0x4c,0xcd,0x59,0xad,0x56,0x8c,0x1c,0x39,0x12,0x23,0x46,0x8c,0xe0,0xfb, 0xa8,0xa9,0xa9,0xc1,0xae,0x5d,0xbb,0xf8,0x6c,0x75,0x4a,0xbd,0xd2,0x35,0x59,0xb2, 0x64,0x9,0xca,0xcb,0xcb,0x15,0x43,0x47,0xa2,0x4,0x9,0x9,0xe,0x57,0x4,0x20, 0xac,0xc4,0xb8,0x4c,0x57,0xd4,0xaa,0xad,0xad,0x65,0x7,0xf,0x1e,0xc4,0xf9,0xf3, 0xe7,0xe1,0x70,0x38,0x78,0x24,0x21,0xea,0x32,0x89,0x5,0xe9,0xce,0x92,0xe8,0x3a, 0x93,0x76,0x12,0x85,0xe0,0xe8,0x79,0x12,0xf0,0xa3,0x7c,0xb4,0xd3,0xe9,0x84,0xdb, 0xe9,0x6a,0x3,0x2,0x5,0xba,0x82,0x6d,0xf2,0x83,0xce,0xbc,0x52,0xa6,0x95,0x79, 0xb6,0x8,0x21,0x6d,0xd1,0x96,0x25,0x4c,0x53,0x4a,0x6d,0x24,0x3c,0x73,0xe9,0x6a, 0x9e,0xd6,0x2,0xe3,0x60,0x10,0xe,0x87,0x79,0x8a,0x26,0x18,0xc,0x26,0x6b,0x29, 0x9,0x4d,0xf7,0x9a,0x74,0x35,0x9f,0x76,0xb3,0xb4,0x3b,0xc1,0x80,0x37,0x3,0x7e, 0x51,0x92,0x9b,0x22,0x87,0xba,0xba,0x3a,0x5c,0xba,0x74,0x9,0xa5,0xa5,0xa5,0x38, 0x72,0xe4,0x8,0xb6,0x6c,0xd9,0x2,0x55,0x55,0xe1,0xf5,0x26,0x89,0x77,0x54,0x33, 0xa0,0x95,0x2f,0x29,0xab,0x92,0x93,0x24,0xc6,0xb4,0xdf,0xef,0x47,0x34,0x1a,0x6d, 0x9b,0x47,0x6e,0xb5,0xc2,0xe5,0x72,0xa1,0xa0,0xa0,0x0,0x7f,0xf9,0xcb,0x5f,0xb0, 0x6c,0xd9,0x32,0x9e,0x7e,0x12,0x6b,0xb,0x62,0x1d,0xac,0x33,0xbf,0xdf,0x6c,0xe0, 0x60,0xc6,0x7f,0xc8,0x26,0xd4,0x97,0x29,0xad,0x64,0x7c,0x8e,0x6a,0x28,0x22,0xf8, 0xaa,0xaa,0x8a,0x91,0x23,0x47,0x62,0xe4,0xc8,0x91,0x7c,0xfb,0xd3,0xa7,0x4f,0x63, 0xff,0xfe,0xfd,0xba,0x3a,0x5,0x15,0xe6,0xbd,0x5e,0x2f,0xbe,0xff,0xfd,0xef,0x63, 0xc0,0x80,0x1,0x8a,0xec,0x62,0x92,0xe0,0xd0,0x55,0xc0,0xa0,0xd3,0x92,0x37,0x2b, 0x76,0x55,0x57,0x57,0x6b,0xfb,0xf6,0xed,0x43,0x6b,0x6b,0x2b,0x7c,0x3e,0x1f,0x7c, 0x3e,0x1f,0x3c,0x1e,0x8f,0xae,0xc3,0xa4,0xa3,0xe,0xc8,0x6c,0x25,0x6a,0x7c,0xbd, 0x99,0x53,0x4d,0x27,0xa6,0x67,0xac,0x7d,0x90,0xa8,0x1c,0x31,0x68,0x5d,0x2e,0x17, 0x6f,0x25,0x34,0x8b,0x58,0x2e,0x27,0x35,0x96,0x89,0x25,0x6d,0x26,0x73,0x2e,0x6e, 0x67,0x3c,0x5f,0xaa,0x85,0xd0,0xca,0x39,0x10,0x8,0x20,0x1c,0xe,0x23,0x14,0xa, 0xf1,0xc2,0xba,0x6e,0xde,0x85,0xaa,0x9a,0xa6,0x8a,0xd2,0xad,0x9e,0xcd,0x9c,0x7b, 0x26,0x13,0x67,0x33,0x9b,0xf1,0x34,0x34,0x4d,0xe3,0x9c,0x5,0x45,0x51,0x30,0x78, 0xf0,0x60,0x8c,0x1f,0x3f,0xde,0x5,0x80,0xfd,0xf8,0xc7,0x3f,0xe,0x93,0x3c,0x35, 0xd5,0xab,0x28,0xa,0x30,0x1b,0xa4,0x13,0x8b,0xc5,0x78,0xad,0x84,0x1c,0x1e,0xa5, 0x91,0xec,0x76,0x3b,0xf6,0xec,0xd9,0x83,0x95,0x2b,0x57,0xea,0x22,0x47,0xb1,0xd1, 0x40,0xec,0x50,0xea,0xc8,0xb9,0x89,0x66,0x56,0x6b,0xc8,0x4,0xe,0x62,0xe4,0x90, 0x89,0x24,0x97,0x4d,0xa8,0x8f,0xae,0x3,0x1,0xa5,0xb8,0xf,0x0,0x18,0x3d,0x7a, 0x34,0x86,0xc,0x19,0xc2,0xa3,0x85,0x86,0x86,0x6,0xec,0xd8,0xb1,0x83,0x93,0xf9, 0xa8,0x46,0x15,0x8d,0x46,0xe1,0xf3,0xf9,0xf0,0xe0,0x83,0xf,0x62,0xf4,0xe8,0xd1, 0x92,0x2c,0x27,0xc1,0xa1,0x6b,0x52,0x4b,0x26,0xc5,0xe9,0x76,0x6a,0x90,0x8a,0xa2, 0xd8,0xe,0x1c,0x38,0x10,0xdd,0xbb,0x77,0x2f,0x0,0xc0,0xed,0x76,0x23,0x3f,0x3f, 0x1f,0x6e,0xb7,0x9b,0x3b,0x69,0x91,0x19,0x9b,0xc9,0xb1,0x9a,0x69,0xfa,0x1b,0xf3, 0xc8,0x69,0x5f,0xaf,0x8,0x69,0x2c,0xb4,0x9f,0xf9,0x40,0xef,0x4f,0x8e,0x83,0x56, 0xaa,0x36,0x87,0x3d,0x99,0x86,0xb2,0xd9,0x79,0x1,0xd8,0xe8,0xb4,0xd2,0x1,0x9c, 0x19,0x50,0x19,0x57,0xd7,0x9c,0xfc,0xa5,0xb5,0x8f,0x7c,0xa8,0xc6,0x91,0x48,0x24, 0x10,0x8f,0x45,0x78,0x54,0x40,0x0,0x40,0xf2,0xd3,0x9a,0xa6,0xf1,0xc8,0x46,0xcf, 0x3c,0x17,0x64,0xd5,0x91,0x68,0x27,0x6c,0x67,0x16,0xdd,0x64,0x4a,0xdf,0x75,0x34, 0x62,0x33,0x8e,0xed,0xc,0x6,0x83,0x68,0x68,0x68,0x40,0x2c,0x16,0x43,0xcf,0x9e, 0x3d,0x31,0x74,0xe8,0xd0,0x7d,0x37,0xdd,0x74,0xd3,0x28,0xa1,0x8e,0x65,0x7b,0xee, 0xb9,0xe7,0x22,0x9f,0x7c,0xf2,0x9,0xd7,0x4c,0x12,0xf5,0xb2,0x44,0xae,0x81,0xc7, 0xe3,0x41,0x49,0x49,0x9,0x36,0x6d,0xda,0x94,0x9c,0x23,0x91,0xda,0xd6,0xe5,0x72, 0xc1,0xeb,0xf5,0xe2,0xc8,0x91,0x23,0x58,0xb9,0x72,0x65,0xbb,0xef,0x85,0x11,0x80, 0xd3,0xd5,0x48,0x3a,0x9a,0x5e,0x32,0x3,0x8a,0x74,0x69,0xa5,0xcb,0x11,0xec,0x33, 0x4b,0x3d,0x51,0xda,0x91,0x3e,0x47,0x51,0x99,0x38,0x91,0x48,0x60,0xec,0xd8,0xb1, 0x18,0x31,0x62,0x4,0x7f,0x5d,0x53,0x53,0x13,0x76,0xed,0xda,0x85,0x96,0x96,0x16, 0xfe,0x7b,0xa3,0xb1,0xa6,0x2e,0x97,0xb,0xb,0x17,0x2e,0xc4,0x94,0x29,0x53,0xac, 0x92,0x24,0x27,0xc1,0xe1,0x6a,0x83,0x8a,0xfb,0x8b,0x2f,0xbe,0x8,0x1c,0x3f,0x7e, 0x9c,0xaf,0x5e,0xa,0xa,0xa,0xe0,0x72,0xb9,0x74,0xda,0x3f,0xe9,0xa,0xa2,0x99, 0xe4,0xb4,0xbb,0xc2,0x8c,0xd1,0x81,0x51,0x81,0x54,0x1c,0x3c,0x24,0x16,0x8a,0xa9, 0x5b,0xc8,0xb8,0x6a,0x14,0x1d,0x33,0xe5,0xdc,0xc5,0xf7,0x20,0x10,0xa0,0x42,0xb7, 0xf8,0x47,0x82,0x78,0x66,0x4e,0xaa,0xb3,0x5,0xe3,0xcb,0x35,0x2,0x71,0x71,0x3c, 0xa7,0xf1,0x73,0x11,0x95,0x53,0x63,0xb1,0x18,0x5a,0x5a,0x5a,0xd0,0xd8,0xd8,0x88, 0x68,0x34,0x8a,0xd2,0xd2,0x52,0x8c,0x18,0x31,0x2,0x3d,0x7b,0xf6,0x54,0xd2,0x2d, 0x36,0xb6,0x6f,0xdf,0xce,0x36,0x6d,0xda,0x84,0x63,0xc7,0x8e,0x21,0x14,0xa,0x71, 0x20,0xb6,0xdb,0xed,0xe8,0xd1,0xa3,0x7,0xe5,0xd7,0x7f,0x32,0x78,0xf0,0xe0,0xdf, 0x2c,0x5d,0xba,0x94,0xad,0x5f,0xbf,0x1e,0x6e,0xb7,0x9b,0x47,0xf,0xe7,0xce,0x9d, 0xc3,0xba,0x75,0xeb,0x74,0x23,0x48,0x3b,0x53,0x57,0xe8,0x6c,0xfa,0x32,0x5d,0xd7, 0x52,0xba,0x56,0xd7,0x4c,0x52,0xdf,0xe4,0xf4,0xcd,0xa2,0x8c,0x4c,0x83,0x84,0x44, 0x96,0xba,0xaa,0xaa,0x18,0x3e,0x7c,0x38,0x46,0x8d,0x1a,0xc5,0xf7,0x1b,0x89,0x44, 0xf0,0xb7,0xbf,0xfd,0xd,0xad,0xad,0xad,0x3a,0xe6,0x35,0x1,0xce,0xbc,0x79,0xf3, 0x30,0x73,0xe6,0x4c,0x45,0x0,0x6a,0xfa,0x9e,0x32,0x31,0x43,0x20,0x3d,0x98,0x4, 0x87,0xee,0x0,0x89,0xdc,0x1d,0x3b,0x76,0x34,0x1d,0x3b,0x76,0xc,0xb1,0x58,0xc, 0xf9,0xf9,0xf9,0xc8,0xcd,0xcd,0xe5,0xc4,0x1d,0xb1,0x15,0x52,0xac,0x51,0x18,0x9, 0x73,0x66,0xf2,0xce,0x5d,0x5,0x12,0xc6,0xb4,0x8c,0xd9,0xea,0xdb,0xa8,0x26,0x6a, 0x16,0xd9,0x98,0xfd,0x6f,0x96,0x36,0xeb,0x8c,0xe3,0xef,0xe8,0xbc,0x88,0x8e,0x38, 0xbb,0x74,0x69,0x39,0x63,0xfa,0x45,0xcc,0xfd,0x8b,0x2b,0x57,0xa7,0xd3,0x89,0x48, 0x24,0x82,0xc6,0xc6,0x46,0xf8,0xfd,0x49,0xfe,0x48,0x71,0x71,0x31,0x2a,0x2a,0x2a, 0xd0,0xab,0x57,0x2f,0x3e,0x73,0x0,0x19,0x66,0x20,0x2b,0x8a,0x62,0xd9,0xb1,0x63, 0xc7,0xbc,0x9c,0x9c,0x9c,0xd5,0xe1,0x70,0x98,0xa7,0x8b,0xca,0xcb,0xcb,0xed,0x8c, 0xb1,0x98,0xe0,0xc4,0x94,0xa5,0x4b,0x97,0x26,0xd6,0xaf,0x5f,0x9f,0x94,0x7c,0x2f, 0x2e,0xc6,0xfe,0xfd,0xfb,0xb1,0x75,0xeb,0xd6,0x6f,0x14,0x19,0x5c,0xe,0x40,0xa4, 0xab,0x45,0x64,0x12,0xec,0xcb,0x34,0x7,0xc2,0x8c,0x2f,0x91,0x4d,0xcd,0xd5,0x66, 0xb3,0xf1,0xda,0xca,0x88,0x11,0x23,0x50,0x51,0x51,0xc1,0x1f,0xd3,0x34,0xd,0x3b, 0x77,0xee,0x44,0x6d,0x6d,0x2d,0x8f,0xb4,0xc4,0xf7,0xa0,0xd9,0xd4,0x26,0xa,0x9, 0x52,0xd1,0xf5,0x1b,0x98,0x55,0x5e,0x82,0xce,0xa5,0xa3,0x18,0x63,0xcd,0x0,0x94, 0x89,0x13,0x27,0xfa,0x3e,0xff,0xfc,0xf3,0x96,0x63,0xc7,0x8e,0xa1,0xb1,0xb1,0x11, 0xb9,0xb9,0xb9,0xf0,0x78,0x3c,0xf0,0xf9,0x7c,0xbc,0x60,0x68,0x64,0x3a,0xa7,0x63, 0xf,0x77,0x86,0x44,0x77,0x39,0x3f,0x7e,0x33,0x67,0x6f,0x74,0xec,0xe9,0x8e,0xf1, 0x4a,0x1e,0x4b,0xba,0xf3,0xbf,0x12,0xc0,0xd8,0x26,0x8b,0xd1,0xd6,0x24,0x20,0x46, 0x4b,0xba,0x14,0x58,0x2a,0xf2,0x21,0xc7,0x44,0xc5,0xfb,0x73,0xe7,0xce,0x71,0x46, 0x75,0x51,0x51,0x11,0x26,0x4d,0x9a,0x84,0xf2,0xf2,0x72,0x45,0x88,0xbc,0x8,0x8, 0xda,0x75,0xbc,0x51,0x1a,0x32,0xb5,0x4a,0x5d,0x93,0xba,0xcf,0x8c,0x69,0x4b,0x2, 0x95,0xd4,0xad,0xc2,0x18,0x63,0x4,0x10,0x33,0x66,0xcc,0x40,0x73,0x73,0x33,0x2f, 0xc6,0x8a,0xe9,0xc8,0xce,0xd4,0x15,0x3a,0xbb,0x70,0x48,0x27,0x93,0x6e,0x24,0x54, 0x9a,0x81,0x7a,0x47,0xb9,0x30,0xc6,0xe7,0xcd,0xde,0x93,0xbe,0x23,0x7,0xe,0x1c, 0x40,0x22,0x91,0xc0,0xe8,0xd1,0xa3,0x79,0xea,0x69,0xcc,0x98,0x31,0x38,0x7c,0xf8, 0x30,0xaa,0xab,0xab,0x79,0xb1,0x9f,0xb4,0x9c,0xb6,0x6d,0xdb,0x86,0x37,0xdf,0x7c, 0x53,0x53,0x14,0x85,0xd8,0xd4,0x54,0x5b,0xd4,0xc4,0x3a,0xa3,0x34,0x9,0xe,0x5d, 0xb5,0x2,0xe7,0x35,0x9,0x24,0xb9,0x12,0xfe,0xc9,0x93,0x27,0x2b,0x67,0xce,0x9c, 0x19,0xd5,0xb7,0x6f,0xdf,0x3d,0x47,0x8e,0x1c,0x41,0x6b,0x6b,0x2b,0x7,0xa,0x9f, 0xcf,0xc7,0xa5,0x12,0x32,0xd,0x18,0xea,0x88,0xe2,0xe9,0xe5,0x3a,0xed,0x4c,0xb3, 0x11,0xcc,0x9c,0x43,0xa6,0xf7,0xef,0x8,0xa1,0x2c,0x93,0xa3,0xe8,0xe8,0xa8,0xd1, 0x2b,0x11,0x39,0x18,0xa7,0xe6,0x19,0xd3,0x7d,0x22,0x4b,0x39,0x10,0x8,0xa0,0xa9, 0xa9,0x9,0x81,0x40,0x0,0x0,0x50,0x5a,0x5a,0x8a,0xc1,0x83,0x7,0xa3,0x57,0xaf, 0x5e,0x34,0x5b,0xc0,0xb4,0xa3,0xcd,0x20,0x29,0xad,0x18,0xbb,0x66,0xc4,0x6d,0xd, 0x35,0x2c,0x5d,0x3b,0x35,0x0,0xf5,0xf9,0xe7,0x9f,0xd7,0xde,0x79,0xe7,0x1d,0xcc, 0x9a,0x35,0xb,0xb,0x16,0x2c,0x40,0x24,0x12,0xc1,0xe1,0xc3,0x87,0x75,0x29,0xb1, 0x2e,0xfc,0x5e,0xeb,0x6e,0x69,0x41,0x23,0x4a,0xda,0x9b,0x1d,0x83,0x78,0x2d,0xcd, 0x3e,0xd3,0x74,0x73,0xdb,0xd3,0x45,0x93,0xd4,0xb5,0x45,0x29,0xbd,0xaa,0xaa,0x2a, 0xde,0xc9,0x44,0x53,0xe4,0x86,0xc,0x19,0x2,0x0,0xa8,0xa9,0xa9,0xd1,0xd,0x31, 0x8a,0x44,0x22,0xf8,0xf2,0xcb,0x2f,0xf1,0xd2,0x4b,0x2f,0x45,0x14,0x45,0xf1,0x30, 0xc6,0x82,0xc2,0x62,0x4e,0x2,0x83,0x4c,0x2b,0x75,0x4f,0xe4,0x90,0x26,0x95,0xa0, 0x0,0xb0,0x1d,0x3c,0x78,0x30,0x72,0xe4,0xc8,0x11,0xde,0xef,0x4e,0x53,0xbe,0x48, 0x51,0xd3,0xac,0xf5,0x35,0x5d,0x61,0xf5,0x4a,0xfd,0xe8,0x3b,0x33,0xcd,0xcd,0xac, 0xd,0xb4,0xa3,0x8e,0x3c,0x5d,0x41,0xbb,0x3b,0xea,0x9,0x66,0xc7,0x6f,0x3c,0x76, 0x11,0x20,0x13,0x89,0xa4,0x46,0x55,0x63,0x63,0x23,0x42,0xa1,0x10,0x54,0x55,0x45, 0x79,0x79,0x39,0x6,0xe,0x1c,0xd8,0x54,0x56,0x56,0x56,0x90,0x2,0x7f,0x66,0x9c, 0x6d,0x6c,0x64,0xe6,0x66,0x0,0x8a,0x4c,0x5c,0x1a,0x5b,0x4a,0x4c,0x8e,0x3f,0x77, 0xee,0xdc,0xb9,0xbd,0x83,0x7,0xf,0xae,0x18,0x3a,0x74,0x28,0x16,0x2c,0x58,0x80, 0x70,0x38,0x8c,0xd7,0x5f,0x7f,0x1d,0x27,0x4f,0x9e,0x6c,0xc7,0xa4,0xee,0xca,0x6b, 0x97,0x49,0x87,0xc9,0x4c,0x6a,0xc3,0xb8,0x9d,0x98,0x3a,0xca,0x34,0x1f,0x22,0x5d, 0x5a,0x49,0x9c,0x4b,0x41,0xdf,0x9d,0x21,0x43,0x86,0x60,0xec,0xd8,0xb1,0x9c,0x2d, 0xad,0xaa,0x2a,0xf6,0xed,0xdb,0x87,0x93,0x27,0x4f,0x72,0xe6,0x39,0xd5,0x2d,0x68, 0x36,0xf5,0x3f,0xfe,0xe3,0x3f,0xe6,0x32,0xc6,0x5a,0x8c,0xe2,0x9b,0xd2,0x24,0x38, 0x74,0xe5,0xf,0x48,0x6c,0x85,0x35,0xe6,0x9e,0x69,0x65,0x68,0x3f,0x7e,0xfc,0x78, 0xe4,0xf0,0xe1,0xc3,0xb8,0x78,0xf1,0x22,0x54,0x55,0x85,0xc7,0xe3,0xe1,0x75,0x9, 0x1a,0xb4,0x2e,0xe6,0xf8,0x2f,0xa7,0xad,0xf4,0x9b,0xa6,0x74,0xd2,0x39,0xf7,0x74, 0x35,0x80,0x74,0x75,0x87,0x8e,0x0,0x41,0xb6,0xf7,0xbf,0x12,0x20,0x92,0xe,0x64, 0xc5,0x73,0xa,0x87,0xc3,0x68,0x69,0x69,0x81,0xdf,0xef,0x47,0x2c,0x16,0x83,0xcb, 0xe5,0x42,0xbf,0x7e,0xfd,0x30,0x7e,0xfc,0xf8,0x3c,0xc6,0x58,0x73,0x3a,0x67,0x92, 0x66,0x31,0xa0,0x8b,0x10,0xcc,0x5e,0x6b,0x0,0xa,0x53,0xd2,0x96,0xa2,0x28,0xd6, 0xea,0xea,0xea,0x58,0xff,0xfe,0xfd,0xa1,0x28,0xa,0x6e,0xbb,0xed,0x36,0xcc,0x9d, 0x3b,0x17,0x8d,0x8d,0x8d,0x58,0xb6,0x6c,0x19,0x4e,0x9d,0x3a,0xd5,0xad,0xe0,0x9a, 0xae,0xfe,0x40,0xab,0x74,0x63,0xb1,0xd9,0xc,0x1c,0x32,0xf1,0x22,0xb2,0x11,0xe5, 0x44,0xf1,0x3d,0xba,0x94,0xc3,0x86,0xd,0xe3,0x0,0x41,0xdb,0x54,0x55,0x55,0xe1, 0xd8,0xb1,0x63,0xbc,0x56,0x24,0x36,0x5a,0x94,0x95,0x95,0xe1,0xb1,0xc7,0x1e,0xd3, 0xb1,0xa9,0xa5,0x49,0x70,0xe8,0xca,0x1f,0x8e,0xb8,0x3a,0xcc,0xca,0xce,0x54,0x14, 0x45,0x3d,0x7b,0xf6,0xec,0xee,0x53,0xa7,0x4e,0x55,0x9c,0x38,0x71,0x42,0x37,0xe0, 0x3e,0x27,0x27,0x47,0x27,0x67,0x4c,0x51,0x45,0x57,0x7f,0x16,0x99,0xc6,0x80,0x1a, 0x1d,0xb4,0x99,0xb3,0xcd,0xe4,0x80,0xcd,0x8e,0xbd,0x3b,0x23,0x7,0xea,0xa1,0x37, 0xea,0x5e,0x45,0x52,0x82,0x84,0x24,0x84,0xa7,0x69,0x1a,0x8a,0x8b,0x8b,0x31,0x70, 0xe0,0x40,0xc,0x1c,0x38,0xd0,0xc5,0x18,0xb,0x1b,0x6b,0x7,0x30,0x19,0x6e,0x9f, 0x89,0x70,0x65,0xc2,0x91,0x31,0xdd,0x56,0x48,0x4b,0x42,0x8c,0x4a,0x4e,0x9d,0x3a, 0xc5,0x6,0xc,0x18,0xc0,0x65,0x34,0xe6,0xcf,0x9f,0x8f,0xa9,0x53,0xa7,0xa2,0xae, 0xae,0xe,0x2f,0xbf,0xfc,0x32,0x9a,0x9a,0x9a,0xb2,0x4a,0xca,0x77,0x65,0x4,0x61, 0x16,0x45,0x98,0x81,0x83,0x99,0x9a,0x6b,0x26,0xbd,0x25,0xb3,0xc7,0x69,0xdf,0x62, 0xcb,0x2b,0x63,0xc,0x43,0x87,0xe,0xc5,0xf8,0xf1,0xe3,0x75,0x12,0xe0,0xd5,0xd5, 0xd5,0x38,0x7c,0xf8,0x30,0x27,0x15,0x8a,0x22,0x93,0x25,0x25,0x25,0x78,0xf4,0xd1, 0x47,0xd1,0xa7,0x4f,0x1f,0x49,0x96,0x93,0xe0,0xd0,0xbd,0x0,0xd1,0xd1,0x74,0x42, 0x6a,0x95,0xe9,0x38,0x74,0xe8,0x50,0xe8,0xc4,0x89,0x13,0xa8,0xad,0xad,0x85,0xa2, 0x28,0x70,0xb9,0x5c,0x70,0xbb,0xdd,0xf0,0x78,0x3c,0x5c,0x60,0xcf,0xac,0x60,0x77, 0x25,0xd3,0x4c,0x99,0x52,0x59,0x66,0xdd,0x3e,0x9d,0x59,0xfd,0x67,0xea,0x3a,0xea, 0xca,0x8e,0x1b,0xf1,0xfc,0xc4,0x36,0x54,0x9a,0xaa,0x17,0xa,0x85,0x10,0x8f,0xc7, 0xe1,0xf3,0xf9,0xd0,0xab,0x57,0x2f,0x14,0x17,0x17,0xff,0xae,0x5f,0xbf,0x7e,0xff, 0xd8,0x1,0x87,0xaf,0x98,0x14,0x94,0xdb,0x9,0xbe,0x19,0xef,0x8b,0x4e,0xdf,0x78, 0x6b,0xdc,0xb7,0x28,0xfe,0xd8,0xaf,0x5f,0xbf,0xe6,0xea,0xea,0x6a,0xfe,0xfe,0x8b, 0x17,0x2f,0xc6,0xf8,0xf1,0xe3,0x71,0xfe,0xfc,0x79,0x2c,0x5d,0xba,0x14,0xcd,0xcd, 0xcd,0xdd,0x9a,0x9a,0x33,0x76,0x9c,0x89,0x4e,0xdf,0x48,0x92,0xeb,0xac,0x2e,0x53, 0x26,0x99,0x6f,0xb3,0xfb,0x94,0xa,0x1c,0x32,0x64,0x8,0x26,0x4e,0x9c,0xc8,0xc1, 0x40,0x55,0x55,0x9c,0x3d,0x7b,0x16,0xfb,0xf7,0xef,0xe7,0xd1,0x6,0x49,0xa7,0xab, 0xaa,0x8a,0xdc,0xdc,0x5c,0x2c,0x5e,0xbc,0x18,0x43,0x87,0xe,0x95,0x64,0x39,0x9, 0xe,0xd7,0x34,0xb0,0x28,0x8c,0x31,0xb6,0x72,0xe5,0xca,0x51,0x83,0x7,0xf,0xde, 0x73,0xe2,0xc4,0x9,0x3e,0x68,0x9e,0xda,0x1d,0xa9,0xe7,0x5d,0x4c,0x85,0x88,0x5d, 0x37,0xc6,0xf4,0x8f,0xa8,0xea,0x9a,0x4e,0xfa,0xc2,0x6c,0x3e,0x73,0xba,0xb4,0xd1, 0xe5,0x82,0x52,0x36,0x86,0x72,0x47,0xf6,0x6d,0x76,0x8e,0xc6,0x7d,0x19,0xe5,0x4b, 0x44,0x59,0x6,0xaa,0x23,0x10,0xd3,0x3a,0x1a,0x8d,0xc2,0xe9,0x74,0xa2,0x57,0xaf, 0x5e,0xe8,0xd5,0xab,0x17,0xca,0xcb,0xcb,0x6d,0x0,0x12,0xd7,0x6a,0xfe,0xf9,0x27, 0x3f,0xf9,0x9,0xfb,0xcd,0x6f,0x7e,0xc3,0xcf,0xc7,0x66,0xb3,0x61,0xd1,0xa2,0x45, 0x98,0x34,0x69,0x12,0x8e,0x1e,0x3d,0x8a,0xd7,0x5e,0x7b,0x8d,0x4f,0xb0,0xeb,0xe, 0xb0,0xed,0x88,0xe4,0x77,0x67,0x48,0x72,0xe9,0x52,0x49,0xd9,0x6a,0x11,0xe2,0x2c, 0x8,0x45,0x51,0x78,0x8a,0x89,0xbe,0x1f,0x4e,0xa7,0x13,0xb5,0xb5,0xb5,0xd8,0xbd, 0x7b,0x37,0x6f,0x4d,0x76,0xb9,0x5c,0xfc,0x1a,0x5a,0xad,0x56,0x3c,0xf2,0xc8,0x23, 0x18,0x35,0x6a,0x94,0x92,0xe,0x9c,0xa5,0x77,0x92,0xe0,0x70,0xad,0x80,0x4,0x4f, 0x49,0x1d,0x3a,0x74,0xe8,0x9f,0x83,0xc1,0xe0,0x73,0xa7,0x4e,0x9d,0x42,0x73,0x73, 0x33,0x57,0xe3,0x74,0xbb,0xdd,0x70,0xbb,0xdd,0x9c,0xe5,0x4c,0x2d,0x7b,0xc6,0x31, 0x98,0x22,0x77,0xc1,0x58,0x33,0x30,0x8a,0xc8,0x89,0x40,0x21,0x3e,0x2e,0x76,0xa3, 0x64,0xe3,0x25,0xa4,0xd3,0x2f,0x4a,0xa7,0x64,0x2a,0x3e,0x2e,0x3e,0x6f,0xc6,0xf1, 0x20,0xa7,0x68,0xe4,0x87,0xd0,0xea,0x53,0x3c,0x1f,0xca,0x4f,0x87,0xc3,0x61,0xb4, 0xb6,0xb6,0x72,0xfd,0x25,0xca,0x3f,0x97,0x95,0x95,0xa1,0x4f,0x9f,0x3e,0x28,0x2f, 0x2f,0x77,0x32,0xc6,0x22,0xe9,0xa,0xc9,0xd7,0x92,0x9d,0x3b,0x77,0x6e,0xef,0x9c, 0x39,0x73,0x2a,0xe,0x1c,0x38,0xc0,0xaf,0x9b,0xcb,0xe5,0xc2,0xf7,0xbe,0xf7,0x3d, 0xc,0x1e,0x3c,0x18,0x87,0xf,0x1f,0xc6,0xb2,0x65,0xcb,0xd0,0xda,0xda,0xca,0xaf, 0x55,0x57,0x83,0x84,0x91,0x4d,0x6d,0x26,0xd2,0xf7,0x4d,0xc0,0xc1,0xc8,0x9e,0x16, 0xb7,0x33,0x92,0xea,0x44,0x45,0xe4,0xc1,0x83,0x7,0x63,0xdc,0xb8,0x71,0x7c,0xe, 0xbc,0xdb,0xed,0x46,0x7d,0x7d,0x3d,0x76,0xed,0xda,0xc5,0xa5,0x57,0x48,0x11,0x97, 0x88,0x9d,0xb,0x17,0x2e,0xc4,0xad,0xb7,0xde,0xaa,0x8a,0x29,0x3d,0xe1,0x7f,0x99, 0x76,0x92,0xe0,0x70,0xed,0x44,0x11,0x82,0xc3,0x65,0x0,0x70,0xfa,0xf4,0xe9,0xb5, 0x4d,0x4d,0x4d,0xf7,0x9e,0x39,0x73,0x6,0x8d,0x8d,0xc9,0x91,0x96,0x24,0xab,0x40, 0xf2,0xcf,0xa4,0xf3,0x2f,0x6a,0x2b,0x19,0x1d,0x7d,0x3a,0x2e,0x43,0x47,0x95,0x3b, 0x2f,0x27,0xad,0x95,0xe,0x50,0xd2,0xed,0xa3,0x23,0x5d,0x50,0x66,0xa0,0x16,0x8f, 0xc7,0xf9,0x74,0xb5,0x40,0x20,0x80,0x68,0x34,0xca,0xd5,0x4c,0x7b,0xf5,0xea,0x85, 0x92,0x92,0x12,0xf4,0xed,0xdb,0xd7,0xcd,0x18,0xb,0x75,0x34,0x92,0x33,0xfe,0x7f, 0x35,0xed,0xe4,0xc9,0x93,0xac,0xb2,0xb2,0x12,0x35,0x35,0x35,0xfc,0xf3,0xf4,0x7a, 0xbd,0xf8,0xbb,0xbf,0xfb,0x3b,0xf4,0xee,0xdd,0x1b,0xfb,0xf7,0xef,0xc7,0xca,0x95, 0x2b,0xd1,0xda,0xda,0xca,0x23,0xa7,0x74,0x93,0xe0,0xae,0xb4,0x89,0x52,0x2b,0x22, 0x38,0x10,0x70,0x64,0x9a,0x5,0x61,0x96,0x5e,0xca,0x16,0x39,0x18,0x25,0xbf,0x49, 0xd5,0x97,0xf6,0x37,0x78,0xf0,0x60,0x8c,0x19,0x33,0x46,0x37,0xb7,0xba,0xb1,0xb1, 0x11,0x7b,0xf7,0xee,0x45,0x6b,0x6b,0x2b,0x9f,0x13,0x22,0xbe,0xf7,0xdc,0xb9,0x73, 0x31,0x73,0xe6,0x4c,0x45,0x68,0x1e,0x91,0xec,0x69,0x9,0xe,0xd7,0x1e,0x30,0xa4, 0xeb,0x6a,0x49,0xdd,0xf7,0x1c,0x3f,0x7e,0xdc,0x7f,0xfe,0xfc,0x79,0xd4,0xd5,0xd5, 0xa1,0xb9,0xb9,0x99,0xaf,0xd0,0x68,0x7c,0x24,0x45,0x16,0xe2,0x8f,0x4d,0xec,0xe9, 0x17,0x1d,0xb1,0x59,0x3f,0x7a,0x36,0x47,0x9e,0x2e,0xc2,0xe8,0x48,0x5a,0xc8,0xec, 0xf5,0xd4,0x37,0x2f,0x46,0x29,0xe2,0x31,0x8b,0xce,0x86,0xba,0xb9,0x48,0x8b,0x29, 0x12,0x89,0x70,0x3d,0x26,0xd2,0xd5,0x29,0x2a,0x2a,0x42,0x59,0x59,0x19,0x5c,0x2e, 0xd7,0xef,0xfa,0xf7,0xef,0xff,0x13,0x0,0x9a,0x59,0x47,0xd1,0xf5,0x94,0x36,0x50, 0x14,0x45,0xd9,0xb7,0x6f,0x9f,0x76,0xe7,0x9d,0x77,0xa2,0xae,0xae,0x8e,0x5f,0xc3, 0xa2,0xa2,0x22,0x3c,0xf9,0xe4,0x93,0x28,0x2a,0x2a,0xc2,0xe1,0xc3,0x87,0xf1,0xfa, 0xeb,0xaf,0x73,0x95,0x5e,0x5a,0x3d,0x77,0xc3,0xb1,0x99,0xb6,0xb5,0xa6,0x8b,0x1c, 0xcc,0xa,0xd5,0x99,0x34,0x99,0xb2,0x9,0xf7,0xd1,0xf7,0x83,0xea,0xa,0x0,0x30, 0x74,0xe8,0x50,0x8c,0x1d,0x3b,0x96,0x47,0x96,0xe,0x87,0x3,0xa1,0x50,0x8,0xbb, 0x77,0xef,0xc6,0xc5,0x8b,0x17,0x79,0x2d,0x8f,0xd4,0xb,0x2c,0x16,0xb,0xa6,0x4d, 0x9b,0x86,0xfb,0xee,0xbb,0xcf,0x82,0xb6,0xa6,0x3,0x9,0x10,0x12,0x1c,0xae,0xfa, 0xf,0xbf,0x5d,0xe8,0x9a,0xae,0x45,0xd2,0xf0,0x98,0xbd,0xaa,0xaa,0xea,0x47,0x89, 0x44,0xe2,0xb9,0xc6,0xc6,0x46,0xe,0x16,0x34,0xc2,0xd4,0xe9,0x4c,0x8e,0xd3,0x14, 0x75,0x7c,0xc4,0x4e,0xf,0xa3,0x13,0xce,0x26,0x4c,0x97,0xa9,0xf3,0x28,0xdb,0x6a, 0xbf,0x33,0xd1,0x85,0x98,0x22,0x4b,0x24,0x12,0x88,0xc7,0xe3,0x3a,0x0,0x20,0x60, 0x20,0xdd,0xff,0xb2,0xb2,0x32,0xe4,0xe5,0xe5,0xa1,0xb4,0xb4,0x14,0xbd,0x7b,0xf7, 0xf6,0x30,0xc6,0x82,0xd9,0x22,0x82,0xcb,0x79,0xfe,0x5a,0x9b,0x9c,0x8a,0x71,0x0, 0x0,0x20,0x0,0x49,0x44,0x41,0x54,0x0,0x88,0x2d,0x5b,0xb6,0x68,0x77,0xdd,0x75, 0x17,0xc2,0xe1,0x30,0x7,0xcb,0x9e,0x3d,0x7b,0xe2,0xc9,0x27,0x9f,0x84,0xd7,0xeb, 0xc5,0x81,0x3,0x7,0xb0,0x62,0xc5,0xa,0xfe,0x7c,0x77,0x59,0x47,0xc1,0xc1,0x8c, 0x2b,0xf1,0x4d,0xc1,0x81,0xc4,0x24,0x35,0x4d,0xd3,0xd,0xc,0x1a,0x3c,0x78,0x30, 0x26,0x4c,0x98,0x0,0x0,0x88,0xc7,0xe3,0x1c,0x3c,0x76,0xef,0xde,0x8d,0xb,0x17, 0x2e,0xb4,0xd3,0xb,0xb3,0xdb,0xed,0x18,0x37,0x6e,0x1c,0x1e,0x7a,0xe8,0x21,0x2b, 0x92,0x7c,0x96,0x84,0xac,0x3b,0x48,0x70,0xb8,0xae,0x22,0x8a,0xc,0x9d,0x30,0x2a, 0x0,0xef,0x89,0x13,0x27,0x9a,0xeb,0xea,0xea,0x50,0x5f,0x5f,0xcf,0xa7,0xa2,0x89, 0x43,0x57,0xe8,0x47,0x41,0xea,0xab,0x14,0x65,0x88,0xba,0x34,0xa2,0xd3,0x16,0x6b, 0xe,0x97,0x93,0x5e,0x4a,0xd7,0xed,0x44,0x80,0x64,0x14,0xe2,0x8b,0xc5,0x62,0xbc, 0x93,0x88,0x74,0x8e,0x68,0x25,0xec,0xf5,0x7a,0x91,0x9b,0x9b,0x8b,0xc2,0xc2,0x42, 0x14,0x17,0x17,0x37,0x95,0x95,0x95,0x15,0x67,0xfb,0x11,0x7f,0xdb,0xe6,0xb,0xaf, 0x5d,0xbb,0x96,0x2d,0x5a,0xb4,0x28,0x39,0xe2,0x35,0x65,0xfd,0xfb,0xf7,0xc7,0x93, 0x4f,0x3e,0x9,0xa7,0xd3,0x89,0x9d,0x3b,0x77,0x62,0xc5,0x8a,0x15,0x3c,0xad,0xd4, 0x95,0x2c,0x6a,0x63,0xaa,0x2f,0x5d,0x14,0xf1,0x4d,0xc0,0xa1,0xa3,0x5,0x6a,0x1a, 0x23,0x6a,0xb7,0xdb,0x75,0x3c,0x88,0x71,0xe3,0xc6,0xe9,0xd8,0xef,0xe1,0x70,0x18, 0x55,0x55,0x55,0x38,0x75,0xea,0x14,0x57,0xc7,0x75,0xb9,0x5c,0x7c,0x92,0xdf,0xf0, 0xe1,0xc3,0xf1,0xe4,0x93,0x4f,0xd2,0x6c,0x6a,0x19,0x3d,0x48,0x70,0xb8,0x3e,0x41, 0xc3,0x24,0xba,0xe0,0xa3,0x4e,0x53,0xf7,0xad,0x3b,0x76,0xec,0x98,0x5b,0x56,0x56, 0xb6,0xba,0xa1,0xa1,0x81,0xb,0xc7,0x5,0x83,0x41,0x3e,0x2f,0x21,0x13,0x63,0x95, 0xa,0xe1,0xc6,0xf4,0x81,0xd8,0x5,0x25,0x6a,0x2f,0x89,0xf5,0xe,0xb1,0x20,0x4e, 0xe9,0x20,0x2,0x1,0xe2,0x1d,0x88,0x4a,0xae,0x94,0x42,0xb2,0xd9,0x6c,0x70,0xb9, 0x5c,0xc8,0xc9,0xc9,0x81,0xdb,0xed,0x46,0x49,0x49,0x9,0xbc,0x5e,0x2f,0x4a,0x4b, 0x4b,0x3d,0x0,0xc2,0x6,0x47,0xaf,0xfb,0xf1,0x2a,0x26,0xa1,0x4b,0x96,0x34,0xdd, 0x35,0xf,0x14,0x66,0xa4,0xca,0xd7,0x5e,0x7b,0x2d,0xf1,0xf8,0xe3,0x8f,0xeb,0x0, 0x77,0xe8,0xd0,0xa1,0x78,0xf4,0xd1,0x47,0x61,0xb3,0xd9,0xb0,0x7d,0xfb,0x76,0xac, 0x5a,0xb5,0xaa,0x5b,0x80,0xc1,0x18,0xfd,0x65,0x3,0x7,0xb3,0xf9,0x10,0x1d,0x5, 0x89,0x74,0x2d,0xae,0xf4,0x3d,0x24,0x60,0x20,0x20,0x48,0x24,0x12,0x18,0x3e,0x7c, 0x38,0x26,0x4c,0x98,0x80,0x58,0x2c,0xa6,0xd3,0x33,0x3b,0x72,0xe4,0x8,0xe,0x1f, 0x3e,0xc,0x9b,0xcd,0xc6,0x55,0x5d,0xe9,0x3c,0x6,0xc,0x18,0x80,0x1f,0xff,0xf8, 0xc7,0x79,0x29,0xbd,0x34,0x69,0x12,0x1c,0xae,0x4d,0xe7,0x9f,0x89,0x27,0x61,0x14, 0x77,0xcb,0xf4,0x5a,0xc3,0xbe,0x6d,0x0,0x1c,0x55,0x55,0x55,0x3f,0x70,0xbb,0xdd, 0xcf,0x5,0x2,0x1,0x34,0x37,0x37,0xc3,0xef,0xf7,0x23,0x12,0x89,0xf0,0x59,0xd2, 0x89,0x44,0x2,0x91,0x48,0x44,0x37,0x22,0xd4,0x6c,0xa0,0x4e,0xba,0x96,0x54,0x71, 0x14,0xa8,0x28,0x5,0x6e,0xb7,0xdb,0xf9,0xd0,0x21,0x92,0x12,0xf1,0x7a,0xbd,0x4d, 0x65,0x65,0x65,0xe5,0x0,0x62,0x0,0xa2,0x34,0x70,0xc9,0xcc,0xc1,0x77,0xb6,0x66, 0xd0,0xc1,0x34,0xdd,0x35,0x9f,0x56,0x22,0x90,0x50,0x14,0xc5,0xf2,0xf4,0xd3,0x4f, 0xc7,0x7f,0xf6,0xb3,0x9f,0xe9,0x9c,0xf2,0xd8,0xb1,0x63,0xf1,0xdd,0xef,0x7e,0x17, 0x16,0x8b,0x5,0x9f,0x7d,0xf6,0x19,0xd6,0xae,0x5d,0x8b,0xee,0x3e,0x25,0x63,0xda, 0xb2,0xa3,0x6a,0xae,0x9d,0x65,0x52,0x1b,0x8b,0xd4,0x46,0x92,0x1c,0xd5,0x1b,0x18, 0x63,0x18,0x39,0x72,0x24,0xc6,0x8e,0x1d,0xab,0x13,0xbc,0xb4,0x58,0x2c,0x38,0x7a, 0xf4,0x28,0xaa,0xaa,0xaa,0x60,0xb1,0x58,0xf8,0x88,0x52,0x5a,0xc,0xdd,0x74,0xd3, 0x4d,0x78,0xe4,0x91,0x47,0xf8,0x7c,0xe,0x69,0x12,0x1c,0xa4,0xb5,0x39,0x22,0x2b, 0x0,0xb,0x0,0xfb,0x8a,0x15,0x2b,0xfa,0x4d,0x9a,0x34,0xe9,0xbf,0xed,0x76,0xfb, 0xbd,0xb4,0xea,0x27,0xb,0x6,0x83,0xfc,0x87,0x29,0xe,0xaf,0x49,0x45,0x17,0xfb, 0x5a,0x5a,0x5a,0xde,0x18,0x32,0x64,0xc8,0xab,0x0,0xe2,0x29,0xc7,0x1f,0x97,0xed, 0x81,0x97,0x9f,0x5a,0x14,0x81,0xff,0x5f,0xfe,0xe5,0x5f,0xb4,0x67,0x9e,0x79,0x46, 0xe7,0x98,0xa7,0x4e,0x9d,0x8a,0x7b,0xef,0xbd,0x17,0x8c,0x31,0xfc,0xf5,0xaf,0x7f, 0xc5,0x86,0xd,0x1b,0xf8,0x73,0x62,0x24,0xd1,0x55,0x8a,0xae,0x22,0x30,0x88,0x91, 0x44,0x3a,0xa0,0xe8,0xec,0xb0,0x20,0xe3,0x5c,0xea,0x6c,0xe4,0x39,0x4a,0x6b,0x8e, 0x1c,0x39,0x12,0xa3,0x46,0x8d,0x82,0xd5,0x6a,0xe5,0x62,0x7e,0x56,0xab,0x15,0x27, 0x4e,0x9c,0xc0,0x81,0x3,0x7,0x78,0xba,0x95,0x66,0x53,0x33,0xc6,0x50,0x58,0x58, 0x88,0xef,0x7f,0xff,0xfb,0xe8,0xdd,0xbb,0xb7,0x22,0x2e,0xc2,0x84,0xcf,0xc0,0x34, 0xed,0xf4,0x6d,0xe7,0x49,0x48,0x70,0xb8,0x1,0x9d,0x8f,0xc9,0x6a,0x3a,0x6b,0x9f, 0x77,0xb6,0xd5,0xfd,0xf5,0xd8,0x1d,0x74,0x8d,0x7d,0x36,0x66,0x53,0x8,0x69,0x94, 0xad,0xe5,0xc9,0x27,0x9f,0x8c,0xbf,0xfc,0xf2,0xcb,0xdc,0x9,0x5a,0xad,0x56,0xcc, 0x9c,0x39,0x13,0x33,0x67,0xce,0x84,0xa2,0x28,0xd8,0xb4,0x69,0x13,0x36,0x6d,0xda, 0xa4,0x4b,0x3,0x76,0xb5,0xe4,0x86,0xd9,0x54,0xb9,0x74,0xb7,0x99,0x64,0x35,0xcc, 0xd2,0x4e,0x46,0x70,0x48,0x57,0x9f,0x30,0x6e,0xa3,0x28,0xa,0x46,0x8c,0x18,0x81, 0x11,0x23,0x46,0x70,0x3e,0xc,0xa5,0x4d,0xcf,0x9d,0x3b,0x87,0xbd,0x7b,0xf7,0xf2, 0xc2,0xb5,0xd8,0x22,0x5b,0x50,0x50,0x80,0xc5,0x8b,0x17,0x63,0xd0,0xa0,0x41,0xe2, 0xe0,0x20,0xf5,0x46,0xae,0x45,0x48,0x70,0xb8,0x81,0x53,0x59,0xd9,0x9c,0x7f,0xb6, 0x15,0x92,0x4,0x84,0x2e,0x5,0x8,0xdd,0xaa,0x55,0x51,0x14,0xd7,0xc2,0x85,0xb, 0x83,0x6b,0xd7,0xae,0xe5,0x45,0x68,0x9b,0xcd,0x86,0x5,0xb,0x16,0x60,0xf4,0xe8, 0xd1,0x50,0x14,0x5,0x7f,0xfe,0xf3,0x9f,0x41,0xa3,0x4a,0x29,0xf7,0x7e,0xa5,0xc8, 0x72,0xd9,0xe4,0x51,0xcc,0x0,0xc1,0xc,0x1c,0xd2,0x81,0x44,0x67,0x85,0xfa,0xd2, 0x1,0x4,0x1d,0xcf,0x98,0x31,0x63,0x30,0x6a,0xd4,0x28,0xc4,0xe3,0xf1,0x76,0x6c, 0xea,0x7d,0xfb,0xf6,0xe9,0x6a,0x13,0xd4,0xea,0xea,0x74,0x3a,0xb1,0x78,0xf1,0x62, 0x8c,0x1a,0x35,0x4a,0x49,0x37,0x5b,0xbe,0xa3,0xbf,0xa7,0x6f,0x83,0xc9,0x79,0xe, 0x37,0xa0,0x75,0x36,0xb7,0xdf,0x11,0xe9,0x6a,0x9,0x14,0xdf,0x18,0x18,0xac,0x8c, 0xb1,0xb8,0x10,0xdd,0xa9,0xa9,0x4b,0x9e,0x48,0x5d,0xd7,0x90,0xa2,0x28,0x39,0xd3, 0xa6,0x4d,0x6b,0xf9,0xfc,0xf3,0xcf,0x91,0x48,0x24,0x10,0x8d,0x46,0xb1,0x7a,0xf5, 0x6a,0xb8,0x5c,0x2e,0x8c,0x18,0x31,0x2,0x73,0xe6,0xcc,0x1,0x0,0x7c,0xfc,0xf1, 0xc7,0xba,0x94,0xd2,0x95,0xfa,0x48,0xb2,0x91,0x1a,0x8d,0x33,0x20,0xcc,0x9e,0x13, 0x6f,0xd3,0xed,0xd7,0x6c,0xc4,0x6d,0x26,0x80,0x12,0x1f,0x77,0x3a,0x9d,0x88,0x46, 0xa3,0xd8,0xb3,0x67,0xf,0x0,0x60,0xe4,0xc8,0x91,0xfc,0xf9,0x50,0x28,0x84,0xb2, 0xb2,0x32,0x38,0x9d,0x4e,0x6c,0xdf,0xbe,0x9d,0x8b,0x61,0x46,0x22,0x11,0x7e,0xbb, 0x7c,0xf9,0x72,0x4,0x2,0x1,0xfa,0xca,0xeb,0xb4,0xd3,0x32,0xfd,0x8e,0xbe,0x8d, 0x26,0xc1,0xe1,0x6,0x5c,0x95,0x66,0xfb,0x82,0x9b,0x39,0xfa,0x4c,0xaf,0x93,0x1a, 0x35,0x57,0xc4,0xf1,0xc6,0xd,0xf7,0x13,0x4a,0xd2,0x28,0x72,0x50,0x18,0x63,0xad, 0xb5,0xb5,0xb5,0x4d,0xb3,0x66,0xcd,0xca,0x3b,0x70,0xe0,0x0,0x54,0x55,0x45,0x34, 0x1a,0xc5,0x8a,0x15,0x2b,0x60,0xb7,0xdb,0x31,0x68,0xd0,0x20,0xcc,0x9a,0x35,0xb, 0x9a,0xa6,0x61,0xcb,0x96,0x2d,0x7c,0xe,0xc4,0x95,0x88,0x1c,0x3a,0x42,0x82,0xa4, 0x5b,0x23,0xc9,0x51,0x7c,0x9c,0x4c,0x4,0x88,0x4c,0x75,0x91,0x4c,0x13,0xe5,0xc4, 0x63,0x22,0xc1,0xbd,0x40,0x20,0x0,0xb7,0xdb,0x8d,0x58,0x2c,0x86,0xdd,0xbb,0x77, 0x3,0x0,0x46,0x8c,0x18,0xc1,0x41,0x29,0x12,0x89,0x20,0x27,0x27,0x7,0xb7,0xde, 0x7a,0x2b,0x76,0xee,0xdc,0x89,0xd6,0xd6,0x56,0xb8,0xdd,0x6e,0x9e,0x82,0xb,0x85, 0x42,0x58,0xbb,0x76,0x2d,0x2,0x81,0x0,0x3,0xa0,0x9a,0x7d,0xbf,0x8d,0x40,0xf1, 0x6d,0xfd,0xee,0xcb,0xb4,0x92,0xb4,0xcb,0x4a,0x43,0x65,0xda,0x56,0x46,0x10,0xdf, 0xec,0x3a,0xa7,0x80,0x1c,0x30,0x9f,0x2d,0x61,0x39,0x7d,0xfa,0x74,0x7c,0xd2,0xa4, 0x49,0x38,0x7b,0xf6,0x2c,0x67,0x48,0xe7,0xe4,0xe4,0xe0,0xfb,0xdf,0xff,0x3e,0xfa, 0xf6,0xed,0x8b,0x60,0x30,0x88,0xd,0x1b,0x36,0xe0,0x6f,0x7f,0xfb,0x5b,0x87,0x1c, 0xfb,0x15,0x3e,0x7,0xd3,0x56,0x56,0xb3,0xda,0x43,0x47,0x75,0x99,0xd2,0x11,0xe3, 0xd2,0xa5,0x9a,0x0,0xc0,0xe3,0xf1,0x20,0x12,0x89,0x40,0x55,0x55,0x8c,0x1b,0x37, 0xe,0x23,0x46,0x8c,0xe0,0x0,0x40,0xda,0x4b,0xb1,0x58,0xc,0x9f,0x7f,0xfe,0x39, 0x1a,0x1b,0x1b,0xe1,0x72,0xb9,0x74,0x2d,0xb3,0x4e,0xa7,0x13,0x53,0xa7,0x4e,0xc5, 0x77,0xbe,0xf3,0x1d,0x3e,0xfb,0xfb,0x46,0x48,0x25,0x49,0x70,0x90,0x76,0x45,0x9c, 0x7a,0x86,0x2,0xb7,0x8c,0x24,0x2e,0x1f,0x18,0x32,0x49,0xbf,0xf3,0x14,0xdf,0x81, 0x3,0x7,0xb4,0xca,0xca,0x4a,0x34,0x36,0x36,0xf2,0x56,0xe3,0x82,0x82,0x2,0x2c, 0x59,0xb2,0x4,0xbd,0x7a,0xf5,0x42,0x30,0x18,0xc4,0xda,0xb5,0x6b,0xb1,0x73,0xe7, 0xce,0x6e,0x9b,0x5,0x91,0xe,0x20,0x32,0x11,0xe5,0x8c,0xf7,0x8d,0x73,0x22,0xb2, 0x75,0x2b,0x89,0xda,0x4b,0xf1,0x78,0x1c,0x1e,0x8f,0x47,0x37,0x14,0x88,0xa2,0x98, 0xb1,0x63,0xc7,0x62,0xc4,0x88,0x11,0xed,0xd2,0x5f,0x36,0x9b,0xd,0x3b,0x77,0xee, 0x44,0x6d,0x6d,0xad,0xae,0x48,0x4d,0xad,0xb3,0xe3,0xc6,0x8d,0xc3,0x83,0xf,0x3e, 0x68,0x43,0x52,0x9e,0x45,0xbb,0x91,0xbe,0xe3,0xaa,0xfc,0x59,0xde,0x38,0xce,0x47, 0x49,0xa3,0x7b,0x21,0xcc,0xdb,0x65,0x9d,0x7d,0xbd,0xd9,0xeb,0x24,0x30,0x5c,0x56, 0xda,0x86,0x8a,0xcf,0x7c,0x42,0x1c,0x1,0x81,0xe0,0x88,0xf8,0xf5,0x1f,0x3e,0x7c, 0xb8,0xb2,0x76,0xed,0x5a,0xae,0x3e,0xca,0x18,0xc3,0xa5,0x4b,0x97,0xb0,0x62,0xc5, 0xa,0x5c,0xbc,0x78,0x91,0x17,0xab,0xc7,0x8e,0x1d,0x7b,0xb5,0xce,0xa7,0x1d,0x41, 0xd2,0xf8,0xbf,0xf1,0x56,0x24,0x52,0x1a,0xff,0x12,0x89,0x84,0xee,0x4f,0x24,0x5a, 0xd2,0x7d,0xab,0xd5,0xca,0xf9,0x3b,0xaa,0xaa,0xea,0xc6,0xab,0xee,0xda,0xb5,0xb, 0x55,0x55,0x55,0xbc,0x7b,0x89,0xb6,0xd1,0x34,0xd,0xe3,0xc7,0x8f,0x47,0xef,0xde, 0xbd,0x11,0xa,0x85,0x74,0x6c,0xfe,0x44,0x22,0x81,0x1d,0x3b,0x76,0xe0,0x95,0x57, 0x5e,0x89,0x1,0xb0,0xa,0x11,0xdd,0x8d,0xe1,0x33,0xe4,0xef,0x58,0x9a,0xb4,0xeb, 0x2b,0xb5,0x27,0x16,0x4a,0x45,0x99,0xd,0x72,0x76,0x3,0x7,0xe,0xc4,0x43,0xf, 0x3d,0x4,0x8f,0xc7,0x83,0x58,0x2c,0x86,0xd5,0xab,0x57,0xe3,0xcb,0x2f,0xbf,0xe4, 0x4e,0x5b,0x94,0x7a,0xef,0x6a,0x1e,0x4,0xad,0x27,0x8c,0xe9,0xa4,0x4c,0x9a,0x4c, 0x9d,0x21,0xcc,0x19,0x53,0x4e,0x46,0x35,0x57,0x31,0x12,0x1,0x80,0x89,0x13,0x27, 0x62,0xc8,0x90,0x21,0x9c,0xb5,0x4f,0x91,0x82,0xc5,0x62,0xc1,0x57,0x5f,0x7d,0x85, 0x13,0x27,0x4e,0xe8,0xb8,0x3c,0xa4,0xe7,0x34,0x60,0xc0,0x0,0x8c,0x1f,0x3f,0x7e, 0xc1,0x84,0x9,0x13,0xd6,0x8,0xe7,0x97,0xb1,0x93,0xa9,0x33,0x1d,0x4f,0x32,0x72, 0x90,0x26,0x4d,0xda,0x65,0x47,0x16,0x42,0x44,0xa1,0x29,0x8a,0x62,0x55,0x14,0x45, 0x99,0x3f,0x7f,0xbe,0xfa,0xc2,0xb,0x2f,0xf0,0x74,0x9,0x31,0x82,0xdf,0x7b,0xef, 0x3d,0xe,0x18,0xf3,0xe7,0xcf,0xe7,0xda,0x43,0xb4,0x9d,0x51,0x53,0xab,0x2b,0x23, 0x8,0x7a,0x9f,0x6c,0x91,0x81,0xd9,0x7d,0x63,0xc4,0x20,0x3e,0x96,0x2e,0xa2,0x30, 0x8b,0x2e,0xe8,0x3c,0x77,0xee,0xdc,0x89,0x43,0x87,0xe,0xf1,0x59,0xf,0xa2,0xf0, 0xe3,0x88,0x11,0x23,0xd0,0xaf,0x5f,0x3f,0x9d,0x6,0x18,0xd5,0x2d,0x8e,0x1f,0x3f, 0x8e,0xcf,0x3e,0xfb,0x6c,0x75,0x6d,0x6d,0x2d,0x53,0x14,0xc5,0x9a,0x3a,0x37,0x2e, 0x75,0x22,0x44,0xd7,0x2a,0xdd,0x17,0xa2,0xc1,0xeb,0x92,0xc,0x2a,0xc1,0x41,0x9a, 0xb4,0xeb,0x23,0x72,0x20,0x87,0x13,0x4f,0x39,0x9c,0x38,0xa5,0xf4,0x9e,0x7c,0xf2, 0x49,0xf5,0xe9,0xa7,0x9f,0x6,0x0,0xae,0x67,0x75,0xf0,0xe0,0x41,0xac,0x5b,0xb7, 0x8e,0x8f,0x4f,0x9d,0x37,0x6f,0x1e,0xc6,0x8d,0x1b,0xc7,0x57,0xf4,0xa4,0x6e,0x2a, 0x3a,0xf0,0xae,0x2,0x6,0xb3,0xd4,0x92,0x8,0x14,0x74,0xcc,0x22,0x38,0x64,0xbb, 0x9f,0xe9,0x4f,0x4,0xf,0x33,0x30,0xd9,0xb1,0x63,0x7,0x8e,0x1f,0x3f,0xde,0xee, 0xd8,0x42,0xa1,0x10,0x27,0xd0,0x91,0xb4,0xc,0x0,0x44,0x22,0x11,0x24,0x12,0x9, 0x9c,0x39,0x73,0x6,0xaf,0xbe,0xfa,0x2a,0xce,0x9d,0x3b,0x17,0x4b,0x81,0x0,0xa5, 0xfc,0x34,0x21,0x35,0xab,0xa5,0xee,0xd3,0xe7,0x95,0xb8,0x5e,0xd3,0x51,0xb2,0x95, 0x55,0x9a,0xb4,0xeb,0x23,0x72,0x10,0x57,0x9f,0x4c,0x0,0xc,0x25,0xc5,0x85,0x50, 0x2e,0x5c,0xb8,0xc0,0x9e,0x7b,0xee,0x39,0x3e,0x73,0x79,0xfb,0xf6,0xed,0xf0,0x7a, 0xbd,0x98,0x39,0x73,0x26,0x1c,0xe,0x7,0xee,0xbd,0xf7,0x5e,0xc4,0xe3,0x71,0xec, 0xdf,0xbf,0x9f,0xe7,0xd6,0x9,0x2c,0xba,0x1a,0x20,0xc8,0xc4,0x36,0x57,0x23,0x80, 0x18,0x9d,0xb5,0x8,0x64,0x66,0x8a,0xc1,0xe9,0x52,0x59,0xe9,0x1e,0x27,0x99,0xfb, 0x58,0x2c,0x86,0x6d,0xdb,0xb6,0x41,0x51,0x14,0xf4,0xed,0xdb,0x97,0xbf,0x9f,0xcd, 0x66,0x43,0x28,0x14,0x42,0xff,0xfe,0xfd,0x61,0xb3,0xd9,0x38,0x59,0x8e,0x64,0x36, 0x22,0x91,0x8,0x2e,0x5d,0xba,0x84,0x3f,0xfe,0xf1,0x8f,0x38,0x72,0xe4,0x48,0x62, 0xc0,0x80,0x1,0x8a,0xa1,0x26,0xc4,0xf9,0x2a,0x4,0x10,0xa9,0xcf,0xed,0xba,0xcc, 0xdd,0x4b,0x70,0x90,0x26,0xed,0x3a,0x8b,0x20,0x44,0xa0,0x20,0x79,0xd,0x24,0xbb, 0x69,0x94,0x86,0x86,0x6,0xf6,0xea,0xab,0xaf,0xf2,0x5a,0xc2,0x47,0x1f,0x7d,0x4, 0xa7,0xd3,0x89,0xdb,0x6e,0xbb,0x8d,0x8f,0xcb,0x64,0x8c,0x61,0xdf,0xbe,0x7d,0x69, 0x1d,0x78,0x77,0x80,0x84,0x11,0x14,0x12,0x89,0x84,0xe,0x30,0xc4,0xe1,0x54,0xa2, 0x7e,0x93,0x8,0x20,0x66,0x7c,0x7,0xb3,0xe7,0xc5,0x6d,0xa8,0x9d,0x36,0x1a,0x8d, 0x62,0xdb,0xb6,0x6d,0x60,0x8c,0x61,0xc0,0x80,0x1,0x5c,0x7c,0xd2,0x62,0xb1,0x20, 0x14,0xa,0xa1,0x77,0xef,0xde,0xb0,0xd9,0x6c,0xd8,0xbb,0x77,0x2f,0xc2,0xe1,0x30, 0xef,0x64,0x2,0x80,0xe6,0xe6,0x66,0xbc,0xf6,0xda,0x6b,0x58,0xbc,0x78,0x31,0x43, 0x52,0x62,0x83,0x9,0xa0,0x20,0xf2,0x55,0xae,0xeb,0x39,0xd5,0xb2,0x20,0x2d,0x4d, 0xda,0xf5,0x3,0xc,0xed,0xa,0x9c,0x8a,0xa2,0xd8,0xc4,0x3e,0x7c,0x45,0x51,0x1c, 0xb,0x17,0x2e,0xc,0xaf,0x59,0xb3,0x46,0x57,0x68,0x7e,0xe0,0x81,0x7,0x30,0x76, 0xec,0x58,0x30,0xc6,0x10,0x8d,0x46,0xf1,0xce,0x3b,0xef,0xe0,0xab,0xaf,0xbe,0xc2, 0xd5,0xf8,0xfd,0x77,0xa4,0xc5,0xb5,0xb3,0x1c,0x88,0x74,0xd2,0x1b,0x22,0x77,0xc1, 0xe1,0x70,0x70,0x45,0x56,0x45,0x51,0xf8,0xfc,0xe9,0x29,0x53,0xa6,0xa0,0x4f,0x9f, 0x3e,0xbc,0x66,0x43,0xad,0xc1,0x6e,0xb7,0x1b,0x75,0x75,0x75,0xd8,0xbd,0x7b,0x37, 0xfc,0x7e,0x3f,0x7c,0x3e,0x1f,0xe2,0xf1,0xb8,0x6e,0x3e,0xf5,0xfc,0xf9,0xf3,0x31, 0x79,0xf2,0x64,0xc5,0x8,0xdc,0xf4,0xb9,0x48,0x70,0x90,0x26,0x4d,0x5a,0xb7,0x80, 0x43,0x6a,0x15,0xcc,0xd2,0x48,0x98,0x10,0x9b,0xda,0x77,0xeb,0xad,0xb7,0xb6,0x6c, 0xdf,0xbe,0x9d,0xa7,0x72,0xac,0x56,0x2b,0x1e,0x7e,0xf8,0x61,0xc,0x1f,0x3e,0x9c, 0x4f,0xda,0x7b,0xf3,0xcd,0x37,0x51,0x5d,0x5d,0xad,0x6b,0xf9,0xbc,0x1a,0x0,0x61, 0x46,0x8e,0xbb,0x1c,0x70,0x30,0xbb,0x2f,0x72,0x16,0x0,0x70,0xe7,0xef,0x72,0xb9, 0x38,0x8,0x58,0xad,0x56,0x54,0x56,0x56,0xa2,0xbc,0xbc,0x9c,0x6b,0x31,0x89,0x80, 0xd2,0xd2,0xd2,0x82,0x3d,0x7b,0xf6,0xa0,0xb1,0xb1,0x11,0x5e,0xaf,0x97,0xa7,0xa0, 0x68,0x9e,0xc4,0xec,0xd9,0xb3,0x31,0x73,0xe6,0x4c,0xd5,0x4c,0x3e,0xff,0x7a,0x26, 0x85,0xca,0x82,0xb4,0x34,0x69,0xd7,0x4f,0x3a,0xc9,0x54,0xce,0x84,0x3a,0x64,0xa8, 0xf8,0xc9,0x18,0x6b,0x7d,0xf3,0xcd,0x37,0x7f,0x37,0x6c,0xd8,0x30,0x1e,0x3d,0xc4, 0xe3,0x71,0xbc,0xfd,0xf6,0xdb,0x38,0x71,0xe2,0x4,0x57,0x29,0xfd,0xde,0xf7,0xbe, 0x87,0x5b,0x6e,0xb9,0xe5,0x8a,0x39,0xfb,0xce,0x3e,0x2f,0xa6,0x7f,0xc4,0x82,0x71, 0x47,0xb9,0xe,0x1d,0xf9,0xa3,0x6e,0xa5,0x58,0x2c,0xc6,0xf7,0x43,0xb2,0x23,0x74, 0x9,0x63,0xb1,0x18,0x3e,0xfd,0xf4,0x53,0xd4,0xd4,0xd4,0xc0,0x6a,0xb5,0xea,0x8a, 0xdf,0xe1,0x70,0x18,0x39,0x39,0x39,0x18,0x3f,0x7e,0x3c,0x8a,0x8b,0x8b,0x11,0x8, 0x4,0xda,0x1d,0xef,0xc6,0x8d,0x1b,0xf1,0xfe,0xfb,0xef,0x93,0x8a,0x2e,0x4b,0xa5, 0xf9,0xda,0x7d,0x66,0x32,0x72,0x90,0x26,0x4d,0xda,0xd5,0x2,0xf,0x4d,0xfc,0xbf, 0xba,0xba,0x9a,0xcd,0x9e,0x3d,0x1b,0xc7,0x8e,0x1d,0xe3,0xdb,0xb9,0xdd,0x6e,0xfc, 0xf0,0x87,0x3f,0x44,0x69,0x69,0x29,0x6f,0xd9,0x5c,0xbe,0x7c,0x39,0xe,0x1d,0x3a, 0x94,0xd1,0xb1,0x77,0x95,0x9f,0x30,0x8b,0x12,0xcc,0x24,0x38,0x8c,0x6a,0xae,0x66, 0x93,0xd,0xd3,0x71,0x22,0xd2,0xc9,0x6f,0x88,0x8f,0x13,0xa7,0x61,0xca,0x94,0x29, 0xe8,0xdb,0xb7,0x2f,0xef,0x54,0x12,0x19,0xd8,0xb1,0x58,0xc,0xfb,0xf7,0xef,0xc7, 0xb9,0x73,0xe7,0xe0,0x74,0x3a,0x75,0x6c,0x6a,0x45,0x51,0x30,0x71,0xe2,0x44,0x3c, 0xf0,0xc0,0x3,0xe,0xc6,0x58,0xf4,0x72,0x65,0xf0,0x25,0x38,0x48,0x93,0x26,0xad, 0x4b,0x1,0x82,0x6c,0xff,0xfe,0xfd,0x6c,0xc6,0x8c,0x19,0xa8,0xaf,0xaf,0xe7,0x5, 0xdd,0x9c,0x9c,0x1c,0xfc,0xfd,0xdf,0xff,0x3d,0x72,0x73,0x73,0xf9,0x3c,0xef,0x65, 0xcb,0x96,0xe1,0xc8,0x91,0x23,0x1c,0x8,0x68,0xdb,0xae,0x1e,0x41,0x9a,0x6e,0x1e, 0x44,0xa6,0xd4,0x92,0xd9,0x6c,0x6a,0x71,0x26,0x44,0x47,0xc0,0xc1,0x48,0x96,0xa3, 0xf3,0xf5,0x78,0x3c,0xb8,0xf5,0xd6,0x5b,0x79,0x8a,0x49,0x4c,0x81,0xd9,0x6c,0x36, 0x68,0x9a,0x86,0xfd,0xfb,0xf7,0xa3,0xa6,0xa6,0x6,0x6e,0xb7,0x9b,0xa7,0xa5,0x68, 0x9f,0x43,0x86,0xc,0xc1,0x13,0x4f,0x3c,0xe1,0x65,0x8c,0x5,0xc4,0xcf,0x44,0x1c, 0x20,0x24,0x2,0xc2,0xb5,0x5c,0x93,0x90,0x69,0x25,0x69,0xd2,0xbe,0x1d,0xc0,0x60, 0x11,0xfb,0xeb,0xc9,0x9,0x55,0x54,0x54,0x58,0x56,0xaf,0x5e,0x8d,0xbc,0xbc,0x3c, 0xce,0x17,0x68,0x69,0x69,0xc1,0x2b,0xaf,0xbc,0x82,0x40,0x20,0xc0,0xd9,0xc0,0xf, 0x3f,0xfc,0x30,0x6,0xe,0x1c,0xd8,0x8e,0xb4,0xd6,0xd5,0x96,0x89,0x3,0x61,0x26, 0xc1,0x91,0x8e,0xf3,0xd0,0x19,0x1e,0x44,0xba,0xf4,0x15,0x90,0x9c,0x78,0xb8,0x6d, 0xdb,0x36,0x9c,0x3a,0x75,0x8a,0x93,0xe4,0x8,0x30,0x23,0x91,0x8,0x14,0x45,0xc1, 0xa8,0x51,0xa3,0x30,0x70,0xe0,0x40,0x84,0xc3,0x61,0x1d,0xc9,0x2e,0x1a,0x8d,0xa2, 0xaa,0xaa,0xa,0x7f,0xf8,0xc3,0x1f,0xfc,0x8a,0xa2,0x78,0x45,0xb0,0x16,0x6e,0xdb, 0x49,0xcd,0x28,0x5d,0xc9,0x42,0x94,0xe0,0x20,0x4d,0xda,0x8d,0x6d,0x42,0xbd,0x81, 0x96,0xfa,0xe4,0x70,0xd8,0xb4,0x69,0xd3,0x2c,0xaf,0xbd,0xf6,0x1a,0xef,0xd6,0xd1, 0x34,0xd,0x4d,0x4d,0x4d,0x58,0xb6,0x6c,0x19,0x2,0x81,0x0,0x0,0xc0,0x66,0xb3, 0xe1,0xc1,0x7,0x1f,0xc4,0x80,0x1,0x3,0x0,0x80,0xe7,0xde,0xc5,0xd5,0x7d,0x77, 0x0,0x85,0xe8,0xec,0xd3,0xfd,0xa5,0xd3,0x62,0xca,0x6,0x10,0xe9,0x98,0xd6,0x22, 0x83,0x9a,0x31,0x6,0xbf,0xdf,0x8f,0xcf,0x3f,0xff,0x1c,0x67,0xce,0x9c,0x81,0xc3, 0xe1,0xe0,0xf5,0xa,0x55,0x55,0x11,0xe,0x87,0xa1,0x28,0xa,0x86,0xe,0x1d,0x8a, 0x41,0x83,0x6,0x1,0x0,0xaf,0x5f,0x68,0x9a,0x86,0x78,0x3c,0x8e,0xea,0xea,0x6a, 0x3c,0xfd,0xf4,0xd3,0xad,0xc7,0x8f,0x1f,0xff,0x4d,0x86,0x8c,0x92,0xa9,0x68,0xa5, 0x4c,0x2b,0x49,0x93,0x26,0xad,0xcb,0x52,0x4b,0x68,0x9b,0x26,0xa7,0x9b,0x7d,0xfc, 0xea,0xab,0xaf,0xb2,0x1f,0xfe,0xf0,0x87,0x3c,0x5d,0xa2,0xaa,0x2a,0x86,0xf,0x1f, 0x8e,0xc5,0x8b,0x17,0x73,0xe7,0x1c,0x8d,0x46,0xf1,0xf6,0xdb,0x6f,0xe3,0xf0,0xe1, 0xc3,0x5d,0x5a,0x6b,0x48,0x97,0x5e,0x12,0x53,0x4a,0x99,0x5a,0x5c,0x33,0xe9,0x30, 0x19,0xd3,0x4e,0xc6,0x51,0xa4,0x66,0xe9,0x26,0x9b,0xcd,0x86,0x44,0x22,0x1,0xbb, 0xdd,0xce,0x47,0xac,0xfa,0x7c,0x3e,0x54,0x56,0x56,0xe2,0xa6,0x9b,0x6e,0x42,0x2c, 0x16,0xe3,0xaf,0x89,0x46,0xa3,0x5c,0xe2,0xfb,0xf0,0xe1,0xc3,0xa8,0xae,0xae,0x46, 0x2c,0x16,0x83,0xc7,0xe3,0x1,0xd0,0xa6,0x23,0x55,0x54,0x54,0x84,0xc7,0x1e,0x7b, 0xc,0x37,0xdf,0x7c,0xb3,0x9a,0x69,0xc2,0xe2,0xb5,0x9a,0x5a,0x92,0x91,0x83,0x34, 0x69,0xdf,0x1e,0x50,0x40,0x4a,0xbe,0xa1,0x1d,0x30,0x28,0x8a,0xa2,0x3c,0xfe,0xf8, 0xe3,0xca,0x2f,0x7e,0xf1,0xb,0xee,0x40,0x35,0x4d,0xc3,0x81,0x3,0x7,0xb0,0x7a, 0xf5,0x6a,0xe,0x4,0x2e,0x97,0xb,0xf,0x3c,0xf0,0x0,0xfa,0xf5,0xeb,0xc7,0x5b, 0x3d,0xbb,0x2b,0x6a,0x30,0xa6,0x99,0xcc,0xe4,0x35,0x8c,0xb7,0x9d,0x95,0xd2,0x48, 0xa7,0xdf,0x14,0x8d,0x46,0x61,0xb1,0x58,0x10,0x8f,0xc7,0x79,0xcd,0xa5,0xb9,0xb9, 0x19,0x9f,0x7e,0xfa,0x29,0x6a,0x6b,0x6b,0xb9,0x24,0x78,0x38,0x1c,0x86,0xdd,0x6e, 0xe7,0xea,0xaf,0x83,0x7,0xf,0xc6,0xb0,0x61,0xc3,0xe0,0x76,0xbb,0xd1,0xd2,0xd2, 0x2,0xc6,0x18,0x8f,0x34,0x5a,0x5a,0x5a,0x88,0x4d,0x2d,0xa6,0xfb,0xd4,0x6b,0x35, 0x8d,0x24,0x23,0x7,0x69,0xd2,0x6e,0x20,0xc0,0x30,0xeb,0x98,0xf9,0xd9,0xcf,0x7e, 0xc6,0x9e,0x7d,0xf6,0x59,0x5d,0x54,0x30,0x63,0xc6,0xc,0xcc,0x98,0x31,0x83,0x3, 0x42,0x34,0x1a,0xc5,0x5b,0x6f,0xbd,0xa5,0xeb,0x74,0xea,0xe6,0x63,0x4f,0xdb,0xc9, 0x94,0x8e,0xb,0x61,0x16,0x39,0x64,0x1b,0x16,0x64,0x56,0xa8,0x66,0x8c,0x71,0x45, 0x5b,0x0,0xc8,0xcd,0xcd,0x45,0x65,0x65,0x25,0x7a,0xf4,0xe8,0xc1,0x81,0x8a,0xa2, 0xb,0x87,0xc3,0x1,0xbb,0xdd,0x8e,0xb3,0x67,0xcf,0xa2,0xaa,0xaa,0xa,0xa1,0x50, 0x8,0x4e,0xa7,0x53,0x77,0x9c,0x6e,0xb7,0x1b,0x8f,0x3c,0xf2,0x8,0x86,0xe,0x1d, 0xea,0x64,0x8c,0x45,0xae,0x17,0x62,0x9c,0x4,0x7,0x69,0xd2,0xbe,0x45,0x40,0x60, 0xd2,0xd,0xc3,0x23,0x8,0xb1,0x73,0xe6,0x89,0x27,0x9e,0x48,0xbc,0xfa,0xea,0xab, 0x3a,0x80,0x98,0x37,0x6f,0x1e,0xa6,0x4d,0x9b,0xc6,0x65,0x24,0xc2,0xe1,0x30,0x96, 0x2f,0x5f,0x8e,0xa3,0x47,0x8f,0x5e,0x35,0x80,0x30,0xeb,0x5e,0x32,0xbb,0x15,0x1d, 0xbc,0x48,0xaa,0x33,0xe,0x9,0xca,0x24,0xf5,0xd,0x80,0xb3,0xa7,0x81,0x24,0x1, 0xe,0x48,0x16,0xe7,0x73,0x73,0x73,0x31,0x7d,0xfa,0x74,0x14,0x15,0x15,0x71,0xbd, 0x25,0x51,0xeb,0xc9,0xe5,0x72,0xa1,0xbe,0xbe,0x1e,0x7b,0xf6,0xec,0xe1,0xd1,0x85, 0xa2,0x28,0x70,0x38,0x1c,0xfc,0x38,0xef,0xbf,0xff,0x7e,0x4c,0x98,0x30,0xc1,0x2a, 0x46,0x74,0x12,0x1c,0xa4,0x49,0x93,0x76,0xad,0x80,0x8,0xe5,0xb9,0xed,0xf3,0xe7, 0xcf,0x8f,0xac,0x59,0xb3,0x46,0x97,0x3a,0x5a,0xb8,0x70,0x21,0x26,0x4f,0x9e,0x8c, 0x40,0x20,0x0,0x97,0xcb,0x85,0x60,0x30,0x88,0x65,0xcb,0x96,0xe1,0xe8,0xd1,0xa3, 0xba,0x1a,0x44,0xba,0xff,0xbb,0x2a,0x82,0xe8,0x4c,0xab,0x6b,0x3a,0x1e,0x44,0xa6, 0xfb,0xd9,0x6e,0x35,0x4d,0x43,0x5e,0x5e,0x1e,0x6e,0xbf,0xfd,0x76,0x14,0x15,0x15, 0xf1,0xba,0x8d,0xd8,0x6,0xeb,0x70,0x38,0xe0,0xf7,0xfb,0x39,0x9b,0xda,0xe5,0x72, 0xc1,0x66,0xb3,0x1,0x0,0xbf,0x9d,0x33,0x67,0x8e,0x29,0x9b,0x3a,0x5d,0x34,0x71, 0x35,0xa3,0xc,0x59,0x73,0x90,0x26,0xed,0xc6,0x8a,0x2e,0x58,0x2a,0xb2,0x88,0xae, 0x59,0xb3,0x26,0x77,0xfa,0xf4,0xe9,0x48,0xdd,0x7,0x0,0xac,0x5b,0xb7,0xe,0x7, 0xf,0x1e,0x84,0xdb,0xed,0x46,0x30,0x18,0xe4,0xb2,0x1b,0xd4,0xe6,0x2a,0xca,0x7c, 0x93,0x83,0xee,0x6a,0xdf,0x95,0xa9,0x73,0x29,0xdb,0x4,0xb9,0x2b,0xd5,0xfe,0x4a, 0x35,0x88,0x8f,0x3f,0xfe,0x18,0x97,0x2e,0x5d,0xe2,0xce,0x1e,0x48,0x8a,0x6,0x2a, 0x8a,0x82,0x48,0x24,0x82,0x9c,0x9c,0x1c,0x8c,0x19,0x33,0x6,0x25,0x25,0x25,0x88, 0x44,0x22,0x88,0x46,0xa3,0x0,0xc0,0xdb,0x60,0x3f,0xfc,0xf0,0x43,0xac,0x5b,0xb7, 0x4e,0x33,0x19,0xde,0x24,0x2a,0xed,0x1a,0x81,0xfc,0xaa,0xd4,0x28,0x24,0x38,0x48, 0x93,0x76,0x3,0xe1,0x3,0x39,0x9d,0x94,0xd3,0x6d,0x79,0xf1,0xc5,0x17,0x7f,0x32, 0x74,0xe8,0x50,0xee,0xe4,0xa9,0x5b,0xe9,0xe8,0xd1,0xa3,0x70,0xbb,0xdd,0x60,0x8c, 0xc1,0xe1,0x70,0xe0,0x91,0x47,0x1e,0xc1,0xa0,0x41,0x83,0xb8,0xf6,0x50,0x77,0x75, 0x32,0x99,0x8d,0x16,0x35,0xb6,0xbb,0x66,0xe2,0x48,0x74,0x64,0x78,0x50,0x47,0xe4, 0x39,0xe8,0x58,0x2,0x81,0x0,0x7,0x8,0x55,0x55,0x79,0xd,0x82,0x24,0xd0,0xc3, 0xe1,0x30,0x3c,0x1e,0xf,0xc6,0x8c,0x19,0x83,0xe2,0xe2,0x62,0xc4,0x62,0x31,0xde, 0xea,0x4a,0x85,0xea,0x2d,0x5b,0xb6,0x60,0xc5,0x8a,0x15,0x9a,0xa2,0x28,0xb6,0xd4, 0x7e,0x35,0x21,0x5,0xa8,0x19,0x1,0x43,0xa6,0x95,0xa4,0x49,0x93,0xd6,0x5d,0x11, 0x84,0x35,0x35,0x34,0x48,0x5,0xc0,0x6a,0x6a,0x6a,0xb4,0xca,0xca,0x4a,0xd4,0xd4, 0xd4,0x70,0x47,0x98,0x9f,0x9f,0x8f,0x47,0x1f,0x7d,0x14,0x3d,0x7b,0xf6,0x44,0x38, 0x1c,0x86,0xc5,0x62,0x81,0xa6,0x69,0x58,0xbe,0x7c,0x39,0xaa,0xaa,0xaa,0x92,0x2b, 0xcb,0x54,0xba,0xa5,0x3b,0x80,0x42,0x6c,0x75,0x35,0x16,0xa4,0x8d,0xc2,0x7d,0x66, 0x69,0xa5,0x74,0x29,0xa8,0x4c,0xc5,0x6a,0x63,0xa,0xca,0x66,0xb3,0xf1,0x56,0xd6, 0x1e,0x3d,0x7a,0x60,0xe6,0xcc,0x99,0x1c,0x40,0xe9,0xfa,0x88,0xb5,0xe,0x45,0x51, 0xb0,0x77,0xef,0x5e,0x2e,0xb7,0x11,0x8f,0xc7,0x39,0xab,0x5a,0x51,0x14,0x8c,0x1c, 0x39,0x12,0x8f,0x3d,0xf6,0x98,0x17,0x40,0x10,0x49,0xe9,0xef,0x84,0xd8,0x75,0x76, 0xb5,0x5b,0x5d,0x65,0xe4,0x20,0x4d,0xda,0x8d,0x1,0x8,0x8a,0x8,0xc,0xe4,0x80, 0x18,0x63,0xac,0x77,0xef,0xde,0x96,0x35,0x6b,0xd6,0xa0,0xa0,0xa0,0x0,0x40,0x32, 0x8f,0xde,0xd8,0xd8,0x88,0xb7,0xde,0x7a,0xb,0x8d,0x8d,0x8d,0xbc,0xfb,0xc6,0xe1, 0x70,0xe0,0xbb,0xdf,0xfd,0x2e,0x6,0xe,0x1c,0xa8,0x4b,0x45,0x75,0x87,0x89,0xad, 0xae,0xc6,0xb4,0x10,0x9,0xe1,0x65,0x12,0xdf,0xeb,0xc,0x6b,0x3a,0x5d,0x64,0xc1, 0x18,0x43,0x38,0x1c,0x86,0xd3,0xe9,0x44,0x7d,0x7d,0x3d,0x3e,0xfc,0xf0,0x43,0xce, 0x32,0xa7,0xb4,0x11,0xbd,0x86,0x8e,0x6d,0xdc,0xb8,0x71,0xe8,0xdb,0xb7,0x2f,0xfc, 0x7e,0x3f,0xec,0x76,0x3b,0x62,0xb1,0x18,0x8f,0x36,0xf6,0xef,0xdf,0x8f,0xe7,0x9f, 0x7f,0xde,0xf,0xc0,0x9,0x40,0x13,0x3e,0x13,0xcd,0x90,0x2,0xbc,0x2a,0x2b,0x78, 0x19,0x39,0x48,0x93,0x76,0x83,0x80,0x83,0xd1,0xc9,0x18,0x3b,0x9b,0x3e,0xfb,0xec, 0x33,0x36,0x6b,0xd6,0x2c,0x84,0x42,0x21,0xbe,0x4a,0x2f,0x2b,0x2b,0xc3,0xe3,0x8f, 0x3f,0xe,0xb7,0xdb,0x8d,0x70,0x38,0xc,0xaf,0xd7,0xb,0xbf,0xdf,0x8f,0x77,0xdf, 0x7d,0x17,0x5f,0x7f,0xfd,0x35,0x6f,0xe9,0xec,0xc6,0xf3,0xe0,0xb7,0xe9,0xa,0xd5, 0xd9,0x64,0xbe,0xb3,0x89,0xf6,0x99,0xfd,0x4f,0x52,0x1a,0x4,0x94,0x74,0x29,0x4b, 0x4b,0x4b,0x51,0x59,0x59,0x89,0xfc,0xfc,0x7c,0x44,0xa3,0x51,0x24,0x12,0x9,0x78, 0x3c,0x1e,0x44,0x22,0x11,0x38,0x1c,0xe,0xfe,0xda,0x63,0xc7,0x8e,0xe1,0xc0,0x81, 0x3,0x70,0x3a,0x9d,0xb0,0xd9,0x6c,0xbc,0x65,0xd6,0x6e,0xb7,0xa3,0xb8,0xb8,0x18, 0xe5,0xe5,0xe5,0xa3,0x17,0x2d,0x5a,0x74,0x20,0x5,0x12,0x8a,0x90,0x5e,0xb2,0x1a, 0x6,0x8,0xc9,0xc8,0x41,0x9a,0x34,0x69,0x57,0x74,0xe5,0xcd,0xc,0xc5,0x4e,0xd5, 0xb8,0x2a,0x9d,0x36,0x6d,0x9a,0x75,0xc5,0x8a,0x15,0x3c,0x25,0xa2,0x28,0xa,0xce, 0x9d,0x3b,0x87,0x15,0x2b,0x56,0x20,0x91,0x48,0xc0,0xed,0x76,0xc3,0xef,0xf7,0xc3, 0xe3,0xf1,0x60,0xf1,0xe2,0xc5,0x18,0x3c,0x78,0xb0,0x6e,0x82,0x5b,0x77,0x45,0x10, 0xe9,0xf4,0x96,0xb2,0x49,0x6a,0x98,0xcd,0x96,0xee,0xa8,0x1c,0x78,0x3c,0x1e,0xe7, 0x52,0xdf,0x54,0x80,0x56,0x55,0x15,0xe7,0xcf,0x9f,0xc7,0x5f,0xff,0xfa,0x57,0x34, 0x34,0x34,0xf0,0xe8,0x8a,0xa2,0x8,0xda,0x36,0x12,0x89,0xa0,0x7f,0xff,0xfe,0x18, 0x35,0x6a,0x14,0x34,0x4d,0xe3,0x85,0x6a,0x92,0x12,0xaf,0xad,0xad,0xc5,0xe1,0xc3, 0x87,0xf7,0x9c,0x39,0x73,0x26,0x6e,0x9c,0x5,0x41,0x33,0xc3,0x25,0x38,0x48,0x93, 0x26,0xad,0x2b,0x23,0x7,0x91,0x7,0xa1,0x89,0x6d,0x94,0xa9,0xe7,0x13,0xf7,0xdc, 0x73,0x8f,0xb2,0x74,0xe9,0x52,0xee,0x68,0x55,0x55,0xc5,0x91,0x23,0x47,0xb0,0x72, 0xe5,0x4a,0x24,0x12,0x9,0x38,0x9d,0x4e,0xee,0xfc,0x1e,0x7d,0xf4,0x51,0x88,0x33, 0x23,0xba,0x19,0xec,0x4c,0x1,0xc1,0xac,0xc8,0xdc,0x19,0x41,0xbe,0x4c,0x29,0x27, 0x6a,0x5f,0x15,0xe7,0x6f,0x5b,0x2c,0x16,0x5c,0xb8,0x70,0x1,0x9f,0x7d,0xf6,0x19, 0x42,0xa1,0x10,0xdf,0x96,0xc0,0x83,0x88,0x74,0xb1,0x58,0xc,0xfd,0xfa,0xf5,0xc3, 0xb0,0x61,0xc3,0xf8,0x7d,0x0,0x9c,0x91,0xdd,0xdc,0xdc,0x8c,0x57,0x5f,0x7d,0x15, 0x87,0xf,0x1f,0x66,0xa9,0xcf,0xc9,0x2a,0xd4,0x1b,0xae,0xa,0x2f,0x42,0x82,0x83, 0x34,0x69,0x37,0x48,0xe4,0x60,0x8c,0x14,0xc4,0xe7,0xc4,0xc8,0x62,0xc9,0x92,0x25, 0xca,0x73,0xcf,0x3d,0xa7,0xab,0x29,0xec,0xdf,0xbf,0x1f,0xef,0xbf,0xff,0x3e,0x77, 0x88,0x94,0xde,0x59,0xb4,0x68,0x11,0x86,0xf,0x1f,0x6e,0x9a,0xf6,0x31,0x3e,0xd6, 0x95,0x0,0x21,0xaa,0xc8,0x9a,0xb5,0xa8,0xa6,0x8b,0x12,0x44,0x55,0xd5,0x6c,0x92, 0x1b,0xb4,0x3d,0x75,0x1d,0x91,0x63,0xb7,0x58,0x2c,0x38,0x7b,0xf6,0x2c,0xb6,0x6c, 0xd9,0x82,0x50,0x28,0x4,0x87,0xc3,0xc1,0x23,0x3,0x55,0x55,0xf9,0x7b,0x84,0xc3, 0x61,0xf4,0xe9,0xd3,0x7,0x15,0x15,0x15,0x7c,0x4c,0xa9,0xb8,0xcf,0x96,0x96,0x16, 0x2c,0x5b,0xb6,0xc,0x7b,0xf7,0xee,0x65,0xe9,0x52,0x49,0x66,0xd1,0x5f,0x57,0xb5, 0xba,0x4a,0x70,0x90,0x26,0x4d,0x1a,0x39,0x55,0x1e,0x59,0xfc,0xf3,0x3f,0xff,0xb3, 0xf2,0xaf,0xff,0xfa,0xaf,0xbc,0x3,0x7,0x0,0x76,0xec,0xd8,0x81,0x8f,0x3e,0xfa, 0x8,0xe,0x87,0x83,0x3b,0x47,0x97,0xcb,0x85,0xc5,0x8b,0x17,0x63,0xd4,0xa8,0x51, 0x50,0x55,0x95,0x47,0x1b,0xdd,0x41,0x90,0x33,0x82,0x44,0xba,0x96,0xd6,0x4c,0x6d, 0xaf,0x1d,0xe5,0x49,0x64,0xfb,0xb3,0x5a,0xad,0x38,0x7b,0xf6,0x2c,0x3e,0xfe,0xf8, 0x63,0xb4,0xb6,0xb6,0x72,0x6,0xb5,0xd8,0x6,0xb,0x0,0x81,0x40,0x0,0x7d,0xfa, 0xf4,0xc1,0xe8,0xd1,0xa3,0x79,0x64,0x41,0xc7,0x40,0xcf,0xbf,0xf3,0xce,0x3b,0xf8, 0xe2,0x8b,0x2f,0x98,0xb1,0x9d,0x55,0x64,0xb8,0xb,0x9f,0x97,0xa5,0xab,0xa,0xd6, 0xb2,0x20,0x2d,0x4d,0x9a,0x34,0xe3,0x24,0x39,0x5e,0xa8,0xfe,0xfe,0xf7,0xbf,0xcf, 0xde,0x78,0xe3,0xd,0x5d,0xe1,0xf9,0xae,0xbb,0xee,0xc2,0x8c,0x19,0x33,0x78,0xee, 0xdc,0xe9,0x74,0x42,0xd3,0x34,0xac,0x58,0xb1,0x2,0xfb,0xf6,0xed,0xd3,0x45,0xb, 0xdd,0xa9,0xea,0x9a,0x4e,0xd1,0xd5,0xd8,0xca,0x9a,0x49,0x93,0x29,0x13,0x83,0xda, 0x28,0xc7,0x21,0xfe,0x4f,0x5,0x6b,0x8b,0xc5,0x82,0xd2,0xd2,0x52,0xdc,0x71,0xc7, 0x1d,0xb0,0xdb,0xed,0x48,0x24,0x12,0x9c,0x30,0x47,0x9c,0x11,0x7a,0xac,0xa9,0xa9, 0x9,0xfb,0xf6,0xed,0x43,0x20,0x10,0x80,0xdd,0x6e,0xe7,0xed,0xb2,0x44,0x34,0xbc, 0xfb,0xee,0xbb,0x71,0xfb,0xed,0xb7,0x8b,0xdc,0x7,0x5d,0x6b,0xab,0x0,0x16,0x96, 0xae,0x48,0x3d,0x49,0x70,0x90,0x26,0x4d,0x9a,0xe8,0x64,0x79,0x77,0x4c,0x6a,0x85, 0xaa,0xcc,0x9f,0x3f,0x3f,0xbe,0x66,0xcd,0x9a,0x64,0xaa,0x21,0xc5,0x6d,0xb8,0xff, 0xfe,0xfb,0x31,0x71,0xe2,0x44,0x4,0x2,0x1,0x3e,0xd,0x4d,0x51,0x14,0xac,0x5c, 0xb9,0x12,0x7b,0xf6,0xec,0xd1,0x81,0x42,0x77,0x75,0x34,0x65,0x3,0x88,0xce,0x74, 0x34,0x75,0xa4,0x83,0xc9,0x6c,0xca,0x1c,0x9d,0x6b,0xef,0xde,0xbd,0x31,0x73,0xe6, 0x4c,0x5d,0x24,0x65,0xb3,0xd9,0x10,0x8f,0xc7,0x61,0xb5,0x5a,0x39,0x0,0xf8,0xfd, 0x7e,0xec,0xdc,0xb9,0x13,0xf1,0x78,0x9c,0x83,0x88,0xd3,0xe9,0x44,0x22,0x91,0x80, 0xd5,0x6a,0xc5,0xf4,0xe9,0xd3,0x31,0x77,0xee,0x5c,0xab,0x89,0x3e,0x96,0xa5,0xab, 0x6b,0x11,0x12,0x1c,0xa4,0x49,0x93,0x6,0x13,0x89,0x6f,0x51,0xc8,0xcf,0x3b,0x65, 0xca,0x94,0x96,0xed,0xdb,0xb7,0x73,0x27,0x4f,0x9c,0x87,0x31,0x63,0xc6,0xc0,0xef, 0xf7,0xf3,0xc7,0x18,0x63,0x3c,0x82,0x10,0xd3,0x2a,0xdd,0x78,0x1e,0x69,0x85,0xfa, 0x32,0x81,0x83,0x91,0x44,0xd7,0x59,0x45,0x57,0x9a,0x27,0x4d,0x20,0x90,0x48,0x24, 0xd0,0xb3,0x67,0x4f,0xdc,0x79,0xe7,0x9d,0xb0,0x58,0x2c,0x5c,0x6e,0x84,0xb6,0x25, 0x49,0xe,0x97,0xcb,0x85,0xc6,0xc6,0x46,0x7c,0xf1,0xc5,0x17,0x88,0xc5,0x62,0x70, 0x38,0x1c,0x3a,0xb2,0x1c,0x0,0x4c,0x9c,0x38,0x11,0xf7,0xdf,0x7f,0xbf,0x9d,0x31, 0x16,0xcb,0xf6,0xb9,0x5d,0x49,0x93,0x35,0x7,0x69,0xd2,0xa4,0xd1,0x24,0x39,0x8b, 0xe0,0x70,0xf8,0x58,0x4b,0xc6,0x58,0xeb,0x73,0xcf,0x3d,0xb7,0x60,0xf0,0xe0,0xc1, 0xdc,0x1,0x47,0x22,0x11,0xac,0x5e,0xbd,0x1a,0xc7,0x8e,0x1d,0xe3,0x8e,0x2c,0x16, 0x8b,0x21,0x1e,0x8f,0xe3,0xe1,0x87,0x1f,0xc6,0x98,0x31,0x63,0x78,0xd7,0x4e,0x77, 0x4a,0x3,0x75,0xb6,0x96,0x20,0x12,0xdf,0x3a,0x32,0x41,0x2e,0xdd,0x34,0xb9,0x78, 0x3c,0x8e,0x68,0x34,0xa,0x45,0x51,0x78,0xa1,0x9a,0x8a,0xd4,0xa4,0xaf,0x24,0xee, 0x8f,0xea,0x38,0x81,0x40,0x0,0xb9,0xb9,0xb9,0x98,0x3c,0x79,0x32,0x9f,0x13,0x41, 0xfb,0x88,0x44,0x22,0x50,0x55,0x15,0x3b,0x77,0xee,0xc4,0xeb,0xaf,0xbf,0x1e,0x55, 0x14,0xc5,0x21,0x90,0x19,0x15,0xe1,0x73,0xeb,0x12,0x3f,0x2e,0x23,0x7,0x69,0xd2, 0xa4,0x89,0x2b,0x51,0x63,0x3e,0x9b,0xe7,0xb9,0xcf,0x9c,0x39,0xa3,0xdd,0x76,0xdb, 0x6d,0xa8,0xae,0xae,0xe6,0xe9,0x13,0xaf,0xd7,0x8b,0x27,0x9e,0x78,0x82,0xcb,0x6c, 0x50,0xa,0x45,0x51,0x14,0x6c,0xde,0xbc,0x19,0x5b,0xb6,0x6c,0xb9,0x5a,0xe7,0x91, 0x36,0x8a,0x30,0x46,0x14,0x99,0x24,0x36,0x32,0xa9,0xba,0x8a,0x53,0xe6,0x6c,0x36, 0x1b,0x27,0xb5,0x51,0x14,0x5,0x24,0x5,0xf7,0x6,0xd,0x1a,0x84,0xdb,0x6e,0xbb, 0x8d,0x77,0x36,0x51,0x44,0x45,0x91,0x16,0xd5,0x2c,0x82,0xc1,0x20,0x76,0xec,0xd8, 0x81,0x48,0x24,0x2,0x9b,0xcd,0xc6,0xd3,0x4c,0xaa,0xaa,0xc2,0x6e,0xb7,0xe3,0xa6, 0x9b,0x6e,0xc2,0x8f,0x7f,0xfc,0x63,0xf,0x63,0x2c,0x28,0xa4,0xfd,0x60,0x36,0xb3, 0x43,0x46,0xe,0xd2,0xa4,0x49,0xbb,0x62,0xa0,0x40,0xff,0x92,0xc3,0x11,0x59,0xd5, 0x8c,0x31,0xd6,0xb3,0x67,0x4f,0x65,0xf5,0xea,0xd5,0x7c,0xe8,0x8d,0xa2,0x28,0xf0, 0xfb,0xfd,0x78,0xeb,0xad,0xb7,0xd0,0xd0,0xd0,0x0,0xbb,0xdd,0xce,0x57,0xc7,0x36, 0x9b,0xd,0x33,0x66,0xcc,0x40,0x65,0x65,0xe5,0xd5,0x8a,0x84,0xb2,0x76,0x28,0xa5, 0x23,0xd2,0x75,0xb6,0x53,0x89,0x78,0xf,0x24,0xe3,0xa1,0x69,0x1a,0xc2,0xe1,0x30, 0x12,0x89,0x4,0x5c,0x2e,0x17,0x8e,0x1e,0x3d,0x8a,0x4f,0x3e,0xf9,0x84,0x47,0xf, 0xd4,0xe2,0x2a,0xce,0x9e,0x8e,0x46,0xa3,0xf0,0x7a,0xbd,0x98,0x30,0x61,0x2,0x5c, 0x2e,0x17,0x22,0x91,0x8,0x22,0x91,0x88,0xee,0xf9,0xb3,0x67,0xcf,0xe2,0xd9,0x67, 0x9f,0xd,0x9c,0x3e,0x7d,0x7a,0x2d,0xf1,0x56,0xc4,0xee,0x25,0x9,0xe,0xd2,0xa4, 0x49,0xeb,0xa,0x67,0xca,0x8c,0xab,0x50,0xb3,0x16,0xc9,0x8a,0x8a,0xa,0xcb,0x8a, 0x15,0x2b,0xe0,0xf5,0x7a,0x79,0xba,0xa8,0xa1,0xa1,0x1,0xff,0xf7,0x7f,0xff,0x87, 0x60,0x30,0x8,0xbb,0xdd,0xce,0xd5,0x5d,0x15,0x45,0xc1,0xdc,0xb9,0x73,0x31,0x6d, 0xda,0x34,0x0,0xe0,0xa9,0x14,0xe3,0xff,0xdd,0xc1,0x83,0x48,0xd7,0xd2,0x9a,0x6d, 0xac,0x68,0x36,0x16,0x75,0x3c,0x1e,0xe7,0x3c,0x6,0x51,0xc7,0x89,0x80,0x82,0x66, 0x4f,0x9f,0x3c,0x79,0x12,0xdb,0xb6,0x6d,0x43,0x3c,0x1e,0xe7,0xe3,0x48,0x29,0x2a, 0x20,0x12,0x61,0x24,0x12,0x81,0xd7,0xeb,0xc5,0xb8,0x71,0xe3,0xf8,0x24,0x3a,0xe3, 0x31,0x9d,0x3b,0x77,0xe,0x7f,0xfa,0xd3,0x9f,0xee,0x3d,0x73,0xe6,0x8c,0x26,0x0, 0xba,0x91,0xfd,0xae,0x88,0x91,0x85,0x4,0x7,0x69,0xd2,0xa4,0x75,0x79,0x64,0xc1, 0x18,0xd3,0x2a,0x2b,0x2b,0xd5,0xb7,0xde,0x7a,0x4b,0x37,0xdb,0xa1,0xb6,0xb6,0x16, 0xcb,0x96,0x2d,0x43,0x38,0x1c,0x86,0xcb,0xe5,0xe2,0x79,0xf3,0x58,0x2c,0x86,0x7b, 0xef,0xbd,0x17,0x33,0x66,0xcc,0xd0,0xd5,0x20,0x68,0xf5,0x2c,0x72,0x22,0xba,0x23, 0x92,0xc8,0x16,0x45,0x64,0x8b,0x2c,0x3a,0x3b,0x13,0x42,0x14,0xe2,0x3b,0x74,0xe8, 0x10,0xfe,0xf6,0xb7,0xbf,0x21,0x1a,0x8d,0xf2,0x36,0x57,0xaa,0x31,0xd0,0x31,0x46, 0xa3,0x51,0xf8,0x7c,0x3e,0x8c,0x1f,0x3f,0x1e,0x5e,0xaf,0x17,0x81,0x40,0x80,0x47, 0x1c,0xa4,0x8e,0x7b,0xe9,0xd2,0x25,0xbc,0xfe,0xfa,0xeb,0x38,0x7a,0xf4,0xa8,0x58, 0x17,0xd2,0x14,0x45,0xb1,0x10,0x37,0x22,0xdd,0x88,0x58,0x9,0xe,0xd2,0xa4,0x49, 0xbb,0xe2,0x91,0x85,0xa8,0xc7,0x34,0x7f,0xfe,0x7c,0xf5,0x85,0x17,0x5e,0xe0,0x0, 0xa1,0x69,0x1a,0x8e,0x1f,0x3f,0x8e,0xd5,0xab,0x57,0x73,0x50,0x70,0xb9,0x5c,0x9c, 0x19,0x7c,0xe7,0x9d,0x77,0x62,0xe6,0xcc,0x99,0xdc,0x9,0x2a,0x8a,0xa2,0x1b,0xa4, 0xd3,0x1d,0xe9,0xa5,0x6c,0xda,0x4b,0x99,0xd2,0x4b,0x99,0xe6,0x3f,0x74,0x44,0x9b, 0x89,0x40,0xf1,0xd8,0xb1,0x63,0xf8,0xec,0xb3,0xcf,0x10,0x8d,0x46,0x79,0x77,0x13, 0x11,0xe1,0x28,0xaa,0x20,0xee,0xc8,0xf8,0xf1,0xe3,0x91,0x9b,0x9b,0x8b,0x50,0x28, 0xc4,0x1,0x24,0x1e,0x8f,0x23,0x14,0xa,0x21,0x10,0x8,0xe0,0x8d,0x37,0xde,0xc0, 0x81,0x3,0x7,0x98,0x70,0xae,0x9,0x23,0x20,0x7c,0x13,0xf6,0xb4,0x55,0x7e,0xed, 0xa5,0x49,0x93,0xd6,0xd1,0x0,0x22,0xe5,0x70,0x88,0xb,0xa1,0x34,0x37,0x37,0xb3, 0x9f,0xfe,0xf4,0xa7,0x7c,0x83,0xfd,0xfb,0xf7,0xc3,0xe9,0x74,0x62,0xe1,0xc2,0x85, 0xba,0xd4,0x49,0x22,0x91,0xc0,0xcc,0x99,0x33,0xa1,0x69,0x1a,0x3e,0xfe,0xf8,0x63, 0x9e,0x4e,0x22,0x27,0xdc,0x5d,0x91,0x83,0x58,0x90,0xa6,0xf7,0x35,0x4a,0x7d,0x50, 0x24,0x43,0x51,0xd,0x15,0x8d,0x8d,0xfb,0x12,0xef,0x9b,0xbd,0x9f,0x68,0xc4,0x6f, 0x50,0x14,0x85,0x8f,0x5c,0x9d,0x36,0x6d,0x1a,0xec,0x76,0x3b,0xa2,0xd1,0x28,0x9f, 0x4b,0x4d,0x9d,0x4d,0x76,0xbb,0x1d,0x76,0xbb,0x1d,0x63,0xc6,0x8c,0xc1,0xce,0x9d, 0x3b,0x39,0x51,0xe,0x48,0x16,0xbb,0x3,0x81,0x0,0x9c,0x4e,0x27,0xde,0x79,0xe7, 0x1d,0x4,0x83,0x41,0x36,0x71,0xe2,0x44,0xde,0xc5,0x24,0x44,0x12,0x6a,0xea,0x33, 0xbb,0xac,0x56,0x57,0x9,0xe,0xd2,0xa4,0x49,0xeb,0x50,0x5a,0x29,0xd5,0x36,0x49, 0x4a,0xa1,0xa,0x92,0xdd,0x8e,0xca,0xc5,0x8b,0x17,0xd9,0x53,0x4f,0x3d,0xc5,0x1d, 0xeb,0x8e,0x1d,0x3b,0xe0,0xf1,0x78,0x30,0x67,0xce,0x1c,0x9e,0x2a,0xa1,0xde,0xfe, 0xbb,0xee,0xba,0xb,0x16,0x8b,0x5,0x1f,0x7d,0xf4,0x11,0xae,0x66,0xa7,0x24,0x45, 0x2c,0xe2,0x2d,0x81,0x83,0xd8,0x7e,0x9b,0x69,0xe1,0x6d,0x7c,0x2e,0xdd,0xf9,0x10, 0x0,0x52,0x87,0x97,0xc3,0xe1,0xc0,0x91,0x23,0x47,0xc0,0x18,0xe3,0x0,0x41,0x6a, 0xad,0x2e,0x97,0x8b,0x47,0x5e,0x16,0x8b,0x5,0x39,0x39,0x39,0x18,0x3f,0x7e,0x3c, 0xbe,0xfc,0xf2,0x4b,0x4,0x83,0x41,0xe,0x54,0x62,0xcb,0xec,0x9a,0x35,0x6b,0x10, 0xc,0x6,0xd9,0xed,0xb7,0xdf,0xae,0x8,0xc7,0xf6,0x8d,0xa5,0xbe,0x25,0x38,0x48, 0x93,0x26,0xad,0x43,0x69,0x25,0x21,0x7a,0x60,0x0,0x2c,0x4,0x12,0x8c,0x31,0xa5, 0xb1,0xb1,0x91,0xbd,0xf4,0xd2,0x4b,0xdc,0x61,0x7e,0xfc,0xf1,0xc7,0xb0,0xdb,0xed, 0xa0,0xf9,0x10,0x94,0xae,0x9,0x6,0x83,0x98,0x3d,0x7b,0x36,0xdf,0x86,0x52,0x2e, 0xdd,0x5,0x14,0xe2,0xfb,0x98,0x1,0x44,0xa6,0xa8,0xe2,0x9b,0x1c,0xa3,0xd5,0x6a, 0x45,0x28,0x14,0x82,0xd3,0xe9,0xe4,0x29,0x25,0x6a,0x9,0x9e,0x3c,0x79,0x32,0x6f, 0x91,0xd,0x87,0xc3,0xbc,0xa8,0xf,0x0,0xa1,0x50,0x8,0x6e,0xb7,0x1b,0xe3,0xc6, 0x8d,0xc3,0x97,0x5f,0x7e,0x89,0x48,0x24,0xc2,0x7,0xe,0x11,0xf0,0x5a,0xad,0x56, 0x6c,0xda,0xb4,0x9,0x7e,0xbf,0x9f,0xba,0x8e,0x55,0x81,0xe5,0xae,0x18,0x3e,0xbf, 0x8e,0x2f,0x8,0x24,0xcf,0x41,0x9a,0x34,0x69,0x1d,0x8c,0x1e,0x8c,0x2c,0x6a,0x51, 0x6a,0xc3,0xb9,0x60,0xc1,0x82,0xd0,0x9a,0x35,0x6b,0xc0,0x18,0xe3,0x5a,0x43,0xf3, 0xe7,0xcf,0xc7,0xe4,0xc9,0x93,0x11,0xa,0x85,0x74,0xe3,0x34,0x1d,0xe,0x7,0xb6, 0x6e,0xdd,0x8a,0xf5,0xeb,0xd7,0x5f,0xcd,0xf3,0x69,0xc7,0x98,0xa6,0x74,0x92,0x51, 0x87,0x29,0x1b,0x7,0x42,0xd4,0x5e,0x32,0xf2,0x20,0x88,0xc7,0x40,0x91,0x3,0x15, 0xec,0x29,0x3d,0x35,0x78,0xf0,0x60,0x4c,0x9e,0x3c,0x99,0xb3,0xa3,0x49,0xd0,0x90, 0x52,0x4d,0xc4,0xa3,0x8,0x6,0x83,0xd8,0xbe,0x7d,0x3b,0xa2,0xd1,0x28,0x7f,0xf, 0x87,0xc3,0xc1,0xcf,0xc1,0xe1,0x70,0x60,0xec,0xd8,0xb1,0xb8,0xef,0xbe,0xfb,0xac, 0xa9,0x28,0x8f,0x8f,0x83,0xbd,0x9c,0xe2,0xb4,0x4,0x7,0x69,0xd2,0xa4,0x75,0x3a, 0xc5,0x94,0xf2,0x1d,0x94,0xd7,0x26,0xc9,0x6f,0xef,0x6d,0xb7,0xdd,0xd6,0xfa,0xe9, 0xa7,0x9f,0x72,0xe7,0x6b,0xb3,0xd9,0xb0,0x68,0xd1,0x22,0x54,0x54,0x54,0x20,0x12, 0x89,0xf0,0xa1,0x39,0xe4,0x30,0x3f,0xff,0xfc,0x73,0xac,0x5b,0xb7,0xee,0xaa,0xa5, 0x98,0xcc,0x8,0x72,0xe9,0x44,0xfa,0x44,0xd2,0x9c,0x19,0x10,0x64,0x2,0x7,0x51, 0xb4,0x8f,0xfe,0x27,0x92,0x1b,0x0,0xc,0x1e,0x3c,0x18,0x13,0x27,0x4e,0xe4,0x2d, 0xbe,0x4,0xa4,0x54,0xf7,0xa0,0xed,0x43,0xa1,0x10,0xbe,0xf8,0xe2,0xb,0xf8,0xfd, 0x7e,0x38,0x9d,0x4e,0xdd,0xb5,0x24,0xe9,0x8e,0x61,0xc3,0x86,0xe1,0x7b,0xdf,0xfb, 0x9e,0x87,0x31,0x16,0xfc,0x26,0xf3,0xa7,0x65,0xb7,0x92,0x34,0x69,0xd2,0x3a,0x9d, 0x62,0x12,0xe4,0x35,0x34,0x81,0x23,0xe1,0x7f,0xfa,0xe9,0xa7,0x17,0xc,0x1f,0x3e, 0x9c,0xa7,0x63,0xa2,0xd1,0x28,0xde,0x7b,0xef,0x3d,0x1c,0x39,0x72,0x4,0x2e,0x97, 0xb,0x40,0x92,0xe3,0x40,0xb3,0xc,0xa6,0x4e,0x9d,0x8a,0x79,0xf3,0xe6,0x99,0xf2, 0x1e,0xba,0x43,0x76,0x23,0x9b,0x8c,0x77,0xa6,0xc7,0xd3,0x75,0x2d,0x99,0xf1,0x22, 0xcc,0xc8,0x76,0x54,0x33,0x50,0x14,0x5,0x5f,0x7d,0xf5,0x15,0x76,0xec,0xd8,0x81, 0x58,0x2c,0xd6,0xae,0x50,0x4f,0xaf,0x27,0xcd,0xa5,0x31,0x63,0xc6,0xc0,0xe7,0xf3, 0xf1,0x68,0x8c,0x78,0x16,0x94,0x2a,0xfb,0xea,0xab,0xaf,0xf0,0xd2,0x4b,0x2f,0x5, 0x56,0xae,0x5c,0x39,0x4a,0x1c,0xe8,0x44,0xb7,0x66,0xff,0x4b,0x70,0x90,0x26,0x4d, 0x5a,0x57,0x46,0x13,0x98,0x38,0x71,0xe2,0xda,0xf,0x3e,0xf8,0x0,0x7d,0xfa,0xf4, 0xe1,0xd1,0x40,0x38,0x1c,0xc6,0xdb,0x6f,0xbf,0x8d,0x9a,0x9a,0x1a,0xb8,0xdd,0x6e, 0xc4,0x62,0x31,0xd8,0xed,0x76,0xc4,0xe3,0x71,0x84,0xc3,0x61,0x4c,0x9b,0x36,0xd, 0x73,0xe7,0xce,0xe5,0x2b,0xe9,0xee,0x96,0xfb,0xa6,0xf7,0xca,0x44,0x98,0xcb,0xc4, 0xa0,0xce,0xc6,0x85,0xe8,0x48,0xab,0xab,0xc5,0x62,0xc1,0xc1,0x83,0x7,0xb1,0x73, 0xe7,0x4e,0x44,0xa3,0x51,0x9e,0x4e,0x22,0x29,0xd,0xb1,0x66,0x93,0x97,0x97,0x87, 0x51,0xa3,0x46,0x21,0x37,0x37,0x17,0xad,0xad,0xad,0x9c,0x37,0x42,0xdd,0x61,0xd1, 0x68,0x14,0xd5,0xd5,0xd5,0xb8,0x78,0xf1,0xe2,0x9e,0x43,0x87,0xe,0xfd,0xb3,0xc0, 0x7d,0xb0,0x10,0xb8,0x77,0x24,0xa2,0x90,0x69,0x25,0x69,0xd2,0xa4,0x5d,0x69,0xa0, 0xb0,0x57,0x55,0x55,0x45,0x2a,0x2b,0x2b,0x71,0xf1,0xe2,0x45,0xfe,0x78,0x61,0x61, 0x21,0x7e,0xf0,0x83,0x1f,0x20,0x37,0x37,0x97,0x47,0xe,0xa4,0x49,0xe4,0x74,0x3a, 0xb1,0x6d,0xdb,0x36,0xfc,0xf9,0xcf,0x7f,0x46,0x28,0x14,0xe2,0x20,0x41,0x2b,0xeb, 0xae,0xf6,0x53,0x62,0xb4,0xd2,0x11,0x35,0x57,0xa3,0x2e,0x53,0x36,0xd9,0xef,0x4c, 0x92,0xdf,0x24,0x79,0x4e,0x2b,0xff,0x81,0x3,0x7,0x62,0xea,0xd4,0xa9,0x7c,0x7b, 0xba,0x4e,0x14,0x39,0x44,0xa3,0x51,0xb8,0x5c,0x2e,0xf8,0xfd,0x7e,0xec,0xd9,0xb3, 0x7,0x2d,0x2d,0x2d,0x5c,0xcb,0x49,0x55,0x55,0x78,0x3c,0x1e,0x2e,0x1,0xee,0xf3, 0xf9,0xb0,0x64,0xc9,0x12,0x94,0x95,0x95,0x51,0x1d,0x42,0x35,0xe3,0x42,0x98,0x1, 0x85,0x8c,0x1c,0xa4,0x49,0x93,0x76,0x25,0x9c,0xab,0x2a,0x74,0xc6,0x44,0x87,0xc, 0x19,0x62,0x5d,0xb5,0x6a,0x15,0xf2,0xf2,0xf2,0xf8,0x36,0x97,0x2e,0x5d,0xc2,0x1b, 0x6f,0xbc,0x81,0x50,0x28,0xc4,0x67,0x1a,0xd0,0x44,0xb9,0x70,0x38,0x8c,0x29,0x53, 0xa6,0xe0,0xae,0xbb,0xee,0xe2,0x8e,0x52,0x4,0x88,0xab,0x15,0x39,0x74,0x76,0xce, 0x74,0xb6,0xa8,0x21,0x1d,0x89,0x8e,0x64,0x37,0x2c,0x16,0xb,0xe,0x1f,0x3e,0x8c, 0xad,0x5b,0xb7,0xea,0xf8,0x15,0x14,0x6d,0x11,0xa3,0x5a,0xd3,0x34,0xb8,0xdd,0x6e, 0x8c,0x1a,0x35,0xa,0x2e,0x97,0xb,0xc1,0x60,0x90,0xa7,0xa0,0x5a,0x5b,0x5b,0x1, 0x24,0xe5,0x38,0x2,0x81,0x0,0x5e,0x7a,0xe9,0x25,0x1c,0x3b,0x76,0x8c,0x3a,0xcb, 0x34,0x31,0xa5,0x64,0x9c,0x36,0x27,0x23,0x7,0x69,0xd2,0xa4,0x75,0x15,0x48,0xe8, 0x3a,0x9a,0xd6,0xae,0x5d,0xcb,0xee,0xbf,0xff,0x7e,0x9e,0x5f,0x7,0x80,0xf2,0xf2, 0x72,0x3c,0xf1,0xc4,0x13,0x5c,0xe6,0x9b,0xe6,0x1f,0x58,0xad,0x56,0xd8,0xed,0x76, 0xec,0xda,0xb5,0xb,0xab,0x57,0xaf,0xe6,0x84,0xb0,0xab,0x70,0xe,0xa6,0x11,0x44, 0xa6,0xce,0xa5,0x74,0x93,0xe4,0xb2,0x45,0x12,0x62,0xc1,0x9a,0x54,0x5a,0x6d,0x36, 0x1b,0x62,0xb1,0x18,0x6,0xc,0x18,0x80,0x5b,0x6f,0xbd,0x15,0x6e,0xb7,0x9b,0xd7, 0x15,0x68,0x44,0x2b,0x45,0x1b,0x56,0xab,0x15,0xad,0xad,0xad,0xd8,0xb3,0x67,0xf, 0x9a,0x9a,0x9a,0xe0,0xf5,0x7a,0x79,0x47,0x98,0xd5,0x6a,0xe5,0xef,0xe1,0x76,0xbb, 0xb1,0x68,0xd1,0x22,0xc,0x1d,0x3a,0xd4,0x62,0x12,0x39,0x98,0x76,0x33,0x49,0x70, 0x90,0x26,0x4d,0xda,0x15,0x89,0x1c,0x8c,0x4a,0xae,0x64,0xaf,0xbd,0xf6,0x1a,0x7b, 0xfc,0xf1,0xc7,0x39,0x7f,0xc0,0x62,0xb1,0xa0,0x7f,0xff,0xfe,0x78,0xf4,0xd1,0x47, 0x79,0x8b,0x26,0xa5,0x4d,0x2c,0x16,0xb,0x3c,0x1e,0xf,0xbe,0xfc,0xf2,0x4b,0xac, 0x5a,0xb5,0x8a,0x4b,0x4b,0x5c,0xf,0x0,0x21,0x82,0x43,0x3a,0xa0,0x48,0x27,0xf9, 0x6d,0xdc,0xd6,0x6e,0xb7,0x23,0x16,0x8b,0x61,0xd0,0xa0,0x41,0x98,0x34,0x69,0x12, 0x27,0xca,0xd1,0x31,0x51,0x3a,0x8e,0x40,0x22,0x10,0x8,0x60,0xef,0xde,0xbd,0x68, 0x6c,0x6c,0x84,0xd3,0xe9,0x84,0xdd,0x6e,0xe7,0xdb,0x52,0x24,0xe6,0x72,0xb9,0x30, 0x6f,0xde,0x3c,0x8c,0x1f,0x3f,0x5e,0x2c,0x44,0x2b,0xe9,0xda,0x5c,0x65,0x5a,0x49, 0x9a,0x34,0x69,0x57,0x22,0x2d,0xa3,0x19,0xb,0x9f,0x64,0x4b,0x96,0x2c,0x51,0x9e, 0x79,0xe6,0x19,0x7e,0x3f,0x91,0x48,0xa0,0xba,0xba,0x1a,0xab,0x56,0xad,0x2,0x63, 0x8c,0xb3,0x82,0xa9,0x20,0xdd,0xd2,0xd2,0x82,0x8a,0x8a,0xa,0x2c,0x5a,0xb4,0x88, 0x3b,0xcd,0xab,0x70,0x3e,0x1d,0xd6,0x62,0x32,0xe,0xd,0x32,0x76,0x2e,0x65,0x1b, 0x24,0x64,0xbc,0xf,0x80,0x3,0xe5,0x57,0x5f,0x7d,0xc5,0xb9,0xd,0x14,0x35,0x98, 0x1d,0x8f,0xcf,0xe7,0x43,0x45,0x45,0x5,0xf2,0xf2,0xf2,0x10,0x8b,0xc5,0x10,0x8b, 0xc5,0x78,0xe4,0x45,0x85,0xea,0x50,0x28,0x84,0xf5,0xeb,0xd7,0x63,0xeb,0xd6,0xad, 0x4c,0x54,0xe1,0x4d,0xa7,0xde,0x2a,0x19,0xd2,0xd2,0xa4,0x49,0xbb,0xd2,0x0,0x91, 0x30,0xac,0xc2,0xb9,0xcc,0xc6,0xb3,0xcf,0x3e,0xcb,0x3b,0x6b,0xf6,0xed,0xdb,0x7, 0xbb,0xdd,0x8e,0x85,0xb,0x17,0xf2,0x54,0xa,0xad,0xba,0x23,0x91,0x8,0x86,0xd, 0x1b,0x86,0x87,0x1e,0x7a,0x8,0xef,0xbc,0xf3,0xe,0x22,0x91,0xc8,0x55,0x1,0x8, 0xd1,0xa8,0xb5,0x94,0xc0,0x4a,0xd4,0x84,0x12,0x19,0xd6,0xe2,0xe3,0x46,0xc6,0xb5, 0x8,0x3c,0xc6,0x7d,0xdb,0x6c,0x36,0x2e,0xe7,0x4d,0x11,0x85,0xd3,0xe9,0xc4,0xe1, 0xc3,0x87,0xa1,0x69,0x1a,0x27,0xca,0x19,0xf5,0xa8,0x28,0xe5,0x94,0x9b,0x9b,0x8b, 0xd1,0xa3,0x47,0x73,0xa9,0xd,0xa7,0xd3,0x89,0x58,0x2c,0x6,0xab,0xd5,0xca,0x3b, 0xa2,0x82,0xc1,0x20,0x36,0x6d,0xda,0x4,0xb7,0xdb,0x2d,0xb2,0xa9,0x65,0xe4,0x20, 0x4d,0x9a,0xb4,0xae,0x7,0x8,0x93,0xc7,0x18,0x0,0x3c,0xf5,0xd4,0x53,0xca,0xe3, 0x8f,0x3f,0xce,0x9d,0x29,0x63,0xc,0x3b,0x77,0xee,0xc4,0xc6,0x8d,0x1b,0x79,0xeb, 0x26,0xb1,0x88,0x19,0x63,0x88,0x44,0x22,0x18,0x32,0x64,0x8,0x1e,0x7a,0xe8,0x21, 0xb8,0xdd,0x6e,0x9d,0x23,0x26,0xc7,0xdb,0x1d,0x0,0x61,0xe4,0x3b,0x18,0x5b,0x5b, 0xc5,0x3f,0xb3,0x28,0x21,0x5b,0x41,0x9a,0xa2,0x5,0x63,0xd4,0x41,0x4e,0xdf,0x62, 0xb1,0xe0,0xc8,0x91,0x23,0xf8,0xfc,0x5f,0x5a,0x92,0x99,0x0,0x0,0x15,0xc2,0x49, 0x44,0x41,0x54,0xf3,0xcf,0xf9,0x7d,0x71,0xc8,0x10,0x1d,0x67,0x34,0x1a,0x45,0x5e, 0x5e,0x5e,0x3b,0x1e,0x84,0x38,0x6b,0x82,0x6e,0xd7,0xac,0x59,0x83,0x13,0x27,0x4e, 0x30,0xf1,0xf3,0x32,0x72,0x20,0x24,0x38,0x48,0x93,0x26,0xad,0x5b,0x4c,0x51,0x14, 0x65,0xe9,0xd2,0xa5,0xee,0xfb,0xee,0xbb,0x4f,0xb7,0xf2,0xfd,0xf4,0xd3,0x4f,0xb1, 0x69,0xd3,0x26,0x3e,0xe0,0x46,0x64,0xe,0xd3,0x98,0xcd,0x7,0x1e,0x78,0x80,0x33, 0x82,0x8d,0x2b,0xf8,0xee,0x4e,0x33,0x75,0x76,0x4e,0x75,0x47,0x3b,0x9d,0xd2,0xcd, 0xa7,0x26,0x40,0x38,0x7e,0xfc,0x38,0x76,0xec,0xd8,0xc1,0x1d,0x3e,0x75,0x33,0xd1, 0xf3,0x89,0x44,0x2,0xa1,0x50,0x8,0x5e,0xaf,0x17,0x63,0xc7,0x8e,0x45,0x4e,0x4e, 0xe,0x2,0x81,0x0,0x7,0x11,0x8a,0xca,0x42,0xa1,0x10,0xe2,0xf1,0x38,0xde,0x79, 0xe7,0x1d,0x28,0x8a,0xe2,0x11,0xa2,0x3b,0x26,0xd6,0x8b,0x24,0x38,0x48,0x93,0x26, 0xad,0x5b,0x80,0x21,0xe5,0x78,0xc2,0xab,0x56,0xad,0xf2,0x4d,0x9f,0x3e,0x5d,0x97, 0xba,0xf9,0xf8,0xe3,0x8f,0xb1,0x79,0xf3,0x66,0xe4,0xe4,0xe4,0xe8,0x56,0xe6,0x94, 0x62,0x1a,0x34,0x68,0x10,0x1e,0x7e,0xf8,0x61,0x2e,0x5b,0x4d,0x4e,0xb1,0xbb,0x22, 0x8,0x31,0x8a,0xb8,0x9c,0xf6,0x56,0x33,0xe2,0x5b,0xa6,0xc9,0x73,0x66,0x8f,0x31, 0xc6,0xf0,0xf5,0xd7,0x5f,0x63,0xdf,0xbe,0x7d,0xbc,0xfe,0x10,0x8b,0xc5,0x0,0x40, 0x37,0x72,0x54,0x51,0x14,0xb8,0x5c,0x2e,0x8c,0x1a,0x35,0xa,0x5,0x5,0x5,0x7c, 0x60,0x10,0x9,0x20,0x12,0x43,0xbd,0xbe,0xbe,0x1e,0xef,0xbe,0xfb,0xae,0x3f,0xcd, 0xb9,0x32,0x9,0xe,0xd2,0xa4,0x49,0xeb,0xe,0xc7,0xca,0x84,0x9e,0xfa,0xc0,0xf2, 0xe5,0xcb,0x9b,0x46,0x8f,0x1e,0xd,0x20,0x29,0xa7,0xc1,0x18,0xc3,0xe6,0xcd,0x9b, 0xb1,0x79,0xf3,0x66,0x38,0x9d,0x4e,0x9e,0x5b,0x8f,0x46,0xa3,0x88,0xc7,0xe3,0xf0, 0xfb,0xfd,0xb8,0xe5,0x96,0x5b,0xf0,0xd0,0x43,0xf,0xc1,0xe3,0xf1,0x64,0x9d,0xa7, 0xd0,0x55,0x91,0x43,0x47,0xd8,0xd2,0x99,0x40,0x24,0xdb,0x8,0xd2,0x74,0x3c,0x8, 0x71,0x40,0xd2,0xbe,0x7d,0xfb,0x70,0xf6,0xec,0x59,0x5e,0x97,0x10,0x9f,0x4f,0x24, 0x12,0x1c,0x28,0x7c,0x3e,0x1f,0x46,0x8f,0x1e,0x8d,0xdc,0xdc,0x5c,0x3e,0x8f,0x9a, 0xc8,0x87,0xa4,0x44,0xfb,0xc5,0x17,0x5f,0x50,0x7a,0x49,0x92,0xe0,0xa4,0x49,0x93, 0x76,0xd5,0x0,0x82,0xe6,0x1e,0x5b,0x4a,0x4b,0x4b,0xf3,0xd7,0xae,0x5d,0x8b,0xbe, 0x7d,0xfb,0xf2,0x8,0x40,0x55,0x55,0x7c,0xf8,0xe1,0x87,0xd8,0xbe,0x7d,0x3b,0x7, 0xd,0x1a,0x90,0x3,0x24,0x65,0x38,0x6e,0xb9,0xe5,0x16,0x3c,0xf8,0xe0,0x83,0xf0, 0x78,0x3c,0xdd,0xaa,0xc1,0x94,0xe,0x28,0x3a,0x22,0xa9,0xd1,0xd9,0x94,0x92,0x38, 0x93,0x5a,0xfc,0xa3,0x31,0xa1,0x81,0x40,0x0,0xbb,0x76,0xed,0x42,0x24,0x12,0x31, 0xad,0x7f,0x0,0xe0,0x33,0x21,0x72,0x73,0x73,0x31,0x6c,0xd8,0x30,0x9d,0xd6,0x15, 0xcd,0xb6,0x26,0x21,0xc4,0x4f,0x3e,0xf9,0xc4,0x74,0xde,0xb4,0x4,0x7,0x69,0xd2, 0xa4,0x75,0x47,0x5a,0x89,0xeb,0xfa,0xa4,0x64,0xa4,0x2d,0xbd,0x7b,0xf7,0x56,0xd7, 0xad,0x5b,0x87,0x1e,0x3d,0x7a,0x0,0x68,0xeb,0xfe,0x59,0xbb,0x76,0x2d,0xb6,0x6f, 0xdf,0xce,0x53,0x48,0x4,0x14,0xc4,0xf8,0xed,0xd3,0xa7,0xf,0x1e,0x7c,0xf0,0x41, 0xf8,0x7c,0xbe,0x6e,0x9d,0x5,0x91,0x29,0x92,0xc8,0x34,0x52,0x34,0x5d,0x91,0x3a, 0x1b,0xab,0x5a,0xdc,0x17,0x75,0x30,0x45,0x22,0x11,0x58,0x2c,0x16,0x9c,0x39,0x73, 0x6,0xc7,0x8f,0x1f,0xe7,0xc5,0x69,0x8a,0x18,0x28,0xa,0xa3,0xed,0x2,0x81,0x0, 0x8a,0x8b,0x8b,0x51,0x5c,0x5c,0xcc,0x59,0xd4,0xe2,0xf0,0x21,0xc6,0x18,0xaa,0xaa, 0xaa,0x70,0xfa,0xf4,0x69,0x51,0x8a,0x5d,0x91,0xe0,0x20,0x4d,0x9a,0xb4,0xee,0x72, 0xa6,0xa2,0xf3,0xb1,0xa4,0xe6,0x1d,0xb3,0xe1,0xc3,0x87,0x5b,0xde,0x7d,0xf7,0x5d, 0x78,0xbd,0x5e,0x4e,0xda,0x62,0x8c,0x61,0xc3,0x86,0xd,0xd8,0xb6,0x6d,0x1b,0x67, 0x1,0x13,0xf,0x42,0x55,0x55,0x4,0x83,0x41,0xdc,0x7c,0xf3,0xcd,0x58,0xb4,0x68, 0x11,0xdc,0x6e,0xf7,0x55,0xe7,0x41,0x64,0x93,0xdd,0x30,0x9b,0x47,0xdd,0x51,0x1e, 0x84,0xd9,0x6b,0x28,0x32,0xf8,0xea,0xab,0xaf,0x78,0xb7,0x12,0xa5,0x97,0x48,0x86, 0xc3,0xe9,0x74,0x22,0x10,0x8,0xf0,0xda,0x4c,0x69,0x69,0x29,0x7f,0x6d,0x38,0x1c, 0x6,0x0,0x4,0x83,0x41,0x1e,0x45,0xec,0xdd,0xbb,0x57,0x97,0x2,0x94,0xe0,0x20, 0x4d,0x9a,0xb4,0xee,0x8c,0x1e,0x14,0x1a,0x37,0x4a,0xf7,0x19,0x63,0xda,0xd4,0xa9, 0x53,0x95,0x65,0xcb,0x96,0xf1,0x95,0x2c,0x45,0x11,0x1b,0x37,0x6e,0xc4,0xee,0xdd, 0xbb,0x79,0xca,0x89,0x1c,0x24,0x39,0xb8,0xde,0xbd,0x7b,0xe3,0x91,0x47,0x1e,0x81, 0xd7,0xeb,0xbd,0x5a,0x80,0xd7,0xee,0x8f,0x1e,0xef,0x6c,0x1a,0xca,0xac,0xe5,0xd5, 0x8,0x1a,0xd4,0x71,0x14,0xe,0x87,0x61,0xb3,0xd9,0x50,0x5f,0x5f,0x8f,0xea,0xea, 0x6a,0xae,0xda,0x4a,0x7c,0x6,0x8a,0x22,0x88,0x75,0x4e,0x24,0x39,0xe2,0x92,0x50, 0xed,0x81,0x40,0x17,0x0,0xe,0x1d,0x3a,0x4,0x23,0x79,0x51,0x82,0x83,0x34,0x69, 0xd2,0xba,0xcb,0x99,0xea,0xa,0x9f,0xe2,0xff,0xdf,0xf9,0xce,0x77,0xd4,0x97,0x5f, 0x7e,0x99,0x3,0x1,0x1,0xc4,0x9a,0x35,0x6b,0xb0,0x6b,0xd7,0x2e,0x9e,0x62,0x22, 0x3d,0x26,0xc6,0x18,0x2,0x81,0x0,0x4a,0x4b,0x4b,0xf1,0xe0,0x83,0xf,0xc2,0xeb, 0xf5,0xb6,0xe3,0x3f,0xd0,0x6d,0x57,0x46,0x16,0x66,0x72,0xdd,0xe9,0x66,0x3d,0x18, 0x3b,0x8f,0xd2,0x45,0x18,0x22,0x5f,0x82,0x52,0x4a,0x62,0xea,0x48,0x55,0x55,0x44, 0xa3,0x51,0xc4,0x62,0x31,0x9c,0x3a,0x75,0x8a,0x47,0x4,0xf4,0x1c,0x5d,0x3b,0xb1, 0x7e,0x61,0xb3,0xd9,0x60,0xb3,0xd9,0x10,0x8d,0x46,0x79,0x47,0x53,0x38,0x1c,0xe6, 0x6d,0xae,0x97,0x2e,0x5d,0x2,0x0,0x8f,0x38,0xdf,0x41,0x82,0x83,0x34,0x69,0xd2, 0xae,0x9,0xe0,0x78,0xec,0xb1,0xc7,0x1c,0xff,0xfb,0xbf,0xff,0xab,0x9b,0xdf,0xac, 0x28,0xa,0xd6,0xad,0x5b,0x87,0x5d,0xbb,0x76,0xe9,0x46,0x67,0x92,0x3,0xc,0x85, 0x42,0x28,0x2e,0x2e,0xc6,0xc3,0xf,0x3f,0x8c,0xfc,0xfc,0x7c,0xfe,0x3a,0x22,0xd9, 0x91,0xf2,0x6b,0x77,0x46,0x12,0x46,0x47,0x9f,0x8d,0x17,0x91,0x2e,0xed,0x24,0x3e, 0x4f,0x8e,0x5e,0x51,0x14,0xee,0xe0,0x1,0xe0,0xc2,0x85,0xb,0x8,0x4,0x2,0x48, 0x24,0x12,0x9c,0x3,0x22,0xb6,0xf8,0x8a,0x92,0xdf,0xf4,0x7c,0x34,0x1a,0x45,0x28, 0x14,0x82,0xaa,0xaa,0xbc,0x70,0xed,0xf7,0xfb,0x51,0x53,0x53,0xd3,0x4c,0xb4,0x69, 0x49,0x82,0x93,0x26,0x4d,0xda,0xb5,0x92,0x72,0x52,0x19,0x63,0xd1,0x7f,0xfa,0xa7, 0x7f,0xb2,0xfd,0xfb,0xbf,0xff,0x7b,0x3b,0x89,0xa,0x8a,0x20,0xa8,0xbf,0x9f,0x88, 0x5f,0x40,0x32,0x77,0x5e,0x50,0x50,0x80,0xf9,0xf3,0xe7,0xa3,0xa8,0xa8,0x88,0x3b, 0x55,0x45,0x51,0x78,0x2a,0xa6,0x3b,0x81,0xe1,0x9b,0x12,0xe0,0xb2,0x71,0x22,0x88, 0x0,0x7,0x0,0x8d,0x8d,0x8d,0x5c,0xa2,0x9b,0x9e,0xa3,0xba,0xd,0x45,0x58,0x4, 0x2c,0x14,0x25,0x50,0x7,0x18,0x75,0x2e,0x51,0xbd,0x82,0x38,0x13,0x14,0xd1,0x49, 0x6d,0x25,0x69,0xd2,0xa4,0x5d,0xb,0x91,0x83,0x96,0x2a,0x54,0xc7,0x1,0x28,0xf5, 0xf5,0xf5,0x6c,0xe9,0xd2,0xa5,0x3a,0xad,0xa2,0xd,0x1b,0x36,0x20,0x1a,0x8d,0x62, 0xec,0xd8,0xb1,0x9c,0x1c,0x47,0xd1,0x41,0x30,0x18,0x44,0x51,0x51,0x11,0xee,0xbd, 0xf7,0x5e,0xac,0x5e,0xbd,0x1a,0x4d,0x4d,0x4d,0xba,0xfa,0x45,0x77,0x45,0xe,0x64, 0x4,0x4e,0x94,0xd6,0x12,0xef,0x9b,0x0,0x63,0xbb,0xd7,0x9b,0x19,0xa5,0x93,0xec, 0x76,0x3b,0x77,0xea,0x8a,0xa2,0xa0,0xa5,0xa5,0x5,0xa5,0xa5,0xa5,0x8,0x87,0xc3, 0x9c,0x5,0x6d,0x4c,0xab,0x51,0x2b,0x2c,0xb1,0xa8,0x49,0xc7,0x49,0xbc,0x46,0x29, 0xd0,0x50,0x64,0x41,0x5a,0x9a,0x34,0x69,0xd7,0x1a,0x40,0xf0,0x8e,0xa6,0xa5,0x4b, 0x97,0x3a,0x16,0x2e,0x5c,0xa8,0x73,0x70,0xb1,0x58,0xc,0x9b,0x36,0x6d,0xc2,0xae, 0x5d,0xbb,0x78,0x17,0x13,0x81,0x4,0xc9,0x42,0xe4,0xe7,0xe7,0x63,0xc1,0x82,0x5, 0x28,0x28,0x28,0xe0,0xce,0xf3,0x2a,0x9c,0x47,0x87,0xe5,0x35,0x3a,0xd2,0xa9,0x44, 0xc5,0x68,0x31,0x3a,0xa0,0x3a,0x84,0xa6,0x69,0x8,0x6,0x83,0xfc,0x7f,0x0,0xba, 0xe,0x26,0x8a,0x18,0x9a,0x9b,0x9b,0x71,0xe9,0xd2,0x25,0x58,0xad,0xd6,0x76,0x5a, 0x50,0x0,0xe0,0x70,0x38,0x50,0x5e,0x5e,0x9e,0x2b,0xa6,0xf9,0x24,0x38,0x48,0x93, 0x26,0xed,0x9a,0x49,0x2d,0x9,0xce,0x29,0xfa,0xde,0x7b,0xef,0xe5,0x4d,0x9b,0x36, 0x4d,0xb7,0xaa,0x8e,0xc7,0xe3,0xd8,0xbc,0x79,0x33,0x76,0xee,0xdc,0xc9,0xd3,0x4a, 0x62,0xae,0x3d,0x1a,0x8d,0x22,0x27,0x27,0x7,0x77,0xdf,0x7d,0x37,0xa,0xb,0xb, 0x71,0xb5,0xe6,0xd5,0x64,0x12,0xe9,0xeb,0xc,0x59,0xce,0x58,0xd0,0xa6,0x82,0x3c, 0xbd,0x96,0x8a,0xd0,0x4,0x2,0xf4,0x47,0x6c,0x69,0x0,0xb0,0x5a,0xad,0xa8,0xa9, 0xa9,0xe1,0x32,0xde,0x94,0x5e,0x22,0x52,0x5d,0x34,0x1a,0x45,0x9f,0x3e,0x7d,0x0, 0x20,0x28,0x7c,0x16,0x16,0x9,0xe,0xd2,0xa4,0x49,0xbb,0x16,0x80,0x41,0x21,0x6, 0xb5,0x40,0x98,0x6b,0x7e,0xf3,0xcd,0x37,0xdf,0x1f,0x39,0x72,0xa4,0xce,0xc9,0xc7, 0x62,0x31,0xfc,0xe5,0x2f,0x7f,0xc1,0xae,0x5d,0xbb,0x78,0xbb,0x26,0x39,0xe4,0x78, 0x3c,0x8e,0x60,0x30,0x88,0x9c,0x9c,0x1c,0xcc,0x9e,0x3d,0x1b,0xf9,0xf9,0xf9,0x1c, 0x44,0xae,0x66,0x4,0x91,0xd,0x10,0x32,0x49,0x67,0x88,0xdc,0x6,0x71,0x1f,0x54, 0x4f,0xf1,0xf9,0x7c,0xfc,0x3d,0xa9,0x1e,0x41,0x60,0xa1,0xaa,0x2a,0xea,0xea,0xea, 0x50,0x55,0x55,0xc5,0x5b,0x57,0x69,0x1b,0xaa,0x3b,0xc4,0xe3,0x71,0xcc,0x98,0x31, 0x3,0x8c,0xb1,0xb8,0xd0,0x41,0xa6,0x49,0x70,0x90,0x26,0x4d,0xda,0xb5,0x90,0x52, 0xa2,0xe1,0x33,0x8c,0x31,0x96,0x20,0x80,0xe8,0xdd,0xbb,0xf7,0xc2,0xf5,0xeb,0xd7, 0xd3,0xca,0x96,0x17,0x97,0xe3,0xf1,0x38,0xfe,0xf2,0x97,0xbf,0x60,0xef,0xde,0xbd, 0x7c,0x58,0x10,0x29,0x93,0x6a,0x9a,0x86,0x70,0x38,0xc,0x8f,0xc7,0x83,0xd9,0xb3, 0x67,0x23,0x27,0x27,0xe7,0x6a,0x9e,0x57,0x3b,0xe,0x44,0x47,0x14,0x5e,0xcd,0x3a, 0x9f,0x68,0x88,0xf,0x0,0xde,0x75,0xe4,0x74,0x3a,0xe1,0xf5,0x7a,0x79,0x34,0x41, 0x1d,0x4a,0x4,0x1c,0xa1,0x50,0x8,0x9f,0x7f,0xfe,0x39,0xef,0x68,0xa2,0x6b,0x47, 0xc5,0xe8,0x78,0x3c,0x8e,0x69,0xd3,0xa6,0x61,0xd4,0xa8,0x51,0xbc,0x41,0x89,0xea, 0xe,0x12,0x1c,0xa4,0x49,0x93,0x76,0x2d,0x82,0x45,0x82,0x6e,0x7b,0xf5,0xea,0xa5, 0xac,0x5f,0xbf,0x1e,0x85,0x85,0x85,0xba,0x51,0x99,0x89,0x44,0x2,0x9b,0x37,0x6f, 0xc6,0xfe,0xfd,0xfb,0xe1,0x72,0xb9,0xb8,0xf3,0xa3,0xd5,0x76,0x24,0x12,0x81,0xcb, 0xe5,0xc2,0x1d,0x77,0xdc,0x81,0x82,0x82,0x2,0xbe,0xef,0x74,0x7c,0x88,0xee,0x48, 0x31,0x65,0x62,0x51,0xa7,0xab,0x51,0x88,0x33,0x1f,0x8,0x24,0x28,0xa5,0xd4,0xbb, 0x77,0x6f,0x78,0xbd,0x5e,0x1e,0xd,0x90,0xc3,0x77,0x38,0x1c,0x8,0x87,0xc3,0xf8, 0xe4,0x93,0x4f,0x70,0xf2,0xe4,0x49,0xae,0xc4,0x6a,0xec,0x7a,0xaa,0xa8,0xa8,0xc0, 0x8f,0x7e,0xf4,0x23,0x67,0xea,0x38,0x35,0x11,0xa8,0x25,0x38,0x48,0x93,0x26,0xed, 0x9a,0xb7,0xe1,0xc3,0x87,0x5b,0xde,0x7f,0xff,0x7d,0xf8,0x7c,0x3e,0xee,0x40,0x89, 0xcb,0xb0,0x79,0xf3,0x66,0xec,0xde,0xbd,0x9b,0x47,0xe,0xe4,0xf0,0x49,0x5c,0xce, 0xe5,0x72,0x61,0xea,0xd4,0xa9,0x28,0x2c,0x2c,0xe4,0xe,0x56,0x48,0x67,0x75,0xbb, 0xaa,0x6b,0x26,0xb2,0x9c,0xd9,0x60,0x20,0xb1,0x0,0x4d,0xc7,0x1b,0x8,0x4,0x90, 0x9b,0x9b,0x8b,0xf1,0xe3,0xc7,0xf3,0x3a,0x2,0xfd,0x59,0x2c,0x16,0xf8,0xfd,0x7e, 0x6c,0xda,0xb4,0x9,0xc7,0x8f,0x1f,0xe7,0xf3,0xa8,0x8d,0x6d,0xad,0x15,0x15,0x15, 0xf8,0xcf,0xff,0xfc,0x4f,0x27,0x63,0xcc,0x74,0xcc,0x9e,0x4,0x7,0x69,0xd2,0xa4, 0x5d,0xf,0x91,0x84,0x76,0xeb,0xad,0xb7,0x2a,0xcb,0x96,0x2d,0xe3,0x7a,0x4a,0xe2, 0x8a,0x7b,0xeb,0xd6,0xad,0xd8,0xbf,0x7f,0x3f,0xec,0x76,0xbb,0x2e,0x4f,0xf,0x24, 0xe7,0x18,0x38,0x9d,0x4e,0x4c,0x9a,0x34,0x89,0x47,0x10,0xe4,0x64,0xc9,0x99,0x76, 0x67,0x8a,0x29,0x9b,0xcc,0x77,0xba,0xa8,0x82,0xa2,0x6,0x4a,0x19,0xdd,0x71,0xc7, 0x1d,0x70,0xbb,0xdd,0xfc,0x31,0x3a,0xa7,0x78,0x3c,0x8e,0x8f,0x3e,0xfa,0x8,0xa7, 0x4e,0x9d,0xd2,0xb5,0xab,0x12,0xf7,0x1,0x0,0xc6,0x8e,0x1d,0x8b,0x9f,0xff,0xfc, 0xe7,0x1e,0xc6,0x58,0x44,0x49,0x13,0x3a,0x49,0x70,0x90,0x26,0x4d,0xda,0x75,0x63, 0xf3,0xe6,0xcd,0x53,0x5e,0x7c,0xf1,0x45,0x1d,0x8b,0x9a,0x1c,0xe2,0x67,0x9f,0x7d, 0x86,0xaf,0xbf,0xfe,0x5a,0x57,0xa4,0xa6,0x54,0xa,0x1,0xc4,0x88,0x11,0x23,0x78, 0x9b,0x2b,0x0,0x5d,0xb4,0x71,0x35,0x0,0x22,0x5b,0x9d,0xc1,0x58,0x80,0x26,0x9e, 0xc2,0xb4,0x69,0xd3,0x50,0x5e,0x5e,0x2e,0x12,0xd7,0xf8,0xfc,0xe9,0x35,0x6b,0xd6, 0xe0,0xc8,0x91,0x23,0xb0,0x5a,0xad,0x5c,0xc9,0x95,0x6a,0xc,0x9a,0xa6,0x61,0xf4, 0xe8,0xd1,0xf8,0x9f,0xff,0xf9,0x1f,0x17,0x63,0x2c,0x98,0xe9,0x58,0x25,0x38,0x48, 0x93,0x26,0xed,0xba,0x30,0x2a,0x98,0x3e,0xf6,0xd8,0x63,0x96,0xdf,0xff,0xfe,0xf7, 0x1c,0x1c,0x80,0x36,0xa2,0xd7,0xa7,0x9f,0x7e,0x8a,0xaa,0xaa,0x2a,0xae,0x23,0x24, 0xae,0xa8,0xfd,0x7e,0x3f,0x3c,0x1e,0xf,0x86,0xf,0x1f,0xce,0xc5,0xfa,0x88,0x4c, 0xd6,0xcd,0x51,0x10,0xbf,0xed,0x4c,0xf7,0x12,0x63,0xc,0xc1,0x60,0x10,0xa3,0x47, 0x8f,0xc6,0xb8,0x71,0xe3,0xf8,0x3c,0x87,0x78,0x3c,0xe,0xbb,0xdd,0x8e,0x40,0x20, 0x80,0xf,0x3e,0xf8,0x0,0x35,0x35,0x35,0x7c,0x58,0x52,0x30,0x18,0xe4,0xc4,0xb8, 0x58,0x2c,0x86,0x89,0x13,0x27,0xe2,0xd7,0xbf,0xfe,0xb5,0x97,0x31,0x16,0x26,0x95, 0xc,0x96,0x26,0xaf,0x26,0xc1,0x41,0x9a,0x34,0x69,0xd7,0x4d,0x6a,0x89,0x70,0xe2, 0x1f,0xfe,0xe1,0x1f,0x94,0xff,0xf8,0x8f,0xff,0xe0,0x73,0x9,0xc4,0x3a,0xc2,0xb6, 0x6d,0xdb,0x70,0xe8,0xd0,0x21,0x2e,0xd6,0x47,0x2b,0x6e,0x20,0x29,0x4e,0x67,0xb5, 0x5a,0x31,0x6c,0xd8,0x30,0xde,0xc5,0x74,0xb5,0x89,0x72,0x74,0xec,0xd9,0xba,0x97, 0x42,0xa1,0x10,0x6,0xd,0x1a,0x84,0x3b,0xee,0xb8,0x83,0x8b,0xe6,0x45,0x22,0x11, 0x38,0x1c,0xe,0x4,0x2,0x1,0x6c,0xdc,0xb8,0x11,0x87,0xf,0x1f,0xe6,0xd1,0x10, 0x1,0x23,0xa5,0x9d,0x26,0x4c,0x98,0x80,0x5f,0xff,0xfa,0xd7,0x3e,0xc6,0x58,0x20, 0xc5,0x46,0x67,0xc2,0x0,0xa6,0x76,0x26,0xe5,0x33,0xa4,0x49,0x93,0x76,0x3d,0x45, 0xf,0xd6,0xd4,0xb0,0x20,0x95,0x31,0xa6,0x34,0x36,0x36,0xb2,0x17,0x5f,0x7c,0x51, 0x97,0x62,0x52,0x55,0x15,0x5f,0x7e,0xf9,0x25,0xa2,0xd1,0x28,0xfa,0xf7,0xef,0xcf, 0x19,0xd4,0xe2,0x8,0x4d,0xbb,0xdd,0x8e,0x1,0x3,0x6,0xe0,0xd0,0xa1,0x43,0x7c, 0xc6,0xf2,0xd5,0x0,0x8,0xb3,0x68,0x82,0x4c,0x2c,0xba,0xc7,0xe3,0x71,0x14,0x14, 0x14,0xe0,0xce,0x3b,0xef,0x84,0xc5,0x62,0xe1,0xb2,0xdd,0x2e,0x97,0xb,0x7e,0xbf, 0x1f,0x7f,0xfe,0xf3,0x9f,0x51,0x5d,0x5d,0xd,0xa7,0xd3,0xc9,0x3b,0x93,0x14,0x45, 0xe1,0xff,0x4f,0x9a,0x34,0x9,0xbf,0xfb,0xdd,0xef,0x1c,0x8c,0xb1,0x68,0xea,0xda, 0x25,0xa8,0x65,0x55,0x46,0xe,0xd2,0xa4,0x49,0xbb,0x9e,0x41,0x81,0x66,0x41,0xc4, 0xc9,0x9f,0x2,0xc0,0x8b,0x2f,0xbe,0xe8,0xb8,0xef,0xbe,0xfb,0x74,0x8e,0x95,0xd2, 0x30,0x7,0xf,0x1e,0xc4,0xe1,0xc3,0x87,0x61,0xb5,0x5a,0x75,0x3c,0x0,0xc6,0x18, 0x67,0x7,0xf7,0xeb,0xd7,0xf,0x6e,0xb7,0xfb,0x6a,0x46,0x43,0x1d,0x9a,0x39,0x6d, 0xb7,0xdb,0x71,0xcf,0x3d,0xf7,0x20,0x37,0x37,0x17,0xe1,0x70,0x18,0x56,0xab,0x15, 0xaa,0xaa,0x22,0x10,0x8,0x60,0xc3,0x86,0xd,0x38,0x7a,0xf4,0x28,0x6c,0x36,0x1b, 0xd7,0x99,0xa2,0x34,0x5b,0x22,0x91,0xc0,0xd4,0xa9,0x53,0xf1,0xc2,0xb,0x2f,0xb8, 0x1,0xe8,0xae,0x1d,0x5d,0xd7,0x74,0xc7,0x26,0xc1,0x41,0x9a,0x34,0x69,0xd7,0x4b, 0x5a,0x89,0x91,0x43,0x13,0x56,0xbb,0x89,0x55,0xab,0x56,0xb9,0x6e,0xbf,0xfd,0x76, 0x5d,0x8a,0x88,0xd2,0x29,0x7,0xf,0x1e,0xe4,0x7d,0xfe,0x62,0x2b,0x27,0xfd,0x59, 0x2c,0x16,0xf4,0xee,0xdd,0x1b,0x4e,0xa7,0xb3,0x5d,0x7a,0x89,0x8,0x65,0xdd,0x1, 0x10,0x62,0x6a,0x89,0xd2,0x48,0x0,0xf8,0xa4,0xb6,0x3b,0xef,0xbc,0x13,0x7d,0xfb, 0xf6,0xe5,0xa3,0x3e,0x2d,0x16,0xb,0x82,0xc1,0x20,0xd6,0xac,0x59,0x83,0x63,0xc7, 0x8e,0xf1,0x2e,0xad,0x58,0x2c,0xc6,0xa3,0x5,0x22,0xb8,0xbd,0xf8,0xe2,0x8b,0x5e, 0xc6,0x58,0xc8,0xc8,0x63,0xc8,0x14,0x35,0x48,0x70,0x90,0x26,0x4d,0xda,0x75,0x5, 0xc,0x26,0x8f,0x27,0x0,0xc4,0xde,0x78,0xe3,0xd,0x9d,0xcc,0x6,0xc9,0x43,0x28, 0x8a,0x82,0xfd,0xfb,0xf7,0xe3,0xe4,0xc9,0x93,0xfc,0x71,0x9a,0x7d,0x20,0x72,0x7, 0xca,0xca,0xca,0xe0,0x70,0x38,0x92,0x4e,0x31,0x5,0x8,0x22,0xb3,0xb9,0xab,0x4d, 0x9c,0x74,0x47,0x20,0x15,0x8d,0x46,0x11,0x89,0x44,0x30,0x75,0xea,0x54,0x54,0x54, 0x54,0xc0,0xef,0xf7,0x3,0x48,0x6a,0x25,0xf9,0xfd,0x7e,0xac,0x5f,0xbf,0x1e,0xc7, 0x8e,0x1d,0x6b,0xa7,0xad,0x44,0x0,0x32,0x7d,0xfa,0x74,0xfc,0xf1,0x8f,0x7f,0x74, 0x33,0xc6,0x2e,0x2b,0x6f,0xa6,0x5c,0x2d,0x61,0x2a,0x69,0xd2,0xa4,0x49,0xbb,0x5c, 0x33,0x44,0xf,0x0,0x80,0x53,0xa7,0x4e,0xb1,0xca,0xca,0x4a,0xd4,0xd4,0xd4,0xe8, 0x9c,0x3a,0x45,0x0,0x7d,0xfa,0xf4,0x41,0x49,0x49,0x9,0x67,0x4f,0xd3,0x4a,0x9b, 0xc0,0xa2,0xa5,0xa5,0x5,0x8d,0x8d,0x8d,0x8,0x87,0xc3,0xdd,0x46,0x8e,0x33,0x2, 0x4,0xa0,0x97,0xfb,0x1e,0x3e,0x7c,0x38,0x16,0x2c,0x58,0xc0,0xa5,0xcb,0x9d,0x4e, 0x27,0x82,0xc1,0x20,0xd6,0xae,0x5d,0x8b,0xe3,0xc7,0x8f,0xc3,0xe1,0x70,0xe8,0x14, 0x6a,0xa9,0xce,0x70,0xc7,0x1d,0x77,0xe0,0x8d,0x37,0xde,0xf0,0x5e,0x2e,0x30,0xc8, 0xc8,0x41,0x9a,0x34,0x69,0xd7,0x6d,0x24,0x21,0xe6,0xcb,0x15,0x45,0xb1,0x94,0x97, 0x97,0x2b,0x1f,0x7c,0xf0,0x1,0xca,0xca,0xca,0x74,0xa0,0x40,0xd1,0xc2,0xa9,0x53, 0xa7,0x70,0xf1,0xe2,0x45,0x5e,0x7f,0x10,0xc9,0x72,0x81,0x40,0x0,0x2e,0x97,0xb, 0x39,0x39,0x39,0xb0,0xd9,0x6c,0x57,0x45,0xcd,0x55,0x94,0xdd,0x56,0x14,0x5,0x25, 0x25,0x25,0x98,0x35,0x6b,0x16,0x9f,0xe3,0xe0,0x70,0x38,0xd0,0xda,0xda,0x8a,0xb5, 0x6b,0xd7,0xf2,0xae,0x24,0x9a,0x74,0x47,0xb3,0x2d,0x34,0x4d,0x43,0x65,0x65,0x25, 0xde,0x78,0xe3,0xd,0xf,0x80,0x10,0x5d,0x1b,0x9,0xe,0xd2,0xa4,0x49,0xfb,0x56, 0x47,0xb,0x66,0x0,0x91,0x8a,0x22,0x12,0x0,0x30,0x74,0xe8,0x50,0xcb,0xdb,0x6f, 0xbf,0x8d,0x9c,0x9c,0x1c,0x5d,0x2e,0x9f,0x52,0x2f,0x27,0x4e,0x9c,0x40,0x5d,0x5d, 0x1d,0x0,0xbd,0x82,0x29,0x0,0x5e,0xa4,0xf6,0xf9,0x7c,0x9c,0x35,0xdd,0x5d,0x33, 0x21,0x54,0x55,0xd5,0x49,0x90,0x5b,0xad,0x56,0xcc,0x9f,0x3f,0x1f,0xb9,0xb9,0xb9, 0x5c,0x60,0x2f,0x10,0x8,0x60,0xf5,0xea,0xd5,0x5c,0x61,0xd5,0x6a,0xb5,0xf2,0x1a, 0xa,0x81,0xcb,0xed,0xb7,0xdf,0x8e,0xb7,0xde,0x7a,0xcb,0x97,0x2,0x6,0xaa,0x2d, 0x5c,0x16,0xcb,0x4f,0x82,0x83,0x34,0x69,0xd2,0xae,0xcb,0x68,0x81,0x1e,0x13,0xa, 0xd5,0x36,0xc6,0x98,0x76,0xdb,0x6d,0xb7,0xa9,0x7f,0xfa,0xd3,0x9f,0xf8,0xb4,0x33, 0x72,0x9c,0x74,0x7b,0xe1,0xc2,0x5,0xd4,0xd7,0xd7,0xf3,0xc7,0x62,0xb1,0x98,0xae, 0xbb,0xc7,0x6a,0xb5,0xc2,0xe3,0xf1,0xe8,0x6,0xe3,0x74,0x47,0xd4,0x40,0xef,0xcd, 0x18,0xc3,0xdd,0x77,0xdf,0x8d,0x5e,0xbd,0x7a,0x21,0x10,0x8,0xc0,0x66,0xb3,0x21, 0x18,0xc,0x62,0xc5,0x8a,0x15,0x3c,0x62,0xb0,0xdb,0xed,0x8,0x87,0xc3,0xbc,0x0, 0xad,0x28,0xa,0xa6,0x4d,0x9b,0x86,0xe5,0xcb,0x97,0xe7,0x30,0xc6,0xfc,0x74,0x6d, 0xcc,0x40,0x55,0x82,0x83,0x34,0x69,0xd2,0x6e,0x8,0x80,0xa0,0xd4,0x9,0x63,0x2c, 0x46,0xcf,0xcd,0x9d,0x3b,0x57,0x79,0xfd,0xf5,0xd7,0x75,0xc,0x68,0x45,0x51,0x78, 0x5b,0x6b,0x6d,0x6d,0x2d,0x5a,0x5a,0x5a,0x78,0xbd,0x81,0x78,0x1,0xc4,0x38,0xb6, 0xd9,0x6c,0x9c,0x33,0xd0,0x8d,0x91,0x11,0x12,0x89,0x4,0x26,0x4e,0x9c,0x88,0x9, 0x13,0x26,0xa0,0xa5,0xa5,0x85,0xf3,0x18,0x56,0xae,0x5c,0xc9,0x45,0xf4,0x8,0xd0, 0x28,0xfd,0x15,0x8d,0x46,0x31,0x7d,0xfa,0x74,0xac,0x5a,0xb5,0xca,0xc3,0x18,0x6b, 0x35,0x2,0x3,0xbb,0x4c,0x74,0x93,0xe0,0x20,0x4d,0x9a,0xb4,0x6b,0xde,0x44,0x40, 0x30,0x3a,0x3b,0x4a,0x2b,0x91,0x14,0x4,0x3d,0xff,0xf0,0xc3,0xf,0x5b,0x9f,0x7d, 0xf6,0x59,0xdd,0xca,0x9f,0x44,0xeb,0x18,0x63,0xa8,0xad,0xad,0x45,0x6b,0x6b,0xab, 0x4e,0xf9,0x94,0x52,0x51,0xd1,0x68,0x14,0x0,0x60,0xb7,0xdb,0x61,0xb5,0x76,0x1f, 0x57,0xf8,0x96,0x5b,0x6e,0xc1,0x9d,0x77,0xde,0xa9,0x8b,0x18,0x56,0xad,0x5a,0x85, 0xea,0xea,0x6a,0xce,0x4,0xa7,0x1a,0xa,0xd5,0x4b,0x66,0xcf,0x9e,0x8d,0xf7,0xde, 0x7b,0xcf,0xd,0x20,0x62,0x2,0x98,0x4c,0x46,0xe,0xd2,0xa4,0x49,0xfb,0x56,0x47, 0xc,0xd9,0x9e,0x13,0x26,0xc9,0x29,0xa9,0xfb,0x89,0x9f,0xfe,0xf4,0xa7,0xea,0xbf, 0xfd,0xdb,0xbf,0xf1,0x95,0xb9,0x71,0xa5,0x5e,0x5f,0x5f,0xf,0xbf,0xdf,0xaf,0x2b, 0x5c,0x53,0x1b,0x2c,0xbd,0x25,0x15,0x7e,0xbf,0x9,0xe7,0x41,0x7c,0xef,0x74,0xf3, 0x24,0x8a,0x8a,0x8a,0x70,0xef,0xbd,0xf7,0xf2,0x6d,0xa2,0xd1,0x28,0x96,0x2f,0x5f, 0x8e,0x53,0xa7,0x4e,0x1,0x68,0x4b,0x8d,0xd1,0x31,0x6a,0x9a,0x86,0x19,0x33,0x66, 0xe0,0xbd,0xf7,0xde,0x73,0xa7,0x78,0xc,0x9,0xc3,0x75,0x49,0x64,0xbb,0x76,0x12, 0x1c,0xa4,0x49,0x93,0xf6,0x6d,0x8f,0x2c,0x2c,0x82,0x23,0x54,0xc5,0x95,0xf3,0xaf, 0x7e,0xf5,0x2b,0xf5,0x7,0x3f,0xf8,0x81,0xae,0xee,0x40,0xb9,0x7d,0xab,0xd5,0x8a, 0xa6,0xa6,0x26,0xf8,0xfd,0xfe,0x76,0x72,0x15,0xa2,0x4f,0x55,0x55,0x95,0xb,0xd8, 0x91,0x43,0xef,0xcc,0x82,0x9c,0x31,0x6,0x9b,0xcd,0xd6,0xee,0xfd,0xe9,0xfd,0x1c, 0xe,0x7,0x16,0x2e,0x5c,0x8,0xaf,0xd7,0xcb,0x27,0xd9,0x2d,0x5f,0xbe,0x1c,0xb5, 0xb5,0xb5,0x3a,0xb0,0xa2,0x34,0x18,0x0,0xcc,0x98,0x31,0x3,0xef,0xbf,0xff,0xbe, 0x8b,0x31,0x16,0xea,0x8a,0x6b,0x2a,0xb5,0x95,0xa4,0x49,0x93,0xf6,0x6d,0x88,0x2c, 0x12,0x62,0xc4,0x20,0xa4,0x9a,0x2c,0xa9,0x5b,0xfb,0xbd,0xf7,0xde,0x1b,0xdd,0xb8, 0x71,0x23,0x67,0x47,0x2b,0x8a,0xc2,0x6f,0xa9,0x95,0xd5,0x66,0xb3,0xe9,0x5a,0x4a, 0xc9,0xb1,0x13,0x20,0x90,0x33,0x37,0x2e,0xc6,0xb3,0xf1,0x22,0x88,0xb1,0x4d,0x40, 0x43,0xe9,0x2d,0xe2,0x34,0xcc,0x99,0x33,0x7,0xa5,0xa5,0xa5,0x3c,0xbd,0xb5,0x6a, 0xd5,0x2a,0x9c,0x39,0x73,0x46,0x77,0xc,0xa2,0xa0,0xde,0x3d,0xf7,0xdc,0x83,0xf5, 0xeb,0xd7,0xfb,0x18,0x63,0xe1,0xae,0xba,0xa6,0x12,0x1c,0xa4,0x49,0x93,0xf6,0xad, 0x88,0x1c,0x44,0x80,0x0,0x60,0x51,0x14,0x25,0x21,0xa4,0x56,0x62,0x8a,0xa2,0xb8, 0x2a,0x2b,0x2b,0x43,0x5b,0xb6,0x6c,0xd1,0x39,0x7d,0xba,0xd,0x87,0xc3,0x48,0x24, 0x12,0xb0,0x58,0x2c,0xdc,0x71,0x1b,0x47,0x78,0x66,0x4a,0x17,0x65,0x2,0x8,0x31, 0x4a,0x20,0x80,0x20,0x60,0x98,0x3c,0x79,0x32,0x46,0x8f,0x1e,0xcd,0xa5,0x32,0x96, 0x2f,0x5f,0x8e,0x9a,0x9a,0x9a,0x76,0x40,0x44,0x35,0x86,0xbb,0xef,0xbe,0x9b,0x80, 0xc1,0x2f,0x9e,0xfb,0x95,0xbe,0xa6,0x32,0xad,0x24,0x4d,0x9a,0xb4,0x6f,0x45,0xe4, 0x40,0x3e,0x3a,0x75,0x3f,0x9e,0x2a,0xc6,0x5a,0x4,0x2e,0x44,0xf8,0xed,0xb7,0xdf, 0x6e,0x1a,0x37,0x6e,0x9c,0x69,0x4a,0x88,0xa,0xd1,0x62,0x4a,0xc9,0x38,0x80,0xe7, 0x9b,0xb4,0xb5,0x1a,0xa5,0xb8,0x55,0x55,0xc5,0x2d,0xb7,0xdc,0x82,0xdb,0x6f,0xbf, 0x9d,0xf,0x24,0x7a,0xe7,0x9d,0x77,0x50,0x53,0x53,0xc3,0x8f,0x87,0x52,0x4a,0x94, 0x4a,0xba,0xe7,0x9e,0x7b,0xb0,0x71,0xe3,0x46,0x1f,0x63,0xcc,0x4f,0xf3,0x2d,0xba, 0x2,0x18,0x24,0x38,0x48,0x93,0x26,0xed,0xdb,0x14,0x3d,0x28,0xa9,0xa2,0xb4,0x6a, 0x24,0xc7,0x51,0x51,0xb6,0xb4,0xb4,0x34,0x7f,0xd5,0xaa,0x55,0xe8,0xdd,0xbb,0x77, 0xbb,0x55,0x3f,0x39,0x70,0x4a,0x3b,0x19,0x67,0x4d,0x67,0xab,0x31,0x64,0x3,0xe, 0x8a,0x1e,0x68,0x3f,0xf9,0xf9,0xf9,0x98,0x3b,0x77,0x2e,0x1f,0xd4,0xb3,0x62,0xc5, 0xa,0xae,0x1,0x45,0x2d,0xb4,0x54,0x9b,0xd0,0x34,0x8d,0x22,0x86,0x9c,0x14,0x30, 0x58,0x8c,0x5,0x78,0x9,0xe,0xd2,0xa4,0x49,0x93,0xd6,0x1e,0x18,0x54,0x6a,0xdb, 0x64,0x8c,0x69,0x29,0x30,0x50,0x44,0x60,0xa0,0x95,0x76,0x79,0x79,0xb9,0xf5,0x83, 0xf,0x3e,0x40,0x51,0x51,0x91,0xce,0x71,0x13,0x0,0x10,0xd7,0x81,0xba,0x82,0x3a, 0x1a,0x15,0x64,0x39,0x3e,0xe,0xa,0x9a,0xa6,0xc1,0xe1,0x70,0xe0,0x3b,0xdf,0xf9, 0xe,0xa,0xb,0xb,0xe1,0xf7,0xfb,0xf1,0xee,0xbb,0xef,0xf2,0x88,0xc1,0x66,0xb3, 0xe9,0xc4,0x1,0x55,0x55,0xc5,0xdc,0xb9,0x73,0xb1,0x71,0xe3,0x46,0x2f,0x80,0x20, 0x45,0xb,0xa9,0xd9,0x16,0x5d,0xc6,0xd0,0x93,0xe0,0x20,0x4d,0x9a,0xb4,0xeb,0xde, 0x28,0x62,0x10,0x80,0x80,0x56,0xd6,0x16,0xc3,0x36,0xa,0x63,0x2c,0x31,0x64,0xc8, 0x10,0x65,0xf5,0xea,0xd5,0xc8,0xc9,0xc9,0xd1,0x45,0xd,0x62,0x3a,0x49,0x54,0x49, 0x35,0x4e,0x68,0xeb,0xc,0x30,0x88,0xdb,0xd0,0xfe,0x66,0xcf,0x9e,0x8d,0xfe,0xfd, 0xfb,0xc3,0xef,0xf7,0x63,0xc5,0x8a,0x15,0x38,0x75,0xea,0x14,0x8f,0x16,0x88,0xb1, 0x4d,0xdb,0xce,0x9a,0x35,0xb,0x1b,0x36,0x6c,0xf0,0x2,0x8,0x11,0x28,0xa4,0xf6, 0x19,0xff,0x26,0x24,0x37,0x9,0xe,0xd2,0xa4,0x49,0xbb,0x61,0x0,0x42,0xf8,0x3f, 0x21,0xde,0x9a,0xa5,0x5e,0xa6,0x4c,0x99,0xa2,0xbc,0xfd,0xf6,0xdb,0x5c,0x7e,0x42, 0xe7,0x18,0x5,0xd9,0x6e,0xd2,0x2e,0xa2,0x8,0x20,0x1b,0x30,0x50,0xea,0x28,0x5d, 0xb6,0x67,0xec,0xd8,0xb1,0x98,0x34,0x69,0x12,0x1a,0x1b,0x1b,0x39,0x30,0x0,0x6d, 0x5,0x67,0x71,0xbf,0xb3,0x67,0xcf,0xc6,0x87,0x1f,0x7e,0xe8,0x62,0x8c,0x5,0x84, 0x79,0xc,0x71,0x61,0x3b,0x19,0x39,0x48,0x93,0x26,0x4d,0xda,0x95,0xf2,0x79,0x14, 0x51,0xdc,0x7d,0xf7,0xdd,0x96,0xd7,0x5f,0x7f,0x5d,0xb7,0x81,0x38,0x93,0xba,0x23, 0x60,0x20,0x6e,0x27,0xb2,0x98,0x45,0x12,0x1d,0x45,0x1f,0x7d,0xfa,0xf4,0xc1,0x3d, 0xf7,0xdc,0x83,0x96,0x96,0x16,0xac,0x5a,0xb5,0xa,0x27,0x4e,0x9c,0xd0,0x81,0x91, 0x8,0x2e,0xb3,0x66,0xcd,0xc2,0x87,0x1f,0x7e,0xe8,0xed,0xca,0x76,0x55,0x9,0xe, 0xd2,0xa4,0x49,0xbb,0xd1,0xa3,0xa,0x26,0xcc,0x4e,0xb6,0x0,0xa0,0x55,0xb8,0xf6, 0xc8,0x23,0x8f,0x58,0x9e,0x79,0xe6,0x19,0xdd,0x3c,0x5,0x0,0x5c,0xe,0x3b,0x53, 0x2b,0xab,0x11,0x34,0x44,0x92,0x1a,0xed,0x83,0x6a,0x17,0x85,0x85,0x85,0x98,0x3f, 0x7f,0x3e,0xa2,0xd1,0x28,0x96,0x2d,0x5b,0xc6,0x81,0x81,0xea,0x1c,0xe2,0xfb,0xcf, 0x99,0x33,0x7,0x9b,0x36,0x6d,0xca,0xfd,0x26,0xf3,0x18,0xbe,0xa9,0x49,0x9e,0x83, 0x34,0x69,0xd2,0x6e,0x18,0x8c,0x10,0x3b,0x98,0x28,0x5f,0x9f,0x4a,0xd7,0x28,0x17, 0x2f,0x5e,0x64,0x4f,0x3f,0xfd,0x34,0x77,0xd4,0x94,0x4e,0x12,0xf9,0xb,0x99,0x1a, 0x83,0x44,0x6e,0x4,0x19,0x15,0x94,0x55,0x55,0xc5,0xbc,0x79,0xf3,0xe0,0xf1,0x78, 0xb0,0x7c,0xf9,0x72,0x9c,0x39,0x73,0x46,0x57,0xcb,0x10,0x41,0x69,0xee,0xdc,0xb9, 0xd8,0xb0,0x61,0x43,0xe,0x89,0xe8,0x75,0x15,0x8f,0x41,0x82,0x83,0x34,0x69,0xd2, 0x6e,0x78,0x13,0xb,0xb7,0x42,0xfd,0x41,0x21,0xc0,0x20,0xff,0xfe,0x83,0x1f,0xfc, 0x40,0x5b,0xba,0x74,0x69,0x3b,0x87,0x2f,0x46,0x8,0x62,0x1,0x5b,0x34,0x2,0x15, 0xf1,0x96,0xa2,0x82,0xd9,0xb3,0x67,0xa3,0x67,0xcf,0x9e,0x58,0xb6,0x6c,0x19,0x6f, 0x57,0x15,0x8e,0x8d,0xef,0x77,0xee,0xdc,0xb9,0xd4,0xae,0xda,0x2a,0x32,0xbe,0xaf, 0xc6,0x35,0x93,0x69,0x25,0x69,0xd2,0xa4,0xdd,0x70,0x58,0x41,0x11,0x3,0xe9,0x2f, 0x91,0x26,0xd3,0xd2,0xa5,0x4b,0xed,0xf,0x3c,0xf0,0x80,0x4e,0x87,0xc9,0xac,0xee, 0x60,0x4,0x6,0xe3,0x88,0x4f,0x7a,0x3d,0x63,0xc,0x63,0xc7,0x8e,0xc5,0xe8,0xd1, 0xa3,0xf1,0xd6,0x5b,0x6f,0xe1,0xe4,0xc9,0x93,0x69,0xa3,0xf,0xe2,0x31,0x0,0xf0, 0xb,0x60,0xa6,0x2a,0xdd,0x31,0x6d,0x48,0x46,0xe,0xd2,0xa4,0x49,0xbb,0x11,0x4d, 0x90,0xae,0x56,0x5,0x99,0xd,0x55,0xe0,0xb,0xc4,0x53,0x2b,0xf4,0x84,0xa2,0x28, 0xde,0xe9,0xd3,0xa7,0xfb,0xb7,0x6e,0xdd,0xca,0x6b,0xe,0xd9,0x4c,0x2c,0x60,0x8b, 0x12,0x19,0x3d,0x7b,0xf6,0x44,0x65,0x65,0x25,0xde,0x7e,0xfb,0x6d,0x9c,0x3e,0x7d, 0x5a,0x17,0x71,0x88,0xc5,0xeb,0xbb,0xef,0xbe,0x9b,0xda,0x55,0xc3,0x42,0x84,0x63, 0xa5,0x76,0x55,0x19,0x39,0x48,0x93,0x26,0x4d,0x5a,0x57,0x84,0xa,0x6d,0xf5,0x5, 0x71,0xee,0x3,0x9,0xf3,0xc5,0x85,0xed,0x54,0xc6,0x58,0xe0,0x95,0x57,0x5e,0xf9, 0xdd,0xc8,0x91,0x23,0x3b,0x2d,0x97,0x21,0xd6,0x26,0xdc,0x6e,0x37,0x66,0xcf,0x9e, 0x8d,0x75,0xeb,0xd6,0xa1,0xba,0xba,0x5a,0x17,0x85,0xd0,0x60,0x1f,0x12,0xdd,0xdb, 0xb8,0x71,0xa3,0x1b,0x6d,0x3c,0x6,0x92,0xc5,0xe8,0x52,0x1e,0x43,0x47,0xc2,0x2b, 0xf9,0xcd,0x91,0x26,0x4d,0x9a,0x4,0xf,0x81,0x49,0xcd,0x18,0xd3,0x6a,0x6a,0x6a, 0xd8,0x1d,0x77,0xdc,0x81,0xea,0xea,0x6a,0x2e,0x7d,0x21,0x92,0xe2,0x28,0x3a,0x10, 0xe7,0x54,0x8b,0x9d,0x4e,0xf3,0xe6,0xcd,0x43,0x55,0x55,0x15,0xe,0x1d,0x3a,0xa4, 0xab,0x2b,0x88,0xb7,0xb3,0x66,0xcd,0xfa,0xff,0xed,0x9d,0x3f,0x8e,0xda,0x50,0x10, 0xc6,0xbf,0xc7,0x43,0x41,0x4a,0x24,0x42,0x47,0x10,0x5,0x37,0xe0,0x5f,0x49,0x41, 0x89,0xe4,0x2,0x71,0x2,0xa,0xe,0x40,0x6e,0x40,0x85,0x38,0xc0,0x1e,0x81,0xc6, 0x6d,0x44,0x3,0x32,0x1d,0xa5,0x6b,0x3a,0x90,0xa9,0xa1,0x22,0x1,0x29,0x91,0x82, 0x96,0x49,0x1,0x76,0xc6,0xde,0xd,0xde,0x40,0xbc,0x71,0xc8,0xfc,0xa4,0x27,0x59, 0xb6,0x6c,0x4b,0x96,0x3d,0xdf,0x9b,0x19,0xcf,0x3c,0x4c,0xa7,0xd3,0x77,0x44,0xf4, 0x35,0x76,0xcf,0x44,0xc4,0x41,0x10,0x4,0xc1,0x6b,0xaf,0x41,0x7c,0xa6,0x3e,0x9f, 0xcf,0xa9,0xd1,0x68,0x60,0xb3,0xd9,0xf8,0xbc,0x2,0xde,0x42,0x3b,0x70,0xd,0x24, 0x12,0x9,0x54,0xab,0x55,0xec,0x76,0x3b,0x2c,0x97,0xcb,0x27,0x3d,0x9a,0x78,0x81, 0x9b,0x65,0x59,0x6f,0xa3,0x5a,0x8f,0xe1,0x56,0x24,0xac,0x24,0x8,0x82,0x70,0x52, 0x85,0x23,0x8f,0xf7,0x3,0x40,0xb1,0x58,0x4c,0x4c,0x26,0x13,0xe4,0xf3,0x79,0xcf, 0x23,0x70,0x67,0xfe,0x5c,0x18,0x78,0x45,0x75,0xa1,0x50,0xc0,0x76,0xbb,0xc5,0x62, 0xb1,0xf0,0xd5,0x2f,0xf0,0x96,0xdd,0xcd,0x66,0x13,0x96,0x65,0xbd,0x27,0xa2,0x6f, 0x6e,0x18,0x49,0xc4,0x41,0x10,0x4,0x21,0x9e,0x9e,0x3,0xef,0x70,0xea,0x2e,0x3d, 0x4a,0xe5,0x72,0x59,0x59,0x96,0x85,0x52,0xa9,0xe4,0xab,0x7d,0x8,0x8,0xb,0x0, 0x20,0x9d,0x4e,0x63,0xbf,0xdf,0xc3,0x71,0x1c,0x4f,0x44,0xf8,0xaf,0xad,0x5a,0x6b, 0x18,0x86,0x81,0x76,0xbb,0x5d,0x21,0xa2,0x9d,0x1b,0xc2,0x8a,0xe5,0xf3,0x90,0xb0, 0x92,0x20,0x8,0x82,0x7f,0xc1,0xa0,0x60,0xfe,0x1,0x0,0x56,0xab,0xd5,0x43,0xaf, 0xd7,0xfb,0x68,0x9a,0xa6,0xcf,0x5b,0xe0,0x39,0x7,0x2e,0x14,0x3c,0x4f,0xe1,0xa, 0x8a,0x61,0x18,0x18,0x8f,0xc7,0x19,0x22,0xfa,0xc2,0x45,0x89,0x62,0x68,0x88,0x45, 0x1c,0x4,0x41,0x10,0x61,0x38,0x1b,0x68,0xf6,0xfb,0xa8,0x97,0x7f,0x8,0xce,0xee, 0x87,0xc3,0x21,0xf5,0xfb,0x7d,0x38,0x8e,0xe3,0x89,0x42,0x30,0xcc,0x4,0x9c,0x42, 0x50,0xbc,0x69,0x5f,0xab,0xd5,0xc2,0x68,0x34,0xf2,0x2a,0x9f,0x63,0x4f,0xb0,0x15, 0xad,0xc,0x19,0xd7,0xc,0x41,0x88,0x7a,0x12,0x1b,0xf2,0xfe,0xa9,0x4b,0xe3,0x85, 0xef,0xb0,0xfe,0xd5,0xb5,0xd9,0x3d,0xf4,0x79,0x3b,0x3d,0x18,0xc,0xa8,0x52,0xa9, 0xd0,0x39,0x4,0xe5,0x1b,0xc9,0x64,0xd2,0xdb,0x56,0x4a,0x51,0xb7,0xdb,0x25,0x0, 0x6f,0x70,0xa,0xe5,0x2b,0x76,0xed,0x44,0x5c,0xbf,0x69,0xf1,0x1c,0xee,0x67,0xe6, 0x23,0xf,0x41,0xb8,0xeb,0x57,0xfc,0x15,0x4,0xe8,0xe8,0x86,0x92,0xc0,0x72,0xe, 0xcc,0xab,0x50,0xac,0x98,0xce,0x3d,0x96,0x9c,0xcd,0x66,0x7,0xd3,0x34,0x61,0xdb, 0x36,0xd6,0xeb,0x35,0xe,0x87,0x3,0xb4,0xd6,0xc8,0x64,0x32,0xa8,0xd7,0xeb,0xe8, 0x74,0x3a,0xa8,0xd5,0x6a,0xea,0x99,0x6f,0x36,0xb6,0xf9,0x86,0xff,0x26,0xac,0x14, 0x5c,0xf8,0x5b,0xc,0xa9,0x20,0xfc,0x73,0x44,0xf9,0xf3,0xcc,0x4d,0x46,0x90,0xf7, 0x6c,0xb2,0x6d,0xbb,0x95,0xcd,0x66,0x3f,0xa5,0x52,0xa9,0xcf,0xb9,0x5c,0xee,0x3, 0x80,0xef,0x3c,0x9f,0x10,0xac,0x76,0xa6,0x18,0x1b,0xe0,0x48,0xc5,0xe1,0x39,0x23, 0x1c,0xd5,0xfd,0xc4,0xe0,0xb,0xc2,0xdd,0x8b,0xc3,0x35,0x1f,0x39,0xbd,0xc0,0xf3, 0xf8,0x13,0x46,0x89,0x2,0xab,0xd0,0x3d,0x6,0xbd,0x90,0x4b,0x27,0x86,0xb5,0xc8, 0xf8,0x1b,0x22,0xe2,0xc6,0xe4,0x6e,0xbe,0xb9,0x18,0x67,0x41,0x10,0x22,0xb6,0x55, 0x3a,0xe4,0xf8,0x25,0xa3,0xaf,0x42,0x4,0xe1,0x1a,0xfb,0xc7,0xcf,0xd1,0xf8,0x99, 0x73,0x38,0xb2,0x7d,0xa,0xc0,0xe3,0x6f,0x88,0xd7,0xab,0x89,0x40,0x98,0xcd,0xff, 0x1,0x34,0xe,0xbe,0xc4,0x70,0x57,0x2b,0x7,0x0,0x0,0x0,0x0,0x49,0x45,0x4e, 0x44,0xae,0x42,0x60,0x82, // /home/Adel/ZeGrapher/icons/fonctions.png 0x0,0x0,0x1,0x70, 0x89, 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, 0x0,0x0,0x1e,0x0,0x0,0x0,0x1e,0x8,0x6,0x0,0x0,0x0,0x3b,0x30,0xae,0xa2, 0x0,0x0,0x0,0x1,0x73,0x52,0x47,0x42,0x0,0xae,0xce,0x1c,0xe9,0x0,0x0,0x0, 0x6,0x62,0x4b,0x47,0x44,0x0,0xff,0x0,0xff,0x0,0xff,0xa0,0xbd,0xa7,0x93,0x0, 0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xb,0x13,0x0,0x0,0xb,0x13,0x1, 0x0,0x9a,0x9c,0x18,0x0,0x0,0x0,0x7,0x74,0x49,0x4d,0x45,0x7,0xdb,0x9,0x9, 0xa,0x2f,0x10,0xc6,0x9,0xc6,0x68,0x0,0x0,0x0,0x19,0x74,0x45,0x58,0x74,0x43, 0x6f,0x6d,0x6d,0x65,0x6e,0x74,0x0,0x43,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x77, 0x69,0x74,0x68,0x20,0x47,0x49,0x4d,0x50,0x57,0x81,0xe,0x17,0x0,0x0,0x0,0xcb, 0x49,0x44,0x41,0x54,0x48,0xc7,0x63,0x60,0x18,0x5,0xa3,0x60,0x14,0xc,0x7,0x10, 0xca,0xc0,0xc0,0xf0,0x9f,0x81,0x81,0xe1,0x25,0x3,0x3,0x83,0x30,0x1e,0x75,0xdc, 0xc,0xc,0xc,0x77,0xa1,0x6a,0x33,0xa9,0x65,0xf9,0xa,0xa8,0x81,0xcb,0xf1,0xa8, 0x99,0x2,0x55,0xb3,0x8b,0x9a,0xbe,0x16,0x66,0x60,0x60,0x78,0xe,0x35,0x38,0x8, 0x8b,0xbc,0x3d,0x3,0x3,0xc3,0x3f,0x6,0x6,0x86,0xf,0xc,0xc,0xc,0xb2,0xd4, 0xe,0x72,0x5f,0xa4,0x20,0x17,0xc1,0x11,0xc4,0x9,0xb4,0x8a,0xef,0x5,0x50,0xb, 0x56,0x20,0x89,0x4d,0x86,0x8a,0x6d,0xa6,0x65,0x42,0xe3,0x67,0x60,0x60,0x78,0xc, 0xb5,0x28,0x98,0x81,0x81,0xc1,0xe,0x1a,0xc4,0x6f,0x19,0x18,0x18,0x24,0x68,0x9d, 0xca,0xdd,0x90,0x82,0x1c,0x16,0xc4,0x11,0x78,0xd4,0xff,0x27,0x7,0x33,0xe2,0x30, 0x6c,0x6,0x3,0x3,0x43,0x3a,0x94,0xbd,0x6,0x9a,0xe5,0xf0,0x45,0xf,0xd5,0x0, 0xf,0x92,0xeb,0x14,0xe8,0x5d,0xb0,0xc0,0x2c,0x16,0xa1,0x85,0xe1,0x2c,0x54,0xca, 0x9,0x3,0xe2,0x63,0xb2,0x12,0x17,0x35,0x7c,0xcc,0x48,0x8e,0x26,0xa6,0x81,0xaa, 0x99,0x46,0x9e,0xc5,0xa3,0x60,0x14,0xc,0x3f,0x0,0x0,0x52,0x90,0x45,0x56,0x4f, 0x46,0x1d,0x77,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82, // /home/Adel/ZeGrapher/icons/quitter.png 0x0,0x0,0x2c,0xe, 0x89, 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, 0x0,0x0,0x80,0x0,0x0,0x0,0x80,0x8,0x6,0x0,0x0,0x0,0xc3,0x3e,0x61,0xcb, 0x0,0x0,0x0,0x4,0x67,0x41,0x4d,0x41,0x0,0x0,0xd9,0x4,0xdc,0xb2,0xda,0x2, 0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0x78,0x9c,0xed,0x9d,0x7b,0x9c,0x5d,0x65, 0x79,0xef,0xbf,0x6b,0xef,0xb9,0xdf,0x93,0x49,0x26,0x21,0x84,0x4c,0xc2,0x25,0x84, 0x5b,0x8,0x1,0x5,0x1,0x43,0x50,0x5a,0x69,0xa9,0xc8,0xa5,0x8a,0xad,0xf6,0x40, 0xca,0xa7,0xfd,0x68,0xad,0x1f,0xc1,0xda,0xa3,0xb4,0x3d,0x95,0xea,0x1f,0xd2,0xda, 0xa3,0x51,0x4f,0x6b,0xd4,0x73,0x10,0xc4,0x83,0x56,0x81,0xa6,0x16,0x45,0x14,0x48, 0xc,0xe1,0x8e,0x12,0x11,0x12,0x72,0x83,0x99,0x49,0x26,0x99,0xfb,0x65,0xcf,0xec, 0xd9,0xf7,0xf5,0x9e,0x3f,0xd6,0x7a,0xd7,0x7e,0xd7,0xbb,0xde,0xb5,0xf6,0xda,0x7b, 0x6,0x8f,0x7e,0x9a,0xe7,0xf3,0x59,0xb3,0xdf,0xf5,0xae,0xf7,0xfe,0x3c,0xcf,0xef, 0x79,0xde,0xcb,0x5a,0x3,0x27,0xe8,0x4,0x9d,0xa0,0x13,0x74,0x82,0xfe,0x8b,0x92, 0xb5,0x80,0x65,0x58,0xda,0xb5,0x50,0xe5,0xff,0x57,0x26,0xa1,0xfc,0xaa,0x97,0xfa, 0x6c,0x5e,0x54,0x2b,0x83,0x54,0x6,0x27,0x80,0xe4,0x5f,0xc1,0x86,0x4e,0xb8,0x36, 0x1,0x9b,0x12,0x70,0x5e,0x63,0x4b,0x4b,0x67,0xc7,0xaa,0x55,0x4a,0xe,0xad,0x2a, 0xcb,0xf2,0x57,0xae,0x3d,0xb7,0xd4,0x7b,0x43,0x5e,0x5f,0xe3,0xd,0x69,0xa3,0x9e, 0x19,0xeb,0xa8,0x94,0x57,0xbb,0xf,0xcb,0xbb,0x90,0x34,0xbe,0x77,0x2f,0x99,0x54, 0x6a,0xda,0x86,0x5f,0xd9,0xb0,0x6b,0x1a,0x7e,0xf0,0x3f,0x61,0xf,0x50,0x2,0x6c, 0x16,0x40,0x18,0xaa,0x6d,0xb5,0x4c,0x9f,0x0,0x12,0xef,0x87,0xc5,0xbd,0x96,0xf5, 0xe1,0x4e,0x21,0xb6,0x74,0x9e,0x7c,0xf2,0xaa,0x95,0x97,0x5f,0xce,0xd2,0xf5,0xeb, 0x59,0x7e,0xe1,0x85,0x34,0x2e,0x5a,0xe4,0x64,0xb0,0x2c,0x67,0x70,0x24,0xc3,0xf5, 0xb0,0x9a,0xc6,0x8d,0xb3,0xf4,0x78,0x53,0x7a,0xb5,0x2c,0xf5,0x5e,0x79,0x1e,0x56, 0x6e,0x68,0x39,0x32,0x5d,0x48,0x7a,0x53,0x7b,0x43,0xd3,0x78,0x23,0x36,0x3f,0xc1, 0xb0,0xf3,0x79,0x8e,0xec,0xde,0xcd,0xc8,0x9e,0x3d,0xec,0x7f,0xe0,0x1,0x46,0xf6, 0xee,0x1d,0x98,0xb6,0xac,0x6f,0xf6,0xb,0xf1,0xd5,0xef,0xc2,0x4,0x8e,0x20,0xd8, 0x6e,0xf2,0xaa,0x5,0xa1,0x9a,0xd6,0x49,0x68,0x4f,0x2,0x75,0xff,0x3,0x3e,0xd6, 0xc,0x9f,0x5a,0x71,0xe1,0x85,0x9d,0xe7,0x6d,0xd9,0xc2,0xe2,0x75,0xeb,0x68,0x5e, 0xb6,0xcc,0x69,0x41,0x8,0x33,0x43,0x99,0x88,0x36,0xa8,0x86,0x78,0x9d,0x39,0x81, 0xbc,0xb2,0x91,0x21,0x4c,0xd5,0xcb,0xd,0x2d,0x4b,0x8d,0xb,0x69,0xaf,0x29,0x4d, 0x80,0xe1,0xa6,0xe7,0xf3,0x44,0x8d,0x52,0x2e,0xc7,0xd4,0xa1,0x43,0x3c,0x7b,0xd7, 0x5d,0xec,0x7b,0xf0,0xc1,0xe9,0xc,0xdc,0xf5,0x59,0xf8,0x12,0x50,0xc4,0x41,0x5, 0xd5,0x44,0xc4,0xa2,0x38,0x2d,0x90,0x69,0x92,0x40,0xf2,0x7d,0x75,0x75,0xeb,0xd7, 0x95,0x4a,0xdb,0x96,0xaf,0x5a,0xb5,0xf1,0xa2,0x8f,0x7e,0x94,0xe5,0x17,0x5f,0x4c, 0xa2,0xa5,0xa5,0xa2,0x76,0x98,0x6,0x50,0x17,0x8a,0xc8,0xfc,0x32,0x5d,0x8,0x53, 0x43,0x99,0x1b,0x83,0xf9,0xa1,0xc8,0xa0,0xd7,0xa9,0xb5,0x35,0xb4,0x9d,0x51,0x65, 0xe9,0xcf,0xb5,0x76,0xf9,0x28,0x44,0x40,0x44,0xa9,0xc4,0xc4,0x6b,0xaf,0xf1,0xd3, 0x8f,0x7e,0x94,0x43,0xcf,0x3d,0xf7,0x8b,0xd7,0x92,0xc9,0xf,0x7d,0xaf,0x58,0x7c, 0x19,0x47,0x8,0x4a,0x32,0x99,0x31,0xb3,0x46,0x95,0x4,0x40,0x6a,0x7d,0x2,0xa8, 0xff,0x60,0x73,0xf3,0xbb,0xce,0xce,0x64,0xee,0x3d,0xe3,0x9a,0x6b,0x3a,0xce,0xff, 0xd0,0x87,0x68,0x5c,0xba,0x14,0x41,0x10,0x72,0x8d,0x50,0x1a,0x31,0xd8,0x56,0xd8, 0x40,0x56,0x60,0x6c,0xe0,0x99,0x6e,0x2,0xb4,0xe7,0x81,0x3a,0x22,0xb4,0xb8,0x52, 0xde,0xa8,0x74,0xbe,0xb2,0x22,0xd2,0x87,0xa1,0x8d,0x4c,0xa7,0x8e,0x2d,0x86,0xb4, 0x76,0x3e,0xcf,0x8b,0x5b,0xb7,0xb2,0xeb,0xce,0x3b,0x53,0x7b,0x9b,0x9b,0x6f,0xfe, 0x76,0x26,0xf3,0x28,0x50,0xa0,0xec,0x1f,0x54,0x14,0x82,0x28,0x1,0x90,0xcc,0x4f, 0x2,0xf5,0x9f,0x82,0x3f,0xed,0x6e,0x6c,0xfc,0xca,0xc6,0x8f,0x7c,0x84,0x35,0xd7, 0x5c,0x83,0x68,0x68,0x8,0x68,0x91,0xb0,0x6d,0xf2,0xe9,0x34,0xc5,0x4c,0x86,0x42, 0x36,0x8b,0x28,0x95,0x8c,0x8c,0xac,0xc8,0xf0,0x38,0xe1,0xa,0xf0,0xaf,0x97,0x17, 0xca,0x6c,0x2d,0x9f,0xe9,0xde,0x18,0x17,0xc6,0xe4,0x90,0xb6,0xc5,0x35,0x35,0xea, 0x7d,0xa2,0xae,0x8e,0xfa,0xb6,0x36,0x1a,0x5a,0x5b,0x69,0xec,0xea,0x22,0x51,0x57, 0x17,0x4c,0x2b,0x4,0x83,0x4f,0x3f,0xcd,0xf6,0xf7,0xbe,0x97,0x91,0x99,0x99,0x8f, 0xde,0x5,0x77,0xe3,0x8,0x41,0x2c,0x93,0x10,0x26,0x0,0x2a,0xf3,0x1b,0xfe,0xa8, 0xb9,0xf9,0xea,0x8d,0xa5,0xd2,0x3,0x1b,0xff,0xf2,0x2f,0xe9,0xbd,0xe6,0x1a,0x6c, 0xb7,0xf3,0x52,0xb3,0x73,0x33,0x33,0x64,0xa7,0xa6,0xc8,0xa6,0x52,0x41,0xed,0xd7, 0x2b,0xb,0x81,0x49,0x13,0x83,0x75,0xe6,0xf9,0x98,0xad,0xa7,0xd7,0xf2,0xaa,0xf5, 0x5,0xf2,0x9a,0x18,0x6c,0x68,0x93,0x92,0x21,0xdc,0xee,0x9b,0xca,0x55,0x29,0xc4, 0x3c,0x84,0x6a,0x77,0x44,0x19,0xcd,0xdd,0xdd,0xb4,0x2c,0x5b,0x46,0x73,0x77,0x77, 0x20,0xcf,0xe0,0xee,0xdd,0xfc,0xc7,0x4d,0x37,0xf1,0x42,0xb1,0xf8,0x87,0xdf,0xc9, 0x64,0x7e,0xc,0xe4,0x89,0x21,0x4,0x51,0x2,0x90,0x4,0x1a,0x6e,0x68,0x6a,0xba, 0xe0,0xa2,0x6c,0xf6,0x47,0x17,0xfc,0xd9,0x9f,0x75,0x9c,0x76,0xc3,0xd,0x94,0x94, 0x8e,0xe7,0xd3,0x69,0x66,0x87,0x87,0xb1,0xb,0x5,0xff,0x0,0x44,0x30,0x2f,0xc0, 0x5c,0xc3,0xe0,0x84,0x32,0x3e,0x44,0x78,0xf4,0xce,0x44,0x31,0x2f,0x60,0x36,0x42, 0xd2,0xf9,0x6,0x27,0xca,0xa4,0xc4,0x8c,0xf3,0x95,0x19,0xc5,0xf8,0x18,0x42,0x91, 0x6c,0x6a,0xa2,0x6b,0xcd,0x1a,0x9a,0x34,0x41,0x38,0xb2,0x73,0x27,0xf,0x5c,0x7f, 0x7d,0xea,0xc5,0xa6,0xa6,0xdf,0x7f,0x28,0x9b,0x7d,0x9,0xbf,0x10,0x18,0x29,0x69, 0x88,0xf3,0x60,0x1f,0x68,0x79,0xaf,0x6d,0xff,0xdb,0x69,0x9b,0x36,0xf5,0x9e,0xf9, 0xc7,0x7f,0x4c,0xc9,0xb2,0xc0,0xb6,0xb1,0x4b,0x25,0x52,0xc7,0x8e,0x91,0x1e,0x1b, 0x43,0x94,0x4a,0x5e,0x26,0x4b,0x8,0x10,0x4e,0x5d,0x96,0x10,0xce,0x3d,0x80,0x10, 0x4e,0xc7,0x95,0x38,0xef,0x99,0x21,0xac,0x96,0xa3,0xfe,0x9a,0xca,0xf3,0x95,0x2d, 0xb,0xd1,0xc3,0x5a,0x3a,0xbd,0x3c,0x4b,0x6b,0x9f,0xd7,0x17,0xb5,0x4d,0x4a,0x79, 0xa8,0x69,0xb4,0x32,0xf4,0xb6,0xcb,0x38,0xf9,0x5c,0x96,0xaa,0x97,0x67,0xc,0x87, 0xc4,0x89,0x62,0x91,0xcc,0xe8,0x28,0x85,0x74,0x9a,0xc6,0xce,0x4e,0x47,0xe0,0x85, 0xa0,0xfd,0x94,0x53,0x48,0x40,0xe3,0xdc,0xee,0xdd,0x17,0xfe,0x4c,0x88,0xfb,0x89, 0xe1,0xb,0xe8,0x2,0x20,0xa1,0xbf,0xe,0x68,0xfa,0x78,0x32,0xf9,0xc9,0xe5,0x9d, 0x9d,0x37,0x5e,0x74,0xfb,0xed,0x58,0x2d,0x2d,0x8,0xdb,0xa6,0x94,0xcd,0x32,0x35, 0x30,0x40,0x29,0x97,0x33,0x32,0x54,0x67,0x86,0x37,0x20,0x3a,0xa3,0x22,0x18,0xaa, 0x36,0xc6,0x54,0x86,0x3e,0xf0,0x84,0xc4,0xf9,0xea,0x50,0xcb,0x34,0x8,0x99,0x5e, 0xbf,0x5a,0x46,0x40,0x78,0xb4,0x3e,0x62,0xe8,0x63,0x58,0x5e,0x93,0x62,0x78,0x42, 0xa2,0x97,0x57,0x21,0x5c,0xcc,0x64,0x48,0xf,0xd,0xd1,0xd8,0xd1,0xe1,0xf8,0x7, 0x96,0xc5,0xb2,0x8d,0x1b,0x39,0xf6,0xf8,0xe3,0xcb,0x4f,0x1f,0x1b,0x13,0xcf,0x8, 0xf1,0x2c,0xe5,0x45,0x23,0x23,0x99,0x4,0xa0,0xe,0x68,0xbc,0x8,0x4e,0xda,0x28, 0xc4,0x37,0xce,0xfd,0xc0,0x7,0x1a,0x3b,0xd6,0xad,0xc3,0x76,0x99,0x3f,0x33,0x34, 0x4,0xa5,0x52,0x24,0x43,0x8d,0x4c,0x9,0x61,0x40,0x64,0x5e,0xfd,0x99,0xd6,0xd0, 0x80,0x60,0x69,0x9a,0x52,0x49,0x50,0x7c,0x65,0x9a,0x90,0x27,0x2,0x35,0x4c,0x75, 0x98,0xda,0x16,0x95,0x37,0xa,0x8d,0x2c,0x43,0xd8,0x88,0x10,0xa5,0x12,0x99,0xb1, 0x31,0x1a,0x3a,0x3b,0x49,0x24,0x93,0x24,0xea,0xea,0x68,0x5f,0xb1,0x82,0x81,0x7, 0x1f,0x3c,0x3f,0x5,0xf7,0x1f,0x83,0x39,0xfc,0x8b,0x45,0x3e,0x52,0x5,0xc0,0xc2, 0x9d,0xee,0x1,0xcd,0x37,0x5a,0xd6,0xc7,0x96,0x77,0x77,0x6f,0x3e,0xfb,0xe6,0x9b, 0x29,0x59,0x16,0xa5,0x5c,0x8e,0xf4,0xd8,0x98,0xc3,0x7c,0x30,0x33,0xae,0x82,0x50, 0x4,0x18,0x45,0x88,0x60,0x98,0xca,0x36,0x3d,0x97,0x85,0xe8,0xe1,0x4a,0x68,0x10, 0x85,0x42,0x4a,0x58,0x17,0x32,0x13,0xe4,0xeb,0xcf,0x3,0x71,0xca,0x85,0xf2,0xcc, 0x18,0xd6,0xea,0x30,0x9,0xa3,0xef,0x92,0x69,0x4b,0x25,0xb2,0x63,0x63,0xe,0x12, 0x24,0x93,0xb4,0x9f,0x72,0xa,0xa3,0x7b,0xf6,0x34,0xd2,0xdf,0x9f,0x7b,0x1e,0x22, 0x51,0x40,0x17,0x80,0x24,0xd0,0x8,0xb4,0xbe,0x1b,0xbe,0x74,0xea,0x3b,0xdf,0xd9, 0xde,0xb1,0x6e,0x1d,0x76,0xb1,0xc8,0xdc,0xf8,0x38,0xd8,0x76,0x80,0xc9,0x61,0x90, 0x1f,0x86,0x6,0x3a,0x1c,0x6,0x84,0x26,0xa4,0x3c,0x63,0x19,0x51,0xe5,0x29,0x83, 0xae,0xfa,0x15,0x3e,0xfb,0x1e,0x22,0x14,0x81,0x72,0x55,0x66,0xa8,0xf9,0x42,0xf2, 0xa2,0xe6,0x35,0xc5,0x51,0x16,0x16,0xdd,0x47,0xa8,0x24,0x20,0x61,0x42,0x81,0x10, 0x64,0xc7,0xc7,0x69,0x5e,0xb2,0x4,0x2b,0x91,0xa0,0xae,0xb5,0x95,0xc1,0x1f,0xfc, 0x60,0xf5,0xe,0xb8,0x87,0xf2,0x4a,0x61,0x40,0x8,0xea,0x94,0xb0,0x14,0x80,0x86, 0xf7,0xd4,0xd7,0x5f,0xd6,0x28,0xc4,0x8a,0xce,0xd3,0x4f,0xa7,0x98,0xcf,0x93,0x9f, 0x9d,0x45,0x14,0x8b,0x91,0xde,0xb8,0xd0,0x16,0x2f,0x84,0x5b,0xa0,0x70,0x3b,0xe8, 0xdd,0x2b,0x79,0xbd,0x3c,0x4a,0x5e,0xf4,0x38,0x99,0x5e,0x88,0xb2,0x37,0xac,0x32, 0x26,0x64,0x96,0xe1,0x6b,0x9b,0xf2,0x7c,0x2a,0x9d,0x26,0x35,0x37,0xe7,0xb5,0xa1, 0xb3,0xb5,0x95,0xce,0xd6,0xd6,0x40,0x3a,0xbd,0x9d,0x6a,0x1d,0xfa,0x73,0xa7,0x49, 0x22,0x30,0x26,0xbe,0x70,0x1c,0x2f,0x5f,0xe9,0xa3,0xcf,0x77,0x31,0xf4,0xc7,0x54, 0x9e,0xb0,0x6d,0xa6,0xf,0x1c,0xa0,0x73,0xed,0x5a,0x7a,0xce,0x3b,0x8f,0x8e,0xee, 0xee,0x15,0xef,0x49,0xa5,0x2e,0xfb,0x8f,0x42,0xe1,0x71,0x42,0x66,0x4,0x52,0x0, 0x54,0xf8,0x6f,0xec,0x2d,0x16,0xaf,0x4e,0x2e,0x5a,0x44,0x6b,0x6f,0x2f,0x85,0xb9, 0x39,0x4a,0xf9,0xbc,0xc3,0xc,0xd9,0x49,0x97,0xc1,0x6a,0x3,0x7c,0x4c,0x37,0x30, 0x56,0x17,0xa,0xd9,0x49,0x75,0xd0,0x51,0xc2,0xc6,0x69,0x63,0xd4,0xc2,0x89,0x3b, 0x60,0x7a,0x79,0x32,0xdd,0xf8,0xec,0x2c,0x6f,0xc,0xf,0x93,0x2b,0x14,0xfc,0xe5, 0x8d,0x8e,0xd2,0x54,0x5f,0xcf,0xa9,0xcb,0x97,0xb3,0xb8,0xbd,0xbd,0xac,0x61,0x4a, 0x7b,0x4d,0x83,0x6d,0x5a,0x4b,0x30,0x4e,0xf9,0x94,0xf2,0xbc,0xa6,0x46,0xf5,0xc7, 0x20,0xb4,0x7a,0x1f,0x4d,0x79,0xa5,0x50,0x14,0xa6,0xa7,0xc9,0x8d,0x8f,0xd3,0xbc, 0x78,0x31,0x4b,0x2f,0xb8,0x80,0xde,0xc7,0x1f,0xbf,0x1a,0xd8,0xd,0xe4,0x70,0x90, 0x40,0xa0,0x8,0x81,0x8a,0x0,0x49,0xf7,0xbe,0xb1,0x45,0x88,0xf5,0xf5,0x3d,0x3d, 0x14,0x73,0x39,0x8a,0xf9,0x3c,0x68,0x8c,0x12,0xae,0xa4,0xaa,0x42,0xe1,0x63,0xb2, 0x41,0x18,0xc2,0x16,0x51,0xc2,0xb4,0x5b,0x1f,0x8,0x95,0x19,0x6a,0x1c,0x5a,0xbd, 0x5e,0x1e,0xd9,0x4b,0x21,0x18,0x9d,0x9e,0xe6,0xd0,0xd0,0x10,0x2b,0xce,0x38,0x83, 0x73,0xaf,0xbc,0x92,0xee,0x95,0x2b,0x69,0xef,0xee,0x26,0x9f,0xc9,0x70,0xfc,0xe0, 0x41,0xfa,0x5e,0x7e,0x99,0x7d,0xcf,0x3d,0xc7,0x19,0x2b,0x56,0xb0,0xac,0xab,0xcb, 0x29,0x33,0x44,0x1b,0x3,0xab,0x86,0x6a,0xdf,0xc,0xc8,0x18,0xd5,0xc7,0x4a,0xfb, 0x4,0x71,0xd6,0x4,0x64,0x79,0x6a,0x3b,0xe6,0x6,0x6,0xe8,0x6c,0x6b,0xa3,0xf1, 0xe4,0x93,0x69,0x15,0x62,0x3d,0x8e,0x59,0xaf,0xc3,0xe1,0x71,0x49,0xcd,0x6a,0x44, 0x80,0x26,0x58,0x3b,0x37,0x3b,0x4b,0x3e,0x97,0x73,0x9c,0x3e,0xd,0xa2,0x65,0xe3, 0x3,0x1a,0xa2,0x37,0xc8,0xd0,0xc9,0x30,0xd,0xd,0xa0,0x86,0x22,0x64,0xaa,0x76, 0x47,0xa1,0x81,0x30,0x30,0x20,0x95,0xc9,0x30,0x30,0x35,0xc5,0xbb,0x3f,0xf6,0x31, 0x4e,0x5a,0xbb,0xd6,0xd7,0xcc,0x86,0xe6,0x66,0x7a,0xd7,0xaf,0xa7,0x77,0xfd,0x7a, 0xd6,0x5e,0x7c,0x31,0x3f,0xfd,0xfa,0xd7,0x69,0x4a,0x26,0x3d,0x93,0x60,0xac,0x43, 0xf6,0x39,0x4,0x71,0x2,0xe6,0x22,0x2,0x49,0x84,0x10,0xe5,0x74,0x11,0x90,0x1f, 0x86,0x42,0x42,0x8f,0x73,0xc7,0xcc,0xce,0xe5,0x48,0xed,0xdb,0x87,0x68,0x6a,0xa2, 0x11,0xd6,0xe2,0x8,0x40,0x3d,0xe,0x8f,0x55,0x10,0xe,0x8,0x40,0x1d,0xd0,0x50, 0x7,0x6d,0x63,0x83,0x83,0x64,0xc6,0xc6,0x68,0x72,0x17,0x1a,0xd4,0x4e,0xf8,0x7e, 0x23,0x1a,0xe7,0x21,0x3,0x65,0x6d,0xf4,0x69,0xb1,0x36,0x60,0xa6,0x38,0x39,0xc8, 0xbe,0xfa,0xc,0x3,0x66,0xe9,0x61,0xf7,0xf7,0xf8,0xf8,0x38,0xef,0xbe,0xfd,0x76, 0xba,0x57,0xae,0x24,0x8a,0x4e,0x3a,0xe3,0xc,0xae,0xf9,0xd8,0xc7,0xf8,0xd9,0x57, 0xbf,0x4a,0x67,0x73,0xb3,0xaf,0x3f,0x3e,0x26,0x47,0x99,0x21,0xb5,0x5d,0xb5,0x68, 0xb4,0x6e,0x42,0x4c,0x42,0xa1,0x84,0xc3,0x14,0x9,0x60,0xf4,0xc9,0x27,0xb1,0x92, 0x49,0xea,0xa0,0xd,0x68,0xc0,0xe1,0xad,0x14,0x0,0x8f,0x54,0x1,0x90,0x26,0xa0, 0x5e,0x3e,0x1c,0xeb,0xeb,0x63,0xe5,0xfa,0xf5,0x1,0xf8,0x8a,0x65,0xeb,0x23,0xcc, 0x80,0x94,0x7c,0xe9,0x20,0x42,0x50,0x7b,0x75,0xe1,0x8a,0x72,0xf2,0xc0,0xaf,0x99, 0x6a,0xfd,0x6b,0xae,0xb8,0xa2,0x22,0xf3,0x25,0x75,0xaf,0x5c,0xc9,0xea,0x4b,0x2f, 0xa5,0x78,0xe0,0x0,0x75,0xc9,0x64,0x45,0x6,0x84,0x9,0x1e,0xb2,0x5f,0xca,0x98, 0x85,0xa1,0x56,0x58,0x7f,0x2a,0x41,0x7e,0x58,0x7a,0x39,0x4e,0xc3,0xbb,0x76,0x91, 0x3b,0xfb,0x6c,0xf9,0xb4,0x9e,0xb2,0x9,0xf0,0x15,0x98,0x90,0xd9,0xdd,0xb0,0x14, 0x2,0x2c,0x60,0xa2,0xaf,0xf,0x6c,0x1b,0x61,0xdb,0xde,0xaf,0x70,0xa7,0x82,0xc2, 0x9d,0x86,0x8,0x21,0x2,0x69,0xb0,0x6d,0x67,0x89,0xd8,0xd,0x7b,0xf1,0xa5,0x92, 0xf7,0xdc,0xbb,0xe4,0x74,0xc6,0xb6,0xcb,0x53,0x35,0x3d,0x4d,0xa5,0x4b,0xad,0x4b, 0x4e,0x9d,0xdc,0xf0,0xda,0x4b,0x2f,0xd,0xe,0x60,0x4,0x9d,0xfb,0x8e,0x77,0x30, 0x97,0xc9,0x38,0xed,0x71,0xdb,0x64,0x29,0xed,0xb3,0xdc,0xb2,0xe5,0x73,0x59,0xaf, 0x65,0x6a,0x4b,0x48,0x9b,0x50,0xca,0x30,0xf5,0xc7,0x32,0x5d,0xa5,0x52,0xc5,0x36, 0xa9,0xf5,0x67,0xc7,0xc6,0x98,0x39,0x7c,0x98,0x7a,0xc7,0x9c,0x49,0xe6,0x87,0x22, 0x80,0x2e,0x4,0x20,0x4,0xa9,0xe1,0x61,0x84,0x6d,0xfb,0xb4,0x1b,0xe2,0x79,0xf9, 0xaa,0x9d,0x54,0x35,0xa5,0x9a,0xa9,0x24,0x86,0xb2,0x2a,0x39,0x85,0x7a,0x5c,0xbb, 0xdc,0x30,0x89,0x49,0xd,0xcd,0xcd,0x74,0xaf,0x58,0x41,0x71,0x62,0x22,0xd8,0x8e, 0x10,0x9b,0xeb,0x85,0xb5,0xfe,0x54,0xb,0xf9,0xbe,0xb5,0x90,0x2a,0x4d,0x88,0x8e, 0x30,0xe9,0x81,0x1,0xb2,0x8d,0x8d,0xd4,0xb7,0xb4,0x40,0x3a,0x6d,0x64,0x3e,0xf8, 0x4d,0x80,0x7a,0x61,0x1,0x33,0x23,0x23,0x3e,0xc8,0xd7,0xe1,0x55,0x87,0x2f,0x95, 0xc9,0xbe,0x67,0x42,0xf8,0x9c,0x3b,0xdd,0xf,0xd0,0x7d,0x2,0x9f,0xd9,0x50,0x9f, 0x47,0x98,0x10,0xb5,0xf3,0xa6,0xed,0xe3,0x6a,0xa8,0xa1,0xb9,0x99,0xa2,0xad,0xac, 0x99,0x44,0xf8,0x38,0xd5,0x30,0x34,0xc0,0xdc,0xa,0x7e,0x94,0x17,0x72,0xc7,0x5d, 0xaf,0x2b,0xac,0xfe,0x52,0x26,0x83,0x0,0x72,0x13,0x13,0x72,0xa5,0x2f,0xc0,0x5f, 0x49,0x2a,0x2,0xa0,0x27,0x10,0xc0,0x54,0x7f,0x3f,0x5d,0xa7,0x9c,0xe2,0x6f,0x9c, 0xc9,0x7b,0x35,0x39,0x71,0xf8,0x7,0xaa,0x12,0x13,0x75,0x1f,0xc2,0x6b,0x87,0x6e, 0x5f,0xb5,0x1,0x90,0xc2,0xa9,0xb7,0xc9,0xb7,0xe2,0x51,0xd,0x49,0x48,0x35,0xf4, 0x31,0x50,0xbf,0xd6,0x16,0xb4,0xb6,0xfb,0xf2,0xa8,0xe5,0x87,0xa5,0xb,0x89,0xf3, 0x50,0xb0,0x2,0xe2,0x8,0x20,0xdb,0xdf,0xef,0xac,0xf8,0xd8,0xb6,0x1c,0x83,0x0, 0xe3,0x25,0xe9,0x26,0xc0,0x47,0x16,0x90,0x99,0x9a,0xa2,0xeb,0xe4,0x93,0x9d,0x3a, 0x95,0x4e,0x9b,0xa6,0x6d,0xd5,0x30,0x54,0x36,0x58,0x87,0x7c,0xaf,0x21,0xa6,0xb9, 0xb7,0xd6,0xd9,0xb0,0x38,0xe3,0x22,0x4a,0x35,0x24,0xed,0x73,0x84,0x63,0x57,0x69, 0xa5,0x2e,0xd6,0x19,0x86,0x98,0x8e,0xa2,0xa9,0x8e,0x40,0x58,0x29,0xa3,0x24,0x84, 0xa3,0xf9,0x65,0x1,0xf0,0x72,0xe8,0x5d,0xd5,0x11,0xc0,0x97,0xd2,0x2,0xe6,0xa6, 0xa7,0xbd,0x82,0x74,0x4d,0xe,0x9d,0xdf,0x6a,0x8d,0xf3,0x41,0xbf,0xfb,0xcc,0x52, 0xf2,0x5a,0x86,0x38,0x5f,0x7,0x43,0x10,0xc7,0xeb,0x77,0x88,0xd9,0xa8,0x99,0xa4, 0x43,0x55,0xa1,0x8f,0xd5,0xac,0xd4,0x5,0xda,0xa4,0xdb,0x70,0x83,0x50,0x44,0x9, 0x99,0x31,0xaf,0x1b,0x37,0x37,0x30,0x40,0x12,0xc8,0x4f,0x4f,0x9b,0xd5,0x5e,0xa1, 0x50,0x1,0x90,0x1d,0x99,0x1d,0x1d,0xf5,0x69,0xa3,0xb7,0xf2,0x67,0x42,0x3,0xb5, 0x31,0x51,0x10,0xa9,0x56,0xa2,0xaf,0x32,0x6a,0x65,0xc8,0x38,0xd3,0x40,0xf9,0xf6, 0x9,0x94,0xba,0x2,0xf5,0x57,0x4b,0xba,0x9,0x50,0xcb,0x35,0xf5,0x27,0x42,0x2b, 0x7d,0xed,0xab,0x34,0x26,0x51,0xbe,0x81,0xda,0xb6,0x90,0x36,0xc9,0xdf,0xe2,0xdc, 0x5c,0x70,0xbe,0x17,0x42,0x15,0x5,0xa0,0x98,0xcd,0x3a,0x33,0x1,0x1d,0xca,0x55, 0x98,0xd7,0x24,0xdf,0xd4,0x31,0x13,0x93,0xf5,0xf2,0x74,0x47,0x31,0x6c,0x1,0x46, 0xa6,0x33,0xed,0x17,0x78,0xa9,0x84,0x6,0x7e,0xd5,0x90,0x9c,0xaa,0x55,0xe9,0xe5, 0xfb,0xfa,0xaf,0xc5,0x1,0x81,0xb5,0x1,0xd4,0xfe,0xa9,0xe9,0xc,0x75,0x84,0x21, 0xa3,0xa9,0xbc,0xfc,0xcc,0x8c,0xf1,0xa8,0x97,0x89,0x2a,0x9a,0x80,0x99,0xd1,0x51, 0xc7,0x4,0x84,0x74,0x2c,0x0,0xdb,0x72,0xa0,0x22,0x96,0x4a,0x55,0x4,0xa9,0xe8, 0xf8,0xc9,0xf2,0x4d,0xcb,0xcb,0x86,0xc1,0x5b,0x10,0x33,0x20,0x4d,0x80,0x52,0x57, 0x80,0xb9,0x4,0x5,0x5f,0xf,0x57,0x32,0x3,0xf2,0x28,0x57,0x14,0xe4,0x57,0xf2, 0x7f,0x4c,0x53,0xd3,0xdc,0xe0,0xa0,0xf3,0xea,0x16,0x11,0x47,0x81,0x5c,0xaa,0x88, 0x0,0x76,0x3e,0x4f,0xa9,0x54,0xa2,0xce,0xb2,0x7c,0x95,0xe9,0x3e,0x81,0x3a,0x0, 0xc6,0xad,0x5c,0x49,0x31,0x97,0x4a,0xa5,0xe7,0x1b,0x5,0xaf,0x95,0xe0,0x50,0xd4, 0x2a,0x0,0x72,0x31,0xa,0x8d,0xb9,0x4a,0x3b,0x73,0xc5,0x22,0xe9,0x5c,0x8e,0x74, 0x3e,0x4f,0x5b,0x63,0x23,0xad,0x8d,0x8d,0x34,0xd5,0xd7,0xfb,0xda,0x15,0x75,0x12, 0x39,0xe,0xe4,0x87,0x99,0xb7,0x4a,0x42,0x66,0xdb,0xf6,0xfc,0x4d,0x80,0xaa,0x7d, 0x76,0xa9,0x4,0xc9,0x64,0xa4,0xfd,0x8f,0x62,0x68,0x18,0xe4,0xcb,0xf2,0xa3,0x4c, 0x48,0x98,0x19,0x88,0x82,0x43,0xd9,0xce,0x5a,0x67,0x2,0xde,0xca,0x9a,0xa1,0xae, 0x74,0x2e,0xc7,0xeb,0xe3,0xe3,0x4c,0x67,0xb3,0x81,0x36,0x75,0x35,0x37,0xd3,0xbb, 0x78,0x31,0x5d,0x2d,0x2d,0x81,0x36,0x19,0x67,0x35,0x31,0x84,0x21,0x80,0xae,0xba, 0x52,0x69,0x63,0x92,0x2f,0x16,0x29,0xf6,0xf5,0xcd,0xdf,0x4,0xc8,0x86,0x59,0xc0, 0xf4,0xe0,0x20,0x4b,0x56,0xae,0x2c,0x33,0xd1,0x6d,0x88,0xc,0x9b,0x66,0x8,0x6a, 0xa3,0xd4,0xce,0x54,0x64,0xb2,0x66,0x42,0x46,0xd3,0x69,0x46,0x67,0x67,0x49,0xe5, 0x72,0x60,0x59,0x34,0xd5,0xd5,0xd1,0xd9,0xd4,0x44,0x4f,0x5b,0x1b,0x9d,0x4d,0x4d, 0xbe,0x1,0x30,0xed,0x39,0xd4,0x44,0xca,0x2c,0x40,0xa5,0xf1,0xd9,0x59,0xe,0x8c, 0x8c,0xd0,0xd4,0xdd,0xcd,0x5b,0x6e,0xbc,0x91,0xc5,0xbd,0xbd,0xde,0xb3,0xc9,0x81, 0x1,0x6,0x7e,0xfe,0x73,0x5e,0xde,0xb7,0x8f,0x93,0xbb,0xba,0x58,0xbd,0x78,0x31, 0x75,0x89,0x84,0x91,0xa1,0xde,0xbd,0x61,0xe5,0x2f,0xee,0xda,0x80,0x4f,0x10,0x94, 0xb1,0xb3,0xe7,0xe6,0x7c,0xeb,0xfb,0x95,0x28,0x96,0x0,0x78,0x7b,0x0,0x94,0x35, 0x59,0x36,0xa0,0xd2,0x1c,0xbe,0x1a,0x8d,0x56,0x91,0x62,0xae,0x50,0xe0,0xf5,0xb1, 0x31,0xe6,0xa,0x5,0x96,0xac,0x59,0xc3,0x59,0x6b,0xd6,0xd0,0xde,0xd3,0xc3,0xb1, 0x57,0x5e,0x61,0xec,0x8d,0x37,0x18,0x3d,0x7e,0x9c,0x93,0x3a,0x3a,0x58,0xb3,0x68, 0x91,0xd1,0x29,0x9c,0xd7,0x3a,0x80,0x3e,0xb,0x70,0x21,0xff,0xc0,0xf0,0x30,0x1b, 0x3f,0xf8,0x41,0xce,0xfe,0xbd,0xdf,0xb,0x64,0x59,0x7e,0xd6,0x59,0x9c,0xf5,0xae, 0x77,0x71,0xe4,0xe7,0x3f,0xe7,0xe9,0xaf,0x7d,0x8d,0x89,0xfe,0x7e,0xce,0x39,0xe9, 0x24,0xda,0x1b,0x1b,0x43,0xc7,0x22,0x10,0x96,0x75,0x7b,0xc9,0xab,0x14,0x6,0x20, 0xbd,0x77,0xaf,0xa7,0xfd,0xf3,0x36,0x1,0xf2,0x2a,0x14,0x8b,0x65,0x48,0x8c,0x1a, 0xec,0x1a,0xec,0xb5,0x69,0xe,0x3f,0x3a,0x37,0x47,0xff,0xe4,0x24,0xbd,0x6f,0x7d, 0x2b,0x9b,0x6e,0xbd,0x95,0xf6,0x9e,0x9e,0x72,0xde,0x9b,0x6e,0x2,0xe0,0xb5,0x27, 0x9e,0xe0,0xa9,0xbb,0xef,0xc6,0x1e,0x1b,0xe3,0xc,0xe5,0x5,0x9,0x93,0x2d,0xad, 0x9a,0xc,0x8,0x30,0x30,0x3e,0xce,0x25,0x7f,0xfe,0xe7,0x9c,0x7e,0xc5,0x15,0x91, 0x59,0x4f,0xb9,0xf0,0x42,0xae,0xdf,0xba,0x95,0x67,0xb6,0x6d,0xe3,0x17,0x2f,0xbe, 0xc8,0x99,0x3d,0x3d,0x2c,0xef,0xe8,0x70,0x9b,0x14,0xee,0x13,0xa8,0xe1,0xc8,0x35, 0x81,0x88,0x32,0x44,0x36,0x4b,0xea,0xe1,0x87,0x3d,0x4,0x88,0x43,0x46,0x1,0x50, 0xed,0xbf,0xb4,0xd1,0xfa,0xf9,0x7a,0x75,0xaa,0xa6,0xa2,0x1,0x56,0xd0,0xcb,0xf, 0xc4,0x45,0xd8,0xb2,0xbe,0xa9,0x29,0x86,0x66,0x66,0xf8,0x9d,0xdb,0x6e,0xe3,0xac, 0x77,0xbe,0x33,0xb4,0xe1,0xeb,0xde,0xf1,0xe,0xd6,0x5c,0x7c,0x31,0x3f,0xf8,0xbb, 0xbf,0x63,0x3a,0x93,0xa1,0xb3,0xa9,0xc9,0xdf,0xc6,0x5,0x9c,0x6,0x5a,0x40,0xeb, 0x59,0x67,0x55,0x64,0xbe,0xa4,0x86,0x96,0x16,0xae,0xf8,0xf8,0xc7,0x79,0x7d,0xd7, 0x2e,0x9e,0xde,0xb6,0x8d,0xe9,0x4c,0x86,0x75,0x3d,0x3d,0x66,0x87,0x4e,0x13,0x0, 0xdd,0x9f,0xa,0xac,0xab,0x98,0xc6,0xce,0x7d,0x3e,0xfd,0xfd,0xef,0x53,0xcc,0x66, 0x7d,0x8,0x50,0x49,0xd,0x42,0x85,0x45,0x45,0x80,0xb9,0x54,0xca,0xb7,0xcd,0xeb, 0x85,0xd5,0x81,0x52,0xb6,0x39,0x3,0x5b,0xbe,0x51,0x71,0xa2,0xbc,0xa5,0x7c,0x78, 0x7c,0x9c,0xc9,0x52,0x89,0x3f,0xfa,0xd2,0x97,0x22,0x99,0x2f,0xa9,0xb1,0xb5,0x95, 0xab,0xef,0xb8,0x83,0x69,0xad,0x3c,0x6f,0x8b,0xb9,0x62,0x9,0x21,0x7d,0x77,0x67, 0x1,0x9,0x65,0xcb,0xf6,0xdc,0x1b,0x6f,0xac,0xba,0x9c,0x53,0x37,0x6d,0xe2,0x9a, 0xcf,0x7d,0x8e,0x89,0x62,0x91,0xfd,0xc3,0xc3,0xce,0x12,0xb3,0x54,0x26,0x6d,0x1b, 0x57,0xdf,0xfa,0x4d,0x28,0xf5,0x5b,0xb6,0x4d,0x42,0xdd,0xe,0x56,0xf3,0xb8,0xe5, 0xe4,0xf7,0xee,0xa5,0xb0,0x6f,0x1f,0x16,0x78,0x53,0xc0,0x38,0xfd,0x8f,0x44,0xb, 0x29,0x0,0xc5,0xd9,0xd9,0x68,0x86,0x9a,0x84,0x42,0x9,0xb,0x43,0x3a,0x6f,0xbd, 0xdd,0xed,0xd8,0xeb,0xe3,0xe3,0x58,0x3d,0x3d,0xfc,0xd1,0x97,0xbf,0xcc,0xd2,0x53, 0x4f,0x8d,0x3d,0xc8,0xed,0x3d,0x3d,0x2c,0x7f,0xdb,0xdb,0x8c,0xfb,0xea,0xd2,0x6f, 0xa9,0x9a,0xc,0xfb,0xf3,0x8b,0x57,0xaf,0xae,0xa9,0xa8,0x45,0xbd,0xbd,0x5c,0xf7, 0x95,0xaf,0x90,0x5b,0xb4,0x88,0xfd,0x23,0x23,0xc6,0xfd,0xfd,0x84,0x28,0xef,0xef, 0xeb,0x82,0x61,0x3a,0x37,0xa0,0x9f,0x45,0x10,0x73,0x73,0xcc,0x3e,0xf4,0x90,0x37, 0xef,0x5f,0x30,0x1,0x50,0xb,0x29,0x16,0x8b,0x81,0x43,0x1f,0xf2,0xf0,0x81,0x2f, 0x5e,0x8b,0xf3,0x3a,0xa0,0x48,0xbd,0x2e,0xf9,0xaf,0x8f,0x8f,0x43,0x4f,0xf,0x37, 0xdc,0x75,0x17,0x1d,0xcb,0x96,0x55,0x3d,0xc8,0x2b,0x2e,0xba,0xc8,0x7c,0x38,0xa4, 0x56,0x1,0x90,0xcc,0x98,0x6f,0x39,0x2e,0x35,0xb4,0xb4,0x70,0xd5,0xdf,0xff,0x3d, 0x85,0x45,0x8b,0xd8,0x3f,0x3c,0x1c,0xd0,0x62,0x23,0xb3,0x35,0xa1,0xf0,0xe,0xcd, 0x28,0x7d,0x94,0xf7,0x33,0xdf,0xfd,0x2e,0x56,0x36,0xeb,0x31,0xbe,0x7c,0xa8,0xa3, 0x32,0x45,0x9a,0x0,0xf9,0x6b,0x49,0x2d,0x16,0x22,0x0,0xfb,0x1,0x46,0x1b,0x20, 0x2d,0xf4,0xf4,0x8b,0x10,0xf4,0x4d,0x4d,0xc1,0xb2,0x65,0xdc,0xf8,0x4f,0xff,0x44, 0xa3,0x3c,0x8c,0x59,0x25,0xad,0x38,0xef,0xbc,0xe0,0xc9,0x1b,0x59,0x67,0x2d,0xa4, 0x7a,0xe2,0xb2,0xcc,0x79,0x52,0x43,0x6b,0x2b,0xef,0xf8,0xf4,0xa7,0xc9,0x75,0x77, 0xf3,0x9a,0x7b,0xce,0x42,0x3d,0x45,0x14,0x38,0x61,0xa4,0x8,0xb2,0xef,0x99,0xaa, 0x44,0x42,0x90,0xd9,0xb9,0x93,0x52,0x5f,0x1f,0x9,0x9c,0xe3,0xbe,0x92,0xf9,0xb, 0x6a,0x2,0x2c,0x21,0x9c,0xc5,0x20,0x4d,0x2,0x7d,0x36,0xcd,0xc0,0x0,0x9f,0xbf, 0x60,0x30,0x3,0xa3,0xb3,0xb3,0xcc,0xb5,0xb4,0xcc,0x8b,0xf9,0x1e,0xa9,0xc2,0xa6, 0xb6,0xa9,0x16,0x12,0x22,0x70,0xcc,0x2c,0x3f,0x38,0x38,0xbf,0xf6,0xe1,0x17,0x82, 0xa1,0x54,0xca,0xc7,0x50,0x75,0xec,0x2c,0x13,0xe3,0xd,0xf7,0xa5,0xbe,0x3e,0x72, 0xbb,0x76,0x79,0xc,0xd7,0xaf,0x38,0x14,0x4b,0x0,0x10,0x82,0x52,0xa9,0xe4,0x83, 0x9e,0x48,0x26,0xab,0xc2,0xa0,0xb,0x85,0xfb,0x9b,0xce,0xe5,0x18,0x2a,0x14,0x78, 0xf7,0x9d,0x77,0xd2,0xd8,0xd6,0x36,0x8f,0x61,0x85,0xf4,0xfe,0xfd,0x7e,0xa4,0x51, 0x99,0x57,0xb,0xe9,0x48,0x55,0x2a,0x31,0xbd,0x63,0xc7,0xbc,0xda,0x28,0xa9,0xa1, 0xb5,0x95,0x4b,0x3e,0xf2,0x11,0xde,0x48,0xa7,0x99,0xcd,0x66,0xcd,0xc,0xd6,0x84, 0x42,0x3f,0x1f,0x98,0xb0,0x6d,0x98,0x9c,0x64,0xee,0x81,0x7,0x3c,0x4d,0x4f,0xe0, 0xcc,0xb8,0x54,0x61,0x98,0x17,0x2,0xa8,0xb3,0x0,0xa0,0x2a,0x2f,0x5f,0x18,0xee, 0x7d,0xe,0xa2,0x10,0xbc,0x3e,0x39,0xc9,0x3b,0x3f,0xf1,0x9,0x96,0x9e,0x76,0xda, 0x7c,0xc6,0x13,0x80,0xe9,0x5f,0xfc,0xc2,0x27,0x64,0xf3,0xb5,0xdd,0x96,0x36,0xe8, 0x9,0xdb,0x26,0xfd,0xcc,0x33,0x64,0xf,0x1e,0x9c,0x77,0x5b,0x1,0xba,0x56,0xaf, 0xe6,0xf2,0x4f,0x7e,0x92,0x57,0x87,0x87,0x29,0xba,0x6b,0x2c,0x96,0x66,0xd7,0xa5, 0xe7,0xef,0xcd,0x4,0x14,0x9f,0x40,0x64,0x32,0xcc,0x3d,0xf8,0x60,0xc0,0xee,0xcb, 0x15,0xd9,0x5,0x9f,0x5,0x58,0x42,0x78,0x9a,0xae,0x7a,0xf6,0x26,0x2f,0x3f,0x20, 0x18,0x6,0xa7,0xf0,0xe8,0xf4,0x34,0x67,0x5e,0x7b,0x2d,0xa7,0x5d,0x76,0xd9,0xfc, 0x46,0x12,0xc8,0x8f,0x8d,0x31,0xf9,0xe4,0x93,0xe5,0xf2,0x75,0xe4,0xa9,0x85,0x14, 0xcd,0x53,0x5,0x7f,0x64,0xdb,0x36,0xb2,0x7,0xe,0xcc,0xbb,0xcd,0x0,0x3d,0xe7, 0x9c,0xc3,0xe9,0x37,0xde,0x48,0xdf,0xe4,0xa4,0x4f,0xd0,0x74,0xdf,0x49,0xf7,0xaf, 0x2c,0xdb,0x26,0xfb,0xa3,0x1f,0x21,0x46,0x46,0x7c,0xcc,0x56,0x9d,0xbf,0x5,0x13, 0x0,0x49,0x96,0x10,0x14,0x25,0x73,0x4d,0xc7,0xbd,0x95,0x81,0x12,0x1a,0xe4,0xeb, 0xd7,0x5c,0x2e,0x47,0xa1,0xa7,0x87,0xcd,0x1f,0xf9,0x48,0x8d,0x43,0x57,0xa6,0xd2, 0xdc,0x1c,0x7d,0x5b,0xb7,0x52,0x32,0x4c,0x53,0xbd,0x76,0xd6,0x42,0x86,0x81,0xc7, 0xb6,0x11,0xe9,0x34,0xc3,0x5f,0xf8,0x2,0xa3,0xdb,0xb6,0x61,0x67,0x32,0xf3,0x6e, 0xff,0x39,0x37,0xdd,0x44,0x7a,0xf1,0x62,0xa6,0xb3,0xd9,0xf2,0x96,0xb7,0xe2,0x1c, 0xfa,0x84,0xc1,0x75,0x14,0xb3,0x3f,0xfe,0x31,0xa5,0x43,0x87,0x2,0xcc,0xb7,0x2c, 0xcb,0x59,0x20,0x4a,0x24,0x48,0x24,0x13,0x24,0x92,0xc9,0x58,0xab,0xa1,0xb1,0x7d, 0x0,0x13,0xbc,0xeb,0xa6,0x20,0x70,0xaf,0xda,0x31,0xb7,0x8c,0x81,0x54,0x8a,0x77, 0xdd,0x71,0xc7,0x7c,0xc7,0x8e,0xd9,0x7d,0xfb,0xd8,0x77,0xdb,0x6d,0x64,0xdc,0x77, 0x17,0x2,0x8c,0x5f,0x0,0x13,0x60,0xea,0x93,0x65,0xdb,0x64,0x5e,0x7a,0x89,0x63, 0x77,0xdc,0x41,0x6e,0x1,0xd0,0xe0,0xb2,0x3b,0xee,0xe0,0x90,0xfb,0xea,0xbd,0x6f, 0xca,0x27,0x13,0x28,0x5e,0x7f,0xe1,0xe7,0x3f,0xa7,0xf8,0xea,0xab,0x7e,0xa6,0x27, 0x12,0x58,0xc9,0x4,0x56,0x22,0x41,0xc9,0xfd,0x25,0x91,0x80,0x84,0x15,0xb,0x2, 0x62,0xfb,0x0,0x42,0xd3,0x6e,0x61,0x18,0x6c,0x75,0x81,0xc3,0xe7,0xd4,0xb8,0xe9, 0x66,0xb2,0x59,0x4e,0xbf,0xf6,0x5a,0x96,0x9e,0x7e,0xfa,0xbc,0x6,0x6d,0xe2,0x67, 0x3f,0xe3,0xd0,0x67,0x3f,0xeb,0x68,0xbe,0x3e,0x2d,0x5d,0xa8,0x69,0xa0,0x6a,0x6, 0x74,0x48,0x2e,0x95,0x10,0xe9,0x34,0x23,0x9f,0xff,0x3c,0xe9,0xa7,0x9f,0x9e,0x57, 0x5f,0x5a,0x7b,0x7a,0xe8,0xbd,0xe1,0x6,0x86,0x66,0x66,0x8c,0x70,0x2f,0x85,0xa2, 0xb8,0x77,0x2f,0xf9,0x5d,0xbb,0xfc,0x4c,0x4f,0x26,0xb0,0x92,0x16,0x24,0x13,0xce, 0x95,0x48,0x40,0xd2,0x72,0xe2,0xeb,0xe2,0x19,0x81,0x48,0x1,0x90,0x45,0x48,0x1f, 0xc0,0xe7,0xb1,0x6a,0xf3,0x51,0x13,0x12,0xa8,0x33,0x4,0x6c,0x9b,0x61,0xdb,0xe6, 0x6d,0x7f,0xfa,0xa7,0xf3,0x1a,0xb0,0xa3,0xf7,0xde,0x4b,0xff,0xbf,0xfe,0x6b,0x0, 0xf2,0x7d,0x4e,0xd4,0x7c,0xa7,0x81,0x9a,0x70,0xfb,0xfa,0xa8,0x2d,0x64,0x4d,0xde, 0x7d,0x37,0xd3,0xdf,0xfd,0xee,0xbc,0xfa,0x74,0xc6,0xb5,0xd7,0x32,0x58,0x28,0xf8, 0x99,0xaf,0xf4,0xa7,0xb4,0x77,0x2f,0xb9,0xc7,0x1e,0xb,0x67,0xba,0x4f,0x20,0xca, 0xf1,0x71,0xf6,0xc3,0x62,0x9b,0x0,0x93,0xe7,0x1f,0x80,0x48,0xc3,0x42,0x91,0x7c, 0x96,0xca,0x66,0x59,0x77,0xc3,0xd,0xf3,0x9a,0xf2,0x1d,0xbd,0xe7,0x1e,0x46,0x1f, 0x7e,0x38,0xb0,0x60,0x12,0x86,0x38,0x35,0xb,0x80,0x36,0x1f,0x17,0x4a,0xf9,0x6a, 0x5f,0xa5,0xa9,0x48,0xff,0xf4,0xa7,0xf3,0x12,0x82,0xfa,0xd6,0x56,0xd6,0xdd,0x72, 0xb,0x43,0xae,0x2f,0xa3,0x9a,0x82,0xc2,0xfe,0xd7,0xc8,0xed,0x78,0xc2,0x61,0xac, 0x84,0x76,0xc9,0xf4,0x44,0x2,0x2b,0x99,0x2c,0x33,0x3d,0xa9,0x9,0xc2,0x7c,0x7d, 0x0,0x50,0x10,0xc0,0x20,0x4,0xba,0x19,0x30,0xae,0xf9,0xbb,0x79,0xc7,0x2c,0x8b, 0x8d,0xee,0x56,0x6e,0x2d,0x34,0xbe,0x63,0x7,0xa3,0xff,0xf9,0x9f,0xfe,0x8d,0x94, 0xa,0xe,0xe7,0x42,0x38,0x81,0x61,0x42,0x96,0xd0,0x10,0x71,0xee,0xd1,0x47,0xc9, 0xec,0xde,0x5d,0x73,0xff,0x7a,0xaf,0xba,0x8a,0x54,0x6b,0xab,0xaf,0x5f,0xc5,0xfd, 0xfb,0xc9,0xef,0xdc,0xe9,0x42,0xbb,0xc3,0xfc,0x80,0xa6,0xbb,0x68,0x60,0x25,0x13, 0x94,0x12,0x8e,0x13,0xe8,0x5c,0xc9,0x85,0x9b,0x6,0xfa,0x6,0x59,0x15,0x86,0xa, 0x6b,0x3,0xf2,0xca,0x17,0xa,0xac,0xbd,0xfe,0xfa,0x9a,0xb5,0x7f,0xe6,0x95,0x57, 0xe8,0xff,0xf2,0x97,0x3,0x42,0xa6,0xb6,0x49,0xdf,0x80,0x5a,0x10,0x1f,0x40,0x35, 0x75,0x2a,0xc2,0xa8,0xc2,0xa1,0x84,0xa7,0xbf,0xf1,0xd,0x8a,0x3,0x3,0xb5,0xd5, 0x9,0x74,0x5d,0x7e,0x39,0xb3,0xee,0xe7,0xf7,0x8a,0x7,0xe,0x90,0xdf,0xf5,0xb3, 0xb2,0x66,0xbb,0xda,0x4e,0x22,0xa1,0x5c,0x65,0x86,0x3b,0xf7,0x49,0x5,0x19,0xe6, 0x89,0x0,0x3e,0x27,0xd0,0xb0,0x92,0xe7,0x9b,0x15,0x68,0x36,0x52,0x75,0xc4,0x44, 0xa9,0xc4,0x58,0x26,0xc3,0x39,0x7f,0xf0,0x7,0x35,0xd,0x4a,0x29,0x9d,0xa6,0xff, 0x4b,0x5f,0xa,0xf7,0xf2,0x75,0x7b,0xad,0xc1,0x74,0x4d,0xa4,0x30,0x5b,0x5d,0x83, 0x57,0x85,0xc2,0xb7,0xe7,0xa0,0xd4,0x3f,0xb9,0x75,0x2b,0x62,0x6e,0xae,0xa6,0x6a, 0x4f,0xbf,0xee,0x3a,0x8e,0xa7,0xd3,0x14,0xf,0x1d,0x24,0xff,0xd4,0x93,0x65,0xc6, 0x7b,0xd0,0x6f,0x95,0x19,0xec,0xa2,0x81,0xf,0xfa,0xd5,0xb8,0xf9,0xce,0x2,0xc0, 0xbf,0x21,0x54,0x9,0xf2,0xc3,0x7c,0x2,0x4b,0x8,0xba,0x2e,0xbe,0x98,0x8e,0x93, 0x4e,0xaa,0x69,0x50,0x8e,0xdd,0x7f,0x3f,0xb9,0xa1,0xa1,0x58,0x67,0xe,0x8c,0xfe, 0x49,0xd,0xa4,0x4e,0x3,0x55,0x21,0x33,0x6a,0xbf,0xe6,0xf3,0xd8,0x23,0x23,0xcc, 0x3e,0xf4,0x50,0x4d,0xf5,0xd6,0xb7,0xb6,0xd2,0xb4,0x66,0x35,0xf9,0xa7,0x76,0x3b, 0xcc,0xf4,0x98,0xae,0x30,0x3e,0x69,0x79,0xb0,0x5f,0x16,0x6,0xc5,0x3c,0xb8,0xc2, 0x91,0x48,0xc6,0x7b,0x31,0x26,0xd6,0x6e,0x60,0xd8,0xba,0xbe,0x69,0x87,0x4f,0xd7, 0x9c,0x5c,0xb1,0xc8,0xaa,0xb7,0xbf,0xbd,0xa6,0x1,0x99,0x79,0xf9,0x65,0x46,0xb6, 0x6f,0x37,0x42,0xbe,0xba,0x55,0xaa,0x22,0xce,0x42,0x6d,0x7,0x87,0xc1,0x7c,0x58, 0x9c,0xcf,0x1f,0x78,0xe4,0x11,0x8a,0xfd,0xfd,0x35,0x55,0xbd,0xf8,0xb2,0xcb,0x49, 0xfb,0x60,0xbe,0xcc,0x54,0x92,0x9a,0x3,0xa8,0xce,0xf9,0x5d,0xe1,0xb0,0x92,0x38, 0x42,0x92,0x58,0x0,0x27,0xd0,0x77,0x24,0xcc,0xb6,0xbd,0x1d,0x41,0x34,0xc8,0xd7, 0x77,0x0,0x55,0xd,0x9d,0xca,0x66,0x39,0x7d,0xf3,0xe6,0x9a,0x6,0xe3,0xd8,0xb7, 0xbf,0x6d,0xdc,0x53,0xd0,0xcf,0x1c,0x4,0x60,0x5a,0x9d,0xc3,0xd7,0x40,0x81,0x83, 0x19,0xba,0x5f,0x61,0x32,0x39,0x1a,0x42,0xcc,0x7e,0xeb,0x5b,0x35,0xd5,0xbd,0xf2, 0xda,0x6b,0x99,0xeb,0xea,0xf2,0x34,0xdf,0x43,0x81,0x80,0xc6,0xbb,0x8c,0x4f,0x96, 0x1d,0x43,0x7,0xf6,0x13,0x60,0xb9,0x69,0x62,0x50,0x2c,0x1f,0x40,0xe,0x84,0xf7, 0xd5,0xf,0xc3,0xfa,0xbe,0xea,0x80,0xa9,0x3e,0x41,0xcf,0x65,0x97,0xd1,0xd8,0xde, 0x5e,0xf5,0x40,0xcc,0x1d,0x3e,0xcc,0xcc,0x2f,0x7f,0x69,0x14,0xb2,0x6a,0x2e,0x3b, 0x9d,0xae,0xba,0xee,0xec,0xaf,0x7e,0x65,0xdc,0xf9,0x54,0xd1,0xc7,0xb4,0x7d,0xeb, 0x21,0x60,0xa9,0x44,0xfe,0x95,0x57,0x28,0xf6,0xf5,0x55,0x5d,0x37,0x40,0xe3,0xa6, 0x4d,0x1a,0xa3,0x13,0x58,0x96,0xee,0xb,0x94,0x21,0xdf,0x8b,0xb3,0x34,0x1,0xa9, 0x15,0x1,0xd4,0x3,0x5,0xea,0x92,0xa4,0x51,0x1b,0x43,0xee,0xe5,0xd5,0x75,0xfe, 0xf9,0x35,0xd,0xc2,0xf0,0x43,0xf,0x99,0xeb,0x8b,0x61,0x8e,0xd4,0xe3,0x56,0xd3, 0x8f,0x3d,0x56,0x55,0xbd,0xb3,0x8f,0x3f,0x1e,0xa,0xf1,0x95,0x4e,0xef,0xe8,0xe8, 0x93,0xf9,0xe1,0xf,0x6b,0xea,0x7b,0xe3,0xa6,0x4d,0x7e,0x46,0x9b,0x7c,0x1,0x43, 0x5c,0x42,0x41,0x8,0x2b,0x19,0xef,0x44,0xa4,0x51,0x0,0xd4,0xdd,0x24,0x93,0xf, 0xa0,0xdb,0xdc,0x0,0xf3,0xdd,0xb8,0x62,0xa9,0x44,0xb7,0xf6,0x69,0xb6,0xb8,0x34, 0xf9,0xe4,0x93,0xa1,0xf0,0xaa,0xc6,0xc9,0x95,0x3f,0x75,0xcd,0x5c,0x15,0x8c,0xb1, 0xfb,0xee,0x8b,0x8d,0x2,0x76,0x3a,0xcd,0xd4,0x77,0xbe,0x13,0x44,0x1c,0xc3,0xcc, 0xc3,0x32,0x20,0x84,0xbe,0x1a,0x59,0x78,0xfe,0xf9,0x9a,0xfa,0xbe,0xf8,0xed,0x9b, 0xc8,0x5a,0x16,0xc1,0x19,0x80,0x2a,0xc,0x7e,0x1f,0xc1,0x6f,0x12,0xdc,0xbc,0xb5, 0x22,0x40,0x60,0x3b,0x51,0xd1,0x7e,0x9f,0x56,0xea,0x2b,0x7f,0x5a,0x9a,0xb9,0x42, 0x81,0x53,0xde,0xf2,0x96,0xaa,0x7,0x60,0x72,0xf7,0x6e,0x4a,0x33,0x33,0xc6,0x8d, 0x18,0xe3,0xd1,0x32,0x13,0xa3,0xdc,0x36,0x95,0x66,0x66,0x18,0xf8,0xeb,0xbf,0xa6, 0x30,0x3c,0x1c,0x59,0xa7,0x9d,0x4e,0x33,0xf4,0xa9,0x4f,0x51,0x3a,0x7e,0x3c,0x12, 0xf2,0x8d,0xe,0xa1,0x61,0xa1,0xc8,0xb2,0x6d,0xc4,0xcc,0xc,0xf9,0x1a,0x84,0xa0, 0xeb,0xbc,0xf5,0xe4,0xdd,0xdd,0x3d,0xb3,0xd6,0x4b,0xc6,0x1b,0xd0,0xc1,0x52,0x4, 0x26,0x6,0x45,0x9a,0x0,0xf0,0x3b,0x81,0x95,0xec,0xad,0x6f,0x4d,0x40,0x8,0xda, 0x6b,0xdc,0xf4,0x99,0x7c,0xf2,0x49,0x9f,0x26,0xe9,0x9a,0x1d,0x10,0x84,0x88,0xb5, 0x1,0xcb,0xb6,0xc9,0x1d,0x3a,0x44,0xff,0x87,0x3f,0xcc,0xf8,0x7d,0xf7,0x5,0x4, 0xc1,0x4e,0xa7,0x49,0x6d,0xdf,0xce,0x91,0x9b,0x6f,0x26,0x7f,0xe8,0x90,0x19,0xe2, 0xf5,0xb0,0x86,0x38,0x61,0x5f,0xe,0x43,0x8,0x8a,0xaf,0xbc,0x52,0xd3,0x18,0xd4, 0x9f,0xb7,0x3e,0xa8,0xf5,0x96,0xc6,0x78,0x4b,0x5d,0x10,0x32,0xa4,0x8b,0xb1,0x14, 0x60,0x7c,0x31,0xc4,0x68,0x2,0x6c,0xe7,0x15,0x71,0x84,0x88,0xfe,0x78,0xb2,0x12, 0x57,0x57,0xe3,0x39,0xbf,0xcc,0x81,0x3,0x65,0xf,0xbe,0xd2,0x2b,0x65,0x2e,0x99, 0xde,0x9c,0x51,0x5f,0x9d,0xb2,0x53,0x29,0x26,0xee,0xbd,0x97,0x89,0x6f,0x7d,0x8b, 0x86,0x65,0xcb,0xa8,0x5f,0xbe,0x9c,0xe2,0xf0,0x30,0xc5,0xe1,0x61,0xf4,0x8f,0x5a, 0x19,0x3f,0xd,0xab,0xd5,0xef,0x39,0xc8,0x86,0xb7,0x79,0xd4,0x3c,0x85,0x1a,0x5, 0xc0,0x72,0x67,0x2,0x96,0x44,0x1,0xb9,0xdf,0xaf,0xdd,0x3b,0x67,0x0,0xdc,0x5f, 0x84,0xbb,0x8b,0x17,0x6f,0x11,0x8,0x22,0x4,0x40,0x9f,0x5,0x78,0x1e,0x3e,0xda, 0x31,0x31,0xaf,0xc5,0xc1,0x81,0x5f,0x59,0x3,0xfc,0x3,0xcc,0xed,0xdf,0xef,0xd, 0x72,0x18,0x43,0xf5,0x38,0xf5,0x55,0xf4,0x4a,0x9f,0x5f,0x2d,0x1c,0x3f,0x4e,0xf1, 0xf8,0xf1,0xe8,0x57,0xda,0x94,0x17,0x4c,0x7d,0xcc,0x85,0xb2,0xc0,0x68,0x79,0xe5, 0xa1,0xc,0x67,0x8c,0x4,0x90,0x20,0xff,0xe2,0x8b,0xd5,0x76,0x1f,0x80,0xa5,0x97, 0xbf,0x9d,0xf4,0xf3,0xcf,0x28,0x1a,0x6d,0x79,0xe5,0x4b,0x26,0x5b,0x8a,0x10,0x48, 0xc8,0xb7,0x94,0xe7,0x71,0x66,0x1,0x46,0x1,0x30,0xce,0x2,0x6c,0x9b,0xba,0x44, 0xc2,0xff,0x95,0xb,0xa7,0x46,0xe7,0x47,0xbd,0xdc,0x81,0x2f,0x94,0x7c,0xdf,0x25, 0x8e,0x45,0x73,0x7,0xf,0xe2,0xfb,0x9e,0x50,0x88,0x90,0xc5,0x79,0x2d,0x5d,0x86, 0xd5,0x61,0xb0,0xd4,0xb2,0xb5,0xf4,0x3e,0x14,0xd0,0xde,0x7d,0xf4,0x31,0x5e,0x1d, 0x3,0xbd,0x3c,0xa9,0xa5,0x76,0x89,0xe2,0xe1,0xc3,0x14,0x7,0xfa,0x29,0xbc,0xfc, 0x4b,0xea,0xd7,0x57,0x37,0x1b,0xca,0x41,0x79,0x2a,0xa7,0x32,0x3b,0xa1,0xd4,0xa1, 0x30,0xda,0x4a,0x28,0xe3,0x61,0x69,0x63,0x10,0x41,0xb1,0x4c,0x80,0xcf,0x7,0x50, 0x3b,0xab,0xfe,0x2a,0x61,0xc9,0x9c,0xbc,0x9a,0x3e,0x26,0x95,0xe4,0xc1,0x8,0x43, 0x79,0xfa,0xc0,0xcb,0x34,0x1e,0x2a,0xc5,0xd0,0x68,0x3d,0xec,0x95,0xeb,0x3d,0x52, 0xbe,0x4c,0xa2,0x33,0xde,0xcd,0x6b,0xa9,0xbf,0x81,0x30,0xd8,0x93,0x93,0x14,0xf6, 0xbe,0x8a,0xc8,0x66,0xb1,0x12,0x9,0xc4,0xf4,0x74,0x35,0x43,0x0,0x38,0x2,0x90, 0x34,0x69,0xb9,0x2,0xf9,0x92,0xd9,0x9e,0x9,0x50,0x5,0x22,0x1e,0x0,0x44,0xb, 0x80,0x47,0x12,0xfe,0x6d,0xbb,0xdc,0x59,0xcd,0xe6,0xa,0x25,0x2c,0x7,0x68,0xe5, 0x5b,0xdf,0x5a,0x75,0xc7,0xbd,0x29,0xa6,0x52,0x9e,0xce,0x3c,0x9f,0x3f,0x10,0x3, 0xf2,0xab,0x8a,0x73,0x85,0x4c,0x45,0x32,0xa3,0x90,0xb9,0x61,0x29,0x20,0x58,0x16, 0x22,0x9b,0xa1,0x78,0xf0,0x20,0xf6,0xd8,0x98,0x62,0xa7,0xab,0x1d,0x1,0x87,0x96, 0x5c,0x76,0x39,0x53,0x5f,0xf9,0x42,0xa8,0xbd,0x37,0x22,0x3,0x76,0xd9,0x47,0x88, 0xf5,0x6a,0x68,0xc,0x13,0x0,0x94,0xa7,0x78,0xaa,0x58,0x29,0x36,0x32,0x20,0x14, 0xca,0xf3,0x9a,0x48,0x13,0x80,0x38,0xda,0x1d,0x80,0x75,0xb5,0xed,0x21,0xe9,0x55, 0x4d,0xb6,0xb4,0x38,0x5f,0xb9,0xae,0x90,0xa9,0x7d,0x54,0xd3,0x9,0xcb,0xa2,0xd4, 0xdf,0x4f,0x69,0xf0,0xa8,0x33,0xfb,0xd0,0x35,0xb5,0x6,0x29,0xb0,0xa0,0xcc,0x7c, 0x97,0xa1,0x46,0xe6,0xab,0xe,0xa2,0xfa,0x3c,0x66,0x9d,0x91,0x8,0xe0,0x49,0xbd, 0x49,0x0,0x30,0xdb,0x61,0xf5,0xb5,0xf0,0x9a,0xbe,0xd0,0x21,0xa7,0x7b,0x6e,0xd8, 0x9b,0x71,0x28,0xda,0xa8,0x33,0xdb,0xf4,0x61,0x28,0xd3,0x6b,0xd7,0x3e,0x81,0xf6, 0x1e,0x45,0x30,0x5e,0x8b,0x43,0x4b,0x67,0x1,0xf6,0xf8,0x38,0xc5,0xc3,0x87,0x21, 0x9f,0x8b,0x84,0xe9,0xaa,0xc9,0xa2,0x7a,0xe6,0xdb,0xca,0xbd,0x34,0x9,0x15,0x28, 0x52,0x0,0x6c,0xd9,0xe,0x75,0x1a,0xa8,0xda,0x4f,0x3,0x34,0x27,0x14,0xb8,0x9c, 0x7a,0xfe,0x79,0x16,0x55,0x39,0x13,0xc8,0x56,0xf0,0x35,0x4c,0xff,0x64,0xc1,0x22, 0xbe,0x53,0x18,0xf8,0xf8,0x94,0xc1,0xaf,0xd0,0x3f,0x82,0x69,0x12,0x10,0x31,0x3d, 0x4d,0x71,0x60,0x0,0x3b,0x35,0xad,0x30,0x3,0x6f,0xf0,0x55,0x66,0xcd,0x9,0x41, 0x43,0x55,0xa3,0x0,0xf9,0x67,0x9f,0xf1,0x34,0x39,0xae,0xe6,0x27,0x13,0x9,0x6c, 0xd9,0x86,0x85,0x30,0x1,0xea,0x94,0xcf,0x43,0x2,0xc3,0x80,0x49,0xfb,0xef,0x63, 0x84,0xf2,0xbc,0x1a,0x4a,0xb6,0xb7,0x7b,0x5f,0x25,0xf3,0xd9,0x7a,0xb7,0xe,0xf4, 0x3a,0x22,0x20,0x5f,0xd5,0x6e,0x7d,0xae,0x6f,0x2c,0x43,0xe9,0x97,0xe,0xf9,0xb2, 0x2d,0x22,0x9d,0xa6,0xd4,0xd7,0xe7,0x38,0x76,0x1,0x4d,0xd7,0x98,0x6f,0x59,0xd8, 0x96,0x45,0xa2,0xb3,0xab,0xea,0x71,0x88,0xb4,0xf9,0x26,0xd8,0x4f,0x58,0x24,0x84, 0xe2,0x8b,0xc5,0x34,0xc1,0xb1,0x10,0x20,0xb0,0xb5,0x6a,0xf9,0xff,0x5f,0x8f,0x8f, 0xd4,0xb5,0x82,0x1a,0x4,0xa0,0xfb,0xac,0xb3,0x98,0x2d,0x16,0xe9,0x92,0xff,0x29, 0x5b,0xb3,0xe1,0x61,0x5a,0x6e,0x62,0xb6,0xda,0x32,0xa1,0x68,0x37,0x4a,0x3a,0x5f, 0x19,0x5a,0x9c,0xcf,0xf1,0xcb,0xe5,0x28,0x1e,0x3d,0x8a,0x18,0x1d,0x55,0xa6,0x5b, 0x1a,0xf3,0xd,0xe,0xdb,0x8c,0xc0,0xf9,0xa7,0x1b,0xd5,0x92,0x45,0x55,0xcc,0xf, 0x98,0xad,0x98,0xa6,0x27,0x72,0x2f,0x40,0x92,0x70,0x8f,0x2c,0x9b,0xfe,0x19,0x44, 0xd4,0x19,0xbd,0xc9,0xe7,0x9e,0xab,0xbe,0xe3,0x40,0xd3,0xda,0xb5,0xfe,0xa5,0x55, 0xc3,0x4e,0x5b,0xe0,0x8a,0x78,0x2d,0x4d,0x2e,0xdf,0x86,0xee,0xef,0x6b,0xcb,0xd9, 0xea,0x66,0x93,0x98,0x9e,0xa6,0xb0,0x77,0x2f,0xf9,0x97,0x5e,0xa,0x30,0x5f,0x67, 0x80,0x37,0xe8,0x8a,0xf4,0x25,0x6a,0x61,0x3e,0x50,0x78,0xfe,0xd9,0xea,0x98,0xaf, 0x5d,0x9,0x55,0x20,0x22,0x28,0xd6,0x2c,0x40,0x28,0x1f,0x89,0xaa,0x34,0xe7,0xf6, 0xa0,0x12,0x28,0xd6,0x30,0xff,0x5,0x68,0xbb,0xe8,0x22,0x8a,0xee,0x6a,0x20,0x68, 0x1a,0x6d,0x80,0x6b,0x93,0xa3,0x48,0x85,0x76,0xea,0x65,0xa0,0x95,0x61,0x4f,0x4f, 0x63,0x8f,0x8c,0x20,0x66,0x66,0x8c,0xd6,0xd4,0x2b,0xce,0x2b,0xca,0x60,0xa,0x12, 0x16,0x75,0x97,0xd7,0x76,0x1a,0x4a,0xcc,0xa4,0x3c,0x41,0xb2,0xca,0x9d,0xf,0x9a, 0x19,0xca,0xf7,0x96,0x5,0x8,0xca,0xc2,0x52,0xab,0xf,0xa0,0x22,0x80,0x85,0x33, 0x28,0x49,0x69,0x6,0x94,0x81,0xc,0xc0,0xbc,0x6,0xc3,0xb3,0x35,0xae,0x83,0x77, 0x5f,0x7c,0x31,0xfd,0xdf,0xfa,0x16,0xcd,0xf2,0x54,0x8b,0xb4,0xdb,0x4,0x61,0x1b, 0x82,0xf6,0xdd,0x28,0x14,0xea,0x73,0x25,0xaf,0xcf,0x79,0x2c,0x95,0x28,0x4d,0x4f, 0x63,0xf,0xd,0x81,0xfb,0xbf,0x12,0xf5,0x2b,0x2e,0xf4,0x63,0x59,0x64,0x80,0xb6, 0x1a,0x5,0xa0,0xb8,0x7f,0xaf,0x56,0x76,0x22,0x1a,0x9,0x2c,0xcb,0x7d,0x5d,0x4c, 0x6d,0x63,0xe5,0x7a,0xe2,0xad,0x4,0x82,0x37,0xb,0xa8,0xb4,0x1,0x54,0x7e,0xe8, 0xf8,0x2,0x53,0xcf,0x3e,0x4b,0xd7,0x25,0x97,0x54,0xd5,0xf9,0x55,0xbf,0xfb,0xbb, 0xbc,0xda,0xdc,0x4c,0xb3,0xfc,0x1a,0x67,0x85,0x3d,0x7,0xf5,0x1f,0x54,0xe8,0xa8, 0xe1,0x4b,0x27,0xd3,0xe8,0x9b,0x3d,0xd9,0x2c,0xc5,0xb1,0x31,0x44,0x2a,0xe5,0x6c, 0xed,0x12,0x31,0x76,0x96,0xa2,0xed,0xa6,0xa9,0x9e,0xf2,0x3b,0xd5,0xd1,0xc9,0xa9, 0xd7,0x54,0x7f,0x1a,0xba,0xf0,0xfc,0xb3,0xb2,0xa2,0xf2,0xaf,0x4f,0x12,0xd,0x48, 0x90,0xb0,0xb0,0xca,0x8e,0x99,0x99,0x27,0x6,0x8a,0x75,0x22,0xc8,0x1b,0xb4,0x4a, 0x5b,0xc2,0xda,0xb,0x21,0x8,0xc1,0xcc,0xab,0xaf,0x56,0x3d,0x0,0x0,0x1d,0x57, 0x5d,0xe5,0xec,0x25,0xe8,0xdb,0xcc,0x9a,0xd,0x8f,0x3a,0x27,0x10,0x76,0x9e,0xc0, 0xb2,0x6d,0x28,0x16,0x29,0x4d,0x4e,0x52,0x38,0x78,0x90,0xc2,0xc1,0x83,0x88,0xc9, 0x49,0xef,0x1f,0x63,0x4b,0x32,0x69,0xbf,0xa5,0x32,0x3,0x89,0x48,0x56,0x80,0x29, 0x79,0x2c,0x1a,0x7e,0xbf,0xb6,0xa3,0xf0,0xc5,0xd7,0xf6,0x86,0xef,0x4,0x6,0x84, 0x41,0x69,0x4b,0xa2,0xbc,0x4,0x1c,0x93,0xff,0xf1,0x9c,0x40,0x6f,0x16,0xa0,0x31, 0x20,0xec,0xa3,0x10,0x42,0x71,0xc0,0xa6,0x6a,0x7c,0x79,0xf2,0xac,0x5b,0x6f,0x65, 0x34,0x9f,0x37,0x3a,0x6a,0x1e,0x73,0x95,0x76,0x4,0x5e,0x4b,0xf,0x39,0x45,0x64, 0xa7,0x52,0x14,0x7,0x7,0xc9,0xbf,0xf6,0x1a,0xa5,0xc1,0x41,0x84,0x44,0x19,0x2, 0xe3,0xe9,0x8b,0x37,0x41,0x3f,0x9a,0x30,0xa8,0xda,0x39,0x22,0x4,0xbd,0x1f,0xfe, 0x8b,0x9a,0xfa,0x5e,0x78,0xe1,0xd9,0x68,0xbb,0x6f,0xba,0x4f,0x58,0x24,0xd,0x4e, 0x61,0x25,0x8a,0xe5,0x3,0x24,0x92,0x49,0xc7,0x23,0xd6,0x6c,0xa8,0xf7,0xd9,0xd8, 0x88,0xf5,0xf8,0xd1,0x47,0x1e,0xa1,0x98,0x4a,0x51,0xe7,0x7e,0x2d,0x33,0x2e,0x2d, 0x3e,0xe7,0x1c,0x9a,0xdf,0xfa,0x56,0xb2,0x2f,0xbc,0x40,0x53,0x22,0x11,0xb9,0x52, 0x17,0x30,0x43,0x1a,0xe4,0xdb,0x33,0x33,0x88,0x74,0x1a,0x31,0x3b,0xeb,0x20,0x0, 0x46,0x5,0xf2,0x91,0xe9,0x99,0xd1,0xf1,0x93,0xda,0x9f,0x28,0xa3,0x43,0x16,0xb0, 0x2e,0xbb,0x9c,0xf6,0xf3,0xaa,0x9f,0x1,0x88,0x99,0x14,0xb9,0x27,0x7e,0xe2,0xd3, 0xf6,0x8a,0xcc,0x57,0x55,0x5e,0x38,0x48,0x10,0xcb,0x1,0x20,0x86,0x9,0xf0,0x7a, 0x1e,0x2,0xf9,0xc6,0x78,0x6d,0xda,0x36,0xfa,0xc8,0x23,0x55,0xf,0x4,0xc0,0x45, 0x9f,0xf9,0xc,0x23,0xc5,0x62,0x0,0xf2,0x7d,0x53,0x52,0x3,0xd4,0x53,0x2c,0x62, 0xcf,0xce,0x52,0x1a,0x1a,0xa2,0x70,0xf8,0x30,0xc5,0xe3,0xc7,0xb1,0xe5,0x47,0x99, 0x42,0xc8,0xc8,0x70,0x79,0x5f,0x49,0xfb,0x2d,0x77,0xe5,0xcd,0x8d,0x1f,0x12,0x82, 0x33,0x3f,0xf7,0x8f,0x35,0xf5,0x39,0xf7,0xf8,0x4f,0x34,0x47,0xce,0x0,0xf9,0x98, 0xc3,0x9,0x7d,0xf7,0x30,0x6,0xc5,0x3e,0x14,0xaa,0x7f,0xbc,0x30,0x70,0x62,0x57, 0x5b,0x1b,0x90,0x66,0x40,0xd8,0x36,0x63,0x35,0xa,0xc0,0xa2,0x73,0xce,0x61,0xd5, 0xad,0xb7,0x32,0xee,0xae,0x43,0xf8,0xe6,0xef,0xca,0x9a,0x0,0xb6,0x8d,0xc8,0x66, 0xb1,0xa7,0xa7,0x29,0xe,0xf,0x93,0xef,0xeb,0xa3,0x38,0x34,0x84,0xed,0x6e,0x2d, 0x47,0x8d,0x5f,0x94,0xf6,0xfb,0xe2,0xa2,0xb4,0x5f,0x29,0x6c,0x54,0x8,0xba,0x3f, 0xf4,0x17,0x35,0x69,0x3f,0x40,0xfe,0x89,0x9f,0x28,0x65,0x86,0x4f,0xf9,0x3c,0xd3, 0xa0,0xf9,0x8,0x5e,0xf2,0x44,0x3c,0xc,0x88,0x7f,0x2a,0x58,0xb7,0xfd,0xc2,0xff, 0xc6,0xb0,0x8,0xd3,0x46,0xdb,0x66,0xf4,0x87,0x3f,0x24,0x7b,0xe4,0x48,0x4d,0x3, 0x72,0xde,0x27,0x3e,0x41,0xf6,0xa4,0x93,0xc8,0x28,0x5f,0x29,0x13,0xb6,0x8d,0xc8, 0xe7,0xb1,0x67,0x67,0x29,0x8e,0x8f,0x53,0x38,0x76,0x8c,0xe2,0xf1,0xe3,0x94,0x26, 0x26,0xbc,0xf7,0xf2,0xa2,0x40,0x30,0xc0,0xdc,0xa8,0xf4,0x15,0xb5,0x1f,0x4f,0xfb, 0xe7,0x80,0xd9,0x53,0x56,0x71,0xea,0xa7,0xfe,0xa6,0xa6,0xbe,0x96,0x6,0x8f,0x92, 0x7f,0xe2,0xa7,0x78,0x82,0xa5,0x36,0x36,0x20,0xbd,0x66,0xe1,0x48,0xe8,0x82,0x59, 0x81,0x2a,0x1e,0xa,0x95,0xf7,0x28,0x1a,0x5d,0x9,0xf2,0x4d,0x66,0xe1,0xc8,0xb6, 0x6d,0x55,0xf,0x8,0x40,0x43,0x67,0x27,0x9b,0xee,0xbd,0x97,0xc1,0xb9,0x39,0x32, 0x2e,0xc3,0x8b,0x43,0x43,0x14,0x86,0x86,0x28,0x4d,0x4c,0x38,0x47,0xbe,0x8b,0x45, 0x5f,0x1e,0x13,0x8c,0xc7,0xb5,0x8a,0x46,0xb4,0x88,0xd2,0x7e,0xca,0x76,0xff,0xa8, 0x2d,0x58,0xff,0xed,0xef,0x50,0xd7,0xd9,0x59,0x53,0x5f,0xb3,0xdf,0xbe,0xdb,0x63, 0x6e,0xa4,0xf6,0x1b,0x9d,0x4f,0x27,0x98,0x90,0x33,0x81,0x98,0x7d,0x8e,0x77,0x2c, 0x1c,0x8c,0x67,0xff,0x3,0x53,0x2d,0xf9,0x25,0x31,0xc5,0x2b,0x97,0xe1,0xe3,0xf7, 0xdf,0x5f,0xf3,0xca,0x60,0xd7,0xb9,0xe7,0x72,0xd1,0xd6,0xad,0x1c,0x49,0xa5,0xc8, 0x66,0xb3,0x8e,0x87,0xaf,0xf5,0x7d,0x5e,0xc,0xae,0x98,0x37,0x44,0xfb,0xdd,0x47, 0x39,0xe0,0x88,0x10,0x9c,0xf9,0xaf,0x5f,0xa3,0xad,0x46,0xe8,0x17,0x33,0x29,0xb2, 0xdb,0x1f,0x40,0xa,0x94,0xd7,0x30,0xbd,0x81,0x96,0xf3,0x27,0x7c,0x35,0xb0,0xfc, 0x1b,0x98,0xcd,0x19,0x28,0xd6,0x34,0x30,0x69,0x59,0x9e,0xcd,0x15,0x6,0xb8,0x8f, 0x82,0x7f,0x79,0x15,0x27,0x27,0x39,0xfa,0xd5,0xaf,0xd6,0x32,0x36,0x0,0x9c,0x7a, 0xcb,0x2d,0x6c,0xf8,0xe2,0x17,0x39,0x6,0xe4,0x23,0xd2,0x85,0x9,0x43,0x1c,0x73, 0x10,0x10,0xe,0x95,0xe1,0x32,0x8d,0xf,0x62,0x2d,0xf2,0xc0,0x80,0x2d,0x38,0xf5, 0x73,0xff,0xc8,0xf2,0x3f,0xfe,0x40,0x35,0x5d,0xf2,0x51,0xe6,0xbe,0xbb,0x11,0x33, 0x33,0x15,0x19,0xec,0x9,0x48,0x88,0x70,0xa8,0x26,0x20,0x81,0x55,0x9b,0x0,0x98, 0xde,0xb,0xf0,0x2d,0xa6,0x8,0xed,0x55,0xa8,0x52,0x9,0x8a,0x45,0x44,0xb1,0x88, 0x28,0x14,0x9c,0xdf,0x5c,0xe,0x3b,0x9b,0x75,0xae,0x74,0x1a,0x3b,0x9d,0xa6,0xef, 0x9f,0xff,0x99,0x6c,0x8d,0xef,0xcb,0x1,0x9c,0x79,0xdb,0x6d,0x9c,0x73,0xe7,0x9d, 0x1c,0x7,0x66,0x63,0xa4,0x37,0x9,0x43,0x35,0x68,0x1,0x41,0xf8,0x57,0xc3,0x29, 0x4,0x47,0x6c,0x41,0xef,0x1d,0x7f,0xcb,0xca,0xf,0xd7,0xfe,0xd9,0xbb,0xd2,0xe0, 0x51,0x32,0xf7,0xdd,0xed,0x31,0xbf,0x92,0xb7,0xef,0xdd,0x18,0x84,0xc3,0x9b,0xff, 0xbb,0xc5,0x54,0x12,0x80,0x58,0xc7,0xc2,0x45,0x2e,0x47,0x49,0x8b,0x33,0x5d,0x6a, 0x1b,0xf5,0xf3,0x4,0x0,0xc5,0xf1,0x71,0xe,0xdc,0x7e,0x3b,0xeb,0xff,0xfd,0xdf, 0x2b,0x34,0x2b,0x9c,0xce,0xf9,0xf4,0xa7,0x69,0xed,0xed,0xe5,0xc5,0x2d,0x5b,0x28, 0x0,0x8b,0x9,0x9a,0xab,0x30,0x32,0xa1,0x42,0xa8,0x30,0x44,0x38,0x7f,0x36,0x30, 0x2e,0x60,0x1a,0x38,0x73,0xdb,0xd7,0x59,0xf6,0x81,0xf,0xd6,0xdc,0x1f,0x80,0xf4, 0x3f,0x7e,0xc6,0xd1,0x7e,0xfd,0x3c,0x7f,0x98,0xe7,0xaf,0xa2,0x92,0x36,0xf0,0xe, 0x2,0x8,0x2c,0xac,0x58,0xaf,0x7,0x54,0x34,0x1,0xb5,0xda,0x57,0x3d,0x4e,0xd2, 0xe8,0xf6,0xed,0x8c,0x6e,0xdf,0x1e,0xa3,0xb4,0x70,0x5a,0x7d,0xcb,0x2d,0x5c,0xf5, 0xd2,0x4b,0x64,0xba,0xba,0x18,0x4,0xe4,0xf7,0x38,0xe2,0xd4,0x1f,0x46,0x26,0x61, 0xf6,0x3d,0xc4,0x81,0xff,0x34,0x70,0x44,0x40,0xae,0x77,0x15,0x1b,0x9f,0x7a,0x76, 0xde,0xcc,0xcf,0x3d,0xfe,0x13,0x77,0xea,0xe7,0x56,0xa4,0x2f,0xec,0xe8,0xd,0xc4, 0xf4,0xab,0xc0,0xbe,0xb2,0x26,0x11,0x7,0x1,0x42,0x4d,0x80,0xfa,0x7f,0xe7,0x6a, 0x11,0x6,0xb5,0x7d,0xea,0xbd,0x5,0xbc,0xd5,0x62,0xd,0x80,0x0,0x0,0xb,0xb9, 0x49,0x44,0x41,0x54,0xb6,0x65,0xb,0xc5,0xa9,0xa9,0x98,0xa5,0x98,0xa9,0x6b,0xc3, 0x6,0xae,0x7e,0xe3,0xd,0x4e,0xbe,0xe5,0x16,0x46,0x80,0x21,0x1c,0x4f,0x5c,0xaf, 0xcb,0x54,0x7f,0xd5,0xf0,0xf,0x64,0x80,0x41,0x21,0x18,0x12,0xb0,0xf8,0x83,0x7f, 0xc2,0xc6,0xa7,0x9f,0xa3,0xad,0xc6,0xbd,0x7e,0x49,0x62,0x26,0xc5,0xcc,0xdf,0xfe, 0x95,0xbf,0x81,0xfa,0xaf,0x2e,0x7,0x26,0xdf,0x40,0x6b,0xb3,0x8c,0x9a,0x97,0x13, 0xa8,0x33,0x5f,0xa7,0x48,0x8d,0x9,0x49,0x2f,0xa9,0x38,0x35,0xc5,0x2b,0xd7,0x5f, 0x1f,0x23,0x57,0x34,0xd5,0x77,0x75,0xb1,0xf1,0x9b,0xdf,0xe4,0xb2,0x1d,0x3b,0x68, 0xdb,0xbc,0x99,0x21,0xe0,0x18,0x8e,0x7f,0xa0,0xaf,0xf9,0x55,0x2d,0xc,0x96,0x73, 0x9c,0x6b,0x6,0x38,0xa,0x1c,0x7,0x9a,0x36,0x6d,0x62,0xfd,0xa3,0x3f,0xe1,0xcc, 0xaf,0x7d,0xbd,0xe6,0xa9,0x9e,0x4a,0xd3,0x7f,0xf9,0x67,0xe,0xf4,0x63,0x11,0xd4, 0x78,0x33,0xfc,0x7,0x3a,0xa1,0x76,0xc6,0xa5,0x84,0x5c,0x14,0x62,0x1e,0x2,0x20, 0x11,0x60,0x41,0x20,0xd4,0x40,0x53,0x3b,0x77,0xd2,0xf7,0xf,0xff,0x10,0x23,0x65, 0x65,0x5a,0xb2,0x79,0x33,0x97,0xee,0xd8,0xc1,0xa5,0x3b,0x76,0xd0,0xb1,0x79,0x33, 0xe3,0xc0,0x11,0x60,0x18,0xc7,0x4e,0x67,0x9,0xa,0x84,0x4a,0x9e,0xaf,0xe3,0xa6, 0x9d,0xb2,0x2c,0x86,0x80,0x7e,0x21,0x18,0x3,0x5a,0x36,0x5d,0xc1,0xfa,0x9f,0x3c, 0xc6,0x79,0x8f,0xfe,0x94,0xce,0xb7,0x6f,0x5a,0x90,0x36,0xcf,0xfd,0xaf,0x2f,0xba, 0xdb,0xbe,0x54,0x86,0x7f,0x2f,0x8d,0xe1,0x57,0xde,0x28,0x82,0x92,0x70,0xf3,0xc7, 0xe1,0x45,0x45,0x27,0x50,0x97,0x90,0x6a,0xe0,0x3f,0xc,0x86,0x25,0xf5,0xdf,0x79, 0x27,0xcd,0xbd,0xbd,0x2c,0xbb,0xe5,0x96,0x98,0xa5,0x46,0x53,0xf7,0xe6,0xcd,0x74, 0x6f,0xde,0x4c,0xa6,0xaf,0x8f,0xe1,0xed,0xdb,0x39,0x76,0xef,0xbd,0x4c,0xef,0xd9, 0xc3,0xb4,0x5b,0x6f,0x12,0x68,0x84,0x80,0xe2,0x58,0x40,0x1,0x50,0xb6,0xb1,0x68, 0xdb,0x70,0x3e,0xa7,0xde,0x7c,0x33,0xdd,0xef,0xb9,0x8e,0x46,0xe5,0x1f,0x44,0x2e, 0x4,0x65,0xff,0xfd,0xfb,0xa4,0xff,0xe5,0x8b,0x2e,0xc3,0x43,0x12,0x99,0x6c,0xbe, 0xbc,0x9,0xa0,0x83,0xf6,0xd8,0xd,0xc6,0x99,0x6,0x46,0x1e,0x9,0x53,0xeb,0x8e, 0xb2,0xa9,0x95,0x28,0xa,0x19,0xe,0x6c,0xd9,0x2,0xb0,0x60,0x42,0x0,0xd0,0xbc, 0x7a,0x35,0xab,0x6f,0xbb,0x8d,0xd5,0xb7,0xdd,0x46,0x71,0x6a,0x8a,0x89,0x9d,0x3b, 0x99,0xfd,0xe5,0x2f,0x99,0xdd,0xb3,0x87,0xe2,0xd4,0x14,0x16,0x30,0xbb,0x67,0xf, 0x16,0xd0,0xbe,0x61,0x83,0xf3,0xdb,0xd5,0x45,0xdb,0x86,0xd,0xb4,0x9e,0x7f,0x3e, 0x9d,0x9b,0x37,0x53,0xd7,0x55,0xc3,0x49,0xde,0x18,0x94,0x7d,0xe8,0xfb,0xcc,0xdc, 0xf1,0x71,0xef,0x65,0xce,0xb2,0xf6,0x96,0x6f,0x7d,0x14,0xe6,0xfd,0xfb,0xd2,0x28, 0x49,0x71,0x4d,0x80,0xfb,0xce,0x62,0xcd,0xd3,0xc0,0x84,0x12,0x36,0xd5,0x17,0xd6, 0x8e,0x5a,0x4,0xe2,0xc0,0x96,0x2d,0xd4,0x75,0x75,0xd1,0x7d,0xdd,0x75,0x31,0x72, 0x57,0x47,0x75,0x5d,0x5d,0xf4,0x5c,0x77,0x1d,0x3d,0x6f,0x42,0xd9,0xd5,0x52,0xee, 0xb1,0x47,0x99,0xf9,0x94,0x64,0x7e,0x8,0xd4,0xeb,0x1a,0x6e,0xa2,0x50,0x74,0x70, 0x28,0x61,0x59,0x20,0xe6,0xe9,0x4,0x6,0xde,0xe,0x8e,0xa0,0x28,0x81,0x88,0x43, 0x16,0xf0,0xda,0xf5,0xd7,0x33,0x72,0xcf,0x3d,0x31,0x73,0xfc,0xf6,0x51,0xf6,0xa1, 0xef,0x31,0xfd,0xe1,0x5b,0x43,0x6,0x25,0x9e,0x86,0x47,0x78,0xac,0x1,0x47,0x31, 0x61,0xc5,0x5b,0x1f,0x89,0x5c,0x9,0x9c,0xaf,0xfd,0x37,0xc5,0x47,0xd1,0xa1,0x2d, 0x5b,0x38,0xbe,0x75,0x6b,0xcc,0x5a,0x7e,0x7b,0x68,0xee,0x9b,0xdf,0x20,0xf5,0xdf, 0x6f,0xf7,0x47,0x2a,0x3c,0x33,0x52,0x5,0xa6,0x5b,0x3e,0xa6,0x1b,0x9e,0xcf,0x77, 0x16,0xa0,0x4a,0x4f,0x5c,0x24,0x30,0x37,0xb4,0xba,0xfc,0x7d,0xb7,0xdf,0xce,0xe1, 0x2d,0x5b,0x28,0xcd,0x73,0x9d,0xe0,0x37,0x81,0x44,0x2a,0x45,0xea,0xaf,0x6f,0x63, 0xf6,0xb3,0x9f,0x6,0x14,0xc4,0xaf,0x34,0x18,0x51,0xcf,0x23,0x98,0xae,0xe6,0xf7, 0x3e,0x1b,0x54,0xa1,0xaa,0x48,0x1,0x88,0xb2,0xff,0x6f,0xa6,0x50,0x8c,0xde,0x73, 0xf,0x7b,0xaf,0xbc,0x92,0xb9,0x3d,0x7b,0x6a,0xac,0xe1,0xff,0x3f,0x15,0xf7,0xbe, 0xc2,0xe4,0xfb,0x6f,0x20,0xfb,0xe0,0xbf,0x55,0x1e,0xac,0x18,0x10,0x1f,0x3a,0x3d, 0x34,0x95,0x83,0x33,0x3,0x88,0xc3,0xa3,0xd8,0xdb,0xc1,0x95,0xea,0xad,0xc6,0x5f, 0x88,0x13,0x3f,0xb7,0x67,0xf,0xaf,0x5c,0x70,0x1,0x83,0xb,0xb4,0x56,0xf0,0xeb, 0xa4,0xf4,0x17,0x3f,0xcf,0xf8,0xef,0xbd,0x93,0xe2,0xde,0xa8,0xf7,0x22,0xa2,0x1c, 0x41,0x2d,0x5d,0x8c,0x81,0xd5,0x8b,0x91,0xda,0x3f,0xef,0x85,0xa0,0x8a,0x15,0x57, 0x19,0x6f,0x4a,0x17,0x95,0xf6,0xd8,0x9d,0x77,0xf2,0xab,0x35,0x6b,0x98,0x9a,0xe7, 0xfe,0xc1,0xaf,0x83,0x72,0x3f,0xfe,0x11,0x63,0x97,0x6c,0x64,0xf6,0xb,0x9f,0xf, 0x4f,0x14,0x7,0xc2,0x21,0x9e,0xc6,0x43,0x64,0x39,0xfa,0xc1,0x1e,0x13,0x85,0x3a, 0x81,0xcd,0x4b,0x96,0x54,0xae,0x3c,0xa4,0x3d,0xb5,0x9a,0x6,0x35,0xbf,0x5a,0x46, 0xae,0xaf,0x8f,0xc3,0xd7,0x5f,0xcf,0xc1,0x2b,0xaf,0x64,0x76,0xe7,0xce,0x79,0x94, 0xfe,0xe6,0x50,0xfe,0xe9,0xdd,0x4c,0xdc,0x70,0x2d,0x53,0xb7,0xfe,0x37,0x4a,0x47, 0x23,0x8e,0xbe,0xc5,0x61,0xa8,0x93,0x70,0x41,0x92,0x25,0x3b,0xba,0x6a,0x47,0x80, 0x86,0xc6,0x46,0x12,0x8d,0x8d,0xf3,0xb6,0xf7,0x54,0x91,0xbf,0x52,0x9a,0x99,0x9d, 0x3b,0x39,0x78,0xe5,0x95,0x1c,0xba,0xf2,0x4a,0x26,0x7e,0x3,0xa6,0x8c,0x99,0xef, 0xde,0xcf,0xc4,0x75,0x7f,0xc0,0xc4,0xd,0xd7,0x92,0x7f,0xe6,0xa9,0x88,0x94,0x55, 0x8c,0x60,0x6c,0x21,0xa9,0x40,0xf5,0xf5,0x24,0xeb,0xeb,0x6b,0xf7,0x1,0x92,0x40, 0xf3,0xc9,0x27,0x87,0x66,0x9c,0xcf,0xfa,0x40,0x35,0x64,0x12,0xc0,0xd9,0x9d,0x3b, 0x39,0xb2,0x65,0xb,0xaf,0x2e,0x5a,0xc4,0xf1,0xdb,0x6f,0x27,0xfb,0x6b,0x74,0x16, 0xb,0xbf,0x7a,0x99,0xd4,0xdf,0x7c,0x92,0xe1,0x53,0x57,0x31,0xfd,0xd1,0xbf,0x20, 0xff,0x74,0x14,0xe3,0x21,0xae,0xd,0x77,0x92,0x56,0x39,0x5a,0x11,0x6f,0xdf,0x5b, 0x8b,0x7b,0x62,0xf9,0x0,0xea,0x4a,0xa0,0x57,0x5c,0x11,0xe6,0x5a,0x7,0x7,0x5b, 0x5a,0xaf,0xba,0x8a,0xb9,0xd7,0x5f,0x2f,0x17,0xca,0xc2,0x32,0x35,0x4e,0xba,0x28, 0x2a,0x4d,0x4d,0x31,0xb6,0x75,0x2b,0xe3,0x5b,0xb7,0xd2,0xb0,0x7a,0x35,0xad,0x9b, 0x37,0xd3,0xf1,0x9e,0xf7,0xd0,0xb2,0x79,0x33,0xc9,0x5,0x5a,0xca,0xb5,0xa7,0xa7, 0xc9,0x3f,0xb9,0x8b,0xec,0xc3,0xff,0x49,0x6e,0xf7,0x93,0xd8,0x47,0x8f,0x50,0xfe, 0x32,0x77,0x45,0x43,0x5e,0x5d,0x65,0xfa,0x9,0x9a,0x79,0xe4,0x49,0x2c,0x5f,0xc1, 0xe4,0x81,0x7,0x29,0x95,0x8f,0x4b,0xc8,0xd4,0x3e,0xd2,0x97,0x82,0x5,0x20,0x26, 0xa1,0xbf,0x15,0xce,0xea,0xee,0xec,0x64,0xbc,0xb1,0x11,0x91,0xcb,0x55,0x6c,0xc7, 0xaf,0xb,0x11,0xc2,0xea,0x2b,0xf4,0xf5,0x31,0x7d,0xcf,0x3d,0xa4,0xee,0xb9,0x7, 0xb,0x68,0x58,0xbd,0x9a,0xa6,0xd,0x1b,0x68,0xdc,0xb0,0x81,0xfa,0xde,0x5e,0xea, 0x57,0xaf,0x6,0xa0,0x71,0xc3,0x6,0x12,0x9a,0x70,0xd8,0x53,0x53,0x14,0xf6,0xec, 0x1,0xcb,0xa2,0xd4,0xd7,0x47,0x69,0xa0,0x9f,0xfc,0xcb,0x2f,0x53,0x78,0xf9,0x65, 0xec,0x23,0x3,0xe,0x23,0xd5,0x6f,0xff,0xbc,0x69,0x54,0x8b,0x4,0xb8,0x39,0x85, 0x9b,0xd3,0x2,0xea,0xea,0x49,0x17,0x9d,0x8d,0xa0,0x19,0xe8,0x77,0xb,0x36,0xe2, 0x85,0x14,0x0,0xa1,0x5c,0xf6,0xeb,0xb0,0x77,0x15,0x9c,0xd5,0x36,0x3a,0x4a,0xd7, 0x86,0xd,0x91,0x1f,0x7a,0x58,0x48,0xa6,0xc6,0xa1,0xb8,0xf5,0x15,0xfa,0xfa,0x28, 0xf6,0xf5,0x91,0xde,0xbe,0x3d,0xb0,0x74,0x1e,0x76,0x79,0xc,0xf6,0x31,0xbc,0x12, 0x88,0x46,0x90,0xfe,0x51,0xcd,0xd8,0x79,0x0,0x51,0x85,0xe9,0xd0,0x28,0x79,0xea, 0x5a,0xa6,0xde,0x18,0xc0,0x2,0x86,0x60,0x2f,0xce,0x6e,0xb8,0xca,0x63,0x8f,0x7c, 0x1f,0x2,0x1,0x4a,0x80,0xfd,0x10,0x3c,0x97,0x0,0x16,0xed,0xdb,0x47,0xd7,0xc6, 0x8d,0x24,0x1a,0x1b,0x8d,0x15,0xbd,0x59,0xda,0x3c,0xdf,0x74,0xbf,0x59,0x54,0xc3, 0x97,0xd2,0x0,0x81,0xfc,0x5a,0x9a,0xf2,0xd5,0xb4,0x38,0x54,0x5f,0x4f,0xdd,0x69, 0x67,0x32,0xf4,0xcc,0xb,0x24,0x80,0xa7,0xe0,0x39,0x1c,0x1,0x28,0x99,0x1a,0x23, 0x5,0x40,0xb8,0x89,0x6c,0xa0,0xf8,0xbf,0xe1,0xe0,0xc,0x8c,0xb7,0x8c,0x8e,0xd2, 0x92,0x4a,0xb1,0xb8,0xca,0xf7,0xfb,0xab,0xa1,0xdf,0x4e,0xa6,0x56,0x49,0x22,0x14, 0x81,0xab,0x28,0x42,0x39,0x85,0x8d,0xf2,0x99,0x7e,0xfc,0xf1,0x75,0xeb,0xce,0x63, 0x76,0x78,0x94,0xf4,0x91,0x41,0xe6,0x60,0xfc,0x51,0x38,0x8,0x14,0x29,0xf3,0xd7, 0x88,0x0,0x52,0xfb,0x8b,0x38,0x67,0x23,0xf2,0x8f,0xc1,0xe3,0x9,0x60,0xe9,0x9e, 0x3d,0x74,0x6d,0xdc,0x48,0xeb,0x69,0xa7,0xc5,0x6a,0x68,0x35,0x26,0xe1,0xb7,0x96, 0xf9,0xb5,0xf2,0x52,0x67,0xda,0x2,0x53,0xe2,0xa4,0x95,0x24,0x4f,0x3b,0x93,0x63, 0x8f,0xef,0x22,0x1,0xbc,0x4,0x8f,0xe3,0xbc,0x46,0x51,0xc0,0xe1,0x6d,0x0,0x5, 0x74,0x4,0x28,0xba,0x19,0x32,0x77,0xc2,0x13,0x39,0xc8,0x2c,0x7a,0x6d,0x1f,0x6d, 0x83,0x83,0x2c,0xbb,0xfa,0x6a,0x1a,0x7b,0x7a,0x22,0x1b,0xf0,0x5b,0xcb,0xd0,0x9a, 0x48,0xcc,0x57,0xa9,0x29,0x6b,0x6f,0xf9,0xd6,0xfb,0xad,0xb2,0x6c,0xab,0x6b,0x11, 0x75,0x17,0xbd,0x8d,0xd4,0x81,0x43,0x8c,0x3c,0xfd,0x3c,0x5,0xc8,0xdc,0x7,0x4f, 0xe0,0x9c,0x67,0xcd,0x53,0x46,0x81,0x48,0x4,0x28,0xe0,0xbc,0xe9,0x94,0xd9,0xf, 0x63,0xf,0x58,0xd6,0x23,0x24,0x12,0x9c,0xf4,0xd4,0x93,0x24,0x9a,0x9a,0x58,0xf1, 0xbe,0xf7,0x55,0x14,0x82,0xff,0x4a,0x24,0x54,0xf8,0x7d,0x13,0x34,0xda,0xad,0x24, 0x5a,0x40,0x4,0x58,0x9d,0x8b,0x68,0xb8,0xe2,0x77,0xa0,0xbe,0x81,0xbe,0xef,0x6d, 0x97,0xb6,0xff,0x91,0x41,0x18,0xc3,0x11,0x80,0x1c,0xe,0x6f,0x43,0x11,0x0,0xca, 0x8,0x90,0x75,0x33,0xa5,0xff,0x44,0x88,0x1f,0x1e,0x42,0xbc,0xde,0x34,0x31,0xc1, 0xca,0x1d,0x8f,0x93,0x6c,0x6a,0x62,0xc5,0x4d,0x37,0xd1,0x7c,0xca,0x29,0x6f,0x46, 0x57,0x7f,0xeb,0xc9,0x6f,0x97,0xdd,0x91,0x9e,0xbf,0xf9,0x8f,0xa4,0xc4,0xd2,0x65, 0x34,0x6c,0xfe,0x5d,0x87,0xf9,0xf7,0x7c,0x87,0xcc,0x91,0x41,0x8e,0xc1,0xeb,0x77, 0xc1,0xf,0x81,0x34,0xe,0x2f,0xb3,0x94,0x11,0xc0,0x47,0x49,0xed,0xde,0x72,0xe3, 0xea,0x80,0x6,0xa0,0xe1,0x97,0x88,0x63,0xef,0xaf,0xaf,0xbb,0xa4,0x7d,0x72,0xa2, 0xae,0xd0,0xd1,0x49,0x7e,0xd9,0x32,0xda,0xcf,0x3d,0x17,0xb,0xc8,0x1e,0x39,0x12, 0x3e,0xa5,0xa,0x89,0x5f,0xa8,0xf4,0x6f,0x46,0x1d,0xfe,0xa3,0x58,0xee,0x34,0x50, 0x7b,0x33,0x68,0x5e,0xf7,0x6a,0xd9,0xb2,0x7c,0x6d,0xa5,0x50,0x3f,0x33,0x60,0x29, 0x61,0xfd,0x79,0xdd,0xb9,0x1b,0xa8,0xbf,0xf8,0x72,0xa8,0x4b,0x32,0xf1,0xcc,0xb, 0x1c,0x7f,0xf8,0xc7,0xe4,0x20,0xfb,0x69,0xf8,0x97,0x61,0x18,0x4,0x26,0x80,0x29, 0x1c,0x41,0x90,0x42,0xe0,0x13,0x47,0x93,0x0,0xc8,0x95,0xe0,0x24,0x50,0xdf,0x2f, 0x28,0xee,0xb7,0xed,0x23,0xef,0x6b,0x6c,0x78,0x5b,0xc7,0x40,0x1f,0x85,0x8e,0xe, 0xb2,0x4b,0x96,0xd2,0xbc,0x6a,0x15,0xed,0xe7,0x9e,0x8b,0xc8,0xe5,0xc8,0x8f,0x8c, 0xfc,0x46,0xa,0x0,0x5a,0x9a,0x8a,0xe9,0x8d,0x4c,0xc3,0x3f,0x95,0xb7,0xf0,0x3d, 0x5f,0x50,0x1,0x89,0x79,0x9f,0x3c,0xed,0xc,0x1a,0xde,0x7e,0x15,0xc9,0x95,0xab, 0x0,0x98,0x7c,0xf6,0x5,0x8e,0xdc,0x73,0x3f,0x0,0x77,0xc2,0x57,0x9e,0x83,0xfd, 0xc0,0xb8,0x2b,0x0,0x29,0x9c,0xd5,0xc0,0x3c,0x15,0x10,0x40,0x1f,0x33,0x29,0x8, 0xf5,0x7b,0x5,0xd9,0x76,0x8b,0xdc,0xa5,0x8d,0xd,0x67,0xb7,0x1f,0xe9,0xa7,0x21, 0x3d,0xcb,0xcc,0xaa,0xd5,0x24,0x9b,0x9a,0x68,0x3d,0xe3,0xc,0x3a,0xce,0x3d,0x17, 0x2c,0xb,0x3b,0x9d,0x46,0xe4,0x72,0xbf,0x51,0x2,0x60,0x12,0x84,0xaa,0x4,0xc0, 0x74,0xef,0x15,0xec,0x47,0xb,0xdf,0xbd,0x14,0x16,0xb5,0x11,0x96,0xd2,0x1e,0x99, 0x44,0x8d,0xf0,0x10,0xa1,0xdc,0x2a,0x59,0x9e,0xd5,0xd6,0x4e,0xdd,0x69,0x6b,0x69, 0xb8,0xfc,0x4a,0x92,0xa7,0x9e,0x81,0xe5,0xae,0xcd,0x1c,0xbb,0xf7,0x3b,0x8c,0x3e, 0xfc,0x63,0x0,0xee,0x87,0x7,0xbf,0x7,0xcf,0xe3,0x30,0x7f,0x1c,0x47,0xfb,0x67, 0x71,0xb4,0xdf,0xb8,0xe,0x60,0x19,0xee,0xeb,0x70,0x8e,0xcf,0xb7,0x3,0x8b,0x80, 0xa5,0xc0,0x32,0x60,0xe9,0x75,0xd,0xc9,0xb3,0xff,0x6f,0x67,0xdb,0xad,0x2d,0xc9, 0x64,0x63,0xb6,0x7b,0x9,0x23,0x6f,0xb9,0x84,0xcc,0xb2,0x93,0x7c,0x99,0x8b,0xd3, 0xd3,0x14,0x46,0x46,0x2,0xa8,0x80,0x16,0x56,0x9d,0x8f,0xa8,0x74,0x51,0xc,0xa7, 0x42,0x9e,0xb8,0xe9,0x7d,0x47,0xe0,0x3d,0x46,0xe3,0x9d,0xde,0xd,0xfc,0x87,0xe, 0xb9,0x52,0x88,0xa5,0x7c,0x1c,0xca,0xcd,0xa3,0xa,0x4c,0x42,0xbb,0xd7,0xd2,0x95, 0x5,0x4c,0xbb,0x97,0xcb,0xcd,0x9,0x8b,0xc4,0xe2,0x25,0x24,0xba,0xbb,0xb1,0xda, 0xda,0xcb,0xd2,0x62,0x59,0x64,0xe,0x1e,0x62,0xe4,0xfb,0xdb,0xc9,0x38,0xf3,0xfd, 0xdc,0xdf,0xc2,0xff,0xf9,0x99,0xb3,0xea,0x37,0x8a,0xf3,0x4e,0xcc,0x28,0x30,0x9, 0xcc,0xe0,0x38,0x81,0x1,0xf8,0x57,0xc7,0x43,0xe7,0x45,0x3d,0xd0,0x8c,0x5f,0x8, 0x7a,0x80,0xee,0x4b,0xea,0x93,0xab,0xbf,0xd9,0xd5,0xf6,0xde,0x75,0x8d,0xf5,0xab, 0xb0,0x2c,0xa6,0x4f,0x5b,0xcb,0xd4,0xba,0x73,0xc8,0x75,0x2d,0xe,0x14,0x68,0x45, 0xdc,0x47,0x69,0x68,0x54,0xfa,0x38,0x79,0xf5,0x72,0xc2,0xca,0x36,0x96,0x25,0x19, 0x22,0xd5,0x55,0x3d,0x98,0xe1,0xfb,0xc7,0x4c,0xca,0x73,0xf0,0xee,0xcb,0x1f,0x8b, 0x92,0xcf,0x24,0x83,0xd,0x65,0x5a,0x28,0x79,0xcb,0xf7,0xbe,0xc3,0x20,0x9e,0x0, 0x39,0xb7,0xf9,0xc1,0x63,0xa4,0x9e,0xd8,0xc5,0xf4,0x33,0xcf,0x23,0x80,0xc3,0x30, 0xf0,0xf7,0xf0,0xfd,0x5f,0x41,0x1f,0x8e,0xd6,0x8f,0xe0,0x67,0x7e,0x86,0xf2,0x7b, 0x2f,0x15,0x5,0x40,0xc6,0x49,0x47,0xb0,0x5,0x47,0x8,0x16,0x3,0x4b,0xdc,0x6b, 0x31,0xd0,0xb9,0x6d,0x51,0xdb,0x95,0x7f,0xd2,0xd6,0xfc,0xf6,0x96,0xba,0x64,0x23, 0x96,0x45,0x6e,0x51,0x37,0xa9,0x35,0xa7,0x93,0x59,0xba,0x9c,0x7c,0xd7,0xa2,0x8a, 0x3,0xbd,0x90,0x2,0x60,0xca,0x53,0xb3,0x0,0x40,0xf9,0x33,0x6b,0x5e,0xa6,0x84, 0x52,0xb0,0x72,0x5e,0x3f,0x4a,0x8,0x12,0xe5,0xb8,0x72,0x7a,0xf7,0x4f,0x42,0xcb, 0x8f,0x8b,0x16,0x48,0x84,0x91,0x61,0x27,0x5d,0x69,0xf0,0x18,0xb9,0x83,0x87,0x49, 0x3f,0xfb,0x2,0xb9,0xa3,0x83,0xd8,0x40,0x1a,0x72,0x3f,0x80,0x27,0x3f,0x3,0x3b, 0x70,0xde,0x80,0x9b,0xc0,0x99,0xf6,0x8d,0xb9,0xe1,0x19,0x1c,0xdb,0x6f,0x5c,0x0, 0xd2,0xc7,0xc1,0x14,0x9f,0xc4,0x99,0x9,0xa8,0x48,0xb0,0x18,0xe8,0x76,0xc3,0xed, 0xab,0x92,0xd6,0x92,0x3b,0x3a,0xdb,0x2f,0xfa,0xc3,0x8e,0x96,0xb7,0x2c,0xa9,0xaf, 0xeb,0x50,0x61,0x2f,0xb3,0x74,0xb9,0x32,0x0,0xea,0x20,0x95,0x3b,0x5a,0xfe,0x95, 0xb7,0x21,0xcd,0x91,0x69,0xc2,0xa6,0x53,0xde,0x7c,0x4b,0xa6,0x51,0x17,0x57,0x84, 0xf7,0xeb,0x7b,0x26,0x94,0x79,0x9a,0x1b,0xb6,0x84,0xf2,0xcc,0x97,0x4e,0xf,0x9b, 0xee,0xdd,0x38,0x5b,0x8f,0x73,0x2e,0x1b,0xcb,0xbf,0xe3,0x86,0xb3,0xdf,0xe3,0x84, 0x2d,0x43,0x9c,0xf3,0x9b,0x3b,0x78,0xd8,0xb,0xdb,0xc0,0x18,0xa4,0x1e,0x81,0x17, 0xb6,0xc1,0x8b,0x43,0xe,0xb3,0x67,0x70,0xb4,0x5d,0x3a,0x7d,0xaa,0xe6,0xe7,0x89, 0x60,0xbe,0x32,0xb4,0xc6,0x78,0x29,0x4,0xd2,0x1c,0xb4,0x1,0x9d,0x38,0xcc,0x5f, 0xe4,0x86,0x3b,0x70,0x50,0xa2,0xf9,0xdd,0xad,0x4d,0xa7,0xbc,0xbf,0xa3,0x75,0xdd, 0x5,0xcd,0xd,0xab,0x7a,0x1b,0xea,0x97,0x3a,0xc8,0x80,0x1f,0xde,0x3c,0x87,0x9, 0x7c,0x5a,0xa3,0xb6,0xc4,0x24,0x4,0x32,0xca,0xd4,0xd,0x85,0xf9,0x65,0x86,0xe2, 0x63,0x7c,0x55,0x8c,0xb4,0xd,0x61,0x5b,0x80,0xb0,0xb5,0x7b,0xf7,0xd7,0x76,0xe3, 0xd5,0x34,0xbe,0x78,0xe7,0x57,0x8,0xe1,0x63,0xa4,0xba,0x30,0x6f,0x47,0x5c,0x69, 0xc8,0x1d,0x81,0xd1,0x97,0x61,0xe0,0x7,0xf0,0xda,0x13,0xce,0x7b,0xaf,0x19,0x1c, 0xed,0x4e,0xe1,0x68,0xff,0xa4,0x7b,0x4d,0xe3,0x38,0x7d,0x12,0xf6,0x25,0xf3,0xab, 0x16,0x0,0xf9,0x4c,0x15,0x82,0x26,0xa0,0x15,0x7,0xd,0x3a,0x28,0xb,0x40,0x3b, 0x8e,0x10,0x34,0xe1,0x20,0x46,0x3d,0x8e,0xf9,0xa8,0xe6,0x60,0xf1,0x9,0x32,0x93, 0xba,0x44,0x5f,0xc0,0xd1,0xe8,0x2c,0xe,0xf3,0x67,0x28,0xb,0x40,0xca,0xbd,0x97, 0xf3,0xfd,0x58,0xcc,0x87,0x90,0x77,0x3,0x95,0xca,0x51,0xa,0xf2,0x76,0xb,0x71, 0x97,0x8b,0xdd,0xa,0x67,0x70,0x4,0x43,0x15,0x2,0x29,0x0,0x27,0x84,0xa0,0x76, 0xd2,0xc7,0x5c,0x65,0x7e,0x1a,0x47,0xd3,0x67,0xdc,0xdf,0x39,0x82,0x2b,0x7e,0xb1, 0xd6,0x20,0xe3,0x30,0x47,0xa6,0xf1,0x16,0x87,0x70,0xa6,0x89,0xcd,0xee,0xd5,0xa2, 0x84,0x9b,0x29,0xa3,0x80,0x4c,0x1f,0xb7,0x9e,0x13,0x54,0x26,0x55,0xf9,0xe4,0x1e, 0x4d,0x1e,0x87,0xc9,0xf2,0x9a,0x53,0xc2,0xea,0x5a,0x7f,0x49,0x2b,0x23,0x92,0xaa, 0x61,0x8c,0x6a,0x12,0xa4,0x83,0x28,0xaf,0x26,0x1c,0xa1,0xd0,0x4d,0xc0,0x9,0x4, 0xa8,0x9d,0x74,0x4,0x90,0x42,0x90,0xc3,0xd1,0xf4,0xbc,0x72,0x49,0xc6,0x57,0xbd, 0xf3,0x50,0x2d,0x73,0x64,0x7a,0xc9,0x5c,0x89,0x8,0x75,0xca,0x6f,0x9d,0xf2,0xcc, 0x34,0x23,0x3b,0x41,0xf1,0x48,0x32,0xb3,0x44,0x59,0x8,0xa4,0x20,0xc8,0x5f,0xf9, 0xcc,0x56,0xf2,0x54,0x45,0xb5,0x32,0x47,0x9d,0x3e,0xab,0xc2,0xa0,0xfe,0x86,0x4d, 0xe3,0x4f,0x50,0x65,0xd2,0x37,0x7e,0xe5,0x91,0x2e,0xf5,0xd7,0xd6,0xd2,0xd5,0x44, 0xb,0xc1,0x18,0x95,0xc9,0xfa,0x3a,0xcc,0x9,0xc6,0xcf,0x8f,0x74,0x41,0x10,0x2c, 0x0,0xd3,0x4f,0xd0,0x9,0xf2,0xe8,0xff,0x1,0x8a,0x7a,0xe2,0xa5,0x30,0xa0,0x7f, 0xfc,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82, // /home/Adel/ZeGrapher/icons/remove.png 0x0,0x0,0x9,0xeb, 0x89, 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, 0x0,0x0,0x40,0x0,0x0,0x0,0x40,0x8,0x6,0x0,0x0,0x0,0xaa,0x69,0x71,0xde, 0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xb,0x13,0x0,0x0,0xb,0x13, 0x1,0x0,0x9a,0x9c,0x18,0x0,0x0,0x0,0x19,0x74,0x45,0x58,0x74,0x53,0x6f,0x66, 0x74,0x77,0x61,0x72,0x65,0x0,0x41,0x64,0x6f,0x62,0x65,0x20,0x49,0x6d,0x61,0x67, 0x65,0x52,0x65,0x61,0x64,0x79,0x71,0xc9,0x65,0x3c,0x0,0x0,0x9,0x78,0x49,0x44, 0x41,0x54,0x78,0xda,0xec,0x5a,0x5b,0x6c,0x54,0x45,0x18,0x9e,0xd9,0x2,0x45,0x17, 0x65,0xb5,0xa5,0xad,0xbe,0xb0,0x5,0x6a,0x34,0x62,0x24,0xd1,0x78,0x49,0xc4,0x54, 0x25,0xd2,0xd6,0x18,0x9b,0xd8,0x7,0xa2,0xf,0x92,0x86,0x28,0x4f,0x5a,0x23,0xb7, 0x6d,0x1,0xab,0xbd,0x40,0x3,0x86,0x46,0x63,0x82,0x46,0x9,0x26,0x98,0xf0,0x50, 0x93,0xaa,0xb1,0x5b,0x8c,0x68,0x23,0x26,0xa0,0x11,0x52,0x15,0xc1,0xd8,0x52,0xb7, 0x29,0x6a,0x6f,0x24,0x85,0xb4,0x8,0x5,0x76,0x9c,0x6f,0xce,0xcc,0xd9,0x73,0x99, 0xb3,0x97,0xf6,0xb4,0x6a,0xdc,0x69,0xe7,0xec,0x39,0x67,0x67,0xcf,0xcc,0xf7,0xfd, 0x97,0x99,0xf9,0xff,0x43,0x48,0xb6,0x64,0x4b,0xb6,0x64,0x4b,0xb6,0x64,0x4b,0xb6, 0x64,0x4b,0xb6,0xfc,0x3f,0xb,0x9d,0xad,0x8e,0x8e,0xff,0x1a,0xbb,0x9b,0x7f,0x54, 0xf2,0x5a,0xca,0x6b,0x58,0x56,0x73,0x0,0x2c,0xd1,0x34,0x26,0x6b,0x17,0xaf,0xed, 0xf7,0xdc,0x16,0xfe,0xe1,0x3f,0x4b,0x0,0x7,0xbd,0x98,0x7f,0xd4,0x48,0xe0,0x61, 0x4a,0xd1,0x61,0xa2,0x4b,0x5c,0xc7,0x7e,0xeb,0x13,0xe7,0xe1,0xe2,0x25,0x84,0x59, 0x58,0x60,0xa0,0xc4,0xf8,0x1f,0xe3,0x97,0xfb,0x79,0x6d,0xe5,0x64,0xf4,0xff,0x27, 0x8,0x90,0xc0,0xeb,0x79,0x5d,0xab,0x40,0x8f,0xe,0xf,0x93,0xef,0xbf,0x3b,0x4a, 0x4e,0x9d,0xfc,0x89,0xf4,0x73,0xd0,0xb8,0xd6,0x95,0xfc,0x82,0x2,0x41,0xc6,0x1d, 0xcb,0xef,0x22,0xf7,0xde,0xff,0x20,0xc9,0x5f,0x54,0x20,0xb4,0x83,0x19,0xec,0x80, 0x88,0x7a,0x3f,0x89,0xa0,0x33,0x0,0xfe,0x55,0xc,0x52,0x1,0xff,0xfa,0xab,0xc3, 0xa4,0xf3,0xd3,0x76,0xe,0xfa,0x37,0x77,0xb7,0xce,0xde,0x99,0xeb,0x84,0x2c,0x2e, 0x2e,0x26,0xe5,0x4f,0x56,0x92,0x95,0x8f,0x3e,0x26,0x34,0x44,0x12,0x1,0x12,0x5e, 0xfb,0x57,0x11,0x20,0xa5,0xde,0xce,0x1f,0xb8,0x82,0x52,0x3,0xf8,0x47,0x7,0x3f, 0xb4,0x48,0x9a,0x7a,0xe2,0x26,0x49,0x79,0x60,0xa6,0x66,0x54,0xad,0x79,0x96,0xac, 0x7c,0xe4,0x31,0x61,0x1e,0x9c,0x87,0x6e,0x68,0xd8,0x74,0x7d,0x4,0xf5,0xd1,0xc1, 0x75,0x71,0xdc,0xa1,0x73,0xc3,0x23,0x64,0xef,0x5b,0x7b,0xc8,0x69,0xae,0xea,0xa6, 0xa1,0x4f,0xa3,0xa3,0x4,0x19,0xc6,0x19,0x4c,0x63,0xfd,0x8b,0x2f,0x93,0x3c,0x98, 0x6,0x63,0xf0,0xf,0xa5,0xd3,0x21,0x81,0xfa,0x0,0xfe,0x39,0xd8,0x26,0xa4,0x7e, 0xe2,0xbb,0x63,0x64,0xef,0x9b,0x7b,0xc8,0xc5,0x89,0x9,0x53,0xe2,0x34,0x55,0xc7, 0xd4,0x8e,0x96,0xa5,0x41,0xc4,0xf5,0xc1,0xa0,0x20,0xe1,0x9e,0xfb,0x1e,0x20,0x71, 0x83,0x18,0x68,0xc2,0x7,0xb3,0x4e,0x80,0x94,0x7c,0x77,0x40,0xaa,0xfc,0x3b,0x1c, 0xbc,0x92,0xba,0xee,0xc1,0x94,0x66,0xd2,0x2d,0xb3,0xcd,0xa,0x76,0xab,0x30,0xbe, 0x0,0x9,0x30,0x9,0x90,0x30,0xf2,0xc7,0x40,0x55,0x59,0xe9,0xca,0x8f,0x66,0x8d, 0x0,0x69,0xf3,0xdd,0x5c,0xf2,0xa1,0x23,0x29,0xc0,0x1b,0xc0,0xa7,0x6e,0x4,0x4e, 0x22,0x98,0xe5,0xa0,0x48,0xb8,0xca,0x4b,0x20,0x27,0xe7,0xde,0x4c,0xcd,0x21,0x30, 0xd,0x5,0x68,0x87,0xcd,0x43,0xed,0xbd,0xc0,0x53,0x71,0x8b,0xda,0xc0,0x53,0x5d, 0xa5,0xee,0x7b,0xd6,0xa7,0xe0,0x19,0x94,0x3a,0xa4,0x26,0xf,0x30,0xb9,0xe3,0x7c, 0xc,0x73,0x78,0xb9,0x32,0x79,0xb9,0x73,0xdf,0xbe,0x7d,0x4b,0x67,0x9c,0x0,0x4c, 0x75,0xf0,0xf6,0xc2,0xe1,0x79,0x81,0xa7,0x36,0x9d,0x4f,0x0,0xd3,0x31,0xa0,0xb9, 0xaf,0x27,0xc2,0x9b,0x84,0xd1,0x91,0x61,0x32,0x2f,0x37,0xb7,0x28,0x7c,0xfb,0xf2, 0xbd,0x33,0x4a,0x80,0x5a,0xe4,0x40,0x2a,0xf0,0xf6,0xc2,0xe1,0xe9,0xc0,0x3b,0xa4, 0x6e,0x45,0x44,0x53,0xfc,0x59,0x19,0x70,0xea,0x8f,0x8e,0x4,0x8c,0x1,0x24,0x60, 0x4c,0xb,0xf3,0xb,0x56,0xb5,0xb5,0x7f,0xf2,0xc2,0x4c,0x6a,0x80,0x58,0xe4,0xc0, 0xe9,0x19,0x53,0x9d,0x37,0x78,0x9b,0xd4,0x2d,0xc0,0xd3,0x71,0x4c,0x36,0x22,0x52, 0x92,0x40,0xc5,0x58,0x8e,0x7c,0x79,0x98,0xc0,0x21,0xdf,0x5c,0x78,0x4b,0x3d,0x37, 0x85,0x42,0xdf,0x9,0x90,0xd2,0x5f,0x8b,0xc1,0x61,0x91,0xe3,0x74,0xa3,0xd4,0x75, 0x4c,0x30,0xb0,0x20,0x78,0x3,0x59,0xb2,0x74,0x99,0x4d,0xdd,0xa9,0xa3,0x5a,0xc5, 0x8d,0xb6,0xb,0x82,0xb,0xc,0x22,0xec,0x5c,0xe8,0x49,0xe0,0xc7,0x36,0x3e,0x26, 0xdc,0xf,0xe5,0x2d,0x2a,0xa,0x2e,0xc,0xad,0x9f,0x9,0xd,0xa8,0x51,0xd2,0x17, 0x2b,0x3c,0xa7,0xc7,0xa7,0x54,0x33,0xc7,0x50,0x1,0x64,0xd7,0x9e,0x56,0xb2,0xf7, 0xbd,0xf7,0xc9,0xea,0xb2,0x32,0xb,0x4e,0xbb,0xe1,0xab,0x33,0xb4,0x41,0xdb,0x5d, 0xad,0xad,0x24,0xa8,0x48,0x20,0x6e,0x12,0x9c,0x7d,0x61,0x4c,0x5f,0x73,0x2d,0x20, 0x86,0x16,0xac,0x4b,0x47,0xb,0x32,0x25,0xa0,0x12,0x83,0xc1,0xda,0xde,0x7b,0x8e, 0xb7,0x3b,0x28,0x1,0x9e,0x3,0x29,0x29,0x29,0x11,0xea,0xb9,0x29,0x52,0xcb,0x1, 0x56,0xb8,0xcd,0x44,0x5e,0xe1,0xbb,0x4d,0x91,0x3a,0xd1,0x16,0xbf,0xd9,0xed,0x24, 0x21,0x59,0x9f,0xfc,0x18,0xfd,0xf4,0x63,0x71,0x1e,0xca,0x2b,0x28,0xe2,0x1f,0x55, 0xbe,0x11,0x20,0x17,0x3d,0x61,0xb0,0x6c,0x6c,0x6c,0xa8,0xcb,0x4b,0x13,0x87,0xcd, 0x2b,0xc9,0x97,0x2c,0x2b,0x11,0xe,0x2a,0x10,0x40,0xd,0x90,0x2d,0xb5,0xb5,0xa4, 0xac,0xa2,0xdc,0xa6,0xf6,0x38,0xc7,0xbd,0x48,0x5d,0x9d,0x6c,0x47,0x5,0x9,0xcb, 0x2c,0x24,0xb8,0x57,0x97,0x4e,0xd,0x24,0xc6,0x4e,0x93,0xcf,0x8,0x39,0x39,0x39, 0x73,0xb8,0x19,0x54,0xf9,0xa9,0x1,0x95,0x18,0x24,0xb6,0xb4,0x2e,0xdb,0xa7,0x3a, 0x47,0x46,0x49,0x61,0x51,0x91,0x0,0xa0,0xc0,0x8b,0x4f,0x6a,0x90,0x50,0x5b,0xb7, 0x95,0x94,0x97,0x57,0x98,0xed,0x71,0x8e,0x7b,0x66,0x1b,0xaa,0xe6,0x7f,0x4e,0x2, 0x27,0xb0,0xf0,0x96,0x22,0xbd,0xfb,0xd4,0xdc,0xfc,0xfe,0xdb,0xa3,0xe2,0x77,0xdc, 0x17,0x84,0x53,0xad,0xb,0x32,0x21,0xa0,0x14,0xa0,0x4e,0xa9,0x4d,0x8e,0xd7,0x58, 0x2c,0x3,0xea,0x3b,0xd3,0x4b,0xde,0x68,0xd9,0x21,0x9d,0x5c,0x2,0x94,0x2,0x58, 0xb7,0x6d,0x1b,0xa9,0xa8,0x78,0x42,0x54,0x9c,0x7,0x68,0xc0,0x5,0x1e,0xe7,0xbb, 0xf9,0x33,0xfa,0x7a,0x7b,0x6d,0xbb,0x4a,0x9d,0x2f,0x50,0x3a,0xa8,0x36,0x62,0xc1, 0x1b,0x43,0x21,0xfe,0xf1,0x50,0x32,0x50,0x73,0x32,0x20,0x40,0x84,0xb0,0xfa,0x45, 0x4,0x47,0xaf,0xfe,0x2e,0xc5,0xe4,0x1f,0x9f,0x1f,0xea,0xe4,0x40,0xc,0xb5,0x77, 0x92,0x0,0x62,0xb6,0x6d,0xdf,0x2e,0xf7,0x38,0xcc,0x8,0x7c,0xf0,0x7b,0xf1,0xb8, 0xf1,0x44,0x48,0x67,0x47,0x73,0xb3,0x78,0x86,0xb8,0xc1,0xcc,0xf,0x57,0xef,0xcc, 0x72,0x11,0xe3,0x26,0x8a,0x67,0xcf,0x9d,0x97,0x3b,0x9f,0xdf,0x59,0xc1,0xeb,0x7, 0x7e,0x68,0x80,0x20,0xc0,0x19,0xc9,0x49,0x67,0x85,0x7f,0xa8,0x33,0x4a,0x5a,0x76, 0x36,0x9b,0xd3,0x5d,0xc0,0xf4,0x7,0x9,0x6d,0x80,0x59,0x28,0x33,0x31,0x8,0x22, 0xa4,0x65,0x47,0x93,0xf8,0x6d,0xca,0x7e,0x1c,0x5f,0x8e,0xe,0xf,0x89,0xcf,0xb9, 0xf3,0xe6,0x81,0x80,0x22,0xdf,0x66,0x1,0x4a,0x33,0xdb,0x42,0x59,0x57,0x4,0x87, 0xa2,0x51,0xb2,0xb3,0xa9,0xc9,0x5c,0xd7,0xeb,0x88,0x10,0xdf,0xc9,0x39,0x7e,0x7, 0x6f,0xdb,0xc9,0x7f,0xa3,0x8f,0x26,0x24,0xdf,0x6a,0x3b,0x6,0xe9,0x1f,0x1,0x2a, 0x80,0x99,0xa9,0xa,0xa8,0x26,0xd1,0x68,0x7,0x69,0x6e,0x6c,0xb4,0x0,0x55,0x1a, 0x10,0xb0,0x11,0xd3,0xdc,0xd4,0x28,0xda,0x4e,0x67,0xef,0x7a,0xea,0xe4,0x8f,0xa2, 0x7d,0xee,0x75,0xd7,0xcf,0xf7,0x85,0x0,0xf4,0x6d,0x4c,0x45,0x7e,0x6f,0xae,0x53, 0x88,0x72,0x8a,0xbb,0x68,0xeb,0x58,0x93,0x2d,0x88,0xd2,0x26,0x0,0x4e,0x66,0x51, 0x41,0x41,0x92,0x50,0xd,0xf1,0xc,0xe7,0x30,0xeb,0x54,0xb7,0x75,0x6b,0xc2,0xe1, 0xf1,0x3,0x82,0x19,0xf1,0x38,0x33,0x82,0x9d,0xb2,0x61,0x1d,0xa6,0xc8,0x8a,0x8a, 0xb4,0x9f,0xaf,0x2b,0x8b,0x8b,0x97,0x88,0xf6,0x97,0xff,0xba,0x78,0xc9,0xaf,0x59, 0x20,0x11,0x98,0x60,0xe9,0x49,0xc6,0x68,0x66,0x1c,0x57,0x97,0x97,0x93,0x2d,0x7c, 0x91,0xa3,0x70,0x2,0x70,0xdc,0xfc,0xde,0x68,0xc,0x32,0x14,0x39,0x91,0x5a,0x83, 0xa8,0x68,0x47,0xd4,0x93,0xd2,0x74,0xf9,0xa8,0xae,0xae,0x1e,0xf2,0xc3,0x7,0xc4, 0x54,0x74,0x96,0x64,0x28,0x94,0xd5,0x65,0x1c,0x7c,0xa4,0xce,0xc,0x6b,0xe3,0x4f, 0x49,0xde,0xac,0x12,0x7c,0x9c,0x25,0xce,0x37,0xf3,0xdf,0xe0,0xb7,0x32,0x4d,0x92, 0xb6,0xe6,0xe5,0x17,0x14,0x8a,0x9b,0x57,0x26,0x27,0x2f,0xf9,0xb9,0x12,0x14,0x4, 0x20,0x69,0xa1,0x1d,0x90,0x47,0x58,0xfb,0xf1,0xd5,0x65,0x64,0xe3,0x96,0x48,0x42, 0xba,0x56,0xe0,0x2c,0x4e,0x1a,0x1a,0x5e,0x17,0x35,0xce,0x27,0x7f,0x2b,0x78,0x55, 0x37,0x45,0x22,0xfc,0x19,0xe5,0xe9,0x45,0x8e,0xe5,0x45,0xb8,0xb8,0x58,0x90,0x7d, 0x65,0xf2,0x32,0x8,0x18,0xf4,0x8b,0x80,0x2e,0xc0,0x46,0x58,0x3a,0xa9,0x4a,0x5a, 0x62,0xf9,0xd8,0xd2,0xbe,0xb2,0x39,0x62,0x3,0x94,0x0,0x19,0x27,0x4d,0xd,0xd, 0xa4,0xe3,0xb3,0xcf,0x44,0x6d,0x6c,0x6c,0x30,0x7c,0x81,0xac,0x56,0x32,0x36,0x6c, 0xde,0x62,0x6e,0xa5,0xdd,0xd4,0x33,0xd7,0x28,0xd4,0x18,0x27,0x2e,0x8c,0x8d,0xf9, 0x49,0x40,0x3b,0x58,0x45,0xba,0xca,0x49,0xbb,0x57,0xf4,0x76,0x68,0x70,0x90,0xf4, 0xf6,0xf6,0x68,0xc0,0x33,0xd7,0x54,0x17,0xed,0xe0,0x53,0x64,0x53,0x83,0xd9,0xc6, 0x6a,0x12,0x78,0xc6,0xd0,0x9f,0x83,0x36,0xcd,0x62,0x49,0x6c,0x10,0x63,0x4,0x51, 0x63,0xa3,0xc3,0xa3,0x8,0xdc,0xfa,0x42,0x80,0x8c,0xb6,0xc6,0x90,0xab,0x43,0xba, 0xca,0x2d,0xb,0xb7,0x16,0x4c,0x4c,0x8c,0x93,0x8d,0x35,0x35,0x2,0x80,0x15,0x14, 0x16,0x39,0xc2,0xb9,0x31,0xb,0x0,0x46,0xc4,0x3d,0x7c,0x67,0x3,0xdf,0xd3,0x43, 0x36,0xbc,0x5c,0x23,0x9e,0xa5,0x4b,0x1c,0x38,0xd5,0x1f,0xde,0x1f,0x7e,0xea,0xda, 0xd5,0x6b,0x57,0x27,0x2e,0x9c,0xc7,0x8f,0xbe,0xf1,0x33,0x1e,0xd0,0x8e,0xe,0x91, 0xab,0xf3,0x9c,0x21,0x6c,0x52,0x32,0x48,0xd8,0x0,0x12,0x38,0x10,0xa8,0x76,0x4b, 0x33,0x96,0xb7,0x1d,0x26,0x81,0x6a,0x3a,0x64,0xe6,0xb2,0xb9,0x83,0xb7,0x69,0x16, 0xe6,0x60,0x82,0x1f,0x1f,0xb7,0xd1,0xcd,0x34,0x9d,0x2a,0xfa,0xcb,0x9f,0x7c,0x4a, 0x5c,0x9c,0x3f,0x37,0xc,0xd5,0x1f,0xe7,0x33,0xc0,0x19,0xdf,0x96,0x2e,0x32,0x24, 0x16,0xc3,0xd2,0xf5,0xa5,0xe7,0xab,0x5d,0x51,0x21,0x67,0x3c,0xd0,0x1a,0xb,0xc4, 0xc2,0x4,0x5b,0x5a,0xb1,0xab,0x4b,0xb2,0xf6,0x51,0x90,0x60,0xf3,0x50,0x7b,0x10, 0xc8,0x2c,0x53,0x25,0xf3,0xc8,0x17,0xe0,0x1c,0x92,0x7f,0xf3,0xdd,0x7d,0xc2,0xa1, 0x9e,0x3e,0x7e,0xec,0x18,0x5f,0x3,0x1c,0xe0,0x4,0xbc,0xed,0x9b,0x6,0xc8,0xb4, 0xf4,0x7e,0x74,0x86,0x44,0xa5,0x5e,0xb,0x9c,0xa6,0x60,0xc8,0x7a,0x9c,0x3,0x31, 0xb7,0xb4,0x4c,0x4a,0x9d,0x11,0xbb,0x16,0x98,0x17,0x44,0xb4,0x1d,0xf7,0x4,0x4f, 0x1c,0xef,0x12,0x18,0xc7,0xaa,0x35,0xcf,0x8,0xd3,0x19,0x3b,0x37,0x32,0x28,0x17, 0x40,0x6d,0x33,0x12,0x15,0x46,0x27,0xc8,0xc6,0x8,0x6f,0xcb,0x98,0x66,0x60,0xe, 0x12,0x98,0xa2,0xc1,0x63,0x3e,0xd7,0x3a,0x51,0x96,0x40,0xed,0x2,0xcf,0x5c,0xa9, 0x32,0x8c,0xe5,0x61,0x91,0x42,0x67,0xe4,0xcf,0xd8,0x19,0x4c,0xd9,0x9d,0xc9,0x16, 0x40,0x53,0x26,0x40,0x6a,0x41,0x3d,0x93,0x69,0x29,0x24,0x2a,0x53,0x91,0xa0,0x27, 0xc2,0xe2,0x3,0xcc,0xca,0xec,0x34,0x31,0xcd,0x9a,0x47,0x93,0x27,0x53,0xc9,0x52, 0xee,0x36,0x90,0x23,0x8c,0x49,0xe9,0xef,0x9f,0xb1,0xcc,0x10,0x5e,0x4e,0x40,0x7e, 0x1e,0x29,0x6a,0x74,0xec,0xad,0xa2,0xcc,0x2d,0x68,0xe6,0x75,0xc1,0xec,0xd,0x99, 0x53,0x39,0x98,0xb,0x3c,0xb3,0xe4,0x7,0x31,0x3b,0x5d,0xba,0x38,0x31,0xfe,0x7b, 0x5f,0xf,0xa4,0xbf,0x3f,0x1d,0xe9,0x4f,0x37,0x37,0x58,0x89,0xfc,0x3c,0x52,0xd4, 0x6,0x9,0x4c,0x4b,0x2,0x63,0x4c,0x4b,0x84,0xe,0xbf,0xcd,0x27,0x38,0x90,0xba, 0x4,0x6f,0x1,0x8f,0x31,0x20,0x39,0x3a,0xd0,0x73,0xfa,0x17,0x7e,0xb3,0x97,0x83, 0x4f,0x3b,0x55,0x3e,0x65,0x2,0xa4,0x29,0x94,0xc6,0xa5,0x3f,0xf0,0x22,0xc1,0x1c, 0x2c,0x73,0x1b,0xbb,0x46,0xfe,0x8e,0x79,0x34,0xb1,0x39,0xb2,0xfd,0xc6,0x9a,0x19, 0x96,0x76,0xdf,0xf7,0x73,0x77,0x37,0x9f,0xf7,0x31,0xf5,0xed,0xcc,0x70,0x33,0x3e, 0xbd,0xa2,0x5e,0x90,0x40,0x60,0xe3,0xb8,0xf5,0x5,0x9,0x4a,0x93,0xbf,0x1c,0x91, 0x64,0x1e,0x4c,0xfa,0x92,0x84,0xe3,0x5,0x9,0x80,0x3f,0xdb,0xd7,0xf3,0xcb,0xe8, 0x1f,0x3,0x0,0xbf,0x2e,0xd5,0xbc,0xef,0x3b,0x1,0x28,0x9d,0x5d,0x47,0x9e,0xce, 0x2b,0xbc,0xf5,0x20,0x52,0xd4,0x88,0xc9,0x83,0x4,0x95,0x37,0x4c,0x1d,0xba,0x4a, 0x6f,0x5b,0xad,0xe,0xea,0x15,0x19,0xd8,0x3c,0xd4,0x5e,0x4a,0x1e,0x2b,0xbe,0x9d, 0x1c,0xfc,0xa1,0x29,0x84,0x63,0xfc,0x29,0x5d,0xdf,0x9e,0xb8,0x73,0x7e,0x30,0xf8, 0x5,0x52,0xd4,0x90,0x3d,0x5e,0x9a,0x68,0x33,0x5f,0x92,0x4a,0xff,0x5,0x29,0xdd, 0x8e,0x12,0x7,0x6c,0x71,0x31,0xcf,0x63,0xaa,0x83,0xb7,0x87,0xc3,0x83,0xcd,0x4b, 0xb5,0xaf,0xc9,0x54,0xf2,0xbe,0x13,0xa0,0x42,0x4f,0xe1,0xdb,0x97,0x1f,0x40,0x8a, 0x5a,0x85,0xbd,0x91,0xab,0x43,0xba,0xaa,0xdf,0x8c,0x27,0xd2,0x34,0x5f,0x13,0x63, 0x66,0x64,0x7,0xcb,0xdb,0x87,0x1f,0x5d,0x65,0x6e,0xaa,0x30,0xd5,0x49,0x6f,0xdf, 0x2b,0x25,0x7f,0x66,0xaa,0x63,0x9e,0x91,0x17,0x25,0x91,0x9f,0x47,0x8a,0x1a,0x59, 0x5a,0xe5,0xb,0x60,0x1a,0xc8,0xd8,0xc0,0x34,0x10,0xb7,0x57,0xa1,0x6b,0x67,0x81, 0xa4,0xb1,0x9f,0x37,0x5f,0x94,0x44,0x0,0x46,0xce,0x26,0x58,0xe1,0x61,0x91,0xa3, 0xe6,0xf9,0x4c,0xbc,0xfd,0xac,0x12,0xa0,0xb4,0x1,0x29,0x6a,0x64,0x69,0x6f,0xc, 0xe5,0xe5,0x23,0x46,0x4f,0xd5,0x2b,0x73,0x96,0xdc,0xb9,0xd2,0xc,0x11,0xc3,0x73, 0xac,0xf1,0xe1,0xff,0xb1,0xab,0xc3,0xc6,0x66,0x68,0xa0,0xff,0xac,0x4,0xde,0x99, 0xc9,0x3c,0xff,0x8f,0x11,0xe0,0x88,0xc8,0x56,0x2d,0x8,0xdd,0x54,0xb6,0xf0,0xe6, 0xfc,0xe5,0x48,0x57,0x21,0x63,0x23,0x93,0x16,0xae,0xb7,0xa5,0x11,0xc6,0x42,0x24, 0x7,0xc1,0xc,0xec,0xe7,0xa5,0x83,0x1b,0x97,0xc0,0xdb,0xfc,0x2,0x3e,0x6b,0x4, 0x38,0xc8,0x40,0xa2,0x12,0xb9,0xba,0x15,0x32,0x61,0xe1,0x95,0xb4,0x18,0x94,0x15, 0xc1,0x8c,0x6f,0xa6,0x63,0xe3,0xd9,0x92,0x2d,0xd9,0x92,0x2d,0xd9,0x92,0x2d,0xd9, 0xe2,0x59,0xfe,0x16,0x60,0x0,0x99,0xd6,0x52,0xb1,0x2d,0xa5,0x7b,0x6d,0x0,0x0, 0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82, // /home/Adel/ZeGrapher/icons/curseur_normal.png 0x0,0x0,0x17,0x33, 0x89, 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, 0x0,0x0,0x30,0x0,0x0,0x0,0x30,0x8,0x6,0x0,0x0,0x0,0x57,0x2,0xf9,0x87, 0x0,0x0,0x9,0xe3,0x69,0x54,0x58,0x74,0x58,0x4d,0x4c,0x3a,0x63,0x6f,0x6d,0x2e, 0x61,0x64,0x6f,0x62,0x65,0x2e,0x78,0x6d,0x70,0x0,0x0,0x0,0x0,0x0,0x3c,0x3f, 0x78,0x70,0x61,0x63,0x6b,0x65,0x74,0x20,0x62,0x65,0x67,0x69,0x6e,0x3d,0x22,0xef, 0xbb,0xbf,0x22,0x20,0x69,0x64,0x3d,0x22,0x57,0x35,0x4d,0x30,0x4d,0x70,0x43,0x65, 0x68,0x69,0x48,0x7a,0x72,0x65,0x53,0x7a,0x4e,0x54,0x63,0x7a,0x6b,0x63,0x39,0x64, 0x22,0x3f,0x3e,0xa,0x3c,0x78,0x3a,0x78,0x6d,0x70,0x6d,0x65,0x74,0x61,0x20,0x78, 0x6d,0x6c,0x6e,0x73,0x3a,0x78,0x3d,0x22,0x61,0x64,0x6f,0x62,0x65,0x3a,0x6e,0x73, 0x3a,0x6d,0x65,0x74,0x61,0x2f,0x22,0x20,0x78,0x3a,0x78,0x6d,0x70,0x74,0x6b,0x3d, 0x22,0x41,0x64,0x6f,0x62,0x65,0x20,0x58,0x4d,0x50,0x20,0x43,0x6f,0x72,0x65,0x20, 0x34,0x2e,0x32,0x2e,0x32,0x2d,0x63,0x30,0x36,0x33,0x20,0x35,0x33,0x2e,0x33,0x35, 0x32,0x36,0x32,0x34,0x2c,0x20,0x32,0x30,0x30,0x38,0x2f,0x30,0x37,0x2f,0x33,0x30, 0x2d,0x31,0x38,0x3a,0x31,0x32,0x3a,0x31,0x38,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x22,0x3e,0xa,0x20,0x3c,0x72,0x64,0x66,0x3a,0x52,0x44,0x46,0x20,0x78,0x6d, 0x6c,0x6e,0x73,0x3a,0x72,0x64,0x66,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, 0x30,0x32,0x2f,0x32,0x32,0x2d,0x72,0x64,0x66,0x2d,0x73,0x79,0x6e,0x74,0x61,0x78, 0x2d,0x6e,0x73,0x23,0x22,0x3e,0xa,0x20,0x20,0x3c,0x72,0x64,0x66,0x3a,0x44,0x65, 0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x72,0x64,0x66,0x3a,0x61,0x62, 0x6f,0x75,0x74,0x3d,0x22,0x22,0xa,0x20,0x20,0x20,0x20,0x78,0x6d,0x6c,0x6e,0x73, 0x3a,0x70,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70,0x3d,0x22,0x68,0x74,0x74,0x70, 0x3a,0x2f,0x2f,0x6e,0x73,0x2e,0x61,0x64,0x6f,0x62,0x65,0x2e,0x63,0x6f,0x6d,0x2f, 0x70,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70,0x2f,0x31,0x2e,0x30,0x2f,0x22,0xa, 0x20,0x20,0x20,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x49,0x70,0x74,0x63,0x34,0x78, 0x6d,0x70,0x43,0x6f,0x72,0x65,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x69, 0x70,0x74,0x63,0x2e,0x6f,0x72,0x67,0x2f,0x73,0x74,0x64,0x2f,0x49,0x70,0x74,0x63, 0x34,0x78,0x6d,0x70,0x43,0x6f,0x72,0x65,0x2f,0x31,0x2e,0x30,0x2f,0x78,0x6d,0x6c, 0x6e,0x73,0x2f,0x22,0xa,0x20,0x20,0x20,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x64, 0x63,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x70,0x75,0x72,0x6c,0x2e,0x6f, 0x72,0x67,0x2f,0x64,0x63,0x2f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x2f,0x31, 0x2e,0x31,0x2f,0x22,0xa,0x20,0x20,0x20,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78, 0x6d,0x70,0x52,0x69,0x67,0x68,0x74,0x73,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f, 0x2f,0x6e,0x73,0x2e,0x61,0x64,0x6f,0x62,0x65,0x2e,0x63,0x6f,0x6d,0x2f,0x78,0x61, 0x70,0x2f,0x31,0x2e,0x30,0x2f,0x72,0x69,0x67,0x68,0x74,0x73,0x2f,0x22,0xa,0x20, 0x20,0x20,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,0x6d,0x70,0x3d,0x22,0x68,0x74, 0x74,0x70,0x3a,0x2f,0x2f,0x6e,0x73,0x2e,0x61,0x64,0x6f,0x62,0x65,0x2e,0x63,0x6f, 0x6d,0x2f,0x78,0x61,0x70,0x2f,0x31,0x2e,0x30,0x2f,0x22,0xa,0x20,0x20,0x20,0x20, 0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,0x6d,0x70,0x4d,0x4d,0x3d,0x22,0x68,0x74,0x74, 0x70,0x3a,0x2f,0x2f,0x6e,0x73,0x2e,0x61,0x64,0x6f,0x62,0x65,0x2e,0x63,0x6f,0x6d, 0x2f,0x78,0x61,0x70,0x2f,0x31,0x2e,0x30,0x2f,0x6d,0x6d,0x2f,0x22,0xa,0x20,0x20, 0x20,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x73,0x74,0x45,0x76,0x74,0x3d,0x22,0x68, 0x74,0x74,0x70,0x3a,0x2f,0x2f,0x6e,0x73,0x2e,0x61,0x64,0x6f,0x62,0x65,0x2e,0x63, 0x6f,0x6d,0x2f,0x78,0x61,0x70,0x2f,0x31,0x2e,0x30,0x2f,0x73,0x54,0x79,0x70,0x65, 0x2f,0x52,0x65,0x73,0x6f,0x75,0x72,0x63,0x65,0x45,0x76,0x65,0x6e,0x74,0x23,0x22, 0xa,0x20,0x20,0x20,0x70,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70,0x3a,0x44,0x61, 0x74,0x65,0x43,0x72,0x65,0x61,0x74,0x65,0x64,0x3d,0x22,0x32,0x30,0x31,0x30,0x2d, 0x30,0x31,0x2d,0x30,0x31,0x22,0xa,0x20,0x20,0x20,0x70,0x68,0x6f,0x74,0x6f,0x73, 0x68,0x6f,0x70,0x3a,0x43,0x72,0x65,0x64,0x69,0x74,0x3d,0x22,0x77,0x77,0x77,0x2e, 0x67,0x65,0x6e,0x74,0x6c,0x65,0x66,0x61,0x63,0x65,0x2e,0x63,0x6f,0x6d,0x22,0xa, 0x20,0x20,0x20,0x70,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70,0x3a,0x41,0x75,0x74, 0x68,0x6f,0x72,0x73,0x50,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3d,0x22,0x41,0x72, 0x74,0x20,0x44,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x22,0xa,0x20,0x20,0x20,0x49, 0x70,0x74,0x63,0x34,0x78,0x6d,0x70,0x43,0x6f,0x72,0x65,0x3a,0x49,0x6e,0x74,0x65, 0x6c,0x6c,0x65,0x63,0x74,0x75,0x61,0x6c,0x47,0x65,0x6e,0x72,0x65,0x3d,0x22,0x70, 0x69,0x63,0x74,0x6f,0x67,0x72,0x61,0x6d,0x22,0xa,0x20,0x20,0x20,0x78,0x6d,0x70, 0x3a,0x4d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x44,0x61,0x74,0x65,0x3d,0x22,0x32, 0x30,0x31,0x30,0x2d,0x30,0x31,0x2d,0x30,0x33,0x54,0x32,0x31,0x3a,0x33,0x33,0x3a, 0x34,0x33,0x2b,0x30,0x31,0x3a,0x30,0x30,0x22,0xa,0x20,0x20,0x20,0x78,0x6d,0x70, 0x4d,0x4d,0x3a,0x49,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x49,0x44,0x3d,0x22,0x78, 0x6d,0x70,0x2e,0x69,0x69,0x64,0x3a,0x35,0x36,0x42,0x38,0x42,0x33,0x34,0x38,0x41, 0x37,0x46,0x38,0x44,0x45,0x31,0x31,0x38,0x32,0x31,0x43,0x45,0x34,0x42,0x32,0x43, 0x37,0x45,0x33,0x36,0x44,0x37,0x30,0x22,0xa,0x20,0x20,0x20,0x78,0x6d,0x70,0x4d, 0x4d,0x3a,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x49,0x44,0x3d,0x22,0x78,0x6d, 0x70,0x2e,0x64,0x69,0x64,0x3a,0x35,0x36,0x42,0x38,0x42,0x33,0x34,0x38,0x41,0x37, 0x46,0x38,0x44,0x45,0x31,0x31,0x38,0x32,0x31,0x43,0x45,0x34,0x42,0x32,0x43,0x37, 0x45,0x33,0x36,0x44,0x37,0x30,0x22,0xa,0x20,0x20,0x20,0x78,0x6d,0x70,0x4d,0x4d, 0x3a,0x4f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e, 0x74,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x64,0x69,0x64,0x3a,0x35,0x36,0x42, 0x38,0x42,0x33,0x34,0x38,0x41,0x37,0x46,0x38,0x44,0x45,0x31,0x31,0x38,0x32,0x31, 0x43,0x45,0x34,0x42,0x32,0x43,0x37,0x45,0x33,0x36,0x44,0x37,0x30,0x22,0x3e,0xa, 0x20,0x20,0x20,0x3c,0x49,0x70,0x74,0x63,0x34,0x78,0x6d,0x70,0x43,0x6f,0x72,0x65, 0x3a,0x43,0x72,0x65,0x61,0x74,0x6f,0x72,0x43,0x6f,0x6e,0x74,0x61,0x63,0x74,0x49, 0x6e,0x66,0x6f,0xa,0x20,0x20,0x20,0x20,0x49,0x70,0x74,0x63,0x34,0x78,0x6d,0x70, 0x43,0x6f,0x72,0x65,0x3a,0x43,0x69,0x41,0x64,0x72,0x43,0x69,0x74,0x79,0x3d,0x22, 0x50,0x72,0x61,0x67,0x75,0x65,0x22,0xa,0x20,0x20,0x20,0x20,0x49,0x70,0x74,0x63, 0x34,0x78,0x6d,0x70,0x43,0x6f,0x72,0x65,0x3a,0x43,0x69,0x41,0x64,0x72,0x50,0x63, 0x6f,0x64,0x65,0x3d,0x22,0x31,0x36,0x30,0x30,0x30,0x22,0xa,0x20,0x20,0x20,0x20, 0x49,0x70,0x74,0x63,0x34,0x78,0x6d,0x70,0x43,0x6f,0x72,0x65,0x3a,0x43,0x69,0x41, 0x64,0x72,0x43,0x74,0x72,0x79,0x3d,0x22,0x43,0x7a,0x65,0x63,0x68,0x20,0x52,0x65, 0x70,0x75,0x62,0x6c,0x69,0x63,0x22,0xa,0x20,0x20,0x20,0x20,0x49,0x70,0x74,0x63, 0x34,0x78,0x6d,0x70,0x43,0x6f,0x72,0x65,0x3a,0x43,0x69,0x45,0x6d,0x61,0x69,0x6c, 0x57,0x6f,0x72,0x6b,0x3d,0x22,0x6b,0x61,0x40,0x67,0x65,0x6e,0x74,0x6c,0x65,0x66, 0x61,0x63,0x65,0x2e,0x63,0x6f,0x6d,0x22,0xa,0x20,0x20,0x20,0x20,0x49,0x70,0x74, 0x63,0x34,0x78,0x6d,0x70,0x43,0x6f,0x72,0x65,0x3a,0x43,0x69,0x55,0x72,0x6c,0x57, 0x6f,0x72,0x6b,0x3d,0x22,0x77,0x77,0x77,0x2e,0x67,0x65,0x6e,0x74,0x6c,0x65,0x66, 0x61,0x63,0x65,0x2e,0x63,0x6f,0x6d,0x22,0x2f,0x3e,0xa,0x20,0x20,0x20,0x3c,0x64, 0x63,0x3a,0x72,0x69,0x67,0x68,0x74,0x73,0x3e,0xa,0x20,0x20,0x20,0x20,0x3c,0x72, 0x64,0x66,0x3a,0x41,0x6c,0x74,0x3e,0xa,0x20,0x20,0x20,0x20,0x20,0x3c,0x72,0x64, 0x66,0x3a,0x6c,0x69,0x20,0x78,0x6d,0x6c,0x3a,0x6c,0x61,0x6e,0x67,0x3d,0x22,0x78, 0x2d,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x22,0x3e,0x43,0x72,0x65,0x61,0x74,0x69, 0x76,0x65,0x20,0x43,0x6f,0x6d,0x6d,0x6f,0x6e,0x73,0x20,0x41,0x74,0x74,0x72,0x69, 0x62,0x75,0x74,0x69,0x6f,0x6e,0x20,0x4e,0x6f,0x6e,0x2d,0x43,0x6f,0x6d,0x6d,0x65, 0x72,0x63,0x69,0x61,0x6c,0x20,0x4e,0x6f,0x20,0x44,0x65,0x72,0x69,0x76,0x61,0x74, 0x69,0x76,0x65,0x73,0x3c,0x2f,0x72,0x64,0x66,0x3a,0x6c,0x69,0x3e,0xa,0x20,0x20, 0x20,0x20,0x3c,0x2f,0x72,0x64,0x66,0x3a,0x41,0x6c,0x74,0x3e,0xa,0x20,0x20,0x20, 0x3c,0x2f,0x64,0x63,0x3a,0x72,0x69,0x67,0x68,0x74,0x73,0x3e,0xa,0x20,0x20,0x20, 0x3c,0x64,0x63,0x3a,0x63,0x72,0x65,0x61,0x74,0x6f,0x72,0x3e,0xa,0x20,0x20,0x20, 0x20,0x3c,0x72,0x64,0x66,0x3a,0x53,0x65,0x71,0x3e,0xa,0x20,0x20,0x20,0x20,0x20, 0x3c,0x72,0x64,0x66,0x3a,0x6c,0x69,0x3e,0x41,0x6c,0x65,0x78,0x61,0x6e,0x64,0x65, 0x72,0x20,0x4b,0x69,0x73,0x65,0x6c,0x65,0x76,0x3c,0x2f,0x72,0x64,0x66,0x3a,0x6c, 0x69,0x3e,0xa,0x20,0x20,0x20,0x20,0x3c,0x2f,0x72,0x64,0x66,0x3a,0x53,0x65,0x71, 0x3e,0xa,0x20,0x20,0x20,0x3c,0x2f,0x64,0x63,0x3a,0x63,0x72,0x65,0x61,0x74,0x6f, 0x72,0x3e,0xa,0x20,0x20,0x20,0x3c,0x64,0x63,0x3a,0x64,0x65,0x73,0x63,0x72,0x69, 0x70,0x74,0x69,0x6f,0x6e,0x3e,0xa,0x20,0x20,0x20,0x20,0x3c,0x72,0x64,0x66,0x3a, 0x41,0x6c,0x74,0x3e,0xa,0x20,0x20,0x20,0x20,0x20,0x3c,0x72,0x64,0x66,0x3a,0x6c, 0x69,0x20,0x78,0x6d,0x6c,0x3a,0x6c,0x61,0x6e,0x67,0x3d,0x22,0x78,0x2d,0x64,0x65, 0x66,0x61,0x75,0x6c,0x74,0x22,0x3e,0x54,0x68,0x69,0x73,0x20,0x69,0x73,0x20,0x74, 0x68,0x65,0x20,0x69,0x63,0x6f,0x6e,0x20,0x66,0x72,0x6f,0x6d,0x20,0x47,0x65,0x6e, 0x74,0x6c,0x65,0x66,0x61,0x63,0x65,0x2e,0x63,0x6f,0x6d,0x20,0x66,0x72,0x65,0x65, 0x20,0x69,0x63,0x6f,0x6e,0x73,0x20,0x73,0x65,0x74,0x2e,0x20,0x3c,0x2f,0x72,0x64, 0x66,0x3a,0x6c,0x69,0x3e,0xa,0x20,0x20,0x20,0x20,0x3c,0x2f,0x72,0x64,0x66,0x3a, 0x41,0x6c,0x74,0x3e,0xa,0x20,0x20,0x20,0x3c,0x2f,0x64,0x63,0x3a,0x64,0x65,0x73, 0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x3e,0xa,0x20,0x20,0x20,0x3c,0x64,0x63, 0x3a,0x73,0x75,0x62,0x6a,0x65,0x63,0x74,0x3e,0xa,0x20,0x20,0x20,0x20,0x3c,0x72, 0x64,0x66,0x3a,0x42,0x61,0x67,0x3e,0xa,0x20,0x20,0x20,0x20,0x20,0x3c,0x72,0x64, 0x66,0x3a,0x6c,0x69,0x3e,0x69,0x63,0x6f,0x6e,0x3c,0x2f,0x72,0x64,0x66,0x3a,0x6c, 0x69,0x3e,0xa,0x20,0x20,0x20,0x20,0x20,0x3c,0x72,0x64,0x66,0x3a,0x6c,0x69,0x3e, 0x70,0x69,0x63,0x74,0x6f,0x67,0x72,0x61,0x6d,0x3c,0x2f,0x72,0x64,0x66,0x3a,0x6c, 0x69,0x3e,0xa,0x20,0x20,0x20,0x20,0x3c,0x2f,0x72,0x64,0x66,0x3a,0x42,0x61,0x67, 0x3e,0xa,0x20,0x20,0x20,0x3c,0x2f,0x64,0x63,0x3a,0x73,0x75,0x62,0x6a,0x65,0x63, 0x74,0x3e,0xa,0x20,0x20,0x20,0x3c,0x64,0x63,0x3a,0x74,0x69,0x74,0x6c,0x65,0x3e, 0xa,0x20,0x20,0x20,0x20,0x3c,0x72,0x64,0x66,0x3a,0x41,0x6c,0x74,0x3e,0xa,0x20, 0x20,0x20,0x20,0x20,0x3c,0x72,0x64,0x66,0x3a,0x6c,0x69,0x20,0x78,0x6d,0x6c,0x3a, 0x6c,0x61,0x6e,0x67,0x3d,0x22,0x78,0x2d,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x22, 0x3e,0x67,0x65,0x6e,0x74,0x6c,0x65,0x66,0x61,0x63,0x65,0x2e,0x63,0x6f,0x6d,0x20, 0x66,0x72,0x65,0x65,0x20,0x69,0x63,0x6f,0x6e,0x20,0x73,0x65,0x74,0x3c,0x2f,0x72, 0x64,0x66,0x3a,0x6c,0x69,0x3e,0xa,0x20,0x20,0x20,0x20,0x3c,0x2f,0x72,0x64,0x66, 0x3a,0x41,0x6c,0x74,0x3e,0xa,0x20,0x20,0x20,0x3c,0x2f,0x64,0x63,0x3a,0x74,0x69, 0x74,0x6c,0x65,0x3e,0xa,0x20,0x20,0x20,0x3c,0x78,0x6d,0x70,0x52,0x69,0x67,0x68, 0x74,0x73,0x3a,0x55,0x73,0x61,0x67,0x65,0x54,0x65,0x72,0x6d,0x73,0x3e,0xa,0x20, 0x20,0x20,0x20,0x3c,0x72,0x64,0x66,0x3a,0x41,0x6c,0x74,0x3e,0xa,0x20,0x20,0x20, 0x20,0x20,0x3c,0x72,0x64,0x66,0x3a,0x6c,0x69,0x20,0x78,0x6d,0x6c,0x3a,0x6c,0x61, 0x6e,0x67,0x3d,0x22,0x78,0x2d,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x22,0x3e,0x43, 0x72,0x65,0x61,0x74,0x69,0x76,0x65,0x20,0x43,0x6f,0x6d,0x6d,0x6f,0x6e,0x73,0x20, 0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x69,0x6f,0x6e,0x20,0x4e,0x6f,0x6e,0x2d, 0x43,0x6f,0x6d,0x6d,0x65,0x72,0x63,0x69,0x61,0x6c,0x20,0x4e,0x6f,0x20,0x44,0x65, 0x72,0x69,0x76,0x61,0x74,0x69,0x76,0x65,0x73,0x3c,0x2f,0x72,0x64,0x66,0x3a,0x6c, 0x69,0x3e,0xa,0x20,0x20,0x20,0x20,0x3c,0x2f,0x72,0x64,0x66,0x3a,0x41,0x6c,0x74, 0x3e,0xa,0x20,0x20,0x20,0x3c,0x2f,0x78,0x6d,0x70,0x52,0x69,0x67,0x68,0x74,0x73, 0x3a,0x55,0x73,0x61,0x67,0x65,0x54,0x65,0x72,0x6d,0x73,0x3e,0xa,0x20,0x20,0x20, 0x3c,0x78,0x6d,0x70,0x4d,0x4d,0x3a,0x48,0x69,0x73,0x74,0x6f,0x72,0x79,0x3e,0xa, 0x20,0x20,0x20,0x20,0x3c,0x72,0x64,0x66,0x3a,0x53,0x65,0x71,0x3e,0xa,0x20,0x20, 0x20,0x20,0x20,0x3c,0x72,0x64,0x66,0x3a,0x6c,0x69,0xa,0x20,0x20,0x20,0x20,0x20, 0x20,0x73,0x74,0x45,0x76,0x74,0x3a,0x61,0x63,0x74,0x69,0x6f,0x6e,0x3d,0x22,0x73, 0x61,0x76,0x65,0x64,0x22,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x74,0x45,0x76, 0x74,0x3a,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x49,0x44,0x3d,0x22,0x78,0x6d, 0x70,0x2e,0x69,0x69,0x64,0x3a,0x35,0x36,0x42,0x38,0x42,0x33,0x34,0x38,0x41,0x37, 0x46,0x38,0x44,0x45,0x31,0x31,0x38,0x32,0x31,0x43,0x45,0x34,0x42,0x32,0x43,0x37, 0x45,0x33,0x36,0x44,0x37,0x30,0x22,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x74, 0x45,0x76,0x74,0x3a,0x77,0x68,0x65,0x6e,0x3d,0x22,0x32,0x30,0x31,0x30,0x2d,0x30, 0x31,0x2d,0x30,0x33,0x54,0x32,0x31,0x3a,0x33,0x33,0x3a,0x34,0x33,0x2b,0x30,0x31, 0x3a,0x30,0x30,0x22,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x74,0x45,0x76,0x74, 0x3a,0x63,0x68,0x61,0x6e,0x67,0x65,0x64,0x3d,0x22,0x2f,0x6d,0x65,0x74,0x61,0x64, 0x61,0x74,0x61,0x22,0x2f,0x3e,0xa,0x20,0x20,0x20,0x20,0x3c,0x2f,0x72,0x64,0x66, 0x3a,0x53,0x65,0x71,0x3e,0xa,0x20,0x20,0x20,0x3c,0x2f,0x78,0x6d,0x70,0x4d,0x4d, 0x3a,0x48,0x69,0x73,0x74,0x6f,0x72,0x79,0x3e,0xa,0x20,0x20,0x3c,0x2f,0x72,0x64, 0x66,0x3a,0x44,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x3e,0xa,0x20, 0x3c,0x2f,0x72,0x64,0x66,0x3a,0x52,0x44,0x46,0x3e,0xa,0x3c,0x2f,0x78,0x3a,0x78, 0x6d,0x70,0x6d,0x65,0x74,0x61,0x3e,0xa,0x3c,0x3f,0x78,0x70,0x61,0x63,0x6b,0x65, 0x74,0x20,0x65,0x6e,0x64,0x3d,0x22,0x72,0x22,0x3f,0x3e,0x76,0xc4,0xcc,0xd8,0x0, 0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xb,0x13,0x0,0x0,0xb,0x13,0x1, 0x0,0x9a,0x9c,0x18,0x0,0x0,0xa,0x4f,0x69,0x43,0x43,0x50,0x50,0x68,0x6f,0x74, 0x6f,0x73,0x68,0x6f,0x70,0x20,0x49,0x43,0x43,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c, 0x65,0x0,0x0,0x78,0xda,0x9d,0x53,0x67,0x54,0x53,0xe9,0x16,0x3d,0xf7,0xde,0xf4, 0x42,0x4b,0x88,0x80,0x94,0x4b,0x6f,0x52,0x15,0x8,0x20,0x52,0x42,0x8b,0x80,0x14, 0x91,0x26,0x2a,0x21,0x9,0x10,0x4a,0x88,0x21,0xa1,0xd9,0x15,0x51,0xc1,0x11,0x45, 0x45,0x4,0x1b,0xc8,0xa0,0x88,0x3,0x8e,0x8e,0x80,0x8c,0x15,0x51,0x2c,0xc,0x8a, 0xa,0xd8,0x7,0xe4,0x21,0xa2,0x8e,0x83,0xa3,0x88,0x8a,0xca,0xfb,0xe1,0x7b,0xa3, 0x6b,0xd6,0xbc,0xf7,0xe6,0xcd,0xfe,0xb5,0xd7,0x3e,0xe7,0xac,0xf3,0x9d,0xb3,0xcf, 0x7,0xc0,0x8,0xc,0x96,0x48,0x33,0x51,0x35,0x80,0xc,0xa9,0x42,0x1e,0x11,0xe0, 0x83,0xc7,0xc4,0xc6,0xe1,0xe4,0x2e,0x40,0x81,0xa,0x24,0x70,0x0,0x10,0x8,0xb3, 0x64,0x21,0x73,0xfd,0x23,0x1,0x0,0xf8,0x7e,0x3c,0x3c,0x2b,0x22,0xc0,0x7,0xbe, 0x0,0x1,0x78,0xd3,0xb,0x8,0x0,0xc0,0x4d,0x9b,0xc0,0x30,0x1c,0x87,0xff,0xf, 0xea,0x42,0x99,0x5c,0x1,0x80,0x84,0x1,0xc0,0x74,0x91,0x38,0x4b,0x8,0x80,0x14, 0x0,0x40,0x7a,0x8e,0x42,0xa6,0x0,0x40,0x46,0x1,0x80,0x9d,0x98,0x26,0x53,0x0, 0xa0,0x4,0x0,0x60,0xcb,0x63,0x62,0xe3,0x0,0x50,0x2d,0x0,0x60,0x27,0x7f,0xe6, 0xd3,0x0,0x80,0x9d,0xf8,0x99,0x7b,0x1,0x0,0x5b,0x94,0x21,0x15,0x1,0xa0,0x91, 0x0,0x20,0x13,0x65,0x88,0x44,0x0,0x68,0x3b,0x0,0xac,0xcf,0x56,0x8a,0x45,0x0, 0x58,0x30,0x0,0x14,0x66,0x4b,0xc4,0x39,0x0,0xd8,0x2d,0x0,0x30,0x49,0x57,0x66, 0x48,0x0,0xb0,0xb7,0x0,0xc0,0xce,0x10,0xb,0xb2,0x0,0x8,0xc,0x0,0x30,0x51, 0x88,0x85,0x29,0x0,0x4,0x7b,0x0,0x60,0xc8,0x23,0x23,0x78,0x0,0x84,0x99,0x0, 0x14,0x46,0xf2,0x57,0x3c,0xf1,0x2b,0xae,0x10,0xe7,0x2a,0x0,0x0,0x78,0x99,0xb2, 0x3c,0xb9,0x24,0x39,0x45,0x81,0x5b,0x8,0x2d,0x71,0x7,0x57,0x57,0x2e,0x1e,0x28, 0xce,0x49,0x17,0x2b,0x14,0x36,0x61,0x2,0x61,0x9a,0x40,0x2e,0xc2,0x79,0x99,0x19, 0x32,0x81,0x34,0xf,0xe0,0xf3,0xcc,0x0,0x0,0xa0,0x91,0x15,0x11,0xe0,0x83,0xf3, 0xfd,0x78,0xce,0xe,0xae,0xce,0xce,0x36,0x8e,0xb6,0xe,0x5f,0x2d,0xea,0xbf,0x6, 0xff,0x22,0x62,0x62,0xe3,0xfe,0xe5,0xcf,0xab,0x70,0x40,0x0,0x0,0xe1,0x74,0x7e, 0xd1,0xfe,0x2c,0x2f,0xb3,0x1a,0x80,0x3b,0x6,0x80,0x6d,0xfe,0xa2,0x25,0xee,0x4, 0x68,0x5e,0xb,0xa0,0x75,0xf7,0x8b,0x66,0xb2,0xf,0x40,0xb5,0x0,0xa0,0xe9,0xda, 0x57,0xf3,0x70,0xf8,0x7e,0x3c,0x3c,0x45,0xa1,0x90,0xb9,0xd9,0xd9,0xe5,0xe4,0xe4, 0xd8,0x4a,0xc4,0x42,0x5b,0x61,0xca,0x57,0x7d,0xfe,0x67,0xc2,0x5f,0xc0,0x57,0xfd, 0x6c,0xf9,0x7e,0x3c,0xfc,0xf7,0xf5,0xe0,0xbe,0xe2,0x24,0x81,0x32,0x5d,0x81,0x47, 0x4,0xf8,0xe0,0xc2,0xcc,0xf4,0x4c,0xa5,0x1c,0xcf,0x92,0x9,0x84,0x62,0xdc,0xe6, 0x8f,0x47,0xfc,0xb7,0xb,0xff,0xfc,0x1d,0xd3,0x22,0xc4,0x49,0x62,0xb9,0x58,0x2a, 0x14,0xe3,0x51,0x12,0x71,0x8e,0x44,0x9a,0x8c,0xf3,0x32,0xa5,0x22,0x89,0x42,0x92, 0x29,0xc5,0x25,0xd2,0xff,0x64,0xe2,0xdf,0x2c,0xfb,0x3,0x3e,0xdf,0x35,0x0,0xb0, 0x6a,0x3e,0x1,0x7b,0x91,0x2d,0xa8,0x5d,0x63,0x3,0xf6,0x4b,0x27,0x10,0x58,0x74, 0xc0,0xe2,0xf7,0x0,0x0,0xf2,0xbb,0x6f,0xc1,0xd4,0x28,0x8,0x3,0x80,0x68,0x83, 0xe1,0xcf,0x77,0xff,0xef,0x3f,0xfd,0x47,0xa0,0x25,0x0,0x80,0x66,0x49,0x92,0x71, 0x0,0x0,0x5e,0x44,0x24,0x2e,0x54,0xca,0xb3,0x3f,0xc7,0x8,0x0,0x0,0x44,0xa0, 0x81,0x2a,0xb0,0x41,0x1b,0xf4,0xc1,0x18,0x2c,0xc0,0x6,0x1c,0xc1,0x5,0xdc,0xc1, 0xb,0xfc,0x60,0x36,0x84,0x42,0x24,0xc4,0xc2,0x42,0x10,0x42,0xa,0x64,0x80,0x1c, 0x72,0x60,0x29,0xac,0x82,0x42,0x28,0x86,0xcd,0xb0,0x1d,0x2a,0x60,0x2f,0xd4,0x40, 0x1d,0x34,0xc0,0x51,0x68,0x86,0x93,0x70,0xe,0x2e,0xc2,0x55,0xb8,0xe,0x3d,0x70, 0xf,0xfa,0x61,0x8,0x9e,0xc1,0x28,0xbc,0x81,0x9,0x4,0x41,0xc8,0x8,0x13,0x61, 0x21,0xda,0x88,0x1,0x62,0x8a,0x58,0x23,0x8e,0x8,0x17,0x99,0x85,0xf8,0x21,0xc1, 0x48,0x4,0x12,0x8b,0x24,0x20,0xc9,0x88,0x14,0x51,0x22,0x4b,0x91,0x35,0x48,0x31, 0x52,0x8a,0x54,0x20,0x55,0x48,0x1d,0xf2,0x3d,0x72,0x2,0x39,0x87,0x5c,0x46,0xba, 0x91,0x3b,0xc8,0x0,0x32,0x82,0xfc,0x86,0xbc,0x47,0x31,0x94,0x81,0xb2,0x51,0x3d, 0xd4,0xc,0xb5,0x43,0xb9,0xa8,0x37,0x1a,0x84,0x46,0xa2,0xb,0xd0,0x64,0x74,0x31, 0x9a,0x8f,0x16,0xa0,0x9b,0xd0,0x72,0xb4,0x1a,0x3d,0x8c,0x36,0xa1,0xe7,0xd0,0xab, 0x68,0xf,0xda,0x8f,0x3e,0x43,0xc7,0x30,0xc0,0xe8,0x18,0x7,0x33,0xc4,0x6c,0x30, 0x2e,0xc6,0xc3,0x42,0xb1,0x38,0x2c,0x9,0x93,0x63,0xcb,0xb1,0x22,0xac,0xc,0xab, 0xc6,0x1a,0xb0,0x56,0xac,0x3,0xbb,0x89,0xf5,0x63,0xcf,0xb1,0x77,0x4,0x12,0x81, 0x45,0xc0,0x9,0x36,0x4,0x77,0x42,0x20,0x61,0x1e,0x41,0x48,0x58,0x4c,0x58,0x4e, 0xd8,0x48,0xa8,0x20,0x1c,0x24,0x34,0x11,0xda,0x9,0x37,0x9,0x3,0x84,0x51,0xc2, 0x27,0x22,0x93,0xa8,0x4b,0xb4,0x26,0xba,0x11,0xf9,0xc4,0x18,0x62,0x32,0x31,0x87, 0x58,0x48,0x2c,0x23,0xd6,0x12,0x8f,0x13,0x2f,0x10,0x7b,0x88,0x43,0xc4,0x37,0x24, 0x12,0x89,0x43,0x32,0x27,0xb9,0x90,0x2,0x49,0xb1,0xa4,0x54,0xd2,0x12,0xd2,0x46, 0xd2,0x6e,0x52,0x23,0xe9,0x2c,0xa9,0x9b,0x34,0x48,0x1a,0x23,0x93,0xc9,0xda,0x64, 0x6b,0xb2,0x7,0x39,0x94,0x2c,0x20,0x2b,0xc8,0x85,0xe4,0x9d,0xe4,0xc3,0xe4,0x33, 0xe4,0x1b,0xe4,0x21,0xf2,0x5b,0xa,0x9d,0x62,0x40,0x71,0xa4,0xf8,0x53,0xe2,0x28, 0x52,0xca,0x6a,0x4a,0x19,0xe5,0x10,0xe5,0x34,0xe5,0x6,0x65,0x98,0x32,0x41,0x55, 0xa3,0x9a,0x52,0xdd,0xa8,0xa1,0x54,0x11,0x35,0x8f,0x5a,0x42,0xad,0xa1,0xb6,0x52, 0xaf,0x51,0x87,0xa8,0x13,0x34,0x75,0x9a,0x39,0xcd,0x83,0x16,0x49,0x4b,0xa5,0xad, 0xa2,0x95,0xd3,0x1a,0x68,0x17,0x68,0xf7,0x69,0xaf,0xe8,0x74,0xba,0x11,0xdd,0x95, 0x1e,0x4e,0x97,0xd0,0x57,0xd2,0xcb,0xe9,0x47,0xe8,0x97,0xe8,0x3,0xf4,0x77,0xc, 0xd,0x86,0x15,0x83,0xc7,0x88,0x67,0x28,0x19,0x9b,0x18,0x7,0x18,0x67,0x19,0x77, 0x18,0xaf,0x98,0x4c,0xa6,0x19,0xd3,0x8b,0x19,0xc7,0x54,0x30,0x37,0x31,0xeb,0x98, 0xe7,0x99,0xf,0x99,0x6f,0x55,0x58,0x2a,0xb6,0x2a,0x7c,0x15,0x91,0xca,0xa,0x95, 0x4a,0x95,0x26,0x95,0x1b,0x2a,0x2f,0x54,0xa9,0xaa,0xa6,0xaa,0xde,0xaa,0xb,0x55, 0xf3,0x55,0xcb,0x54,0x8f,0xa9,0x5e,0x53,0x7d,0xae,0x46,0x55,0x33,0x53,0xe3,0xa9, 0x9,0xd4,0x96,0xab,0x55,0xaa,0x9d,0x50,0xeb,0x53,0x1b,0x53,0x67,0xa9,0x3b,0xa8, 0x87,0xaa,0x67,0xa8,0x6f,0x54,0x3f,0xa4,0x7e,0x59,0xfd,0x89,0x6,0x59,0xc3,0x4c, 0xc3,0x4f,0x43,0xa4,0x51,0xa0,0xb1,0x5f,0xe3,0xbc,0xc6,0x20,0xb,0x63,0x19,0xb3, 0x78,0x2c,0x21,0x6b,0xd,0xab,0x86,0x75,0x81,0x35,0xc4,0x26,0xb1,0xcd,0xd9,0x7c, 0x76,0x2a,0xbb,0x98,0xfd,0x1d,0xbb,0x8b,0x3d,0xaa,0xa9,0xa1,0x39,0x43,0x33,0x4a, 0x33,0x57,0xb3,0x52,0xf3,0x94,0x66,0x3f,0x7,0xe3,0x98,0x71,0xf8,0x9c,0x74,0x4e, 0x9,0xe7,0x28,0xa7,0x97,0xf3,0x7e,0x8a,0xde,0x14,0xef,0x29,0xe2,0x29,0x1b,0xa6, 0x34,0x4c,0xb9,0x31,0x65,0x5c,0x6b,0xaa,0x96,0x97,0x96,0x58,0xab,0x48,0xab,0x51, 0xab,0x47,0xeb,0xbd,0x36,0xae,0xed,0xa7,0x9d,0xa6,0xbd,0x45,0xbb,0x59,0xfb,0x81, 0xe,0x41,0xc7,0x4a,0x27,0x5c,0x27,0x47,0x67,0x8f,0xce,0x5,0x9d,0xe7,0x53,0xd9, 0x53,0xdd,0xa7,0xa,0xa7,0x16,0x4d,0x3d,0x3a,0xf5,0xae,0x2e,0xaa,0x6b,0xa5,0x1b, 0xa1,0xbb,0x44,0x77,0xbf,0x6e,0xa7,0xee,0x98,0x9e,0xbe,0x5e,0x80,0x9e,0x4c,0x6f, 0xa7,0xde,0x79,0xbd,0xe7,0xfa,0x1c,0x7d,0x2f,0xfd,0x54,0xfd,0x6d,0xfa,0xa7,0xf5, 0x47,0xc,0x58,0x6,0xb3,0xc,0x24,0x6,0xdb,0xc,0xce,0x18,0x3c,0xc5,0x35,0x71, 0x6f,0x3c,0x1d,0x2f,0xc7,0xdb,0xf1,0x51,0x43,0x5d,0xc3,0x40,0x43,0xa5,0x61,0x95, 0x61,0x97,0xe1,0x84,0x91,0xb9,0xd1,0x3c,0xa3,0xd5,0x46,0x8d,0x46,0xf,0x8c,0x69, 0xc6,0x5c,0xe3,0x24,0xe3,0x6d,0xc6,0x6d,0xc6,0xa3,0x26,0x6,0x26,0x21,0x26,0x4b, 0x4d,0xea,0x4d,0xee,0x9a,0x52,0x4d,0xb9,0xa6,0x29,0xa6,0x3b,0x4c,0x3b,0x4c,0xc7, 0xcd,0xcc,0xcd,0xa2,0xcd,0xd6,0x99,0x35,0x9b,0x3d,0x31,0xd7,0x32,0xe7,0x9b,0xe7, 0x9b,0xd7,0x9b,0xdf,0xb7,0x60,0x5a,0x78,0x5a,0x2c,0xb6,0xa8,0xb6,0xb8,0x65,0x49, 0xb2,0xe4,0x5a,0xa6,0x59,0xee,0xb6,0xbc,0x6e,0x85,0x5a,0x39,0x59,0xa5,0x58,0x55, 0x5a,0x5d,0xb3,0x46,0xad,0x9d,0xad,0x25,0xd6,0xbb,0xad,0xbb,0xa7,0x11,0xa7,0xb9, 0x4e,0x93,0x4e,0xab,0x9e,0xd6,0x67,0xc3,0xb0,0xf1,0xb6,0xc9,0xb6,0xa9,0xb7,0x19, 0xb0,0xe5,0xd8,0x6,0xdb,0xae,0xb6,0x6d,0xb6,0x7d,0x61,0x67,0x62,0x17,0x67,0xb7, 0xc5,0xae,0xc3,0xee,0x93,0xbd,0x93,0x7d,0xba,0x7d,0x8d,0xfd,0x3d,0x7,0xd,0x87, 0xd9,0xe,0xab,0x1d,0x5a,0x1d,0x7e,0x73,0xb4,0x72,0x14,0x3a,0x56,0x3a,0xde,0x9a, 0xce,0x9c,0xee,0x3f,0x7d,0xc5,0xf4,0x96,0xe9,0x2f,0x67,0x58,0xcf,0x10,0xcf,0xd8, 0x33,0xe3,0xb6,0x13,0xcb,0x29,0xc4,0x69,0x9d,0x53,0x9b,0xd3,0x47,0x67,0x17,0x67, 0xb9,0x73,0x83,0xf3,0x88,0x8b,0x89,0x4b,0x82,0xcb,0x2e,0x97,0x3e,0x2e,0x9b,0x1b, 0xc6,0xdd,0xc8,0xbd,0xe4,0x4a,0x74,0xf5,0x71,0x5d,0xe1,0x7a,0xd2,0xf5,0x9d,0x9b, 0xb3,0x9b,0xc2,0xed,0xa8,0xdb,0xaf,0xee,0x36,0xee,0x69,0xee,0x87,0xdc,0x9f,0xcc, 0x34,0x9f,0x29,0x9e,0x59,0x33,0x73,0xd0,0xc3,0xc8,0x43,0xe0,0x51,0xe5,0xd1,0x3f, 0xb,0x9f,0x95,0x30,0x6b,0xdf,0xac,0x7e,0x4f,0x43,0x4f,0x81,0x67,0xb5,0xe7,0x23, 0x2f,0x63,0x2f,0x91,0x57,0xad,0xd7,0xb0,0xb7,0xa5,0x77,0xaa,0xf7,0x61,0xef,0x17, 0x3e,0xf6,0x3e,0x72,0x9f,0xe3,0x3e,0xe3,0x3c,0x37,0xde,0x32,0xde,0x59,0x5f,0xcc, 0x37,0xc0,0xb7,0xc8,0xb7,0xcb,0x4f,0xc3,0x6f,0x9e,0x5f,0x85,0xdf,0x43,0x7f,0x23, 0xff,0x64,0xff,0x7a,0xff,0xd1,0x0,0xa7,0x80,0x25,0x1,0x67,0x3,0x89,0x81,0x41, 0x81,0x5b,0x2,0xfb,0xf8,0x7a,0x7c,0x21,0xbf,0x8e,0x3f,0x3a,0xdb,0x65,0xf6,0xb2, 0xd9,0xed,0x41,0x8c,0xa0,0xb9,0x41,0x15,0x41,0x8f,0x82,0xad,0x82,0xe5,0xc1,0xad, 0x21,0x68,0xc8,0xec,0x90,0xad,0x21,0xf7,0xe7,0x98,0xce,0x91,0xce,0x69,0xe,0x85, 0x50,0x7e,0xe8,0xd6,0xd0,0x7,0x61,0xe6,0x61,0x8b,0xc3,0x7e,0xc,0x27,0x85,0x87, 0x85,0x57,0x86,0x3f,0x8e,0x70,0x88,0x58,0x1a,0xd1,0x31,0x97,0x35,0x77,0xd1,0xdc, 0x43,0x73,0xdf,0x44,0xfa,0x44,0x96,0x44,0xde,0x9b,0x67,0x31,0x4f,0x39,0xaf,0x2d, 0x4a,0x35,0x2a,0x3e,0xaa,0x2e,0x6a,0x3c,0xda,0x37,0xba,0x34,0xba,0x3f,0xc6,0x2e, 0x66,0x59,0xcc,0xd5,0x58,0x9d,0x58,0x49,0x6c,0x4b,0x1c,0x39,0x2e,0x2a,0xae,0x36, 0x6e,0x6c,0xbe,0xdf,0xfc,0xed,0xf3,0x87,0xe2,0x9d,0xe2,0xb,0xe3,0x7b,0x17,0x98, 0x2f,0xc8,0x5d,0x70,0x79,0xa1,0xce,0xc2,0xf4,0x85,0xa7,0x16,0xa9,0x2e,0x12,0x2c, 0x3a,0x96,0x40,0x4c,0x88,0x4e,0x38,0x94,0xf0,0x41,0x10,0x2a,0xa8,0x16,0x8c,0x25, 0xf2,0x13,0x77,0x25,0x8e,0xa,0x79,0xc2,0x1d,0xc2,0x67,0x22,0x2f,0xd1,0x36,0xd1, 0x88,0xd8,0x43,0x5c,0x2a,0x1e,0x4e,0xf2,0x48,0x2a,0x4d,0x7a,0x92,0xec,0x91,0xbc, 0x35,0x79,0x24,0xc5,0x33,0xa5,0x2c,0xe5,0xb9,0x84,0x27,0xa9,0x90,0xbc,0x4c,0xd, 0x4c,0xdd,0x9b,0x3a,0x9e,0x16,0x9a,0x76,0x20,0x6d,0x32,0x3d,0x3a,0xbd,0x31,0x83, 0x92,0x91,0x90,0x71,0x42,0xaa,0x21,0x4d,0x93,0xb6,0x67,0xea,0x67,0xe6,0x66,0x76, 0xcb,0xac,0x65,0x85,0xb2,0xfe,0xc5,0x6e,0x8b,0xb7,0x2f,0x1e,0x95,0x7,0xc9,0x6b, 0xb3,0x90,0xac,0x5,0x59,0x2d,0xa,0xb6,0x42,0xa6,0xe8,0x54,0x5a,0x28,0xd7,0x2a, 0x7,0xb2,0x67,0x65,0x57,0x66,0xbf,0xcd,0x89,0xca,0x39,0x96,0xab,0x9e,0x2b,0xcd, 0xed,0xcc,0xb3,0xca,0xdb,0x90,0x37,0x9c,0xef,0x9f,0xff,0xed,0x12,0xc2,0x12,0xe1, 0x92,0xb6,0xa5,0x86,0x4b,0x57,0x2d,0x1d,0x58,0xe6,0xbd,0xac,0x6a,0x39,0xb2,0x3c, 0x71,0x79,0xdb,0xa,0xe3,0x15,0x5,0x2b,0x86,0x56,0x6,0xac,0x3c,0xb8,0x8a,0xb6, 0x2a,0x6d,0xd5,0x4f,0xab,0xed,0x57,0x97,0xae,0x7e,0xbd,0x26,0x7a,0x4d,0x6b,0x81, 0x5e,0xc1,0xca,0x82,0xc1,0xb5,0x1,0x6b,0xeb,0xb,0x55,0xa,0xe5,0x85,0x7d,0xeb, 0xdc,0xd7,0xed,0x5d,0x4f,0x58,0x2f,0x59,0xdf,0xb5,0x61,0xfa,0x86,0x9d,0x1b,0x3e, 0x15,0x89,0x8a,0xae,0x14,0xdb,0x17,0x97,0x15,0x7f,0xd8,0x28,0xdc,0x78,0xe5,0x1b, 0x87,0x6f,0xca,0xbf,0x99,0xdc,0x94,0xb4,0xa9,0xab,0xc4,0xb9,0x64,0xcf,0x66,0xd2, 0x66,0xe9,0xe6,0xde,0x2d,0x9e,0x5b,0xe,0x96,0xaa,0x97,0xe6,0x97,0xe,0x6e,0xd, 0xd9,0xda,0xb4,0xd,0xdf,0x56,0xb4,0xed,0xf5,0xf6,0x45,0xdb,0x2f,0x97,0xcd,0x28, 0xdb,0xbb,0x83,0xb6,0x43,0xb9,0xa3,0xbf,0x3c,0xb8,0xbc,0x65,0xa7,0xc9,0xce,0xcd, 0x3b,0x3f,0x54,0xa4,0x54,0xf4,0x54,0xfa,0x54,0x36,0xee,0xd2,0xdd,0xb5,0x61,0xd7, 0xf8,0x6e,0xd1,0xee,0x1b,0x7b,0xbc,0xf6,0x34,0xec,0xd5,0xdb,0x5b,0xbc,0xf7,0xfd, 0x3e,0xc9,0xbe,0xdb,0x55,0x1,0x55,0x4d,0xd5,0x66,0xd5,0x65,0xfb,0x49,0xfb,0xb3, 0xf7,0x3f,0xae,0x89,0xaa,0xe9,0xf8,0x96,0xfb,0x6d,0x5d,0xad,0x4e,0x6d,0x71,0xed, 0xc7,0x3,0xd2,0x3,0xfd,0x7,0x23,0xe,0xb6,0xd7,0xb9,0xd4,0xd5,0x1d,0xd2,0x3d, 0x54,0x52,0x8f,0xd6,0x2b,0xeb,0x47,0xe,0xc7,0x1f,0xbe,0xfe,0x9d,0xef,0x77,0x2d, 0xd,0x36,0xd,0x55,0x8d,0x9c,0xc6,0xe2,0x23,0x70,0x44,0x79,0xe4,0xe9,0xf7,0x9, 0xdf,0xf7,0x1e,0xd,0x3a,0xda,0x76,0x8c,0x7b,0xac,0xe1,0x7,0xd3,0x1f,0x76,0x1d, 0x67,0x1d,0x2f,0x6a,0x42,0x9a,0xf2,0x9a,0x46,0x9b,0x53,0x9a,0xfb,0x5b,0x62,0x5b, 0xba,0x4f,0xcc,0x3e,0xd1,0xd6,0xea,0xde,0x7a,0xfc,0x47,0xdb,0x1f,0xf,0x9c,0x34, 0x3c,0x59,0x79,0x4a,0xf3,0x54,0xc9,0x69,0xda,0xe9,0x82,0xd3,0x93,0x67,0xf2,0xcf, 0x8c,0x9d,0x95,0x9d,0x7d,0x7e,0x2e,0xf9,0xdc,0x60,0xdb,0xa2,0xb6,0x7b,0xe7,0x63, 0xce,0xdf,0x6a,0xf,0x6f,0xef,0xba,0x10,0x74,0xe1,0xd2,0x45,0xff,0x8b,0xe7,0x3b, 0xbc,0x3b,0xce,0x5c,0xf2,0xb8,0x74,0xf2,0xb2,0xdb,0xe5,0x13,0x57,0xb8,0x57,0x9a, 0xaf,0x3a,0x5f,0x6d,0xea,0x74,0xea,0x3c,0xfe,0x93,0xd3,0x4f,0xc7,0xbb,0x9c,0xbb, 0x9a,0xae,0xb9,0x5c,0x6b,0xb9,0xee,0x7a,0xbd,0xb5,0x7b,0x66,0xf7,0xe9,0x1b,0x9e, 0x37,0xce,0xdd,0xf4,0xbd,0x79,0xf1,0x16,0xff,0xd6,0xd5,0x9e,0x39,0x3d,0xdd,0xbd, 0xf3,0x7a,0x6f,0xf7,0xc5,0xf7,0xf5,0xdf,0x16,0xdd,0x7e,0x72,0x27,0xfd,0xce,0xcb, 0xbb,0xd9,0x77,0x27,0xee,0xad,0xbc,0x4f,0xbc,0x5f,0xf4,0x40,0xed,0x41,0xd9,0x43, 0xdd,0x87,0xd5,0x3f,0x5b,0xfe,0xdc,0xd8,0xef,0xdc,0x7f,0x6a,0xc0,0x77,0xa0,0xf3, 0xd1,0xdc,0x47,0xf7,0x6,0x85,0x83,0xcf,0xfe,0x91,0xf5,0x8f,0xf,0x43,0x5,0x8f, 0x99,0x8f,0xcb,0x86,0xd,0x86,0xeb,0x9e,0x38,0x3e,0x39,0x39,0xe2,0x3f,0x72,0xfd, 0xe9,0xfc,0xa7,0x43,0xcf,0x64,0xcf,0x26,0x9e,0x17,0xfe,0xa2,0xfe,0xcb,0xae,0x17, 0x16,0x2f,0x7e,0xf8,0xd5,0xeb,0xd7,0xce,0xd1,0x98,0xd1,0xa1,0x97,0xf2,0x97,0x93, 0xbf,0x6d,0x7c,0xa5,0xfd,0xea,0xc0,0xeb,0x19,0xaf,0xdb,0xc6,0xc2,0xc6,0x1e,0xbe, 0xc9,0x78,0x33,0x31,0x5e,0xf4,0x56,0xfb,0xed,0xc1,0x77,0xdc,0x77,0x1d,0xef,0xa3, 0xdf,0xf,0x4f,0xe4,0x7c,0x20,0x7f,0x28,0xff,0x68,0xf9,0xb1,0xf5,0x53,0xd0,0xa7, 0xfb,0x93,0x19,0x93,0x93,0xff,0x4,0x3,0x98,0xf3,0xfc,0x63,0x33,0x2d,0xdb,0x0, 0x0,0x0,0x20,0x63,0x48,0x52,0x4d,0x0,0x0,0x7a,0x25,0x0,0x0,0x80,0x83,0x0, 0x0,0xf9,0xff,0x0,0x0,0x80,0xe9,0x0,0x0,0x75,0x30,0x0,0x0,0xea,0x60,0x0, 0x0,0x3a,0x98,0x0,0x0,0x17,0x6f,0x92,0x5f,0xc5,0x46,0x0,0x0,0x2,0x6f,0x49, 0x44,0x41,0x54,0x78,0xda,0xd4,0x9a,0x5b,0x6e,0x1a,0x31,0x14,0x86,0x7f,0x23,0x24, 0x4,0x88,0xdb,0x63,0xb8,0x5,0x48,0x0,0x11,0xc2,0xa5,0x88,0x5,0xd0,0x1d,0x74, 0x7,0x38,0x3b,0x60,0x7,0xa5,0x2b,0x28,0x3b,0x70,0xba,0x83,0xee,0xa0,0xe9,0x2, 0x50,0xa7,0x2b,0x48,0xc2,0x5b,0x78,0x61,0xd0,0x8,0x46,0xca,0x3,0x7f,0x5f,0x26, 0x88,0x48,0x5c,0x3a,0xdc,0x32,0xb6,0x74,0x34,0x1a,0xe9,0xd8,0x3a,0x9f,0x7f,0xfb, 0x1c,0x8f,0x35,0x82,0x24,0x74,0x6e,0x7e,0xb7,0x1d,0xda,0xed,0xf6,0x77,0x0,0xe6, 0x70,0x38,0xfc,0x76,0xaa,0xa0,0xdc,0x4c,0xaa,0x6f,0x8f,0xc1,0x7b,0x24,0xfb,0xad, 0x56,0x4b,0x79,0x41,0x1,0xd7,0x0,0x8b,0xc5,0xe2,0xcd,0x64,0xb3,0xd9,0x54,0xda, 0x1,0x90,0x5c,0x35,0xd9,0x68,0x34,0x94,0xce,0x0,0x20,0x29,0xeb,0xf5,0xba,0xd2, 0x19,0x0,0x24,0x65,0xad,0x56,0x53,0x3a,0x3,0x80,0xa4,0xbc,0xbd,0xbd,0x55,0x3a, 0x3,0x80,0xa4,0xac,0x56,0xab,0x4a,0x67,0x0,0x90,0x94,0x37,0x37,0x37,0x4a,0x67, 0x0,0x90,0x94,0x95,0x4a,0x45,0x79,0x12,0x60,0xa5,0xe,0xec,0x32,0x59,0x2e,0x97, 0x95,0xae,0xa,0x2c,0x95,0x28,0x95,0x4a,0x4a,0x67,0x0,0x90,0x94,0xc5,0x62,0x51, 0xe9,0xc,0x0,0x92,0xf2,0xfa,0xfa,0x5a,0xe9,0xc,0x0,0x92,0xf2,0xea,0xea,0x4a, 0xe9,0xc,0x0,0x92,0xb2,0x50,0x28,0x28,0x9d,0x1,0x40,0x52,0xe6,0xf3,0x79,0xa5, 0x33,0x0,0x48,0xca,0x5c,0x2e,0x77,0x14,0x8,0xff,0x3e,0x75,0xe0,0x48,0x4d,0x66, 0xb3,0x59,0x8c,0x46,0xa3,0x3b,0x1d,0x15,0x58,0x2a,0x91,0xc9,0x64,0x94,0xce,0x0, 0x20,0x29,0xd3,0xe9,0xb4,0xd2,0x19,0x0,0x24,0x65,0x2a,0x95,0x52,0x3a,0x3,0x80, 0xa4,0x4c,0x26,0x93,0xea,0xe4,0x9b,0xf8,0xc4,0xf7,0x48,0xf2,0xe2,0xe2,0xe2,0x1, 0xc0,0xf,0x5d,0x1,0x4c,0x5d,0x14,0x78,0x2,0x60,0x38,0xf6,0xf4,0xf6,0xfe,0xf2, 0xf2,0x32,0xd5,0x1,0xe0,0x7e,0x3c,0x1e,0xdf,0x1d,0x4b,0xb2,0x8f,0x28,0x64,0x83, 0xf,0xbd,0x1b,0x3d,0x82,0x2,0x39,0x0,0x7f,0x75,0x3e,0xb,0xf5,0xbc,0x7c,0x1a, 0x35,0x49,0x3e,0x38,0xcf,0x4d,0x3e,0x9d,0x44,0x22,0x71,0xe9,0x45,0x0,0x3,0x40, 0x6e,0x32,0x99,0x7c,0x26,0xd9,0xd9,0x1,0xda,0x3f,0x16,0x80,0x70,0xbb,0xa6,0xe3, 0xf1,0xf8,0xba,0xe,0x86,0x10,0xa2,0x63,0x9a,0xe6,0x32,0xd,0xc6,0x62,0x31,0x5, 0x40,0x6e,0x1b,0x6a,0x3a,0x9d,0x4e,0xf,0xdd,0x67,0xc7,0x50,0xc0,0x0,0xf0,0x2e, 0x78,0xc7,0x6f,0x70,0x8e,0xbd,0xe0,0x5a,0x81,0x68,0x34,0xba,0xda,0xc1,0x0,0xd0, 0xb1,0x2c,0x6b,0xed,0x4c,0x46,0x22,0x91,0x5f,0x0,0x3a,0x9b,0xaa,0xae,0x65,0x59, 0x89,0xb3,0x2b,0xb0,0x72,0x71,0x65,0x90,0xdc,0x18,0xbc,0xe3,0x3b,0xd8,0x72,0xf1, 0x15,0xf,0x87,0xc3,0xdd,0xb3,0x2b,0x10,0xe,0x87,0xff,0x38,0x6b,0xbe,0x37,0x9b, 0xcd,0x76,0x96,0xfe,0x50,0x28,0xf4,0xe8,0xe4,0xfe,0x75,0xcd,0x98,0xcf,0xe7,0x9f, 0xe,0x51,0xc0,0x35,0x80,0x10,0xc2,0x95,0x7f,0x30,0x18,0xec,0x2,0xb8,0xdf,0xe2, 0xd2,0xb1,0x6d,0xfb,0xf7,0xd9,0x96,0xd0,0x1e,0xed,0xe7,0x8e,0xba,0x70,0xd0,0x66, 0x3e,0x39,0x80,0x6d,0xdb,0x53,0x92,0xf7,0x5b,0x0,0xbe,0x4,0x2,0x81,0x4b,0xcf, 0x2,0xfc,0x67,0x4a,0xed,0x7b,0x1a,0xe0,0xf5,0xf5,0xf5,0x79,0x97,0xa,0x9e,0x6, 0x70,0x54,0xd8,0x6,0x10,0xf7,0xfb,0xfd,0x7b,0x2d,0xa3,0x93,0x67,0xa1,0x77,0xb3, 0xe5,0xf3,0x6d,0x2a,0x6c,0xe6,0x62,0xb1,0x48,0x78,0x35,0xb,0xbd,0xfb,0x98,0xd9, 0xa0,0xc0,0xe0,0x10,0x69,0x5d,0xd9,0xc1,0x95,0x53,0x88,0xaf,0x0,0x26,0x0,0x8, 0xe0,0x51,0x8,0xd1,0x3d,0x24,0x26,0xa1,0xfb,0xef,0x36,0xff,0x6,0x0,0xfb,0xa6, 0x77,0xc6,0xe4,0x12,0x75,0xd8,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42, 0x60,0x82, // /home/Adel/ZeGrapher/icons/keyboard.png 0x0,0x0,0x7,0x52, 0x89, 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, 0x0,0x0,0x33,0x0,0x0,0x0,0x27,0x8,0x6,0x0,0x0,0x0,0xa2,0xe6,0x70,0xa7, 0x0,0x0,0x0,0x1,0x73,0x52,0x47,0x42,0x0,0xae,0xce,0x1c,0xe9,0x0,0x0,0x0, 0x6,0x62,0x4b,0x47,0x44,0x0,0xff,0x0,0xff,0x0,0xff,0xa0,0xbd,0xa7,0x93,0x0, 0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xb,0x13,0x0,0x0,0xb,0x13,0x1, 0x0,0x9a,0x9c,0x18,0x0,0x0,0x0,0x7,0x74,0x49,0x4d,0x45,0x7,0xdc,0x4,0x1, 0x13,0x13,0x1,0xec,0x9c,0xdb,0x7c,0x0,0x0,0x6,0xd2,0x49,0x44,0x41,0x54,0x58, 0xc3,0xd5,0x59,0x5d,0x6c,0x54,0x45,0x14,0xfe,0xce,0x50,0xb1,0x76,0x77,0x7d,0x82, 0xc2,0x13,0x6c,0x81,0x36,0x2a,0xb0,0xdd,0x52,0x35,0xa5,0xd5,0x7,0xa3,0xef,0x26, 0xf8,0x80,0x18,0xe2,0xc3,0x9a,0xa8,0x51,0x84,0x52,0xb1,0xa2,0x81,0x60,0x22,0x12, 0x68,0xa0,0x14,0x42,0xf0,0xc1,0xa4,0x2f,0x46,0xe4,0x41,0xa2,0x35,0xa8,0xa0,0x2, 0x4a,0xb3,0x4b,0x21,0xa,0xdb,0x1f,0x30,0x21,0x51,0x2a,0x4f,0x50,0x48,0x7c,0xa0, 0x2d,0xfd,0x9,0x73,0x7c,0xb8,0x73,0xe7,0xce,0xdc,0x7b,0x77,0xf7,0xee,0xd6,0x17, 0x6f,0xb2,0x7b,0x67,0xf7,0xce,0x9d,0x39,0xdf,0x9c,0x73,0xbe,0x73,0xe6,0xc,0xc1, 0x77,0xfd,0x7e,0x7d,0x74,0x29,0x80,0x24,0x22,0x5e,0x82,0x8,0x44,0x4,0x0,0x20, 0x22,0x10,0x0,0x10,0xa0,0x5a,0x70,0x6f,0x60,0xf7,0xe6,0x34,0x98,0xd5,0x2f,0x6, 0x98,0x19,0xac,0xda,0x11,0xaf,0xd1,0xe6,0x86,0xe4,0xdf,0xfe,0x3f,0xc9,0x0,0xf1, 0x22,0x80,0x9e,0xa8,0x40,0xc8,0x15,0x9e,0x8,0xe4,0xa,0x4f,0x6a,0x40,0x22,0x6f, 0x60,0xdf,0xa5,0x30,0x38,0xa0,0xd4,0x5d,0x3,0x62,0x17,0x6a,0x34,0x40,0x0,0xda, 0x9b,0x1b,0x92,0x7d,0x16,0x18,0x5,0xe4,0x1b,0x0,0xb8,0x33,0x76,0x1b,0x77,0xc7, 0xc6,0x8a,0x3,0x21,0x57,0xb,0xe,0x10,0x57,0x78,0xad,0x21,0xb3,0xa3,0x1f,0xa, 0x6b,0x25,0x81,0xd9,0xd3,0x92,0xa9,0x1d,0x2e,0xa1,0xa2,0x5,0xb5,0xb5,0x58,0x58, 0xbb,0x8,0x0,0x30,0x3d,0x75,0x7f,0x63,0x6b,0xea,0xf1,0x2f,0x4c,0x30,0x37,0x0, 0x24,0x3f,0xef,0xfd,0xc,0xa7,0x4f,0x7e,0x8b,0xa8,0x9a,0x31,0x5,0x26,0x54,0x76, 0x69,0xb1,0xd,0x0,0x51,0xb4,0xf3,0xec,0x73,0xcf,0xe3,0x8d,0x77,0xda,0x31,0x3b, 0x33,0x3d,0x75,0xed,0x52,0xf6,0x85,0x4c,0x26,0x93,0x15,0xa6,0x8f,0x44,0x1,0x42, 0x5a,0x70,0xf2,0x34,0x12,0x6a,0x82,0x86,0x6,0x2d,0x73,0x2c,0x30,0x1e,0x59,0x23, 0x97,0xbc,0xfa,0xcf,0x9d,0xc1,0x9d,0xb1,0xdb,0x78,0x68,0xfe,0xc3,0xd5,0xd5,0x35, 0xf1,0x6d,0x0,0x20,0xca,0x71,0x76,0x32,0x5a,0x7e,0xc1,0xc8,0x30,0x3f,0x4f,0xb0, 0x10,0xd1,0x4d,0x70,0x21,0xef,0x97,0xa3,0x69,0xd7,0x1d,0xe6,0x57,0x57,0x27,0x7b, 0x7b,0x7b,0x17,0x55,0x95,0xd,0x24,0xc4,0xb9,0x89,0x82,0xd3,0x53,0x29,0xb3,0x32, 0xc7,0x32,0x1c,0x9f,0x0,0x30,0x11,0xc0,0xec,0xb4,0xa3,0x5b,0xec,0xe2,0xaa,0xb9, 0x0,0x21,0x9f,0x93,0x53,0x4,0x34,0x64,0xd1,0xb4,0x39,0xae,0x47,0xcd,0x95,0x2, 0x2a,0x8,0x66,0x49,0xb2,0xe,0xaf,0xbe,0xf6,0x3a,0x56,0xae,0x4e,0x41,0x10,0x41, 0x8,0xc7,0x34,0x84,0x20,0xfc,0x36,0x70,0x1,0x44,0x84,0x96,0xd6,0x36,0x1d,0x67, 0x88,0x8,0x82,0x80,0x81,0x5c,0xe,0x20,0xa0,0xb5,0xed,0x99,0x0,0xa6,0x5c,0x36, 0xb,0x80,0xd1,0xd2,0xda,0xa6,0x59,0x4b,0x2a,0x4a,0xbe,0x90,0xcb,0x82,0x99,0xf1, 0x74,0x4b,0x2b,0x24,0x4b,0x48,0x66,0x48,0xc9,0xfa,0x3e,0xfa,0xd7,0x9f,0xf8,0xf4, 0xf0,0x41,0xdc,0x1c,0xbd,0x51,0x3e,0x98,0x97,0x5e,0x7e,0x5,0x4f,0xac,0x5a,0x8d, 0x3f,0x46,0x86,0x3d,0x20,0x4a,0xe8,0xd5,0xa9,0x34,0xe2,0x89,0x38,0xae,0xe,0xf, 0x59,0x60,0x8,0x40,0x63,0x3a,0x8d,0x78,0x22,0x81,0xe1,0xc1,0x3c,0xbc,0xc0,0xe3, 0x2c,0x6f,0xba,0x29,0x8d,0x58,0x2c,0x8e,0xc1,0x7c,0x3e,0x10,0x5f,0x52,0x8d,0x69, 0xd4,0xc4,0x62,0x18,0xca,0xe7,0x2d,0x90,0x52,0x7d,0x96,0x24,0xeb,0xf0,0xe6,0xe6, 0xad,0xf8,0xb0,0x63,0x73,0xf9,0x60,0x62,0xb1,0x38,0x88,0x8,0x1f,0xef,0xd8,0x6e, 0x99,0x17,0x1,0xd8,0xdd,0x75,0x0,0xa9,0xc6,0x46,0xec,0xe8,0xdc,0xe6,0xf9,0xb5, 0xea,0xd1,0xd5,0xdd,0x83,0x74,0x53,0x1a,0x9d,0xef,0x6e,0xd,0x24,0x0,0xfb,0xbb, 0xf,0x21,0x95,0x4e,0xe3,0x7d,0xf5,0xcc,0xcc,0x8,0xf6,0x74,0x1d,0xc0,0xca,0x54, 0x23,0x76,0x6e,0x7f,0x4f,0x67,0x6,0x5e,0x90,0x65,0xec,0xdc,0xbd,0x17,0x8f,0xad, 0x5c,0x55,0x3c,0x1b,0x29,0x15,0x18,0x8d,0xc4,0xc4,0xb3,0x6f,0xf2,0x2,0xa4,0x95, 0xba,0x0,0x10,0x82,0x20,0x48,0xd8,0x14,0xae,0x7a,0x38,0xcf,0x6c,0x1a,0x74,0xdf, 0x75,0xcd,0x34,0xc8,0x9b,0x21,0x73,0x96,0xd,0x46,0x47,0x77,0x3f,0x6b,0x41,0xfb, 0x8e,0x1f,0x8,0x11,0xb4,0x7f,0x5,0xa9,0x99,0x3c,0xdf,0xb3,0xc3,0xa,0x8,0x64, 0xe5,0x78,0xa1,0xc9,0x43,0x91,0x14,0xa9,0xa4,0x99,0xb9,0x82,0x86,0x11,0xae,0xb7, 0xd6,0x14,0xe,0x54,0xad,0x64,0x50,0xdb,0x4a,0x33,0x8a,0xa3,0x1c,0xd6,0x72,0x6c, 0x49,0xbf,0xa7,0xd9,0xcb,0x6e,0x51,0x28,0xc2,0xc8,0x9a,0xb1,0xdf,0x25,0x9f,0x50, 0x96,0xb5,0x50,0x70,0xf5,0x43,0x27,0x13,0x4,0x21,0x84,0x15,0x97,0xc8,0x8a,0xa7, 0x64,0x71,0x86,0x7f,0xfe,0x12,0x58,0xa,0x6b,0x66,0x72,0x62,0x2,0x0,0xf0,0xd5, 0xc9,0x53,0xda,0xf,0x84,0x20,0xcc,0x73,0x7d,0x82,0x8,0xa7,0xce,0x9c,0x83,0x10, 0x42,0x3,0xd0,0xfd,0x88,0xd0,0x9f,0xcd,0xe9,0x64,0xd4,0x75,0x74,0x97,0xbd,0x7e, 0xe9,0x77,0x68,0xd8,0xa1,0x5e,0x69,0x50,0xb0,0xc4,0x77,0x3f,0x9d,0x75,0x7e,0x4b, 0x87,0x9e,0x1f,0x18,0xed,0x8b,0xb9,0x6c,0xd1,0xb8,0x53,0x55,0x2c,0x48,0x12,0x91, 0x43,0xbf,0xc2,0xb3,0x69,0x53,0x60,0x12,0x84,0x86,0xfa,0x7a,0x24,0x12,0x8f,0x62, 0x28,0x9f,0x7,0x99,0xfd,0x88,0xd0,0xd0,0xd0,0x80,0x44,0x22,0x81,0x2b,0x97,0x2f, 0x5b,0x60,0x24,0x33,0x96,0xaf,0x58,0x81,0x9a,0x9a,0x18,0x86,0xae,0xe4,0x35,0xfd, 0xba,0x31,0xc5,0x2,0xaa,0xda,0x4b,0xeb,0x96,0x95,0x54,0x4d,0x61,0x6a,0x8e,0xc7, 0x1,0x0,0xbb,0x3e,0xe8,0xd4,0xc0,0x3c,0x76,0xf1,0x1c,0xff,0x40,0xcf,0x21,0x34, 0xad,0x59,0x83,0x8e,0x2d,0x9b,0x2d,0x87,0x6,0x1,0x47,0x8f,0x1e,0xc5,0x9a,0xe6, 0x66,0x6c,0x7a,0xfb,0xad,0xc0,0x5e,0xa6,0xe7,0xf0,0x11,0x34,0xa6,0xd3,0xe8,0x68, 0xdf,0xe2,0x11,0xb4,0xde,0x1e,0x18,0x1b,0x35,0x95,0xea,0x7c,0xb4,0x67,0x1f,0x9e, 0x6a,0x59,0x5b,0x99,0xcf,0x44,0xc9,0xb3,0xe0,0x66,0xc6,0x30,0x99,0xc9,0x68,0x93, 0xa3,0x45,0xcb,0x3f,0xc8,0x60,0xca,0x48,0x29,0x54,0x4,0x39,0xa2,0x80,0xa1,0x82, 0x7f,0x52,0x10,0x51,0x1,0xc6,0x2b,0xc4,0x6c,0x85,0xc8,0xa9,0xd2,0x7d,0x51,0x49, 0x30,0x1c,0xf5,0x49,0xc8,0xce,0x90,0x5d,0xa7,0x47,0x91,0xad,0x30,0x97,0x33,0xe7, 0x1c,0xc1,0x84,0x4e,0xc0,0xbe,0x5d,0x30,0x7b,0xf6,0xae,0xd3,0x13,0xf6,0x30,0x4a, 0xc9,0x1a,0x2c,0xdb,0x5f,0x45,0x5,0x67,0x94,0xf,0xb4,0x20,0x1,0x4c,0x8c,0x8f, 0x6b,0x6a,0x9e,0x27,0x84,0x66,0x34,0x21,0x84,0x43,0xcf,0x6,0x25,0x33,0x3,0x67, 0xcf,0xf7,0x5b,0x14,0xee,0x32,0x9a,0x94,0x12,0xb9,0x81,0x1,0x8b,0xc9,0x4c,0x2a, 0x3e,0xf3,0xeb,0x79,0xcd,0x5c,0x26,0xd,0x4b,0xc9,0x78,0x20,0xa5,0xf5,0xec,0xe2, 0x85,0x5c,0xf9,0x60,0xcc,0x82,0xc3,0xd5,0x91,0x61,0x4d,0xc3,0x42,0x9,0xb8,0xa2, 0xbe,0x1e,0x89,0x44,0x2,0x83,0x83,0x83,0x36,0x6d,0x2b,0xff,0x30,0x33,0x69,0xdb, 0x1a,0x15,0x3d,0x43,0x65,0xc5,0xd2,0xa3,0xe4,0xba,0x65,0xcb,0x1d,0xaa,0x1e,0x1c, 0x54,0xcf,0xa4,0x45,0xd7,0x4b,0xea,0xea,0x50,0xaa,0x16,0x55,0x50,0x33,0x35,0xb1, 0x98,0x8f,0x9a,0x3d,0xf7,0xdc,0xbb,0xbf,0x1b,0x8d,0xe9,0x26,0x74,0x76,0xb4,0xfb, 0x1c,0x99,0xa,0x3a,0xb5,0x5f,0xc,0x4f,0x2e,0x7,0x60,0x57,0xf7,0x41,0xac,0x4a, 0x35,0x62,0xfb,0xb6,0xad,0xa1,0x14,0xbd,0x6b,0xcf,0x3e,0x3c,0xd9,0xb2,0xb6,0xa8, 0xa9,0x89,0x62,0x36,0x6b,0x2e,0x84,0xd5,0x36,0x52,0xf7,0x30,0xc1,0x2,0xfc,0xe0, 0xaf,0x36,0xb1,0x7f,0x3,0xe0,0x95,0x9b,0xcc,0x52,0x14,0xd8,0xd6,0x6a,0x29,0xa7, 0xa9,0x2a,0xe6,0x81,0x2e,0x13,0x91,0x25,0x96,0xb3,0x9d,0x75,0xeb,0x5c,0x5e,0xba, 0x2,0x23,0x71,0x21,0x3d,0x31,0x85,0x82,0xf2,0x13,0x82,0xb7,0x49,0xb,0x35,0xf7, 0x90,0x5,0x2c,0x53,0x33,0xc1,0x55,0x76,0xe7,0x92,0xc6,0xc4,0x6c,0x6c,0xe8,0x99, 0x4d,0x31,0xd9,0x27,0x48,0xf0,0x7f,0xb3,0x16,0x20,0xc1,0x90,0x1c,0x5e,0x47,0xd3, 0x99,0x40,0xa5,0x9a,0x61,0x6d,0x67,0xe6,0xfa,0x7b,0x83,0x4a,0x57,0x72,0xf2,0xf5, 0x60,0x95,0xd6,0x3,0x20,0x70,0x81,0x82,0x1f,0x2,0x3b,0x4d,0x5b,0x33,0x6c,0x69, 0xc5,0x9d,0x93,0x2b,0x25,0x80,0x89,0x89,0x71,0x30,0x18,0x5f,0xf6,0x7d,0x6f,0xd0, 0xb2,0xc7,0x68,0x2c,0x19,0x7d,0xa7,0x7f,0xe,0x65,0x30,0xb3,0x54,0xeb,0x12,0x4, 0x9b,0xe6,0x64,0x8,0xef,0x2e,0x8c,0x4b,0xdb,0x5f,0xff,0xf0,0xa3,0x62,0x39,0x69, 0x15,0x34,0x24,0x33,0x2e,0xd,0xe4,0x2a,0x3,0x73,0xe2,0xf8,0x31,0x10,0x80,0x78, 0x3c,0xa1,0xb3,0x65,0x57,0xe8,0xc9,0x89,0x49,0x10,0x1,0xf1,0x44,0x2,0x2,0x64, 0x54,0x2e,0xcd,0x2,0x7a,0x48,0xf9,0x92,0xfd,0x9a,0xf0,0xc0,0x8d,0xdf,0xbb,0x7, 0x66,0xe0,0x91,0x58,0x8d,0x5,0xd2,0xcd,0xa2,0xc7,0xc7,0xc7,0x71,0xe2,0xf8,0xb1, 0xca,0xc0,0xdc,0x1c,0xbd,0x81,0xee,0xbd,0x9f,0x14,0xaf,0x9b,0x51,0xc8,0x7e,0x3d, 0x4a,0x82,0xc5,0x61,0x11,0x9d,0x3,0x8c,0x69,0x65,0xe,0x73,0xa9,0x9b,0xf9,0xe7, 0xd6,0x95,0x47,0x3,0x10,0xb3,0xf2,0xb,0x22,0x6b,0x52,0xe2,0x32,0xd2,0xa3,0xff, 0x8,0x48,0x64,0x30,0x45,0x1,0xa9,0xff,0x4c,0x2d,0x45,0x17,0x20,0xc8,0x50,0x95, 0x2,0x71,0xc1,0x8c,0x56,0x4,0x8,0xf6,0x7e,0xdd,0x3d,0x9,0xa3,0xd0,0x6d,0x42, 0xe1,0x33,0x9a,0xb9,0x0,0x59,0x50,0x5b,0xeb,0x9c,0xd1,0xdc,0x9f,0x9c,0x2,0x0, 0xa1,0x8e,0xd3,0x46,0x1,0x60,0xdd,0xfa,0xd,0x65,0x64,0xd0,0x6c,0x15,0xbc,0xfd, 0x99,0x83,0xc7,0x56,0xfe,0xf,0xa,0xbe,0x53,0xe,0x90,0x75,0xeb,0x37,0x60,0x61, 0xed,0x22,0xcc,0xce,0x4c,0x4f,0x29,0x30,0xb7,0x2,0x27,0x67,0xe5,0x9c,0x63,0x5a, 0xe7,0x2f,0xd6,0x99,0x66,0xa9,0x63,0x40,0x83,0x9e,0xd5,0x6f,0xe9,0x5f,0x80,0x88, 0xb2,0xdc,0xbc,0x7e,0x6d,0xe4,0x9f,0xb1,0x5b,0x23,0x99,0x4c,0x66,0x83,0x0,0x80, 0xe6,0x86,0x64,0xdf,0xf4,0xd4,0xfd,0x8d,0xb3,0x33,0xd3,0x53,0x51,0x6,0x70,0xb2, 0x59,0x15,0x7,0xac,0xb4,0x5d,0xe2,0x81,0x7b,0x97,0xd2,0x2b,0x48,0xa8,0x8f,0x93, 0xd2,0xbb,0x7d,0x8c,0x18,0x22,0x19,0x6c,0xf4,0x8d,0x2,0x64,0x76,0x66,0x7a,0x4a, 0x1,0xb9,0xb,0xe0,0x48,0xc0,0xb0,0x7b,0x7b,0x7b,0xdb,0x0,0x6c,0x2,0xb0,0x18, 0xff,0x8f,0xeb,0x16,0x80,0x23,0x99,0x4c,0x26,0xb,0x0,0xff,0x2,0xef,0x98,0x1e, 0xe4,0xfa,0xbf,0x6a,0x53,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60, 0x82, }; static const unsigned char qt_resource_name[] = { // icons 0x0,0x5, 0x0,0x6f,0xa6,0x53, 0x0,0x69, 0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x73, // ZeGrapher_en.qm 0x0,0xf, 0xd,0x4d,0x4a,0x9d, 0x0,0x5a, 0x0,0x65,0x0,0x47,0x0,0x72,0x0,0x61,0x0,0x70,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x5f,0x0,0x65,0x0,0x6e,0x0,0x2e,0x0,0x71,0x0,0x6d, // enregistrerImage.png 0x0,0x14, 0x6,0xe3,0x3b,0xa7, 0x0,0x65, 0x0,0x6e,0x0,0x72,0x0,0x65,0x0,0x67,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x72,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x2e, 0x0,0x70,0x0,0x6e,0x0,0x67, // print.png 0x0,0x9, 0x0,0x57,0xb8,0x67, 0x0,0x70, 0x0,0x72,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67, // zoom-box.png 0x0,0xc, 0x9,0x47,0x97,0x7, 0x0,0x7a, 0x0,0x6f,0x0,0x6f,0x0,0x6d,0x0,0x2d,0x0,0x62,0x0,0x6f,0x0,0x78,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67, // quadrillage.png 0x0,0xf, 0x8,0xa8,0x33,0xc7, 0x0,0x71, 0x0,0x75,0x0,0x61,0x0,0x64,0x0,0x72,0x0,0x69,0x0,0x6c,0x0,0x6c,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67, // curseur_deplacer.png 0x0,0x14, 0x0,0xfa,0xb6,0xc7, 0x0,0x63, 0x0,0x75,0x0,0x72,0x0,0x73,0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x5f,0x0,0x64,0x0,0x65,0x0,0x70,0x0,0x6c,0x0,0x61,0x0,0x63,0x0,0x65,0x0,0x72,0x0,0x2e, 0x0,0x70,0x0,0x6e,0x0,0x67, // tableauDeValeurs.png 0x0,0x14, 0x7,0x88,0xd,0x87, 0x0,0x74, 0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x61,0x0,0x75,0x0,0x44,0x0,0x65,0x0,0x56,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x73,0x0,0x2e, 0x0,0x70,0x0,0x6e,0x0,0x67, // zoom-in-icon.png 0x0,0x10, 0xa,0x41,0x29,0x27, 0x0,0x7a, 0x0,0x6f,0x0,0x6f,0x0,0x6d,0x0,0x2d,0x0,0x69,0x0,0x6e,0x0,0x2d,0x0,0x69,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67, // bornes.png 0x0,0xa, 0x4,0xcb,0x7a,0x67, 0x0,0x62, 0x0,0x6f,0x0,0x72,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67, // logoLogiciel.png 0x0,0x10, 0x7,0xc8,0x3f,0xe7, 0x0,0x6c, 0x0,0x6f,0x0,0x67,0x0,0x6f,0x0,0x4c,0x0,0x6f,0x0,0x67,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x65,0x0,0x6c,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67, // zoom-out-icon.png 0x0,0x11, 0x4,0xbc,0x28,0xa7, 0x0,0x7a, 0x0,0x6f,0x0,0x6f,0x0,0x6d,0x0,0x2d,0x0,0x6f,0x0,0x75,0x0,0x74,0x0,0x2d,0x0,0x69,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67, // fonctions.png 0x0,0xd, 0x0,0x9f,0x3,0x87, 0x0,0x66, 0x0,0x6f,0x0,0x6e,0x0,0x63,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x73,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67, // quitter.png 0x0,0xb, 0xa,0x34,0xd6,0x27, 0x0,0x71, 0x0,0x75,0x0,0x69,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67, // remove.png 0x0,0xa, 0x6,0xcb,0x4f,0xc7, 0x0,0x72, 0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x76,0x0,0x65,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67, // curseur_normal.png 0x0,0x12, 0x1,0xc1,0x9d,0x67, 0x0,0x63, 0x0,0x75,0x0,0x72,0x0,0x73,0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x5f,0x0,0x6e,0x0,0x6f,0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0x6c,0x0,0x2e,0x0,0x70,0x0,0x6e, 0x0,0x67, // keyboard.png 0x0,0xc, 0x6,0xbe,0xa5,0xe7, 0x0,0x6b, 0x0,0x65,0x0,0x79,0x0,0x62,0x0,0x6f,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67, }; static const unsigned char qt_resource_struct[] = { // : 0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1, // :/icons 0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x3, // :/ZeGrapher_en.qm 0x0,0x0,0x0,0x10,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0, // :/icons/print.png 0x0,0x0,0x0,0x62,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x23,0x17, // :/icons/fonctions.png 0x0,0x0,0x1,0xa6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x93,0x66, // :/icons/curseur_deplacer.png 0x0,0x0,0x0,0xbc,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x63,0x71, // :/icons/curseur_normal.png 0x0,0x0,0x1,0xfc,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0xca,0xdb, // :/icons/zoom-out-icon.png 0x0,0x0,0x1,0x7e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x9c,0xcc, // :/icons/bornes.png 0x0,0x0,0x1,0x3e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x80,0x8f, // :/icons/keyboard.png 0x0,0x0,0x2,0x26,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0xe2,0x12, // :/icons/remove.png 0x0,0x0,0x1,0xe2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0xc0,0xec, // :/icons/enregistrerImage.png 0x0,0x0,0x0,0x34,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x1d,0x25, // :/icons/tableauDeValeurs.png 0x0,0x0,0x0,0xea,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x7d,0x77, // :/icons/logoLogiciel.png 0x0,0x0,0x1,0x58,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x88,0x81, // :/icons/quadrillage.png 0x0,0x0,0x0,0x98,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x5d,0x27, // :/icons/zoom-box.png 0x0,0x0,0x0,0x7a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x2c,0x50, // :/icons/quitter.png 0x0,0x0,0x1,0xc6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x94,0xda, // :/icons/zoom-in-icon.png 0x0,0x0,0x1,0x18,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x80,0x57, }; QT_BEGIN_NAMESPACE extern Q_CORE_EXPORT bool qRegisterResourceData (int, const unsigned char *, const unsigned char *, const unsigned char *); extern Q_CORE_EXPORT bool qUnregisterResourceData (int, const unsigned char *, const unsigned char *, const unsigned char *); QT_END_NAMESPACE int QT_MANGLE_NAMESPACE(qInitResources_ressources)() { QT_PREPEND_NAMESPACE(qRegisterResourceData) (0x01, qt_resource_struct, qt_resource_name, qt_resource_data); return 1; } Q_CONSTRUCTOR_FUNCTION(QT_MANGLE_NAMESPACE(qInitResources_ressources)) int QT_MANGLE_NAMESPACE(qCleanupResources_ressources)() { QT_PREPEND_NAMESPACE(qUnregisterResourceData) (0x01, qt_resource_struct, qt_resource_name, qt_resource_data); return 1; } Q_DESTRUCTOR_FUNCTION(QT_MANGLE_NAMESPACE(qCleanupResources_ressources)) zegrapher-2.0.orig/src/graphiquegl.cpp0000644000175000017500000004637511613473354020330 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2011, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #include "graphiquegl.h" GraphiqueGl::GraphiqueGl() { fenetre.Xmax = fenetre.Ymax = 10; fenetre.Xmin = fenetre.Ymin = -10; fenetre.Xscale = fenetre.Yscale = 1; pen.setCapStyle(Qt::RoundCap); courbeActuelle = courbeSurvole = -1; parametres.couleurDuFond = QColor(Qt::white); parametres.couleurDesAxes = QColor(Qt::black); parametres.couleurQuadrillage = QColor(Qt::gray); parametres.epaisseurDesCourbes = 1; parametres.distanceEntrePoints = 4; parametres.lissage = true; dispPoint = false; boutonPresse = false; courbeClique = false; sourisSurUneCourbe = false; dispRectangle = false; nePasCalculer = false; quadrillage = false; for(short i = 0 ; i < 6; i ++) { fonctions[i].tracer = false; fonctions[i].couleur = QColor(Qt::black); fonctions[i].epaisseur = 1; } setMouseTracking(true); typeCurseur = NORMAL; } StructFenetre GraphiqueGl::bornes() { return fenetre; } bool GraphiqueGl::estExistante(int n) { return fonctions[n].tracer; } double GraphiqueGl::y(int n, double X) { return calculatrice->calculate(n, X); } char GraphiqueGl::curseur() { return typeCurseur; } void GraphiqueGl::newEtatQuadrillage(bool etat) { quadrillage = etat; repaint(); } void GraphiqueGl::setCalculator(Calcul *calculator) { calculatrice = calculator; } void GraphiqueGl::miseEnTampon(bool toutcalculate, double nbPixels) { deplacement += nbPixels; int limite = ceil(deplacement / parametres.distanceEntrePoints); double pas = parametres.distanceEntrePoints / uniteX; double x; if(toutcalculate) { deplacement = 0; Xmax = fenetre.Xmax + pas; Xmin = fenetre.Xmin - pas; posXpx = - centre.x - parametres.distanceEntrePoints; for(short i = 0; i < 6; i++) { if(!fonctions[i].tracer) continue; listeDesY[i].clear(); for(x = fenetre.Xmin - pas ; x <= fenetre.Xmax + pas ; x += pas) { listeDesY[i] << calculatrice->calculate(i, x); } } } else if(fabs(deplacement) > parametres.distanceEntrePoints) { if(deplacement < 0) { for(short i = 0 ; i < 6; i++) { if(!fonctions[i].tracer) continue; x = Xmax; for(int j = 0; j > limite; j--) { x += pas; listeDesY[i].append(calculatrice->calculate(i, x)); listeDesY[i].removeFirst(); } } deplacement -= parametres.distanceEntrePoints * limite; posXpx -= parametres.distanceEntrePoints * limite;//limite ici est negative Xmax -= limite * pas; Xmin -= limite * pas; } else { for(short i = 0 ; i < 6; i++) { if(!fonctions[i].tracer) continue; x = Xmin; for(int j = 0; j < limite; j++) { x -= pas; listeDesY[i].prepend(calculatrice->calculate(i, x)); listeDesY[i].removeLast(); } } deplacement -= parametres.distanceEntrePoints * limite; posXpx -= parametres.distanceEntrePoints * limite; Xmax -= limite * pas; Xmin -= limite * pas; } } } void GraphiqueGl::wheelEvent(QWheelEvent *event) { double valeur = abs(event->delta()) / 120; valeur = 1 - valeur / 10; if(event->delta() < 0) { fenetre.Xmax /= valeur; fenetre.Xmin /= valeur; fenetre.Ymax /= valeur; fenetre.Ymin /= valeur; } else { fenetre.Xmax *= valeur; fenetre.Xmin *= valeur; fenetre.Ymax *= valeur; fenetre.Ymin *= valeur; } if((fenetre.Xmax - fenetre.Xmin)/fenetre.Xscale > 20) fenetre.Xscale *= 2; else if((fenetre.Xmax - fenetre.Xmin)/fenetre.Xscale < 5) fenetre.Xscale /= 2; if((fenetre.Ymax - fenetre.Ymin)/fenetre.Yscale > 20) fenetre.Yscale *= 2; else if((fenetre.Ymax - fenetre.Ymin)/fenetre.Yscale < 5) fenetre.Yscale /= 2; emit bornesChangent(fenetre); repaint(); } void GraphiqueGl::afficherPtX(double x) { if(courbeActuelle != -1) { pointUnit.x = x; pointUnit.y = calculatrice->calculate(courbeActuelle, x); pointPx.x = x * uniteX; pointPx.y = -pointUnit.y * uniteY; dispPoint = true; if(parametres.lissage) { pointPx.x++; } repaint(); } } void GraphiqueGl::paintEvent(QPaintEvent *event) { if(windowSize != size()) { emit sizeChanged(width(), height()); windowSize = size(); } painter.begin(this); //trace du background painter.setBrush(QBrush(parametres.couleurDuFond)); painter.drawRect(0, 0, width(), height()); determinerCentreEtUnites(); tracerAxes(); if(dispRectangle) { painter.setBrush(Qt::NoBrush); pen.setWidth(1); pen.setColor(parametres.couleurDesAxes); painter.setPen(pen); painter.drawRect(rectReel); } painter.translate(QPointF(centre.x, centre.y)); placerGraduations(); if(!nePasCalculer) miseEnTampon(true); tracerCoubres(); if(dispPoint) afficherPoint(); nePasCalculer = false; painter.end(); } void GraphiqueGl::determinerCentreEtUnites() { uniteY = height() / (fenetre.Ymax - fenetre.Ymin); uniteX = width() / (fenetre.Xmax - fenetre.Xmin); centre.x = - fenetre.Xmin * uniteX; centre.y = fenetre.Ymax * uniteY; } void GraphiqueGl::afficherPoint() { pen.setColor(Qt::black); painter.setPen(pen); emit afficherXY(pointUnit.x, pointUnit.y); pen.setWidth(parametres.epaisseurDesCourbes); painter.setPen(pen); painter.setRenderHint(QPainter::Antialiasing); double space = parametres.epaisseurDesCourbes; painter.drawLine(QPointF(pointPx.x-3-space*2,pointPx.y),QPointF(pointPx.x-space, pointPx.y)); painter.drawLine(QPointF(pointPx.x+3+space*2,pointPx.y),QPointF(pointPx.x+space, pointPx.y)); painter.drawLine(QPointF(pointPx.x,pointPx.y-3-space*2),QPointF(pointPx.x, pointPx.y-space)); painter.drawLine(QPointF(pointPx.x,pointPx.y+3+space*2),QPointF(pointPx.x, pointPx.y+space)); dispPoint = false; } void GraphiqueGl::mousePressEvent(QMouseEvent *event) { boutonPresse = true; lastPosSouris.x = event->x(); lastPosSouris.y = event->y(); if(typeCurseur == NORMAL) { if(sourisSurUneCourbe) { courbeActuelle = courbeSurvole; courbeClique = true; } else { courbeActuelle = -1; } } else if(typeCurseur == ZOOMER) { } else if(typeCurseur == DEZOOMER) { } else if(typeCurseur == ZOOMBOX) { dispRectangle = true; rectReel.setTopLeft(QPoint(event->x(), event->y())); } else //DEPLACER { setCursor(Qt::ClosedHandCursor); } } void GraphiqueGl::mouseReleaseEvent(QMouseEvent *event) { boutonPresse = false; if(typeCurseur == NORMAL) { if(courbeClique) { courbeClique = false; } } else if(typeCurseur == ZOOMER) { double halfX = 0.45 * (fenetre.Xmax - fenetre.Xmin), halfY = 0.45 * (fenetre.Ymax - fenetre.Ymin); fenetre.Xmin = (event->x() - centre.x) / uniteX - halfX; fenetre.Xmax = (event->x() - centre.x) / uniteX + halfX; fenetre.Ymin = (-event->y() + centre.y) / uniteY - halfY; fenetre.Ymax = (-event->y() + centre.y) / uniteY + halfY; emit bornesChangent(fenetre); repaint(); } else if(typeCurseur == DEZOOMER) { double halfX = (fenetre.Xmax - fenetre.Xmin)/1.8, halfY = (fenetre.Ymax - fenetre.Ymin)/1.8; fenetre.Xmin = (event->x() - centre.x) / uniteX - halfX; fenetre.Xmax = (event->x() - centre.x) / uniteX + halfX; fenetre.Ymin = (-event->y() + centre.y) / uniteY - halfY; fenetre.Ymax = (-event->y() + centre.y) / uniteY + halfY; emit bornesChangent(fenetre); repaint(); } else if(typeCurseur == ZOOMBOX) { dispRectangle = false; if(!rectReel.isNull()) { fenetre.Xmax = (rectReel.right() - centre.x) / uniteX; fenetre.Xmin = (rectReel.left() - centre.x) / uniteX; fenetre.Ymax = (- rectReel.top() + centre.y) / uniteY; fenetre.Ymin = (- rectReel.bottom() + centre.y) / uniteY; emit bornesChangent(fenetre); repaint(); } } else //DEPLACER { setCursor(Qt::OpenHandCursor); } } void GraphiqueGl::mouseMoveEvent(QMouseEvent *event) { mouseX = event->x(); mouseY = event->y(); if(typeCurseur == NORMAL) { double x = (mouseX - centre.x) / uniteX; if(courbeActuelle != -1) { pointUnit.x = x; pointUnit.y = calculatrice->calculate(courbeActuelle, x); pointPx.x = x * uniteX; pointPx.y = -pointUnit.y * uniteY; dispPoint = true; nePasCalculer = true; update(); } bool sourisSurvoleCourbe = false; double calcY = 0; for(short i = 0; i < 6; i++) { if(fonctions[i].tracer == true) { calcY = calculatrice->calculate(i, x); if(isnan(calcY) || isinf(calcY) || i == courbeActuelle) continue; calcY = -(calcY * uniteY) + centre.y; if(abs(calcY - mouseY) < fonctions[i].epaisseur + 2) { sourisSurUneCourbe = sourisSurvoleCourbe = true; fonctions[i].epaisseur = parametres.epaisseurDesCourbes + 2; courbeSurvole = i; nePasCalculer = true; repaint(); break; } } } if(sourisSurUneCourbe && !sourisSurvoleCourbe) { fonctions[courbeSurvole].epaisseur = parametres.epaisseurDesCourbes; sourisSurUneCourbe = false; nePasCalculer = true; repaint(); } } else if(typeCurseur == ZOOMER) { } else if(typeCurseur == DEZOOMER) { } else if(typeCurseur == ZOOMBOX) { rectReel.setBottomRight(QPoint(event->x(), event->y())); nePasCalculer = true; repaint(); } else //DEPLACER { if(boutonPresse) { double dx = event->x() - lastPosSouris.x; double dy = event->y() - lastPosSouris.y; centre.x += dx; centre.y += dy; lastPosSouris.x = event->x(); lastPosSouris.y = event->y(); fenetre.Xmax -= dx / uniteX; fenetre.Xmin -= dx / uniteX; fenetre.Ymax += dy / uniteY; fenetre.Ymin += dy / uniteY; emit bornesChangent(fenetre); determinerCentreEtUnites(); if(dx != 0) miseEnTampon(false, dx); nePasCalculer = true; repaint(); } } } void GraphiqueGl::placerGraduations() { pen.setWidth(1); painter.setRenderHint(QPainter::Antialiasing, false); double Xpos = ceil(fenetre.Xmin / fenetre.Xscale) * fenetre.Xscale * uniteX; //* uniteX double Ypos, posTxt, pas = fenetre.Xscale * uniteX, minY = 1/uniteY, minX = 1/uniteX; //trace sur l'axe des X if(fenetre.Ymin >= 0) { Ypos = - fenetre.Ymin * uniteY - 3; posTxt = Ypos - 5; } else if(fenetre.Ymax <= 0) { Ypos = - fenetre.Ymax * uniteY + 5; posTxt = Ypos + 15; } else { Ypos = 0; posTxt = Ypos + 15; } double bas = - fenetre.Ymin * uniteY, haut = - fenetre.Ymax * uniteY; while(Xpos <= fenetre.Xmax * uniteX) { if(fabs(Xpos) > minX) { if(quadrillage) { pen.setColor(parametres.couleurQuadrillage); painter.setPen(pen); painter.drawLine(QPointF(Xpos, bas), QPointF(Xpos, haut)); } pen.setColor(parametres.couleurDesAxes); painter.setPen(pen); painter.drawLine(QPointF(Xpos, Ypos -3), QPointF(Xpos, Ypos +2)); painter.drawText(QPointF(Xpos,posTxt), QString::number(Xpos/uniteX)); } Xpos += pas; } //trace sur l'axe des Y Ypos = ceil(fenetre.Ymin / fenetre.Yscale) * fenetre.Yscale * uniteY; //* uniteX pas = fenetre.Yscale * uniteY; bool droite = false; if(fenetre.Xmin >= 0) { Xpos = fenetre.Xmin * uniteX + 3; posTxt = Xpos + 5; } else if(fenetre.Xmax <= 0) { Xpos = fenetre.Xmax * uniteX - 5; posTxt = Xpos - 10; droite = true; } else { Xpos = 0; posTxt = Xpos + 5; } bas = fenetre.Xmin * uniteX; haut = fenetre.Xmax * uniteX; QString nombre; while(Ypos <= fenetre.Ymax * uniteY) { if(fabs(Ypos) > minY) { if(quadrillage) { pen.setColor(parametres.couleurQuadrillage); painter.setPen(pen); painter.drawLine(QPointF(bas, -Ypos), QPointF(haut, -Ypos)); } pen.setColor(parametres.couleurDesAxes); painter.setPen(pen); painter.drawLine(QPointF(Xpos -3, -Ypos), QPointF(Xpos +2, -Ypos)); nombre = QString::number(Ypos/uniteY); if(droite) painter.drawText(QPointF(posTxt -7*nombre.size(), -Ypos), nombre); else painter.drawText(QPointF(posTxt, -Ypos), nombre); } Ypos += pas; } } void GraphiqueGl::tracerAxes() { // *********** remarque: les y sont positifs en dessous de l'axe x, pas au dessus !! ************// pen.setWidth(1); pen.setColor(parametres.couleurDesAxes); painter.setPen(pen); if(fenetre.Xmax > 0 && fenetre.Xmin < 0) { painter.drawLine((int)centre.x, 0, (int)centre.x, height()); //l'axe painter.drawLine((int)centre.x - 3, 5, (int)centre.x, 0); painter.drawLine((int)centre.x + 3, 5, (int)centre.x, 0); } if(fenetre.Ymax > 0 && fenetre.Ymin < 0) { painter.drawLine(0, (int)centre.y, width(), (int)centre.y); //la petite fleche au bout painter.drawLine(width() - 5, (int)centre.y + 3 , width()-1, (int)centre.y); painter.drawLine(width() - 5, (int)centre.y - 3 , width()-1, (int)centre.y); } } void GraphiqueGl::tracerCoubres() { double posX = posXpx + parametres.distanceEntrePoints; if(parametres.lissage) posX ++; bool pointDepasse = false; if(parametres.lissage) painter.setRenderHint(QPainter::Antialiasing); for(short i = 0 ; i < 6; i++) { if(!fonctions[i].tracer) continue; pen.setWidth(fonctions[i].epaisseur); pen.setColor(fonctions[i].couleur); painter.setPen(pen); double val1, val2; for(accesseur = listeDesY[i].begin() + 1; accesseur != listeDesY[i].end(); accesseur++) { if(!isnan(*(accesseur-1)) && !isnan(*accesseur) && !isinf(*(accesseur-1)) && !isinf(*accesseur)) { val1 = - *(accesseur-1) * uniteY; val2 = - *accesseur * uniteY; if(*accesseur > fenetre.Ymax || *accesseur < fenetre.Ymin ) { if(!pointDepasse) { segment.setLine(posX - parametres.distanceEntrePoints, val1, posX, val2); painter.drawLine(segment); pointDepasse = true; } } else { segment.setLine(posX - parametres.distanceEntrePoints, val1, posX, val2); painter.drawLine(segment); pointDepasse = false; } } posX += parametres.distanceEntrePoints; } posX = posXpx + parametres.distanceEntrePoints; if(parametres.lissage) posX ++; } } void GraphiqueGl::zoomX(double valeur) { fenetre.Xmin *= valeur; fenetre.Xmax *= valeur; if((fenetre.Xmax - fenetre.Xmin)/fenetre.Xscale > 20) fenetre.Xscale *= 2; else if((fenetre.Xmax - fenetre.Xmin)/fenetre.Xscale < 5) fenetre.Xscale /= 2; emit bornesChangent(fenetre); repaint(); } void GraphiqueGl::zoomY(double valeur) { fenetre.Ymin *= valeur; fenetre.Ymax *= valeur; if((fenetre.Ymax - fenetre.Ymin)/fenetre.Yscale > 20) fenetre.Yscale *= 2; else if((fenetre.Ymax - fenetre.Ymin)/fenetre.Yscale < 5) fenetre.Yscale /= 2; emit bornesChangent(fenetre); nePasCalculer = true; repaint(); } void GraphiqueGl::changerEtatFonction(int numFonc, bool etat) { fonctions[numFonc].tracer = etat; repaint(); } void GraphiqueGl::nouvelleFenetre(const StructFenetre &newFenetre) { fenetre = newFenetre; repaint(); } void GraphiqueGl::doNotDraw() { for(short i = 0 ; i < 6 ; i++) fonctions[i].tracer = false; } void GraphiqueGl::changerCouleurFonction(int numFonc, const QColor &couleur) { fonctions[numFonc].couleur = couleur; nePasCalculer = true; repaint(); } void GraphiqueGl::typeCurseurChange(char type) { typeCurseur = type; if(typeCurseur == NORMAL) setCursor(Qt::ArrowCursor); else if(typeCurseur == ZOOMER) setCursor(QCursor(QPixmap("icons/zoom-in-cursor.png"), 12, 11)); else if(typeCurseur == DEZOOMER) setCursor(QCursor(QPixmap("icons/zoom-out-cursor.png"), 12, 11)); else if(typeCurseur == ZOOMBOX) setCursor(Qt::CrossCursor); else setCursor(Qt::OpenHandCursor); } void GraphiqueGl::changerOptions(Options opt) { parametres = opt; for(short i = 0 ; i < 6; i++) { fonctions[i].epaisseur = parametres.epaisseurDesCourbes; if(fonctions[i].couleur == parametres.couleurDuFond) { emit couleurChange(parametres.couleurDesAxes, i); fonctions[i].couleur = parametres.couleurDesAxes; } } repaint(); } GraphiqueGl::~GraphiqueGl() { } zegrapher-2.0.orig/src/fenetrefonctions.cpp0000644000175000017500000002116212105437153021350 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #include "fenetrefonctions.h" #include "ui_fenetrefonctions.h" FenetreFonctions::FenetreFonctions(Informations *info) { ui = new Ui::FenetreFonctions; ui->setupUi(this); parEqController = new ParEqController(&parEqWidgets); connect(ui->periodSpinBox, SIGNAL(valueChanged(int)), parEqController, SLOT(setIncrPeriod(int))); connect(ui->freqSpinBox, SIGNAL(valueChanged(int)), parEqController, SLOT(setUpdateFreq(int))); connect(parEqController, SIGNAL(animationUpdate()), info, SLOT(emitAnimationUpdate())); setWindowTitle(tr("Tracer")); setWindowIcon(QIcon(":/icons/fonctions.png")); funcNames << 'f' << 'g' << 'h'<< 'p' << 'r'<< 'm'; seqNames << 'u' << 'v' << 'l' << 'w' << 'q' << 't'; setInfoClass(info);//must be before addFunctions and addSequences, because they use informations class addFunctions(); addSequences(); ui->periodSpinBox->setValue(INIT_INCR_PERIOD); ui->freqSpinBox->setValue(INIT_FREQ); connect(ui->boutonTracer, SIGNAL(released()), this, SLOT(draw())); connect(ui->addLine, SIGNAL(released()), this, SLOT(addStraightline())); connect(ui->addTangent, SIGNAL(released()), this, SLOT(addTangent())); connect(ui->addParEq, SIGNAL(released()), this, SLOT(addParEq())); connect(ui->keyboardButton, SIGNAL(released()), this, SLOT(keyboardButtonClicked())); } void FenetreFonctions::addFunctions() { for(int i = 0 ; i < funcNames.size() ; i++) { FuncWidget *widget = new FuncWidget(funcNames[i], i, Qt::black, window()); connect(widget, SIGNAL(returnPressed()), this, SLOT(draw())); connect(widget, SIGNAL(drawStateChanged()), informations, SLOT(emitDrawStateUpdate())); connect(widget, SIGNAL(newParametricState(int)), this, SLOT(newFuncParametricState())); ui->funcWidgetsLayout->addWidget(widget); funcCalcs << widget->getCalculator(); funcWidgets << widget; QFrame *frame = new QFrame(); frame->setFrameShape(QFrame::HLine); frame->setFrameShadow(QFrame::Sunken); ui->funcWidgetsLayout->addWidget(frame); } informations->setFunctionsList(funcCalcs); for(int i = 0 ; i < funcCalcs.size() ; i++) { funcWidgets[i]->setFuncWidgets(funcWidgets); funcWidgets[i]->setFuncsCalcsList(funcCalcs); funcCalcs[i]->setFuncsPointers(funcCalcs); } } void FenetreFonctions::addSequences() { for(int i = 0 ; i < seqNames.size() ; i++) { SeqWidget *widget = new SeqWidget(seqNames[i], i, Qt::black); connect(widget, SIGNAL(returnPressed()), this, SLOT(draw())); connect(widget, SIGNAL(drawStateChanged()), informations, SLOT(emitDrawStateUpdate())); connect(widget, SIGNAL(newParametricState()), this, SLOT(newSeqParametricState())); ui->seqWidgetsLayout->addWidget(widget); seqCalcs << widget->getCalculator(); seqWidgets << widget; QFrame *frame = new QFrame(); frame->setFrameShape(QFrame::HLine); frame->setFrameShadow(QFrame::Sunken); ui->seqWidgetsLayout->addWidget(frame); } informations->setSequencesList(seqCalcs); for(int i = 0 ; i < seqCalcs.size() ; i++) { connect(ui->nMin, SIGNAL(valueChanged(int)), seqCalcs[i], SLOT(set_nMin(int))); seqCalcs[i]->setFuncsPointers(funcCalcs); seqCalcs[i]->setSeqsPointers(seqCalcs); seqWidgets[i]->setFuncsList(funcCalcs); seqWidgets[i]->setFuncWidgets(funcWidgets); seqWidgets[i]->setSeqWidgets(seqWidgets); } } void FenetreFonctions::newFuncParametricState() { for(int i = 0 ; i < funcWidgets.size() ; i++) funcWidgets[i]->checkCalledFuncsParametric(); for(int i = 0 ; i < seqWidgets.size() ; i++) seqWidgets[i]->checkCalledFuncsSeqsParametric(); } void FenetreFonctions::newSeqParametricState() { for(int i = 0 ; i < seqWidgets.size() ; i++) seqWidgets[i]->checkCalledFuncsSeqsParametric(); } void FenetreFonctions::setInfoClass(Informations *info) { informations = info; informations->setParEqsListPointer(&parEqWidgets); informations->setTangentsListPointer(&tangentWidgets); informations->setStraightLinesListPointer(&straightlineWidgets); } void FenetreFonctions::draw() { validateFunctions(); validateSequences(); validateLines(); validateParametricEquations(); informations->emitUpdateSignal(); } void FenetreFonctions::validateFunctions() { for(int i = 0 ; i < funcWidgets.size(); i++) funcWidgets[i]->firstValidation(); for(int i = 0 ; i < funcWidgets.size(); i++) funcWidgets[i]->secondValidation(); } void FenetreFonctions::validateSequences() { for(int i = 0 ; i < seqWidgets.size(); i++) seqWidgets[i]->firstValidation(); for(int i = 0 ; i < seqWidgets.size(); i++) seqWidgets[i]->secondValidation(); for(int i = 0 ; i < seqWidgets.size(); i++) seqWidgets[i]->thirdValidation(); } void FenetreFonctions::validateLines() { for(int i = 0 ; i < straightlineWidgets.size(); i++) straightlineWidgets[i]->validate(); for(int i = 0 ; i < tangentWidgets.size(); i++) tangentWidgets[i]->validate(); } void FenetreFonctions::validateParametricEquations() { for(int i = 0 ; i < parEqWidgets.size(); i++) parEqWidgets[i]->apply(); } void FenetreFonctions::keyboardButtonClicked() { emit displayKeyboard(); } void FenetreFonctions::addTangent() { TangentWidget *tangent = new TangentWidget(tangentWidgets.size(), funcCalcs, funcWidgets); tangentWidgets << tangent; connect(tangent, SIGNAL(removeMe(TangentWidget*)), this, SLOT(removeTangent(TangentWidget*))); connect(tangent, SIGNAL(returnPressed()), this, SLOT(draw())); connect(tangent, SIGNAL(drawStateChanged()), informations, SLOT(emitDrawStateUpdate())); ui->linesLayout->addWidget(tangent); } void FenetreFonctions::removeTangent(TangentWidget *widget) { for(int i = tangentWidgets.indexOf(widget) + 1 ; i < tangentWidgets.size() ; i++) tangentWidgets[i]->changeID(i-1); tangentWidgets.removeOne(widget); widget->close(); delete widget; informations->emitUpdateSignal(); } void FenetreFonctions::addStraightline() { StraightLineWidget *line = new StraightLineWidget(straightlineWidgets.size(), funcCalcs); straightlineWidgets << line; connect(line, SIGNAL(removeMe(StraightLineWidget*)), this, SLOT(removeStraightline(StraightLineWidget*))); connect(line, SIGNAL(returnPressed()), this, SLOT(draw())); connect(line, SIGNAL(drawStateChanged()), informations, SLOT(emitDrawStateUpdate())); ui->linesLayout->addWidget(line); } void FenetreFonctions::removeStraightline(StraightLineWidget *widget) { for(int i = straightlineWidgets.indexOf(widget) + 1; i < straightlineWidgets.size(); i++) straightlineWidgets[i]->changeID(i-1); straightlineWidgets.removeOne(widget); widget->close(); delete widget; } void FenetreFonctions::addParEq() { ParEqWidget *widget = new ParEqWidget(parEqWidgets.size(), funcCalcs); connect(widget, SIGNAL(removeClicked(ParEqWidget*)), this, SLOT(removeParEq(ParEqWidget*))); connect(widget, SIGNAL(updateRequest()), informations, SLOT(emitDrawStateUpdate())); connect(widget, SIGNAL(animationUpdateRequest()), informations, SLOT(emitAnimationUpdate())); connect(widget, SIGNAL(returnPressed()), this, SLOT(draw())); parEqWidgets << widget; ui->parEqLayout->addWidget(widget); parEqController->newParEqAdded(); } void FenetreFonctions::removeParEq(ParEqWidget *widget) { widget->close(); parEqWidgets.removeOne(widget); delete widget; informations->emitAnimationUpdate(); } FenetreFonctions::~FenetreFonctions() { delete ui; } zegrapher-2.0.orig/src/imagesave.ui0000644000175000017500000004020111753743510017571 0ustar georgeskgeorgesk ImageSave 0 0 977 472 Enregistrer :/icons/enregistrerImage.png:/icons/enregistrerImage.png 0 0 Taille de l'image 0 6 7 0 0 Celle du graphique true Nouvelle taille: 2 2 36 false Largeur: false 16777215 25 Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter px 400 4000 false 16777215 25 px 400 4000 false Hauteur: 20 0 20 16777215 Qt::Horizontal 40 20 Précision : 16777215 25 chiffres 2 8 8 Qt::Horizontal 40 20 Légendes Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop true false 0 Abscisses : 16777215 25 Ordonnées : 16777215 25 5 Qt::Horizontal 40 20 30 30 font-weight: bold; B true 30 30 font-style: italic; I true 30 30 text-decoration: underline; S true Qt::Horizontal 40 20 5 Taille de police : 16777215 25 10 22 12 Qt::Vertical 20 40 Qt::Horizontal 40 20 Enregistrer Qt::Horizontal 40 20 0 0 200 200 Qt::ScrollBarAsNeeded Qt::ScrollBarAsNeeded true Qt::AlignCenter 0 0 677 452 newSize toggled(bool) label_7 setEnabled(bool) 126 70 95 104 newSize toggled(bool) width setEnabled(bool) 79 77 174 105 newSize toggled(bool) label_8 setEnabled(bool) 101 75 88 135 newSize toggled(bool) height setEnabled(bool) 61 71 147 137 zegrapher-2.0.orig/src/abstracttable.cpp0000644000175000017500000000625712105437153020620 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #include "abstracttable.h" AbstractTable::AbstractTable(QWidget *parent) : QWidget(parent) { QVBoxLayout *principalLayout = new QVBoxLayout; principalLayout->setMargin(2); QHBoxLayout *previousButtonLayout = new QHBoxLayout; QPushButton *previousButton = new QPushButton(tr("Retour")); connect(previousButton, SIGNAL(released()), this, SIGNAL(previous())); previousButtonLayout->addWidget(previousButton); previousButtonLayout->addStretch(); principalLayout->addLayout(previousButtonLayout); //----------------------------------------------------------------------- QHBoxLayout *kWidgetLayout = new QHBoxLayout; kWidgetLayout->setMargin(0); QLabel *kText = new QLabel("k ="); k_value = new QLineEdit; k_value->setMaximumHeight(25); kWidgetLayout->addWidget(kText); kWidgetLayout->addWidget(k_value); kWidgetLayout->addStretch(); k_parameter_widget = new QWidget; k_parameter_widget->setLayout(kWidgetLayout); principalLayout->addWidget(k_parameter_widget); k_parameter_widget->hide(); //-------------------------------------------------------------- title = new QLabel; title->setAlignment(Qt::AlignHCenter); principalLayout->addWidget(title); // ------------------------------------------------------------------- model = new QStandardItemModel(this); tableView = new QTableView; tableView->horizontalHeader()->hide(); tableView->verticalHeader()->hide(); updateTimer = new QTimer(this); principalLayout->addWidget(tableView); //---------------------------------------------------------------- QHBoxLayout *precisionLayout = new QHBoxLayout; QLabel *precisionText = new QLabel(tr("Précision :")); precision = new QSpinBox; precision->setMinimum(2); precision->setMaximum(8); precision->setValue(4); precisionLayout->addStretch(); precisionLayout->addWidget(precisionText); precisionLayout->addWidget(precision); precisionLayout->addStretch(); principalLayout->addLayout(precisionLayout); //-------------------------------------------------------------------- setLayout(principalLayout); boldFont.setBold(true); } AbstractTable::~AbstractTable() { } zegrapher-2.0.orig/src/straightlinewidget.h0000644000175000017500000000412312105437153021341 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #ifndef STRAIGHTLINEWIDGET_H #define STRAIGHTLINEWIDGET_H #include "Structures.h" #include "funccalculator.h" #include "qcolorbutton.h" #include "exprcalculator.h" class StraightLineWidget : public QWidget { Q_OBJECT public: explicit StraightLineWidget(int id, QList calcsList); void validate(); void changeID(int id); double getOrdinate(double abscissa); double getVerticalPos(); QColor getColor(); bool isValid(); bool isVertical(); signals: void removeMe(StraightLineWidget *widget); void drawStateChanged(); void returnPressed(); protected slots: void resetPaletteForLineEditA(); void resetPaletteForLineEditB(); void resetPaletteForLineEditC(); void emitRemoveMeSignal(); protected: void addWidgets(); QList funcCalculators; ExprCalculator *exprCalculator; QCheckBox *drawCheckBox; QLabel *nameLabel; QLineEdit *a, *b, *c; QColorButton *colorButton; QPalette validPalette, invalidPalette, neutralPalette; int lineID; bool valid; double val_a, val_b, val_c; }; #endif // STRAIGHTLINEWIDGET_H zegrapher-2.0.orig/src/exprcalculator.cpp0000644000175000017500000000767012105437153021035 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #include "exprcalculator.h" static double tenPower(double x) { return pow(10, x); } ExprCalculator::ExprCalculator(bool allowK, QList otherFuncs) : treeCreator(NORMAL_EXPR) { treeCreator.allow_k(allowK); k = 0; currentTree = NULL; funcCalculatorsList = otherFuncs; addRefFuncsPointers(); } double ExprCalculator::calculateExpression(QString expr, bool &ok, double k_val) { ok = true; k = k_val; ok = checkCalledFuncsValidity(expr); if(!ok) return NAN; currentTree = treeCreator.getTreeFromExpr(expr, ok); if(!ok) return NAN; double result = calculateFromTree(currentTree); treeCreator.deleteFastTree(currentTree); currentTree = NULL; return result; } void ExprCalculator::setK(double val) { k = val; } bool ExprCalculator::checkCalledFuncsValidity(QString expr) { QList calledFuncs = treeCreator.getCalledFuncs(expr); bool validity = true; for(int i = 0; i < calledFuncs.size() && validity ; i++) validity = funcCalculatorsList[calledFuncs[i]]->isFuncValid(); return validity; } void ExprCalculator::addRefFuncsPointers() { refFuncs << acos << asin << atan << cos << sin << tan << sqrt << log10 << log << fabs << exp << floor << ceil << cosh << sinh << tanh << tenPower << tenPower; } double ExprCalculator::calculateFromTree(FastTree *tree, double x) { if(tree->type == NOMBRE ) { return *tree->value; } else if(tree->type == PAR_K) { return k; } else if(tree->type == VAR_X || tree->type == VAR_T) { return x; } else if(tree->type == PLUS) { return calculateFromTree(tree->left, x) + calculateFromTree(tree->right, x); } else if(tree->type == MINUS) { return calculateFromTree(tree->left, x) - calculateFromTree(tree->right, x); } else if(tree->type == MULTIPLY) { return calculateFromTree(tree->left, x) * calculateFromTree(tree->right, x); } else if(tree->type == DIVIDE) { return calculateFromTree(tree->left, x) / calculateFromTree(tree->right, x); } else if(tree->type == POW) { return pow(calculateFromTree(tree->left, x), calculateFromTree(tree->right, x)); } else if(REF_FUNC_START <= tree->type && tree->type <= REF_FUNC_END) { return (*refFuncs[tree->type - REF_FUNC_START])(calculateFromTree(tree->right, x)); } else if(FUNC_START <= tree->type && tree->type <= FUNC_END) { int id = tree->type - FUNC_START; return funcCalculatorsList[id]->getFuncValue(calculateFromTree(tree->right, x), k); } else if(DERIV_START <= tree->type && tree->type <= DERIV_END) { int id = tree->type - DERIV_START; return funcCalculatorsList[id]->getDerivativeValue(calculateFromTree(tree->right, x), k); } else if(CONST_Pi_NAMES_START <= tree->type && tree->type <= CONST_Pi_NAMES_END) { return M_PI; } else return NAN; } zegrapher-2.0.orig/src/pareqcontroller.h0000644000175000017500000000304312105437153020654 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #ifndef PAREQCONTROLLER_H #define PAREQCONTROLLER_H #include #include "pareqwidget.h" class ParEqController : public QObject { Q_OBJECT public: explicit ParEqController(QList *list); signals: void animationUpdate(); public slots: void setIncrPeriod(int msecs); void setUpdateFreq(int Hz); void newParEqAdded(); protected slots: void nextAnimationFrame(); protected: void updateRatioInParEq(); int freq, period; double ratio; QTimer animationTimer; QList *parEqs; }; #endif // PAREQCONTROLLER_H zegrapher-2.0.orig/src/keyboard.ui0000644000175000017500000007220311750541146017435 0ustar georgeskgeorgesk Keyboard Qt::NonModal 0 0 510 199 Qt::NoFocus Qt::DefaultContextMenu Clavier :/icons/keyboard.png:/icons/keyboard.png 30 30 Qt::NoFocus color:blue; / 40 30 Qt::NoFocus cosh 30 30 Qt::NoFocus color:red; 7 40 30 Qt::NoFocus tanh 40 30 Qt::NoFocus sinh 30 30 Qt::NoFocus color:red; 9 0 0 40 30 Qt::NoFocus color: green; p( 16 16 false false false 20 20 30 30 Qt::NoFocus color:red; 1 30 30 Qt::NoFocus color:red; 4 30 30 Qt::NoFocus color:red; 8 40 30 Qt::NoFocus color:green; r( 40 30 Qt::NoFocus color:green; m( 40 30 Qt::NoFocus color:green; f( 40 30 Qt::NoFocus color:green; h( 30 30 Qt::NoFocus color:red; 0 30 30 Qt::NoFocus color:blue; + 30 30 Qt::NoFocus color:blue; - 30 30 Qt::NoFocus color:blue; * 30 30 Qt::NoFocus color:red; 6 30 30 Qt::NoFocus color:blue; ^ 40 40 Qt::NoFocus cos 40 30 Qt::NoFocus asin 40 30 Qt::NoFocus sin 40 30 Qt::NoFocus atan 40 30 Qt::NoFocus tan 40 30 Qt::NoFocus log 30 30 Qt::NoFocus ) 40 30 Qt::NoFocus ln 40 30 Qt::NoFocus exp 30 30 Qt::NoFocus color:red; 5 40 30 Qt::NoFocus acos 30 30 Qt::NoFocus color:red; 2 30 30 Qt::NoFocus color:red; 3 80 16777215 Qt::NoFocus Primitive true true 80 16777215 Qt::NoFocus Fonction true true true 80 16777215 Qt::NoFocus Dérivée true true 40 30 Qt::NoFocus color:green; g( 60 16777215 Qt::NoFocus Effacer 60 16777215 Qt::NoFocus Vider 30 30 Qt::NoFocus variable des fonctions x 30 30 Qt::NoFocus ( 30 30 Qt::NoFocus , 30 30 Qt::NoFocus ² 40 30 Qt::NoFocus arrondie à l'entier inférieur floor 40 30 Qt::NoFocus abs 40 30 Qt::NoFocus arrondie à l'entier supérieur ceil 40 30 Qt::NoFocus racine carrée sqrt 30 30 Qt::NoFocus variable des suites n 0 0 30 30 Qt::NoFocus paramètre k 30 30 50 false false Qt::NoFocus π zegrapher-2.0.orig/src/funcvaluessaver.h0000644000175000017500000000344112105437153020656 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #ifndef FUNCVALUESSAVER_H #define FUNCVALUESSAVER_H #include "informations.h" class FuncValuesSaver { public: FuncValuesSaver(Informations *info); void calculateAll(double new_xUnit, double new_yUnit); void move(double pixels); double getStartAbsicssaUnit(); double getStartAbscissaPixel(); QList< QList< QList > >* getFuncValsListPointer(); protected slots: void recalculateFuncColors(int id); protected: void calculateAllFuncColors(); Informations *informations; GraphRange graphRange; QList funcs; double xUnit, yUnit, pixelStep, unitStep; double startAbscissa_pixel, startAbscissa_unit, endAbscissa_pixel, endAbscissa_unit; double deplacement; QList< QList< QList > > funcVals; QList< QList > funcColors; }; #endif // FUNCVALUESSAVER_H zegrapher-2.0.orig/src/exprcalculator.h0000644000175000017500000000317112105437153020472 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #ifndef EXPRCALCULATOR_H #define EXPRCALCULATOR_H #include "treecreator.h" #include "Structures.h" #include "funccalculator.h" class ExprCalculator { public: explicit ExprCalculator(bool allowK, QList otherFuncs); double calculateExpression(QString expr, bool &ok, double k_val = 0); void setK(double val); double calculateFromTree(FastTree *tree, double x = 0); bool checkCalledFuncsValidity(QString expr); protected: void addRefFuncsPointers(); double k; FastTree *currentTree; TreeCreator treeCreator; QList funcCalculatorsList; QList refFuncs; }; #endif // EXPRCALCULATOR_H zegrapher-2.0.orig/src/maingraph.cpp0000644000175000017500000012052312105437153017744 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #include "maingraph.h" static double fipart(double x) { if(x < 0) { return ceil(x); } else { return floor(x); } } MainGraph::MainGraph(Informations *info) : GraphDraw(info) { connect(info, SIGNAL(updateOccured()), this, SLOT(updateGraph())); connect(info, SIGNAL(animationUpdate()), this, SLOT(updateParEq())); connect(info, SIGNAL(drawStateUpdateOccured()), this, SLOT(reactivateSmoothing())); selectedCurve.isSomethingSelected = false; cancelUpdateSignal = false; resaveTangent = animationUpdate = false; mouseNotOnHWidget.setInterval(1000); mouseNotOnHWidget.setSingleShot(true); connect(&mouseNotOnHWidget, SIGNAL(timeout()), &hWidgetHideTransition, SLOT(start())); mouseNotOnVWidget.setInterval(1000); mouseNotOnVWidget.setSingleShot(true); connect(&mouseNotOnVWidget, SIGNAL(timeout()), &vWidgetHideTransition, SLOT(start())); hWidgetHideTransition.setInterval(30); vWidgetHideTransition.setInterval(30); hWidgetShowTransition.setInterval(30); vWidgetShowTransition.setInterval(30); connect(&hWidgetHideTransition, SIGNAL(timeout()), this, SLOT(hideHorWidget())); connect(&vWidgetHideTransition, SIGNAL(timeout()), this, SLOT(hideVerWidget())); connect(&hWidgetShowTransition, SIGNAL(timeout()), this, SLOT(showHorWidget())); connect(&vWidgetShowTransition, SIGNAL(timeout()), this, SLOT(showVerWidget())); timeWaitForXYWidgets.setInterval(1000); timeWaitForXYWidgets.setSingleShot(true); connect(&timeWaitForXYWidgets, SIGNAL(timeout()), &xyWidgetsHideTransition, SLOT(start())); xyWidgetsShowTransition.setInterval(30); xyWidgetsHideTransition.setInterval(30); connect(&xyWidgetsShowTransition, SIGNAL(timeout()), this, SLOT(showXYWidgets())); connect(&xyWidgetsHideTransition, SIGNAL(timeout()), this, SLOT(hideXYWidgets())); repaintTimer.setInterval(100); repaintTimer.setSingleShot(true); connect(&repaintTimer, SIGNAL(timeout()), this, SLOT(reactivateSmoothing())); timerX.setInterval(35); connect(&timerX, SIGNAL(timeout()), this, SLOT(zoomX())); timerY.setInterval(35); connect(&timerY, SIGNAL(timeout()), this, SLOT(zoomY())); dispPoint = false; boutonPresse = false; sourisSurUneCourbe = dispRectangle = recalculate = false; hHideStarted = vHideStarted = xyWidgetsState = mouseState.hovering = false; moving = false; kLabel.setStyleSheet("background-color: QLinearGradient( x1: 0, y1: 0, x2: 1, y2: 0, stop: 0 #FFFFFF, stop: 0.3 #D0D0D0 , stop: 0.75 #FFFFFF, stop: 1 #FFFFFF); border-width: 1px; border-color: #D0D0D0; border-style: solid; border-radius: 10;"); customFunctions << "f(x) =" << "g(x) =" << "h(x) =" << "p(x) =" << "r(x) =" << "m(x) ="; customSequences << "un =" << "vn =" << "ln =" << "wn =" << "qn =" << "tn ="; kLabel.setParent(this); kLabel.hide(); savedGraph = NULL; setMouseTracking(true); typeCurseur = NORMAL; addOtherWidgets(); } void MainGraph::reactivateSmoothing() { moving = recalculate = false; resaveGraph = true; update(); } void MainGraph::updateParEq() { animationUpdate = true; repaint(); } void MainGraph::updateGraph() { if(!cancelUpdateSignal) { resaveGraph = true; recalculate = true; update(); } cancelUpdateSignal = false; } void MainGraph::addOtherWidgets() { QLabel *zoom1 = new QLabel(); zoom1->setFixedSize(25,25); zoom1->setScaledContents(true); zoom1->setPixmap(QPixmap(":/icons/zoom-in-icon.png")); QLabel *zoom2 = new QLabel(); zoom2->setFixedSize(25,25); zoom2->setScaledContents(true); zoom2->setPixmap(QPixmap(":/icons/zoom-in-icon.png")); QLabel *unZoom1 = new QLabel(); unZoom1->setFixedSize(25,25); unZoom1->setScaledContents(true); unZoom1->setPixmap(QPixmap(":/icons/zoom-out-icon.png")); QLabel *unZoom2 = new QLabel(); unZoom2->setFixedSize(25,25); unZoom2->setScaledContents(true); unZoom2->setPixmap(QPixmap(":/icons/zoom-out-icon.png")); xTextLabel = new QLabel(); xTextLabel->setFixedHeight(25); xTextLabel->setMaximumWidth(35); xTextLabel->setMinimumWidth(25); yTextLabel = new QLabel(); yTextLabel->setFixedHeight(25); yTextLabel->setMaximumWidth(35); yTextLabel->setMinimumWidth(25); hSlider = new QSlider(Qt::Horizontal); hSlider->setFixedSize(250,20); hSlider->setMinimum(-50); hSlider->setMaximum(50); hSlider->setTickPosition(QSlider::TicksBothSides); hSlider->setFocusPolicy(Qt::NoFocus); hSlider->setValue(0); connect(hSlider, SIGNAL(sliderPressed()), &timerX, SLOT(start())); connect(hSlider, SIGNAL(sliderReleased()), this, SLOT(stop_X_zoom())); vSlider = new QSlider(Qt::Vertical); vSlider->setFixedSize(20,250); vSlider->setMinimum(-50); vSlider->setMaximum(50); vSlider->setTickPosition(QSlider::TicksBothSides); vSlider->setFocusPolicy(Qt::NoFocus); vSlider->setValue(0); connect(vSlider, SIGNAL(sliderPressed()), &timerY, SLOT(start())); connect(vSlider, SIGNAL(sliderReleased()), this, SLOT(stop_Y_Zoom())); lineX = new QLineEdit(); lineX->setFixedSize(150,25); lineY = new QLineEdit(); lineY->setFixedSize(150,25); QVBoxLayout *verLayout = new QVBoxLayout(); verLayout->addWidget(zoom1); verLayout->addWidget(vSlider); verLayout->addWidget(unZoom1); vWidget = new QWidget(this); vWidget->setLayout(verLayout); QHBoxLayout *horLayout = new QHBoxLayout(); horLayout->addWidget(zoom2); horLayout->addWidget(hSlider); horLayout->addWidget(unZoom2); hWidget = new QWidget(this); hWidget->setLayout(horLayout); xWidget = new QWidget(this); QHBoxLayout *hbox1 = new QHBoxLayout(); hbox1->addWidget(xTextLabel); hbox1->addWidget(lineX); xWidget->setLayout(hbox1); yWidget = new QWidget(this); QHBoxLayout *hbox2 = new QHBoxLayout(); hbox2->addWidget(yTextLabel); hbox2->addWidget(lineY); yWidget->setLayout(hbox2); vWidget->setStyleSheet("background-color: QLinearGradient( x1: 0, y1: 0, x2: 1, y2: 0, stop: 0 #FFFFFF, stop: 0.3 #D0D0D0 , stop: 0.75 #FFFFFF, stop: 1 #FFFFFF); border-width: 1px; border-color: #D0D0D0; border-style: solid; border-radius: 10;"); hWidget->setStyleSheet("background-color: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #FFFFFF, stop: 0.3 #D0D0D0 , stop: 1 #FFFFFF); border-width: 1px; border-color: #D0D0D0; border-style: solid; border-radius: 10;"); hSlider->setStyleSheet("background-color: none; border: none;"); zoom2->setStyleSheet("background-color: none; border: none;"); unZoom2->setStyleSheet("background-color: none; border: none;"); vSlider->setStyleSheet("background-color: none; border: none;"); zoom1->setStyleSheet("background-color: none; border: none;"); unZoom1->setStyleSheet("background-color: none; border: none;"); } void MainGraph::hideHorWidget() { if(hWidget->y() >= hBottom) { hWidgetHideTransition.stop(); hWidget->hide(); hWidgetState = false; hHideStarted = false; } else hWidget->move(hWidget->x(), hWidget->y()+6); } void MainGraph::hideVerWidget() { if(vWidget->x() >= vBottom) { vWidgetHideTransition.stop(); vWidget->hide(); vWidgetState = false; vHideStarted = false; } else vWidget->move(vWidget->x()+6, vWidget->y()); } void MainGraph::hideXYWidgets() { xWidget->move(xWidget->x(), xWidget->y()+6); yWidget->move(yWidget->x(), yWidget->y()+6); if(xWidget->y() >= xyBottom) { xyWidgetsState = false; xyWidgetsHideTransition.stop(); xWidget->hide(); yWidget->hide(); } } void MainGraph::showHorWidget() { hWidget->show(); if(hWidget->y() <= hTopLeft.y()) { hWidgetState = true; hWidgetShowTransition.stop(); } else hWidget->move(hWidget->x(), hWidget->y()-6); } void MainGraph::showVerWidget() { vWidget->show(); if(vWidget->x() <= vTopLeft.x()) { vWidgetState = true; vWidgetShowTransition.stop(); } else vWidget->move(vWidget->x()-6, vWidget->y()); } void MainGraph::showXYWidgets() { xWidget->show(); yWidget->show(); xWidget->move(xWidget->x(), xWidget->y()-6); yWidget->move(yWidget->x(), yWidget->y()-6); if(xWidget->y() <= xTopLeft.y()) { xyWidgetsState = true; xyWidgetsShowTransition.stop(); } } void MainGraph::wheelEvent(QWheelEvent *event) { repaintTimer.stop(); double x = event->pos().x(); double y = event->pos().y(); x = (x-centre.x)/uniteX; y = -(y-centre.y)/uniteY; double valeur = (double)event->delta() / 1200; if(isinf(valeur)) return; if((graphRange.Xmax - graphRange.Xmin > MIN_RANGE && graphRange.Ymax - graphRange.Ymin > MIN_RANGE) || valeur < 0) { graphRange.Xmax -= (graphRange.Xmax - x)*valeur; graphRange.Xmin -= (graphRange.Xmin - x)*valeur; graphRange.Ymax -= (graphRange.Ymax - y)*valeur; graphRange.Ymin -= (graphRange.Ymin - y)*valeur; moving = true; if(parametres.lissage) repaintTimer.start(); informations->setRange(graphRange); } event->accept(); //the graph will update from the "informations" class updateoccured() signal } void MainGraph::afficherPtX(double x) { if(selectedCurve.isSomethingSelected && !selectedCurve.tangentSelection) { if(selectedCurve.funcType == FUNC_HOVER) { double k = 0; if(selectedCurve.isParametric) { Range info = funcs[selectedCurve.id]->getParametricRange(); k = info.start + (double)(selectedCurve.kPos) * info.step; } pointUnit.x = x; pointUnit.y = funcs[selectedCurve.id]->getFuncValue(x, k); dispPoint = true; } else if(selectedCurve.funcType == SEQ_HOVER) { if(fipart(x) >= seqs[selectedCurve.id]->get_nMin()) { bool ok = true; x = fipart(x); pointUnit.x = x; pointUnit.y = seqs[selectedCurve.id]->getSeqValue(x, ok, selectedCurve.kPos); dispPoint = true; } } update(); } } void MainGraph::newWindowSize() { emit sizeChanged(graphWidth, graphHeight); windowSize = size(); if(hWidget != NULL) { hTopLeft.setX((width()-hWidget->width())/2); hTopLeft.setY(height()-hWidget->height()); hBottom = hTopLeft.y()+hWidget->height()+5; xTopLeft.setX(hTopLeft.x()-xWidget->width()); xTopLeft.setY(hTopLeft.y()); yTopLeft.setX(hTopLeft.x()+hWidget->width()); yTopLeft.setY(hTopLeft.y()); vTopLeft.setX(width()-vWidget->width()); vTopLeft.setY((height()-vWidget->height())/2); xyBottom = yTopLeft.y()+yWidget->height()+5; vBottom = vTopLeft.x()+vWidget->width()+5; yWidget->move(yTopLeft); xWidget->move(xTopLeft); if(!xyWidgetsState && !selectedCurve.isSomethingSelected) timeWaitForXYWidgets.start(); vWidget->move(vTopLeft); hWidget->move(hTopLeft); hWidgetRect.setTopLeft(hTopLeft); hWidgetRect.setHeight(hWidget->height()); hWidgetRect.setWidth(hWidget->width()); vWidgetRect.setTopLeft(vTopLeft); vWidgetRect.setHeight(vWidget->height()); vWidgetRect.setWidth(vWidget->width()); hWidgetState = true; vWidgetState = true; } } void MainGraph::paintEvent(QPaintEvent *event) { graphWidth = width(); graphHeight = height(); parametres = informations->getOptions(); graphRange = informations->getRange(); if(windowSize != size()) { newWindowSize(); resaveGraph = true; recalculate = true; } if(!moving && (typeCurseur == NORMAL || hWidgetHideTransition.isActive() || vWidgetHideTransition.isActive() || hWidgetShowTransition.isActive() || vWidgetShowTransition.isActive() || hWidgetState || vWidgetState || animationUpdate)) indirectPaint(); else directPaint(); painter.end(); event->accept(); } void MainGraph::indirectPaint() { if(resaveTangent) addTangentToBuffer(); if(resaveGraph) resaveImageBuffer(); painter.begin(this); painter.drawImage(QPoint(0,0), *savedGraph); painter.translate(QPointF(centre.x, centre.y)); drawAnimatedParEq(); animationUpdate = false; if(dispPoint) afficherPoint(); if(selectedCurve.isSomethingSelected && selectedCurve.tangentSelection) drawOneTangent(selectedCurve.id); if(mouseState.hovering) drawHoveringConsequence(); } void MainGraph::directPaint() { resaveGraph = true; painter.begin(this); //trace du background font.setPixelSize(parametres.numSize); painter.setFont(font); painter.setBrush(QBrush(parametres.couleurDuFond)); painter.drawRect(-1, -1, graphWidth+1, graphHeight+1); determinerCentreEtUnites(); drawAxes(); placerGraduations(); if(dispRectangle) { painter.setBrush(Qt::NoBrush); pen.setWidth(1); pen.setColor(parametres.couleurDesAxes); painter.setPen(pen); painter.drawRect(rectReel); } if(recalculate) funcValuesSaver->calculateAll(uniteX, uniteY); painter.translate(QPointF(centre.x, centre.y)); drawFunctions(); drawSequences(); drawStraightLines(); drawTangents(); drawAllParEq(); if(dispPoint) afficherPoint(); } void MainGraph::drawHoveringConsequence() { if(mouseState.funcType == FUNC_HOVER) { drawOneFunction(mouseState.id, parametres.epaisseurDesCourbes + 1, mouseState.kPos); } else if(mouseState.funcType == SEQ_HOVER) { drawOneSequence(mouseState.id, parametres.epaisseurDesCourbes + 4); } else if(mouseState.funcType == TANGENT_MOVE_HOVER || mouseState.funcType == TANGENT_RESIZE_HOVER) { TangentWidget *tangent = tangents->at(mouseState.id); TangentPoints points = tangent->getCaracteristicPoints(); pen.setWidth(parametres.epaisseurDesCourbes + 4); pen.setColor(tangent->getColor()); painter.setPen(pen); painter.setRenderHint(QPainter::Antialiasing); if(mouseState.funcType == TANGENT_MOVE_HOVER) { QPointF pt(points.center.x * uniteX, - points.center.y * uniteY); painter.drawPoint(pt); } else { QPointF pt1(points.left.x * uniteX, - points.left.y * uniteY); painter.drawPoint(pt1); QPointF pt2(points.right.x * uniteX, - points.right.y * uniteY); painter.drawPoint(pt2); } } } void MainGraph::addTangentToBuffer() { resaveTangent = false; painter.begin(savedGraph); painter.translate(QPointF(centre.x, centre.y)); painter.setRenderHint(QPainter::Antialiasing); drawOneTangent(tangentDrawException); tangentDrawException = -1; cancelUpdateSignal = true; informations->emitUpdateSignal(); painter.end(); } void MainGraph::resaveImageBuffer() { resaveGraph = false; delete savedGraph; savedGraph = new QImage(size(), QImage::Format_RGB32); painter.begin(savedGraph); //trace du background font.setPixelSize(parametres.numSize); painter.setFont(font); painter.setBrush(QBrush(parametres.couleurDuFond)); painter.drawRect(-1, -1, graphWidth+1, graphHeight+1); determinerCentreEtUnites(); drawAxes(); placerGraduations(); if(recalculate) funcValuesSaver->calculateAll(uniteX, uniteY); painter.translate(QPointF(centre.x, centre.y)); drawFunctions(); drawSequences(); drawStraightLines(); drawTangents(); drawStaticParEq(); painter.end(); } void MainGraph::determinerCentreEtUnites() { uniteY = graphHeight / (graphRange.Ymax - graphRange.Ymin); uniteX = graphWidth / (graphRange.Xmax - graphRange.Xmin); bool orthonormal = informations->isOrthonormal(); double rapport = uniteY / uniteX; if(orthonormal && !(0.9999 < rapport && rapport < 1.0001)) { graphRange.Ymin *= rapport; graphRange.Ymax *= rapport; uniteY = uniteX; cancelUpdateSignal = true; informations->setRange(graphRange); recalculate = true; } centre.x = - graphRange.Xmin * uniteX; centre.y = graphRange.Ymax * uniteY; bool scaleChanged = false; QFontMetrics fontMeter(font); double last = fipart(graphRange.Xmax / graphRange.Xscale) * graphRange.Xscale; double numberSize = fontMeter.width(QString::number(last, 'g', NUM_PREC)) + 5; if(uniteX * graphRange.Xscale < numberSize + 10) { while(uniteX * graphRange.Xscale < numberSize + 10) graphRange.Xscale *= 2; if(orthonormal) graphRange.Yscale = graphRange.Xscale; scaleChanged = true; } else if(uniteX * graphRange.Xscale > 300) { while(uniteX * graphRange.Xscale > 300) graphRange.Xscale /= 2; if(orthonormal) graphRange.Yscale = graphRange.Xscale; scaleChanged = true; } if(!orthonormal) { if(uniteY * graphRange.Yscale < 25) { while(uniteY * graphRange.Yscale < 25) graphRange.Yscale *= 2; scaleChanged = true; } else if(uniteY * graphRange.Yscale > 200) { while(uniteY * graphRange.Yscale > 200) graphRange.Yscale /= 2; scaleChanged = true; } } if(scaleChanged) { cancelUpdateSignal = true; informations->setRange(graphRange); recalculate = true; } } void MainGraph::drawAllParEq() { drawAnimatedParEq(); drawStaticParEq(); } void MainGraph::drawAnimatedParEq() { painter.setRenderHint(QPainter::Antialiasing, parametres.lissage && !moving); QList< QList > *list; QPolygonF polygon; ParEqWidget *parWidget; ColorSaver *colorSaver; Point point; pen.setWidth(parametres.epaisseurDesCourbes); painter.setPen(pen); int listEnd; for(int i = 0; i < parEqs->size(); i++) { parWidget = parEqs->at(i); colorSaver = parWidget->getColorSaver(); if(parWidget->isAnimated()) { if(parWidget->is_t_Animated()) list = parWidget->getPointsList(); else list = parWidget->getCurrentPolygon(); for(int curve = 0; curve < list->size(); curve++) { if(!parWidget->is_t_Animated())// equals is_k_animated pen.setColor(colorSaver->getColor(parWidget->getCurrentKPos())); else pen.setColor(colorSaver->getColor(curve)); painter.setPen(pen); polygon.clear(); if(parWidget->is_t_Animated()) listEnd = parWidget->getCurrentTPos(); else listEnd = list->at(curve).size(); for(int pos = 0 ; pos < listEnd; pos ++) { point = list->at(curve).at(pos); polygon << QPointF(point.x * uniteX, - point.y * uniteY); } if(parWidget->keepTracks() || !parWidget->is_t_Animated()) painter.drawPolyline(polygon); if(parWidget->is_t_Animated()) { pen.setWidth(parametres.epaisseurDesCourbes + 3); painter.setPen(pen); painter.drawPoint(polygon.last()); pen.setWidth(parametres.epaisseurDesCourbes); painter.setPen(pen); } } } } } void MainGraph::afficherPoint() { if(selectedCurve.funcType == FUNC_HOVER) { xTextLabel->setText("x = "); yTextLabel->setText(customFunctions[selectedCurve.id]); } else { xTextLabel->setText("n = "); yTextLabel->setText(customSequences[selectedCurve.id]); } xTextLabel->setStyleSheet("color: " + parametres.couleurDesAxes.name()); yTextLabel->setStyleSheet("color: " + parametres.couleurDesAxes.name()); if(selectedCurve.isParametric) { Range kRange; if(selectedCurve.funcType == FUNC_HOVER) kRange = funcs[selectedCurve.id]->getParametricRange(); else kRange = seqs[selectedCurve.id]->getKRange(); kLabel.move(5, 5); double result = kRange.start + selectedCurve.kPos * kRange.step; kLabel.setText("k = " + QString::number(result)); kLabel.adjustSize(); kLabel.show(); } if(selectedCurve.funcType == FUNC_HOVER) pen.setColor(funcs[selectedCurve.id]->getColorSaver()->getColor(selectedCurve.kPos)); else pen.setColor(seqs[selectedCurve.id]->getColorSaver()->getColor(selectedCurve.kPos)); int extraWidth = 3; if(selectedCurve.funcType == SEQ_HOVER) extraWidth += 2; pen.setWidth(parametres.epaisseurDesCourbes + extraWidth); painter.setPen(pen); painter.setRenderHint(QPainter::Antialiasing); pointPx.x = pointUnit.x * uniteX; pointPx.y = -pointUnit.y * uniteY; painter.drawPoint(pointPx.x, pointPx.y); lineX->setText(QString::number(pointUnit.x, 'g', NUM_PREC)); lineY->setText(QString::number(pointUnit.y, 'g', NUM_PREC)); dispPoint = false; } void MainGraph::mousePressEvent(QMouseEvent *event) { boutonPresse = true; lastPosSouris.x = event->x(); lastPosSouris.y = event->y(); if(event->buttons() & Qt::LeftButton) { typeCurseur = NORMAL; if(mouseState.hovering && mouseState.tangentHovering) { selectedCurve.tangentSelection = true; selectedCurve.isSomethingSelected = true; selectedCurve.tangentPtSelection = mouseState.tangentPtSelection; selectedCurve.id = mouseState.id; selectedCurve.funcType = mouseState.funcType; tangentDrawException = mouseState.id; resaveGraph = true; } } else if(event->buttons() & Qt::RightButton) { typeCurseur = ZOOMBOX; dispRectangle = true; rectReel.setTopLeft(QPoint(event->x(), event->y())); } } void MainGraph::mouseReleaseEvent(QMouseEvent *event) { Q_UNUSED(event); boutonPresse = false; if(typeCurseur == NORMAL) { if(mouseState.hovering && !mouseState.tangentHovering) { selectedCurve.tangentSelection = mouseState.tangentHovering; selectedCurve.isSomethingSelected = true; selectedCurve.isParametric = mouseState.isParametric; selectedCurve.kPos = mouseState.kPos; selectedCurve.id = mouseState.id; selectedCurve.funcType = mouseState.funcType; selectedCurve.tangentPtSelection = mouseState.tangentPtSelection; moving = false; if(selectedCurve.tangentSelection) { selectedCurve.isSomethingSelected = false; tangentDrawException = selectedCurve.id; resaveGraph = true; } else if(!xyWidgetsState) xyWidgetsShowTransition.start(); } else { if(selectedCurve.isSomethingSelected && !moving) { if(selectedCurve.isSomethingSelected && selectedCurve.tangentSelection) resaveTangent = true; selectedCurve.isSomethingSelected = false; xyWidgetsHideTransition.start(); kLabel.hide(); } else moving = false; update(); } } else if(typeCurseur == ZOOMBOX) { dispRectangle = false; if(rectReel.height() > 10 && rectReel.width() > 10) { GraphRange fen = graphRange; fen.Xmax = (rectReel.right() - centre.x) / uniteX; fen.Xmin = (rectReel.left() - centre.x) / uniteX; fen.Ymax = (- rectReel.top() + centre.y) / uniteY; fen.Ymin = (- rectReel.bottom() + centre.y) / uniteY; if(fen.Xmax - fen.Xmin > MIN_RANGE && fen.Ymax - fen.Ymin > MIN_RANGE) informations->setRange(fen); typeCurseur = NORMAL; } } } void MainGraph::mouseMoveEvent(QMouseEvent *event) { mouseX = event->x(); mouseY = event->y(); if(hWidgetRect.contains(mouseX, mouseY)) { hWidgetHideTransition.stop(); hHideStarted = false; hWidgetShowTransition.start(); } else if(hWidgetState && !hHideStarted) { mouseNotOnHWidget.start(); hHideStarted = true; } if(vWidgetRect.contains(mouseX, mouseY)) { vWidgetHideTransition.stop(); vHideStarted = false; vWidgetShowTransition.start(); } else if(vWidgetState && !vHideStarted) { mouseNotOnVWidget.start(); vHideStarted = true; } if(typeCurseur == NORMAL) { double x = (mouseX - centre.x) / uniteX; double y = - (mouseY - centre.y) / uniteY; if(selectedCurve.isSomethingSelected) mouseMoveWithActiveSelection(x, y); mouseState.hovering = false; mouseTangentHoverTest(x, y); if(!mouseState.hovering) mouseSeqHoverTest(x, y); if(!mouseState.hovering) mouseFuncHoverTest(x, y); if(!mouseState.hovering && mouseState.id != -1) { mouseState.id = -1; update(); } if(boutonPresse && !(selectedCurve.isSomethingSelected && selectedCurve.tangentSelection)) { double dx = mouseX - lastPosSouris.x; double dy = mouseY - lastPosSouris.y; centre.x += dx; centre.y += dy; graphRange.Xmax -= dx / uniteX; graphRange.Xmin -= dx / uniteX; graphRange.Ymax += dy / uniteY; graphRange.Ymin += dy / uniteY; cancelUpdateSignal = true; informations->setRange(graphRange); determinerCentreEtUnites(); if(dx != 0) funcValuesSaver->move(dx); moving = true; update(); } } else if(typeCurseur == ZOOMBOX) { rectReel.setBottomRight(QPoint(event->x(), event->y())); update(); } lastPosSouris.x = event->x(); lastPosSouris.y = event->y(); } void MainGraph::mouseMoveWithActiveSelection(double x, double y) { Q_UNUSED(y); short k_pos = 0; double k = 0; if(selectedCurve.isParametric) { if(selectedCurve.funcType == FUNC_HOVER) { Range info = funcs[selectedCurve.id]->getParametricRange(); k = info.start + (double)selectedCurve.kPos * info.step; } else k_pos = selectedCurve.kPos; } if(selectedCurve.funcType == FUNC_HOVER) { pointUnit.x = x; pointUnit.y = funcs[selectedCurve.id]->getFuncValue(x, k); dispPoint = true; recalculate = false; } else if(selectedCurve.funcType == SEQ_HOVER && x >= seqs[0]->get_nMin()-0.3) { double start, step = 1; bool ok = true; if(graphRange.Xmin > seqs[0]->get_nMin()) start = fipart(graphRange.Xmin); else start = seqs[0]->get_nMin(); if(uniteX < 1) step = 5*fipart(1/uniteX); if(fabs(fipart((x-start)/step) - (x-start)/step) < 0.5*step) pointUnit.x = fipart((x-start)/step) * step + start; else pointUnit.x = fipart((x-start)/step) * step + start + step; pointUnit.y = seqs[selectedCurve.id]->getSeqValue(pointUnit.x, ok, k_pos); if(!ok) { selectedCurve.isSomethingSelected = false; return; } dispPoint = true; recalculate = false; } else if(selectedCurve.funcType == TANGENT_RESIZE_HOVER) { double dx = (mouseX - lastPosSouris.x)/uniteX; tangents->at(selectedCurve.id)->resizeTangent(dx, selectedCurve.tangentPtSelection); } else if(selectedCurve.funcType == TANGENT_MOVE_HOVER) { tangents->at(selectedCurve.id)->move(x); } update(); } void MainGraph::mouseFuncHoverTest(double x, double y) { double calcY = 0; double k = 0; int draw; Range kRange; for(short i = 0; i < funcs.size(); i++) { if(!funcs[i]->isFuncValid()) continue; kRange = funcs[i]->getParametricRange(); k = kRange.start; draw = 0; while(k <= kRange.end) { calcY = funcs[i]->getFuncValue(x, k); if(!(isnan(calcY) || isinf(calcY))) { if(!(selectedCurve.isSomethingSelected && selectedCurve.funcType == FUNCTION && draw == selectedCurve.kPos && i == selectedCurve.id)) { if((fabs(calcY - y) * uniteY) < parametres.epaisseurDesCourbes + 1) { mouseState.hovering = true; mouseState.tangentHovering = false; mouseState.funcType = FUNC_HOVER; mouseState.isParametric = funcs[i]->isFuncParametric(); mouseState.kPos = draw; mouseState.id = i; //recalculate = false; update(); return; } } } k += kRange.step; draw++; } } } void MainGraph::mouseSeqHoverTest(double x, double y) { double calcY = 0; short drawsNum = 1; bool ok; double nMin = seqs[0]->get_nMin(); if(x > nMin) { double intAbscissa = NAN; double start, step = 1; if(graphRange.Xmin > nMin) start = fipart(graphRange.Xmin); else start = nMin; if(uniteX < 1) step = 5*fipart(1/uniteX); if(fabs((fipart((x-start)/step) - (x-start)/step) * uniteX) < (double)(parametres.epaisseurDesCourbes) + 2) intAbscissa = fipart((x-start)/step) * step + start; if(isnan(intAbscissa)) return; for(short i = 0; i < 6; i++) { if(!seqs[i]->isSeqValid()) continue; drawsNum = seqs[i]->getDrawsNum(); ok = true; for(short draw = 0 ; draw < drawsNum ; draw++) { calcY = seqs[i]->getSeqValue(intAbscissa, ok, draw); if(!ok) break; if(!(selectedCurve.isSomethingSelected && selectedCurve.funcType == SEQUENCE && draw == selectedCurve.kPos && i == selectedCurve.id)) { if((fabs(calcY - y) * uniteY) < parametres.epaisseurDesCourbes + 3) { mouseState.hovering = true; mouseState.tangentHovering = false; mouseState.funcType = SEQ_HOVER; mouseState.isParametric = seqs[i]->isSeqParametric(); mouseState.kPos = draw; mouseState.id = i; //recalculate = false; update(); return; } } } } } } void MainGraph::mouseTangentHoverTest(double x, double y) { TangentWidget *tangent; TangentPoints tangentPoints; bool found = false; for(int i = 0 ; i < tangents->size() && !found; i++) { tangent = tangents->at(i); if(!tangent->isTangentValid()) continue; tangentPoints = tangent->getCaracteristicPoints(); if(fabs(tangentPoints.left.x - x) < 4/uniteX && fabs(tangentPoints.left.y - y) < 4/uniteY) { mouseState.hovering = true; mouseState.tangentHovering = true; mouseState.tangentPtSelection = -1; //-1 for left point, so when we add dx to the tangent's lenght, we multiply it by -1 mouseState.funcType = TANGENT_RESIZE_HOVER; mouseState.id = i; found = true; //recalculate = false; } else if(fabs(tangentPoints.right.x - x) < 4/uniteX && fabs(tangentPoints.right.y - y) < 4/uniteY) { mouseState.hovering = true; mouseState.tangentHovering = true; mouseState.tangentPtSelection = 1; mouseState.funcType = TANGENT_RESIZE_HOVER; mouseState.id = i; found = true; //recalculate = false; } else if(fabs(tangentPoints.center.x - x) < 5/uniteX && fabs(tangentPoints.center.y - y) < 5/uniteY) { mouseState.hovering = true; mouseState.tangentHovering = true; mouseState.funcType = TANGENT_MOVE_HOVER; mouseState.id = i; found = true; //recalculate = false; } } if(found) update(); } void MainGraph::placerGraduations() { pen.setColor(parametres.couleurDesAxes); pen.setWidth(1); painter.setPen(pen); painter.setRenderHint(QPainter::Antialiasing, false); double start, end, Ypos, posTxt; //trace sur l'axe des X if(centre.y < 20) { Ypos = 20; posTxt = Ypos + parametres.numSize + 3; } else if(graphHeight - centre.y < 20) { Ypos = graphHeight - 20; posTxt = Ypos - 7; } else { Ypos = centre.y; posTxt = Ypos + parametres.numSize + 3; } double Xreal = fipart(graphRange.Xmin / graphRange.Xscale) * graphRange.Xscale; double Xpos = Xreal * uniteX + centre.x; double pos; double pas = graphRange.Xscale * uniteX; double bas = height(); double haut = 0; QString num = QString::number(Xreal, 'g', NUM_PREC); start = 5; end = graphWidth - 5; if(centre.x < 10) start = 10 + painter.fontMetrics().width(num)/2 + 5; else if(centre.x > graphWidth - 10) end = graphWidth - 10 - painter.fontMetrics().width(num)/2 - 5; while(Xpos <= end) { if(start <= Xpos && fabs(Xpos - centre.x) > 1) { if(start <= Xpos && informations->getGridState() && Xpos <= end) { pen.setColor(parametres.couleurQuadrillage); pen.setWidthF(0.5); painter.setPen(pen); painter.drawLine(QPointF(Xpos, bas), QPointF(Xpos, haut)); pen.setColor(parametres.couleurDesAxes); pen.setWidth(1); painter.setPen(pen); } painter.drawLine(QPointF(Xpos, Ypos -3), QPointF(Xpos, Ypos)); num = QString::number(Xreal, 'g', NUM_PREC); pos = Xpos - painter.fontMetrics().width(num)/2; painter.drawText(QPointF(pos, posTxt), num); } Xpos += pas; Xreal += graphRange.Xscale; } //trace sur l'axe des Y bool drawOnRight = false; if(centre.x < 10) { Xpos = 10; posTxt = Xpos + 4; } else if(graphWidth - centre.x < 10) { Xpos = graphWidth - 10; posTxt = Xpos - 8; drawOnRight = true; } else { Xpos = centre.x; posTxt = Xpos + 5; } double Yreal = fipart(graphRange.Ymax / graphRange.Yscale) * graphRange.Yscale; Ypos = -Yreal * uniteY + centre.y; pas = graphRange.Yscale * uniteY; bas = 0; haut = graphWidth; start = 5; end = graphHeight - 5; if(graphHeight - centre.y < 10) end = graphHeight - 50; else if(centre.y < 10) start = 50; double txtCorr = + painter.fontMetrics().ascent()/2 - 2; while(Ypos <= end) { if(start <= Ypos && fabs(Ypos - centre.y) > 1) { if(informations->getGridState()) { pen.setColor(parametres.couleurQuadrillage); pen.setWidthF(0.5); painter.setPen(pen); painter.drawLine(QPointF(bas, Ypos), QPointF(haut, Ypos)); pen.setColor(parametres.couleurDesAxes); pen.setWidth(1); painter.setPen(pen); } painter.drawLine(QPointF(Xpos -3, Ypos), QPointF(Xpos, Ypos)); num = QString::number(Yreal, 'g', NUM_PREC); if(drawOnRight) painter.drawText(QPointF(posTxt - painter.fontMetrics().width(num), Ypos + txtCorr), num); else painter.drawText(QPointF(posTxt, Ypos + txtCorr), num); } Yreal -= graphRange.Yscale; Ypos += pas; } } void MainGraph::drawAxes() { // *********** remarque: les y sont positifs en dessous de l'axe x, pas au dessus !! ************// pen.setWidth(1); pen.setColor(parametres.couleurDesAxes); painter.setPen(pen); painter.setRenderHint(QPainter::Antialiasing, false); axesIntersec.y = centre.y; axesIntersec.x = centre.x; if(graphRange.Ymin > -20/uniteY) axesIntersec.y = graphHeight - 20; else if(graphRange.Ymax < 20/uniteY) axesIntersec.y = 20; if(graphRange.Xmin > -10/uniteX) axesIntersec.x = 10; else if(graphRange.Xmax < 10/uniteX) axesIntersec.x = graphWidth - 10; //ordinates axis painter.drawLine(QPointF(axesIntersec.x, 0), QPointF(axesIntersec.x, graphHeight)); //abscissa axis painter.drawLine(QPointF(0, axesIntersec.y), QPointF(graphWidth, axesIntersec.y)); if(graphRange.Ymin > -20/uniteY) { painter.drawLine(QPointF(axesIntersec.x-3, axesIntersec.y-6), QPointF(axesIntersec.x+3, axesIntersec.y-4)); painter.drawLine(QPointF(axesIntersec.x-3, axesIntersec.y-9), QPointF(axesIntersec.x+3, axesIntersec.y-7)); pen.setColor(parametres.couleurDuFond); painter.setPen(pen); painter.drawLine(QPointF(axesIntersec.x, axesIntersec.y-6), QPointF(axesIntersec.x, axesIntersec.y-7)); } else if(graphRange.Ymax < 20/uniteY) { painter.drawLine(QPointF(axesIntersec.x-3, axesIntersec.y+6), QPointF(axesIntersec.x+3, axesIntersec.y+4)); painter.drawLine(QPointF(axesIntersec.x-3, axesIntersec.y+9), QPointF(axesIntersec.x+3, axesIntersec.y+7)); pen.setColor(parametres.couleurDuFond); painter.setPen(pen); painter.drawLine(QPointF(axesIntersec.x, axesIntersec.y+6), QPointF(axesIntersec.x, axesIntersec.y+7)); } } void MainGraph::zoomX() { repaintTimer.stop(); double valeur = (graphRange.Xmax- graphRange.Xmin) * (double)(hSlider->value()) * 0.0016; graphRange.Xmin -= valeur; graphRange.Xmax += valeur; moving = true; informations->setRange(graphRange); if(parametres.lissage) repaintTimer.start(); } void MainGraph::stop_X_zoom() { timerX.stop(); hSlider->setValue(0); } void MainGraph::zoomY() { repaintTimer.stop(); double valeur = (graphRange.Ymax - graphRange.Ymin) * (double)(vSlider->value()) * 0.0016; if(!informations->isOrthonormal()) { graphRange.Ymin -= valeur; graphRange.Ymax += valeur; recalculate = false; } else { graphRange.Xmin -= valeur; graphRange.Xmax += valeur; recalculate = true; } moving = true; if(parametres.lissage) repaintTimer.start(); informations->setRange(graphRange); } void MainGraph::stop_Y_Zoom() { timerY.stop(); vSlider->setValue(0); } MainGraph::~MainGraph() { delete savedGraph; } zegrapher-2.0.orig/src/printpreview.h0000644000175000017500000000547112105437153020205 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #ifndef PRINTPREVIEW_H #define PRINTPREVIEW_H #include "imagepreview.h" #define PORTRAIT true #define PAYSAGE false #define COLOR true #define GRAYSCALE false #define SCREEN_RESOLUTION true #define CUSTOM_RESOLUTION false #define PRINT_SHEET true #define PRINT_FILE false #define NOTHING 0 #define TOPLEFT_CORNER 1 #define TOPRIGHT_CORNER 2 #define BOTTOMLEFT_CORNER 3 #define BOTTOMRIGHT_CORNER 4 #define LEFT_SIDE 5 #define TOP_SIDE 6 #define RIGHT_SIDE 7 #define BOTTOM_SIDE 8 #define ALL 9 class PrintPreview : public ImagePreview { Q_OBJECT public: explicit PrintPreview(Informations *info); void setViewType(bool type); void setPrinter(QPrinterInfo printInfo); void setPDFname(QString pdf); signals: void newGraphSize(double H, double W); public slots: void mousePressEvent(QMouseEvent *event); void mouseMoveEvent(QMouseEvent *event); void mouseReleaseEvent(QMouseEvent *event); void wheelEvent(QWheelEvent *event); void setGraphHeight(double H); void setGraphWidth(double W); void print(int nbPages, bool colorType, bool printType, bool resType, int res = 0); void setScaleStatus(bool isActive); void setxscale(double scale); void setyscale(double scale); protected: void paintEvent(QPaintEvent *event); void determinerCentreEtUnites(); void drawSheet(); void drawGraph(); void assignGraphSize(); void assignMouseRects(); void printCurves(); void testGraphPosition(); bool viewType, hasScale; QRectF graph, sheetRect, graphRect, topLeft, topRight, top, left, right, bottom, bottomLeft, bottomRight; double sheetHeight, graphHeightCm, sheetWidth, graphWidthCm, relativeXposCm, relativeYposCm, xscale, yscale; QPointF lastMousePos, ; short moveType; QPrinterInfo printerInfo; QPrinter *printer; QString PDFname; }; #endif // PRINTPREVIEW_H zegrapher-2.0.orig/src/main.cpp0000644000175000017500000000330512105437153016720 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #include #include "zegrapher.h" #include #include #include #include int main(int argc, char *argv[]) { QApplication a(argc, argv); QTextCodec::setCodecForCStrings(QTextCodec::codecForName("UTF-8")); QTextCodec::setCodecForTr(QTextCodec::codecForName("UTF-8")); QLocale locale; QString localeString = locale.system().name().section("_",0,0); QTranslator translator; translator.load(QString("qt_") + localeString, QLibraryInfo::location(QLibraryInfo::TranslationsPath)); if(locale.language() != QLocale::French) translator.load(":/ZeGrapher_en.qm"); a.installTranslator(&translator); MainWindow w; w.show(); return a.exec(); } zegrapher-2.0.orig/src/fenetrefonctions.ui0000644000175000017500000005336512101535517021214 0ustar georgeskgeorgesk FenetreFonctions 0 0 400 400 0 0 380 400 16777215 16777215 Form :/icons/fonctions.png:/icons/fonctions.png 0 0 0 300 16777215 16777215 0 Fonctions Fonctions numériques 2 true 0 0 372 294 2 2 2 Qt::Vertical 20 40 0 0 Suites Suites numériques 0 2 0 0 16777215 16777215 QFrame::StyledPanel QFrame::Sunken 0 true 0 0 372 294 3 2 Qt::Horizontal 40 20 14 n<sub>min</sub> = 16777215 25 Qt::AlignCenter -100 100 Qt::Horizontal 40 20 Qt::Horizontal 2 Qt::Vertical 20 40 Droites Droites et tangentes 2 QFrame::NoFrame true 0 0 374 296 0 QFrame::Plain true 0 0 372 294 0 3 6 Qt::Horizontal 40 20 Ajouter : 16777215 25 Droite 16777215 25 Tangente Qt::Horizontal 40 20 Qt::Vertical 20 40 Paramètrique 2 true 0 0 372 294 0 5 0 0 Contrôle de l'animation: 3 Période d'incrémentation : 5 16777215 25 1 1000 10 50 millisecondes par pas. ms/pas Fréquence : 5 1 60 20 Hz Qt::Horizontal 6 Qt::Horizontal 40 20 16777215 25 Ajouter false Qt::Horizontal 40 20 Qt::Vertical 20 210 Clavier Qt::Horizontal 40 20 0 0 16777215 16777215 Tracer 0 tabWidget widget zegrapher-2.0.orig/src/abstractfuncwidget.cpp0000644000175000017500000000520712105437153021662 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #include "abstractfuncwidget.h" AbstractFuncWidget::AbstractFuncWidget() : treeCreator(FUNCTION) { isParametric = isValid = false; QColor color; color.setNamedColor(VALID_COLOR); validPalette.setColor(QPalette::Base, color); color.setNamedColor(INVALID_COLOR); invalidPalette.setColor(QPalette::Base, color); addMainWidgets(); } void AbstractFuncWidget::addMainWidgets() { QVBoxLayout *principalLayout = new QVBoxLayout; QHBoxLayout *firstContainerLayout = new QHBoxLayout; firstContainerLayout->setMargin(0); firstContainerLayout->setSpacing(4); drawCheckBox = new QCheckBox(); drawCheckBox->setChecked(true); nameLabel = new QLabel; expressionLineEdit = new QLineEdit; expressionLineEdit->setMaximumHeight(25); connect(expressionLineEdit, SIGNAL(returnPressed()), this, SIGNAL(returnPressed())); colorButton = new QColorButton; secondColorButton = new QColorButton; firstContainerLayout->addWidget(drawCheckBox); firstContainerLayout->addWidget(nameLabel); firstContainerLayout->addWidget(expressionLineEdit); firstContainerLayout->addWidget(colorButton); firstContainerLayout->addWidget(secondColorButton); secondColorButton->hide(); principalLayout->addLayout(firstContainerLayout); secondContainerLayout = new QHBoxLayout; secondContainerLayout->setMargin(0); secondContainerLayout->setSpacing(4); principalLayout->addLayout(secondContainerLayout); kConfWidget = new ParConfWidget('k'); kConfWidget->hide(); connect(kConfWidget, SIGNAL(returnPressed()), this, SIGNAL(returnPressed())); principalLayout->addWidget(kConfWidget); setLayout(principalLayout); } zegrapher-2.0.orig/src/printpreview.cpp0000644000175000017500000003263312105437153020540 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #include "printpreview.h" PrintPreview::PrintPreview(Informations *info) : ImagePreview(info) { parametres.distanceEntrePoints = 0.125; viewType = PORTRAIT; graphHeightCm = 28.7; graphWidthCm = 20; hasScale = false; xscale = yscale = 1; relativeXposCm = relativeYposCm = 0; moveType = NOTHING; } void PrintPreview::setPrinter(QPrinterInfo printInfo) { printerInfo = printInfo; } void PrintPreview::setPDFname(QString pdf) { PDFname = pdf; } void PrintPreview::print(int nbPages, bool colorType, bool printType, bool resType, int res) { parametres = informations->getOptions(); graphRange = informations->getRange(); printer = new QPrinter(printerInfo); if(resType == CUSTOM_RESOLUTION) printer->setResolution(res); printer->setPaperSize(QPrinter::A4); printer->setFullPage(true); printer->setCopyCount(nbPages); if(colorType == COLOR) printer->setColorMode(QPrinter::Color); else printer->setColorMode(QPrinter::GrayScale); if(viewType == PORTRAIT) printer->setOrientation(QPrinter::Portrait); else printer->setOrientation(QPrinter::Landscape); if(printType == PRINT_FILE) printer->setOutputFileName(PDFname); QRect sheet = printer->paperRect(); graphHeight = sheet.height() * graphHeightCm / 29.7; graphWidth = sheet.width() * graphWidthCm / 21; QPoint graphOrigin; graphOrigin.setX((relativeXposCm + 0.5) * sheet.width() / 21); graphOrigin.setY((relativeYposCm + 0.5) * sheet.height() / 29.7); painter.begin(printer); sheetWidth = sheet.width(); sheetHeight = sheet.height(); painter.translate(graphOrigin); assignGraphSize(); determinerCentreEtUnites(); paint(); painter.end(); delete printer; printer = NULL; } void PrintPreview::setScaleStatus(bool isActive) { hasScale = isActive; repaint(); } void PrintPreview::setxscale(double scale) { xscale = scale; if(informations->isOrthonormal()) yscale = xscale; repaint(); } void PrintPreview::setyscale(double scale) { yscale = scale; repaint(); } void PrintPreview::paintEvent(QPaintEvent *event) { Q_UNUSED(event); parametres = informations->getOptions(); graphRange = informations->getRange(); painter.begin(this); //trace du background drawSheet(); drawGraph(); painter.end(); assignMouseRects(); } void PrintPreview::assignMouseRects() { QPointF point; point = graphRect.topLeft(); point.setX(point.x() - 3); point.setY(point.y() - 3); topLeft.setTopLeft(point); point.setX(point.x() + 6); point.setY(point.y() + 6); topLeft.setBottomRight(point); point = graphRect.topRight(); point.setX(point.x() - 3); point.setY(point.y() - 3); topRight.setTopLeft(point); point.setX(point.x() + 6); point.setY(point.y() + 6); topRight.setBottomRight(point); point = graphRect.bottomRight(); point.setX(point.x() - 3); point.setY(point.y() - 3); bottomRight.setTopLeft(point); point.setX(point.x() + 6); point.setY(point.y() + 6); bottomRight.setBottomRight(point); point = graphRect.bottomLeft(); point.setX(point.x() - 3); point.setY(point.y() - 3); bottomLeft.setTopLeft(point); point.setX(point.x() + 6); point.setY(point.y() + 6); bottomLeft.setBottomRight(point); top.setTopLeft(topLeft.topRight()); top.setBottomRight(topRight.bottomLeft()); bottom.setTopLeft(bottomLeft.topRight()); bottom.setBottomRight(bottomRight.bottomLeft()); left.setTopLeft(topLeft.bottomLeft()); left.setBottomRight(bottomLeft.topRight()); right.setTopLeft(topRight.bottomLeft()); right.setBottomRight(bottomRight.topRight()); } void PrintPreview::determinerCentreEtUnites() { uniteY = graphHeight / (graphRange.Ymax - graphRange.Ymin); uniteX = graphWidth / (graphRange.Xmax - graphRange.Xmin); if(informations->isOrthonormal()) { double rapport = uniteY / uniteX; graphRange.Ymin *= rapport; graphRange.Ymax *= rapport; uniteY = uniteX; xscale = yscale; } if(hasScale) { double newxunit = xscale * graphWidth / graphWidthCm; double newyunit = yscale * graphHeight / graphHeightCm; double rapportx = uniteX / newxunit; double rapporty = uniteY / newyunit; graphRange.Xmax *= rapportx; graphRange.Xmin *= rapportx; graphRange.Ymax *= rapporty; graphRange.Ymin *= rapporty; uniteX = newxunit; uniteY = newyunit; } centre.x = - graphRange.Xmin * uniteX; centre.y = graphRange.Ymax * uniteY; } void PrintPreview::drawSheet() { painter.setBrush(QBrush(Qt::white));; double rapport; if(viewType == PORTRAIT) { rapport = (double)height() / (double)width(); if(rapport < 1.4142) { sheetHeight = height() - 2; sheetWidth = sheetHeight / M_SQRT2; sheetRect.setTopLeft(QPointF((width() - sheetWidth)/2, 0)); } else { sheetWidth = width() - 2; sheetHeight = sheetWidth * M_SQRT2; sheetRect.setTopLeft(QPointF(0, (height() - sheetHeight)/2)); } } else { rapport = (double)width() / (double)height(); if(rapport > 1.4142) { sheetHeight = height() - 2; sheetWidth = sheetHeight * M_SQRT2; sheetRect.setTopLeft(QPointF((width() - sheetWidth)/2, 0)); } else { sheetWidth = width() - 2; sheetHeight = sheetWidth / M_SQRT2; sheetRect.setTopLeft(QPointF(0, (height() - sheetHeight)/2)); } } sheetRect.setSize(QSizeF(sheetWidth, sheetHeight)); graphRect.setHeight(sheetHeight * graphHeightCm / 29.7); graphRect.setWidth(sheetWidth * graphWidthCm / 21); QPointF point; if(viewType == PORTRAIT) { point.setX(sheetRect.topLeft().x() + (relativeXposCm + 0.5) * sheetWidth / 21); point.setY(sheetRect.topLeft().y() + (relativeYposCm + 0.5) * sheetHeight / 29.7); } else { point.setX(sheetRect.topLeft().x() + (relativeXposCm + 0.5) * sheetWidth / 29.7); point.setY(sheetRect.topLeft().y() + (relativeYposCm + 0.5) * sheetHeight / 21); } graphRect.setTopLeft(point); painter.drawRect(sheetRect); } void PrintPreview::drawGraph() { assignGraphSize(); painter.setBrush(Qt::NoBrush); pen.setStyle(Qt::DashLine); pen.setWidth(1); pen.setColor(Qt::black); painter.setPen(pen); painter.drawRect(graphRect); pen.setStyle(Qt::SolidLine); painter.setPen(pen); painter.translate(graphRect.topLeft()); determinerCentreEtUnites(); paint(); } void PrintPreview::setGraphHeight(double H) { graphHeightCm = H; testGraphPosition(); repaint(); } void PrintPreview::setGraphWidth(double W) { graphWidthCm = W; testGraphPosition(); repaint(); } void PrintPreview::setViewType(bool type) { viewType = type; relativeXposCm = relativeYposCm = 0; if(viewType == PORTRAIT) { graphHeightCm = 28.7; graphWidthCm = 20; } else { graphHeightCm = 20; graphWidthCm = 28.7; } emit newGraphSize(graphHeightCm, graphWidthCm); repaint(); } void PrintPreview::assignGraphSize() { if(viewType == PORTRAIT) { graphRect.setWidth(graphWidthCm * sheetWidth / 21); graphRect.setHeight(graphHeightCm * sheetHeight / 29.7); } else { graphRect.setWidth(graphWidthCm * sheetWidth / 29.7); graphRect.setHeight(graphHeightCm * sheetHeight / 21); } graphWidth = graphRect.width()-(leftMargin+rightMargin); graphHeight = graphRect.height()-(topMargin+bottomMargin); } void PrintPreview::mousePressEvent(QMouseEvent *event) { if(topLeft.contains(event->posF())) moveType = TOPLEFT_CORNER; else if(topRight.contains(event->posF())) moveType = TOPRIGHT_CORNER; else if(top.contains(event->posF())) moveType = TOP_SIDE; else if(bottomLeft.contains(event->posF())) moveType = BOTTOMLEFT_CORNER; else if(bottomRight.contains(event->posF())) moveType = BOTTOMRIGHT_CORNER; else if(bottom.contains(event->posF())) moveType = BOTTOM_SIDE; else if(left.contains(event->posF())) moveType = LEFT_SIDE; else if(right.contains(event->posF())) moveType = RIGHT_SIDE; else if(graphRect.contains(event->posF())) moveType = ALL; else moveType = NOTHING; if(moveType != NOTHING) lastMousePos = event->posF(); } void PrintPreview::mouseMoveEvent(QMouseEvent *event) { QRectF rect = sheetRect; rect.setTop(rect.top() - 5); rect.setRight(rect.right() - 5); rect.setLeft(rect.left() - 5); rect.setBottom(rect.bottom() - 5); if(moveType == NOTHING) { if(topLeft.contains(event->posF()) || bottomRight.contains(event->posF())) setCursor(Qt::SizeFDiagCursor); else if(topRight.contains(event->posF()) || bottomLeft.contains(event->posF())) setCursor(Qt::SizeBDiagCursor); else if(top.contains(event->posF()) || bottom.contains(event->posF())) setCursor(Qt::SizeVerCursor); else if(left.contains(event->posF()) || right.contains(event->posF())) setCursor(Qt::SizeHorCursor); else if(graphRect.contains(event->posF())) setCursor(Qt::SizeAllCursor); else setCursor(Qt::ArrowCursor); } else if(rect.contains(event->posF())) { double dx = event->posF().x() - lastMousePos.x(), dy = event->posF().y() - lastMousePos.y(), dxCm, dyCm; if(viewType == PORTRAIT) { dxCm = dx * 21 / sheetWidth; dyCm = dy * 29.7 / sheetHeight; } else { dxCm = dx * 29.7 / sheetWidth; dyCm = dy * 21 / sheetHeight; } switch(moveType) { case TOPLEFT_CORNER: relativeXposCm += dxCm; relativeYposCm += dyCm; graphWidthCm -= dxCm; graphHeightCm -= dyCm; break; case TOPRIGHT_CORNER: relativeYposCm += dyCm; graphWidthCm += dxCm; graphHeightCm -= dyCm; break; case BOTTOMLEFT_CORNER: relativeXposCm += dxCm; graphHeightCm += dyCm; graphWidthCm -= dxCm; break; case BOTTOMRIGHT_CORNER: graphWidthCm += dxCm; graphHeightCm += dyCm; break; case LEFT_SIDE: graphWidthCm -= dxCm; relativeXposCm += dxCm; break; case TOP_SIDE: graphHeightCm -= dyCm; relativeYposCm += dyCm; break; case RIGHT_SIDE: graphWidthCm += dxCm; break; case BOTTOM_SIDE: graphHeightCm += dyCm; break; case ALL: relativeXposCm += dxCm; relativeYposCm += dyCm; break; } testGraphPosition(); repaint(); lastMousePos = event->posF(); } } void PrintPreview::testGraphPosition() { if(relativeXposCm < 0) relativeXposCm = 0; if(relativeYposCm < 0) relativeYposCm = 0; if(viewType == PORTRAIT) { if(graphHeightCm > 28.7) graphHeightCm = 28.7; if(graphHeightCm < 10) graphHeightCm = 10; if(graphWidthCm > 20) graphWidthCm = 20; if(graphWidthCm < 10) graphWidthCm = 10; if(relativeXposCm + graphWidthCm > 20) relativeXposCm = 20 - graphWidthCm; if(relativeYposCm + graphHeightCm > 28.7) relativeYposCm = 28.7 - graphHeightCm; } else { if(graphHeightCm > 20) graphHeightCm = 20; if(graphHeightCm < 10) graphHeightCm = 10; if(graphWidthCm > 28.7) graphWidthCm = 28.7; if(graphWidthCm < 10) graphWidthCm = 10; if(relativeXposCm + graphWidthCm > 28.7) relativeXposCm = 28.7 - graphWidthCm; if(relativeYposCm + graphHeightCm > 20) relativeYposCm = 20 - graphHeightCm; } emit newGraphSize(graphHeightCm, graphWidthCm); } void PrintPreview::mouseReleaseEvent(QMouseEvent *event) { Q_UNUSED(event); setCursor(Qt::ArrowCursor); moveType = NOTHING; } void PrintPreview::wheelEvent(QWheelEvent *event) { Q_UNUSED(event); } zegrapher-2.0.orig/src/functable.cpp0000644000175000017500000001536212105437153017745 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #include "functable.h" static double fipart(double x) { if(x < 0) { return ceil(x); } else { return floor(x); } } FuncTable::FuncTable(Informations *info) : AbstractTable() { informations = info; exprCalc = new ExprCalculator(false, info->getFuncsList()); updateTimer->setInterval(2000); updateTimer->setSingleShot(true); disableCellEdit = false; QColor color; color.setNamedColor(VALID_COLOR); validPalette.setColor(QPalette::Base, color); color.setNamedColor(INVALID_COLOR); invalidPalette.setColor(QPalette::Base, color); connect(informations, SIGNAL(updateOccured()), updateTimer, SLOT(start())); connect(updateTimer, SIGNAL(timeout()), this, SLOT(updateTable())); connect(precision, SIGNAL(valueChanged(int)), this, SLOT(precisionEdited())); connect(model, SIGNAL(itemChanged(QStandardItem*)), this, SLOT(cellEdited(QStandardItem*))); } void FuncTable::setTableParameters(ValuesTableParameters par) { parameters = par; func = informations->getFuncsList()[parameters.id]; title->setText(tr("Fonction: ") + parameters.name); if(func->isFuncParametric()) { k = func->getParametricRange().start; k_parameter_widget->show(); k_value->setText(QString::number(k, 'g', precision->value())); connect(k_value, SIGNAL(returnPressed()), this, SLOT(kValueEdited())); } updateTable(); } void FuncTable::precisionEdited() { disableCellEdit = true; for(int i = 0; i < xValues.size(); i++) { if(!isnan(xValues[i])) { model->item(i+1, 0)->setText(QString::number(xValues[i], 'g', precision->value())); model->item(i+1, 1)->setText(QString::number(yValues[i], 'g', precision->value())); } } disableCellEdit = false; } void FuncTable::kValueEdited() { bool ok = true; double temp = exprCalc->calculateExpression(k_value->text(), ok); if(!ok) k_value->setPalette(invalidPalette); else k_value->setPalette(validPalette); k = temp; updateTable(); } void FuncTable::updateTable() { model->clear(); xValues.clear(); yValues.clear(); if(!func->isFuncValid()) return; if(func->isFuncParametric() && k_parameter_widget->isHidden()) { k = func->getParametricRange().start; k_parameter_widget->show(); k_value->setText(QString::number(k, 'g', precision->value())); connect(k_value, SIGNAL(returnPressed()), this, SLOT(kValueEdited())); } if(parameters.entryType == FROM_CURRENT_GRAPHIC || parameters.entryType == PREDEFINED_ENTRY) fillFromRange(); else emptyCellsFill(); tableView->setModel(model); for(short i = 0; i < model->columnCount(); i++) tableView->setColumnWidth(i, 140); } void FuncTable::fillFromRange() { if(parameters.entryType == FROM_CURRENT_GRAPHIC) { GraphRange range = informations->getRange(); parameters.range.start = fipart(range.Xmin / range.Xscale) * range.Xscale; parameters.range.step = range.Xscale; parameters.range.end = range.Xmax; } add_x_values(); add_y_values(); tableView->setModel(model); } void FuncTable::cellEdited(QStandardItem *item) { if(item->text().isEmpty() || item->column() != 0 || disableCellEdit) return; bool ok = true; double x = exprCalc->calculateExpression(item->text(), ok), y; if(!ok) { QMessageBox::warning(this, tr("Erreur"), tr("Erreur de syntaxe dans cette entrée")); return; } y = func->getFuncValue(x, k); xValues[item->row()-1] = x; // row-1 because there is a "x" cell on the first cell of the first column yValues[item->row()-1] = y; model->item(item->row(), 1)->setText(QString::number(y, 'g', precision->value())); } void FuncTable::add_x_values() { QList liste; liste.reserve(100); QStandardItem *item2 = new QStandardItem("x"); item2->setFont(boldFont); item2->setEditable(false); liste.append(item2); double x = parameters.range.start; while(x <= parameters.range.end) { QStandardItem *item = new QStandardItem(QString::number(x, 'g', precision->value())); liste.append(item); xValues << x; x += parameters.range.step; } model->appendColumn(liste); } void FuncTable::add_y_values() { QList liste; double x = parameters.range.start, y; QStandardItem *funcNameCell = new QStandardItem(parameters.name + "(x)"); funcNameCell->setFont(boldFont); funcNameCell->setEditable(false); liste.append(funcNameCell); while(x <= parameters.range.end) { y = func->getFuncValue(x, k); yValues << y; QStandardItem *item = new QStandardItem(); item->setEditable(false); item->setText(QString::number(y, 'g', precision->value())); liste.append(item); x += parameters.range.step; } model->appendColumn(liste); } void FuncTable::emptyCellsFill() { QListliste; liste.reserve(100); QStandardItem *item2 = new QStandardItem("x"); item2->setFont(boldFont); item2->setEditable(false); liste.append(item2); for(int i = 0 ; i < parameters.emptyCellsCount; i++) { QStandardItem *item = new QStandardItem(); liste << item; xValues << NAN; yValues << NAN; } model->appendColumn(liste); liste.clear(); QStandardItem *item4 = new QStandardItem(parameters.name + "(x)"); item4->setFont(boldFont); item4->setEditable(false); liste.append(item4); for(int i = 0 ; i < parameters.emptyCellsCount; i++) { QStandardItem *item = new QStandardItem(); item->setEditable(false); liste << item; } model->appendColumn(liste); } zegrapher-2.0.orig/src/graphdraw.cpp0000644000175000017500000002165012105437153017756 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #include "graphdraw.h" #include using namespace std; static double fipart(double x) { if(x < 0) { return ceil(x); } else { return floor(x); } } GraphDraw::GraphDraw(Informations *info) { informations = info; parametres = info->getOptions(); graphRange = info->getRange(); pen.setCapStyle(Qt::RoundCap); straightLines = info->getStraightLinesList(); tangents = info->getTangentsList(); parEqs = info->getParEqsList(); funcs = info->getFuncsList(); seqs = info->getSeqsList(); moving = false; tangentDrawException = -1; funcValuesSaver = new FuncValuesSaver(info); funcVals = funcValuesSaver->getFuncValsListPointer(); } void GraphDraw::drawOneFunction(int i, int width, int curveNum) { if(!funcs[i]->getDrawState()) return; painter.setRenderHint(QPainter::Antialiasing, parametres.lissage && !moving); short drawsNum = funcVals->at(i).size(), drawStart = 0; if(curveNum != -1) { drawStart = curveNum; drawsNum = curveNum + 1; } double posX, delta1, delta2, delta3, y1, y2, y3, y4;; bool pointDepasse= false; int end = funcVals->at(i)[0].size(); ColorSaver* colorSaver = funcs[i]->getColorSaver(); pen.setWidth(width); for(short draw = drawStart ; draw < drawsNum; draw++) { posX = funcValuesSaver->getStartAbscissaPixel(); polygon.clear(); pen.setColor(colorSaver->getColor(draw)); painter.setPen(pen); for(int pos = 0; pos < end; pos++) { y1 = funcVals->at(i)[draw][pos]; if(!isnan(y1) && !isinf(y1)) { if(y1 < graphRange.Ymin || y1 > graphRange.Ymax) { if(!pointDepasse) { polygon << QPointF(posX, -y1*uniteY); painter.drawPolyline(polygon); polygon.clear(); pointDepasse = true; } } else { if(pointDepasse) { polygon << QPointF(posX - parametres.distanceEntrePoints, - funcVals->at(i)[draw][pos-1]*uniteY); } polygon << QPointF(posX, -y1*uniteY); pointDepasse = false; } if(0 < pos && pos < end-2) { y1 = funcVals->at(i)[draw][pos-1]; y2 = funcVals->at(i)[draw][pos]; y3 = funcVals->at(i)[draw][pos+1]; y4 = funcVals->at(i)[draw][pos+2]; delta1 = fabs(y2 - y1); delta2 = fabs(y3 - y2); delta3 = fabs(y4 - y3); if(delta2 != 0 && delta2 > 2*delta1 && delta2 > 2*delta3) { painter.drawPolyline(polygon); polygon.clear(); } } } else { painter.drawPolyline(polygon); polygon.clear(); } posX += parametres.distanceEntrePoints; } painter.drawPolyline(polygon); pointDepasse = false; } } void GraphDraw::drawFunctions() { for(int i = 0 ; i < funcs.size(); i++) drawOneFunction(i, parametres.epaisseurDesCourbes); } void GraphDraw::drawOneSequence(int i, int width) { if(graphRange.Xmax <= seqs[0]->get_nMin() || fipart(graphRange.Xmax) <= graphRange.Xmin || !seqs[i]->getDrawState()) return; painter.setRenderHint(QPainter::Antialiasing, parametres.lissage && !moving); pen.setWidth(width); QPointF point; double posX; if(graphRange.Xmin > seqs[0]->get_nMin()) posX = fipart(graphRange.Xmin); else posX = seqs[0]->get_nMin(); double step = 1; if(uniteX < 1) step = 5 * fipart(1/uniteX); double result; bool ok = true; int end = seqs[i]->getDrawsNum(); ColorSaver *colorSaver; seqs[i]->getSeqValue(fipart(graphRange.Xmax), ok); colorSaver = seqs[i]->getColorSaver(); for(int k = 0; k < end; k++) { pen.setColor(colorSaver->getColor(k)); painter.setPen(pen); for(double pos = posX; pos < graphRange.Xmax; pos += step) { result = seqs[i]->getSeqValue(pos, ok, k); if(!ok) return; point.setX(pos * uniteX); point.setY(- result * uniteY); painter.drawPoint(point); } } } void GraphDraw::drawSequences() { for(int i = 0 ; i < seqs.size() ; i++) drawOneSequence(i, parametres.epaisseurDesCourbes + 3); } void GraphDraw::drawOneTangent(int i) { if(!tangents->at(i)->isTangentValid()) return; painter.setRenderHint(QPainter::Antialiasing, parametres.lissage && !moving); tangents->at(i)->calculateTangentPoints(uniteX, uniteY); TangentPoints tangentPoints; pen.setColor(tangents->at(i)->getColor()); pen.setWidth(parametres.epaisseurDesCourbes); painter.setPen(pen); tangentPoints = tangents->at(i)->getCaracteristicPoints(); painter.drawLine(QPointF(tangentPoints.left.x * uniteX, - tangentPoints.left.y * uniteY), QPointF(tangentPoints.right.x * uniteX, - tangentPoints.right.y * uniteY)); pen.setWidth(parametres.epaisseurDesCourbes + 3); painter.setPen(pen); painter.drawPoint(QPointF(tangentPoints.left.x * uniteX, - tangentPoints.left.y * uniteY)); painter.drawPoint(QPointF(tangentPoints.center.x * uniteX, -tangentPoints.center.y * uniteY)); painter.drawPoint(QPointF(tangentPoints.right.x * uniteX, - tangentPoints.right.y * uniteY)); } void GraphDraw::drawTangents() { for(int i = 0 ; i < tangents->size(); i++) { if(i != tangentDrawException) drawOneTangent(i); } } void GraphDraw::drawStraightLines() { pen.setWidth(parametres.epaisseurDesCourbes); QPointF pt1, pt2; painter.setRenderHint(QPainter::Antialiasing, parametres.lissage && !moving); for(int i = 0 ; i < straightLines->size(); i++) { if(!straightLines->at(i)->isValid()) continue; pen.setColor(straightLines->at(i)->getColor()); painter.setPen(pen); if(straightLines->at(i)->isVertical()) { pt1.setX(straightLines->at(i)->getVerticalPos() * uniteX); pt1.setY(-graphRange.Ymax * uniteY); pt2.setX(straightLines->at(i)->getVerticalPos() * uniteX); pt2.setY(-graphRange.Ymin * uniteY); } else { pt1.setX(graphRange.Xmin * uniteX); pt1.setY(- straightLines->at(i)->getOrdinate(graphRange.Xmin) * uniteY); pt2.setX(graphRange.Xmax * uniteX); pt2.setY(- straightLines->at(i)->getOrdinate(graphRange.Xmax) * uniteY); } painter.drawLine(pt1, pt2); } } void GraphDraw::drawStaticParEq() { QList< QList > *list; QPolygonF polygon; Point point; ColorSaver *colorSaver; pen.setWidth(parametres.epaisseurDesCourbes); painter.setRenderHint(QPainter::Antialiasing, parametres.lissage && !moving); painter.setPen(pen); for(int i = 0; i < parEqs->size(); i++) { if(!parEqs->at(i)->getDrawState() || parEqs->at(i)->isAnimated()) continue; list = parEqs->at(i)->getPointsList(); colorSaver = parEqs->at(i)->getColorSaver(); for(int curve = 0; curve < list->size(); curve++) { pen.setColor(colorSaver->getColor(curve)); painter.setPen(pen); polygon.clear(); for(int pos = 0 ; pos < list->at(curve).size(); pos ++) { point = list->at(curve).at(pos); polygon << QPointF(point.x * uniteX, - point.y * uniteY); } painter.drawPolyline(polygon); } } } GraphDraw::~GraphDraw() { delete funcValuesSaver; } zegrapher-2.0.orig/src/ressources.rc0000644000175000017500000000005711777243072020025 0ustar georgeskgeorgeskIDI_ICON1 ICON DISCARDABLE "zegrapherIcon.ico" zegrapher-2.0.orig/src/informations.cpp0000644000175000017500000000635212105437153020511 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #include "informations.h" Informations::Informations() { range.Xmax = range.Ymax = 10; range.Xmin = range.Ymin = -10; range.Xscale = range.Yscale = 1; gridState = orthonormal = updatingLock = false; parametres.couleurDuFond = QColor(Qt::white); parametres.couleurDesAxes = QColor(Qt::black); parametres.couleurQuadrillage = QColor(Qt::gray); parametres.epaisseurDesCourbes = 1; parametres.distanceEntrePoints = 2.625; parametres.numSize = 11; parametres.lissage = true; } void Informations::setParEqsListPointer(QList *list) { parEqWidgets = list; } QList* Informations::getParEqsList() { return parEqWidgets; } void Informations::emitAnimationUpdate() { emit animationUpdate(); } void Informations::setTangentsListPointer(QList *list) { tangents = list; } QList* Informations::getTangentsList() { return tangents; } void Informations::setStraightLinesListPointer(QList *list) { lines = list; } QList* Informations::getStraightLinesList() { return lines; } void Informations::setSequencesList(QList list) { sequences = list; } QList Informations::getSeqsList() { return sequences; } void Informations::setFunctionsList(QList list) { functions = list; } QList Informations::getFuncsList() { return functions; } void Informations::setRange(const GraphRange &newFenetre) { range = newFenetre; emit updateOccured(); } void Informations::setGridState(bool etat) { gridState = etat; emit updateOccured(); } void Informations::setOrthonormal(bool state) { orthonormal = state; emit newOrthonormalityState(state); emit updateOccured(); } void Informations::setOptions(Options opt) { parametres = opt; emit updateOccured(); } void Informations::emitUpdateSignal() { emit updateOccured(); } void Informations::emitDrawStateUpdate() { emit drawStateUpdateOccured(); } GraphRange Informations::getRange() { return range; } bool Informations::getGridState() { return gridState; } bool Informations::isOrthonormal() { return orthonormal; } Options Informations::getOptions() { return parametres; } zegrapher-2.0.orig/src/seqwidget.h0000644000175000017500000000422212105437153017434 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #ifndef SEQWIDGET_H #define SEQWIDGET_H #include "Structures.h" #include "abstractfuncwidget.h" #include "seqcalculator.h" #include "colorsaver.h" #include "funcwidget.h" class SeqWidget : public AbstractFuncWidget { Q_OBJECT public: explicit SeqWidget(QChar name, int id, QColor color); void firstValidation(); void secondValidation(); void thirdValidation(); void setFuncsList(QList list); void setFuncWidgets(QList widgets); void setSeqWidgets(QList widgets); bool isSeqParametric(); SeqCalculator* getCalculator(); public slots: void checkCalledFuncsSeqsParametric(); protected slots: void checkExprLineEdit(); void checkFirstValsLineEdit(); signals: void drawStateChanged(); void newParametricState(); protected: void addSeqWidgets(); void updateParametricState(); QList funcWidgets; QList seqWidgets; SeqCalculator *calculator; QLineEdit *firstValsLine; ColorSaver colorSaver; QChar seqName; Range defaultRange; bool areFirstValsParametric, isExprParametric, areCalledFuncsSeqsParametric; int seqNum; }; #endif // SEQWIDGET_H zegrapher-2.0.orig/src/ressources.qrc0000644000175000017500000000136112105255213020167 0ustar georgeskgeorgesk icons/bornes.png icons/enregistrerImage.png icons/logoLogiciel.png icons/print.png icons/quadrillage.png icons/quitter.png icons/tableauDeValeurs.png icons/zoom-in-icon.png icons/zoom-out-icon.png icons/fonctions.png icons/remove.png icons/keyboard.png icons/loop.png icons/pause.png icons/play.png icons/go&return.png ZeGrapher_en.qm zegrapher-2.0.orig/src/apropos.ui0000644000175000017500000001062412105267444017320 0ustar georgeskgeorgesk apropos 0 0 492 193 À Propos... 10 30 121 111 150 0 411 161 0 0 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Cantarell'; font-size:11pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:14pt; font-weight:600;">ZeGrapher 2.0</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:12pt;">Basé sur Qt 4.8.4</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:12pt;">Distribué sous licence GPL version 3</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"><br /></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:12pt;">Site officiel: </span><a href="http://zegrapher.com"><span style=" font-family:'Sans'; font-size:12pt; text-decoration: underline; color:#0000ff;">zegrapher.com</span></a></p></body></html> false true true 270 160 98 27 98 27 100 30 Fermer false pushButton clicked() apropos close() 482 142 515 89 zegrapher-2.0.orig/src/valuestable.h0000644000175000017500000000325012105437153017747 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #ifndef VALUESTABLE_H #define VALUESTABLE_H #include "Structures.h" #include "informations.h" #include "valuestableconf.h" #include "seqtable.h" #include "functable.h" #include "pareqtable.h" class ValuesTable : public QWidget { Q_OBJECT public: explicit ValuesTable(Informations *info, QWidget *parent = 0); ~ValuesTable(); signals: void remove(ValuesTable *table); protected slots: void apply(ValuesTableParameters parameters); void emitRemoveSignal(); void previous(); protected: ValuesTableConf *confWidget; Informations *infoClass; SeqTable *seqTable; FuncTable *funcTable; ParEqTable *parEqTable; QVBoxLayout *containerLayout; }; #endif // VALUESTABLE_H zegrapher-2.0.orig/src/fenetrebornes.cpp0000644000175000017500000001231612105437153020637 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #include "fenetrebornes.h" #include "ui_fenetrebornes.h" FenetreBornes::FenetreBornes(Informations *info) { informations = info; connect(info, SIGNAL(updateOccured()), this, SLOT(updateWidgets())); calculator = new ExprCalculator(false, informations->getFuncsList()); ui = new Ui::FenetreBornes; ui->setupUi(this); messageBox = new QMessageBox(this); messageBox->setWindowTitle(tr("Erreur")); messageBox->setIcon(QMessageBox::Warning); connect(ui->Xmax, SIGNAL(returnPressed()), this, SLOT(appliquer())); connect(ui->Xmin, SIGNAL(returnPressed()), this, SLOT(appliquer())); connect(ui->Xpas, SIGNAL(returnPressed()), this, SLOT(appliquer())); connect(ui->Ymax, SIGNAL(returnPressed()), this, SLOT(appliquer())); connect(ui->Ymin, SIGNAL(returnPressed()), this, SLOT(appliquer())); connect(ui->Ypas, SIGNAL(returnPressed()), this, SLOT(appliquer())); connect(ui->standardView, SIGNAL(released()), this, SLOT(standardView())); connect(ui->orthonormal, SIGNAL(toggled(bool)), this, SLOT(orthonormal(bool))); connect(ui->boutonAppliquer, SIGNAL(released()), this, SLOT(appliquer())); } void FenetreBornes::orthonormal(bool state) { ui->Ymax->setEnabled(!state); ui->Ymin->setEnabled(!state); ui->Ypas->setEnabled(!state); } void FenetreBornes::standardView() { ui->Xmax->setText("10"); ui->Xmin->setText("-10"); ui->Xpas->setText("1"); ui->Ymax->setText("10"); ui->Ymin->setText("-10"); ui->Ypas->setText("1"); } void FenetreBornes::appliquer() { GraphRange range; bool ok = false; range.Xmax = calculator->calculateExpression(ui->Xmax->text(), ok); if(ok == false) { messageBox->setText(tr("Le nombre écrit en Xmax est faux")); messageBox->exec(); return; } range.Xmin = calculator->calculateExpression(ui->Xmin->text(), ok); if(ok == false) { messageBox->setText(tr("Le nombre écrit en Xmin est faux")); messageBox->exec(); return; } range.Ymax = calculator->calculateExpression(ui->Ymax->text(),ok); if(ok == false) { messageBox->setText(tr("Le nombre écrit en Ymax est faux")); messageBox->exec(); return; } range.Ymin = calculator->calculateExpression(ui->Ymin->text(), ok); if(ok == false) { messageBox->setText(tr("Le nombre écrit en Ymin est faux")); messageBox->exec(); return; } range.Xscale = calculator->calculateExpression(ui->Xpas->text(), ok); if(ok == false || range.Xscale <= 0) { messageBox->setText(tr("Le nombre écrit dans le pas des X est faux")); messageBox->exec(); return; } if(ui->orthonormal->isChecked()) ui->Ypas->setText(ui->Xpas->text()); range.Yscale = calculator->calculateExpression(ui->Ypas->text(), ok); if(ok == false || range.Yscale <= 0) { messageBox->setText(tr("Le nombre écrit dans le pas des Y est faux")); messageBox->exec(); return; } if(range.Xmin >= range.Xmax) { messageBox->setText(tr("Xmin doit être plus petit que Xmax")); messageBox->exec(); return; } if(range.Ymin >= range.Ymax) { messageBox->setText(tr("Ymin doit être plus petit que Ymax")); messageBox->exec(); return; } if(range.Ymax - range.Ymin < MIN_RANGE || range.Xmax - range.Xmin < MIN_RANGE) { messageBox->setText(tr("Les bornes sont trop petites pour être appliquées au graphique.")); messageBox->exec(); return; } informations->setOrthonormal(ui->orthonormal->isChecked()); informations->setRange(range); } void FenetreBornes::updateWidgets() { GraphRange fenetre = informations->getRange(); ui->Xmax->setText(QString::number(fenetre.Xmax)); ui->Xmin->setText(QString::number(fenetre.Xmin)); ui->Xpas->setText(QString::number(fenetre.Xscale)); ui->Ymax->setText(QString::number(fenetre.Ymax)); ui->Ymin->setText(QString::number(fenetre.Ymin)); ui->Ypas->setText(QString::number(fenetre.Yscale)); ui->orthonormal->setChecked(informations->isOrthonormal()); orthonormal(informations->isOrthonormal()); } FenetreBornes::~FenetreBornes() { delete ui; delete calculator; } zegrapher-2.0.orig/src/pareqtable.cpp0000644000175000017500000001627212105437153020123 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #include "pareqtable.h" ParEqTable::ParEqTable(Informations *info) : AbstractTable() { informations = info; exprCalc = new ExprCalculator(false, info->getFuncsList()); k = 0; updateTimer->setInterval(2000); updateTimer->setSingleShot(true); QColor color; color.setNamedColor(VALID_COLOR); validPalette.setColor(QPalette::Base, color); color.setNamedColor(INVALID_COLOR); invalidPalette.setColor(QPalette::Base, color); connect(informations, SIGNAL(updateOccured()), updateTimer, SLOT(start())); connect(updateTimer, SIGNAL(timeout()), this, SLOT(updateTable())); connect(precision, SIGNAL(valueChanged(int)), this, SLOT(precisionEdited())); connect(model, SIGNAL(itemChanged(QStandardItem*)), this, SLOT(cellEdited(QStandardItem*))); } void ParEqTable::setTableParameters(ValuesTableParameters par) { parameters = par; parEq = informations->getParEqsList()->at(parameters.id); connect(parEq, SIGNAL(destroyed()), this, SIGNAL(previous())); title->setText(tr("Equation paramètrique: ") + parameters.name); if(parEq->isParEqParametric()) { k = parEq->getKRange().start; k_parameter_widget->show(); k_value->setText(QString::number(k, 'g', precision->value())); connect(k_value, SIGNAL(returnPressed()), this, SLOT(kValueEdited())); } updateTable(); } void ParEqTable::precisionEdited() { disableCellEdit = true; for(int i = 0; i < parEqValues.tValues.size(); i++) { if(!isnan(parEqValues.tValues[i])) { model->item(i+1, 0)->setText(QString::number(parEqValues.tValues[i], 'g', precision->value())); model->item(i+1, 1)->setText(QString::number(parEqValues.xValues[i], 'g', precision->value())); model->item(i+1, 2)->setText(QString::number(parEqValues.yValues[i], 'g', precision->value())); } } disableCellEdit = false; } void ParEqTable::kValueEdited() { bool ok = true; double temp = exprCalc->calculateExpression(k_value->text(), ok); if(!ok) k_value->setPalette(invalidPalette); else k_value->setPalette(validPalette); k = temp; updateTable(); } void ParEqTable::updateTable() { model->clear(); parEqValues.tValues.clear(); parEqValues.xValues.clear(); parEqValues.yValues.clear(); if(!parEq->isValid()) return; if(parEq->isParEqParametric() && k_parameter_widget->isHidden()) { k = parEq->getKRange().start; k_parameter_widget->show(); k_value->setText(QString::number(k, 'g', precision->value())); connect(k_value, SIGNAL(returnPressed()), this, SLOT(kValueEdited())); } if(parameters.entryType == FROM_CURRENT_GRAPHIC || parameters.entryType == PREDEFINED_ENTRY) fillFromRange(); else emptyCellsFill(); tableView->setModel(model); for(short i = 0; i < model->columnCount(); i++) tableView->setColumnWidth(i, 140); } void ParEqTable::fillFromRange() { if(parameters.entryType == FROM_CURRENT_GRAPHIC) parameters.range = parEq->getTRange(k); fillWithValues(); tableView->setModel(model); } void ParEqTable::cellEdited(QStandardItem *item) { if(item->text().isEmpty() || item->column() != 0 || disableCellEdit) return; bool ok = true; double t = exprCalc->calculateExpression(item->text(), ok); if(!ok) { QMessageBox::warning(this, tr("Erreur"), tr("Erreur de syntaxe dans cette entrée")); return; } Point point = parEq->getPoint(t, k); parEqValues.tValues[item->row()-1] = t; // row-1 because there is a "x" cell on the first cell of the first column parEqValues.xValues[item->row()-1] = point.x; parEqValues.yValues[item->row()-1] = point.y; model->item(item->row(), 1)->setText(QString::number(point.x, 'g', precision->value())); model->item(item->row(), 2)->setText(QString::number(point.y, 'g', precision->value())); } void ParEqTable::fillWithValues() { parEqValues = parEq->getParEqValues(parameters.range, k); QList xlist, ylist, tlist; QStandardItem *item1 = new QStandardItem("t"); item1->setFont(boldFont); item1->setEditable(false); tlist.append(item1); QStandardItem *item2 = new QStandardItem("x"); item2->setFont(boldFont); item2->setEditable(false); xlist.append(item2); QStandardItem *item3 = new QStandardItem("y"); item3->setFont(boldFont); item3->setEditable(false); ylist.append(item3); for(int i = 0 ; i < parEqValues.tValues.size(); i++) { QStandardItem *t = new QStandardItem(); t->setEditable(true); t->setText(QString::number(parEqValues.tValues[i], 'g', precision->value())); tlist.append(t); QStandardItem *x = new QStandardItem(); x->setEditable(false); x->setText(QString::number(parEqValues.xValues[i], 'g', precision->value())); xlist.append(x); QStandardItem *y = new QStandardItem(); y->setEditable(false); y->setText(QString::number(parEqValues.yValues[i], 'g', precision->value())); ylist.append(y); } model->appendColumn(tlist); model->appendColumn(xlist); model->appendColumn(ylist); } void ParEqTable::emptyCellsFill() { QList xlist, ylist, tlist; QStandardItem *item1 = new QStandardItem("t"); item1->setFont(boldFont); item1->setEditable(false); tlist.append(item1); QStandardItem *item2 = new QStandardItem("x"); item2->setFont(boldFont); item2->setEditable(false); xlist.append(item2); QStandardItem *item3 = new QStandardItem("y"); item2->setFont(boldFont); item2->setEditable(false); ylist.append(item3); for(int i = 0 ; i < parEqValues.tValues.size(); i++) { QStandardItem *t = new QStandardItem(); t->setEditable(true); tlist.append(t); parEqValues.tValues << NAN; QStandardItem *x = new QStandardItem(); x->setEditable(false); xlist.append(x); parEqValues.xValues << NAN; QStandardItem *y = new QStandardItem(); y->setEditable(false); ylist.append(y); parEqValues.yValues << NAN; } model->appendColumn(tlist); model->appendColumn(xlist); model->appendColumn(ylist); } zegrapher-2.0.orig/src/valuestableconf.h0000644000175000017500000000357112105437153020623 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #ifndef VALUESTABLECONF_H #define VALUESTABLECONF_H #include "Structures.h" #include "informations.h" #include "exprcalculator.h" class ValuesTableConf : public QWidget { Q_OBJECT public: explicit ValuesTableConf(Informations *info, QWidget *parent = 0); ~ValuesTableConf(); signals: void next(ValuesTableParameters parameters); protected slots: void updateNameCombo(); void apply(); protected: bool verifySeqInfo(double start, double step); Informations *infoClass; QStringList functions, sequences; QComboBox *nameCombo, *typeCombo; QRadioButton *fromCurrentGraphic, *manualEntry, *predefined; QSpinBox *emptyCellsNum, *cellsNum; QLineEdit *startValue, *stepValue; ExprCalculator *exprCalc; QList *parEqs; QList funcs; QList seqs; QList typesNameMap; }; #endif // VALUESTABLECONF_H zegrapher-2.0.orig/src/pareqwidget.cpp0000644000175000017500000005141612105437153020316 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #include "pareqwidget.h" ParEqWidget::ParEqWidget(int num, QList list) : treeCreator(PARAMETRIC_EQ) { calculator = new ExprCalculator(true, list); index = num; funcCalcs = list; createWidgets(); xTree = yTree = NULL; isParametric = valid = is_t_range_parametric = false; playState = false; blockAnimation = false; increment = 1; current_pos = 1; current_t = current_k = 0; QColor color; color.setNamedColor(VALID_COLOR); validPalette.setColor(QPalette::Base, color); color.setNamedColor(INVALID_COLOR); invalidPalette.setColor(QPalette::Base, color); connect(xLine, SIGNAL(textChanged(QString)), this, SLOT(checkExpr())); connect(yLine, SIGNAL(textChanged(QString)), this, SLOT(checkExpr())); } void ParEqWidget::createWidgets() { principalLayout = new QVBoxLayout(); principalLayout->setSpacing(3); principalLayout->setMargin(5); addExprWidgets(); addTConfWidgets(); addKConfWidgets(); addAnimationControllWidgets(); QFrame *frame = new QFrame(); frame->setFrameShape(QFrame::HLine); frame->setFrameShadow(QFrame::Sunken); principalLayout->addWidget(frame); setLayout(principalLayout); } bool ParEqWidget::isParEqParametric() { return isParametric; } void ParEqWidget::recalculatePointsList() { if(valid) calculatePointsList(); } static double fipart(double x) { if(x < 0) { return ceil(x); } else { return floor(x); } } void ParEqWidget::setRatio(double r) { ratio = r; if(tWidget->isAnimateChecked() && valid) { if(2*fipart(tRange.step * ratio) > fipart(tRange.end - tRange.start)) blockAnimation = true; else { blockAnimation = false; calculatePointsList(); current_tPos = (current_t - tRange.start) / (tRange.step * ratio); current_t = tRange.start + (double)current_tPos * tRange.step * ratio; updateAnimationSlider(); } } else if(kWidget->isAnimateChecked() && valid) { if(2*fipart(kRange.step * ratio) > fipart(kRange.end - kRange.start)) blockAnimation = true; else { blockAnimation = false; current_kPos = fipart((current_k - kRange.start) / (kRange.step * ratio)); current_k = kRange.step + (double)current_kPos * kRange.step * ratio; curvesNum_current = fipart((kRange.end - kRange.start) / (kRange.step * ratio)) + 1; colorSaver.setCurvesNum(curvesNum_current); updateAnimationSlider(); } } } void ParEqWidget::changeID(int newID) { index = newID; parEqNameLabel = new QLabel("(P" + QString::number(index + 1) + ")"); } void ParEqWidget::addExprWidgets() { QHBoxLayout *layout1 = new QHBoxLayout(); QVBoxLayout *vLayout = new QVBoxLayout; parEqNameLabel = new QLabel("(P" + QString::number(index + 1) + ")"); parEqNameLabel->setAlignment(Qt::AlignHCenter | Qt::AlignVCenter); drawCheckBox = new QCheckBox; drawCheckBox->setChecked(true); drawCheckBox->setMinimumSize(20,20); connect(drawCheckBox, SIGNAL(toggled(bool)), this, SIGNAL(updateRequest())); vLayout->addWidget(parEqNameLabel); vLayout->addWidget(drawCheckBox); layout1->addLayout(vLayout); QFrame *frame = new QFrame(); frame->setFrameShape(QFrame::VLine); layout1->addWidget(frame); QVBoxLayout *eqLayout = new QVBoxLayout(); eqLayout->setSpacing(3); QHBoxLayout *xLayout = new QHBoxLayout(); QLabel *xLabel = new QLabel("x(t) ="); xLine = new QLineEdit(); xLine->setMaximumHeight(25); connect(xLine, SIGNAL(returnPressed()), this, SIGNAL(returnPressed())); xLayout->addWidget(xLabel); xLayout->addWidget(xLine); QHBoxLayout *yLayout = new QHBoxLayout(); QLabel *yLabel = new QLabel("y(t) ="); yLine = new QLineEdit(); yLine->setMaximumHeight(25); connect(yLine, SIGNAL(returnPressed()), this, SIGNAL(returnPressed())); yLayout->addWidget(yLabel); yLayout->addWidget(yLine); eqLayout->addLayout(xLayout); eqLayout->addLayout(yLayout); layout1->addLayout(eqLayout); QVBoxLayout *buttonsLayout = new QVBoxLayout(); QHBoxLayout *colorButtonsLayout = new QHBoxLayout; colorButtonsLayout->setMargin(5); colorButtonsLayout->setSpacing(3); QColorButton *firstColorButton = new QColorButton(); lastColorButton = new QColorButton(); connect(firstColorButton, SIGNAL(colorChanged(QColor)), &colorSaver, SLOT(setFristColor(QColor))); connect(lastColorButton, SIGNAL(colorChanged(QColor)), &colorSaver, SLOT(setLastColor(QColor))); connect(&colorSaver, SIGNAL(colorsChanged()), this, SIGNAL(updateRequest())); colorButtonsLayout->addWidget(firstColorButton); colorButtonsLayout->addWidget(lastColorButton); lastColorButton->hide(); QPushButton *removeButton = new QPushButton; removeButton->setFixedSize(25,25); removeButton->setFlat(true); removeButton->setIconSize(QSize(25,25)); removeButton->setIcon(QIcon(":/icons/remove.png")); connect(removeButton, SIGNAL(released()), this, SLOT(emitRemoveSignal())); buttonsLayout->addLayout(colorButtonsLayout); buttonsLayout->addWidget(removeButton); layout1->addLayout(buttonsLayout); principalLayout->addLayout(layout1); } void ParEqWidget::addTConfWidgets() { tWidget = new ParConfWidget('t', true, true); tWidget->setFuncsList(funcCalcs); connect(tWidget, SIGNAL(k_typed(bool)), this, SLOT(set_tRange_parametric(bool))); connect(tWidget, SIGNAL(animateToggled(bool)), this, SLOT(animateTtoggled(bool))); connect(tWidget, SIGNAL(animateToggled(bool)), this, SIGNAL(updateRequest())); connect(tWidget, SIGNAL(animateToggled(bool)), this, SLOT(recalculatePointsList())); connect(tWidget, SIGNAL(returnPressed()), this, SIGNAL(returnPressed())); principalLayout->addSpacing(15); principalLayout->addWidget(tWidget); } void ParEqWidget::set_tRange_parametric(bool parametric) { is_t_range_parametric = parametric; } Range ParEqWidget::getKRange() { return kRange; } Range ParEqWidget::getTRange(double k) { return tWidget->getRange(k); } ParEqValues ParEqWidget::getParEqValues(Range t_range, double k) { ParEqValues vals; int end = fipart((t_range.end - t_range.start)/t_range.step) + 1; double t = t_range.start; calculator->setK(k); for(int i = 0 ; i < end ; i++) { vals.tValues << t; vals.xValues << calculator->calculateFromTree(xTree, t); vals.yValues << calculator->calculateFromTree(yTree, t); t += t_range.step; } return vals; } Point ParEqWidget::getPoint(double t, double k) { Point pt; calculator->setK(k); pt.x = calculator->calculateFromTree(xTree, t); pt.y = calculator->calculateFromTree(yTree, t); return pt; } void ParEqWidget::addKConfWidgets() { kWidget = new ParConfWidget('k', true); kWidget->setFuncsList(funcCalcs); connect(kWidget, SIGNAL(animateToggled(bool)), this, SLOT(animateKtoggled(bool))); connect(kWidget, SIGNAL(animateToggled(bool)), this, SIGNAL(updateRequest())); connect(kWidget, SIGNAL(animateToggled(bool)), this, SLOT(recalculatePointsList())); connect(kWidget, SIGNAL(returnPressed()), this, SIGNAL(returnPressed())); principalLayout->addWidget(kWidget); principalLayout->addSpacing(15); kWidget->hide(); } void ParEqWidget::addAnimationControllWidgets() { animationControlWidget = new QWidget; QVBoxLayout *animCtrLayout = new QVBoxLayout; QHBoxLayout *layout3 = new QHBoxLayout; layout3->setMargin(0); play = new QPushButton; play->setFixedSize(25,25); play->setIconSize(QSize(18,18)); play->setIcon(QIcon(":/icons/play.png")); connect(play, SIGNAL(released()), this, SLOT(playButtonClicked())); loopFromStart = new QPushButton; loopFromStart->setCheckable(true); loopFromStart->setFixedSize(25,25); loopFromStart->setIconSize(QSize(18,18)); loopFromStart->setIcon(QIcon(":/icons/loop.png")); loopRound = new QPushButton; loopRound->setCheckable(true); loopRound->setFixedSize(25,25); loopRound->setIconSize(QSize(18,18)); loopRound->setIcon(QIcon(":/icons/go&return.png")); connect(loopFromStart, SIGNAL(toggled(bool)), this, SLOT(loopFromStartToggled())); connect(loopRound, SIGNAL(toggled(bool)), this, SLOT(loopRoundToggled())); layout3->addStretch(); layout3->addWidget(play); layout3->addWidget(loopFromStart); layout3->addWidget(loopRound); layout3->addStretch(); QVBoxLayout *layout4 = new QVBoxLayout; layout4->setMargin(0); layout4->setSpacing(0); parSlider = new QSlider(Qt::Horizontal); connect(parSlider, SIGNAL(valueChanged(int)), this, SLOT(sliderMoved(int))); QHBoxLayout *layout5 = new QHBoxLayout; layout5->setMargin(0); layout5->setSpacing(3); parCharLabel = new QLabel(); parCurrentValLineEdit = new QLineEdit(); parCurrentValLineEdit->setFrame(false); parCurrentValLineEdit->setReadOnly(true); parCurrentValLineEdit->setMaximumHeight(25); layout5->addStretch(); layout5->addWidget(parCharLabel); layout5->addWidget(parCurrentValLineEdit); layout5->addStretch(); layout4->addWidget(parSlider); layout4->addLayout(layout5); animCtrLayout->addLayout(layout3); animCtrLayout->addLayout(layout4); animationControlWidget->setLayout(animCtrLayout); principalLayout->addWidget(animationControlWidget); animationControlWidget->hide(); } void ParEqWidget::loopFromStartToggled() { if(loopFromStart->isChecked() && loopRound->isChecked()) loopRound->setChecked(false); } void ParEqWidget::loopRoundToggled() { if(loopFromStart->isChecked() && loopRound->isChecked()) loopFromStart->setChecked(false); } void ParEqWidget::sliderMoved(int pos) { if(isAnimated()) { if(is_t_Animated()) current_tPos = pos - increment; else current_kPos = pos - increment; nextFrame(); emit animationUpdateRequest(); } } void ParEqWidget::animateKtoggled(bool checked) { tWidget->setAnimationEnabled(!checked); animationControlWidget->setShown(checked); playState = false; play->setIcon(QIcon(":/icons/play.png")); if(checked) { parCharLabel->setText("k ="); setRatio(ratio); } else { curvesNum_current = curvesNum_original; } colorSaver.setCurvesNum(curvesNum_current); updateAnimationSlider(); } void ParEqWidget::animateTtoggled(bool checked) { kWidget->setAnimationEnabled(!checked); animationControlWidget->setShown(checked); playState = false; play->setIcon(QIcon(":/icons/play.png")); updateAnimationSlider(); if(checked) { parCharLabel->setText("t ="); setRatio(ratio); } } bool ParEqWidget::keepTracks() { return tWidget->doesKeepTracks(); } void ParEqWidget::checkExpr() { are_expr_parametric = xLine->text().contains('k') || yLine->text().contains('k'); isParametric = are_expr_parametric || is_t_range_parametric; kWidget->setShown(isParametric); lastColorButton->setShown(isParametric); if(!isParametric && kWidget->isAnimateChecked()) kWidget->setAnimationChecked(false); } void ParEqWidget::apply() { hasSomethingChanged = false; updateKRange(); checkXline(); checkYline(); tWidget->validate(); updateTRange(kRange.start); valid = isXExprGood && isYExprGood && isTRangeGood && isKRangeGood; if(hasSomethingChanged && valid) { calculatePointsList(); currentPolygon.clear(); if(tWidget->isAnimateChecked()) for(short i = 0 ; i < pointsList.size(); i++) currentPolygon << pointsList[i].mid(0, 1); else if(kWidget->isAnimateChecked()) currentPolygon << pointsList[0]; current_tPos = 0; current_kPos = 0; increment = 1; current_t = tRange.start; current_k = kRange.start; if(tWidget->isAnimateChecked() || kWidget->isAnimateChecked()) { updateAnimationSlider(); parSlider->setValue(0); } } } void ParEqWidget::checkXline() { if(xExpr != xLine->text()) { if(xTree != NULL) treeCreator.deleteFastTree(xTree); xTree = treeCreator.getTreeFromExpr(xLine->text(), isXExprGood); if(isXExprGood) xLine->setPalette(validPalette); else xLine->setPalette(invalidPalette); xExpr = xLine->text(); hasSomethingChanged = true; } } void ParEqWidget::checkYline() { if(yExpr != yLine->text()) { if(yTree != NULL) treeCreator.deleteFastTree(yTree); yTree = treeCreator.getTreeFromExpr(yLine->text(), isYExprGood); if(isYExprGood) yLine->setPalette(validPalette); else yLine->setPalette(invalidPalette); yExpr = yLine->text(); hasSomethingChanged = true; } } void ParEqWidget::updateTRange(double k) { if(!areIdentical(tRange, tWidget->getRange(k))) hasSomethingChanged = true; tRange = tWidget->getRange(k); tPos_end = fipart((tRange.end - tRange.start)/(tRange.step * ratio)) + 1; int pointsNum = fipart((tRange.end - tRange.start)/tRange.step) + 1; isTRangeGood = tWidget->isValid() && 20000 > pointsNum && pointsNum > 0; if(!isTRangeGood) valid = false; if(pointsNum <= 0) QMessageBox::warning(this, tr("Erreur"),tr("La valeur du pas du paramètre t est incompatible avec l'intervalle saisi, dans l'équation paramétrique") + " (P" + QString::number(index) + ")."); else if(pointsNum > 20000) QMessageBox::warning(this, tr("Erreur"), tr("Trop de points sont à calculer pour l'équation paramétrique") + " (P" + QString::number(index) + ")."); } void ParEqWidget::updateKRange() { kWidget->validate(); if(!areIdentical(kRange, kWidget->getRange())) hasSomethingChanged = true; kRange = kWidget->getRange(); curvesNum_original = curvesNum_current = fipart((kRange.end - kRange.start)/kRange.step) + 1; if(kWidget->isAnimateChecked()) curvesNum_current = fipart((kRange.end - kRange.start)/(kRange.step*ratio)) + 1; else curvesNum_current = curvesNum_original; colorSaver.setCurvesNum(curvesNum_current); isKRangeGood = kWidget->isValid() && curvesNum_original > 0; if(curvesNum_original <= 0) QMessageBox::warning(this, tr("Erreur"), tr("La valeur du pas du paramètre k est incompatible avec l'intervalle saisi, dans l'équation paramétrique (P") + QString::number(index) + ")."); } ColorSaver* ParEqWidget::getColorSaver() { return &colorSaver; } void ParEqWidget::calculatePointsList() { int numDraws = 1, end; double k = kRange.start, t = 0, tStep = 0, tRatio = 1; if(tWidget->isAnimateChecked() && ratio < 1) tRatio = ratio; if(!kWidget->isAnimateChecked()) numDraws = curvesNum_original; pointsList.clear(); Point point; for(int draw = 0; draw < numDraws && draw < PAR_DRAW_LIMIT; draw++) { QList list; calculator->setK(k); updateTRange(k); if(!isTRangeGood) return; tStep = tRange.step * tRatio; end = fipart((tRange.end - tRange.start)/tStep) + 1; t = tRange.start; for(int i = 0 ; i < end ; i++) { point.x = calculator->calculateFromTree(xTree, t); point.y = calculator->calculateFromTree(yTree, t); list << point; t += tStep; } pointsList << list; k += kRange.step; } } void ParEqWidget::updateAnimationSlider() { if(tWidget->isAnimateChecked()) { parCurrentValLineEdit->setText(QString::number(current_t, 'g', NUM_PREC)); parSlider->setMinimum(0); parSlider->setMaximum(tPos_end); } else if(kWidget->isAnimateChecked()) { parCurrentValLineEdit->setText(QString::number(current_k, 'g', NUM_PREC)); parSlider->setMinimum(0); parSlider->setMaximum(curvesNum_current - 1); } } bool ParEqWidget::isPlaying() { return playState; } bool ParEqWidget::isValid() { return valid; } bool ParEqWidget::getDrawState() { return valid && drawCheckBox->isChecked(); } void ParEqWidget::nextFrame() { if(tWidget->isAnimateChecked()) nextFrameTchecked(); else if(kWidget->isAnimateChecked()) nextFrameKchecked(); } void ParEqWidget::nextFrameTchecked() { if((current_tPos == 0 && increment < 0) || (current_tPos == tPos_end && increment > 0)) { if(loopRound->isChecked()) { increment = - increment; } else if(loopFromStart->isChecked()) { current_tPos = 0; current_t = tRange.start; increment = 1; } else { play->setIcon(QIcon(":/icons/play.png")); playState = false; increment = 1; return; } } current_tPos += increment; current_pos = current_tPos * (pointsList[0].size() - 1) / tPos_end + 1; current_t = tRange.start + (double)current_tPos * tRange.step * ratio; parCurrentValLineEdit->setText(QString::number(current_t, 'g', NUM_PREC)); parSlider->setValue(current_tPos); } void ParEqWidget::nextFrameKchecked() { if((current_kPos <= 0 && increment < 0) || (current_kPos >= curvesNum_current - 1 && increment > 0)) { if(loopRound->isChecked()) { increment = - increment; } else if(loopFromStart->isChecked()) { current_kPos = 0; current_k = kRange.step; increment = 1; } else { play->setIcon(QIcon(":/icons/play.png")); playState = false; increment = 1; return; } } current_kPos += increment; current_k = kRange.start + (double)(current_kPos) * kRange.step * ratio; updateTRange(current_k); if(!isTRangeGood) return; currentPolygon.clear(); currentPolygon << QList(); calculator->setK(current_k); double t = tRange.start; int end = fipart((tRange.end - tRange.start)/tRange.step)+ 1; Point point; for(int i = 0 ; i < end ; i++) { point.x = calculator->calculateFromTree(xTree, t); point.y = calculator->calculateFromTree(yTree, t); currentPolygon[0] << point; t += tRange.step; } parCurrentValLineEdit->setText(QString::number(current_k, 'g', NUM_PREC)); parSlider->setValue(current_kPos); } int ParEqWidget::getCurrentKPos() { return current_kPos; } int ParEqWidget::getCurrentTPos() { return current_pos; } bool ParEqWidget::is_t_Animated() { return tWidget->isAnimateChecked(); } bool ParEqWidget::isAnimated() { return (kWidget->isAnimateChecked() || tWidget->isAnimateChecked()) && valid && !blockAnimation; } QList< QList >* ParEqWidget::getCurrentPolygon() { return ¤tPolygon; } QList< QList >* ParEqWidget::getPointsList() { return &pointsList; } bool ParEqWidget::areIdentical(Range a, Range b) { return a.start == b.start && a.end == b.end && a.step == b.step; } void ParEqWidget::emitRemoveSignal() { emit removeClicked(this); } void ParEqWidget::playButtonClicked() { if(playState) { play->setIcon(QIcon(":/icons/play.png")); } else { play->setIcon(QIcon(":/icons/pause.png")); } playState = !playState; } ParEqWidget::~ParEqWidget() { if(xTree != NULL) treeCreator.deleteFastTree(xTree); if(yTree != NULL) treeCreator.deleteFastTree(yTree); } zegrapher-2.0.orig/src/funcvaluessaver.cpp0000644000175000017500000001041412105437153021207 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #include "funcvaluessaver.h" static double fipart(double x) { if(x < 0) { return ceil(x); } else { return floor(x); } } FuncValuesSaver::FuncValuesSaver(Informations *info) { informations = info; funcs = info->getFuncsList(); info->getRange(); deplacement = 0; for(short i = 0 ; i < funcs.size() ; i++) funcVals << QList >(); } void FuncValuesSaver::calculateAll(double new_xUnit, double new_yUnit) { graphRange = informations->getRange(); xUnit = new_xUnit; yUnit = new_yUnit; pixelStep = informations->getOptions().distanceEntrePoints; unitStep = pixelStep / xUnit; double x = 0, k = 0; int k_pos = 0, end; deplacement = 0; startAbscissa_unit = fipart(graphRange.Xmin / unitStep) * unitStep - unitStep; startAbscissa_pixel = startAbscissa_unit * xUnit; endAbscissa_unit = fipart(graphRange.Xmax / unitStep) * unitStep + unitStep; endAbscissa_pixel = endAbscissa_unit * xUnit; Range range; for(short i = 0; i < funcs.size(); i++) { if(!funcs[i]->isFuncValid()) continue; funcVals[i].clear(); range = funcs[i]->getParametricRange(); end = fipart((range.end - range.start)/range.step) + 1; k = range.start; for(k_pos = 0 ; k_pos < end ; k_pos++) { funcVals[i] << QList(); for(x = startAbscissa_unit ; x <= endAbscissa_unit ; x += unitStep) { funcVals[i][k_pos] << funcs[i]->getFuncValue(x, k); } k += range.step; } } } void FuncValuesSaver::move(double pixels) { double x = 0, k = 0, k_step = 0, x_start = 0, x_step = 0; int k_pos; deplacement += pixels; double limite = fipart(deplacement / pixelStep); if(limite == 0) return; if(deplacement < 0) { x_step = unitStep; x_start = endAbscissa_unit; } else { x_step = - unitStep; x_start = startAbscissa_unit; } for(short i = 0 ; i < funcs.size(); i++) { if(!funcs[i]->getDrawState()) continue; k_step = funcs[i]->getParametricRange().step; k = funcs[i]->getParametricRange().start; for(k_pos = 0; k_pos < funcVals[i].size() ; k_pos++) { x = x_start; for(double j = 0; j < abs(limite); j++) { x += x_step; if(deplacement < 0) { funcVals[i][k_pos].append(funcs[i]->getFuncValue(x, k)); funcVals[i][k_pos].removeFirst(); } else { funcVals[i][k_pos].prepend(funcs[i]->getFuncValue(x, k)); funcVals[i][k_pos].removeLast(); } } k += k_step; } } deplacement -= pixelStep * limite; startAbscissa_pixel -= pixelStep * limite; endAbscissa_unit -= limite * unitStep; startAbscissa_unit -= limite * unitStep; } double FuncValuesSaver::getStartAbsicssaUnit() { return startAbscissa_unit; } double FuncValuesSaver::getStartAbscissaPixel() { return startAbscissa_pixel; } QList > > *FuncValuesSaver::getFuncValsListPointer() { return &funcVals; } zegrapher-2.0.orig/src/fenetrebornes.ui0000644000175000017500000002601411636355722020503 0ustar georgeskgeorgesk FenetreBornes 0 0 231 192 0 0 16777215 16777215 Bornes de représentation :/icons/bornes.png:/icons/bornes.png 36 27 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Cantarell'; font-size:11pt; font-weight:400; font-style:normal;"> <table border="0" style="-qt-table-type: root; margin-top:4px; margin-bottom:4px; margin-left:4px; margin-right:4px;"> <tr> <td style="border: none;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt; font-weight:600; font-style:italic;">X</span><span style=" font-size:12pt; font-weight:600; font-style:italic; vertical-align:sub;">min</span></p></td></tr></table></body></html> 36 27 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Cantarell'; font-size:11pt; font-weight:400; font-style:normal;"> <table border="0" style="-qt-table-type: root; margin-top:4px; margin-bottom:4px; margin-left:4px; margin-right:4px;"> <tr> <td style="border: none;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Cantarell'; font-size:12pt; font-weight:600; font-style:italic;">X<sub>max</sub></span></p></td></tr></table></body></html> <strong><em>Pas</em></strong> 16777215 16777215 -10 100 Qt::AlignCenter 16777215 16777215 10 100 Qt::AlignCenter 16777215 16777215 1 100 Qt::AlignCenter 36 27 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Cantarell'; font-size:11pt; font-weight:400; font-style:normal;"> <table border="0" style="-qt-table-type: root; margin-top:4px; margin-bottom:4px; margin-left:4px; margin-right:4px;"> <tr> <td style="border: none;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt; font-weight:600; font-style:italic;">Y</span><span style=" font-size:12pt; font-weight:600; font-style:italic; vertical-align:sub;">min</span></p></td></tr></table></body></html> 36 27 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Cantarell'; font-size:11pt; font-weight:400; font-style:normal;"> <table border="0" style="-qt-table-type: root; margin-top:4px; margin-bottom:4px; margin-left:4px; margin-right:4px;"> <tr> <td style="border: none;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Cantarell'; font-size:12pt; font-weight:600; font-style:italic;">Y<sub>max</sub></span></p></td></tr></table></body></html> <strong><em>Pas</em></strong> 16777215 16777215 -10 100 Qt::AlignCenter 16777215 16777215 10 100 Qt::AlignCenter 16777215 16777215 1 100 Qt::AlignCenter Base orthonormale 16777215 25 Vue standard Qt::Horizontal 40 20 85 27 85 27 Appliquer zegrapher-2.0.orig/src/seqtable.h0000644000175000017500000000343712105437153017247 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #ifndef SEQTABLE_H #define SEQTABLE_H #include "abstracttable.h" #include "informations.h" #include "seqcalculator.h" #include "exprcalculator.h" class SeqTable : public AbstractTable { Q_OBJECT public: explicit SeqTable(Informations *info); void setTableParameters(ValuesTableParameters par); protected slots: void cellEdited(QStandardItem *item); void kValueEdited(); void updateTable(); void precisionEdited(); protected: void fillFromRange(); void emptyCellsFill(); void add_x_values(); void add_y_values(); void add_parSeq_y_values(); ExprCalculator exprCalculator; Informations *informations; SeqCalculator *seq; ValuesTableParameters parameters; QList xValues, yValues; bool disableCellEdit; QPalette validPalette, invalidPalette; }; #endif // SEQTABLE_H zegrapher-2.0.orig/src/imagepreview.cpp0000644000175000017500000002422612105437153020465 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #include "imagepreview.h" ImagePreview::ImagePreview(Informations *info) : GraphDraw(info) { parametres.distanceEntrePoints = 0.125; leftMargin = 30; rightMargin = 30; topMargin = 20; bottomMargin = 30; tangentDrawException = -1; legendFontSize = 12; legendState = false; additionalMargin = 0; bold = italic = underline = false; numPrec = NUM_PREC; updateTimer.setInterval(100); updateTimer.setSingleShot(true); connect(&updateTimer, SIGNAL(timeout()), this, SLOT(update())); } void ImagePreview::paintEvent(QPaintEvent *event) { Q_UNUSED(event); parametres = informations->getOptions(); graphRange = informations->getRange(); painter.begin(this); painter.setBrush(QBrush(parametres.couleurDuFond)); painter.drawRect(-1, -1, width()+1, height()+1); assignGraphSize(); determinerCentreEtUnites(); paint(); painter.end(); } void ImagePreview::setNumPrec(int prec) { numPrec = prec; update(); } void ImagePreview::setBold(bool state) { bold = state; update(); } void ImagePreview::setUnderline(bool state) { underline = state; update(); } void ImagePreview::setItalic(bool state) { italic = state; update(); } void ImagePreview::setlegendFontSize(int size) { if(legendState) { leftMargin -= legendFontSize; leftMargin += size; bottomMargin -= legendFontSize; bottomMargin += size; additionalMargin = size + 10; } legendFontSize = size; update(); } void ImagePreview::setLegendState(bool show) { if(show && !legendState) { leftMargin += legendFontSize + 10; bottomMargin += legendFontSize + 10; additionalMargin = legendFontSize + 10; } else if(!show && legendState) { leftMargin -= legendFontSize + 10; bottomMargin -= legendFontSize + 10; additionalMargin = 0; } legendState = show; update(); } void ImagePreview::setXaxisLegend(QString legend) { xLegend = legend; update(); } void ImagePreview::setYaxisLegend(QString legend) { yLegend = legend; update(); } void ImagePreview::assignGraphSize() { graphWidth = width()-(rightMargin+leftMargin); graphHeight = height()-(bottomMargin+topMargin); } void ImagePreview::paint() { painter.setBrush(Qt::NoBrush); painter.setRenderHint(QPainter::Antialiasing, false); painter.translate(leftMargin, topMargin); pen.setColor(informations->getOptions().couleurDesAxes); painter.setPen(pen); placerGraduations(); drawAxes(); painter.drawRect(0, 0, graphWidth, graphHeight); if(legendState) writeLegends(); painter.setClipRect(0,0,graphWidth,graphHeight); painter.translate(QPointF(centre.x, centre.y)); funcValuesSaver->calculateAll(uniteX, uniteY); drawFunctions(); drawSequences(); drawStraightLines(); drawTangents(); drawStaticParEq(); } void ImagePreview::writeLegends() { font.setPixelSize(legendFontSize); font.setItalic(italic); font.setBold(bold); font.setUnderline(underline); painter.setFont(font); if(!xLegend.isEmpty()) { int xLegendWidth = painter.fontMetrics().width(xLegend); QPoint startDrawPoint; startDrawPoint.setX((graphWidth - xLegendWidth)/2); startDrawPoint.setY(graphHeight + bottomMargin - 10); painter.drawText(startDrawPoint, xLegend); } if(!yLegend.isEmpty()) { painter.rotate(-90); int yLegendWidth = painter.fontMetrics().width(yLegend); int yLegendHeight = legendFontSize + 6; QPoint startDrawPoint; startDrawPoint.setX(- (graphHeight - (graphHeight - yLegendWidth)/2)); startDrawPoint.setY(-leftMargin + yLegendHeight); painter.drawText(startDrawPoint, yLegend); painter.rotate(90); } } static double fipart(double x) { if(x < 0) { return ceil(x); } else { return floor(x); } } void ImagePreview::placerGraduations() { double fontSize = informations->getOptions().numSize; double prec = numPrec; font.setPixelSize(fontSize); font.setItalic(false); font.setBold(false); font.setUnderline(false); pen.setWidth(1); painter.setFont(font); painter.setRenderHint(QPainter::Antialiasing, false); QFontMetrics fontMetrics = painter.fontMetrics(); double space, pos; double Xpos = fipart(graphRange.Xmin / graphRange.Xscale) * graphRange.Xscale * uniteX; double end = graphRange.Xmax * uniteX; double pas = graphRange.Xscale * uniteX; QString num; while(Xpos <= end) { if(fabs(Xpos) > 1) { if(informations->getGridState()) { pen.setColor(parametres.couleurQuadrillage); pen.setWidthF(0.5); painter.setPen(pen); painter.drawLine(QPointF(Xpos + centre.x, 0), QPointF(Xpos + centre.x, graphHeight)); } pen.setColor(parametres.couleurDesAxes); pen.setWidth(1); painter.setPen(pen); pos = Xpos + centre.x; painter.drawLine(QPointF(pos, 4), QPointF(pos, 0)); painter.drawLine(QPointF(pos, graphHeight-4), QPointF(pos, graphHeight)); num = QString::number(Xpos/uniteX, 'g', prec); space = fontMetrics.width(num); painter.drawText(QPointF(pos - space/2, graphHeight+15), num); } else { pos = Xpos + centre.x; space = fontMetrics.width("0"); painter.drawText(QPointF(pos - space/2, graphHeight+15), "0"); } Xpos += pas; } //trace sur l'axe des Y double Ypos = ceil(graphRange.Ymin / graphRange.Yscale) * graphRange.Yscale * uniteY; pas = graphRange.Yscale * uniteY; end = graphRange.Ymax * uniteY; int largestWidth = 0; while(Ypos <= end) { if(fabs(Ypos) > 1) { if(informations->getGridState()) { pen.setColor(parametres.couleurQuadrillage); pen.setWidthF(0.5); painter.setPen(pen); painter.drawLine(QPointF(0, -Ypos + centre.y), QPointF(graphWidth, -Ypos + centre.y)); } pen.setColor(parametres.couleurDesAxes); pen.setWidth(1); painter.setPen(pen); pos = -Ypos + centre.y; painter.drawLine(QPointF(4, pos), QPointF(0, pos)); painter.drawLine(QPointF(graphWidth - 4, pos), QPointF(graphWidth, pos)); num = QString::number(Ypos/uniteY, 'g', prec); space = fontMetrics.width(num) + 5; if(space > largestWidth) largestWidth = space; painter.drawText(QPointF(-space, pos + parametres.numSize/2), num); } else { pos = -Ypos + centre.y; space = fontMetrics.width("0") + 5; painter.drawText(QPointF(-space, pos + parametres.numSize/2), "0"); } if(space > largestWidth) largestWidth = space; Ypos += pas; } if(largestWidth < leftMargin - additionalMargin || largestWidth > leftMargin - additionalMargin - 5) { leftMargin = largestWidth + 10 + additionalMargin; updateTimer.start(); } } void ImagePreview::drawAxes() { pen.setWidth(1); pen.setColor(parametres.couleurDesAxes); painter.setPen(pen); painter.setRenderHint(QPainter::Antialiasing, false); if(graphRange.Ymin < 0 && graphRange.Ymax > 0) painter.drawLine(QPointF(0, centre.y), QPointF(graphWidth, centre.y)); if(graphRange.Xmin < 0 && graphRange.Xmax > 0) painter.drawLine(QPointF(centre.x, 0), QPointF(centre.x, graphHeight)); } void ImagePreview::determinerCentreEtUnites() { uniteY = graphHeight / (graphRange.Ymax - graphRange.Ymin); uniteX = graphWidth / (graphRange.Xmax - graphRange.Xmin); double rapport = uniteY / uniteX; if(informations->isOrthonormal()) { graphRange.Ymin *= rapport; graphRange.Ymax *= rapport; uniteY = uniteX; } centre.x = - graphRange.Xmin * uniteX; centre.y = graphRange.Ymax * uniteY; } QImage* ImagePreview::drawImage() { parametres = informations->getOptions(); graphRange = informations->getRange(); QImage *image = new QImage(size(), QImage::Format_RGB32); image->fill(parametres.couleurDuFond.rgb()); painter.begin(image); //trace du background pen.setColor(informations->getOptions().couleurDesAxes); painter.setPen(pen); painter.setRenderHint(QPainter::Antialiasing, false); painter.drawRect(leftMargin, topMargin, graphWidth, graphHeight); painter.translate(leftMargin, topMargin); determinerCentreEtUnites(); drawAxes(); placerGraduations(); if(legendState) writeLegends(); painter.setClipRect(0,0,graphWidth,graphHeight); painter.translate(QPointF(centre.x, centre.y)); if(recalculate) funcValuesSaver->calculateAll(uniteX, uniteY); drawFunctions(); drawSequences(); drawStraightLines(); drawStaticParEq(); painter.end(); *image = image->convertToFormat(QImage::Format_Indexed8, Qt::ThresholdDither); return image; } zegrapher-2.0.orig/src/ZeGrapher_en.ts0000644000175000017500000015261612105417413020220 0ustar georgeskgeorgesk AbstractTable Retour Back Précision : Precision : FenTableauValeurs Tableaux de valeurs Table of values Ajouter Add FenetreBornes Bornes de représentation Representation range <strong><em>Pas</em></strong> <strong><em>Step</em></strong> -10 10 1 Base orthonormale Repère orthonormal Orthonormal basis Vue standard Standard view Appliquer Apply Erreur Error Le nombre écrit en Xmax est faux There is a mistake on the Xmax value Le nombre écrit en Xmin est faux There is a mistake on the Xmin value Le nombre écrit en Ymax est faux There is a mistake on the Ymax value Le nombre écrit en Ymin est faux There is a mistake on the Ymin value Le nombre écrit dans le pas des X est faux There is a mistake on the Xstep value Le nombre écrit dans le pas des Y est faux There is a mistake on the Ystep value Xmin doit être plus petit que Xmax Xmin must be lower than Xmax Ymin doit être plus petit que Ymax Ymin must be lower than Ymax Les bornes sont trop petites pour être appliquées au graphique. The range is too small to be applied to the graph. FenetreFonctions Form Fonctions numériques fonctins numériques Functions Suites Sequences Suites numériques suites numériques Sequences n<sub>min</sub> = Droites Straight lines Droites et tangentes droites et tangentes Straight lines and tangents Ajouter : Add : Droite Straight line Tangente Tangent Paramètrique Parametric Contrôle de l'animation: Animation control: Période d'incrémentation : Increase period : millisecondes par pas. millisecond per step. ms/pas ms/step Fréquence : Refresh rate : Hz Hz Ajouter Add Clavier Keyboard Tracer Draw Fonctions Functions FenetreOptions Attention Warning Les couleurs du fond et des axes sont identiques Axes and background colors are identical Les couleurs du fond et du quadrillage sont identiques Background and grid colors are identical FuncCalculator Erreur Error La fonction The functon appelle une autre fonction invalide, ou qui forme une boucle d'appel infine. calls an invalid other function, or creates an infinite calling loop. FuncTable Fonction: Function: Erreur Error Erreur de syntaxe dans cette entrée Syntax error in this entry ImageSave Enregistrer Save Taille de l'image Picture's size Celle du graphique Graph's size Nouvelle taille: New size: Largeur: Width: px px Hauteur: Height: Précision : Precision : chiffres digits Légendes Legends Abscisses : x-axis : Ordonnées : y-axis : Taille de police : Font size : Enregistrer une image Save picture IntegrationWidget Conditions initiales: Initial conditions: Keyboard Clavier Keyboard cosh tanh sinh Primitive Integral Fonction Function Dérivée Derivative Effacer Remove Vider Clear variable des fonctions function's variable ² arrondie à l'entier inférieur rounds to lower integer arrondie à l'entier supérieur rounds to upper integer racine carrée square root sqrt variable des suites sequence's variable n paramètre parameter k π MainWindow Fichier File Outils Tools Afficher/Cacher le quadrillage Afficher le quadrillage Show/Hide grid Base orthonormale Repère orthonormal Orthonormal basis à Propos... About... Imprimer... Print... Enregistrer image... Save picture... Fonctions Functions Bornes Range Tableau de valeurs Table of values Clavier numérique Numerical keyboard Affiche la fenêtre où l'on peut modifier les bornes de représentation: Xmin, Xmax... Displays graph's range editing window: Xmin, Xmax... Affiche le fenêtre où l'on peut écrire les expressions des fonctions à représenter. Shows functions window. Quitte l'application. Quit. Affiche la fenêtre où l'on peut modifier les options de représentation. Representation options window. Affiche un clavier numérique virtuel. Shows a virtual numerical keyboard. Imprimer ou exporter le graphique vers fichier PDF. Print or export in PDF. Affiche une fenêtre contenant le tableau de valeurs pour chaque fonction. Table of values window. Afficher/Cacher le quadrillage. Show/Hide the grid. Enregistrer le graphique dans une image. Save the graph on a picture. Fenêtres Windows Options Preferences Quitter Quit ParConfWidget Réglages du paramètre Range of Animer Animate Garder la trace Keep tracks Début: Start: Fin: End: Pas: Step: ParEqTable Equation paramètrique: Parametric equation: Erreur Error Erreur de syntaxe dans cette entrée Syntax error in this entry ParEqWidget Erreur Error La valeur du pas du paramètre t est incompatible avec l'intervalle saisi, dans l'équation paramétrique Step value for "t" parameter is not compatible with entered range, in parametric equation Trop de points sont à calculer pour l'équation paramétrique Too many points to calculate on parametric equation La valeur du pas du paramètre k est incompatible avec l'intervalle saisi, dans l'équation paramétrique (P<sub> Step value for "k" parameter is not compatible with entered range, in parametric equation Print Imprimer Print Paramètres globaux: Global parameters: Nombre de copies : Copies number: Portrait Portrait Paysage Landscape Coloration : Color type: Couleur Color Niveaux de gris Grayscale Résolution: Resolution: Celle de l'écran Screen's resolution Orientation: Page orientation: Prédifinie: Custom: ppp dpi Impression: Printing: sur une feuille On a paper Imprimante : Printer: dans un fichier (PDF, PostScript) On a file (PDF, PostScript) ... ... Graphique Graph Précision : Precision : Taille du graphique: Graph's size: Hauteur Height cm cm Largeur Width Échelle: Scale: Abscisses: Abscissa: cm/unité cm/unit Ordonées: Ordinate: Repère non orthonormal Non-orthonormal basis Légendes Legends Abscisses : x-axis : Ordonnées : y-axis : Taille de police : Font size : Créer un PDF Create PDF Repère non orthonormal Non-orthonormal basis Repère orthonormal Orthonormal basis Enregistrer Save Erreur Error Aucun emplacement n'a été saisi pour le fichier PDF à créer. Select a directory to create the file on. QObject Erreur Error Mauvaise relation de récurence saisie pour la suite Wrong recurrence relation entered for sequence Nombre de premiers termes insuffisant pour la suite Insufficient number of initial term for sequence appelle calls avec un paramètre non entier. with a non integer value. demande un terme non existant de asks for a undefined term from Le rang demandé étant plus petit que n<sub>min</sub> The asked term is smaller than n<sub>min</sub> SeqCalculator Erreur Error Erreur de syntaxe lors de la saisie des premiers termes de la suite Syntax error on the entered initial terms for sequence Note: ces termes doivent être séparés par des ';' Note: terms must be separated with ';' Erreur dans le calcul des premiers termes saisis pour la suite Error while calculating initial terms for sequence Erreur dans le calcul des premiers termes de la suite Error while calculating first terms of sequence Erreur dans les appels entre deux suites. dont Error between two sequences who calls each other, one of them is Erreur dans les appels entre deux suites, dont Error between two sequences who calls each other, one of them is SeqTable Suite: Sequence: Erreur Error Erreur de syntaxe dans cette entrée Syntax error in this entry Vous devez saisir un nombre entier supérieur à n<sub>min</sub> You must enter an integer value greater that n<sub>min</sub> Erreur dans le calcul des termes de cette suite paramètrique, changer la valeur du paramètre pourrait résoudre le problème. Error while calculating this sequence's terms, changing "k" value might solve the error. StraightLineWidget Erreur Error Erreur dans la droite Error on straight line Les coeficients des variables x et y ne peuvent être nuls simultanèment. x and y coefficients must not be zeroes at the same time. TangentWidget tangente à : tangent to : en: a = in: a = Pour k = With k = Fonction choisie Choosen function Invalide is invalid ValuesTableConf Fonction Function Suite Sequence Equation paramétrique Parametric equation Type : Type : Nom : Name : Valeurs d'entrée : Entry values : Valeurs du graphique. Graphs values. Manuellement. Manul entry. Cases vides : Empty cells : Prédéfinis Predefined Début: Start: Pas: Step: Cases : Cells number : Appliquer Apply Erreur Error La valeur de départ doit être un entier. Start value must be an integer. La valeur de départ doit être supérieure à n<sub>min</sub>. Start values must be greater than n<sub>min</sub>. La valeur du pas doit être un entier positif. Step value must be positive. Veuillez selectionner un type Please select a type Veuillez selectionner un nom Please select a name Erreur de saisie dans la valeur de départ. Syntax error on start value. Erreur de saisie dans la valeur du pas. Syntax error on step value. apropos À Propos... About... <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Cantarell'; font-size:11pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:14pt; font-weight:600;">ZeGrapher 2.0</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:12pt;">Basé sur Qt 4.8.4</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:12pt;">Distribué sous licence GPL version 3</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"><br /></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:12pt;">Site officiel: </span><a href="http://zegrapher.com"><span style=" font-family:'Sans'; font-size:12pt; text-decoration: underline; color:#0000ff;">zegrapher.com</span></a></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Cantarell'; font-size:11pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:14pt; font-weight:600;">ZeGrapher 2.0 testing</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:12pt;">Basé sur Qt 4.8.4</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:12pt;">Distribué sous licence GPL version 3</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"><br /></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:12pt;"><br /></span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:12pt;">Site officiel: </span><a href="http://zegrapher.com"><span style=" font-family:'Sans'; font-size:12pt; text-decoration: underline; color:#0000ff;">zegrapher.com</span></a></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Cantarell'; font-size:11pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:14pt; font-weight:600;">ZeGrapher 2.0</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:12pt;">Based on Qt 4.8.4</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:12pt;">Distributed under GPL license version 3</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"><br /></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:12pt;">Official website : </span><a href="http://zegrapher.com"><span style=" font-family:'Sans'; font-size:12pt; text-decoration: underline; color:#0000ff;">zegrapher.com</span></a></p></body></html> Fermer Close fenetreoptions Options Preferences la qualité est améliorée au détriment de la vitesse, et inversement. quand cette distance augmente, la vitesse de rendu augmente, la qualité de la courbe diminue Higher value for higher quality, lower value for higher speed. <html><head/><body><p><span style=" font-weight:600;">Qualité des courbes:</span></p></body></html> <html><head/><body><p><span style=" font-weight:600;">Curve's quality:</span></p></body></html> <strong>Epaisseur des courbes:</strong> <strong>Curve's thickness:</strong> <strong>Couleur des axes:</strong> <strong>Axes color:</strong> <strong>Couleur du fond:</strong> <strong>Background color:</strong> <strong>Lissage des courbes:</strong> <strong>Curve's smoothing</strong> distance en pixels Distance in pixels <strong>Couleur du quadrillage:</strong> <strong>Grid color:</strong> Taille des nombres affichés sur le graphique Numbers font size on the graph <html><head/><body><p><span style=" font-weight:600;">Taille de la police:</span></p></body></html> <html><head/><body><p><span style=" font-weight:600;">Font size:</span></p></body></html> taille en pixels Size in pixels Appliquer Apply zegrapher-2.0.orig/src/colorsaver.cpp0000644000175000017500000000420412105437153020152 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #include "colorsaver.h" ColorSaver::ColorSaver(QColor firstANDlast) { curvesNum = 1; firstColor = firstANDlast; lastColor = firstANDlast; colorsList << firstANDlast; } QColor ColorSaver::getColor(int index) { return colorsList[index]; } void ColorSaver::setCurvesNum(double num) { if(curvesNum != num) { curvesNum = num; saveColors(); } } void ColorSaver::setFristColor(QColor col) { firstColor = col; saveColors(); emit colorsChanged(); } void ColorSaver::setLastColor(QColor col) { lastColor = col; saveColors(); emit colorsChanged(); } void ColorSaver::saveColors() { colorsList.clear(); QColor color; double dr = lastColor.redF() - firstColor.redF(); double dg = lastColor.greenF() - firstColor.greenF(); double db = lastColor.blueF() - firstColor.blueF(); colorsList << firstColor; for(double i = 1 ; i < curvesNum - 1 ; i++) { color.setRedF(dr * i / curvesNum + firstColor.redF()); color.setGreenF(dg * i / curvesNum + firstColor.greenF()); color.setBlueF(db * i / curvesNum + firstColor.blueF()); colorsList << color; } colorsList << lastColor; } zegrapher-2.0.orig/src/seqcolorssaver.h0000644000175000017500000000020712044521436020512 0ustar georgeskgeorgesk#ifndef SEQCOLORSSAVER_H #define SEQCOLORSSAVER_H class SeqColorsSaver { public: SeqColorsSaver(); }; #endif // SEQCOLORSSAVER_H zegrapher-2.0.orig/src/seqwidget.cpp0000644000175000017500000001522012105437153017767 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #include "seqwidget.h" static double fipart(double x) { if(x < 0) { return ceil(x); } else { return floor(x); } } SeqWidget::SeqWidget(QChar name, int id, QColor color) : colorSaver(color) { seqName = name; seqNum = id; nameLabel->setText(QString(name) + "n ="); calculator = new SeqCalculator(id, "(" + QString(name) + "n)", this); calculator->setColorSaver(&colorSaver); defaultRange.start = 0; defaultRange.end = 0.5; defaultRange.step = 1; connect(&colorSaver, SIGNAL(colorsChanged()), this, SIGNAL(drawStateChanged())); connect(drawCheckBox, SIGNAL(released()), this, SIGNAL(drawStateChanged())); connect(expressionLineEdit, SIGNAL(textChanged(QString)), this, SLOT(checkExprLineEdit())); connect(expressionLineEdit, SIGNAL(textChanged(QString)), this, SLOT(checkCalledFuncsSeqsParametric())); connect(colorButton, SIGNAL(colorChanged(QColor)), &colorSaver, SLOT(setFristColor(QColor))); connect(secondColorButton, SIGNAL(colorChanged(QColor)), &colorSaver, SLOT(setLastColor(QColor))); connect(drawCheckBox, SIGNAL(toggled(bool)), calculator, SLOT(setDrawState(bool))); areFirstValsParametric = areCalledFuncsSeqsParametric = isExprParametric = false; addSeqWidgets(); } void SeqWidget::addSeqWidgets() { QLabel *firstValsLabel = new QLabel(seqName + QString("0 ; ") + seqName + QString("1 ; ... =")); firstValsLine = new QLineEdit(); firstValsLine->setMaximumHeight(25); secondContainerLayout->addStretch(); secondContainerLayout->addWidget(firstValsLabel); secondContainerLayout->addWidget(firstValsLine); connect(firstValsLine, SIGNAL(textChanged(QString)), this, SLOT(checkFirstValsLineEdit())); connect(firstValsLine, SIGNAL(textChanged(QString)), this, SLOT(checkCalledFuncsSeqsParametric())); connect(firstValsLine, SIGNAL(returnPressed()), this, SIGNAL(returnPressed())); } void SeqWidget::checkCalledFuncsSeqsParametric() { bool oldAreCalledFuncsSeqsParametric = areCalledFuncsSeqsParametric; areCalledFuncsSeqsParametric = false; QList calledFuncs = treeCreator.getCalledFuncs(expressionLineEdit->text()); for(int i = 0 ; i < calledFuncs.size() && !areCalledFuncsSeqsParametric ; i++) areCalledFuncsSeqsParametric = areCalledFuncsSeqsParametric || funcWidgets[calledFuncs[i]]->isFuncParametric(); if(!areCalledFuncsSeqsParametric) { QList calledSeqs = treeCreator.getCalledSeqs(expressionLineEdit->text()); calledSeqs << treeCreator.getCalledSeqs(firstValsLine->text()); for(int i = 0 ; i < calledSeqs.size() && !areCalledFuncsSeqsParametric ; i++) areCalledFuncsSeqsParametric = areCalledFuncsSeqsParametric || seqWidgets[calledSeqs[i]]->isSeqParametric(); } if(oldAreCalledFuncsSeqsParametric != areCalledFuncsSeqsParametric) updateParametricState(); } SeqCalculator* SeqWidget::getCalculator() { return calculator; } void SeqWidget::checkExprLineEdit() { expressionLineEdit->setPalette(neutralPalette); bool oldIsExprParametric = isExprParametric; isExprParametric = expressionLineEdit->text().contains('k'); if(oldIsExprParametric != isExprParametric) updateParametricState(); } void SeqWidget::setFuncWidgets(QList widgets) { funcWidgets = widgets; } void SeqWidget::updateParametricState() { bool oldParState = isParametric; isParametric = isExprParametric || areFirstValsParametric || areCalledFuncsSeqsParametric; kConfWidget->setShown(isParametric); secondColorButton->setShown(isParametric); if(oldParState != isParametric) emit newParametricState(); } void SeqWidget::checkFirstValsLineEdit() { firstValsLine->setPalette(neutralPalette); bool oldAreFirstValsParametric = areFirstValsParametric; areFirstValsParametric = firstValsLine->text().contains('k'); if(oldAreFirstValsParametric != areFirstValsParametric) updateParametricState(); } void SeqWidget::setSeqWidgets(QList widgets) { seqWidgets = widgets; } bool SeqWidget::isSeqParametric() { return isParametric; } void SeqWidget::firstValidation() { if(expressionLineEdit->text().isEmpty()) { isValid = false; calculator->setInvalid(); return; } kConfWidget->validate(); Range range = kConfWidget->getRange(); calculator->setParametricInfo(isParametric, range); colorSaver.setCurvesNum(fipart((range.end - range.start)/range.step) + 1); bool firstValsValidated = calculator->validateFirstValsExpr(firstValsLine->text()); if(firstValsValidated) firstValsLine->setPalette(validPalette); else firstValsLine->setPalette(invalidPalette); bool seqExprValidated = calculator->validateSeqExpr(expressionLineEdit->text()); if(seqExprValidated) expressionLineEdit->setPalette(validPalette); else expressionLineEdit->setPalette(invalidPalette); calculator->setParametricInfo(isParametric, kConfWidget->getRange()); isValid = firstValsValidated && seqExprValidated && (!isParametric || kConfWidget->isValid()); } void SeqWidget::setFuncsList(QList list) { kConfWidget->setFuncsList(list); } void SeqWidget::secondValidation() { if(!isValid) return; isValid = calculator->checkByCalculatingFirstValuesTrees(); if(!isValid) return; isValid = calculator->check_called_funcs_and_seqs_validity(); if(!isValid) return; } void SeqWidget::thirdValidation() { if(!isValid) return; isValid = calculator->checkByCalculatingValues(); if(!isValid) return; isValid = calculator->check_called_funcs_and_seqs_validity(); } zegrapher-2.0.orig/src/funccalculator.h0000644000175000017500000000506712105437153020455 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #ifndef FUNCCALCULATOR_H #define FUNCCALCULATOR_H #include "Structures.h" #include "treecreator.h" #include "colorsaver.h" class FuncCalculator : public QObject { Q_OBJECT public: FuncCalculator(int id, QString funcName, QWidget *parent); void setFuncsPointers(QList otherFuncs); void setIntegrationPointsList(QList list); void setParametric(bool state); void setParametricRange(Range range); void setIntegrationPointsValidity(bool state); void setInvalid(); void setColorSaver(ColorSaver *colsaver); ColorSaver* getColorSaver(); bool checkFuncCallingInclusions(); double getAntiderivativeValue(double b, Point A, double k_val = 0); double getFuncValue(double x, double kValue = 0); double getDerivativeValue(double x, double k_val = 0); bool canBeCalled(); bool validateExpression(QString expr); bool isFuncValid(); bool getDrawState(); bool isFuncParametric(); Range getParametricRange(); public slots: void setDrawState(bool draw); protected: double calculateFromTree(FastTree *tree, double x); void addRefFuncsPointers(); int funcNum; double k; bool isExprValidated, isParametric, areCalledFuncsGood, areIntegrationPointsGood, drawState, calledFuncsAlreadyChecked; TreeCreator treeCreator; FastTree *funcTree; QString expression, name; QList funcCalculatorsList; Range kRange; QWidget *parentWidget; ColorSaver *colorSaver; QList integrationPoints; QList refFuncs; }; #endif // FUNCCALCULATOR_H zegrapher-2.0.orig/src/print.h0000644000175000017500000000341012105437153016572 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #ifndef PRINT_H #define PRINT_H #include #include "printpreview.h" #define PORTRAIT true #define PAYSAGE false #define SCREEN_RESOLUTION true #define CUSTOM_RESOLUTION false #define PRINT_SHEET true #define PRINT_FILE false namespace Ui { class Print; } class Print : public QWidget { Q_OBJECT public: explicit Print(Informations *info); ~Print(); public slots: void viewChanged(int); void setGraphSize(double H, double W); void print(); void enablePrintButton(); void getPDFname(); void setPrintButtonText(bool); void setOrthonormal(bool state); void checkScaleWidgets(bool); protected: Ui::Print *ui; PrintPreview *scene; QList printersList; QTimer timer; QString PDFname; bool orthonormal; }; #endif // PRINT_H zegrapher-2.0.orig/src/graphdraw.h0000644000175000017500000000437612105437153017431 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #ifndef GRAPHDRAW_H #define GRAPHDRAW_H #include #include "Structures.h" #include "funccalculator.h" #include "tangentwidget.h" #include "straightlinewidget.h" #include "pareqwidget.h" #include "informations.h" #include "funcvaluessaver.h" class GraphDraw : public QWidget // Abstract class { Q_OBJECT public: explicit GraphDraw(Informations *info); ~GraphDraw(); protected: void drawOneFunction(int id, int width, int curveNum = -1); void drawOneSequence(int id, int width); void drawOneTangent(int id); void drawFunctions(); void drawSequences(); void drawTangents(); //except the exception :) designed by tangentDrawException void drawStraightLines(); void drawStaticParEq(); int graphWidth, graphHeight; Informations *informations; FuncValuesSaver *funcValuesSaver; QPainter painter; Options parametres; QPolygonF polygon; QPen pen; Point centre; GraphRange graphRange; double uniteX, uniteY; bool moving, recalculate; int tangentDrawException; QList funcs; QList seqs; QList *straightLines; QList *tangents; QList *parEqs; QList< QList< QList > > *funcVals; QFont font; }; #endif // GRAPHDRAW_H zegrapher-2.0.orig/src/ZeGrapher_en.qm0000644000175000017500000006563212105417421020207 0ustar georgeskgeorgesk.ծAO4zFC_e@ro 3 `S!e>_ DO{.\B-wܒ+'^Z=.`9^q$ߧ'0%V* J J P03dS,{d!29y+"}R52 3 k3!#` oɌɌɌɌ#Ɍ$Ɍ*Ɍ2 Ɍ4HɌ9Ɍ<Ɍ@>̓\S)W*bl3 s ?\t8fDݐ5_2A/ Ay g:D*=j1j$ j:⟚⟚Q⟚.."8%z(ʌ*xc,@;@3> u<(eF 0ò0ò>0òaFf l0~z~1ʂtʂg&.j9bNM f.C oF5*c3%DGzp0!aȺ<@jj/ A '1n9E 15 V^ k^_ pR" qղ z? (6 e( "m z0 ( (ς (ς FTEx \!aL l,*4  Y0  _H   *.j @3 ; !  ` \ *" ~c `6 . y E;> \n< ׋5" v) <.  ` _4 m*_ z ~e% .o |.] P#{)"FrFr*M7+?SVjEMzw sjsj,$%,J-/N 5idiPrecision : Précision : AbstractTableBackRetour AbstractTableAddAjouterFenTableauValeursTable of valuesTableaux de valeursFenTableauValeurs-10 FenetreBornes1 FenetreBornes10 FenetreBornes<<strong><em>Step</em></strong>Pas FenetreBornes Apply Appliquer FenetreBornes"Orthonormal basisBase orthonormale FenetreBornes(Representation rangeBornes de représentation FenetreBornes ErrorErreur FenetreBornesJThere is a mistake on the Xstep value+Le nombre écrit dans le pas des X est faux FenetreBornesJThere is a mistake on the Ystep value+Le nombre écrit dans le pas des Y est faux FenetreBornesHThere is a mistake on the Xmax value!Le nombre écrit en Xmax est faux FenetreBornesHThere is a mistake on the Xmin value!Le nombre écrit en Xmin est faux FenetreBornesHThere is a mistake on the Ymax value!Le nombre écrit en Ymax est faux FenetreBornesHThere is a mistake on the Ymin value!Le nombre écrit en Ymin est faux FenetreBornesdThe range is too small to be applied to the graph.ALes bornes sont trop petites pour être appliquées au graphique. FenetreBornesStandard view Vue standard FenetreBornes8Xmin must be lower than Xmax#Xmin doit être plus petit que Xmax FenetreBornes8Ymin must be lower than Ymax#Ymin doit être plus petit que Ymax FenetreBornesAddAjouterFenetreFonctions Add : Ajouter :FenetreFonctionsKeyboardClavierFenetreFonctions$Animation control:Contrôle de l'animation:FenetreFonctionsStraight lineDroiteFenetreFonctionsStraight linesDroitesFenetreFonctions6Straight lines and tangentsDroites et tangentesFenetreFonctionsFunctions FonctionsFenetreFonctionsFunctionsFonctions numériquesFenetreFonctionsFormFenetreFonctionsRefresh rate : Fréquence :FenetreFonctionsHzHzFenetreFonctionsParametric ParamètriqueFenetreFonctions"Increase period :Période d'incrémentation :FenetreFonctionsSequencesSuitesFenetreFonctionsSequencesSuites numériquesFenetreFonctionsTangentTangenteFenetreFonctionsDrawTracerFenetreFonctions*millisecond per step.millisecondes par pas.FenetreFonctionsms/stepms/pasFenetreFonctionsnmin =FenetreFonctionsWarning AttentionFenetreOptionsPAxes and background colors are identical0Les couleurs du fond et des axes sont identiquesFenetreOptionsPBackground and grid colors are identical6Les couleurs du fond et du quadrillage sont identiquesFenetreOptionscalls an invalid other function, or creates an infinite calling loop.M appelle une autre fonction invalide, ou qui forme une boucle d'appel infine.FuncCalculator ErrorErreurFuncCalculatorThe functon  La fonction FuncCalculator ErrorErreur FuncTable4Syntax error in this entry$Erreur de syntaxe dans cette entrée FuncTableFunction:  Fonction:  FuncTable digits chiffres ImageSave px px ImageSavex-axis : Abscisses : ImageSaveGraph's sizeCelle du graphique ImageSaveSave Enregistrer ImageSaveSave pictureEnregistrer une image ImageSaveHeight:Hauteur: ImageSave Width:Largeur: ImageSaveLegends Légendes ImageSaveNew size:Nouvelle taille: ImageSavey-axis : Ordonnées : ImageSavePrecision : Précision : ImageSavePicture's sizeTaille de l'image ImageSaveFont size :Taille de police : ImageSave&Initial conditions:Conditions initiales:IntegrationWidgetKeyboardClavierKeyboardDerivative DérivéeKeyboard RemoveEffacerKeyboardFunctionFonctionKeyboardIntegral PrimitiveKeyboard ClearViderKeyboard.rounds to lower integerarrondie à l'entier inférieurKeyboard.rounds to upper integerarrondie à l'entier supérieurKeyboardcoshKeyboardkKeyboardnKeyboardparameter paramètreKeyboardsquare rootracine carréeKeyboardsinhKeyboardsqrtKeyboardtanhKeyboard&function's variablevariable des fonctionsKeyboard&sequence's variablevariable des suitesKeyboard²KeyboardπKeyboardhDisplays graph's range editing window: Xmin, Xmax...WAffiche la fenêtre où l'on peut modifier les bornes de représentation: Xmin, Xmax... MainWindow<Representation options window.JAffiche la fenêtre où l'on peut modifier les options de représentation. MainWindow.Shows functions window.XAffiche le fenêtre où l'on peut écrire les expressions des fonctions à représenter. MainWindowFShows a virtual numerical keyboard.&Affiche un clavier numérique virtuel. MainWindow.Table of values window.JAffiche une fenêtre contenant le tableau de valeurs pour chaque fonction. MainWindowShow/Hide gridAfficher/Cacher le quadrillage MainWindow&Show/Hide the grid.Afficher/Cacher le quadrillage. MainWindow"Orthonormal basisBase orthonormale MainWindow RangeBornes MainWindow$Numerical keyboardClavier numérique MainWindowSave picture...Enregistrer image... MainWindow8Save the graph on a picture.(Enregistrer le graphique dans une image. MainWindowWindows Fenêtres MainWindowFileFichier MainWindowFunctions Fonctions MainWindow.Print or export in PDF.3Imprimer ou exporter le graphique vers fichier PDF. MainWindowPrint... Imprimer... MainWindowPreferencesOptions MainWindow ToolsOutils MainWindow Quit.Quitte l'application. MainWindowQuitQuitter MainWindowTable of valuesTableau de valeurs MainWindowAbout... à Propos... MainWindow End: Fin: ParConfWidget Step: Pas: ParConfWidgetAnimateAnimer ParConfWidget Start:Début: ParConfWidgetKeep tracksGarder la trace ParConfWidgetRange of Réglages du paramètre  ParConfWidget*Parametric equation: Equation paramètrique:  ParEqTable ErrorErreur ParEqTable4Syntax error in this entry$Erreur de syntaxe dans cette entrée ParEqTable ErrorErreur ParEqWidgetStep value for "k" parameter is not compatible with entered range, in parametric equationqLa valeur du pas du paramètre k est incompatible avec l'intervalle saisi, dans l'équation paramétrique (P ParEqWidgetStep value for "t" parameter is not compatible with entered range, in parametric equationiLa valeur du pas du paramètre t est incompatible avec l'intervalle saisi, dans l'équation paramétrique ParEqWidgetfToo many points to calculate on parametric equation>Trop de points sont à calculer pour l'équation paramétrique ParEqWidgetcm cmPrintcm/unit cm/unitéPrint dpi pppPrint......Printx-axis : Abscisses :PrintAbscissa: Abscisses:PrintRSelect a directory to create the file on.@Aucun emplacement n'a été saisi pour le fichier PDF à créer.Print&Screen's resolutionCelle de l'écranPrintColor type: Coloration :Print ColorCouleurPrintCreate PDF Créer un PDFPrintSave EnregistrerPrint ErrorErreurPrint Graph GraphiquePrint HeightHauteurPrintPrinting: Impression:PrintPrinter: Imprimante :Print PrintImprimerPrint WidthLargeurPrintLegends LégendesPrintGrayscaleNiveaux de grisPrintCopies number:Nombre de copies :Printy-axis : Ordonnées :PrintOrdinate: Ordonées:Print"Page orientation: Orientation:Print$Global parameters:Paramètres globaux:PrintLandscapePaysagePrintPortraitPortraitPrintPrecision : Précision :PrintCustom: Prédifinie:Print*Non-orthonormal basisRepère non orthonormalPrint"Orthonormal basisRepère orthonormalPrintResolution: Résolution:PrintFont size :Taille de police :PrintGraph's size:Taille du graphique:Print6On a file (PDF, PostScript)!dans un fichier (PDF, PostScript)PrintOn a papersur une feuillePrint Scale: Échelle:Print calls  appelle QObject6 with a non integer value.  avec un paramètre non entier.QObject@ asks for a undefined term from " demande un terme non existant de QObject ErrorErreurQObject\The asked term is smaller than n<sub>min</sub>6Le rang demandé étant plus petit que nminQObject^Wrong recurrence relation entered for sequence 5Mauvaise relation de récurence saisie pour la suite QObjectbInsufficient number of initial term for sequence 4Nombre de premiers termes insuffisant pour la suite QObject ErrorErreur SeqCalculator`Error while calculating first terms of sequence 6Erreur dans le calcul des premiers termes de la suite  SeqCalculatorfError while calculating initial terms for sequence ?Erreur dans le calcul des premiers termes saisis pour la suite  SeqCalculatorError between two sequences who calls each other, one of them is /Erreur dans les appels entre deux suites, dont  SeqCalculatorError between two sequences who calls each other, one of them is /Erreur dans les appels entre deux suites. dont  SeqCalculatornSyntax error on the entered initial terms for sequence DErreur de syntaxe lors de la saisie des premiers termes de la suite  SeqCalculatorNNote: terms must be separated with ';' 5Note: ces termes doivent être séparés par des ';'  SeqCalculator ErrorErreurSeqTableError while calculating this sequence's terms, changing "k" value might solve the error.Erreur dans le calcul des termes de cette suite paramètrique, changer la valeur du paramètre pourrait résoudre le problème.SeqTable4Syntax error in this entry$Erreur de syntaxe dans cette entréeSeqTableSequence: Suite: SeqTablexYou must enter an integer value greater that n<sub>min</sub>@Vous devez saisir un nombre entier supérieur à nminSeqTable ErrorErreurStraightLineWidget,Error on straight lineErreur dans la droiteStraightLineWidgetrx and y coefficients must not be zeroes at the same time.JLes coeficients des variables x et y ne peuvent être nuls simultanèment.StraightLineWidget Choosen functionFonction choisie TangentWidgetis invalidInvalide TangentWidgetWith k =Pour k = TangentWidgetin: a =en: a = TangentWidgettangent to : tangente à : TangentWidget Apply AppliquerValuesTableConfCells number :Cases :ValuesTableConfEmpty cells : Cases vides :ValuesTableConf Start:Début:ValuesTableConf&Parametric equationEquation paramétriqueValuesTableConf ErrorErreurValuesTableConf:Syntax error on start value.+Erreur de saisie dans la valeur de départ.ValuesTableConf6Syntax error on step value.'Erreur de saisie dans la valeur du pas.ValuesTableConfFunctionFonctionValuesTableConffStart values must be greater than n<sub>min</sub>. ?La valeur de départ doit être supérieure à nmin.ValuesTableConf>Start value must be an integer.*La valeur de départ doit être un entier.ValuesTableConf8Step value must be positive..La valeur du pas doit être un entier positif.ValuesTableConfManul entry. Manuellement.ValuesTableConf Name :Nom :ValuesTableConf Step:Pas:ValuesTableConfPredefined PrédéfinisValuesTableConfSequenceSuiteValuesTableConf Type :Type :ValuesTableConfEntry values :Valeurs d'entrée :ValuesTableConfGraphs values.Valeurs du graphique.ValuesTableConf(Please select a nameVeuillez selectionner un nomValuesTableConf(Please select a typeVeuillez selectionner un typeValuesTableConf<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Cantarell'; font-size:11pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:14pt; font-weight:600;">ZeGrapher 2.0</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:12pt;">Based on Qt 4.8.4</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:12pt;">Distributed under GPL license version 3</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"><br /></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:12pt;">Official website : </span><a href="http://zegrapher.com"><span style=" font-family:'Sans'; font-size:12pt; text-decoration: underline; color:#0000ff;">zegrapher.com</span></a></p></body></html>>

ZeGrapher 2.0


Basé sur Qt 4.8.4

Distribué sous licence GPL version 3



Site officiel: zegrapher.com

apropos CloseFermeraproposAbout... À Propos...apropos<html><head/><body><p><span style=" font-weight:600;">Curve's quality:</span></p></body></html>d

Qualité des courbes:

fenetreoptions<html><head/><body><p><span style=" font-weight:600;">Font size:</span></p></body></html>c

Taille de la police:

fenetreoptions8<strong>Axes color:</strong>"Couleur des axes:fenetreoptionsD<strong>Background color:</strong>!Couleur du fond:fenetreoptions8<strong>Grid color:</strong>(Couleur du quadrillage:fenetreoptionsF<strong>Curve's thickness:</strong>'Epaisseur des courbes:fenetreoptionsD<strong>Curve's smoothing</strong>%Lissage des courbes:fenetreoptions Apply AppliquerfenetreoptionsPreferencesOptionsfenetreoptions<Numbers font size on the graph-Taille des nombres affichés sur le graphiquefenetreoptions$Distance in pixelsdistance en pixelsfenetreoptions|Higher value for higher quality, lower value for higher speed.Hla qualité est améliorée au détriment de la vitesse, et inversement.fenetreoptionsSize in pixelstaille en pixelsfenetreoptionszegrapher-2.0.orig/src/qcolorbutton.h0000644000175000017500000000255312105437153020200 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #ifndef QCOLORBUTTON_H #define QCOLORBUTTON_H #include class QColorButton : public QPushButton { Q_OBJECT public: explicit QColorButton(QColor color = Qt::black); void setColor(QColor color); QColor getCurrentColor(); signals: void colorChanged(QColor color); protected slots: void openColorDialog(); protected: QColor currentColor; }; #endif // QCOLORBUTTON_H zegrapher-2.0.orig/src/funcwidget.cpp0000644000175000017500000001262112105437153020134 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #include "funcwidget.h" static double fipart(double x) { if(x < 0) { return ceil(x); } else { return floor(x); } } FuncWidget::FuncWidget(QChar name, int id, QColor color, QWidget *parentWindow) : AbstractFuncWidget(), colorSaver(color) { funcName = name; funcNum = id; colorButton->setColor(color); secondColorButton->setColor(color); isExprParametric = areCalledFuncsParametric = false; calculator = new FuncCalculator(id, QString(name), parentWindow); calculator->setColorSaver(&colorSaver); connect(&colorSaver, SIGNAL(colorsChanged()), this, SIGNAL(drawStateChanged())); connect(drawCheckBox, SIGNAL(released()), this, SIGNAL(drawStateChanged())); nameLabel->setText(QString(name) + "(x) ="); connect(colorButton, SIGNAL(colorChanged(QColor)), &colorSaver, SLOT(setFristColor(QColor))); connect(secondColorButton, SIGNAL(colorChanged(QColor)), &colorSaver, SLOT(setLastColor(QColor))); connect(expressionLineEdit, SIGNAL(textChanged(QString)), this, SLOT(resetToNeutralPalette())); connect(drawCheckBox, SIGNAL(toggled(bool)), calculator, SLOT(setDrawState(bool))); connect(expressionLineEdit, SIGNAL(textChanged(QString)), this, SLOT(checkExprLineEdit())); connect(expressionLineEdit, SIGNAL(textChanged(QString)), this, SLOT(checkCalledFuncsParametric())); } void FuncWidget::resetToNeutralPalette() { expressionLineEdit->setPalette(neutralPalette); } void FuncWidget::checkCalledFuncsParametric() { bool oldAreCalledFuncsParametric = areCalledFuncsParametric; areCalledFuncsParametric = false; QList calledFuncs = treeCreator.getCalledFuncs(expressionLineEdit->text()); for(int i = 0 ; i < calledFuncs.size() && !areCalledFuncsParametric ; i++) areCalledFuncsParametric = areCalledFuncsParametric || funcWidgets[calledFuncs[i]]->isFuncParametric(); if(oldAreCalledFuncsParametric != areCalledFuncsParametric) updateParametricState(); } void FuncWidget::setFuncsCalcsList(QList list) { integrationWidget = new IntegrationWidget(funcNum, list); connect(expressionLineEdit, SIGNAL(textChanged(QString)), integrationWidget, SLOT(updateWidgetsShownState(QString))); connect(integrationWidget, SIGNAL(returnPressed()), this, SIGNAL(returnPressed())); secondContainerLayout->addWidget(integrationWidget); integrationWidget->hide(); kConfWidget->setFuncsList(list); connect(expressionLineEdit, SIGNAL(textChanged(QString)), integrationWidget, SLOT(updateWidgetsShownState(QString))); } void FuncWidget::updateParametricState() { bool oldParState = isParametric; isParametric = isExprParametric || areCalledFuncsParametric; kConfWidget->setShown(isParametric); secondColorButton->setShown(isParametric); if(oldParState != isParametric) emit newParametricState(funcNum); } void FuncWidget::checkExprLineEdit() { expressionLineEdit->setPalette(neutralPalette); bool oldIsExprParametric = isExprParametric; isExprParametric = expressionLineEdit->text().contains('k'); if(oldIsExprParametric != isExprParametric) updateParametricState(); } void FuncWidget::setFuncWidgets(QList widgets) { funcWidgets = widgets; } bool FuncWidget::isFuncParametric() { return isParametric; } FuncCalculator* FuncWidget::getCalculator() { return calculator; } void FuncWidget::firstValidation() { if(expressionLineEdit->text().isEmpty()) { isValid = false; calculator->setInvalid(); return; } isValid = calculator->validateExpression(expressionLineEdit->text()); calculator->setParametric(isParametric); if(kConfWidget->isVisible()) kConfWidget->validate(); Range range = kConfWidget->getRange(); calculator->setParametricRange(range); colorSaver.setCurvesNum(fipart((range.end - range.start)/range.step) + 1); if(isValid) expressionLineEdit->setPalette(validPalette); else expressionLineEdit->setPalette(invalidPalette); isValid = isValid && validateIntegrationPoints() && (!isParametric || kConfWidget->isValid()); } bool FuncWidget::validateIntegrationPoints() { bool ok = true; calculator->setIntegrationPointsList(integrationWidget->getIntegrationPoints(ok)); calculator->setIntegrationPointsValidity(ok); return ok; } void FuncWidget::secondValidation() { if(!isValid) return; calculator->checkFuncCallingInclusions(); } zegrapher-2.0.orig/src/apropos.cpp0000644000175000017500000000243212105437153017457 0ustar georgeskgeorgesk/**************************************************************************** ** Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project ** ** This file is part of the ZeGrapher project, version 2.0. ** ** ZeGrapher is free software: you may copy, redistribute and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation, either version 3 of the License, or (at your ** option) any later version. ** ** This file is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #include "apropos.h" #include "ui_apropos.h" apropos::apropos(QWidget *parent) : QWidget(parent), ui(new Ui::apropos) { ui->setupUi(this); ui->logo->setPixmap(QPixmap(":/icons/logoLogiciel.png")); setWindowIcon(QIcon(":/icons/logoLogiciel.png")); setFixedSize(size()); } apropos::~apropos() { delete ui; } zegrapher-2.0.orig/src/fenetreoptions.ui0000644000175000017500000002567011753743510020711 0ustar georgeskgeorgesk fenetreoptions 0 0 233 284 16777215 16777215 Options :/icons/logoLogiciel.png:/icons/logoLogiciel.png 5 2 Qt::Horizontal 0 0 16777215 50 la qualité est améliorée au détriment de la vitesse, et inversement. <html><head/><body><p><span style=" font-weight:600;">Qualité des courbes:</span></p></body></html> <strong>Epaisseur des courbes:</strong> <strong>Couleur des axes:</strong> <strong>Couleur du fond:</strong> <strong>Lissage des courbes:</strong> 20 20 true false 25 25 25 25 background-color: black; 25 25 25 25 background-color: white; 40 25 distance en pixels 1 10 5 40 25 1 5 <strong>Couleur du quadrillage:</strong> 25 25 background-color: gray; Taille des nombres affichés sur le graphique <html><head/><body><p><span style=" font-weight:600;">Taille de la police:</span></p></body></html> 40 25 taille en pixels 8 16 11 Qt::Horizontal Qt::Horizontal Qt::Horizontal Qt::Horizontal Qt::Horizontal Qt::Horizontal Qt::Horizontal Qt::Horizontal Qt::Horizontal Qt::Horizontal Qt::Horizontal Qt::Horizontal 40 20 Appliquer zegrapher-2.0.orig/READ ME0000644000175000017500000000144312105437374015427 0ustar georgeskgeorgeskZeGrapher a mathematical function plotting , for more informations, please visit http://zegrapher.com/ The source code is distributed under the GNU GPL version 3 license. To know more about your rights, please visit http://www.gnu.org/copyleft/gpl.html ################################ Compilation: ################################ Before starting, you need to have the Qt framework installed (version >= 4.7), if not, download it from http://qt.nokia.com/products/ Then open a command prompt: (under windows, you may have to use "Qt command prompt") cd /ZeGrapher/target/.../src qmake -config release (on linux, it may be qmake-qt4) make ##################################################################### Copyright (c) 2013, Adel Kara Slimane, the ZeGrapher project zegrapher-2.0.orig/LISEZ MOI0000644000175000017500000000165712105437353015731 0ustar georgeskgeorgeskZeGrapher est un logiciel de tracé de courbes de fonctions mathématiques. Pour en savoir plus, visitez http://zegrapher.com/ Le code source ci-joint est distribué sous licence GNU GPL version 3. Pour plus d'informations sur vos droits, visitez http://fr.wikipedia.org/wiki/Licence_publique_générale_GNU/ ################################ Compilation: ################################ Vous devez avoir préalablement installé le framework Qt (version >= 4.7), si ce n'est pas le cas, c'est ici http://qt.nokia.com/products/ Pour compiler les sources, ouvrez une boîte de dialogue, puis entrez: (sous windows, vous devez ouvrir la boite de dialogue de Qt) $ cd /chemin/vers/le/dossier/ZeGrapher/src $ qmake -config release (sous linux, ce peut être qmake-qt4) $ make ############################################################################ Copyright (c) 2013, Adel Kara Slimane, le projet ZeGrapher