diff --git a/openbr/core/common.h b/openbr/core/common.h index 09c171e..056dbaa 100644 --- a/openbr/core/common.h +++ b/openbr/core/common.h @@ -116,15 +116,24 @@ T Max(const QList &vals) } /*! + * \brief Returns the sum of a vector of values. + */ +template class V, typename T> +double Sum(const V &vals) +{ + double sum = 0; + foreach (T val, vals) sum += val; + return sum; +} + +/*! * \brief Returns the mean and standard deviation of a vector of values. */ template class V, typename T> double Mean(const V &vals) { if (vals.isEmpty()) return 0; - double sum = 0; - foreach (T val, vals) sum += val; - return sum / vals.size(); + return Sum(vals) / vals.size(); } /*! diff --git a/openbr/core/plot.cpp b/openbr/core/plot.cpp index 2054d44..4781ab0 100644 --- a/openbr/core/plot.cpp +++ b/openbr/core/plot.cpp @@ -249,6 +249,7 @@ bool Plot(const QStringList &files, const File &destination, bool show) qDebug("Plotting %d file(s) to %s", files.size(), qPrintable(destination)); const bool minimalist = destination.getBool("minimalist"); + const bool uncertainty = destination.get("uncertainty"); // Use a br::file for simple storage of plot options File cmcOpts; @@ -297,7 +298,7 @@ bool Plot(const QStringList &files, const File &destination, bool show) QString(" + theme(aspect.ratio=1)\n\n"))); p.file.write(qPrintable(QString("ggplot(CMC, aes(x=X, y=Y%1%2)) + ggtitle(\"%3\") + xlab(\"Rank\") + ylab(\"Retrieval Rate\")").arg(p.major.size > 1 ? QString(" ,colour=factor(%1)").arg(p.major.header) : QString(), p.minor.size > 1 ? QString(", linetype=factor(%1)").arg(p.minor.header) : QString(), cmcOpts.get("title",QString())) + - QString(((p.major.smooth || p.minor.smooth) ? (minimalist ? " + stat_summary(geom=\"line\", fun.y=mean, size=%1)" : " + stat_summary(geom=\"line\", fun.y=min, aes(linetype=\"Min/Max\"), size=%1) + stat_summary(geom=\"line\", " + QString(((p.major.smooth || p.minor.smooth) ? (!uncertainty ? " + stat_summary(geom=\"line\", fun.y=mean, size=%1)" : " + stat_summary(geom=\"line\", fun.y=min, aes(linetype=\"Min/Max\"), size=%1) + stat_summary(geom=\"line\", " "fun.y=max, aes(linetype=\"Min/Max\"), size=%1) + stat_summary(geom=\"line\", fun.y=mean, aes(linetype=\"Mean\"), size=%1) + scale_linetype_manual(\"Legend\", values=c(\"Mean\"=1, \"Min/Max\"=2))") : " + geom_line(size=%1)")).arg(QString::number(cmcOpts.get("thickness",1))) + (minimalist ? "" : " + scale_x_log10(labels=c(1,5,10,50,100), breaks=c(1,5,10,50,100)) + annotation_logticks(sides=\"b\")") + (p.major.size > 1 ? getScale("colour", "Algorithm", p.major.size) : QString()) + @@ -311,7 +312,7 @@ bool Plot(const QStringList &files, const File &destination, bool show) QString(", xlab=\"False Accept Rate\", ylab=\"True Accept Rate\") + theme_minimal()") + (p.major.size > 1 ? getScale("fill", "Algorithm", p.major.size) : QString()) + (p.minor.size > 1 ? QString(" + facet_grid(%2 ~ X)").arg(p.minor.header) : QString(" + facet_grid(. ~ X, labeller=far_labeller)")) + - QString(" + scale_y_continuous(labels=percent) + theme(legend.position=\"none\", axis.text.x=element_text(angle=-90, hjust=0))%1").arg((p.major.smooth || p.minor.smooth) ? "" : " + geom_text(data=BC, aes(label=Y, y=0.05))\n\n"))); + QString(" + scale_y_continuous(labels=percent) + theme(legend.position=\"none\", axis.text.x=element_text(angle=-90, hjust=0))%1").arg((p.major.smooth || p.minor.smooth) ? "" : " + geom_text(data=BC, aes(label=Y, y=0.05))") + "\n\n")); p.file.write(qPrintable(QString("qplot(X, Y, data=ERR%1, linetype=Error").arg((p.major.smooth || p.minor.smooth) ? ", geom=\"smooth\", method=loess, level=0.99" : ", geom=\"line\"") + ((p.flip ? p.major.size : p.minor.size) > 1 ? QString(", colour=factor(%1)").arg(p.flip ? p.major.header : p.minor.header) : QString()) + diff --git a/openbr/core/qtutils.cpp b/openbr/core/qtutils.cpp index c7046b5..53ab3c4 100644 --- a/openbr/core/qtutils.cpp +++ b/openbr/core/qtutils.cpp @@ -31,6 +31,7 @@ #include "alphanum.hpp" #include "qtutils.h" +#include "opencvutils.h" using namespace br; @@ -429,7 +430,7 @@ QString toString(const QVariant &variant) QString::number(rect.y()), QString::number(rect.width()), QString::number(rect.height())); - } + } else if (variant.canConvert()) return OpenCVUtils::matrixToString(variant.value()); return QString(); } @@ -446,6 +447,21 @@ QString toString(const QVariantList &variantList) return QString(); } +QString toString(const QMap &variantMap) +{ + QStringList variants; + + QMapIterator i(variantMap); + while (i.hasNext()) { + i.next(); + variants.append(i.key() + "=" + toString(i.value())); + } + + if (!variants.isEmpty()) return "[" + variants.join(", ") + "]"; + + return QString(); +} + QString toTime(int s) { int h = s / (60*60); diff --git a/openbr/core/qtutils.h b/openbr/core/qtutils.h index 256b968..5c11416 100644 --- a/openbr/core/qtutils.h +++ b/openbr/core/qtutils.h @@ -75,6 +75,7 @@ namespace QtUtils /**** Variant Utilities ****/ QString toString(const QVariant &variant); QString toString(const QVariantList &variantList); + QString toString(const QVariantMap &QVariantMap); template QVariantList toVariantList(const QList &list) diff --git a/openbr/openbr_plugin.cpp b/openbr/openbr_plugin.cpp index c2d9f34..7430fa8 100644 --- a/openbr/openbr_plugin.cpp +++ b/openbr/openbr_plugin.cpp @@ -950,7 +950,7 @@ float br::Context::progress() const void br::Context::setProperty(const QString &key, const QString &value) { - Object::setProperty(key, value.isEmpty() ? QVariant() : value); + Object::setProperty(key, value.isEmpty() ? QVariant(true) : value); qDebug("Set %s%s", qPrintable(key), value.isEmpty() ? "" : qPrintable(" to " + value)); if (key == "parallelism") { diff --git a/openbr/plugins/filter.cpp b/openbr/plugins/filter.cpp index 54b96d4..c57ca1c 100644 --- a/openbr/plugins/filter.cpp +++ b/openbr/plugins/filter.cpp @@ -45,7 +45,8 @@ class GammaTransform : public UntrainableTransform void project(const Template &src, Template &dst) const { - LUT(src, lut, dst); + if (src.m().depth() == CV_8U) LUT(src, lut, dst); + else pow(src, gamma, dst); } }; diff --git a/openbr/plugins/independent.cpp b/openbr/plugins/independent.cpp index f6ca991..6f0b539 100644 --- a/openbr/plugins/independent.cpp +++ b/openbr/plugins/independent.cpp @@ -23,6 +23,7 @@ static TemplateList Downsample(const TemplateList &templates, int classes, int i instances = abs(instances); QList allLabels = File::get(templates, inputVariable); + QList uniqueLabels = allLabels.toSet().toList(); qSort(uniqueLabels); diff --git a/openbr/plugins/misc.cpp b/openbr/plugins/misc.cpp index ec36bd1..320e179 100644 --- a/openbr/plugins/misc.cpp +++ b/openbr/plugins/misc.cpp @@ -424,6 +424,36 @@ BR_REGISTER(Transform, RenameFirstTransform) /*! * \ingroup transforms + * \brief Add any ground truth to the template using the file's base name. + * \author Josh Klontz \cite jklontz + */ +class GroundTruthTransform : public UntrainableMetaTransform +{ + Q_OBJECT + Q_PROPERTY(QString groundTruth READ get_groundTruth WRITE set_groundTruth RESET reset_groundTruth STORED false) + Q_PROPERTY(QStringList keys READ get_keys WRITE set_keys RESET reset_keys STORED false) + BR_PROPERTY(QString, groundTruth, "") + BR_PROPERTY(QStringList, keys, QStringList()) + + QMap files; + + void init() + { + foreach (const File &file, TemplateList::fromGallery(groundTruth).files()) + files.insert(file.baseName(), file); + } + + void project(const Template &src, Template &dst) const + { + dst = src; + foreach(const QString &key, keys) dst.file.set(key,files[dst.file.baseName()].value(key)); + } +}; + +BR_REGISTER(Transform, GroundTruthTransform) + +/*! + * \ingroup transforms * \brief Change the br::Template::file extension * \author Josh Klontz \cite jklontz */ @@ -472,6 +502,29 @@ BR_REGISTER(Transform, RegexPropertyTransform) /*! * \ingroup transforms + * \brief Create matrix from metadata values. + * \author Josh Klontz \cite jklontz + */ +class ExtractMetadataTransform : public UntrainableMetaTransform +{ + Q_OBJECT + Q_PROPERTY(QStringList keys READ get_keys WRITE set_keys RESET reset_keys STORED false) + BR_PROPERTY(QStringList, keys, QStringList()) + + void project(const Template &src, Template &dst) const + { + dst.file = src.file; + QList values; + foreach (const QString &key, keys) + values.append(src.file.get(key)); + dst.append(OpenCVUtils::toMat(values, 1)); + } +}; + +BR_REGISTER(Transform, ExtractMetadataTransform) + +/*! + * \ingroup transforms * \brief Store the last matrix of the input template as a metadata key with input property name. * \author Charles Otto \cite caotto */ diff --git a/openbr/plugins/output.cpp b/openbr/plugins/output.cpp index 569b00d..f503c2f 100644 --- a/openbr/plugins/output.cpp +++ b/openbr/plugins/output.cpp @@ -371,15 +371,22 @@ BR_REGISTER(Output, EmptyOutput) class evalOutput : public MatrixOutput { Q_OBJECT + Q_PROPERTY(QString target READ get_target WRITE set_target RESET reset_target STORED false) + Q_PROPERTY(QString query READ get_query WRITE set_query RESET reset_query STORED false) Q_PROPERTY(bool crossValidate READ get_crossValidate WRITE set_crossValidate RESET reset_crossValidate STORED false) BR_PROPERTY(bool, crossValidate, true) + BR_PROPERTY(QString, target, QString()) + BR_PROPERTY(QString, query, QString()) ~evalOutput() { + if (!target.isEmpty()) targetFiles = TemplateList::fromGallery(target).files(); + if (!query.isEmpty()) queryFiles = TemplateList::fromGallery(query).files(); + if (data.data) { const QString csv = QString(file.name).replace(".eval", ".csv"); if ((Globals->crossValidate == 0) || (!crossValidate)) { - Evaluate(data,targetFiles, queryFiles, csv); + Evaluate(data, targetFiles, queryFiles, csv); } else { QFutureSynchronizer futures; for (int i=0; icrossValidate; i++) diff --git a/openbr/plugins/regions.cpp b/openbr/plugins/regions.cpp index b00f544..526e8cd 100644 --- a/openbr/plugins/regions.cpp +++ b/openbr/plugins/regions.cpp @@ -292,7 +292,7 @@ BR_REGISTER(Transform, CropRectTransform) /*! * \ingroup transforms - * \brief Create matrix from landmarks. + * \brief Create rect from landmarks. * \author Scott Klum \cite sklum * \todo Padding should be a percent of total image size */ @@ -313,7 +313,6 @@ class RectFromPointsTransform : public UntrainableTransform if (src.file.points().isEmpty()) { if (Globals->verbose) qWarning("No landmarks"); - dst = src; return; } @@ -355,6 +354,33 @@ BR_REGISTER(Transform, RectFromPointsTransform) /*! * \ingroup transforms + * \brief Create matrix from landmarks. + * \author Scott Klum \cite sklum + * \todo Padding should be a percent of total image size + */ + +class BoundingBoxTransform : public UntrainableTransform +{ + Q_OBJECT + + void project(const Template &src, Template &dst) const + { + dst = src; + + if (src.file.points().isEmpty()) { + if (Globals->verbose) qFatal("No landmarks"); + return; + } + + Rect boundingBox = boundingRect(OpenCVUtils::toPoints(src.file.points()).toVector().toStdVector()); + dst.file.appendRect(OpenCVUtils::fromRect(boundingBox)); + } +}; + +BR_REGISTER(Transform, BoundingBoxTransform) + +/*! + * \ingroup transforms * \brief Create face bounding box from two eye locations. `widthPadding` specifies * what percentage of the interpupliary distance (ipd) will be padded in both * horizontal directions. The `verticalLocation` specifies where vertically the diff --git a/openbr/plugins/svm.cpp b/openbr/plugins/svm.cpp index d24f674..ad4594f 100644 --- a/openbr/plugins/svm.cpp +++ b/openbr/plugins/svm.cpp @@ -74,7 +74,7 @@ static void trainSVM(SVM &svm, Mat data, Mat lab, int kernel, int type, float C, svm.train_auto(data, lab, Mat(), Mat(), params, 5); } catch (...) { qWarning("Some classes do not contain sufficient examples or are not discriminative enough for accurate SVM classification."); - svm.train(data, lab); + svm.train(data, lab, Mat(), Mat(), params); } } else { params.C = C; @@ -136,12 +136,12 @@ private: Mat data = OpenCVUtils::toMat(_data.data()); Mat lab; // If we are doing regression, the input variable should have float - // values + // values if (type == EPS_SVR || type == NU_SVR) { lab = OpenCVUtils::toMat(File::get(_data, inputVariable)); } // If we are doing classification, we should be dealing with discrete - // values. Map them and store the mapping data + // values. Map them and store the mapping data else { QList dataLabels = _data.indexProperty(inputVariable, labelMap, reverseLookup); lab = OpenCVUtils::toMat(dataLabels); @@ -161,7 +161,8 @@ private: dst.m().at(0, 0) = prediction; // positive values ==> first class // negative values ==> second class - prediction = prediction > 0 ? 0 : 1; + if (type != EPS_SVR && type != NU_SVR) + prediction = prediction > 0 ? 0 : 1; } if (type == EPS_SVR || type == NU_SVR) { dst.file.set(outputVariable, prediction); diff --git a/openbr/plugins/turk.cpp b/openbr/plugins/turk.cpp new file mode 100644 index 0000000..9bf8008 --- /dev/null +++ b/openbr/plugins/turk.cpp @@ -0,0 +1,307 @@ +#include "openbr_internal.h" +#include "openbr/core/common.h" +#include "openbr/core/opencvutils.h" +#include "openbr/core/qtutils.h" + +namespace br +{ + +/*! + * \ingroup galleries + * \brief For Amazon Mechanical Turk datasets + * \author Scott Klum \cite sklum + */ +class turkGallery : public Gallery +{ + Q_OBJECT + + struct Attribute : public QStringList + { + QString name; + Attribute(const QString &str = QString()) + { + const int i = str.indexOf('['); + name = str.mid(0, i); + if (i != -1) + append(str.mid(i+1, str.length()-i-2).split(",")); + } + + Attribute normalized() const + { + bool ok; + QList values; + foreach (const QString &value, *this) { + values.append(value.toFloat(&ok)); + if (!ok) + qFatal("Can't normalize non-numeric vector!"); + } + + Attribute normal(name); + float sum = Common::Sum(values); + if (sum == 0) sum = 1; + for (int i=0; i headers; + if (!lines.isEmpty()) + foreach (const QString &header, parse(lines.takeFirst())) + headers.append(header); + + TemplateList templates; + foreach (const QString &line, lines) { + QStringList words = parse(line); + if (words.size() != headers.size()) + qFatal("turkGallery invalid column count"); + + File f; + f.name = words[0]; + f.set("Label", words[0].mid(0,5)); + + for (int i=1; i 1 ? "+Cat" : "")); + } + + void train(const QList &data) + { + child->train(data); + } + + void project(const Template &src, Template &dst) const + { + child->project(src, dst); + } + + void store(QDataStream &stream) const + { + child->store(stream); + } + + void load(QDataStream &stream) + { + child->load(stream); + } +}; + +BR_REGISTER(Transform, TurkClassifierTransform) + +/*! + * \ingroup distances + * \brief Unmaps Turk HITs to be compared against query mats + * \author Scott Klum \cite sklum + */ +class TurkDistance : public Distance +{ + Q_OBJECT + Q_PROPERTY(QString key READ get_key WRITE set_key RESET reset_key) + Q_PROPERTY(QStringList values READ get_values WRITE set_values RESET reset_values STORED false) + BR_PROPERTY(QString, key, QString()) + BR_PROPERTY(QStringList, values, QStringList()) + + bool targetHuman; + bool queryMachine; + + void init() + { + targetHuman = Globals->property("TurkTargetHuman").toBool(); + queryMachine = Globals->property("TurkQueryMachine").toBool(); + } + + cv::Mat getValues(const Template &t) const + { + QList result; + foreach (const QString &value, values) + result.append(t.file.get(key + "_" + value)); + return OpenCVUtils::toMat(result, 1); + } + + float compare(const Template &target, const Template &query) const + { + const cv::Mat a = targetHuman ? getValues(target) : target.m(); + const cv::Mat b = queryMachine ? query.m() : getValues(query); + return -norm(a, b, cv::NORM_L1); + } +}; + +BR_REGISTER(Distance, TurkDistance) + +/*! + * \ingroup initializers + * \brief Initializes global abbreviations with implemented algorithms for attributes + * \author Babatunde Ogunfemi \cite baba1472 + */ +class AttributeAlgorithmsInitializer : public Initializer +{ + Q_OBJECT + + void initialize() const + { + // Constants + QString BASE="Open+PP5Register+Rename(PP5_Landmark0_Right_Eye,Affine_0)+Rename(PP5_Landmark1_Left_Eye,Affine_1)+Affine(192,240,.345,.475)+Cvt(Gray)+Stasm(false,true,[(66.24,114),(125.76,114)])"; + QString SUBSPACE ="Blur(1.1)+Gamma(0.2)+DoG(1,2)+ContrastEq(0.1,10)+LBP(1,2)+RectRegions(8,8,4,4)+Hist(59)+Cat+PCA(0.95)"; + + QString NOSE="RectFromStasmNoseWithBridge+ROI+Resize(36,24)+" + SUBSPACE; + QString MOUTH="RectFromStasmMouth+ROI+Resize(24,36)+" + SUBSPACE; + QString EYES="RectFromStasmEyes+ROI+Resize(24,36)+" + SUBSPACE; + QString HAIR="RectFromStasmHair+ROI+Resize(24,36)+" + SUBSPACE; + QString BROW="RectFromStasmBrow+ROI+Resize(24,36)+" + SUBSPACE; + QString JAW="RectFromStasmJaw+ROI+Resize(36,36)+" + SUBSPACE; + QString FACE = "Crop(24,30,144,190)+Resize(36,36)+" + SUBSPACE; + + // All Attributes + Globals->abbreviations.insert("AllAttributes", "AttributeBrow/AttributeMouth/AttributeEyes/AttributeFace/AttributeHair/AttributeNose/AttributeJaw"); + Globals->abbreviations.insert("AllAttributesMatching", "(AttributeBrow)/(AttributeMouth)/(AttributeEyes)/(AttributeFace)/(AttributeHair)/(AttributeNose)/(AttributeJaw):AttributeMatch"); + + //Individual Attributes + Globals->abbreviations.insert("AttributeBrow", "(" + BASE+ "+" + BROW + "+" + "TurkClassifier(eyebrowposition,[closebrows,highbrows],3)/" + "TurkClassifier(unibrow,[unibrow],3)/" + "TurkClassifier(eyebroworientation,[eyebrowsdown,eyebrowsuptodown],3)/" + "TurkClassifier(thickeyebrows,[thickeyebrows,lighteyebrows],3))"); + Globals->abbreviations.insert("AttributeMouth", "(" + BASE + "+" + MOUTH + "+" + "TurkClassifier(smiling,[smiling],3)/" + "TurkClassifier(lipthickness,[cherry,big,small],3)/" + "TurkClassifier(mouthbite,[underbite,overbite],3)/" + "TurkClassifier(mouthopen,[closed,noteeth,halfteeth,allteeth],3)/" + "TurkClassifier(mouthwidth,[small,wide],3)/" + "TurkClassifier(mustache,[nomustache,linemustache,lightmustache,normalmustache,down],3)/" + "TurkClassifier(mouthasymmetry,[asymmetrical],3))"); + Globals->abbreviations.insert("AttributeEyes", "(" + BASE + "+" + EYES + "+ " + "TurkClassifier(eyeseparation,[close,wide],3)/" + "TurkClassifier(eyeslant,[slant2,slant1,wild],3)/" + "TurkClassifier(benteyes,[bent])/" + "TurkClassifier(eyecolor,[darkeyes,lighteyes],3)/" + "TurkClassifier(baggyeyes,[baggy],3)/" + "TurkClassifier(almondeyes,[almond],3)/" + "TurkClassifier(buriedeyes,[buriedeyes],3)/" + "TurkClassifier(sleepyeyes,[sleepy],3)/" + "TurkClassifier(lineeyes,[line],3)/" + "TurkClassifier(roundeyes,[round],3)/" + "TurkClassifier(sharpeyes,[sharp],3)/" + "TurkClassifier(smalleyes,[smalleyes],3)/" + "TurkClassifier(glasses,[glasses],3)/" + "TurkClassifier(eyelashvisibility,[feweyelashes],3))"); + Globals->abbreviations.insert("AttributeFace", "(" + BASE + "+" + FACE + "+" + "TurkClassifier(gender,[male],3)/" + "TurkClassifier(faceshape,[round,triangular,rectangular],3)/" + "TurkClassifier(cheekdensity,[puffy,in,normal],3)/" + "TurkClassifier(facemarks,[scars,moles,normal],3)/" + "TurkClassifier(facelength,[long],3)/" + "TurkClassifier(nosetoeyedist,[short,long],3)/" + "TurkClassifier(nosetomouthdist,[long,small],3))"); + Globals->abbreviations.insert("AttributeHair", "(" + BASE + "+" + HAIR + "+" + "TurkClassifier(foreheadwrinkles,[wrinkled],3)/" + "TurkClassifier(foreheadsize,[smallforehead,largeforehead],3)/" + "TurkClassifier(haircolor,[darkhair,lighthair,greyhair],3)/" + "TurkClassifier(hairdensity,[thick,bald,thin,halfbald],3)/" + "TurkClassifier(widowspeak,[widowspeak],3)/" + "TurkClassifier(hairstyle,[curlyhair],3))"); + Globals->abbreviations.insert("AttributeNose", "(" + BASE + "+" + NOSE + "+" + "TurkClassifier(noseorientation,[upnose,downnose],3)/" + "TurkClassifier(nosewidth,[small,thick],3)/" + "TurkClassifier(nosesize,[smallnose,bignose],3)/" + "TurkClassifier(brokennose,[broken],3))"); + Globals->abbreviations.insert("AttributeJaw", "(" + BASE + "+" + JAW + "+" + "TurkClassifier(beard,[nobeard,bigbeard,lightbeard,goatee,linebeard,normalbeard,lincolnbeard],3)/" + "TurkClassifier(chinsize,[shortchin,longchin],3))"); + Globals->abbreviations.insert("AttributeMatch", "Fuse([" + "Turk(eyebrowposition,[closebrows,highbrows],3)," + "Turk(unibrow,[unibrow],3)," + "Turk(eyebroworientation,[eyebrowsdown,eyebrowsuptodown],3)," + "Turk(thickeyebrows,[thickeyebrows,lighteyebrows],3)," + "Turk(smiling,[smiling],3)," + "Turk(lipthickness,[cherry,big,small],3)," + "Turk(mouthbite,[underbite,overbite],3)," + "Turk(mouthopen,[closed,noteeth,halfteeth,allteeth],3)," + "Turk(mouthwidth,[small,wide],3)," + "Turk(mustache,[nomustache,linemustache,lightmustache,normalmustache,down],3)," + "Turk(mouthasymmetry,[asymmetrical],3)," + "Turk(eyeseparation,[close,wide],3)," + "Turk(eyeslant,[slant2,slant1,wild],3)," + "Turk(benteyes,[bent],3)," + "Turk(eyecolor,[darkeyes,lighteyes],3)," + "Turk(baggyeyes,[baggy],3)," + "Turk(almondeyes,[almond],3)," + "Turk(buriedeyes,[buriedeyes],3)," + "Turk(sleepyeyes,[sleepy],3)," + "Turk(lineeyes,[line],3)," + "Turk(roundeyes,[round],3)," + "Turk(sharpeyes,[sharp],3)," + "Turk(smalleyes,[smalleyes],3)," + "Turk(glasses,[glasses],3)," + "Turk(eyelashvisibility,[feweyelashes],3)," + "Turk(gender,[male],3)," + "Turk(faceshape,[round,triangular,rectangular],3)," + "Turk(cheekdensity,[puffy,in,normal],3)," + "Turk(facemarks,[scars,moles,normal],3)," + "Turk(facelength,[long],3)," + "Turk(nosetoeyedist,[short,long],3)," + "Turk(nosetomouthdist,[long,small],3)," + "Turk(foreheadwrinkles,[wrinkled],3)," + "Turk(foreheadsize,[smallforehead,largeforehead],3)," + "Turk(haircolor,[darkhair,lighthair,greyhair],3)," + "Turk(hairdensity,[thick,bald,thin,halfbald],3)," + "Turk(widowspeak,[widowspeak],3)," + "Turk(hairstyle,[curlyhair],3)," + "Turk(noseorientation,[upnose,downnose],3)," + "Turk(nosewidth,[small,thick],3)," + "Turk(nosesize,[smallnose,bignose],3)," + "Turk(brokennose,[broken],3)," + "Turk(beard,[nobeard,bigbeard,lightbeard,goatee,linebeard,normalbeard,lincolnbeard],3)," + "Turk(chinsize,[shortchin,longchin],3)])"); + } +}; + +BR_REGISTER(Initializer, AttributeAlgorithmsInitializer) + +} // namespace br + +#include "turk.moc" diff --git a/scripts/attributes.sh b/scripts/attributes.sh new file mode 100755 index 0000000..da21a64 --- /dev/null +++ b/scripts/attributes.sh @@ -0,0 +1,125 @@ +#!/bin/bash + +BASE="Open+PP5Register+Rename(PP5_Landmark0_Right_Eye,Affine_0)+Rename(PP5_Landmark1_Left_Eye,Affine_1)+Affine(192,240,.345,.475)+Cvt(Gray)+Stasm(false,true,[(66.24,114),(125.76,114)])" +SUBSPACE="Blur(1.1)+Gamma(0.2)+DoG(1,2)+ContrastEq(0.1,10)+LBP(1,2)+RectRegions(8,8,4,4)+Hist(59)+Cat+PCA(0.95)" + +NOSE="RectFromStasmNoseWithBridge+ROI+Resize(36,24)+$SUBSPACE" +MOUTH="RectFromStasmMouth+ROI+Resize(24,36)+$SUBSPACE" +EYES="RectFromStasmEyes+ROI+Resize(24,36)+$SUBSPACE" +HAIR="RectFromStasmHair+ROI+Resize(24,36)+$SUBSPACE" +BROW="RectFromStasmBrow+ROI+Resize(24,36)+$SUBSPACE" +JAW="RectFromStasmJaw+ROI+Resize(36,36)+$SUBSPACE" +FACE="Crop(24,30,144,190)+Resize(36,36)+$SUBSPACE" + +ATTDIR=Attributes +mkdir -p $ATTDIR + +# Provide a sensible default value for DATA if undefined +DATA=${DATA:-~/data/CUHK-VHDC} + +if [ ! -f $ATTDIR/all.model ]; then + br -crossValidate 2 -algorithm "CrossValidate($BASE+ \ + ($BROW+ \ + TurkClassifier(eyebrowposition,[closebrows,highbrows],3)/ \ + TurkClassifier(unibrow,[unibrow],3)/ \ + TurkClassifier(eyebroworientation,[eyebrowsdown,eyebrowsuptodown],3)/ \ + TurkClassifier(thickeyebrows,[thickeyebrows,lighteyebrows],3))/ \ + ($MOUTH+ \ + TurkClassifier(smiling,[smiling],3)/ \ + TurkClassifier(lipthickness,[cherry,big,small],3)/ \ + TurkClassifier(mouthbite,[underbite,overbite],3)/ \ + TurkClassifier(mouthopen,[closed,noteeth,halfteeth,allteeth],3)/ \ + TurkClassifier(mouthwidth,[small,wide],3)/ \ + TurkClassifier(mustache,[nomustache,linemustache,lightmustache,normalmustache,down],3)/ \ + TurkClassifier(mouthasymmetry,[asymmetrical],3))/ \ + ($EYES+ \ + TurkClassifier(eyeseparation,[close,wide],3)/ \ + TurkClassifier(eyeslant,[slant2,slant1,wild],3)/ \ + TurkClassifier(benteyes,[bent])/ \ + TurkClassifier(eyecolor,[darkeyes,lighteyes],3)/ \ + TurkClassifier(baggyeyes,[baggy],3)/ \ + TurkClassifier(almondeyes,[almond],3)/ \ + TurkClassifier(buriedeyes,[buriedeyes],3)/ \ + TurkClassifier(sleepyeyes,[sleepy],3)/ \ + TurkClassifier(lineeyes,[line],3)/ \ + TurkClassifier(roundeyes,[round],3)/ \ + TurkClassifier(sharpeyes,[sharp],3)/ \ + TurkClassifier(smalleyes,[smalleyes],3)/ \ + TurkClassifier(glasses,[glasses],3)/ \ + TurkClassifier(eyelashvisibility,[feweyelashes],3))/ \ + ($FACE+ \ + TurkClassifier(gender,[male],3)/ \ + TurkClassifier(faceshape,[round,triangular,rectangular],3)/ \ + TurkClassifier(cheekdensity,[puffy,in,normal],3)/ \ + TurkClassifier(facemarks,[scars,moles,normal],3)/ \ + TurkClassifier(facelength,[long],3)/ \ + TurkClassifier(nosetoeyedist,[short,long],3)/ \ + TurkClassifier(nosetomouthdist,[long,small],3))/ \ + ($HAIR+ \ + TurkClassifier(foreheadwrinkles,[wrinkled],3)/ \ + TurkClassifier(foreheadsize,[smallforehead,largeforehead],3)/ \ + TurkClassifier(haircolor,[darkhair,lighthair,greyhair],3)/ \ + TurkClassifier(hairdensity,[thick,bald,thin,halfbald],3)/ \ + TurkClassifier(widowspeak,[widowspeak],3)/ \ + TurkClassifier(hairstyle,[curlyhair],3))/ \ + ($NOSE+ \ + TurkClassifier(noseorientation,[upnose,downnose],3)/ \ + TurkClassifier(nosewidth,[small,thick],3)/ \ + TurkClassifier(nosesize,[smallnose,bignose],3)/ \ + TurkClassifier(brokennose,[broken],3))/ \ + ($JAW+ \ + TurkClassifier(beard,[nobeard,bigbeard,lightbeard,goatee,linebeard,normalbeard,lincolnbeard],3)/ \ + TurkClassifier(chinsize,[shortchin,longchin],3)) \ + ): \ +CrossValidate+Fuse([ \ +Turk(eyebrowposition,[closebrows,highbrows],3), \ +Turk(unibrow,[unibrow],3), \ +Turk(eyebroworientation,[eyebrowsdown,eyebrowsuptodown],3), \ +Turk(thickeyebrows,[thickeyebrows,lighteyebrows],3), \ +Turk(smiling,[smiling],3), \ +Turk(lipthickness,[cherry,big,small],3), \ +Turk(mouthbite,[underbite,overbite],3), \ +Turk(mouthopen,[closed,noteeth,halfteeth,allteeth],3), \ +Turk(mouthwidth,[small,wide],3), \ +Turk(mustache,[nomustache,linemustache,lightmustache,normalmustache,down],3), \ +Turk(mouthasymmetry,[asymmetrical],3), \ +Turk(eyeseparation,[close,wide],3), \ +Turk(eyeslant,[slant2,slant1,wild],3), \ +Turk(benteyes,[bent],3), \ +Turk(eyecolor,[darkeyes,lighteyes],3), \ +Turk(baggyeyes,[baggy],3), \ +Turk(almondeyes,[almond],3), \ +Turk(buriedeyes,[buriedeyes],3), \ +Turk(sleepyeyes,[sleepy],3), \ +Turk(lineeyes,[line],3), \ +Turk(roundeyes,[round],3), \ +Turk(sharpeyes,[sharp],3), \ +Turk(smalleyes,[smalleyes],3), \ +Turk(glasses,[glasses],3), \ +Turk(eyelashvisibility,[feweyelashes],3), \ +Turk(gender,[male],3), \ +Turk(faceshape,[round,triangular,rectangular],3), \ +Turk(cheekdensity,[puffy,in,normal],3), \ +Turk(facemarks,[scars,moles,normal],3), \ +Turk(facelength,[long],3), \ +Turk(nosetoeyedist,[short,long],3), \ +Turk(nosetomouthdist,[long,small],3), \ +Turk(foreheadwrinkles,[wrinkled],3), \ +Turk(foreheadsize,[smallforehead,largeforehead],3), \ +Turk(haircolor,[darkhair,lighthair,greyhair],3), \ +Turk(hairdensity,[thick,bald,thin,halfbald],3), \ +Turk(widowspeak,[widowspeak],3), \ +Turk(hairstyle,[curlyhair],3), \ +Turk(noseorientation,[upnose,downnose],3), \ +Turk(nosewidth,[small,thick],3), \ +Turk(nosesize,[smallnose,bignose],3), \ +Turk(brokennose,[broken],3), \ +Turk(beard,[nobeard,bigbeard,lightbeard,goatee,linebeard,normalbeard,lincolnbeard],3), \ +Turk(chinsize,[shortchin,longchin],3)])" \ +-path $DATA/CUFSF/target/ -train results1194v2.turk $ATTDIR/all.model +fi + +br -crossValidate 2 -path $DATA/CUFSF/target/ -algorithm $ATTDIR/all.model -compare results1194v2.turk results1194v2.turk $ATTDIR/all.mtx +br -crossValidate 2 -setHeader $ATTDIR/all.mtx $DATA/CUFSF/target.xml $DATA/CUFSF/query.xml +br -crossValidate 2 -convert Output $ATTDIR/all.mtx $ATTDIR/all_CUFSF%1.eval +br -plot $ATTDIR/all_CUFSF* results.pdf diff --git a/scripts/attributesTorque.sh b/scripts/attributesTorque.sh new file mode 100755 index 0000000..1b0543e --- /dev/null +++ b/scripts/attributesTorque.sh @@ -0,0 +1,106 @@ +#!/bin/bash + + +SUBSPACE=$1 +NAME=$2 +DATA=$3 + +ROOT=/data2/pattrec/home/bklare/src/openbr/scripts +BR="/data2/pattrec/home/bklare/src/openbr/build/app/br/br" +#SUBSPACE="CvtFloat+PCA(0.95)+Center(Range)" + +BASE="Open+PP5Register+Rename(PP5_Landmark0_Right_Eye,Affine_0)+Rename(PP5_Landmark1_Left_Eye,Affine_1)+Affine(192,240,.345,.475)+Cvt(Gray)+Stasm(false,true,[(66.24,114),(125.76,114)])" +NOSE="RectFromStasmNoseWithBridge+ROI+Resize(36,24)+$SUBSPACE" +MOUTH="RectFromStasmMouth+ROI+Resize(24,36)+$SUBSPACE" +EYES="RectFromStasmEyes+ROI+Resize(24,36)+$SUBSPACE" +HAIR="RectFromStasmHair+ROI+Resize(24,36)+$SUBSPACE" +BROW="RectFromStasmBrow+ROI+Resize(24,36)+$SUBSPACE" +JAW="RectFromStasmJaw+ROI+Resize(36,36)+$SUBSPACE" +FACE="Crop(24,30,144,190)+Resize(36,36)+$SUBSPACE" + +mkdir $NAME + +if [ ! -f $NAME/all.model ]; then + ${BR} -crossValidate 2 -algorithm "CrossValidate($BASE+ \ +($BROW+ \ +(Turk(unibrow,3)+SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=unibrow,outputVariable=predicted_unibrow)+Cat)/ \ +(Turk(eyebroworientation,3)+SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=eyebrowsdown,outputVariable=predicted_eyebrowsdown)/ \ +SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=eyebrowsuptodown,outputVariable=predicted_eyebrowsuptodown)+Cat)/ \ +(Turk(thickeyebrows,3)+SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=thickeyebrows,outputVariable=predicted_thickeyebrows)/ \ +SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=lighteyebrows,outputVariable=predicted_lighteyebrows)+Cat))/ \ +($MOUTH+ \ +(Turk(smiling,3)+SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=smiling,outputVariable=predicted_smiling)+Cat)/ \ +(Turk(mouthasymmetry,3)+SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=asymmetrical,outputVariable=predicted_asymmetrical)+Cat))/ \ +($EYES+ \ +(Turk(eyecolor,3)+SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=darkeyes,outputVariable=predicted_darkeyes)/ \ +SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=lighteyes,outputVariable=predicted_lighteyes)+Cat)/ \ +(Turk(baggyeyes,3)+SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=baggy,outputVariable=predicted_baggy)+Cat)/ \ +(Turk(almondeyes,3)+SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=almond,outputVariable=predicted_almond)+Cat)/ \ +(Turk(buriedeyes,3)+SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=buriedeyes,outputVariable=predicted_buriedeyes)+Cat)/ \ +(Turk(sleepyeyes,3)+SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=sleepy,outputVariable=predicted_sleepy)+Cat)/ \ +(Turk(lineeyes,3)+SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=line,outputVariable=predicted_line)+Cat)/ \ +(Turk(roundeyes,3)+SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=round,outputVariable=predicted_round)+Cat)/ \ +(Turk(smalleyes,3)+SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=smalleyes,outputVariable=predicted_smalleyes)+Cat)/ \ +(Turk(glasses,3)+SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=glasses,outputVariable=predicted_glasses)+Cat)/ \ +(Turk(eyelashvisibility,3)+SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=feweyelashes,outputVariable=predicted_feweyelashes)+Cat))/ \ +($FACE+ \ +(Turk(gender,3)+SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=male,outputVariable=predicted_male)+Cat)/ \ +(Turk(cheekdensity,3)+SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=puffy,outputVariable=predicted_puffy)/ \ +SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=in,outputVariable=predicted_in)/ \ +SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=normal,outputVariable=predicted_normal)+Cat)/ \ +(Turk(facemarks,3)+SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=scars,outputVariable=predicted_scars)/ \ +SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=moles,outputVariable=predicted_moles)/ \ +SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=normal,outputVariable=predicted_normal)+Cat)/ \ +(Turk(facelength,3)+SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=long,outputVariable=predicted_long)+Cat)/ \ +(Turk(nosetomouthdist,3)+SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=long,outputVariable=predicted_long)/ \ +SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=small,outputVariable=predicted_small)+Cat))/ \ +($HAIR+ \ +(Turk(foreheadwrinkles,3)+SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=wrinkled,outputVariable=predicted_wrinkled)+Cat)/ \ +(Turk(haircolor,3)+SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=darkhair,outputVariable=predicted_darkhair)/ \ +SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=lighthair,outputVariable=predicted_lighthair)/ \ +SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=greyhair,outputVariable=predicted_greyhair)+Cat)/ \ +(Turk(hairstyle,3)+SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=curlyhair,outputVariable=predicted_curlyhair)+Cat))/ \ +($NOSE+ \ +(Turk(noseorientation,3)+SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=upnose,outputVariable=predicted_upnose)/ \ +SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=downnose,outputVariable=predicted_downnose)+Cat)/ \ +(Turk(nosewidth,3)+SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=small,outputVariable=predicted_small)/ \ +SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=thick,outputVariable=predicted_thick)+Cat)/ \ +(Turk(nosesize,3)+SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=smallnose,outputVariable=predicted_smallnose)/ \ +SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=bignose,outputVariable=predicted_bignose)+Cat))/ \ +($JAW+ \ +(Turk(chinsize,3)+SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=shortchin,outputVariable=predicted_shortchin)/ \ +SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=longchin,outputVariable=predicted_longchin))+Cat)): \ +CrossValidate+Fuse([ \ +Turk(unibrow,[unibrow],3), \ +Turk(eyebroworientation,[eyebrowsdown,eyebrowsuptodown],3), \ +Turk(thickeyebrows,[thickeyebrows,lighteyebrows],3), \ +Turk(smiling,[smiling],3), \ +Turk(mouthasymmetry,[asymmetrical],3), \ +Turk(eyecolor,[darkeyes,lighteyes],3), \ +Turk(baggyeyes,[baggy],3), \ +Turk(almondeyes,[almond],3), \ +Turk(buriedeyes,[buriedeyes],3), \ +Turk(sleepyeyes,[sleepy],3), \ +Turk(lineeyes,[line],3), \ +Turk(roundeyes,[round],3), \ +Turk(smalleyes,[smalleyes],3), \ +Turk(glasses,[glasses],3), \ +Turk(cheekdensity,[puffy,in,normal],3), \ +Turk(facemarks,[scars,moles,normal],3), \ +Turk(facelength,[long],3), \ +Turk(nosetomouthdist,[long,small],3), \ +Turk(foreheadwrinkles,[wrinkled],3), \ +Turk(haircolor,[darkhair,lighthair,greyhair],3), \ +Turk(hairstyle,[curlyhair],3), \ +Turk(noseorientation,[upnose,downnose],3), \ +Turk(nosewidth,[small,thick],3), \ +Turk(nosesize,[smallnose,bignose],3), \ +Turk(chinsize,[shortchin,longchin],3)],indices=[0,1,2,3,4,5,6,7,8,9,10,11,12,13,16,17,18,19,20,21,22,23,24,25,26])" \ +-path $DATA/CUFSF/target/ -train results1194v2.turk $NAME/all.model +fi + +${BR} -crossValidate 2 -path $DATA/CUFSF/target/ -algorithm $NAME/all.model -compare results1194v2.turk results1194v2.turk $NAME/all.mtx + +${BR} -crossValidate 2 -setHeader $NAME/all.mtx $DATA/CUFSF/target.xml $DATA/CUFSF/query.xml +${BR} -crossValidate 2 -convert Output $NAME/all.mtx $NAME/all.rank +${BR} -crossValidate 2 -convert Output $NAME/all.mtx $NAME/all_CUFSF%1.eval diff --git a/scripts/attributesWeighted.py b/scripts/attributesWeighted.py new file mode 100644 index 0000000..14b97b2 --- /dev/null +++ b/scripts/attributesWeighted.py @@ -0,0 +1,27 @@ +import os +import sys + +if not (len(sys.argv)) == 3: + print("ERROR: Input requires 3 parameters\nUsage: attributesWeighted.py ") +else: + mask = "MEDS.mask" + fr_matrix = "faceRecognition.mtx" + attr_matrix = "attributes.mtx" + min_weight = sys.argv[1] + max_weight = sys.argv[2] + constant = 1 + + if not os.path.isfile(mask): + print("ERROR: No mask found, run compareFaceRecognitionToAttributes.py first then try again") + elif not os.path.isfile(fr_matrix): + print("ERROR: No face recognition matrix found, run compareFaceRecognitionToAttributes.py first then try again") + elif not os.path.isfile(attr_matrix): + print("ERROR: No attributes matrix found, run compareFaceRecognitionToAttributes.py first then try again") + else: + for i in range(int(min_weight), int(max_weight)): + print("Using weights " + str(i) + ":" + str(constant)) + os.system("br -fuse " + fr_matrix + " " + attr_matrix + " ZScore Sum" + str(i) + ":" + str(constant) + " weightedFusion.mtx") + os.system("br -eval weightedFusion.mtx " + mask + " weightedFusion.csv") + os.system("br -eval faceRecognition.mtx " + mask + " faceRecognition.csv") + os.system("br -eval attributes.mtx " + mask + " attributes.csv") + os.system("br -plot faceRecognition.csv attributes.csv weightedFusion.csv weightedFusion_" + str(i) + ".pdf") diff --git a/scripts/compareFaceRecognionToAttributes.py b/scripts/compareFaceRecognionToAttributes.py new file mode 100755 index 0000000..05cef60 --- /dev/null +++ b/scripts/compareFaceRecognionToAttributes.py @@ -0,0 +1,46 @@ +import os +import sys + +if not (len(sys.argv) == 2 or len(sys.argv) == 4): + print("ERROR: Input requires 1 or 3 input parameters\n Usage: compareFaceRecognitionToAttributes.py [optional]< >") +else: + data = sys.argv[1] + compareData = "../data/MEDS/img" + attrDir = "Attributes" + attrPath = attrDir + "/all.model" + mask = "MEDS.mask" + if len(sys.argv) == 4: + query = sys.argv[2] + target = sys.argv[3] + else: + query = "../data/MEDS/sigset/MEDS_frontal_query.xml" + target = "../data/MEDS/sigset/MEDS_frontal_target.xml" + + #Create Evaluation Mask + if not os.path.isfile(mask): + os.system("br -makeMask ../data/MEDS/sigset/MEDS_frontal_target.xml ../data/MEDS/sigset/MEDS_frontal_query.xml " + mask) + + #Train FaceRecognition Algorithm (Already trained from "make install") + #os.system("br -algorithm FaceRecognition -path " + data + " -train results1194v2.turk faceRecognition.model") + #Train Attributes Algorithm + if not os.path.isfile(attrPath): + os.system("mkdir -p " + attrDir) + os.system("br -algorithm AllAttributesMatching -path " + data + " -train results1194v2.turk " + attrPath) + + #Run FaceRecognition Comparison + os.system("br -path " + compareData + " -algorithm FaceRecognition -compare " + target + " " + query + " faceRecognition.mtx") + #Run Attributes Comparison + os.system("br -path " + compareData + " -TurkTargetHuman false -TurkQueryMachine true -algorithm " + attrPath + " -compare " + target + " " + query + " attributes.mtx") + + #Fuse the Matricies + os.system("br -fuse faceRecognition.mtx attributes.mtx ZScore Sum fusion.mtx") + + #Evaluate all three matricies + os.system("br -eval faceRecognition.mtx " + mask + " faceRecognition.csv") + os.system("br -eval attributes.mtx " + mask + " attributes.csv") + os.system("br -eval fusion.mtx " + mask + " faceRecognitionVSAttributes.csv") + + #Plot results + os.system("br -plot faceRecognition.csv faceRecognition.pdf") + os.system("br -plot attributes.csv attributes.pdf") + os.system("br -plot faceRecognition.csv attributes.csv faceRecognitionVSAttributes.csv faceRecognitionVSAttributes.pdf") diff --git a/scripts/results1194v2.turk b/scripts/results1194v2.turk new file mode 100644 index 0000000..039a2d7 --- /dev/null +++ b/scripts/results1194v2.turk @@ -0,0 +1,1195 @@ +imagename,almondeyes[normal,almond],baggyeyes[normal,baggy],beard[nobeard,bigbeard,lightbeard,goatee,linebeard,normalbeard,lincolnbeard],benteyes[bent,normal],brokennose[broken,normal],buriedeyes[buriedeyes,normal],cheekdensity[normal,puffy,in],chinsize[normalchin,shortchin,longchin],earpitch[normal,sticking,spoonears],earsize[small,normal,big],eyebroworientation[eyebrowsdown,eyebrowsstraight,eyebrowsuptodown],eyebrowposition[normalbrows,closebrows,highbrows],eyecolor[darkeyes,lighteyes,mediumeyes],eyelashvisibility[feweyelashes,moreeyelashes],eyeseparation[normal,close,wide],eyeslant[normal,slant2,slant1,wild],facelength[short,long],facemarks[normal,scars,moles],faceshape[round,triangular,rectangular],foreheadsize[normalforehead,smallforehead,largeforehead],foreheadwrinkles[normal,wrinkled],gender[male,female],glasses[normal,glasses],haircolor[darkhair,lighthair,greyhair],hairdensity[thick,bald,thin,halfbald],hairstyle[straight,curlyhair],lineeyes[normal,line],lipthickness[cherry,normal,big,small],mouthasymmetry[asymmetrical,normal],mouthbite[underbite,normal,overbite],mouthopen[closed,noteeth,halfteeth,allteeth],mouthwidth[normal,small,wide],mustache[nomustache,linemustache,lightmustache,normalmustache,down],neckthickness[normalneck,turkeyneck,noneck],noseorientation[normal,downnose,upnose],nosesize[smallnose,normalnose,bignose],nosetoeyedist[short,medium,long],nosetomouthdist[normal,long,small],nosewidth[small,normal,thick],roundeyes[normal,round],sharpeyes[normal,sharp],sleepyeyes[sleepy,normal],smalleyes[normal,smalleyes],smiling[normal,smiling],thickeyebrows[thickeyebrows,normaleyebrows,lighteyebrows],unibrow[normal,unibrow],widowspeak[normal,widowspeak] +00001fb010_930831.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[0,3],[0,3],[2,1],[2,0,1],[2,1,0],[2,0,1],[0,2,1],[2,1,0],[2,1,0],[0,1,2],[3,0],[2,1,0],[2,1,0,0],[3,0],[0,0,3],[2,0,1],[3,0,0],[0,3],[3,0],[0,3],[1,0,2],[3,0,0,0],[3,0],[2,1],[0,2,0,1],[0,3],[0,3,0],[3,0,0,0],[2,0,1],[2,0,1,0,0],[0,0,2],[0,3,0],[0,3,0],[0,2,1],[1,0,2],[3,0,0],[2,1],[3,0],[0,3],[3,0],[1,2],[0,2,1],[3,0],[3,0] +00002fa010_930831.tif,[2,1],[0,3],[3,0,0,0,0,0,0],[2,1],[0,3],[0,3],[0,0,3],[1,1,1],[1,2,0],[2,1,0],[0,3,0],[1,2,0],[0,3,0],[2,1],[2,1,0],[2,1,0,0],[0,3],[2,0,1],[0,1,2],[3,0,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[2,1],[0,1,0,2],[2,1],[0,3,0],[3,0,0,0],[1,2,0],[3,0,0,0,0],[2,0,1],[1,0,1],[2,1,0],[2,0,1],[2,0,1],[0,3,0],[2,1],[0,3],[0,3],[3,0],[3,0],[2,1,0],[0,3],[3,0] +00003fa010_930831.tif,[3,0],[3,0],[2,0,0,1,0,0,0],[1,2],[0,3],[1,2],[0,0,3],[1,0,2],[1,0,2],[0,1,2],[0,3,0],[1,1,1],[3,0,0],[2,1],[0,2,1],[2,1,0,0],[0,3],[3,0,0],[0,3,0],[1,0,2],[3,0],[3,0],[0,3],[2,0,1],[3,0,0,0],[1,2],[3,0],[1,1,1,0],[0,3],[0,3,0],[3,0,0,0],[2,0,1],[0,2,0,1,0],[2,0,1],[3,0,0],[0,0,3],[1,1,1],[1,1,1],[0,0,2],[2,1],[3,0],[0,3],[3,0],[3,0],[0,2,1],[3,0],[1,2] +00004fb010_930831.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[2,1],[1,2],[1,2],[1,0,2],[2,1,0],[2,0,1],[0,3,0],[1,2,0],[1,2,0],[2,0,1],[3,0],[2,1,0],[1,2,0,0],[2,1],[1,0,2],[2,1,0],[1,0,2],[1,2],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[0,3,0,0],[0,3],[0,3,0],[2,1,0,0],[1,2,0],[3,0,0,0,0],[3,0,0],[0,1,2],[2,1,0],[2,1,0],[1,2,0],[3,0,0],[2,1],[1,2],[1,2],[2,1],[3,0],[1,2,0],[3,0],[2,0] +00005fa010_930831.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[0,3],[2,1],[3,0],[1,0,2],[1,1,1],[3,0,0],[0,3,0],[2,1,0],[2,1,0],[2,0,1],[3,0],[3,0,0],[3,0,0,0],[1,2],[1,0,2],[0,0,3],[1,1,1],[0,3],[3,0],[3,0],[1,0,2],[0,0,3,0],[3,0],[2,1],[0,0,0,3],[3,0],[0,2,1],[3,0,0,0],[2,1,0],[3,0,0,0,0],[0,3,0],[3,0,0],[2,1,0],[1,2,0],[0,3,0],[2,1,0],[2,1],[3,0],[1,2],[2,1],[3,0],[0,2,1],[3,0],[3,0] +00006fb010_930831.tif,[2,1],[1,2],[2,0,0,1,0,0,0],[1,2],[1,2],[2,1],[2,1,0],[2,1,0],[2,1,0],[0,2,1],[2,1,0],[2,1,0],[0,3,0],[3,0],[1,1,1],[2,1,0,0],[2,1],[1,1,1],[3,0,0],[2,0,1],[0,3],[3,0],[1,2],[3,0,0],[0,0,3,0],[3,0],[3,0],[1,1,0,1],[0,3],[0,3,0],[3,0,0,0],[2,1,0],[0,0,0,3,0],[3,0,0],[3,0,0],[1,1,1],[0,2,1],[3,0,0],[0,3,0],[0,3],[2,1],[0,3],[3,0],[1,2],[0,1,2],[3,0],[2,1] +00007fb010_930831.tif,[3,0],[0,3],[3,0,0,0,0,0,0],[1,2],[0,3],[2,1],[0,1,2],[2,0,1],[1,2,0],[3,0,0],[0,3,0],[1,1,1],[3,0,0],[3,0],[3,0,0],[0,2,1,0],[3,0],[2,0,1],[1,1,1],[1,0,2],[3,0],[3,0],[0,3],[2,0,1],[0,0,2,1],[3,0],[2,1],[1,1,0,1],[0,3],[0,2,1],[3,0,0,0],[3,0,0],[3,0,0,0,0],[2,1,0],[0,3,0],[1,2,0],[2,1,0],[2,0,1],[0,3,0],[2,1],[0,3],[2,1],[1,2],[1,2],[2,1,0],[3,0],[2,1] +00008fa010_930831.tif,[2,1],[3,0],[1,0,2,0,0,0,0],[1,2],[0,3],[1,2],[1,2,0],[3,0,0],[3,0,0],[0,2,1],[0,2,1],[2,1,0],[1,0,2],[2,1],[0,0,3],[3,0,0,0],[3,0],[3,0,0],[3,0,0],[2,1,0],[3,0],[3,0],[0,3],[3,0,0],[3,0,0,0],[3,0],[3,0],[1,1,1,0],[1,2],[1,1,1],[0,1,2,0],[3,0,0],[0,2,0,1,0],[2,1,0],[1,0,2],[0,1,2],[2,1,0],[0,3,0],[0,2,1],[2,1],[1,2],[0,3],[1,2],[0,3],[3,0,0],[3,0],[2,1] +00009fb010_930831.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[0,0,3],[2,0,1],[2,0,1],[0,1,2],[0,1,2],[2,0,1],[3,0,0],[3,0],[2,1,0],[0,3,0,0],[1,2],[3,0,0],[0,3,0],[1,2,0],[2,1],[3,0],[0,3],[3,0,0],[2,0,0,0],[3,0],[3,0],[0,3,0,0],[2,1],[0,3,0],[1,2,0,0],[0,3,0],[1,0,2,0,0],[2,0,1],[2,1,0],[2,1,0],[1,1,1],[0,3,0],[2,1,0],[3,0],[2,1],[0,3],[0,3],[3,0],[2,0,1],[3,0],[2,1] +00010fb010_930831.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[1,2],[1,2],[0,3],[2,0,1],[1,2,0],[1,0,2],[0,1,2],[1,2,0],[2,1,0],[3,0,0],[2,1],[1,0,2],[2,1,0,0],[1,2],[2,0,1],[2,1,0],[3,0,0],[2,1],[3,0],[3,0],[3,0,0],[3,0,0,0],[1,2],[3,0],[1,1,0,1],[1,2],[0,2,1],[3,0,0,0],[2,1,0],[3,0,0,0,0],[3,0,0],[1,2,0],[3,0,0],[0,2,1],[0,2,1],[1,2,0],[3,0],[1,2],[3,0],[1,1],[2,1],[3,0,0],[3,0],[2,1] +00011fa010_930831.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[3,0],[2,1],[2,1],[1,2,0],[3,0,0],[3,0,0],[2,0,1],[1,2,0],[2,1,0],[1,0,2],[2,1],[2,0,1],[1,1,0,1],[3,0],[1,0,2],[3,0,0],[1,0,2],[1,2],[3,0],[0,3],[1,1,1],[3,0,0,0],[3,0],[1,2],[1,1,0,1],[2,1],[1,0,1],[0,2,1,0],[2,1,0],[3,0,0,0,0],[2,0,1],[2,0,1],[1,2,0],[2,1,0],[1,1,1],[0,3,0],[3,0],[1,2],[1,2],[0,3],[2,1],[1,1,1],[2,1],[3,0] +00012fb010_930831.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[2,1],[1,2],[3,0],[1,0,2],[2,1,0],[0,1,2],[0,1,2],[0,3,0],[1,0,2],[0,2,1],[3,0],[2,1,0],[2,0,1,0],[1,2],[2,1,0],[1,0,2],[1,2,0],[0,3],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,1],[1,1,1,0],[3,0],[0,1,2],[2,1,0,0],[2,0,1],[3,0,0,0,0],[1,0,2],[2,0,1],[0,2,1],[1,2,0],[2,1,0],[0,3,0],[2,1],[2,1],[1,2],[2,1],[0,3],[1,1,1],[1,2],[2,1] +00013fb010_930831.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[1,1],[1,2],[0,3],[0,3,0],[2,1,0],[3,0,0],[2,1,0],[0,3,0],[2,0,1],[1,1,1],[0,3],[0,1,2],[2,1,0,0],[1,2],[3,0,0],[1,0,2],[2,1,0],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[3,0],[3,0],[0,1,0,2],[1,2],[1,2,0],[3,0,0,0],[3,0,0],[3,0,0,0,0],[2,1,0],[2,0,1],[1,2,0],[0,2,1],[2,1,0],[1,2,0],[0,3],[2,1],[0,3],[3,0],[3,0],[0,3,0],[3,0],[2,1] +00014fa010_930831.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[1,2],[2,1],[3,0],[1,1,1],[2,0,1],[3,0,0],[0,3,0],[0,2,1],[2,1,0],[1,1,1],[3,0],[3,0,0],[2,1,0,0],[2,1],[0,1,2],[3,0,0],[0,0,3],[0,3],[3,0],[3,0],[1,1,1],[1,0,2,0],[3,0],[3,0],[0,3,0,0],[1,2],[1,2,0],[2,1,0,0],[2,1,0],[3,0,0,0,0],[1,0,2],[3,0,0],[1,2,0],[1,1,1],[2,1,0],[0,3,0],[3,0],[1,2],[1,2],[1,2],[3,0],[0,3,0],[3,0],[2,1] +00015fa010_930831.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[2,1,0],[1,0,2],[2,0,1],[2,1,0],[1,2,0],[0,3,0],[2,0,1],[2,1],[2,1,0],[2,0,0,1],[0,3],[2,0,1],[1,0,2],[2,0,1],[1,2],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[3,0],[2,0,1,0],[0,3],[0,3,0],[3,0,0,0],[2,1,0],[2,0,1,0,0],[1,0,2],[2,0,1],[0,1,2],[0,3,0],[3,0,0],[0,2,1],[1,2],[0,3],[0,3],[2,1],[2,1],[1,2,0],[3,0],[2,1] +00016fb010_930831.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[1,2],[0,3,0],[1,1,1],[2,1,0],[1,1,1],[1,2,0],[3,0,0],[2,0,1],[2,1],[1,0,2],[1,2,0,0],[3,0],[2,0,1],[3,0,0],[3,0,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[3,0,0,0],[1,2],[0,3,0],[3,0,0,0],[2,1,0],[3,0,0,0,0],[2,0,1],[1,0,2],[0,2,1],[2,1,0],[1,2,0],[0,3,0],[3,0],[3,0],[0,3],[3,0],[3,0],[0,1,2],[3,0],[3,0] +00017fa010_930831.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[0,3],[1,2],[1,2],[1,0,2],[3,0,0],[1,0,2],[1,0,2],[2,0,1],[2,1,0],[1,0,2],[0,3],[1,1,1],[3,0,0,0],[1,2],[2,0,1],[0,0,3],[1,2,0],[3,0],[3,0],[3,0],[2,1,0],[3,0,0,0],[1,2],[2,1],[0,1,0,2],[0,3],[0,3,0],[3,0,0,0],[3,0,0],[0,0,3,0,0],[3,0,0],[2,1,0],[2,1,0],[1,1,1],[1,0,2],[0,3,0],[1,2],[1,2],[0,3],[1,2],[3,0],[2,0,1],[3,0],[3,0] +00018fa010_930831.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[0,3],[0,3],[2,1],[1,1,1],[3,0,0],[2,0,1],[1,0,2],[0,3,0],[2,0,1],[1,2,0],[2,1],[0,2,1],[1,1,1,0],[3,0],[3,0,0],[0,0,3],[3,0,0],[3,0],[1,2],[3,0],[1,1,1],[3,0,0,0],[0,3],[3,0],[0,2,0,1],[0,3],[0,3,0],[3,0,0,0],[2,0,1],[3,0,0,0,0],[1,0,2],[1,1,1],[2,1,0],[1,1,1],[2,1,0],[2,1,0],[2,1],[2,1],[2,1],[0,3],[1,2],[0,2,1],[3,0],[3,0] +00019fa010_930831.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[2,1],[0,3],[1,2],[1,2,0],[0,1,2],[2,1,0],[1,2,0],[1,0,2],[2,0,1],[2,0,1],[2,1],[1,2,0],[2,1,0,0],[3,0],[2,0,1],[2,0,1],[3,0,0],[0,3],[3,0],[3,0],[3,0,0],[3,0,0,0],[0,3],[2,0],[0,2,1,0],[1,2],[1,1,1],[3,0,0,0],[1,0,2],[2,0,1,0,0],[1,1,1],[3,0,0],[2,1,0],[0,3,0],[1,1,1],[2,1,0],[3,0],[2,1],[2,1],[2,1],[3,0],[2,1,0],[2,1],[0,3] +00020fa010_930831.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[1,2],[1,2],[2,1],[2,0,1],[3,0,0],[1,2,0],[2,0,1],[1,2,0],[1,0,2],[3,0,0],[3,0],[3,0,0],[1,0,1,1],[1,2],[2,0,1],[1,1,1],[1,2,0],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[1,2],[2,1,0,0],[0,3],[0,3,0],[3,0,0,0],[1,2,0],[3,0,0,0,0],[2,0,1],[1,0,2],[1,2,0],[2,1,0],[0,3,0],[1,2,0],[3,0],[1,2],[1,2],[0,3],[3,0],[3,0,0],[3,0],[2,1] +00021fb010_930831.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[1,0,2],[2,1,0],[2,1,0],[1,2,0],[0,2,1],[1,1,1],[1,2,0],[2,1],[2,1,0],[1,2,0,0],[3,0],[2,0,1],[2,0,1],[1,1,1],[2,1],[0,3],[3,0],[0,3,0],[3,0,0,0],[0,3],[3,0],[0,3,0,0],[1,2],[1,2,0],[1,2,0,0],[1,0,2],[3,0,0,0,0],[2,1,0],[3,0,0],[0,2,1],[0,1,2],[2,0,1],[1,2,0],[0,3],[2,1],[0,3],[3,0],[1,2],[0,1,2],[2,1],[3,0] +00022fa010_930831.tif,[2,1],[0,3],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[2,1,0],[2,1,0],[2,0,1],[1,0,2],[2,1,0],[3,0,0],[3,0,0],[1,2],[1,0,2],[2,1,0,0],[1,2],[2,0,1],[3,0,0],[2,1,0],[3,0],[3,0],[2,1],[3,0,0],[3,0,0,0],[3,0],[3,0],[0,2,1,0],[2,1],[0,1,2],[3,0,0,0],[1,1,1],[2,0,1,0,0],[3,0,0],[2,1,0],[0,3,0],[0,2,1],[2,0,1],[1,1,1],[2,1],[2,1],[0,3],[3,0],[1,2],[3,0,0],[1,2],[2,1] +00023fa010_930831.tif,[3,0],[0,3],[0,0,0,0,0,3,0],[0,3],[1,2],[0,3],[3,0,0],[1,1,1],[1,2,0],[2,1,0],[0,3,0],[0,2,1],[2,0,1],[2,1],[1,2,0],[2,1,0,0],[3,0],[1,0,2],[1,0,2],[0,1,2],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[1,2],[3,0],[0,2,0,1],[2,1],[0,2,1],[3,0,0,0],[2,0,1],[0,0,0,2,1],[0,0,3],[1,2,0],[1,2,0],[0,3,0],[2,0,1],[2,1,0],[2,1],[1,2],[1,2],[2,1],[3,0],[1,2,0],[2,1],[2,1] +00024fa010_930831.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[2,1],[1,2],[3,0],[2,0,0],[0,1,2],[3,0,0],[0,1,2],[0,3,0],[2,1,0],[3,0,0],[2,1],[3,0,0],[2,0,1,0],[0,3],[3,0,0],[1,1,1],[2,0,1],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[0,3],[0,3],[2,1,0,0],[0,3],[0,2,1],[3,0,0,0],[3,0,0],[2,0,1,0,0],[2,0,1],[2,1,0],[0,1,2],[0,3,0],[1,2,0],[0,1,2],[3,0],[1,2],[1,2],[0,3],[1,2],[0,3,0],[3,0],[3,0] +00025fa010_930831.tif,[1,2],[3,0],[2,0,1,0,0,0,0],[3,0],[0,3],[0,3],[0,1,2],[2,0,1],[1,2,0],[2,1,0],[1,2,0],[1,2,0],[2,0,1],[1,2],[0,3,0],[3,0,0,0],[0,3],[1,0,2],[0,3,0],[1,0,2],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[2,1],[3,0,0,0],[1,2],[0,1,2],[3,0,0,0],[1,2,0],[0,0,3,0,0],[1,0,2],[3,0,0],[1,2,0],[1,0,2],[0,2,1],[2,1,0],[3,0],[2,1],[0,3],[2,1],[3,0],[3,0,0],[2,1],[2,1] +00026fa010_930831.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[2,1],[3,0,0],[1,1,1],[1,0,2],[0,2,1],[0,3,0],[0,0,3],[2,0,1],[1,2],[2,1,0],[1,1,0,1],[0,3],[0,1,2],[1,0,2],[2,1,0],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[0,3],[2,1],[0,2,0,1],[0,3],[0,3,0],[3,0,0,0],[1,2,0],[3,0,0,0,0],[1,0,2],[1,1,1],[2,1,0],[1,1,1],[0,3,0],[2,0,0],[3,0],[0,3],[1,2],[2,1],[3,0],[0,2,1],[3,0],[2,1] +00027fa010_930831.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[0,3],[1,2],[2,1],[0,0,3],[0,2,1],[0,0,3],[0,2,1],[1,2,0],[3,0,0],[0,3,0],[0,3],[2,1,0],[2,1,0,0],[2,1],[0,0,2],[0,0,3],[2,1,0],[3,0],[0,3],[3,0],[0,3,0],[3,0,0,0],[2,1],[3,0],[0,1,0,2],[0,3],[0,2,1],[3,0,0,0],[1,2,0],[3,0,0,0,0],[3,0,0],[2,0,1],[0,2,1],[0,3,0],[0,2,0],[0,3,0],[2,1],[1,2],[0,3],[3,0],[2,1],[1,0,2],[3,0],[2,1] +00028fb010_930831.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[0,3],[2,1],[1,2],[0,3,0],[2,0,1],[2,0,1],[1,2,0],[2,1,0],[0,2,1],[3,0,0],[2,1],[3,0,0],[1,1,0,1],[3,0],[2,1,0],[2,1,0],[1,2,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,1],[1,0,0,2],[2,1],[1,2,0],[3,0,0,0],[3,0,0],[0,0,0,3,0],[1,1,1],[2,1,0],[0,1,2],[0,2,1],[2,0,1],[0,3,0],[3,0],[1,2],[3,0],[2,1],[1,2],[1,1,1],[3,0],[2,1] +00029fa010_930831.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[2,1],[0,3],[2,1],[2,0,1],[2,1,0],[2,1,0],[1,1,1],[2,1,0],[1,0,2],[3,0,0],[2,1],[1,1,1],[0,3,0,0],[3,0],[1,0,2],[2,0,1],[2,1,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[1,1,0,1],[0,3],[0,3,0],[3,0,0,0],[0,3,0],[3,0,0,0,0],[3,0,0],[0,0,3],[0,3,0],[1,0,2],[1,2,0],[0,3,0],[3,0],[0,3],[0,3],[0,3],[3,0],[0,3,0],[3,0],[1,2] +00030fa010_930831.tif,[3,0],[2,1],[2,0,0,1,0,0,0],[1,2],[1,2],[1,2],[2,1,0],[3,0,0],[3,0,0],[0,2,1],[1,2,0],[2,1,0],[3,0,0],[3,0],[2,0,1],[2,0,1,0],[0,3],[3,0,0],[1,0,2],[2,1,0],[3,0],[3,0],[0,3],[1,0,1],[2,0,1,0],[2,1],[3,0],[0,1,0,2],[0,3],[1,2,0],[3,0,0,0],[3,0,0],[0,2,0,1,0],[3,0,0],[2,1,0],[2,1,0],[0,2,1],[2,1,0],[1,2,0],[1,2],[1,2],[0,3],[2,1],[3,0],[0,1,2],[3,0],[3,0] +00031fa010_930831.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[0,1,2],[3,0,0],[3,0,0],[2,1,0],[1,2,0],[0,0,3],[0,1,2],[2,1],[2,1,0],[3,0,0,0],[2,1],[3,0,0],[1,0,2],[1,2,0],[3,0],[0,3],[0,3],[0,1,2],[3,0,0,0],[3,0],[3,0],[0,1,0,2],[0,3],[0,3,0],[3,0,0,0],[2,0,1],[3,0,0,0,0],[2,0,1],[3,0,0],[1,2,0],[2,1,0],[0,2,1],[0,3,0],[1,2],[3,0],[0,3],[3,0],[2,1],[0,0,3],[3,0],[2,1] +00032fa010_930831.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[0,3],[0,3],[1,2],[1,0,2],[2,0,1],[0,3,0],[0,3,0],[1,1,1],[3,0,0],[3,0,0],[2,1],[0,1,2],[1,2,0,0],[3,0],[0,0,3],[1,0,2],[1,1,0],[3,0],[0,3],[0,3],[2,0,1],[3,0,0,0],[2,1],[3,0],[1,2,0,0],[2,1],[0,3,0],[2,1,0,0],[0,3,0],[3,0,0,0,0],[2,1,0],[0,0,3],[1,1,1],[2,1,0],[0,3,0],[0,3,0],[0,3],[2,1],[1,2],[3,0],[2,1],[0,2,1],[3,0],[3,0] +00033fa010_930831.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[0,3],[1,2],[1,2],[3,0,0],[0,1,2],[2,1,0],[2,1,0],[0,2,1],[2,0,1],[1,2,0],[2,1],[2,1,0],[2,1,0,0],[0,3],[1,1,1],[1,0,2],[0,0,3],[1,2],[0,3],[3,0],[1,2,0],[3,0,0,0],[3,0],[3,0],[0,2,0,1],[0,3],[0,3,0],[3,0,0,0],[1,2,0],[3,0,0,0,0],[2,0,1],[2,1,0],[1,1,1],[0,2,1],[3,0,0],[2,1,0],[2,1],[1,2],[0,3],[3,0],[3,0],[0,1,2],[3,0],[2,1] +00034fb010_930831.tif,[2,1],[2,1],[2,0,0,1,0,0,0],[3,0],[1,2],[0,3],[1,0,2],[3,0,0],[0,0,3],[0,2,1],[1,1,1],[0,2,1],[3,0,0],[2,1],[3,0,0],[1,1,1,0],[1,2],[3,0,0],[1,0,2],[1,0,2],[3,0],[3,0],[0,3],[0,0,3],[0,0,0,2],[2,1],[2,1],[0,3,0,0],[1,2],[0,3,0],[3,0,0,0],[3,0,0],[0,0,0,3,0],[3,0,0],[1,0,2],[0,0,3],[2,1,0],[1,0,2],[0,0,3],[2,0],[1,2],[2,1],[2,1],[1,2],[2,1,0],[2,1],[3,0] +00035fb010_930831.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[0,3],[1,2],[0,3],[1,1,1],[0,0,3],[2,1,0],[1,1,1],[1,2,0],[3,0,0],[2,1,0],[1,2],[2,0,0],[2,1,0,0],[1,2],[2,1,0],[0,1,2],[2,0,1],[1,2],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,1],[2,0,0,1],[0,3],[0,3,0],[3,0,0,0],[2,1,0],[1,0,2,0,0],[1,1,1],[0,0,3],[2,1,0],[1,2,0],[1,2,0],[2,1,0],[3,0],[2,1],[0,3],[1,2],[3,0],[0,3,0],[3,0],[3,0] +00036fa010_930831.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[0,3],[1,2],[0,3],[0,3,0],[1,1,1],[0,2,1],[1,2,0],[1,1,1],[2,1,0],[2,0,1],[3,0],[1,2,0],[1,2,0,0],[2,1],[0,0,3],[3,0,0],[1,0,2],[3,0],[3,0],[0,3],[3,0,0],[3,0,0,0],[3,0],[3,0],[0,2,0,1],[1,2],[0,3,0],[2,1,0,0],[1,2,0],[3,0,0,0,0],[1,0,2],[3,0,0],[0,3,0],[2,1,0],[1,1,1],[1,2,0],[2,1],[2,1],[2,1],[2,1],[2,1],[1,2,0],[2,1],[2,1] +00037fa010_930831.tif,[2,1],[2,1],[0,0,0,3,0,0,0],[0,3],[0,3],[1,2],[0,1,2],[0,0,3],[1,1,1],[1,2,0],[0,1,2],[2,0,1],[2,0,1],[1,2],[1,2,0],[3,0,0,0],[0,3],[2,1,0],[1,1,1],[2,1,0],[3,0],[2,1],[0,3],[1,0,2],[0,0,3,0],[2,1],[1,2],[0,2,0,1],[0,3],[0,3,0],[3,0,0,0],[3,0,0],[0,0,0,2,1],[2,0,1],[2,0,1],[0,3,0],[0,2,1],[2,1,0],[0,3,0],[3,0],[1,2],[0,3],[0,3],[3,0],[3,0,0],[3,0],[3,0] +00038fa010_930831.tif,[3,0],[3,0],[1,0,0,2,0,0,0],[0,3],[3,0],[0,3],[1,0,2],[3,0,0],[1,1,1],[0,2,1],[1,2,0],[0,3,0],[2,1,0],[0,3],[3,0,0],[1,1,0,1],[1,2],[3,0,0],[1,0,2],[2,1,0],[0,3],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[0,0,0,3],[0,3],[0,3,0],[3,0,0,0],[3,0,0],[0,0,0,3,0],[2,0,1],[0,3,0],[1,2,0],[0,1,2],[0,2,1],[2,1,0],[3,0],[1,2],[1,2],[3,0],[2,1],[3,0,0],[1,2],[3,0] +00039fa010_930831.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[1,2],[2,1],[1,2],[2,1,0],[3,0,0],[1,0,2],[0,1,2],[0,1,2],[3,0,0],[3,0,0],[0,3],[1,0,2],[3,0,0,0],[3,0],[0,0,3],[3,0,0],[2,0,1],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,1],[2,0,0,1],[0,3],[0,3,0],[3,0,0,0],[3,0,0],[3,0,0,0,0],[2,1,0],[3,0,0],[0,0,3],[1,1,1],[2,0,1],[0,0,3],[1,2],[1,2],[0,3],[3,0],[3,0],[3,0,0],[3,0],[0,3] +00040fa010_930831.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[1,0,2],[1,1,1],[2,1,0],[3,0,0],[3,0,0],[2,1,0],[1,1,1],[3,0],[2,1,0],[1,1,0,1],[1,2],[3,0,0],[1,1,1],[1,0,2],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[3,0],[1,1,0,1],[1,2],[0,2,0],[3,0,0,0],[1,1,1],[3,0,0,0,0],[3,0,0],[1,0,2],[2,1,0],[1,1,1],[1,2,0],[1,2,0],[2,1],[1,2],[0,3],[1,2],[1,2],[1,2,0],[2,1],[3,0] +00041fb010_930831.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[0,3],[1,2],[3,0],[0,0,3],[1,2,0],[1,2,0],[3,0,0],[1,2,0],[2,0,1],[2,0,1],[3,0],[1,0,2],[3,0,0,0],[1,2],[3,0,0],[2,0,1],[0,3,0],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[1,2],[3,0],[0,0,0,3],[2,1],[0,3,0],[3,0,0,0],[1,2,0],[3,0,0,0,0],[2,1,0],[1,2,0],[0,3,0],[0,2,1],[0,0,3],[1,2,0],[3,0],[2,1],[1,2],[2,1],[3,0],[1,1,1],[3,0],[3,0] +00042fa010_930831.tif,[3,0],[0,3],[0,1,0,0,0,2,0],[1,2],[0,3],[1,2],[3,0,0],[1,0,2],[0,3,0],[3,0,0],[1,2,0],[0,3,0],[2,0,1],[1,2],[0,1,2],[3,0,0,0],[2,1],[2,0,1],[1,1,1],[0,1,2],[0,3],[3,0],[3,0],[1,0,2],[3,0,0,0],[1,2],[2,1],[1,0,0,2],[0,3],[0,2,1],[3,0,0,0],[2,0,1],[0,0,0,1,2],[0,0,3],[3,0,0],[1,2,0],[1,1,1],[3,0,0],[2,1,0],[2,1],[2,1],[0,3],[3,0],[2,1],[0,2,1],[3,0],[1,2] +00043fb001d_931230.tif,[1,2],[0,3],[3,0,0,0,0,0,0],[2,1],[0,3],[0,3],[1,0,2],[0,2,1],[3,0,0],[2,1,0],[0,3,0],[3,0,0],[1,0,2],[1,2],[0,2,1],[3,0,0,0],[0,3],[3,0,0],[1,2,0],[3,0,0],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[1,2],[3,0],[1,2,0,0],[1,2],[1,1,1],[3,0,0,0],[3,0,0],[3,0,0,0,0],[3,0,0],[3,0,0],[0,3,0],[1,2,0],[0,3,0],[0,3,0],[1,2],[1,2],[0,3],[3,0],[3,0],[0,1,2],[3,0],[2,1] +00044fa001d_931230.tif,[0,3],[1,2],[3,0,0,0,0,0,0],[1,2],[1,2],[3,0],[2,1,0],[1,2,0],[0,3,0],[3,0,0],[0,3,0],[1,0,2],[2,0,1],[3,0],[2,0,1],[0,3,0,0],[3,0],[3,0,0],[1,0,2],[3,0,0],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[3,0],[2,1],[0,2,1,0],[2,1],[0,3,0],[3,0,0,0],[0,3,0],[3,0,0,0,0],[0,2,1],[2,0,1],[1,0,2],[1,1,1],[2,1,0],[0,0,3],[3,0],[1,2],[1,2],[0,3],[1,2],[0,1,2],[3,0],[2,1] +00045fa001d_931230.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[2,1],[0,3],[3,0],[2,0,1],[2,0,1],[1,2,0],[3,0,0],[0,2,1],[0,0,3],[3,0,0],[3,0],[2,0,1],[1,1,1,0],[2,1],[3,0,0],[1,1,1],[2,1,0],[3,0],[0,3],[0,3],[2,1,0],[3,0,0,0],[3,0],[2,1],[0,3,0,0],[0,3],[0,3,0],[3,0,0,0],[1,2,0],[3,0,0,0,0],[0,2,1],[3,0,0],[1,2,0],[1,2,0],[0,3,0],[0,3,0],[3,0],[0,3],[2,1],[0,3],[3,0],[1,2,0],[3,0],[2,1] +00046fa001d_931230.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[2,1],[0,3],[2,1],[0,0,3],[0,3,0],[1,0,2],[1,1,1],[0,3,0],[1,0,2],[2,1,0],[3,0],[1,1,1],[0,2,1,0],[0,3],[3,0,0],[1,1,1],[2,0,1],[3,0],[3,0],[3,0],[2,1,0],[3,0,0,0],[3,0],[3,0],[0,3,0,0],[1,2],[0,2,1],[3,0,0,0],[0,2,0],[1,0,2,0,0],[3,0,0],[3,0,0],[1,2,0],[1,2,0],[1,2,0],[0,3,0],[1,2],[1,2],[1,2],[0,3],[3,0],[0,0,3],[3,0],[3,0] +00047fa001d_931230.tif,[0,3],[2,1],[3,0,0,0,0,0,0],[0,3],[0,3],[0,2],[3,0,0],[0,3,0],[3,0,0],[0,3,0],[3,0,0],[2,0,1],[3,0,0],[3,0],[1,0,2],[2,1,0,0],[2,1],[3,0,0],[3,0,0],[3,0,0],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[2,1],[3,0],[0,2,0,1],[1,2],[1,0,1],[1,1,1,0],[1,0,2],[3,0,0,0,0],[2,0,1],[1,0,2],[0,2,1],[1,1,1],[2,1,0],[1,1,1],[2,1],[3,0],[0,3],[3,0],[2,1],[0,0,3],[3,0],[2,1] +00048fa001d_931230.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[2,1],[0,3],[0,3],[2,1,0],[3,0,0],[2,1,0],[1,2,0],[1,1,1],[1,1,1],[3,0,0],[1,2],[1,1,1],[1,2,0,0],[3,0],[1,0,2],[3,0,0],[3,0,0],[3,0],[3,0],[0,3],[3,0,0],[3,0,0,0],[0,3],[3,0],[1,2,0,0],[0,3],[0,1,2],[3,0,0,0],[0,3,0],[3,0,0,0,0],[1,2,0],[3,0,0],[0,0,3],[0,3,0],[2,1,0],[0,2,1],[3,0],[2,1],[1,2],[1,2],[3,0],[1,2,0],[2,1],[3,0] +00049fa001d_931230.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[1,2],[3,0,0],[2,1,0],[0,0,3],[0,0,3],[1,1,1],[1,1,1],[1,2,0],[3,0],[0,0,3],[1,1,0,1],[2,1],[1,0,2],[0,0,3],[0,3,0],[3,0],[3,0],[3,0],[2,1,0],[3,0,0,0],[3,0],[3,0],[0,3,0,0],[0,3],[0,2,1],[3,0,0,0],[1,2,0],[3,0,0,0,0],[3,0,0],[0,0,3],[2,1,0],[1,2,0],[2,1,0],[1,2,0],[3,0],[3,0],[0,3],[0,3],[2,1],[2,0,1],[0,3],[2,1] +00050fa001d_931230.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[2,1],[0,3],[1,2],[3,0,0],[0,1,2],[1,2,0],[3,0,0],[0,3,0],[3,0,0],[1,0,2],[3,0],[1,1,1],[2,0,1,0],[1,2],[3,0,0],[1,0,2],[0,0,3],[3,0],[3,0],[3,0],[0,1,2],[1,0,2,0],[3,0],[1,2],[1,2,0,0],[0,3],[0,2,1],[3,0,0,0],[1,2,0],[3,0,0,0,0],[2,0,1],[3,0,0],[2,1,0],[2,1,0],[1,2,0],[2,1,0],[2,1],[1,2],[2,1],[1,2],[3,0],[0,2,1],[3,0],[2,1] +00051fa001d_931230.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[0,0,3],[2,1,0],[0,0,3],[0,0,3],[0,1,2],[2,1,0],[2,0,1],[3,0],[0,2,1],[2,1,0,0],[2,1],[3,0,0],[0,1,2],[3,0,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[1,2],[3,0],[3,0,0,0],[1,2],[0,2,1],[3,0,0,0],[1,2,0],[3,0,0,0,0],[3,0,0],[1,0,2],[3,0,0],[1,2,0],[1,2,0],[1,2,0],[3,0],[0,3],[0,3],[1,2],[3,0],[0,3,0],[2,1],[0,3] +00052fa001d_931230.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[1,2],[1,2],[0,3],[0,1,2],[1,2,0],[2,1,0],[1,2,0],[0,2,1],[2,1,0],[1,0,2],[0,3],[1,2,0],[3,0,0,0],[0,3],[2,0,1],[0,3,0],[1,0,2],[3,0],[0,3],[3,0],[1,2,0],[1,0,2,0],[3,0],[2,1],[1,1,0,1],[0,3],[0,2,1],[3,0,0,0],[3,0,0],[2,0,0,0,1],[2,0,1],[1,1,1],[0,3,0],[1,1,1],[0,3,0],[2,1,0],[0,3],[3,0],[0,3],[3,0],[3,0],[0,1,2],[3,0],[2,1] +00053fb001d_931230.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[3,0],[1,2],[1,2],[1,1,1],[3,0,0],[1,2,0],[3,0,0],[1,1,1],[1,1,1],[1,1,1],[1,2],[3,0,0],[2,0,1,0],[2,1],[1,1,1],[2,0,1],[1,1,1],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[2,1],[3,0],[1,0,0,2],[0,3],[0,2,1],[0,3,0,0],[2,1,0],[3,0,0,0,0],[1,0,1],[3,0,0],[0,3,0],[2,1,0],[2,0,1],[1,2,0],[2,1],[2,1],[0,3],[2,1],[2,1],[0,1,2],[3,0],[3,0] +00054fa001d_931230.tif,[2,1],[0,3],[3,0,0,0,0,0,0],[1,2],[1,2],[3,0],[2,1,0],[1,2,0],[2,0,1],[0,1,2],[1,2,0],[3,0,0],[2,0,1],[2,1],[2,0,1],[1,2,0,0],[3,0],[3,0,0],[3,0,0],[1,2,0],[3,0],[3,0],[0,3],[3,0,0],[3,0,0,0],[3,0],[3,0],[1,2,0,0],[0,3],[1,1,1],[3,0,0,0],[2,1,0],[3,0,0,0,0],[2,0,1],[2,1,0],[0,1,2],[0,3,0],[2,1,0],[0,0,3],[3,0],[1,2],[0,3],[0,3],[2,1],[3,0,0],[3,0],[3,0] +00055fa001d_931230.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[0,3],[0,3],[2,1],[0,0,3],[2,0,1],[2,0,1],[3,0,0],[0,3,0],[0,0,3],[2,0,1],[3,0],[1,1,1],[0,3,0,0],[2,1],[3,0,0],[1,1,1],[0,2,1],[3,0],[3,0],[0,3],[3,0,0],[3,0,0,0],[3,0],[2,1],[0,3,0,0],[0,3],[0,2,1],[3,0,0,0],[0,3,0],[3,0,0,0,0],[3,0,0],[2,0,1],[0,2,1],[2,0,1],[2,1,0],[0,2,1],[3,0],[1,2],[1,2],[0,3],[3,0],[0,2,1],[3,0],[2,1] +00056fa001d_931230.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[1,2],[2,1],[1,2],[0,0,3],[1,0,2],[0,0,3],[0,3,0],[0,3,0],[3,0,0],[1,0,2],[3,0],[2,1,0],[1,0,1,1],[0,3],[2,0,1],[1,1,1],[2,0,1],[3,0],[3,0],[3,0],[2,1,0],[3,0,0,0],[1,2],[2,0],[0,2,0,1],[1,2],[0,3,0],[3,0,0,0],[3,0,0],[3,0,0,0,0],[3,0,0],[1,1,1],[0,2,1],[0,0,3],[1,2,0],[2,1,0],[3,0],[0,3],[1,2],[0,3],[0,3],[1,2,0],[1,2],[3,0] +00057fa001d_931230.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[2,1],[1,0,2],[1,1,1],[2,1,0],[3,0,0],[1,1,0],[3,0,0],[3,0,0],[2,0],[3,0,0],[3,0,0,0],[0,3],[0,0,3],[0,3,0],[2,1,0],[3,0],[0,3],[3,0],[0,3,0],[3,0,0,0],[3,0],[3,0],[1,1,0,1],[0,3],[1,2,0],[3,0,0,0],[1,2,0],[3,0,0,0,0],[2,1,0],[0,1,2],[3,0,0],[1,2,0],[0,3,0],[3,0,0],[2,1],[0,3],[0,3],[1,2],[3,0],[0,2,1],[3,0],[2,1] +00058fa001d_931230.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[2,1,0],[2,1,0],[1,2,0],[2,1,0],[0,3,0],[3,0,0],[2,0,1],[2,1],[2,0,1],[0,0,3,0],[3,0],[3,0,0],[3,0,0],[1,1,1],[3,0],[2,1],[2,1],[2,1,0],[3,0,0,0],[3,0],[1,2],[0,2,1,0],[0,3],[0,2,1],[2,1,0,0],[3,0,0],[3,0,0,0,0],[2,1,0],[3,0,0],[0,0,3],[2,0,1],[2,0,1],[0,1,2],[3,0],[0,3],[2,1],[0,3],[2,1],[2,1,0],[3,0],[2,1] +00059fb001d_931230.tif,[2,1],[2,1],[0,0,3,0,0,0,0],[0,3],[1,2],[2,1],[1,1,1],[2,1,0],[0,3,0],[1,0,2],[1,2,0],[1,2,0],[0,2,1],[2,1],[2,0,1],[3,0,0,0],[3,0],[3,0,0],[2,0,1],[1,0,2],[3,0],[3,0],[3,0],[1,2,0],[3,0,0,0],[0,3],[2,1],[1,1,0,1],[0,3],[0,3,0],[3,0,0,0],[0,3,0],[1,0,2,0,0],[1,1,1],[0,3,0],[2,0,1],[1,2,0],[0,3,0],[2,1,0],[2,1],[2,1],[0,3],[1,2],[2,1],[1,0,1],[3,0],[3,0] +00060fa001d_931230.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[3,0,0],[2,0,1],[0,3,0],[3,0,0],[1,2,0],[1,0,2],[1,0,2],[1,2],[3,0,0],[2,1,0,0],[3,0],[3,0,0],[2,0,1],[2,0,1],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[3,0],[2,0],[2,0,0,1],[0,3],[0,2,0],[2,1,0,0],[2,1,0],[3,0,0,0,0],[1,0,2],[3,0,0],[0,2,1],[0,3,0],[1,0,2],[0,2,1],[2,1],[1,2],[0,3],[2,1],[2,1],[0,3,0],[3,0],[3,0] +00061fb001d_931230.tif,[2,1],[0,3],[3,0,0,0,0,0,0],[2,1],[0,3],[2,1],[1,1,1],[3,0,0],[0,2,0],[3,0,0],[0,3,0],[0,0,3],[2,0,1],[3,0],[1,1,1],[0,3,0,0],[3,0],[3,0,0],[0,1,2],[0,2,1],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[3,0],[0,3,0,0],[2,1],[0,2,1],[3,0,0,0],[2,1,0],[3,0,0,0,0],[2,0,1],[1,0,2],[2,0,1],[0,3,0],[1,2,0],[0,2,1],[2,1],[0,3],[1,2],[1,2],[0,3],[0,1,2],[3,0],[3,0] +00062fb001d_931230.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[0,3],[0,3],[2,1],[0,1,2],[0,3,0],[1,1,0],[3,0,0],[0,2,1],[1,1,1],[0,3,0],[2,1],[2,0,1],[2,0,0,1],[2,1],[2,0,1],[0,1,2],[2,1,0],[3,0],[3,0],[3,0],[1,2,0],[3,0,0,0],[3,0],[1,1],[0,1,0,2],[1,2],[0,3,0],[3,0,0,0],[1,2,0],[3,0,0,0,0],[1,0,2],[3,0,0],[1,2,0],[1,2,0],[1,2,0],[2,1,0],[2,1],[1,2],[0,3],[0,3],[3,0],[3,0,0],[0,3],[3,0] +00063fa001d_931230.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[1,2,0],[1,1,1],[1,2,0],[1,2,0],[0,1,2],[2,1,0],[2,1,0],[3,0],[0,2,1],[3,0,0,0],[0,3],[1,0,2],[1,0,2],[1,1,1],[3,0],[3,0],[3,0],[3,0,0],[2,0,0,0],[2,1],[3,0],[0,3,0,0],[0,3],[0,2,1],[3,0,0,0],[2,1,0],[3,0,0,0,0],[2,0,1],[2,0,1],[0,2,1],[1,1,1],[3,0,0],[0,3,0],[2,1],[3,0],[0,3],[2,1],[3,0],[2,1,0],[3,0],[2,1] +00064fa001d_931230.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[3,0],[0,3],[1,2],[2,0,1],[3,0,0],[3,0,0],[0,0,3],[1,2,0],[3,0,0],[1,1,1],[0,3],[3,0,0],[0,0,2,1],[0,3],[2,0,1],[1,0,2],[1,1,1],[3,0],[3,0],[2,1],[2,1,0],[3,0,0,0],[3,0],[0,3],[0,0,0,3],[3,0],[2,0,1],[0,3,0,0],[2,0,1],[3,0,0,0,0],[1,0,2],[2,0,1],[2,1,0],[1,1,1],[0,3,0],[2,1,0],[3,0],[1,2],[3,0],[0,3],[0,3],[0,2,1],[3,0],[3,0] +00065fb001d_931230.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[1,2],[2,1],[0,3],[2,0,1],[2,1,0],[3,0,0],[0,2,1],[0,3,0],[1,2,0],[0,3,0],[0,3],[1,1,1],[3,0,0,0],[0,3],[2,0,1],[0,2,1],[2,0,1],[3,0],[0,3],[3,0],[0,2,1],[3,0,0,0],[0,3],[2,1],[0,0,0,3],[3,0],[0,3,0],[3,0,0,0],[0,3,0],[3,0,0,0,0],[2,0,1],[1,0,2],[2,1,0],[3,0,0],[0,3,0],[2,1,0],[0,3],[1,2],[0,3],[3,0],[3,0],[0,0,3],[3,0],[3,0] +00066fa001d_931230.tif,[3,0],[1,2],[0,0,0,0,0,3,0],[1,2],[0,3],[1,2],[2,1,0],[1,2,0],[0,3,0],[3,0,0],[1,2,0],[2,1,0],[3,0,0],[2,1],[1,1,1],[1,2,0,0],[1,2],[3,0,0],[3,0,0],[1,0,2],[3,0],[3,0],[0,3],[3,0,0],[2,0,1,0],[3,0],[1,2],[2,1,0,0],[0,3],[1,0,2],[2,1,0,0],[1,1,1],[0,0,0,1,2],[3,0,0],[1,1,1],[0,3,0],[1,1,1],[1,0,2],[0,2,1],[2,1],[1,2],[3,0],[0,3],[1,2],[2,1,0],[3,0],[2,1] +00067fa001d_931230.tif,[3,0],[1,2],[2,0,0,1,0,0,0],[1,2],[0,3],[1,2],[1,0,2],[0,1,2],[0,0,2],[0,1,2],[1,2,0],[1,1,1],[0,2,1],[2,1],[2,0,1],[1,2,0,0],[0,3],[3,0,0],[0,1,2],[2,0,1],[3,0],[3,0],[0,3],[3,0,0],[3,0,0,0],[0,3],[3,0],[0,0,0,3],[0,3],[1,2,0],[3,0,0,0],[1,2,0],[0,0,0,3,0],[2,0,1],[2,1,0],[1,0,2],[1,1,1],[0,3,0],[0,1,2],[2,1],[0,3],[0,3],[1,2],[2,1],[2,0,1],[3,0],[2,1] +00068fa001d_931230.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[3,0,0],[2,1,0],[2,1,0],[1,1,1],[0,2,1],[1,0,2],[0,3,0],[0,3],[2,0,1],[3,0,0,0],[3,0],[2,1,0],[2,0,1],[2,1,0],[3,0],[0,3],[3,0],[0,3,0],[3,0,0,0],[0,3],[3,0],[0,3,0,0],[1,2],[0,3,0],[3,0,0,0],[2,1,0],[3,0,0,0,0],[1,0,2],[1,0,2],[2,1,0],[1,1,1],[0,3,0],[1,2,0],[0,3],[2,1],[0,3],[3,0],[3,0],[1,2,0],[3,0],[3,0] +00069fb001d_931230.tif,[2,1],[2,1],[1,0,1,1,0,0,0],[0,3],[0,3],[2,1],[3,0,0],[2,1,0],[0,3,0],[2,1,0],[0,2,1],[3,0,0],[3,0,0],[3,0],[3,0,0],[1,2,0,0],[2,1],[1,2,0],[1,0,2],[2,1,0],[2,1],[3,0],[3,0],[1,0,2],[2,0,1,0],[2,1],[0,3],[1,0,1,1],[0,3],[0,2,1],[3,0,0,0],[2,1,0],[0,2,0,1,0],[2,0,1],[3,0,0],[0,2,1],[0,3,0],[0,1,2],[1,2,0],[3,0],[0,3],[1,2],[0,3],[3,0],[1,2,0],[1,2],[1,2] +00070fa001d_931230.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[2,1],[3,0,0],[2,0,1],[0,3,0],[1,2,0],[0,1,2],[3,0,0],[0,0,3],[3,0],[3,0,0],[1,1,0,1],[3,0],[2,0,1],[3,0,0],[1,2,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[0,3,0,0],[0,3],[0,1,2],[3,0,0,0],[2,1,0],[3,0,0,0,0],[3,0,0],[3,0,0],[0,0,3],[1,2,0],[3,0,0],[0,0,3],[1,2],[1,2],[1,2],[2,1],[1,2],[0,3,0],[2,1],[3,0] +00071fa001d_931230.tif,[2,1],[0,3],[3,0,0,0,0,0,0],[2,1],[0,3],[0,3],[1,0,2],[0,1,2],[1,1,1],[1,1,1],[1,1,1],[3,0,0],[1,1,1],[2,1],[2,0,1],[2,1,0,0],[0,3],[3,0,0],[2,1,0],[1,1,1],[3,0],[0,3],[3,0],[1,1,1],[2,0,0,1],[1,2],[3,0],[2,1,0,0],[3,0],[0,1,2],[2,1,0,0],[1,0,2],[3,0,0,0,0],[1,0,2],[3,0,0],[0,2,1],[0,3,0],[2,1,0],[3,0,0],[1,2],[2,1],[0,3],[3,0],[0,3],[0,3,0],[3,0],[3,0] +00072fa001d_931230.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[0,3],[1,2],[1,2],[1,1,1],[0,0,3],[3,0,0],[3,0,0],[1,2,0],[0,3,0],[0,2,1],[2,1],[0,2,1],[3,0,0,0],[0,3],[3,0,0],[0,1,2],[2,1,0],[3,0],[0,3],[3,0],[0,1,2],[3,0,0,0],[2,1],[2,1],[0,1,0,2],[2,1],[2,1,0],[0,2,1,0],[2,0,1],[3,0,0,0,0],[3,0,0],[1,0,2],[2,1,0],[0,3,0],[2,0,1],[0,3,0],[1,2],[2,1],[0,3],[3,0],[0,3],[0,0,3],[3,0],[3,0] +00073fa001d_931230.tif,[3,0],[2,1],[2,0,0,0,0,1,0],[1,2],[0,3],[0,3],[2,1,0],[3,0,0],[0,0,3],[1,1,1],[0,3,0],[2,1,0],[0,2,1],[1,2],[1,2,0],[2,1,0,0],[2,1],[3,0,0],[0,0,3],[3,0,0],[3,0],[3,0],[3,0],[2,1,0],[3,0,0,0],[2,1],[2,1],[0,2,0,1],[0,3],[0,2,1],[3,0,0,0],[3,0,0],[1,0,2,0,0],[2,0,1],[2,0,1],[2,1,0],[0,3,0],[2,1,0],[0,3,0],[1,2],[2,1],[1,2],[1,2],[2,1],[2,1,0],[2,1],[2,1] +00074fa001d_931230.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[2,1],[0,3],[2,1],[1,2,0],[3,0,0],[2,1,0],[3,0,0],[0,3,0],[3,0,0],[1,0,2],[2,1],[1,1,1],[2,1,0,0],[3,0],[3,0,0],[3,0,0],[1,2,0],[3,0],[3,0],[0,3],[2,1,0],[3,0,0,0],[2,1],[0,3],[0,1,0,2],[1,2],[1,2,0],[3,0,0,0],[3,0,0],[3,0,0,0,0],[0,3,0],[1,0,2],[0,2,1],[1,1,1],[2,1,0],[1,2,0],[3,0],[2,1],[1,2],[0,3],[2,1],[1,0,2],[3,0],[2,1] +00075fa001d_931230.tif,[3,0],[1,2],[0,0,1,1,0,1,0],[2,1],[1,2],[3,0],[3,0,0],[0,1,2],[0,3,0],[2,1,0],[2,1,0],[2,1,0],[0,1,2],[2,1],[2,1,0],[2,0,1,0],[0,3],[2,1,0],[1,0,2],[3,0,0],[3,0],[3,0],[3,0],[0,1,2],[0,0,3,0],[2,1],[0,3],[0,0,0,3],[1,2],[1,1,1],[0,3,0,0],[0,0,3],[0,0,0,2,1],[1,2,0],[1,1,1],[1,2,0],[2,1,0],[1,2,0],[1,2,0],[3,0],[1,2],[2,1],[0,3],[2,1],[3,0,0],[3,0],[3,0] +00076fa001d_931230.tif,[2,1],[2,1],[2,0,1,0,0,0,0],[1,2],[1,2],[0,3],[2,0,1],[1,1,1],[2,0,1],[0,3,0],[0,3,0],[3,0,0],[0,0,2],[3,0],[1,2,0],[2,0,1,0],[0,3],[3,0,0],[0,0,3],[0,0,3],[3,0],[3,0],[3,0],[2,1,0],[3,0,0,0],[2,1],[3,0],[2,0,1,0],[0,3],[0,3,0],[3,0,0,0],[3,0,0],[1,0,1,1,0],[2,0,1],[2,0,1],[1,2,0],[1,2,0],[2,1,0],[1,2,0],[3,0],[1,2],[1,2],[1,2],[2,1],[0,2,1],[3,0],[0,3] +00077fa001d_931230.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[2,1],[2,1],[0,3],[2,0,1],[3,0,0],[2,0,1],[1,1,1],[1,0,2],[3,0,0],[2,0,1],[1,2],[2,0,1],[1,0,0,2],[1,2],[3,0,0],[2,0,1],[1,2,0],[3,0],[3,0],[3,0],[2,0,1],[3,0,0,0],[3,0],[2,1],[1,1,1,0],[0,3],[1,1,1],[2,1,0,0],[1,1,1],[0,0,3,0,0],[3,0,0],[2,0,1],[2,1,0],[0,3,0],[1,2,0],[1,2,0],[3,0],[1,2],[1,2],[2,1],[3,0],[3,0,0],[3,0],[2,1] +00078fa001d_931230.tif,[2,1],[2,1],[1,0,0,0,0,2,0],[0,3],[0,3],[1,2],[2,0,1],[1,0,2],[2,1,0],[3,0,0],[1,2,0],[1,2,0],[1,1,1],[1,2],[0,2,1],[2,1,0,0],[0,3],[3,0,0],[1,1,1],[2,1,0],[3,0],[3,0],[0,3],[3,0,0],[3,0,0,0],[1,2],[3,0],[0,2,1,0],[0,3],[0,3,0],[3,0,0,0],[2,1,0],[1,0,0,0,2],[2,0,1],[1,0,2],[0,3,0],[1,2,0],[2,1,0],[2,1,0],[2,1],[3,0],[0,3],[3,0],[3,0],[0,2,1],[1,2],[3,0] +00079fa001d_931230.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[1,1,1],[0,1,2],[3,0,0],[0,2,1],[0,3,0],[1,2,0],[1,0,2],[2,1],[3,0,0],[2,1,0,0],[1,2],[3,0,0],[0,0,3],[0,1,2],[3,0],[3,0],[0,3],[1,1,1],[2,0,1,0],[3,0],[3,0],[0,0,0,3],[0,3],[0,3,0],[3,0,0,0],[0,0,3],[3,0,0,0,0],[2,0,1],[0,2,0],[0,1,2],[1,1,1],[1,0,2],[0,3,0],[1,2],[2,1],[0,3],[2,1],[0,3],[0,0,3],[3,0],[3,0] +00080fa001d_931230.tif,[2,0],[1,2],[3,0,0,0,0,0,0],[0,3],[0,3],[1,2],[1,1,1],[1,2,0],[1,2,0],[2,1,0],[1,2,0],[2,1,0],[1,1,1],[2,1],[2,0,1],[3,0,0,0],[3,0],[3,0,0],[3,0,0],[1,0,2],[3,0],[3,0],[3,0],[2,1,0],[2,0,1,0],[2,1],[3,0],[1,0,0,1],[0,3],[0,3,0],[3,0,0,0],[1,1,1],[3,0,0,0,0],[1,0,2],[1,2,0],[1,2,0],[1,2,0],[1,2,0],[0,3,0],[3,0],[3,0],[2,1],[2,1],[3,0],[1,2,0],[3,0],[3,0] +00081fa011d_931230.tif,[2,1],[3,0],[2,0,1,0,0,0,0],[1,2],[1,2],[1,2],[2,0,1],[2,1,0],[1,2,0],[1,2,0],[0,3,0],[1,2,0],[1,0,2],[2,1],[0,1,2],[3,0,0,0],[1,2],[1,0,2],[1,0,2],[2,1,0],[3,0],[3,0],[3,0],[1,1,1],[3,0,0,0],[3,0],[3,0],[1,1,0,1],[1,2],[1,1,1],[3,0,0,0],[2,0,1],[0,0,3,0,0],[1,0,2],[3,0,0],[0,2,1],[1,2,0],[2,1,0],[0,2,1],[2,1],[1,2],[1,2],[3,0],[2,1],[3,0,0],[2,1],[3,0] +00082fa011d_931230.tif,[2,1],[1,2],[0,1,0,2,0,0,0],[2,1],[0,3],[1,2],[1,0,2],[2,0,1],[1,0,2],[2,1,0],[2,0,1],[1,0,2],[1,0,2],[1,2],[3,0,0],[1,0,0,2],[2,1],[2,1,0],[2,1,0],[2,0,1],[0,3],[3,0],[3,0],[0,0,3],[1,0,2,0],[2,1],[3,0],[0,2,0,1],[0,3],[1,2,0],[3,0,0,0],[1,2,0],[0,0,0,2,1],[1,0,2],[3,0,0],[0,2,1],[1,2,0],[2,0,1],[0,3,0],[2,1],[3,0],[1,2],[3,0],[2,1],[1,2,0],[2,1],[1,2] +00083fa011d_931230.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[2,1],[1,0,2],[0,0,3],[0,0,3],[0,1,2],[0,1,2],[2,1,0],[0,3,0],[2,1],[1,2,0],[2,0,1,0],[1,2],[1,1,1],[0,2,1],[3,0,0],[3,0],[3,0],[0,3],[1,2,0],[3,0,0,0],[3,0],[1,2],[0,2,0,1],[1,2],[2,0,1],[0,3,0,0],[2,1,0],[3,0,0,0,0],[2,0,1],[3,0,0],[1,2,0],[0,3,0],[2,1,0],[0,2,1],[3,0],[2,1],[1,2],[0,3],[0,3],[1,2,0],[3,0],[2,1] +00084fb011d_931230.tif,[1,2],[0,3],[3,0,0,0,0,0,0],[2,1],[0,3],[3,0],[0,0,3],[2,1,0],[2,1,0],[1,1,1],[0,3,0],[2,0,1],[1,2,0],[2,1],[1,1,1],[2,1,0,0],[0,3],[2,0,1],[0,3,0],[3,0,0],[3,0],[0,3],[3,0],[0,3,0],[3,0,0,0],[2,1],[3,0],[0,1,0,2],[0,3],[1,2,0],[3,0,0,0],[2,1,0],[3,0,0,0,0],[3,0,0],[3,0,0],[2,1,0],[0,2,1],[2,0,1],[1,2,0],[3,0],[2,1],[1,2],[1,2],[2,1],[0,1,2],[3,0],[3,0] +00085fb011d_931230.tif,[3,0],[2,1],[2,0,0,1,0,0,0],[0,3],[1,2],[0,3],[3,0,0],[0,0,3],[3,0,0],[0,3,0],[0,1,2],[0,3,0],[0,3,0],[2,1],[1,2,0],[0,0,2,1],[0,3],[2,0,1],[0,3,0],[1,0,2],[3,0],[3,0],[3,0],[1,2,0],[3,0,0,0],[2,1],[2,1],[0,0,2,1],[1,2],[2,0,0],[0,1,2,0],[3,0,0],[3,0,0,0,0],[2,0,1],[2,1,0],[0,3,0],[0,2,1],[1,0,2],[0,2,1],[3,0],[1,2],[1,2],[0,3],[0,3],[0,2,1],[3,0],[3,0] +00086fa010_930422.tif,[2,1],[0,3],[3,0,0,0,0,0,0],[3,0],[1,2],[3,0],[2,0,1],[3,0,0],[0,2,1],[1,1,1],[2,1,0],[0,2,1],[2,0,1],[3,0],[1,2,0],[2,0,1,0],[1,2],[3,0,0],[2,0,1],[3,0,0],[3,0],[3,0],[3,0],[2,1,0],[3,0,0,0],[2,1],[1,2],[0,2,0,1],[2,1],[1,2,0],[3,0,0,0],[1,1,1],[3,0,0,0,0],[3,0,0],[0,0,3],[1,2,0],[1,1,1],[0,2,1],[3,0,0],[3,0],[2,1],[3,0],[0,3],[3,0],[0,1,2],[3,0],[3,0] +00087fb011d_931230.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[0,3],[0,3],[1,2],[2,1,0],[0,1,2],[2,0,1],[0,3,0],[0,3,0],[1,0,2],[2,0,1],[1,1],[3,0,0],[2,1,0,0],[0,3],[2,0,1],[1,0,2],[1,0,2],[3,0],[0,3],[0,3],[0,2,1],[3,0,0,0],[0,3],[3,0],[1,1,0,1],[0,3],[0,2,1],[1,2,0,0],[3,0,0],[3,0,0,0,0],[1,1,1],[1,1,1],[1,2,0],[1,2,0],[1,1,1],[0,3,0],[2,1],[0,3],[0,3],[2,1],[1,2],[0,1,2],[3,0],[3,0] +00088fa011d_931230.tif,[1,2],[1,2],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[0,2,1],[2,1,0],[3,0,0],[2,1,0],[0,1,2],[2,0,1],[1,0,2],[2,1],[1,1,1],[1,2,0,0],[2,1],[0,0,3],[2,1,0],[1,0,2],[3,0],[3,0],[0,3],[2,0,1],[0,0,3,0],[2,1],[2,1],[0,2,1,0],[2,1],[0,2,1],[0,3,0,0],[1,1,1],[1,0,1,1,0],[3,0,0],[2,1,0],[0,1,2],[0,2,1],[2,0,1],[0,0,3],[3,0],[1,2],[1,2],[1,2],[0,3],[0,2,1],[3,0],[2,1] +00089fa011d_931230.tif,[2,1],[1,2],[1,0,0,1,1,0,0],[0,3],[0,3],[1,2],[0,0,3],[1,1,1],[0,0,3],[0,0,3],[3,0,0],[1,1,1],[2,0,1],[0,3],[1,1,1],[1,2,0,0],[0,3],[3,0,0],[0,3,0],[1,0,2],[3,0],[3,0],[3,0],[2,0,1],[2,0,0,0],[1,2],[3,0],[0,2,1,0],[0,3],[0,1,2],[3,0,0,0],[3,0,0],[0,0,0,2,1],[3,0,0],[2,1,0],[0,1,2],[0,1,2],[1,1,1],[0,3,0],[2,1],[2,1],[1,2],[3,0],[2,1],[0,1,2],[3,0],[3,0] +00090fa011d_931230.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[1,2],[2,0,1],[2,1,0],[2,0,1],[2,1,0],[1,2,0],[0,0,3],[1,1,1],[2,1],[1,1,1],[2,1,0,0],[2,1],[3,0,0],[2,1,0],[0,0,3],[3,0],[0,3],[3,0],[0,3,0],[3,0,0,0],[2,1],[3,0],[2,1,0,0],[0,3],[0,1,2],[2,1,0,0],[2,1,0],[3,0,0,0,0],[3,0,0],[2,0,1],[2,1,0],[1,2,0],[0,3,0],[0,3,0],[2,1],[0,3],[1,2],[1,2],[1,2],[1,0,2],[3,0],[3,0] +00091fb011d_931230.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[1,2],[3,0],[1,2],[1,0,2],[2,0,1],[2,0,1],[1,2,0],[1,0,2],[2,1,0],[2,0,1],[2,1],[2,0,1],[2,1,0,0],[0,3],[3,0,0],[1,2,0],[2,1,0],[3,0],[3,0],[3,0],[2,1,0],[3,0,0,0],[3,0],[2,1],[2,0,1,0],[2,1],[0,1,2],[3,0,0,0],[0,2,1],[3,0,0,0,0],[2,0,1],[0,2,1],[3,0,0],[0,2,1],[2,0,1],[1,2,0],[2,1],[2,1],[0,3],[3,0],[0,3],[0,3,0],[3,0],[1,2] +00092fa011d_931230.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[2,1],[1,1,1],[1,2,0],[1,2,0],[2,1,0],[0,1,2],[0,0,3],[2,0,1],[3,0],[0,0,3],[3,0,0,0],[3,0],[0,2,1],[3,0,0],[3,0,0],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[3,0],[3,0],[0,0,3,0],[0,3],[0,2,0],[3,0,0,0],[0,3,0],[3,0,0,0,0],[0,2,1],[0,1,2],[0,0,3],[2,1,0],[0,0,3],[0,0,3],[1,2],[0,3],[1,2],[3,0],[2,1],[1,0,2],[2,1],[0,3] +00093fa011d_931230.tif,[2,1],[1,2],[0,0,0,2,1,0,0],[1,2],[1,2],[2,1],[1,0,2],[0,1,2],[2,0,1],[2,1,0],[0,1,2],[3,0,0],[1,0,2],[3,0],[2,1,0],[1,0,1,1],[1,2],[3,0,0],[0,3,0],[2,0,1],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[1,2],[2,1],[0,2,0,1],[0,3],[0,3,0],[3,0,0,0],[3,0,0],[0,2,1,0,0],[3,0,0],[2,1,0],[0,0,3],[0,2,1],[2,0,1],[0,2,1],[3,0],[2,1],[1,2],[1,2],[0,3],[1,2,0],[3,0],[0,3] +00094fa011d_931230.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[3,0],[1,2],[2,1],[1,0,2],[1,1,1],[2,0,1],[0,1,2],[0,3,0],[1,1,1],[2,1,0],[2,1],[0,2,1],[1,2,0,0],[0,3],[3,0,0],[0,3,0],[2,0,0],[3,0],[3,0],[0,3],[3,0,0],[2,0,0,1],[2,1],[0,3],[1,2,0,0],[2,1],[0,3,0],[3,0,0,0],[2,1,0],[2,0,1,0,0],[3,0,0],[3,0,0],[2,1,0],[0,1,2],[2,1,0],[2,0,1],[2,1],[2,1],[3,0],[0,3],[1,2],[3,0,0],[0,3],[3,0] +00095fa010_930128.tif,[3,0],[3,0],[1,0,0,2,0,0,0],[1,2],[2,1],[0,3],[1,1,1],[0,3,0],[3,0,0],[1,2,0],[1,2,0],[2,1,0],[3,0,0],[2,1],[0,1,2],[0,3,0,0],[1,2],[3,0,0],[0,1,2],[1,2,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[0,0,0,3],[1,2],[1,0,1],[2,1,0,0],[1,2,0],[0,0,0,3,0],[2,1,0],[0,3,0],[1,2,0],[1,0,2],[1,0,2],[0,2,1],[3,0],[2,1],[0,3],[2,1],[3,0],[3,0,0],[3,0],[3,0] +00096fa011d_931230.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[0,3],[0,3],[1,2],[2,1,0],[2,1,0],[2,0,1],[1,2,0],[0,2,1],[2,1,0],[2,0,1],[3,0],[1,0,2],[0,2,0,1],[3,0],[3,0,0],[3,0,0],[3,0,0],[1,2],[3,0],[3,0],[3,0,0],[2,0,0,0],[3,0],[2,1],[0,0,0,3],[2,1],[0,1,2],[3,0,0,0],[0,3,0],[3,0,0,0,0],[1,0,2],[2,0,1],[0,1,2],[2,1,0],[0,3,0],[0,2,1],[3,0],[2,1],[0,3],[2,1],[3,0],[1,2,0],[2,1],[2,1] +00097fa011d_931230.tif,[0,3],[2,1],[3,0,0,0,0,0,0],[2,1],[0,3],[1,2],[3,0,0],[1,2,0],[1,2,0],[1,0,2],[0,3,0],[0,0,3],[2,0,1],[3,0],[3,0,0],[1,2,0,0],[3,0],[2,0,1],[3,0,0],[1,2,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[1,2],[1,2,0,0],[1,2],[0,3,0],[1,2,0,0],[0,3,0],[3,0,0,0,0],[2,1,0],[2,1,0],[0,2,1],[0,3,0],[0,3,0],[0,2,1],[3,0],[2,1],[2,1],[1,2],[1,2],[0,0,3],[3,0],[1,2] +00098fa011d_931230.tif,[0,3],[2,1],[3,0,0,0,0,0,0],[2,1],[1,2],[1,2],[0,0,3],[0,2,1],[0,3,0],[2,1,0],[0,2,1],[0,2,1],[0,0,3],[1,2],[1,0,2],[0,1,1,1],[1,2],[3,0,0],[0,3,0],[0,2,1],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[0,3],[2,1],[3,0,0,0],[0,3],[3,0,0],[3,0,0,0],[0,3,0],[3,0,0,0,0],[1,0,2],[2,0,1],[0,1,2],[1,2,0],[0,3,0],[0,0,3],[3,0],[2,1],[1,2],[2,1],[3,0],[0,1,2],[3,0],[2,1] +00099fa011d_931230.tif,[1,2],[1,2],[3,0,0,0,0,0,0],[2,1],[0,3],[3,0],[0,0,3],[1,1,1],[2,0,1],[0,3,0],[0,0,3],[0,0,3],[1,1,1],[2,1],[3,0,0],[0,0,3,0],[2,1],[3,0,0],[2,0,1],[2,1,0],[3,0],[3,0],[0,3],[3,0,0],[3,0,0,0],[2,1],[0,3],[0,0,1,2],[2,1],[0,2,1],[3,0,0,0],[2,1,0],[2,0,0,1,0],[1,0,2],[2,0,1],[0,0,3],[2,1,0],[3,0,0],[0,0,3],[3,0],[0,3],[3,0],[0,3],[0,3],[0,0,3],[3,0],[3,0] +00100fa011d_931230.tif,[3,0],[3,0],[1,0,1,1,0,0,0],[1,2],[2,1],[2,1],[2,1,0],[3,0,0],[0,0,3],[0,0,3],[1,1,1],[2,1,0],[0,0,3],[0,3],[3,0,0],[1,1,1,0],[3,0],[3,0,0],[3,0,0],[3,0,0],[3,0],[3,0],[0,3],[2,1,0],[3,0,0,0],[3,0],[3,0],[1,1,0,1],[0,3],[1,0,2],[3,0,0,0],[1,1,0],[0,3,0,0,0],[1,0,2],[1,2,0],[0,2,1],[2,1,0],[2,0,1],[2,1,0],[3,0],[1,2],[2,1],[2,1],[3,0],[3,0,0],[0,3],[3,0] +00101fa011d_931230.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[1,2,0],[1,1,1],[0,3,0],[0,3,0],[0,1,2],[3,0,0],[2,0,1],[0,3],[2,1,0],[3,0,0,0],[2,1],[3,0,0],[2,1,0],[3,0,0],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[3,0],[2,1],[2,1,0,0],[0,3],[2,0,1],[0,2,1,0],[1,2,0],[3,0,0,0,0],[2,0,1],[2,1,0],[1,2,0],[1,1,1],[0,0,3],[3,0,0],[0,3],[2,1],[0,3],[3,0],[1,2],[1,2,0],[3,0],[3,0] +00102fa011d_931230.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[2,1,0],[2,1,0],[1,2,0],[2,1,0],[0,1,2],[1,0,2],[2,0,1],[2,1],[2,0,1],[3,0,0,0],[3,0],[3,0,0],[3,0,0],[1,2,0],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[3,0],[0,0,3,0],[3,0],[2,0,1],[2,1,0,0],[1,2,0],[3,0,0,0,0],[1,1,1],[3,0,0],[0,0,3],[1,2,0],[1,1,1],[0,3,0],[2,1],[2,1],[0,3],[2,1],[2,1],[0,1,2],[3,0],[3,0] +00103fa011d_931230.tif,[3,0],[0,3],[1,1,0,0,0,1,0],[1,2],[0,3],[0,3],[0,3,0],[2,1,0],[0,3,0],[2,1,0],[2,1,0],[2,1,0],[1,1,1],[3,0],[0,1,2],[1,1,1,0],[3,0],[3,0,0],[3,0,0],[2,0,1],[3,0],[3,0],[0,3],[3,0,0],[3,0,0,0],[1,2],[2,1],[2,0,1,0],[3,0],[0,3,0],[2,1,0,0],[2,0,1],[1,1,0,0,1],[0,1,2],[2,1,0],[0,1,2],[1,1,1],[2,0,1],[0,1,2],[3,0],[2,0],[1,2],[1,2],[0,3],[2,1,0],[2,1],[2,1] +00104fa011d_931230.tif,[2,1],[3,0],[2,0,0,0,0,1,0],[0,3],[2,1],[0,3],[3,0,0],[0,1,2],[2,0,1],[0,3,0],[1,2,0],[2,1,0],[0,0,3],[2,1],[1,1,0],[3,0,0,0],[0,3],[3,0,0],[0,0,3],[3,0,0],[3,0],[0,3],[3,0],[0,3,0],[3,0,0,0],[3,0],[3,0],[0,1,0,2],[1,2],[2,1,0],[3,0,0,0],[3,0,0],[3,0,0,0,0],[2,0,1],[2,0,1],[1,1,1],[1,1,1],[0,3,0],[1,2,0],[2,1],[1,2],[0,3],[3,0],[3,0],[1,2,0],[3,0],[3,0] +00105fb011d_931230.tif,[3,0],[0,3],[3,0,0,0,0,0,0],[2,1],[2,1],[3,0],[2,0,1],[2,1,0],[0,0,3],[0,0,3],[0,3,0],[0,3,0],[0,3,0],[3,0],[0,3,0],[0,2,0,1],[0,3],[0,2,1],[0,0,3],[1,0,2],[3,0],[3,0],[3,0],[1,1,1],[3,0,0,0],[3,0],[2,1],[0,1,0,2],[2,1],[0,3,0],[2,1,0,0],[1,0,2],[3,0,0,0,0],[3,0,0],[0,2,1],[0,2,1],[0,1,2],[1,1,1],[1,2,0],[3,0],[0,3],[0,3],[1,2],[1,2],[0,1,2],[3,0],[2,1] +00106fa011d_931230.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[1,2,0],[2,1,0],[2,1,0],[3,0,0],[0,3,0],[0,0,3],[1,0,2],[2,1],[3,0,0],[0,3,0,0],[0,3],[2,0,1],[2,0,1],[3,0,0],[2,1],[3,0],[0,3],[2,0,1],[3,0,0,0],[3,0],[3,0],[0,3,0,0],[0,3],[0,2,1],[2,1,0,0],[1,1,0],[3,0,0,0,0],[2,1,0],[2,0,1],[0,2,1],[1,2,0],[0,3,0],[0,1,2],[2,1],[2,1],[1,2],[0,3],[1,2],[1,1,1],[3,0],[3,0] +00107fa011d_931230.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[1,2],[1,2],[1,2],[2,1,0],[3,0,0],[2,1,0],[2,1,0],[1,2,0],[1,0,2],[1,1,1],[2,1],[0,2,1],[1,2,0,0],[2,1],[3,0,0],[3,0,0],[2,1,0],[3,0],[1,2],[3,0],[1,2,0],[3,0,0,0],[3,0],[3,0],[0,1,0,2],[1,2],[1,2,0],[3,0,0,0],[1,1,1],[3,0,0,0,0],[3,0,0],[1,0,2],[3,0,0],[0,2,1],[1,2,0],[0,3,0],[1,2],[3,0],[0,3],[1,2],[3,0],[1,1,1],[3,0],[2,1] +00108fa011d_931230.tif,[1,2],[3,0],[0,0,1,0,0,2,0],[1,2],[0,3],[0,3],[1,2,0],[2,0,1],[0,3,0],[3,0,0],[2,0,1],[2,1,0],[3,0,0],[2,1],[2,1,0],[1,1,0,0],[2,1],[3,0,0],[2,0,1],[0,0,3],[3,0],[3,0],[3,0],[3,0,0],[1,0,2,0],[2,1],[3,0],[2,1,0,0],[1,2],[0,3,0],[3,0,0,0],[1,0,2],[0,0,1,2,0],[0,0,3],[2,1,0],[0,1,2],[0,2,1],[2,0,1],[0,3,0],[3,0],[2,1],[0,3],[1,2],[1,2],[1,2,0],[3,0],[3,0] +00109fa011d_931230.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[1,2],[1,2],[0,3],[2,0,1],[1,0,2],[2,0,1],[1,2,0],[0,2,1],[2,1,0],[0,2,1],[2,1],[0,2,1],[3,0,0,0],[1,2],[1,0,2],[1,2,0],[1,1,1],[2,1],[3,0],[3,0],[2,1,0],[3,0,0,0],[3,0],[3,0],[0,0,1,2],[3,0],[0,2,1],[3,0,0,0],[2,1,0],[3,0,0,0,0],[3,0,0],[1,0,2],[0,2,1],[1,1,1],[2,1,0],[0,2,0],[2,1],[2,1],[0,3],[3,0],[1,2],[0,2,1],[3,0],[3,0] +00110fb011d_931230.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[2,1],[2,1,0],[2,1,0],[1,2,0],[1,0,2],[2,0,1],[0,1,2],[1,1,1],[3,0],[0,1,2],[0,0,3,0],[2,1],[1,1,1],[2,0,1],[1,0,2],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[0,3],[0,3,0,0],[0,3],[1,1,1],[1,2,0,0],[1,2,0],[3,0,0,0,0],[1,0,2],[3,0,0],[1,0,2],[1,2,0],[2,0,1],[0,1,2],[3,0],[0,3],[3,0],[0,3],[0,3],[2,1,0],[2,1],[3,0] +00111fb011d_931230.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[1,0,2],[2,1,0],[1,0,2],[1,0,2],[0,3,0],[1,2,0],[0,3,0],[1,2],[0,3,0],[3,0,0,0],[0,3],[3,0,0],[0,2,1],[2,0,1],[3,0],[0,3],[3,0],[0,3,0],[3,0,0,0],[2,1],[3,0],[2,1,0,0],[2,1],[0,3,0],[1,2,0,0],[2,1,0],[3,0,0,0,0],[2,1,0],[3,0,0],[1,2,0],[2,1,0],[3,0,0],[1,2,0],[2,1],[3,0],[0,3],[3,0],[1,2],[0,1,2],[3,0],[2,1] +00112fa011d_931230.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[0,3],[1,2],[0,3],[3,0,0],[3,0,0],[2,1,0],[2,0,1],[0,3,0],[3,0,0],[1,1,1],[1,2],[3,0,0],[2,1,0,0],[3,0],[3,0,0],[1,0,2],[3,0,0],[3,0],[0,3],[3,0],[0,3,0],[3,0,0,0],[3,0],[3,0],[2,0,1,0],[1,2],[0,3,0],[3,0,0,0],[2,1,0],[3,0,0,0,0],[2,1,0],[3,0,0],[0,1,2],[2,0,1],[3,0,0],[0,1,2],[2,1],[1,2],[0,3],[2,1],[2,1],[0,2,1],[3,0],[1,2] +00113fa011d_931230.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[2,0,1],[3,0,0],[2,1,0],[3,0,0],[1,2,0],[2,1,0],[0,0,3],[3,0],[2,1,0],[2,1,0,0],[0,3],[3,0,0],[2,1,0],[3,0,0],[3,0],[3,0],[0,3],[3,0,0],[3,0,0,0],[2,1],[3,0],[0,3,0,0],[0,3],[0,3,0],[3,0,0,0],[3,0,0],[1,0,2,0,0],[3,0,0],[2,1,0],[0,2,1],[0,2,1],[3,0,0],[1,2,0],[2,0],[1,2],[1,2],[0,3],[3,0],[2,1,0],[3,0],[3,0] +00114fa011d_931230.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[2,0,1],[0,1,2],[0,0,3],[0,1,2],[1,2,0],[1,2,0],[2,1,0],[3,0],[2,1,0],[1,1,0,1],[2,1],[2,0,1],[0,1,2],[3,0,0],[3,0],[3,0],[3,0],[2,1,0],[3,0,0,0],[3,0],[3,0],[1,1,1,0],[0,3],[0,0,3],[1,1,1,0],[1,2,0],[3,0,0,0,0],[3,0,0],[3,0,0],[0,3,0],[0,2,1],[1,1,1],[2,1,0],[3,0],[2,1],[1,2],[1,2],[2,1],[1,2,0],[3,0],[1,2] +00115fa011d_931230.tif,[3,0],[3,0],[0,0,3,0,0,0,0],[0,3],[1,2],[1,2],[2,0,1],[1,1,1],[1,0,2],[0,2,1],[2,0,1],[0,3,0],[1,2,0],[2,1],[2,0,1],[2,0,0,1],[0,3],[0,0,3],[0,2,1],[0,3,0],[3,0],[3,0],[3,0],[1,2,0],[3,0,0,0],[3,0],[2,1],[0,2,0,1],[0,3],[0,2,1],[3,0,0,0],[2,1,0],[0,0,3,0,0],[2,0,1],[1,0,2],[0,3,0],[1,1,1],[3,0,0],[0,3,0],[2,1],[1,2],[0,3],[2,1],[3,0],[3,0,0],[2,1],[2,1] +00116fa011d_931230.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[0,3],[1,2],[1,2],[0,0,3],[3,0,0],[2,1,0],[1,1,1],[1,1,1],[2,1,0],[1,0,2],[3,0],[0,2,1],[0,2,0,1],[0,3],[2,1,0],[0,3,0],[0,1,2],[3,0],[3,0],[3,0],[3,0,0],[2,0,0,0],[2,1],[1,2],[0,3,0,0],[1,2],[1,0,2],[0,3,0,0],[2,1,0],[2,0,1,0,0],[1,0,2],[2,1,0],[0,0,3],[0,2,1],[1,0,2],[0,0,3],[2,1],[0,3],[0,3],[0,3],[1,2],[0,2,1],[1,2],[2,1] +00117fa011d_931230.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[0,3],[2,1],[1,2],[3,0,0],[1,0,2],[0,0,3],[1,1,1],[1,2,0],[2,1,0],[3,0,0],[3,0],[2,1,0],[1,1,1,0],[0,3],[2,1,0],[0,3,0],[3,0,0],[2,1],[3,0],[0,3],[2,1,0],[3,0,0,0],[3,0],[2,1],[1,2,0,0],[2,1],[0,3,0],[3,0,0,0],[1,2,0],[2,1,0,0,0],[3,0,0],[2,1,0],[1,1,1],[0,2,1],[2,0,1],[0,2,1],[1,2],[2,1],[0,3],[3,0],[2,1],[0,2,1],[2,1],[2,1] +00118fa011d_931230.tif,[3,0],[2,1],[0,2,0,0,0,1,0],[2,1],[0,3],[2,1],[2,0,1],[0,2,1],[2,1,0],[2,1,0],[0,3,0],[2,1,0],[0,3,0],[1,2],[2,0,1],[3,0,0,0],[2,1],[3,0,0],[2,1,0],[1,1,1],[3,0],[3,0],[0,3],[3,0,0],[3,0,0,0],[3,0],[3,0],[1,2,0,0],[0,3],[0,3,0],[3,0,0,0],[2,1,0],[0,0,0,1,2],[0,0,3],[3,0,0],[1,2,0],[1,2,0],[3,0,0],[0,3,0],[3,0],[3,0],[0,3],[2,1],[1,2],[1,1,1],[3,0],[3,0] +00119fb011d_931230.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[3,0],[0,3],[0,3],[3,0,0],[1,1,1],[3,0,0],[0,3,0],[0,2,1],[2,1,0],[2,0,1],[3,0],[1,2,0],[3,0,0,0],[3,0],[2,1,0],[2,0,1],[2,0,1],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[1,2,0,0],[1,2],[1,1,1],[3,0,0,0],[1,2,0],[3,0,0,0,0],[1,0,2],[0,0,3],[2,1,0],[3,0,0],[0,3,0],[2,1,0],[2,1],[3,0],[0,3],[2,1],[3,0],[2,1,0],[1,2],[2,1] +00120fa011d_931230.tif,[2,1],[3,0],[2,0,1,0,0,0,0],[1,2],[1,2],[0,3],[3,0,0],[1,1,1],[0,0,3],[0,1,2],[1,2,0],[2,1,0],[1,1,1],[2,1],[1,2,0],[3,0,0,0],[0,3],[2,0,1],[0,0,3],[1,0,2],[3,0],[3,0],[3,0],[1,1,1],[3,0,0,0],[1,2],[1,2],[0,1,1,1],[1,2],[0,3,0],[3,0,0,0],[1,2,0],[2,0,1,0,0],[3,0,0],[2,0,1],[1,1,1],[1,1,1],[1,2,0],[0,3,0],[3,0],[2,1],[1,2],[1,2],[3,0],[2,1,0],[3,0],[3,0] +00121fa011d_931230.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[3,0,0],[2,1,0],[3,0,0],[0,0,3],[3,0,0],[0,0,3],[1,1,1],[3,0],[1,0,2],[2,1,0,0],[0,3],[3,0,0],[2,1,0],[1,1,1],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[1,2],[3,0],[0,0,3,0],[0,3],[0,3,0],[3,0,0,0],[1,2,0],[3,0,0,0,0],[0,0,3],[2,0,1],[0,3,0],[2,1,0],[0,3,0],[0,3,0],[0,3],[3,0],[0,2],[3,0],[2,1],[0,0,3],[3,0],[3,0] +00122fa011d_931230.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[1,2],[1,2],[2,1],[1,0,2],[0,1,2],[3,0,0],[0,3,0],[1,2,0],[1,2,0],[2,0,1],[3,0],[1,1,1],[2,1,0,0],[0,3],[3,0,0],[1,2,0],[1,1,1],[3,0],[3,0],[3,0],[2,1,0],[3,0,0,0],[3,0],[3,0],[0,1,2,0],[1,2],[1,1,1],[2,0,0,0],[2,1,0],[3,0,0,0,0],[2,0,1],[1,1,1],[1,2,0],[0,1,2],[1,2,0],[1,2,0],[2,1],[2,1],[0,3],[0,3],[2,1],[0,3,0],[1,2],[2,1] +00123fb011d_931230.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[1,2,0],[2,0,0],[0,3,0],[2,1,0],[0,1,2],[0,0,3],[0,2,1],[0,3],[1,0,2],[3,0,0,0],[1,2],[3,0,0],[1,0,2],[0,3,0],[1,2],[0,3],[3,0],[0,2,1],[3,0,0,0],[3,0],[3,0],[1,2,0,0],[1,2],[0,2,0],[2,1,0,0],[2,1,0],[3,0,0,0,0],[0,1,2],[3,0,0],[1,1,1],[1,2,0],[0,3,0],[0,3,0],[1,2],[2,0],[0,3],[3,0],[2,1],[3,0,0],[3,0],[3,0] +00124fa011d_931230.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[1,2],[1,2],[1,2],[1,2,0],[1,1,1],[3,0,0],[2,1,0],[0,3,0],[1,2,0],[0,3,0],[1,2],[2,1,0],[3,0,0,0],[3,0],[2,0,1],[1,2,0],[2,0,1],[2,1],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[3,0],[0,1,0,2],[2,1],[0,3,0],[1,2,0,0],[2,0,1],[3,0,0,0,0],[3,0,0],[2,1,0],[0,3,0],[1,1,0],[2,1,0],[0,2,1],[3,0],[1,2],[0,3],[1,2],[2,1],[0,2,1],[3,0],[3,0] +00125fa011d_931230.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[3,0,0],[2,0,1],[1,2,0],[2,1,0],[1,1,1],[2,0,1],[1,2,0],[2,1],[2,0,1],[1,2,0,0],[3,0],[2,0,1],[2,0,1],[3,0,0],[3,0],[0,3],[3,0],[0,3,0],[3,0,0,0],[3,0],[3,0],[0,1,0,2],[1,2],[0,1,2],[3,0,0,0],[1,2,0],[3,0,0,0,0],[2,0,1],[2,0,1],[1,2,0],[2,1,0],[1,2,0],[2,1,0],[3,0],[2,1],[0,3],[2,1],[3,0],[1,2,0],[3,0],[1,2] +00126fb011d_931230.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[1,2],[2,0,1],[1,1,1],[1,0,2],[2,0,1],[0,3,0],[3,0,0],[1,2,0],[2,1],[1,2,0],[1,2,0,0],[0,3],[2,0,1],[2,0,1],[3,0,0],[3,0],[0,3],[3,0],[0,3,0],[3,0,0,0],[3,0],[3,0],[0,1,1,1],[1,2],[0,3,0],[3,0,0,0],[2,1,0],[3,0,0,0,0],[3,0,0],[0,0,3],[3,0,0],[2,0,1],[1,2,0],[2,1,0],[1,2],[1,2],[0,3],[3,0],[2,1],[1,1,1],[3,0],[1,2] +00127fa011d_931230.tif,[2,1],[2,1],[1,0,1,1,0,0,0],[1,2],[0,3],[0,3],[2,0,1],[2,1,0],[2,0,1],[1,2,0],[0,3,0],[1,0,2],[2,0,1],[2,1],[2,1,0],[3,0,0,0],[0,3],[3,0,0],[0,0,3],[0,0,3],[3,0],[3,0],[3,0],[1,1,1],[0,1,2,0],[1,2],[3,0],[1,0,2,0],[1,2],[1,1,1],[3,0,0,0],[2,0,1],[0,0,3,0,0],[0,0,3],[1,0,2],[0,2,1],[2,1,0],[1,1,0],[0,2,1],[0,3],[2,1],[0,3],[3,0],[3,0],[3,0,0],[3,0],[2,1] +00128fa011d_931230.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[2,1],[0,3],[2,1],[2,1,0],[1,0,2],[3,0,0],[1,2,0],[1,0,2],[1,0,2],[1,1,1],[3,0],[3,0,0],[0,2,1,0],[3,0],[3,0,0],[2,0,1],[1,1,1],[3,0],[3,0],[0,3],[3,0,0],[2,0,1,0],[3,0],[2,1],[0,2,0,1],[2,1],[0,3,0],[3,0,0,0],[0,3,0],[3,0,0,0,0],[1,0,2],[1,0,2],[0,1,2],[2,0,1],[2,1,0],[0,2,1],[3,0],[0,3],[1,2],[0,3],[2,0],[2,1,0],[3,0],[3,0] +00129fb011d_931230.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[2,1],[1,2],[0,3],[1,0,2],[1,1,1],[3,0,0],[1,2,0],[1,2,0],[2,0,1],[0,2,1],[3,0],[1,0,2],[3,0,0,0],[0,3],[2,0,1],[0,3,0],[3,0,0],[3,0],[3,0],[3,0],[2,1,0],[3,0,0,0],[3,0],[2,1],[1,2,0,0],[0,3],[0,2,1],[3,0,0,0],[0,3,0],[3,0,0,0,0],[3,0,0],[0,0,3],[1,2,0],[2,1,0],[1,2,0],[2,1,0],[3,0],[1,2],[0,3],[0,3],[3,0],[2,0,1],[3,0],[3,0] +00130fb011d_931230.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[0,3],[1,2],[1,2],[2,0,1],[2,1,0],[3,0,0],[2,1,0],[0,2,1],[0,0,3],[3,0,0],[3,0],[1,0,2],[1,2,0,0],[2,1],[3,0,0],[2,0,1],[3,0,0],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[3,0],[1,1,0,1],[0,3],[0,3,0],[3,0,0,0],[0,3,0],[3,0,0,0,0],[3,0,0],[0,0,3],[2,1,0],[1,2,0],[2,1,0],[0,3,0],[3,0],[3,0],[1,2],[1,2],[3,0],[1,2,0],[3,0],[3,0] +00131fb011d_931230.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[0,1,2],[3,0,0],[0,0,3],[0,0,3],[1,2,0],[2,0,1],[0,0,3],[3,0],[1,1,1],[1,0,0,2],[0,3],[3,0,0],[0,0,3],[2,0,1],[3,0],[3,0],[3,0],[1,1,1],[3,0,0,0],[0,3],[2,1],[3,0,0,0],[2,1],[1,0,2],[1,2,0,0],[0,3,0],[3,0,0,0,0],[2,0,1],[3,0,0],[0,3,0],[2,0,1],[2,1,0],[3,0,0],[1,2],[3,0],[0,3],[3,0],[2,1],[1,2,0],[3,0],[2,1] +00132fb011d_931230.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[2,1],[0,3],[1,2],[2,0,1],[0,0,3],[2,0,1],[0,3,0],[0,0,3],[2,1,0],[0,0,3],[2,1],[3,0,0],[1,2,0,0],[0,3],[2,0,1],[1,1,1],[3,0,0],[3,0],[3,0],[3,0],[1,1,1],[3,0,0,0],[3,0],[2,1],[0,2,0,1],[0,3],[0,3,0],[3,0,0,0],[2,1,0],[2,0,0,0,0],[3,0,0],[2,0,1],[0,2,1],[1,1,1],[0,3,0],[1,2,0],[3,0],[1,2],[1,1],[2,1],[3,0],[3,0,0],[1,2],[2,0] +00133fa001d_931230.tif,[0,3],[3,0],[3,0,0,0,0,0,0],[1,2],[2,1],[2,1],[2,0,1],[2,0,1],[1,1,1],[0,3,0],[2,1,0],[2,1,0],[3,0,0],[1,2],[1,2,0],[0,2,1,0],[2,1],[3,0,0],[0,3,0],[3,0,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[2,1],[0,1,1,1],[1,2],[0,3,0],[3,0,0,0],[2,1,0],[1,0,2,0,0],[3,0,0],[2,1,0],[1,2,0],[0,1,2],[0,3,0],[1,2,0],[2,1],[1,2],[2,1],[0,3],[3,0],[2,1,0],[3,0],[3,0] +00134fa011d_931230.tif,[0,3],[2,1],[2,0,1,0,0,0,0],[2,1],[0,3],[2,1],[1,0,2],[1,0,2],[1,1,1],[0,2,1],[0,2,1],[0,1,2],[1,1,1],[3,0],[1,1,1],[1,0,2,0],[2,1],[1,0,2],[0,3,0],[1,2,0],[3,0],[3,0],[0,3],[3,0,0],[3,0,0,0],[2,1],[1,2],[0,3,0,0],[1,2],[3,0,0],[0,0,3,0],[1,2,0],[3,0,0,0,0],[3,0,0],[2,0,1],[0,2,1],[0,3,0],[1,1,1],[0,1,2],[3,0],[1,2],[2,1],[0,3],[1,2],[0,0,3],[3,0],[1,2] +00135fa001d_931230.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[2,1],[2,1],[2,1],[1,2,0],[0,1,2],[3,0,0],[2,1,0],[0,2,1],[0,0,3],[1,1,1],[2,1],[3,0,0],[0,0,3,0],[1,2],[3,0,0],[1,2,0],[1,0,2],[3,0],[3,0],[0,3],[2,1,0],[1,0,2,0],[2,1],[0,3],[2,1,0,0],[0,3],[0,3,0],[3,0,0,0],[1,2,0],[3,0,0,0,0],[1,0,2],[2,0,1],[0,0,3],[1,1,1],[1,1,1],[0,0,3],[3,0],[1,2],[2,1],[0,3],[1,2],[0,3,0],[2,1],[3,0] +00136fa011d_931230.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[1,2,0],[1,1,1],[0,3,0],[0,0,3],[0,3,0],[1,0,2],[0,2,1],[3,0],[0,1,2],[1,2,0,0],[3,0],[2,1,0],[1,0,2],[0,1,2],[3,0],[2,1],[3,0],[2,1,0],[2,0,1,0],[3,0],[3,0],[0,0,0,3],[2,1],[0,2,1],[3,0,0,0],[2,0,1],[2,0,1,0,0],[0,2,1],[3,0,0],[0,1,2],[2,1,0],[1,1,1],[0,0,3],[1,2],[3,0],[0,3],[3,0],[3,0],[3,0,0],[3,0],[3,0] +00137fa011d_931230.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[0,3],[1,2],[0,3],[2,1,0],[2,1,0],[3,0,0],[0,3,0],[2,1,0],[1,2,0],[1,2,0],[2,1],[0,3,0],[2,1,0,0],[0,3],[3,0,0],[1,0,2],[3,0,0],[3,0],[3,0],[0,3],[0,2,1],[3,0,0,0],[3,0],[3,0],[1,0,0,2],[0,3],[0,2,1],[3,0,0,0],[1,2,0],[3,0,0,0,0],[3,0,0],[2,0,1],[2,1,0],[1,0,2],[2,1,0],[0,3,0],[1,2],[2,1],[0,3],[3,0],[3,0],[0,0,3],[3,0],[2,1] +00138fa011d_931230.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[2,1],[0,3],[1,2],[1,0,2],[1,1,0],[2,1,0],[2,1,0],[0,3,0],[0,3,0],[0,3,0],[3,0],[1,1,1],[1,1,0,1],[3,0],[2,0,1],[2,0,1],[1,0,2],[3,0],[3,0],[3,0],[0,1,2],[3,0,0,0],[1,2],[0,3],[0,1,0,2],[0,3],[0,3,0],[3,0,0,0],[1,2,0],[3,0,0,0,0],[3,0,0],[3,0,0],[2,1,0],[2,1,0],[2,1,0],[1,2,0],[3,0],[1,2],[2,1],[0,3],[0,3],[0,1,2],[2,1],[1,2] +00139fb011d_931230.tif,[2,1],[3,0],[0,0,2,1,0,0,0],[1,2],[0,3],[0,3],[1,0,2],[1,0,2],[2,0,1],[0,3,0],[1,2,0],[3,0,0],[0,1,2],[3,0],[1,1,1],[1,2,0,0],[0,3],[3,0,0],[0,1,1],[2,0,1],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,1],[1,1,1,0],[2,1],[0,2,1],[3,0,0,0],[3,0,0],[1,0,2,0,0],[3,0,0],[2,1,0],[0,1,2],[0,0,3],[1,2,0],[0,3,0],[2,1],[0,3],[0,3],[3,0],[1,2],[0,3,0],[3,0],[3,0] +00140fb011d_931230.tif,[2,1],[0,3],[3,0,0,0,0,0,0],[2,1],[0,3],[1,2],[2,1,0],[2,1,0],[2,1,0],[1,2,0],[0,2,1],[2,1,0],[0,1,2],[2,1],[2,1,0],[3,0,0,0],[3,0],[3,0,0],[0,0,3],[0,3,0],[3,0],[1,2],[3,0],[1,2,0],[3,0,0,0],[2,1],[2,1],[1,1,1,0],[0,3],[1,2,0],[3,0,0,0],[2,0,1],[3,0,0,0,0],[0,1,2],[0,3,0],[2,1,0],[2,1,0],[1,1,1],[2,1,0],[3,0],[2,1],[1,2],[3,0],[1,2],[0,3,0],[3,0],[2,1] +00141fb011d_931230.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[3,0,0],[1,2,0],[2,0,1],[2,1,0],[0,3,0],[2,0,1],[1,1,1],[1,2],[3,0,0],[2,0,0,1],[1,2],[2,0,1],[2,1,0],[2,1,0],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[1,2],[3,0],[2,1,0,0],[1,2],[0,2,1],[3,0,0,0],[1,2,0],[3,0,0,0,0],[1,0,2],[3,0,0],[2,1,0],[1,2,0],[3,0,0],[2,1,0],[2,1],[1,2],[0,3],[2,1],[3,0],[0,2,1],[3,0],[2,1] +00142fb011d_931230.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[1,2],[1,2],[1,2],[0,0,3],[1,1,1],[3,0,0],[0,2,1],[0,2,0],[1,2,0],[0,2,1],[3,0],[1,2,0],[3,0,0,0],[2,1],[3,0,0],[2,1,0],[1,1,1],[3,0],[3,0],[3,0],[1,2,0],[3,0,0,0],[3,0],[3,0],[2,0,0,1],[1,2],[0,1,2],[3,0,0,0],[2,1,0],[2,0,1,0,0],[0,0,3],[0,2,1],[2,1,0],[0,2,1],[0,3,0],[2,1,0],[2,1],[2,1],[0,3],[3,0],[3,0],[1,0,2],[3,0],[2,1] +00143fa011d_931230.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[1,2],[0,3],[2,1],[0,2,1],[3,0,0],[3,0,0],[0,1,2],[2,1,0],[2,1,0],[1,0,2],[3,0],[2,1,0],[2,0,0,1],[1,2],[3,0,0],[1,0,2],[2,0,1],[0,3],[2,0],[0,3],[2,1,0],[3,0,0,0],[3,0],[2,1],[0,3,0,0],[2,1],[0,3,0],[3,0,0,0],[2,0,1],[2,0,1,0,0],[2,0,1],[2,1,0],[0,2,1],[0,3,0],[1,2,0],[0,3,0],[3,0],[1,2],[0,3],[0,3],[2,1],[0,1,2],[2,1],[3,0] +00144fa011d_931230.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[1,2],[1,0,2],[1,0,2],[0,0,3],[0,2,1],[0,3,0],[1,2,0],[1,1,1],[3,0],[2,0,1],[1,1,0,1],[0,3],[0,0,3],[0,3,0],[2,0,1],[3,0],[3,0],[3,0],[2,1,0],[3,0,0,0],[2,1],[2,1],[0,2,0,1],[1,2],[0,2,1],[3,0,0,0],[1,2,0],[3,0,0,0,0],[2,0,1],[3,0,0],[1,2,0],[1,2,0],[1,2,0],[2,1,0],[2,1],[2,1],[0,3],[3,0],[3,0],[0,3,0],[3,0],[3,0] +00145fb011d_931230.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[1,0,2],[2,1,0],[3,0,0],[2,1,0],[0,0,3],[0,0,3],[2,0,1],[0,3],[1,1,1],[1,1,0,1],[2,1],[3,0,0],[1,2,0],[3,0,0],[3,0],[0,3],[3,0],[0,3,0],[3,0,0,0],[2,1],[3,0],[2,0,1,0],[0,3],[0,2,1],[2,1,0,0],[1,2,0],[3,0,0,0,0],[0,0,3],[2,0,1],[0,3,0],[2,1,0],[3,0,0],[0,3,0],[2,1],[2,1],[0,3],[3,0],[3,0],[0,2,1],[3,0],[2,1] +00146fa011d_931230.tif,[3,0],[0,3],[3,0,0,0,0,0,0],[1,2],[2,1],[3,0],[0,0,3],[1,0,2],[1,0,2],[0,1,2],[1,2,0],[3,0,0],[2,0,1],[2,1],[1,1,1],[1,1,0,0],[1,2],[2,1,0],[1,1,1],[0,3,0],[0,3],[3,0],[0,3],[1,1,1],[3,0,0,0],[3,0],[2,1],[0,3,0,0],[0,3],[0,1,2],[3,0,0,0],[2,1,0],[3,0,0,0,0],[3,0,0],[1,2,0],[0,0,3],[1,2,0],[0,3,0],[0,3,0],[2,1],[0,3],[0,3],[1,2],[3,0],[2,0,1],[3,0],[3,0] +00147fb011d_931230.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[3,0,0],[2,1,0],[1,1,1],[2,1,0],[1,2,0],[3,0,0],[3,0,0],[1,2],[1,2,0],[2,1,0,0],[2,1],[3,0,0],[3,0,0],[2,0,1],[2,1],[0,3],[3,0],[0,3,0],[3,0,0,0],[3,0],[3,0],[0,1,2,0],[0,3],[0,3,0],[2,1,0,0],[1,2,0],[3,0,0,0,0],[2,1,0],[1,0,2],[0,1,2],[0,3,0],[1,2,0],[0,1,2],[1,2],[2,1],[0,3],[3,0],[3,0],[2,1,0],[2,1],[2,1] +00148fa011d_931230.tif,[3,0],[3,0],[2,0,1,0,0,0,0],[0,3],[1,2],[2,1],[0,1,1],[1,2,0],[2,0,1],[0,0,3],[1,2,0],[1,2,0],[0,2,1],[3,0],[2,1,0],[1,1,0,1],[3,0],[3,0,0],[0,3,0],[1,0,2],[2,1],[3,0],[3,0],[2,1,0],[3,0,0,0],[2,1],[2,1],[1,0,0,2],[0,3],[1,2,0],[3,0,0,0],[1,2,0],[1,0,2,0,0],[2,0,1],[3,0,0],[1,2,0],[1,1,1],[0,3,0],[1,2,0],[3,0],[2,1],[1,2],[1,2],[2,1],[1,0,2],[3,0],[2,1] +00149fa001d_931230.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[2,1],[1,2],[0,3],[0,0,3],[1,2,0],[3,0,0],[1,2,0],[0,2,1],[2,0,1],[2,0,1],[2,1],[1,0,2],[1,2,0,0],[1,2],[3,0,0],[1,2,0],[3,0,0],[3,0],[0,3],[2,1],[3,0,0],[3,0,0,0],[2,1],[3,0],[2,0,1,0],[0,3],[1,2,0],[3,0,0,0],[0,3,0],[3,0,0,0,0],[2,0,1],[3,0,0],[0,3,0],[0,1,2],[2,1,0],[0,3,0],[3,0],[2,1],[0,3],[2,1],[3,0],[0,0,3],[3,0],[3,0] +00150fa011d_931230.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[3,0,0],[2,1,0],[0,3,0],[0,2,1],[2,1,0],[0,0,3],[0,0,3],[1,2],[2,0,1],[1,2,0,0],[3,0],[3,0,0],[3,0,0],[2,0,1],[3,0],[3,0],[0,3],[3,0,0],[3,0,0,0],[3,0],[1,2],[1,1,1,0],[0,3],[0,2,1],[3,0,0,0],[0,3,0],[1,0,2,0,0],[3,0,0],[3,0,0],[0,1,2],[1,2,0],[3,0,0],[0,2,1],[3,0],[1,2],[0,3],[1,2],[1,2],[3,0,0],[2,1],[3,0] +00151fa001d_931230.tif,[3,0],[2,1],[0,0,0,3,0,0,0],[0,3],[1,2],[1,2],[3,0,0],[2,1,0],[1,0,2],[1,1,1],[2,1,0],[2,1,0],[0,1,2],[1,2],[1,2,0],[2,0,1,0],[3,0],[3,0,0],[0,0,3],[2,1,0],[3,0],[3,0],[0,3],[0,2,1],[3,0,0,0],[3,0],[3,0],[1,1,0,1],[0,3],[0,3,0],[3,0,0,0],[3,0,0],[0,1,0,2,0],[3,0,0],[3,0,0],[2,1,0],[0,2,1],[2,1,0],[1,2,0],[2,1],[2,1],[0,3],[2,1],[3,0],[1,2,0],[3,0],[2,1] +00152fa001d_931230.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[0,3],[2,1],[2,1],[3,0,0],[2,1,0],[1,2,0],[2,0,1],[1,2,0],[3,0,0],[0,3,0],[3,0],[2,1,0],[2,1,0,0],[2,1],[1,1,1],[1,0,2],[2,1,0],[3,0],[2,1],[3,0],[1,2,0],[3,0,0,0],[3,0],[0,3],[0,1,0,2],[2,1],[0,2,1],[3,0,0,0],[1,2,0],[3,0,0,0,0],[1,1,1],[1,0,2],[3,0,0],[2,0,1],[0,2,1],[3,0,0],[3,0],[0,3],[2,1],[0,3],[3,0],[1,1,1],[2,1],[2,1] +00153fa001d_931230.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[1,2],[1,2],[3,0],[1,1,1],[1,1,1],[3,0,0],[1,2,0],[0,3,0],[2,1,0],[2,1,0],[2,1],[0,0,3],[1,2,0,0],[0,3],[2,0,1],[1,2,0],[1,2,0],[3,0],[3,0],[3,0],[2,1,0],[3,0,0,0],[3,0],[2,1],[2,1,0,0],[1,2],[1,2,0],[1,2,0,0],[2,0,1],[3,0,0,0,0],[3,0,0],[1,0,2],[0,0,3],[0,1,2],[3,0,0],[0,0,3],[2,1],[2,1],[0,3],[0,3],[1,2],[3,0,0],[3,0],[2,1] +00154fa001d_931230.tif,[0,3],[3,0],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[2,1,0],[3,0,0],[2,1,0],[3,0,0],[1,1,1],[2,0,1],[2,0,1],[2,1],[0,2,1],[3,0,0,0],[2,1],[3,0,0],[3,0,0],[2,0,1],[3,0],[0,3],[3,0],[0,3,0],[3,0,0,0],[3,0],[3,0],[2,0,1,0],[1,2],[0,3,0],[2,1,0,0],[2,0,1],[3,0,0,0,0],[3,0,0],[2,0,1],[0,2,1],[0,3,0],[1,2,0],[0,0,3],[2,1],[3,0],[1,2],[2,1],[0,3],[1,2,0],[3,0],[3,0] +00155fb001d_931230.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[1,2],[3,0],[1,2],[0,0,3],[0,0,3],[0,0,3],[0,1,2],[0,3,0],[0,0,3],[2,1,0],[1,2],[1,2,0],[3,0,0,0],[0,3],[3,0,0],[1,1,1],[2,1,0],[3,0],[3,0],[2,1],[1,2,0],[3,0,0,0],[3,0],[2,1],[0,1,0,2],[0,3],[1,1,1],[3,0,0,0],[0,3,0],[3,0,0,0,0],[2,0,1],[0,1,2],[3,0,0],[3,0,0],[0,3,0],[2,1,0],[3,0],[3,0],[1,2],[0,3],[3,0],[3,0,0],[3,0],[2,0] +00156fa001d_931230.tif,[2,1],[3,0],[2,0,0,0,0,0,1],[2,1],[0,3],[1,2],[2,0,1],[1,0,2],[0,0,3],[0,1,2],[1,2,0],[0,0,3],[2,0,1],[3,0],[3,0,0],[0,3,0,0],[0,3],[3,0,0],[0,3,0],[2,0,1],[3,0],[3,0],[1,2],[2,1,0],[3,0,0,0],[3,0],[3,0],[0,2,0,1],[2,1],[1,2,0],[3,0,0,0],[0,3,0],[3,0,0,0,0],[2,0,1],[1,0,2],[0,3,0],[0,1,2],[1,2,0],[1,2,0],[3,0],[2,1],[1,2],[0,3],[3,0],[2,1,0],[3,0],[2,1] +00157fa001d_931230.tif,[2,1],[1,2],[1,0,1,1,0,0,0],[2,1],[0,3],[0,3],[2,0,1],[0,0,3],[0,1,2],[0,1,2],[1,2,0],[2,1,0],[1,2,0],[3,0],[2,0,1],[0,1,2,0],[0,3],[3,0,0],[0,3,0],[3,0,0],[3,0],[1,2],[0,3],[2,1,0],[3,0,0,0],[3,0],[0,3],[0,0,3,0],[1,2],[0,1,2],[3,0,0,0],[2,1,0],[3,0,0,0,0],[2,0,1],[2,0,1],[1,1,1],[1,2,0],[1,2,0],[1,2,0],[3,0],[0,3],[2,0],[0,3],[3,0],[0,1,2],[3,0],[2,1] +00158fb001d_931230.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[0,3],[3,0],[0,3],[1,1,1],[2,1,0],[1,2,0],[2,0,1],[1,1,1],[1,1,1],[0,3,0],[2,1],[2,0,1],[3,0,0,0],[1,2],[3,0,0],[1,0,2],[2,0,1],[3,0],[0,3],[3,0],[0,3,0],[3,0,0,0],[3,0],[3,0],[0,1,1,1],[1,2],[0,3,0],[2,1,0,0],[2,0,1],[3,0,0,0,0],[3,0,0],[3,0,0],[1,2,0],[0,2,1],[0,1,2],[1,2,0],[2,1],[1,2],[0,3],[3,0],[0,3],[0,0,3],[3,0],[3,0] +00159fa001d_931230.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[0,3],[1,2],[1,2],[1,1,1],[0,2,1],[0,0,3],[0,2,1],[2,0,1],[1,0,2],[3,0,0],[3,0],[0,0,3],[2,1,0,0],[2,1],[0,0,3],[0,3,0],[2,0,1],[3,0],[3,0],[3,0],[3,0,0],[2,0,1,0],[3,0],[3,0],[0,2,0,1],[2,1],[2,1,0],[2,1,0,0],[3,0,0],[3,0,0,0,0],[3,0,0],[0,0,3],[0,2,1],[2,1,0],[0,3,0],[1,0,2],[2,1],[1,2],[0,3],[1,2],[3,0],[1,2,0],[3,0],[2,1] +00160fa001d_931230.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[2,1,0],[2,1,0],[0,2,0],[3,0,0],[0,3,0],[2,0,1],[1,0,2],[3,0],[1,1,1],[1,2,0,0],[3,0],[0,1,2],[0,0,3],[0,3,0],[3,0],[3,0],[0,3],[2,1,0],[3,0,0,0],[3,0],[2,0],[0,3,0,0],[0,3],[0,2,0],[3,0,0,0],[3,0,0],[0,0,3,0,0],[1,0,2],[3,0,0],[0,3,0],[1,2,0],[2,0,1],[0,1,2],[3,0],[3,0],[0,3],[2,1],[3,0],[1,2,0],[2,1],[2,1] +00161fa001d_931230.tif,[3,0],[1,2],[2,0,0,0,1,0,0],[2,1],[1,2],[2,1],[1,2,0],[1,2,0],[0,3,0],[2,1,0],[2,1,0],[2,1,0],[0,1,2],[3,0],[3,0,0],[0,0,2,0],[1,2],[1,1,1],[0,2,1],[1,0,2],[3,0],[2,1],[0,3],[2,1,0],[1,0,2,0],[3,0],[0,3],[0,1,1,1],[1,2],[3,0,0],[0,0,3,0],[0,0,3],[3,0,0,0,0],[2,0,1],[3,0,0],[0,0,3],[1,0,2],[2,1,0],[0,1,2],[3,0],[1,2],[2,1],[0,3],[0,3],[1,2,0],[3,0],[3,0] +00162fa001d_931230.tif,[3,0],[2,1],[2,0,0,0,1,0,0],[2,1],[1,2],[0,3],[2,0,1],[1,0,2],[0,3,0],[3,0,0],[2,1,0],[2,1,0],[0,2,1],[3,0],[1,0,2],[2,1,0,0],[0,3],[2,0,1],[0,1,2],[1,1,1],[3,0],[3,0],[3,0],[2,1,0],[2,0,1,0],[2,1],[2,1],[1,2,0,0],[2,1],[1,2,0],[2,1,0,0],[3,0,0],[1,0,2,0,0],[2,0,1],[0,3,0],[0,3,0],[0,2,1],[1,2,0],[1,2,0],[3,0],[0,3],[1,2],[2,1],[1,2],[3,0,0],[2,1],[2,1] +00163fb001d_931230.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[2,1],[0,3],[1,2],[0,1,2],[2,1,0],[1,2,0],[3,0,0],[0,2,1],[1,0,2],[2,0,1],[3,0],[1,0,2],[0,1,1,1],[3,0],[3,0,0],[1,0,2],[3,0,0],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[1,2],[1,2,0,0],[0,3],[0,3,0],[3,0,0,0],[0,3,0],[2,0,0,0,0],[3,0,0],[2,0,1],[1,1,1],[1,1,1],[3,0,0],[0,3,0],[3,0],[1,2],[0,3],[0,3],[3,0],[0,1,2],[3,0],[3,0] +00164fa001d_931230.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[0,3],[1,2],[1,2],[2,0,1],[3,0,0],[2,1,0],[2,1,0],[0,2,1],[1,0,2],[2,0,1],[3,0],[2,0,1],[0,3,0,0],[1,2],[3,0,0],[1,2,0],[2,1,0],[3,0],[3,0],[0,3],[2,1,0],[3,0,0,0],[3,0],[3,0],[2,1,0,0],[0,3],[0,2,1],[3,0,0,0],[1,2,0],[3,0,0,0,0],[3,0,0],[2,0,1],[0,3,0],[1,2,0],[2,1,0],[0,2,1],[3,0],[1,2],[1,2],[1,2],[3,0],[1,0,2],[3,0],[3,0] +00165fa001d_931230.tif,[0,3],[3,0],[3,0,0,0,0,0,0],[2,1],[1,2],[0,3],[2,0,1],[2,1,0],[3,0,0],[0,3,0],[0,0,3],[2,1,0],[1,0,2],[2,1],[2,0,1],[1,1,0,1],[3,0],[3,0,0],[1,0,2],[2,1,0],[3,0],[3,0],[0,3],[2,1,0],[3,0,0,0],[3,0],[1,2],[0,2,1,0],[0,3],[0,2,1],[3,0,0,0],[1,1,1],[3,0,0,0,0],[1,0,2],[3,0,0],[1,1,1],[1,2,0],[1,0,2],[0,3,0],[3,0],[1,2],[0,3],[1,2],[3,0],[3,0,0],[2,1],[3,0] +00166fa001d_931230.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[2,1],[0,3],[2,1],[2,0,1],[2,1,0],[2,0,1],[2,1,0],[1,1,1],[2,0,1],[1,0,2],[3,0],[3,0,0],[0,2,1,0],[3,0],[2,0,1],[2,0,1],[3,0,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[2,1,0,0],[1,2],[0,3,0],[3,0,0,0],[0,3,0],[3,0,0,0,0],[2,0,1],[3,0,0],[0,1,2],[0,3,0],[2,1,0],[0,2,1],[3,0],[2,1],[1,2],[1,2],[3,0],[0,2,1],[3,0],[3,0] +00167fa001d_931230.tif,[2,1],[0,3],[3,0,0,0,0,0,0],[0,3],[0,3],[1,2],[0,3,0],[2,0,1],[3,0,0],[2,1,0],[1,1,1],[0,3,0],[2,0,1],[3,0],[2,1,0],[1,0,0,2],[3,0],[2,1,0],[3,0,0],[3,0,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,1],[1,1,0,1],[0,3],[0,2,1],[3,0,0,0],[2,1,0],[3,0,0,0,0],[0,2,1],[2,0,1],[0,0,3],[2,1,0],[1,1,1],[0,1,2],[3,0],[1,2],[2,1],[2,1],[3,0],[1,0,2],[3,0],[2,0] +00168fa001d_931230.tif,[1,2],[1,2],[3,0,0,0,0,0,0],[2,1],[0,3],[3,0],[0,2,1],[1,0,2],[3,0,0],[2,0,1],[0,3,0],[0,0,3],[0,1,2],[3,0],[1,2,0],[0,2,1,0],[3,0],[3,0,0],[2,0,1],[2,1,0],[3,0],[3,0],[1,2],[3,0,0],[2,0,1,0],[2,1],[0,3],[2,0,1,0],[1,2],[0,2,1],[3,0,0,0],[3,0,0],[2,0,1,0,0],[2,0,1],[3,0,0],[0,1,2],[3,0,0],[1,2,0],[0,1,2],[3,0],[0,3],[1,2],[0,3],[3,0],[1,2,0],[3,0],[2,1] +00169fa001d_931230.tif,[3,0],[1,2],[0,0,2,0,1,0,0],[1,2],[0,3],[3,0],[2,1,0],[1,1,1],[1,0,2],[1,0,2],[0,3,0],[3,0,0],[1,0,2],[2,1],[2,1,0],[0,2,1,0],[3,0],[3,0,0],[2,1,0],[1,1,1],[3,0],[3,0],[0,3],[3,0,0],[3,0,0,0],[3,0],[0,3],[2,1,0,0],[0,3],[1,1,1],[2,0,1,0],[3,0,0],[0,1,2,0,0],[3,0,0],[2,1,0],[0,2,1],[2,1,0],[2,0,1],[0,3,0],[3,0],[1,2],[2,1],[0,3],[2,1],[1,0,2],[3,0],[3,0] +00170fb001d_931230.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[1,0,2],[0,2,1],[3,0,0],[2,1,0],[1,1,1],[3,0,0],[1,0,2],[2,1],[0,1,2],[1,1,0,1],[0,3],[3,0,0],[1,2,0],[3,0,0],[3,0],[3,0],[3,0],[2,0,1],[3,0,0,0],[3,0],[2,1],[1,2,0,0],[3,0],[0,3,0],[3,0,0,0],[0,2,0],[2,0,1,0,0],[2,0,1],[2,0,1],[0,3,0],[0,2,1],[1,2,0],[0,2,1],[2,1],[1,2],[0,3],[3,0],[2,1],[1,2,0],[2,1],[2,1] +00171fa001d_931230.tif,[2,1],[1,2],[2,0,0,0,0,1,0],[2,1],[0,3],[2,1],[0,0,3],[2,1,0],[1,2,0],[1,2,0],[2,1,0],[3,0,0],[1,2,0],[2,0],[1,2,0],[1,2,0,0],[3,0],[3,0,0],[0,0,3],[3,0,0],[3,0],[3,0],[3,0],[2,1,0],[3,0,0,0],[3,0],[3,0],[2,1,0,0],[0,3],[0,2,0],[3,0,0,0],[1,2,0],[3,0,0,0,0],[1,0,2],[2,0,1],[0,1,2],[0,3,0],[2,0,1],[0,2,1],[3,0],[2,1],[0,3],[0,3],[0,3],[1,2,0],[3,0],[3,0] +00172fa001d_931230.tif,[1,2],[0,3],[3,0,0,0,0,0,0],[2,1],[1,2],[3,0],[0,2,1],[2,1,0],[1,0,2],[0,1,2],[1,0,2],[2,1,0],[1,1,1],[3,0],[2,0,1],[1,2,0,0],[2,1],[2,1,0],[3,0,0],[2,0,1],[1,2],[3,0],[3,0],[0,1,2],[1,0,2,0],[3,0],[2,1],[0,2,1,0],[1,2],[0,3,0],[3,0,0,0],[3,0,0],[3,0,0,0,0],[2,1,0],[3,0,0],[0,2,1],[0,1,2],[1,1,1],[0,2,1],[3,0],[2,1],[1,2],[2,1],[0,3],[2,1,0],[2,1],[2,1] +00173fa001d_931230.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[2,1],[0,3],[3,0],[0,2,1],[2,0,1],[0,0,3],[0,1,2],[1,2,0],[2,1,0],[1,1,1],[3,0],[1,2,0],[1,1,0,1],[3,0],[2,0,1],[2,0,1],[0,0,3],[3,0],[3,0],[0,3],[1,0,2],[1,0,2,0],[2,1],[2,1],[3,0,0,0],[0,3],[0,3,0],[2,1,0,0],[1,0,2],[3,0,0,0,0],[0,1,2],[3,0,0],[1,2,0],[1,2,0],[0,3,0],[0,2,1],[3,0],[2,1],[0,3],[1,2],[1,2],[0,3,0],[3,0],[3,0] +00174fa001d_931230.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[1,0,2],[3,0,0],[1,1,1],[0,1,2],[2,1,0],[1,0,2],[2,0,1],[3,0],[2,0,1],[0,2,1,0],[3,0],[3,0,0],[2,1,0],[1,1,1],[1,2],[3,0],[0,3],[3,0,0],[3,0,0,0],[3,0],[1,2],[0,3,0,0],[1,2],[1,2,0],[0,3,0,0],[1,2,0],[3,0,0,0,0],[2,0,1],[2,0,1],[0,1,2],[0,3,0],[1,2,0],[0,3,0],[3,0],[2,1],[2,1],[0,3],[2,1],[1,2,0],[3,0],[2,1] +00175fb001d_931230.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[3,0],[1,2],[2,1],[0,3,0],[2,0,0],[1,2,0],[2,1,0],[1,2,0],[1,2,0],[1,0,2],[3,0],[3,0,0],[1,1,0,1],[3,0],[1,2,0],[1,0,2],[1,2,0],[2,1],[0,3],[0,3],[2,1,0],[3,0,0,0],[3,0],[0,3],[0,1,0,2],[1,2],[0,3,0],[3,0,0,0],[1,0,1],[3,0,0,0,0],[1,1,1],[2,0,1],[0,3,0],[1,2,0],[1,2,0],[0,3,0],[3,0],[2,1],[1,2],[0,3],[2,1],[0,0,3],[3,0],[3,0] +00176fa001d_931230.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[2,1],[1,2],[2,1],[2,1,0],[3,0,0],[2,1,0],[2,0,1],[2,1,0],[0,3,0],[2,1,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,0,1],[0,0,3],[2,0,1],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[1,2],[0,1,0,2],[3,0],[0,2,1],[3,0,0,0],[2,1,0],[1,0,2,0,0],[2,0,1],[2,1,0],[0,3,0],[1,2,0],[3,0,0],[0,1,2],[3,0],[0,3],[1,2],[0,3],[2,1],[1,1,1],[3,0],[1,2] +00177fa001d_931230.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[0,3],[1,2],[0,3],[3,0,0],[2,1,0],[0,3,0],[1,2,0],[0,2,1],[0,0,3],[1,1,1],[2,1],[2,1,0],[2,1,0,0],[3,0],[3,0,0],[1,0,2],[3,0,0],[3,0],[0,3],[0,3],[1,2,0],[3,0,0,0],[2,1],[3,0],[1,2,0,0],[1,2],[0,2,1],[3,0,0,0],[0,3,0],[3,0,0,0,0],[2,0,1],[3,0,0],[1,2,0],[1,2,0],[1,2,0],[3,0,0],[0,3],[3,0],[1,2],[3,0],[2,1],[0,1,2],[3,0],[2,1] +00178fa001d_931230.tif,[3,0],[3,0],[1,0,2,0,0,0,0],[1,2],[0,3],[1,2],[2,1,0],[2,1,0],[3,0,0],[3,0,0],[2,0,1],[2,1,0],[3,0,0],[3,0],[0,0,3],[2,1,0,0],[3,0],[3,0,0],[0,0,3],[3,0,0],[3,0],[3,0],[3,0],[2,0,1],[1,0,1,0],[3,0],[3,0],[1,1,1,0],[0,3],[0,1,2],[3,0,0,0],[3,0,0],[2,0,1,0,0],[1,2,0],[2,0,1],[0,0,3],[1,2,0],[2,0,1],[0,1,2],[3,0],[0,3],[1,2],[0,3],[2,1],[3,0,0],[0,3],[2,1] +00179fa001d_931230.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[0,3],[2,1],[1,2],[0,0,3],[2,1,0],[1,0,2],[1,1,1],[1,1,1],[1,2,0],[0,2,1],[3,0],[2,1,0],[1,1,0,1],[1,2],[3,0,0],[1,1,1],[2,1,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[2,1],[0,3,0,0],[3,0],[1,1,1],[2,1,0,0],[1,0,2],[3,0,0,0,0],[2,0,1],[0,3,0],[0,1,2],[2,1,0],[2,1,0],[0,2,1],[3,0],[0,3],[0,2],[1,2],[1,2],[0,3,0],[3,0],[2,1] +00180fb001d_931230.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[3,0],[0,3],[3,0],[3,0,0],[1,1,1],[1,0,2],[1,2,0],[1,2,0],[2,0,1],[1,0,2],[1,2],[3,0,0],[1,1,1,0],[0,3],[2,0,1],[0,3,0],[0,2,1],[3,0],[3,0],[3,0],[1,2,0],[3,0,0,0],[1,2],[2,1],[1,1,1,0],[0,3],[3,0,0],[3,0,0,0],[1,2,0],[0,2,1,0,0],[2,0,1],[1,0,2],[1,2,0],[2,1,0],[1,2,0],[1,2,0],[3,0],[2,1],[3,0],[2,1],[3,0],[3,0,0],[3,0],[2,1] +00181fa001d_931230.tif,[1,2],[3,0],[2,0,0,1,0,0,0],[1,2],[1,2],[0,3],[3,0,0],[2,0,1],[3,0,0],[2,1,0],[0,1,2],[0,0,3],[2,0,1],[2,1],[2,1,0],[2,1,0,0],[0,3],[0,1,2],[0,0,3],[2,0,1],[3,0],[0,3],[3,0],[1,2,0],[2,0,1,0],[3,0],[3,0],[0,0,3,0],[0,3],[0,2,1],[3,0,0,0],[1,0,2],[3,0,0,0,0],[1,0,2],[3,0,0],[0,1,2],[1,2,0],[1,0,2],[1,0,2],[1,2],[1,2],[0,3],[3,0],[2,1],[1,2,0],[2,1],[3,0] +00182fa001d_931230.tif,[2,1],[0,3],[3,0,0,0,0,0,0],[2,1],[0,3],[2,1],[0,0,3],[0,1,2],[0,3,0],[2,0,1],[1,1,1],[3,0,0],[0,1,2],[3,0],[2,0,1],[1,0,2,0],[1,2],[2,0,1],[1,0,2],[2,1,0],[3,0],[3,0],[3,0],[2,1,0],[3,0,0,0],[3,0],[2,1],[0,3,0,0],[1,2],[0,2,1],[2,1,0,0],[1,0,2],[2,0,0,0,1],[3,0,0],[2,0,1],[0,2,1],[1,2,0],[2,1,0],[0,2,1],[3,0],[2,1],[0,3],[1,2],[0,3],[1,1,1],[3,0],[3,0] +00183fb010_940128.tif,[3,0],[2,1],[2,0,0,1,0,0,0],[0,3],[1,2],[1,2],[0,1,2],[1,2,0],[2,1,0],[1,2,0],[1,2,0],[3,0,0],[2,0,1],[3,0],[1,1,1],[1,1,0,1],[1,2],[1,0,1],[2,1,0],[1,0,2],[1,2],[3,0],[3,0],[1,1,1],[0,0,3,0],[2,1],[3,0],[0,0,1,2],[0,3],[2,1,0],[3,0,0,0],[3,0,0],[1,0,0,2,0],[3,0,0],[2,0,1],[0,1,2],[1,1,1],[1,1,1],[0,0,3],[3,0],[2,1],[0,3],[2,1],[3,0],[2,1,0],[3,0],[1,2] +00184fa010_940128.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[1,0,2],[2,0,1],[0,0,3],[0,3,0],[1,0,2],[0,3,0],[3,0,0],[2,1],[2,1,0],[1,0,0,2],[0,3],[2,0,1],[0,2,1],[1,2,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[3,0],[1,1,0,1],[0,3],[1,2,0],[3,0,0,0],[1,2,0],[1,1,1,0,0],[3,0,0],[2,0,1],[2,1,0],[0,2,1],[0,2,1],[1,2,0],[2,1],[1,2],[0,3],[3,0],[3,0],[1,2,0],[1,2],[3,0] +00185fa010_940128.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[0,2,1],[0,2,1],[1,1,1],[2,1,0],[0,3,0],[1,2,0],[0,0,3],[1,2],[2,0,1],[3,0,0,0],[1,2],[2,0,1],[0,3,0],[2,0,1],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[2,1],[3,0],[0,3,0,0],[1,2],[2,1,0],[2,1,0,0],[2,1,0],[3,0,0,0,0],[1,0,2],[1,1,1],[3,0,0],[0,2,1],[1,0,2],[2,1,0],[2,1],[2,1],[0,3],[3,0],[0,3],[0,0,3],[3,0],[3,0] +00186fa010_940128.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[1,2],[1,2],[2,1],[2,0,1],[2,0,1],[3,0,0],[0,3,0],[0,3,0],[2,1,0],[3,0,0],[2,1],[2,1,0],[2,1,0,0],[1,2],[2,0,1],[1,2,0],[2,0,1],[3,0],[3,0],[0,3],[2,1,0],[3,0,0,0],[3,0],[1,2],[0,3,0,0],[2,1],[1,2,0],[3,0,0,0],[0,2,1],[3,0,0,0,0],[3,0,0],[2,1,0],[1,2,0],[2,1,0],[0,3,0],[2,1,0],[3,0],[2,1],[1,2],[0,3],[0,3],[3,0,0],[2,1],[3,0] +00187fa010_940128.tif,[3,0],[3,0],[1,0,0,2,0,0,0],[1,2],[0,3],[2,1],[3,0,0],[2,1,0],[1,0,2],[0,1,2],[0,2,1],[3,0,0],[2,1,0],[3,0],[2,0,1],[1,1,0,1],[3,0],[0,2,1],[3,0,0],[2,0,1],[3,0],[3,0],[0,3],[3,0,0],[0,0,3,0],[2,1],[2,1],[0,0,2,1],[1,2],[0,2,1],[3,0,0,0],[2,1,0],[0,2,1,0,0],[2,0,1],[3,0,0],[0,2,1],[0,3,0],[3,0,0],[0,3,0],[3,0],[0,3],[2,1],[1,2],[3,0],[1,1,1],[3,0],[2,1] +00188fa010_940128.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[0,1,2],[3,0,0],[2,1,0],[1,1,1],[0,3,0],[1,2,0],[2,0,1],[2,1],[1,0,1],[1,0,2,0],[3,0],[3,0,0],[2,1,0],[1,2,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[1,2],[1,1],[0,0,3,0],[0,3],[0,2,1],[1,2,0,0],[2,1,0],[3,0,0,0,0],[3,0,0],[1,2,0],[0,0,3],[0,2,1],[1,0,2],[1,0,2],[2,1],[2,1],[1,2],[1,2],[1,2],[2,1,0],[2,1],[3,0] +00189fa010_940128.tif,[0,3],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[0,0,3],[2,1,0],[2,0,1],[0,3,0],[1,0,2],[0,0,3],[3,0,0],[3,0],[1,0,1],[0,3,0,0],[1,2],[3,0,0],[2,0,1],[1,2,0],[3,0],[3,0],[0,3],[3,0,0],[3,0,0,0],[3,0],[2,1],[3,0,0,0],[1,2],[0,1,2],[3,0,0,0],[1,2,0],[3,0,0,0,0],[1,0,2],[2,0,1],[0,0,3],[1,1,1],[3,0,0],[0,1,2],[3,0],[0,3],[0,3],[3,0],[3,0],[0,3,0],[3,0],[2,1] +00190fa010_940128.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[0,3,0],[1,2,0],[2,1,0],[2,1,0],[0,2,1],[0,0,3],[3,0,0],[1,2],[1,1,1],[2,1,0,0],[2,1],[3,0,0],[3,0,0],[3,0,0],[3,0],[0,3],[3,0],[0,3,0],[3,0,0,0],[2,1],[3,0],[3,0,0,0],[0,3],[3,0,0],[0,2,1,0],[2,0,1],[3,0,0,0,0],[2,1,0],[2,1,0],[0,3,0],[1,2,0],[1,0,2],[0,3,0],[3,0],[2,1],[1,2],[0,3],[0,3],[3,0,0],[3,0],[3,0] +00191fa010_940128.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[1,2,0],[0,3,0],[1,2,0],[3,0,0],[1,2,0],[1,2,0],[3,0,0],[1,2],[2,1,0],[3,0,0,0],[2,1],[1,0,2],[3,0,0],[1,1,1],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[2,1],[0,1,0,2],[1,2],[2,1,0],[3,0,0,0],[3,0,0],[3,0,0,0,0],[3,0,0],[2,1,0],[0,3,0],[0,2,1],[2,1,0],[0,3,0],[2,1],[2,1],[1,2],[1,2],[0,3],[0,3,0],[3,0],[2,1] +00192fa010_940128.tif,[2,1],[2,1],[2,0,1,0,0,0,0],[0,3],[0,3],[1,2],[1,0,2],[0,0,3],[3,0,0],[2,0,1],[0,1,2],[1,1,1],[2,0,1],[3,0],[1,2,0],[0,2,1,0],[0,3],[2,0,1],[1,1,1],[3,0,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[2,1,0,0],[2,1],[1,1,1],[3,0,0,0],[1,2,0],[0,1,2,0,0],[2,0,1],[3,0,0],[1,2,0],[0,1,2],[0,3,0],[0,1,2],[3,0],[1,2],[1,2],[0,3],[1,2],[3,0,0],[0,3],[3,0] +00193fa010_940128.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[3,0],[0,3],[1,2],[1,0,2],[1,1,1],[0,0,3],[0,1,2],[1,2,0],[2,0,0],[3,0,0],[3,0],[2,1,0],[0,1,1,1],[1,2],[1,0,2],[0,2,1],[1,2,0],[2,1],[3,0],[2,1],[3,0,0],[3,0,0,0],[3,0],[1,2],[1,1,1,0],[1,2],[0,3,0],[3,0,0,0],[1,2,0],[1,0,2,0,0],[3,0,0],[1,0,2],[1,2,0],[1,2,0],[1,2,0],[1,1,1],[3,0],[1,2],[0,3],[0,3],[2,1],[0,2,0],[3,0],[3,0] +00194fb010_940128.tif,[0,3],[2,1],[3,0,0,0,0,0,0],[3,0],[0,3],[3,0],[0,0,3],[0,1,2],[3,0,0],[2,1,0],[1,0,2],[2,1,0],[2,1,0],[1,2],[2,0,1],[1,1,1,0],[0,3],[2,0,1],[0,3,0],[1,2,0],[3,0],[0,3],[3,0],[0,3,0],[3,0,0,0],[3,0],[2,1],[2,0,1,0],[1,2],[2,1,0],[0,1,2,0],[2,0,1],[3,0,0,0,0],[1,0,2],[2,0,1],[1,2,0],[3,0,0],[2,0,1],[1,1,1],[3,0],[1,2],[1,2],[0,3],[0,3],[1,1,1],[3,0],[3,0] +00195fa010_940128.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[1,2],[0,3],[2,1],[1,0,2],[0,1,2],[2,0,1],[1,2,0],[2,1,0],[3,0,0],[0,1,2],[0,3],[1,2,0],[0,2,1,0],[0,3],[1,0,2],[1,2,0],[1,0,2],[3,0],[3,0],[3,0],[1,2,0],[3,0,0,0],[3,0],[1,2],[1,0,1,1],[1,2],[2,0,1],[0,1,2,0],[2,0,1],[3,0,0,0,0],[3,0,0],[1,2,0],[0,2,1],[1,1,1],[0,3,0],[1,2,0],[3,0],[0,3],[2,1],[0,3],[0,3],[1,1,1],[2,1],[3,0] +00196fa010_940128.tif,[3,0],[0,3],[3,0,0,0,0,0,0],[1,2],[1,2],[3,0],[3,0,0],[2,1,0],[1,2,0],[3,0,0],[1,1,1],[0,2,1],[2,0,1],[2,1],[1,0,2],[0,2,1,0],[3,0],[1,0,2],[3,0,0],[2,1,0],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[2,1],[0,1,1,1],[1,2],[1,2,0],[0,1,2,0],[0,3,0],[3,0,0,0,0],[2,0,1],[0,3,0],[1,1,1],[0,3,0],[1,0,2],[0,3,0],[3,0],[1,2],[3,0],[0,3],[0,3],[3,0,0],[2,1],[2,1] +00197fa010_940128.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[1,2],[1,2],[0,3],[3,0,0],[2,1,0],[2,1,0],[1,2,0],[0,3,0],[1,1,1],[2,0,1],[2,1],[1,2,0],[0,3,0,0],[3,0],[0,2,1],[2,0,1],[3,0,0],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[3,0],[1,0,0,2],[0,3],[2,0,1],[1,2,0,0],[0,3,0],[3,0,0,0,0],[2,0,1],[2,0,1],[1,1,1],[3,0,0],[1,2,0],[0,1,2],[3,0],[2,1],[0,3],[2,1],[2,1],[0,1,1],[2,1],[2,1] +00198fa010_940128.tif,[1,2],[1,2],[3,0,0,0,0,0,0],[2,1],[0,3],[3,0],[1,2,0],[1,1,0],[2,1,0],[3,0,0],[0,2,1],[0,1,2],[3,0,0],[2,1],[2,1,0],[0,1,2,0],[3,0],[1,0,2],[2,0,1],[2,0,1],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[0,3],[0,2,0,1],[0,3],[0,2,1],[2,1,0,0],[2,0,1],[3,0,0,0,0],[1,1,1],[1,0,2],[0,3,0],[1,2,0],[1,1,1],[0,3,0],[2,1],[2,1],[3,0],[0,3],[2,1],[0,0,3],[2,1],[2,1] +00199fa010_940128.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[1,2],[1,2],[2,1],[2,0,1],[1,0,2],[3,0,0],[0,0,3],[1,1,1],[1,1,1],[3,0,0],[2,1],[1,2,0],[2,0,1,0],[0,3],[0,0,3],[1,2,0],[2,0,1],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,1],[0,0,0,3],[0,3],[0,1,2],[3,0,0,0],[0,3,0],[3,0,0,0,0],[3,0,0],[2,1,0],[1,2,0],[0,3,0],[1,1,1],[2,1,0],[3,0],[0,3],[1,2],[2,1],[3,0],[1,1,1],[3,0],[3,0] +00200fa010_940128.tif,[2,1],[2,0],[3,0,0,0,0,0,0],[1,2],[3,0],[0,3],[2,0,1],[1,1,1],[2,0,1],[0,2,1],[0,3,0],[1,2,0],[2,1,0],[3,0],[0,3,0],[2,1,0,0],[0,3],[0,0,3],[1,2,0],[3,0,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[1,1,1,0],[1,2],[0,2,1],[2,1,0,0],[3,0,0],[2,0,1,0,0],[2,0,1],[1,1,1],[3,0,0],[0,1,2],[0,3,0],[3,0,0],[1,2],[1,2],[1,2],[3,0],[2,1],[0,3,0],[3,0],[3,0] +00201fa010_940128.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[2,1],[0,3],[1,2],[1,2,0],[2,1,0],[1,2,0],[1,2,0],[0,3,0],[0,3,0],[3,0,0],[1,2],[1,0,2],[0,0,3,0],[2,1],[1,1,1],[1,0,2],[1,2,0],[3,0],[0,3],[3,0],[0,3,0],[3,0,0,0],[0,3],[1,2],[0,2,1,0],[0,3],[1,1,1],[1,2,0,0],[2,1,0],[3,0,0,0,0],[1,1,1],[3,0,0],[2,1,0],[1,2,0],[1,2,0],[0,3,0],[3,0],[2,1],[3,0],[0,3],[0,3],[0,0,3],[3,0],[3,0] +00202fa010_940128.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[2,1],[0,3],[2,1],[1,2,0],[0,0,3],[2,0,1],[2,1,0],[0,3,0],[2,0,1],[2,1,0],[1,2],[2,1,0],[1,0,1,1],[0,3],[3,0,0],[2,0,1],[0,0,3],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[1,2],[0,3,0,0],[0,3],[0,1,2],[0,0,2,1],[2,0,1],[3,0,0,0,0],[1,0,2],[3,0,0],[1,2,0],[1,2,0],[0,2,1],[0,3,0],[3,0],[0,3],[3,0],[0,3],[1,2],[3,0,0],[3,0],[3,0] +00203fa010_940128.tif,[3,0],[2,1],[0,1,0,0,0,2,0],[1,2],[0,3],[1,2],[3,0,0],[1,2,0],[1,2,0],[0,2,1],[0,1,2],[0,3,0],[3,0,0],[2,1],[0,2,1],[2,0,0,1],[2,1],[2,0,1],[3,0,0],[0,0,3],[1,2],[3,0],[3,0],[1,1,1],[0,1,0,2],[2,1],[2,1],[0,1,0,2],[0,3],[0,2,1],[3,0,0,0],[2,1,0],[0,0,0,0,3],[1,0,2],[2,1,0],[0,3,0],[0,3,0],[1,1,1],[0,3,0],[3,0],[3,0],[1,2],[0,3],[3,0],[0,2,1],[2,1],[2,1] +00204fa010_940128.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[1,2],[0,3],[2,1],[3,0,0],[1,2,0],[0,3,0],[3,0,0],[0,1,2],[0,0,3],[3,0,0],[2,1],[1,2,0],[0,3,0,0],[2,1],[2,0,1],[3,0,0],[3,0,0],[3,0],[3,0],[0,3],[3,0,0],[3,0,0,0],[3,0],[3,0],[1,1,0,1],[0,3],[1,2,0],[3,0,0,0],[2,1,0],[3,0,0,0,0],[1,0,2],[3,0,0],[0,3,0],[2,1,0],[2,1,0],[0,1,2],[3,0],[2,1],[1,2],[1,2],[3,0],[3,0,0],[2,1],[2,1] +00205fa010_940128.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[2,1],[0,3],[1,2],[0,0,3],[0,3,0],[0,0,3],[0,2,1],[0,2,1],[2,0,1],[3,0,0],[2,1],[1,2,0],[0,2,0,1],[1,2],[0,1,2],[0,3,0],[3,0,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[3,0],[1,1,1,0],[0,3],[0,1,2],[2,1,0,0],[1,2,0],[3,0,0,0,0],[1,0,2],[3,0,0],[0,0,3],[1,1,1],[1,1,1],[0,0,3],[3,0],[2,1],[0,3],[0,3],[1,2],[1,1,1],[3,0],[2,1] +00206fa010_940128.tif,[1,2],[0,3],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[0,0,3],[1,0,2],[0,0,3],[0,1,2],[1,0,2],[2,1,0],[3,0,0],[3,0],[1,0,2],[1,1,0,1],[2,1],[1,1,1],[1,1,1],[3,0,0],[3,0],[3,0],[0,3],[2,1,0],[2,0,1,0],[0,3],[1,2],[0,3,0,0],[2,1],[0,3,0],[3,0,0,0],[1,0,2],[3,0,0,0,0],[3,0,0],[3,0,0],[0,2,1],[1,2,0],[0,0,3],[1,2,0],[2,1],[0,2],[0,3],[2,1],[1,2],[1,2,0],[2,1],[1,2] +00207fb010_940128.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[3,0],[1,2],[3,0],[2,0,1],[3,0,0],[0,3,0],[0,1,2],[2,0,1],[2,0,1],[3,0,0],[2,1],[1,1,1],[0,0,2,1],[0,3],[1,0,2],[0,0,3],[1,2,0],[2,1],[3,0],[3,0],[3,0,0],[3,0,0,0],[1,2],[1,2],[0,2,1,0],[1,2],[1,2,0],[3,0,0,0],[2,1,0],[2,0,1,0,0],[3,0,0],[3,0,0],[0,1,2],[1,1,1],[1,2,0],[0,2,1],[3,0],[1,2],[3,0],[0,3],[2,1],[3,0,0],[0,3],[3,0] +00208fa010_940128.tif,[3,0],[1,2],[2,0,0,0,0,0,0],[3,0],[1,2],[3,0],[1,0,2],[2,0,1],[3,0,0],[1,2,0],[0,2,1],[1,0,1],[1,0,2],[2,1],[1,0,2],[2,0,0,1],[2,1],[2,0,1],[0,2,1],[1,1,1],[3,0],[1,2],[3,0],[1,2,0],[3,0,0,0],[3,0],[2,1],[0,0,0,3],[0,3],[0,3,0],[3,0,0,0],[1,2,0],[3,0,0,0,0],[0,0,3],[3,0,0],[3,0,0],[1,1,1],[1,2,0],[2,1,0],[3,0],[1,2],[2,1],[3,0],[3,0],[0,2,1],[3,0],[3,0] +00209fa010_940128.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[2,1],[0,3],[0,3],[0,3,0],[1,1,1],[0,3,0],[1,2,0],[0,3,0],[3,0,0],[3,0,0],[1,2],[2,1,0],[3,0,0,0],[3,0],[3,0,0],[2,1,0],[2,1,0],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[0,1,0,2],[1,2],[0,2,1],[3,0,0,0],[2,0,1],[3,0,0,0,0],[0,2,1],[3,0,0],[0,2,1],[1,0,2],[0,0,3],[0,3,0],[3,0],[1,1],[3,0],[0,3],[0,3],[0,3,0],[3,0],[3,0] +00210fb010_940128.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[1,2],[2,1],[0,3],[1,2,0],[1,2,0],[2,1,0],[1,2,0],[2,1,0],[1,2,0],[2,0,1],[3,0],[3,0,0],[2,0,1,0],[1,2],[2,0,1],[2,1,0],[3,0,0],[3,0],[0,3],[3,0],[2,0,1],[3,0,0,0],[3,0],[2,1],[2,1,0,0],[0,3],[0,3,0],[3,0,0,0],[2,1,0],[3,0,0,0,0],[2,0,1],[2,1,0],[1,1,1],[1,2,0],[2,1,0],[1,2,0],[2,1],[1,2],[2,1],[0,3],[2,1],[0,2,1],[3,0],[3,0] +00211fa010_940128.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[2,1],[1,2],[2,1],[1,2,0],[2,1,0],[2,1,0],[3,0,0],[0,3,0],[2,0,1],[1,0,2],[2,1],[2,1,0],[2,0,0,1],[2,1],[2,0,1],[3,0,0],[3,0,0],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[1,2],[3,0],[0,2,0,1],[2,1],[2,1,0],[0,2,1,0],[2,0,1],[3,0,0,0,0],[0,1,2],[1,1,1],[1,2,0],[1,2,0],[2,1,0],[0,3,0],[3,0],[3,0],[1,2],[3,0],[1,2],[0,3,0],[3,0],[2,1] +00212fa010_940128.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[1,2],[1,2],[0,3],[2,0,1],[2,1,0],[3,0,0],[2,1,0],[1,1,1],[3,0,0],[1,0,2],[2,1],[2,0,1],[2,1,0,0],[3,0],[3,0,0],[3,0,0],[2,0,1],[3,0],[0,2],[0,3],[1,1,1],[2,0,0,0],[3,0],[3,0],[0,3,0,0],[0,3],[1,2,0],[3,0,0,0],[2,0,1],[3,0,0,0,0],[2,0,1],[2,0,1],[1,0,2],[1,1,1],[2,1,0],[0,3,0],[2,1],[2,1],[0,3],[1,2],[3,0],[0,2,1],[3,0],[3,0] +00213fa010_940128.tif,[3,0],[2,1],[2,0,1,0,0,0,0],[0,3],[1,2],[0,3],[0,1,2],[2,0,1],[2,0,1],[2,1,0],[0,1,2],[2,0,1],[2,0,1],[1,2],[1,1,1],[2,0,0,1],[0,3],[1,0,2],[0,1,2],[1,0,2],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[2,1,0,0],[1,2],[1,2,0],[2,1,0,0],[2,1,0],[0,0,3,0,0],[1,0,2],[3,0,0],[1,2,0],[2,0,1],[1,2,0],[0,2,1],[3,0],[1,2],[0,3],[3,0],[2,1],[2,1,0],[3,0],[2,1] +00214fa010_940128.tif,[1,2],[1,2],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[3,0,0],[0,0,3],[0,3,0],[2,1,0],[0,3,0],[2,0,1],[3,0,0],[1,2],[1,1,1],[2,0,1,0],[0,3],[1,0,2],[0,1,2],[2,0,1],[3,0],[0,3],[3,0],[2,0,1],[3,0,0,0],[3,0],[1,2],[1,0,0,2],[0,3],[0,2,1],[3,0,0,0],[3,0,0],[3,0,0,0,0],[2,0,1],[2,1,0],[2,1,0],[0,1,2],[2,0,1],[0,3,0],[3,0],[0,3],[1,2],[0,3],[2,0],[1,2,0],[3,0],[3,0] +00215fa010_940128.tif,[2,1],[2,1],[2,0,1,0,0,0,0],[1,2],[0,3],[1,2],[1,2,0],[1,1,1],[2,0,1],[2,1,0],[1,2,0],[3,0,0],[2,0,1],[2,1],[3,0,0],[2,1,0,0],[3,0],[2,0,1],[2,0,1],[1,2,0],[3,0],[3,0],[0,3],[3,0,0],[3,0,0,0],[1,2],[2,1],[1,2,0,0],[0,3],[0,1,2],[3,0,0,0],[0,3,0],[2,0,1,0,0],[0,2,1],[1,0,2],[0,2,1],[2,1,0],[3,0,0],[1,2,0],[3,0],[2,1],[0,3],[0,3],[1,2],[2,1,0],[2,1],[2,1] +00216fa010_940128.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[1,1],[0,3],[3,0],[0,1,2],[2,1,0],[2,0,1],[0,3,0],[2,0,1],[3,0,0],[1,0,2],[3,0],[2,0,1],[0,0,3,0],[1,2],[0,0,3],[0,0,3],[2,1,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[1,2],[1,1,0,1],[0,3],[0,2,1],[1,2,0,0],[2,1,0],[3,0,0,0,0],[3,0,0],[2,0,1],[0,2,1],[1,1,1],[1,2,0],[0,3,0],[3,0],[2,1],[2,1],[0,3],[2,1],[3,0,0],[3,0],[3,0] +00217fb010_940128.tif,[3,0],[3,0],[2,0,0,1,0,0,0],[0,3],[2,1],[0,3],[2,1,0],[1,1,1],[1,0,2],[0,0,3],[1,2,0],[1,2,0],[1,0,2],[2,1],[1,1,1],[2,0,1,0],[0,3],[2,0,1],[0,1,2],[2,1,0],[2,1],[2,0],[0,3],[2,1,0],[3,0,0,0],[3,0],[3,0],[3,0,0,0],[2,1],[0,3,0],[3,0,0,0],[1,0,2],[0,0,3,0,0],[3,0,0],[3,0,0],[0,1,2],[1,1,1],[1,1,1],[0,0,3],[2,1],[3,0],[0,3],[2,1],[2,1],[2,1,0],[3,0],[2,1] +00218fa010_940128.tif,[0,3],[2,1],[3,0,0,0,0,0,0],[2,1],[3,0],[1,2],[0,3,0],[1,2,0],[1,2,0],[2,1,0],[0,2,1],[1,0,2],[3,0,0],[3,0],[0,1,2],[0,2,1,0],[3,0],[3,0,0],[2,0,1],[3,0,0],[3,0],[0,3],[3,0],[2,1,0],[2,0,0,0],[3,0],[3,0],[1,2,0,0],[0,3],[0,2,1],[3,0,0,0],[1,2,0],[3,0,0,0,0],[2,0,1],[2,0,1],[0,0,3],[0,2,1],[2,0,1],[0,2,1],[3,0],[2,1],[0,3],[1,2],[1,2],[0,3,0],[3,0],[3,0] +00219fa010_940128.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[1,2],[1,2],[0,3],[2,0,1],[1,2,0],[1,1,1],[0,3,0],[0,3,0],[1,0,2],[3,0,0],[2,1],[0,3,0],[1,0,1,1],[1,2],[3,0,0],[1,1,1],[1,2,0],[3,0],[1,2],[0,3],[1,1,1],[3,0,0,0],[2,1],[3,0],[0,0,3,0],[1,2],[2,0,1],[3,0,0,0],[1,0,2],[3,0,0,0,0],[2,0,1],[2,0,1],[0,1,2],[1,2,0],[0,3,0],[0,2,0],[2,1],[0,3],[0,3],[1,2],[2,1],[3,0,0],[3,0],[3,0] +00220fa010_940128.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[0,1,2],[2,1,0],[2,1,0],[1,2,0],[1,2,0],[2,1,0],[3,0,0],[1,2],[0,3,0],[1,0,1,1],[3,0],[2,0,1],[2,0,1],[2,1,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,1],[0,1,1,1],[3,0],[0,3,0],[3,0,0,0],[3,0,0],[3,0,0,0,0],[2,0,1],[2,1,0],[0,2,1],[1,1,1],[1,2,0],[0,3,0],[3,0],[1,2],[0,3],[1,2],[3,0],[3,0,0],[3,0],[3,0] +00221fa010_940128.tif,[3,0],[0,3],[3,0,0,0,0,0,0],[0,3],[1,2],[1,2],[0,0,3],[3,0,0],[2,1,0],[3,0,0],[1,2,0],[1,2,0],[1,0,2],[2,1],[3,0,0],[2,1,0,0],[0,3],[2,0,1],[0,0,3],[2,0,1],[1,2],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[3,0],[1,2,0,0],[1,2],[0,2,1],[3,0,0,0],[2,1,0],[3,0,0,0,0],[2,0,1],[2,1,0],[0,1,2],[0,3,0],[2,1,0],[0,3,0],[3,0],[2,1],[0,3],[2,1],[1,2],[1,2,0],[3,0],[3,0] +00222fa010_940128.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[3,0],[1,2],[0,3],[2,0,1],[2,1,0],[0,0,3],[1,0,2],[1,2,0],[3,0,0],[2,0,1],[2,1],[1,0,2],[2,1,0,0],[2,1],[1,0,2],[2,0,1],[2,1,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[0,3],[0,2,0,1],[0,3],[0,3,0],[3,0,0,0],[0,3,0],[3,0,0,0,0],[2,0,1],[0,0,3],[1,2,0],[1,2,0],[0,0,3],[2,1,0],[3,0],[1,2],[1,2],[0,3],[3,0],[2,1,0],[3,0],[3,0] +00223fa010_940128.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[1,2],[1,2],[1,2],[1,0,1],[2,0,1],[1,0,2],[1,1,1],[1,1,1],[2,1,0],[3,0,0],[2,1],[2,1,0],[2,0,0,1],[0,3],[1,0,1],[0,0,3],[3,0,0],[0,3],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[3,0],[0,3,0,0],[0,3],[0,3,0],[3,0,0,0],[1,2,0],[3,0,0,0,0],[2,0,1],[0,0,3],[3,0,0],[1,1,1],[3,0,0],[1,2,0],[3,0],[0,3],[2,1],[0,3],[3,0],[2,0,1],[3,0],[2,1] +00224fa010_940128.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[2,1,0],[3,0,0],[1,2,0],[1,2,0],[0,3,0],[3,0,0],[2,0,1],[2,1],[1,1,1],[3,0,0,0],[0,3],[0,0,3],[1,1,1],[2,0,1],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[1,1,1,0],[0,3],[1,1,1],[3,0,0,0],[2,1,0],[3,0,0,0,0],[2,0,1],[3,0,0],[0,3,0],[0,3,0],[3,0,0],[2,1,0],[2,1],[2,1],[1,2],[3,0],[3,0],[1,1,1],[3,0],[1,2] +00227fa010_940128.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[1,2],[0,3],[2,1],[1,0,2],[1,0,2],[2,1,0],[0,3,0],[0,3,0],[0,2,1],[2,0,1],[0,3],[1,1,1],[1,1,0,1],[3,0],[3,0,0],[1,1,1],[2,0,1],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[2,1],[1,2,0,0],[0,3],[0,2,1],[3,0,0,0],[2,0,1],[3,0,0,0,0],[1,1,1],[2,0,1],[1,1,1],[2,0,1],[0,3,0],[2,1,0],[3,0],[1,2],[2,1],[0,3],[3,0],[0,0,3],[3,0],[1,2] +00228fa010_940128.tif,[2,1],[2,1],[2,0,0,0,1,0,0],[2,1],[0,3],[1,2],[2,0,1],[1,0,2],[2,0,1],[1,1,1],[2,1,0],[1,2,0],[3,0,0],[3,0],[1,0,2],[2,1,0,0],[0,3],[2,1,0],[1,1,1],[1,0,2],[1,2],[3,0],[0,3],[3,0,0],[1,0,2,0],[3,0],[1,2],[0,0,3,0],[1,2],[0,1,2],[3,0,0,0],[0,1,2],[2,0,1,0,0],[1,0,2],[2,1,0],[0,0,3],[0,2,1],[1,1,1],[0,0,3],[3,0],[0,3],[1,2],[3,0],[0,3],[1,1,1],[1,2],[3,0] +00229fa010_940128.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[0,3],[1,2],[3,0],[1,2,0],[3,0,0],[0,3,0],[2,1,0],[1,2,0],[0,3,0],[3,0,0],[1,2],[2,1,0],[1,0,2,0],[3,0],[1,0,2],[2,0,1],[3,0,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[0,3],[3,0,0,0],[1,2],[0,3,0],[2,1,0,0],[1,2,0],[3,0,0,0,0],[1,1,1],[3,0,0],[0,1,2],[1,2,0],[3,0,0],[0,3,0],[3,0],[1,2],[3,0],[0,3],[2,1],[1,2,0],[3,0],[3,0] +00230fb010_940128.tif,[3,0],[0,3],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[0,1,2],[1,0,2],[1,0,2],[0,1,2],[0,3,0],[0,3,0],[2,1,0],[2,1],[2,0,1],[1,1,1,0],[0,3],[1,0,2],[0,2,1],[3,0,0],[3,0],[3,0],[3,0],[2,1,0],[3,0,0,0],[3,0],[0,3],[0,2,1,0],[3,0],[2,0,0],[0,2,1,0],[1,0,2],[3,0,0,0,0],[3,0,0],[2,0,1],[0,3,0],[2,1,0],[2,0,1],[0,3,0],[3,0],[2,1],[2,1],[0,3],[0,2],[2,1,0],[3,0],[2,1] +00231fb010_940128.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[1,2],[1,2],[0,3],[1,2,0],[3,0,0],[0,3,0],[3,0,0],[0,1,2],[2,0,1],[2,0,1],[2,1],[0,3,0],[1,0,1,1],[3,0],[2,1,0],[3,0,0],[3,0,0],[2,1],[0,3],[3,0],[1,2,0],[3,0,0,0],[3,0],[2,1],[1,1,0,1],[2,1],[0,3,0],[2,1,0,0],[0,0,3],[3,0,0,0,0],[0,0,3],[3,0,0],[2,1,0],[0,2,1],[0,0,3],[0,3,0],[3,0],[2,1],[1,2],[2,1],[1,2],[0,3,0],[3,0],[1,2] +00233fa010_940128.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[3,0],[1,0,2],[1,2,0],[2,0,1],[0,2,1],[1,1,1],[1,1,1],[3,0,0],[3,0],[1,2,0],[0,2,1,0],[3,0],[1,0,2],[3,0,0],[3,0,0],[3,0],[3,0],[1,2],[3,0,0],[3,0,0,0],[3,0],[3,0],[0,1,0,2],[3,0],[0,2,1],[3,0,0,0],[1,0,2],[3,0,0,0,0],[3,0,0],[0,0,3],[1,1,1],[2,1,0],[1,1,1],[0,1,2],[3,0],[0,3],[0,3],[1,2],[3,0],[0,2,1],[3,0],[1,2] +00234fa010_940128.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[2,1],[1,2],[3,0],[1,0,2],[2,0,0],[0,3,0],[2,1,0],[0,1,2],[1,0,2],[3,0,0],[3,0],[0,0,3],[0,0,3,0],[3,0],[2,0,1],[1,0,2],[2,0,1],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[1,2],[0,1,0,2],[1,2],[1,2,0],[3,0,0,0],[0,3,0],[3,0,0,0,0],[3,0,0],[2,1,0],[0,0,3],[3,0,0],[1,1,1],[0,0,3],[3,0],[1,2],[3,0],[0,3],[1,2],[2,0,1],[3,0],[3,0] +00235fb010_940128.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[2,1],[0,1,2],[0,2,1],[2,0,1],[0,1,2],[1,1,1],[2,1,0],[2,0,1],[2,1],[0,1,2],[2,0,1,0],[0,3],[3,0,0],[1,1,1],[3,0,0],[3,0],[0,3],[3,0],[0,3,0],[3,0,0,0],[3,0],[3,0],[1,2,0,0],[3,0],[0,1,2],[3,0,0,0],[0,3,0],[3,0,0,0,0],[3,0,0],[0,3,0],[2,1,0],[0,1,2],[1,1,1],[2,1,0],[2,1],[2,1],[0,3],[3,0],[3,0],[0,3,0],[3,0],[3,0] +00236fa010_940128.tif,[2,1],[0,3],[2,0,0,0,0,1,0],[3,0],[0,3],[3,0],[2,1,0],[2,0,1],[3,0,0],[3,0,0],[0,3,0],[2,0,1],[3,0,0],[3,0],[1,2,0],[0,0,3,0],[3,0],[1,1,1],[1,1,1],[0,3,0],[3,0],[3,0],[0,3],[3,0,0],[3,0,0,0],[3,0],[1,2],[1,0,0,2],[1,2],[0,0,3],[2,1,0,0],[1,2,0],[3,0,0,0,0],[0,3,0],[3,0,0],[2,1,0],[0,3,0],[2,0,0],[0,3,0],[3,0],[0,3],[3,0],[0,3],[2,1],[2,1,0],[3,0],[2,1] +00237fb010_940128.tif,[2,1],[2,1],[1,0,1,0,0,0,0],[1,2],[1,2],[0,3],[3,0,0],[1,1,1],[1,0,2],[1,0,2],[0,3,0],[3,0,0],[2,0,1],[2,1],[1,2,0],[1,1,0,1],[1,2],[1,0,2],[2,1,0],[1,0,2],[3,0],[3,0],[3,0],[3,0,0],[1,0,2,0],[2,1],[2,1],[1,0,1,1],[0,3],[1,0,2],[3,0,0,0],[0,3,0],[1,1,1,0,0],[3,0,0],[2,0,1],[1,1,1],[1,1,1],[0,1,2],[0,2,1],[3,0],[1,1],[2,1],[1,2],[3,0],[3,0,0],[3,0],[2,1] +00238fb010_940128.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[2,1,0],[3,0,0],[2,0,1],[1,2,0],[0,2,1],[3,0,0],[3,0,0],[1,2],[0,1,2],[3,0,0,0],[2,1],[3,0,0],[2,0,1],[1,2,0],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[1,2,0,0],[1,2],[2,1,0],[0,2,1,0],[2,1,0],[3,0,0,0,0],[2,0,1],[3,0,0],[1,2,0],[0,1,2],[1,0,2],[3,0,0],[0,3],[3,0],[0,3],[3,0],[0,3],[1,2,0],[3,0],[1,2] +00239fa010_940128.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[1,2,0],[3,0,0],[1,2,0],[1,2,0],[0,2,1],[1,0,2],[3,0,0],[2,1],[1,1,1],[0,1,0,2],[3,0],[3,0,0],[3,0,0],[2,1,0],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,1],[1,0,2,0],[1,2],[0,1,2],[0,3,0,0],[1,0,2],[3,0,0,0,0],[1,0,2],[2,1,0],[0,1,2],[1,1,1],[2,0,1],[0,1,2],[3,0],[2,1],[1,2],[3,0],[2,1],[0,2,1],[3,0],[3,0] +00240fa010_940128.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[0,3],[1,2],[0,3],[0,0,3],[2,1,0],[0,1,2],[1,1,1],[1,2,0],[3,0,0],[3,0,0],[2,1],[3,0,0],[2,1,0,0],[1,2],[2,0,1],[1,1,1],[3,0,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[1,2],[3,0],[0,2,0,1],[0,3],[0,2,0],[3,0,0,0],[1,0,2],[3,0,0,0,0],[1,0,2],[0,3,0],[0,2,1],[0,0,3],[0,0,3],[0,1,2],[3,0],[1,2],[0,3],[2,1],[0,3],[2,1,0],[3,0],[3,0] +00241fa010_940128.tif,[2,1],[1,2],[1,0,1,0,0,1,0],[1,2],[0,3],[2,1],[2,1,0],[3,0,0],[1,2,0],[0,3,0],[1,2,0],[2,0,1],[3,0,0],[2,1],[3,0,0],[0,0,3,0],[3,0],[2,0,1],[3,0,0],[3,0,0],[3,0],[3,0],[0,3],[3,0,0],[3,0,0,0],[2,1],[0,3],[1,0,2,0],[1,2],[0,2,1],[2,1,0,0],[0,3,0],[0,1,1,1,0],[3,0,0],[3,0,0],[1,1,1],[0,2,1],[2,0,1],[0,1,2],[3,0],[1,2],[3,0],[1,2],[3,0],[3,0,0],[3,0],[2,1] +00242fa010_940128.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[2,1],[0,3],[0,3],[0,3,0],[3,0,0],[3,0,0],[2,1,0],[0,2,1],[3,0,0],[3,0,0],[2,1],[1,1,1],[0,2,0,1],[3,0],[2,0,1],[3,0,0],[1,1,1],[3,0],[0,3],[3,0],[1,1,1],[3,0,0,0],[3,0],[3,0],[0,3,0,0],[3,0],[0,3,0],[2,1,0,0],[2,1,0],[3,0,0,0,0],[0,3,0],[3,0,0],[0,3,0],[1,2,0],[3,0,0],[0,3,0],[2,1],[2,1],[0,3],[3,0],[1,2],[1,2,0],[3,0],[3,0] +00243fa010_940128.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[2,1],[0,3],[1,2],[3,0,0],[1,2,0],[3,0,0],[2,1,0],[0,2,1],[3,0,0],[3,0,0],[2,1],[2,0,1],[1,1,0,1],[3,0],[3,0,0],[1,2,0],[0,3,0],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[1,2],[2,1,0,0],[0,3],[0,3,0],[3,0,0,0],[2,1,0],[3,0,0,0,0],[2,0,1],[3,0,0],[0,1,2],[3,0,0],[3,0,0],[0,2,1],[3,0],[1,2],[3,0],[2,1],[2,1],[2,1,0],[3,0],[3,0] +00244fa010_940128.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[0,3],[0,3],[2,1],[1,1,1],[1,2,0],[0,3,0],[3,0,0],[1,1,1],[1,0,2],[3,0,0],[3,0],[0,3,0],[0,2,1,0],[1,2],[2,0,1],[0,3,0],[2,1,0],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[2,1],[1,2],[1,1,1,0],[1,2],[1,0,2],[1,2,0,0],[3,0,0],[3,0,0,0,0],[1,0,2],[2,1,0],[1,1,1],[1,1,1],[1,1,1],[0,1,2],[3,0],[0,3],[1,2],[0,3],[1,2],[0,2,0],[3,0],[2,1] +00245fa010_940128.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[0,3],[0,3],[1,2],[1,2,0],[1,2,0],[3,0,0],[1,2,0],[0,3,0],[2,0,1],[3,0,0],[1,2],[1,2,0],[2,1,0,0],[3,0],[0,0,3],[2,1,0],[2,0,0],[3,0],[0,3],[3,0],[0,3,0],[3,0,0,0],[2,1],[2,1],[2,1,0,0],[0,3],[0,2,1],[3,0,0,0],[0,3,0],[3,0,0,0,0],[2,0,1],[1,2,0],[0,1,2],[0,3,0],[1,0,2],[0,1,2],[3,0],[1,2],[2,1],[0,3],[2,1],[1,1,1],[2,1],[3,0] +00246fa010_940128.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[2,1],[1,2],[0,3],[0,3,0],[2,1,0],[1,2,0],[1,2,0],[0,2,1],[3,0,0],[3,0,0],[3,0],[1,0,2],[1,1,0,1],[2,1],[3,0,0],[3,0,0],[3,0,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,1],[2,0,1,0],[1,2],[0,3,0],[3,0,0,0],[0,3,0],[3,0,0,0,0],[0,2,1],[3,0,0],[0,2,1],[0,2,1],[2,0,1],[0,1,2],[2,1],[2,1],[2,1],[3,0],[3,0],[3,0,0],[3,0],[2,1] +00247fa010_940128.tif,[1,2],[2,1],[2,0,1,0,0,0,0],[1,2],[2,1],[1,2],[2,0,1],[1,1,1],[0,0,3],[0,1,2],[0,2,1],[3,0,0],[3,0,0],[3,0],[3,0,0],[0,1,1,1],[0,3],[0,1,2],[3,0,0],[3,0,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,1],[0,2,0,1],[0,3],[0,1,2],[2,1,0,0],[2,1,0],[0,2,0,1,0],[3,0,0],[2,1,0],[2,1,0],[0,3,0],[1,2,0],[0,3,0],[3,0],[1,2],[2,1],[0,3],[3,0],[0,2,1],[3,0],[3,0] +00248fa010_940128.tif,[2,1],[2,1],[2,0,1,0,0,0,0],[2,1],[1,2],[1,2],[1,2,0],[0,2,1],[2,1,0],[0,3,0],[2,0,1],[0,3,0],[1,1,1],[1,2],[2,1,0],[1,0,1,1],[1,2],[3,0,0],[1,0,2],[3,0,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[1,2],[1,1,0,1],[1,2],[0,3,0],[2,1,0,0],[3,0,0],[0,0,3,0,0],[0,1,2],[1,1,1],[0,2,1],[0,3,0],[2,0,1],[0,3,0],[3,0],[1,2],[2,1],[2,1],[3,0],[3,0,0],[3,0],[3,0] +00249fa010_940128.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[1,2],[2,1],[3,0],[2,1,0],[1,0,2],[2,0,1],[0,1,2],[2,1,0],[3,0,0],[3,0,0],[3,0],[1,2,0],[2,0,1,0],[3,0],[1,1,1],[1,1,1],[0,0,3],[0,3],[3,0],[0,3],[0,0,3],[0,0,3,0],[2,1],[1,2],[0,1,0,2],[1,2],[0,1,2],[3,0,0,0],[2,1,0],[3,0,0,0,0],[1,0,2],[1,0,2],[1,2,0],[2,1,0],[2,1,0],[2,1,0],[2,1],[1,2],[2,1],[1,2],[3,0],[1,0,2],[2,1],[2,1] +00250fa010_940128.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[0,3],[0,3],[1,2],[0,3,0],[1,1,0],[1,1,1],[1,2,0],[2,0,1],[1,0,2],[0,2,0],[1,2],[1,2,0],[0,1,1,0],[0,3],[3,0,0],[1,1,1],[2,0,1],[3,0],[1,2],[3,0],[2,1,0],[3,0,0,0],[3,0],[3,0],[0,2,0,1],[1,2],[2,1,0],[1,2,0,0],[2,0,1],[3,0,0,0,0],[3,0,0],[3,0,0],[0,3,0],[0,0,3],[3,0,0],[0,2,1],[3,0],[1,2],[1,2],[0,3],[1,2],[2,1,0],[3,0],[3,0] +00251fa010_940128.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[1,0,2],[1,2,0],[0,0,3],[1,1,1],[0,3,0],[2,1,0],[2,0,1],[2,1],[0,2,1],[3,0,0,0],[2,1],[0,0,3],[2,0,1],[2,1,0],[3,0],[3,0],[3,0],[1,1,1],[3,0,0,0],[3,0],[3,0],[0,2,0,1],[1,2],[1,2,0],[3,0,0,0],[1,2,0],[2,0,1,0,0],[3,0,0],[2,0,1],[0,2,1],[3,0,0],[2,1,0],[1,2,0],[0,3],[2,1],[0,3],[3,0],[3,0],[1,2,0],[2,1],[2,1] +00252fa010_940128.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[1,2],[0,3],[2,1],[2,0,1],[1,2,0],[1,1,1],[0,3,0],[0,3,0],[2,1,0],[3,0,0],[3,0],[3,0,0],[1,2,0,0],[1,2],[2,0,1],[2,0,1],[2,1,0],[3,0],[3,0],[0,3],[3,0,0],[3,0,0,0],[1,2],[0,3],[0,1,0,2],[1,2],[0,2,1],[3,0,0,0],[1,1,1],[3,0,0,0,0],[3,0,0],[3,0,0],[1,2,0],[0,3,0],[0,3,0],[0,3,0],[3,0],[1,2],[1,2],[0,3],[3,0],[1,0,2],[3,0],[3,0] +00253fa010_940128.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[1,2],[1,2,0],[1,1,1],[3,0,0],[2,0,1],[0,3,0],[2,1,0],[3,0,0],[2,1],[2,1,0],[3,0,0,0],[1,2],[3,0,0],[0,0,3],[1,0,2],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[1,1,0,1],[0,3],[0,2,1],[3,0,0,0],[1,2,0],[3,0,0,0,0],[2,0,1],[2,0,1],[1,2,0],[0,3,0],[2,1,0],[0,3,0],[3,0],[3,0],[0,3],[3,0],[2,1],[2,1,0],[3,0],[2,1] +00254fa010_940128.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[0,2,1],[1,2,0],[1,2,0],[3,0,0],[1,0,2],[0,0,3],[3,0,0],[2,1],[1,1,1],[1,0,0,2],[3,0],[0,0,3],[3,0,0],[0,3,0],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[1,1,0,1],[1,2],[1,0,2],[2,1,0,0],[1,1,1],[3,0,0,0,0],[3,0,0],[2,0,1],[0,0,3],[2,1,0],[2,0,1],[0,2,1],[2,1],[2,1],[0,3],[2,1],[0,3],[2,1,0],[3,0],[3,0] +00255fa010_940128.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[1,2],[1,2],[1,2],[0,3,0],[2,1,0],[2,1,0],[1,2,0],[1,2,0],[3,0,0],[3,0,0],[2,1],[1,1,1],[2,1,0,0],[3,0],[0,0,3],[1,0,2],[1,2,0],[3,0],[0,3],[0,3],[2,0,1],[3,0,0,0],[2,1],[3,0],[0,2,0,1],[0,3],[0,2,1],[3,0,0,0],[2,1,0],[3,0,0,0,0],[2,1,0],[3,0,0],[0,2,1],[2,1,0],[3,0,0],[0,2,1],[1,2],[2,1],[0,3],[3,0],[0,3],[0,3,0],[3,0],[2,1] +00256fa010_940928.tif,[3,0],[3,0],[2,0,0,0,0,1,0],[0,3],[2,1],[0,3],[2,1,0],[0,3,0],[3,0,0],[0,2,1],[1,2,0],[3,0,0],[3,0,0],[2,1],[2,1,0],[3,0,0,0],[0,3],[2,0,1],[1,0,2],[1,0,2],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[1,2],[3,0],[0,1,0,2],[1,2],[1,2,0],[3,0,0,0],[3,0,0],[3,0,0,0,0],[3,0,0],[1,2,0],[0,1,2],[1,0,2],[0,0,3],[1,2,0],[1,2],[3,0],[0,3],[3,0],[0,3],[2,1,0],[3,0],[3,0] +00257fa010_940128.tif,[3,0],[0,3],[2,0,1,0,0,0,0],[0,3],[0,3],[1,2],[0,2,1],[2,0,1],[2,0,1],[1,2,0],[2,1,0],[2,0,1],[3,0,0],[2,1],[2,0,1],[0,2,0,1],[2,1],[2,1,0],[3,0,0],[3,0,0],[1,2],[3,0],[3,0],[3,0,0],[1,0,2,0],[2,1],[1,2],[2,0,1,0],[0,3],[1,1,1],[3,0,0,0],[2,1,0],[0,3,0,0,0],[1,0,2],[0,0,3],[0,3,0],[1,2,0],[1,1,1],[0,3,0],[3,0],[0,3],[1,2],[1,2],[3,0],[2,1,0],[3,0],[1,2] +00258fa010_940128.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[3,0],[1,1,1],[0,1,2],[2,0,1],[1,2,0],[1,1,1],[2,1,0],[2,1,0],[3,0],[1,1,1],[1,1,0,1],[0,3],[0,0,3],[1,1,1],[0,3,0],[2,1],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,1],[0,3,0,0],[0,3],[2,1,0],[0,3,0,0],[2,1,0],[1,0,2,0,0],[3,0,0],[3,0,0],[1,2,0],[2,1,0],[2,1,0],[2,1,0],[3,0],[2,1],[2,1],[1,2],[0,3],[0,3,0],[3,0],[3,0] +00259fa010_940128.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[0,3],[0,3],[2,1],[1,0,2],[1,1,1],[1,1,1],[1,2,0],[0,2,1],[3,0,0],[2,0,1],[2,1],[2,0,1],[1,1,0,1],[1,2],[3,0,0],[2,1,0],[2,1,0],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[2,1],[3,0],[0,2,0,1],[2,1],[3,0,0],[0,2,1,0],[2,0,1],[3,0,0,0,0],[3,0,0],[2,0,1],[0,3,0],[2,1,0],[2,1,0],[0,1,2],[3,0],[1,2],[0,3],[1,2],[0,3],[0,0,3],[3,0],[2,1] +00260fa010_940128.tif,[0,3],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[2,1],[1,0,2],[1,1,1],[1,2,0],[2,1,0],[1,1,1],[0,1,2],[1,0,2],[2,1],[2,0,1],[2,0,1,0],[0,3],[3,0,0],[0,2,1],[1,0,2],[3,0],[0,3],[3,0],[1,1,1],[3,0,0,0],[3,0],[1,2],[0,2,0,1],[2,1],[0,3,0],[3,0,0,0],[1,1,0],[3,0,0,0,0],[2,1,0],[1,2,0],[2,1,0],[0,2,1],[2,1,0],[3,0,0],[3,0],[1,2],[2,1],[0,3],[3,0],[0,0,3],[3,0],[3,0] +00261fb010_940128.tif,[1,2],[1,2],[3,0,0,0,0,0,0],[1,2],[2,1],[0,3],[0,2,1],[1,1,1],[1,0,2],[1,1,1],[1,2,0],[1,0,2],[3,0,0],[1,1],[1,1,1],[0,2,1,0],[3,0],[3,0,0],[0,1,2],[0,3,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[1,2],[1,2],[1,0,2,0],[1,2],[0,3,0],[3,0,0,0],[0,3,0],[2,0,1,0,0],[2,0,1],[2,1,0],[0,1,2],[0,2,1],[2,0,1],[0,3,0],[3,0],[1,2],[2,1],[1,2],[3,0],[2,0,1],[2,1],[3,0] +00262fa010_940128.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[1,2,0],[0,2,1],[3,0,0],[1,2,0],[0,1,2],[2,1,0],[2,0,1],[0,3],[2,1,0],[0,1,0,2],[2,1],[1,0,2],[1,1,1],[1,2,0],[3,0],[1,2],[3,0],[2,1,0],[3,0,0,0],[0,3],[2,1],[1,1,1,0],[1,2],[0,3,0],[0,3,0,0],[1,0,2],[3,0,0,0,0],[1,0,2],[1,1,1],[0,0,3],[0,2,1],[3,0,0],[0,1,2],[2,1],[2,1],[1,2],[3,0],[0,3],[2,1,0],[3,0],[2,1] +00263fb010_940128.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[1,2],[3,0],[0,3],[3,0,0],[1,0,2],[2,1,0],[3,0,0],[0,1,2],[2,0,1],[2,0,1],[1,2],[0,3,0],[1,1,1,0],[3,0],[0,1,2],[3,0,0],[2,0,1],[3,0],[1,2],[3,0],[1,2,0],[3,0,0,0],[2,1],[3,0],[0,1,0,2],[0,3],[0,2,1],[2,1,0,0],[1,0,2],[3,0,0,0,0],[0,0,3],[2,0,1],[1,2,0],[0,2,1],[2,0,1],[0,3,0],[2,1],[2,1],[3,0],[1,2],[2,1],[0,3,0],[3,0],[3,0] +00264fa010_940128.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[3,0,0],[2,1,0],[3,0,0],[3,0,0],[0,3,0],[1,2,0],[3,0,0],[1,2],[2,0,1],[1,1,1,0],[0,3],[3,0,0],[2,0,0],[3,0,0],[3,0],[0,3],[2,1],[0,3,0],[3,0,0,0],[3,0],[3,0],[1,2,0,0],[1,2],[1,1,1],[0,3,0,0],[2,1,0],[3,0,0,0,0],[3,0,0],[2,0,1],[2,1,0],[2,1,0],[2,0,1],[0,3,0],[2,1],[0,2],[2,1],[0,3],[1,2],[0,2,1],[3,0],[2,1] +00265fb010_940128.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[0,3],[1,2],[1,2],[1,1,1],[0,3,0],[3,0,0],[3,0,0],[1,2,0],[1,1,1],[3,0,0],[1,2],[2,0,1],[1,1,0,1],[1,2],[1,1,1],[2,1,0],[2,0,1],[2,1],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[3,0],[0,2,0,1],[1,2],[0,2,1],[3,0,0,0],[2,1,0],[3,0,0,0,0],[2,0,1],[2,1,0],[0,2,1],[1,2,0],[1,1,1],[1,0,2],[3,0],[1,2],[1,2],[1,2],[0,3],[2,1,0],[3,0],[3,0] +00266fb010_940128.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[1,2],[1,2],[1,2],[1,2,0],[0,2,1],[1,2,0],[3,0,0],[0,2,1],[2,0,1],[1,0,2],[2,1],[3,0,0],[2,0,0,1],[0,3],[0,0,3],[0,2,1],[0,1,2],[3,0],[0,3],[3,0],[0,3,0],[3,0,0,0],[3,0],[2,1],[1,2,0,0],[2,1],[2,1,0],[2,0,1,0],[1,0,2],[3,0,0,0,0],[1,0,2],[1,1,1],[0,1,2],[0,2,1],[2,0,1],[0,0,3],[3,0],[1,2],[1,2],[0,3],[0,3],[0,2,0],[3,0],[2,1] +00267fb010_940128.tif,[0,3],[3,0],[3,0,0,0,0,0,0],[3,0],[0,3],[1,2],[0,1,2],[1,2,0],[2,1,0],[2,1,0],[0,3,0],[2,0,1],[3,0,0],[3,0],[1,0,2],[0,2,1,0],[3,0],[1,0,2],[2,0,1],[0,3,0],[3,0],[1,2],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[1,1,1,0],[1,2],[1,1,1],[0,1,2,0],[0,3,0],[3,0,0,0,0],[2,1,0],[3,0,0],[0,0,2],[1,1,1],[3,0,0],[0,3,0],[2,1],[1,2],[0,3],[0,3],[0,3],[1,2,0],[3,0],[3,0] +00268fa010_940307.tif,[2,1],[0,3],[3,0,0,0,0,0,0],[1,2],[1,2],[2,1],[0,3,0],[3,0,0],[2,0,1],[2,0,1],[1,2,0],[1,2,0],[3,0,0],[1,2],[2,0,1],[2,1,0,0],[0,3],[2,0,1],[2,0,1],[2,1,0],[2,1],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[2,1],[3,0,0,0],[1,2],[0,2,1],[3,0,0,0],[3,0,0],[3,0,0,0,0],[1,0,2],[1,1,1],[1,2,0],[0,3,0],[2,1,0],[2,1,0],[1,2],[1,2],[1,2],[1,2],[2,1],[2,1,0],[2,1],[3,0] +00269fa010_940422.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[3,0,0],[3,0,0],[2,0,1],[0,2,1],[0,3,0],[3,0,0],[2,0,1],[3,0],[2,1,0],[2,1,0,0],[3,0],[2,0,1],[0,0,3],[3,0,0],[2,1],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[2,0,1,0],[1,2],[0,3,0],[3,0,0,0],[1,2,0],[2,0,1,0,0],[2,1,0],[0,0,3],[2,1,0],[1,2,0],[1,2,0],[1,2,0],[2,1],[1,2],[2,1],[1,2],[3,0],[0,2,1],[3,0],[3,0] +00270fb010_940422.tif,[1,2],[1,2],[3,0,0,0,0,0,0],[2,1],[0,3],[1,2],[1,1,1],[2,1,0],[3,0,0],[2,1,0],[0,1,2],[1,2,0],[1,0,2],[3,0],[2,0,1],[1,0,1,1],[3,0],[1,0,2],[1,2,0],[3,0,0],[2,1],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[3,0],[2,1,0,0],[0,3],[1,2,0],[0,3,0,0],[0,0,3],[3,0,0,0,0],[3,0,0],[1,0,2],[2,1,0],[1,2,0],[0,0,3],[1,1,1],[1,2],[0,3],[2,1],[0,3],[0,3],[0,1,2],[3,0],[3,0] +00271fa010_940422.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[1,2],[2,1],[0,3],[2,0,1],[0,2,1],[1,2,0],[2,0,1],[0,2,1],[2,0,1],[0,0,3],[2,1],[0,2,1],[2,0,0,1],[1,2],[2,0,1],[3,0,0],[2,0,1],[3,0],[0,3],[3,0],[0,3,0],[3,0,0,0],[3,0],[3,0],[2,1,0,0],[1,2],[0,3,0],[3,0,0,0],[0,3,0],[3,0,0,0,0],[2,1,0],[0,0,3],[3,0,0],[3,0,0],[2,1,0],[2,1,0],[1,2],[2,1],[0,3],[3,0],[3,0],[2,1,0],[3,0],[3,0] +00272fa010_940422.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[1,0,2],[2,0,1],[2,0,1],[0,1,2],[0,2,1],[3,0,0],[1,0,2],[2,0],[2,1,0],[3,0,0,0],[0,3],[1,0,2],[0,1,2],[1,0,2],[3,0],[2,1],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[2,0,1,0],[0,3],[0,3,0],[3,0,0,0],[1,1,1],[2,0,1,0,0],[3,0,0],[2,0,1],[1,2,0],[0,1,2],[1,2,0],[0,3,0],[0,3],[3,0],[0,3],[2,1],[3,0],[1,1,1],[3,0],[2,1] +00273fa010_940422.tif,[1,2],[2,1],[1,1,1,0,0,0,0],[2,1],[0,3],[1,2],[2,1,0],[2,1,0],[0,1,2],[2,0,1],[1,2,0],[0,0,3],[2,0,1],[2,1],[0,1,2],[0,1,1,1],[0,3],[1,2,0],[1,0,2],[1,1,1],[0,3],[3,0],[3,0],[2,0,1],[2,0,1,0],[1,2],[1,2],[0,1,2,0],[1,2],[0,1,2],[3,0,0,0],[0,1,2],[0,3,0,0,0],[0,2,1],[0,0,3],[0,0,3],[1,2,0],[2,0,1],[0,0,3],[3,0],[1,2],[3,0],[1,2],[2,1],[2,0,1],[3,0],[3,0] +00274fa010_940422.tif,[2,1],[3,0],[2,0,0,0,0,0,0],[0,3],[0,3],[0,3],[0,0,3],[1,0,2],[1,0,2],[0,2,1],[1,2,0],[1,2,0],[2,0,1],[1,2],[0,3,0],[1,1,1,0],[0,3],[2,0,1],[0,0,3],[2,0,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,1],[1,2,0,0],[0,3],[0,2,1],[3,0,0,0],[0,3,0],[1,0,2,0,0],[2,0,1],[0,0,3],[1,2,0],[0,2,1],[1,2,0],[3,0,0],[2,1],[2,1],[1,2],[3,0],[3,0],[0,2,1],[2,1],[3,0] +00275fa010_940422.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[1,2],[1,2],[1,2],[2,0,1],[1,1,1],[0,0,3],[0,1,2],[2,1,0],[2,1,0],[2,0,1],[3,0],[2,1,0],[2,0,0,1],[0,3],[3,0,0],[1,2,0],[2,1,0],[3,0],[3,0],[3,0],[3,0,0],[2,0,1,0],[3,0],[2,1],[1,2,0,0],[0,3],[0,2,0],[3,0,0,0],[2,1,0],[3,0,0,0,0],[2,0,1],[3,0,0],[1,1,1],[0,2,1],[1,0,2],[2,1,0],[2,1],[1,2],[1,2],[2,1],[3,0],[2,1,0],[3,0],[3,0] +00276fa010_940422.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[2,1],[0,3],[2,1],[1,1,1],[1,1,1],[2,1,0],[0,2,1],[0,1,2],[0,1,2],[1,0,2],[2,1],[2,1,0],[1,0,1,1],[1,2],[2,0,1],[1,1,1],[0,3,0],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[3,0],[0,3],[3,0,0,0],[2,1],[1,2,0],[2,1,0,0],[0,3,0],[3,0,0,0,0],[2,0,1],[1,0,2],[2,1,0],[1,1,1],[3,0,0],[0,2,1],[3,0],[1,2],[3,0],[2,1],[2,1],[1,2,0],[3,0],[2,1] +00277fb010_940422.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[1,2],[1,2],[1,2],[2,0,1],[0,3,0],[3,0,0],[2,1,0],[1,2,0],[0,3,0],[0,2,1],[2,1],[0,3,0],[3,0,0,0],[1,2],[3,0,0],[0,3,0],[2,0,1],[3,0],[0,2],[3,0],[1,2,0],[3,0,0,0],[3,0],[3,0],[1,1,0,1],[2,1],[0,3,0],[1,2,0,0],[2,1,0],[3,0,0,0,0],[2,0,1],[1,2,0],[0,3,0],[0,1,2],[3,0,0],[3,0,0],[1,2],[2,0],[1,2],[1,2],[0,3],[1,0,2],[3,0],[2,1] +00278fb010_940422.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[2,1],[0,2,1],[2,0,1],[2,1,0],[2,1,0],[1,2,0],[3,0,0],[1,1,1],[1,2],[1,0,2],[2,1,0,0],[2,1],[3,0,0],[1,2,0],[2,1,0],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[0,3],[1,2],[3,0,0,0],[1,2],[2,1,0],[0,1,2,0],[0,0,3],[3,0,0,0,0],[3,0,0],[3,0,0],[1,2,0],[3,0,0],[0,0,3],[0,1,2],[2,1],[0,3],[0,3],[0,3],[0,3],[0,2,1],[3,0],[2,1] +00279fa010_940422.tif,[1,2],[1,2],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[1,0,2],[1,0,2],[2,1,0],[1,2,0],[1,2,0],[1,0,2],[1,1,1],[1,2],[2,1,0],[1,0,0,2],[0,3],[1,0,2],[0,0,3],[2,0,1],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[2,1],[0,1,0,2],[2,1],[1,2,0],[3,0,0,0],[2,1,0],[3,0,0,0,0],[3,0,0],[1,1,1],[1,2,0],[1,2,0],[0,3,0],[3,0,0],[3,0],[1,2],[0,3],[0,3],[3,0],[0,1,2],[3,0],[3,0] +00280fb010_940422.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[2,1],[2,1],[2,1],[2,1,0],[1,0,2],[2,0,1],[1,2,0],[0,1,2],[0,0,3],[3,0,0],[2,1],[1,2,0],[2,1,0,0],[1,2],[1,0,2],[2,0,1],[2,0,1],[3,0],[0,3],[2,1],[0,1,2],[3,0,0,0],[3,0],[3,0],[1,1,0,1],[1,2],[0,3,0],[3,0,0,0],[1,2,0],[3,0,0,0,0],[1,0,2],[0,0,3],[3,0,0],[3,0,0],[0,3,0],[2,1,0],[3,0],[1,2],[0,3],[3,0],[3,0],[1,1,1],[3,0],[3,0] +00281fa010_940422.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[1,2],[2,1],[2,1],[1,0,2],[1,2,0],[2,0,1],[1,2,0],[1,2,0],[2,1,0],[0,3,0],[2,1],[2,1,0],[1,0,2,0],[0,3],[2,0,1],[0,1,2],[2,0,1],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[2,1,0,0],[2,1],[0,2,1],[1,2,0,0],[2,1,0],[2,0,1,0,0],[2,0,1],[3,0,0],[2,1,0],[1,2,0],[2,1,0],[0,3,0],[3,0],[2,1],[1,2],[1,2],[3,0],[0,0,3],[3,0],[2,1] +00282fa010_940422.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[1,2],[1,2],[0,3],[2,0,1],[2,1,0],[0,0,3],[1,1,1],[1,1,1],[2,0,1],[3,0,0],[1,2],[2,0,1],[0,2,0,1],[0,3],[3,0,0],[0,0,3],[3,0,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[1,2],[1,1,1,0],[1,2],[0,3,0],[3,0,0,0],[0,3,0],[1,0,1,1,0],[3,0,0],[3,0,0],[0,3,0],[1,2,0],[1,2,0],[0,3,0],[3,0],[0,3],[1,2],[0,3],[3,0],[3,0,0],[3,0],[2,1] +00283fa010_940422.tif,[2,1],[3,0],[1,0,1,1,0,0,0],[1,2],[1,2],[1,2],[3,0,0],[1,2,0],[0,3,0],[0,2,1],[1,1,1],[3,0,0],[1,0,2],[2,1],[3,0,0],[1,2,0,0],[0,3],[3,0,0],[1,0,2],[3,0,0],[3,0],[3,0],[3,0],[2,1,0],[3,0,0,0],[3,0],[3,0],[1,1,1,0],[3,0],[1,2,0],[3,0,0,0],[1,1,1],[1,0,0,2,0],[2,0,1],[2,1,0],[1,2,0],[0,2,1],[1,2,0],[2,1,0],[3,0],[0,2],[2,1],[0,3],[2,1],[0,2,1],[3,0],[2,1] +00284fa010_940422.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[3,0,0],[0,1,2],[1,0,2],[0,3,0],[0,3,0],[1,2,0],[1,1,1],[1,2],[1,1,1],[3,0,0,0],[0,3],[3,0,0],[0,1,2],[0,2,1],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[1,2],[2,1],[2,1,0,0],[0,3],[0,3,0],[1,0,2,0],[1,2,0],[2,0,1,0,0],[2,1,0],[3,0,0],[0,3,0],[1,1,1],[2,1,0],[1,2,0],[2,1],[3,0],[0,3],[2,1],[1,2],[3,0,0],[0,3],[2,1] +00285fa010_940422.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[0,3],[1,2],[1,2],[2,0,1],[0,0,3],[0,0,3],[0,0,3],[2,1,0],[2,1,0],[0,0,3],[3,0],[1,1,1],[1,1,0,1],[1,2],[3,0,0],[2,1,0],[0,0,3],[3,0],[3,0],[3,0],[2,0,1],[2,0,1,0],[3,0],[2,1],[1,1,1,0],[1,2],[2,0,1],[0,0,3,0],[1,0,2],[3,0,0,0,0],[1,0,2],[0,0,3],[1,0,2],[3,0,0],[2,0,1],[0,1,2],[2,1],[1,2],[0,3],[3,0],[0,3],[1,2,0],[3,0],[0,3] +00286fa010_940422.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[2,1],[2,1],[1,2],[1,1,1],[2,0,1],[2,0,1],[2,1,0],[0,0,3],[3,0,0],[0,0,3],[3,0],[1,2,0],[2,0,0,1],[2,1],[0,0,3],[2,0,1],[1,0,2],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[1,2],[3,0],[0,3,0,0],[1,2],[1,2,0],[3,0,0,0],[3,0,0],[3,0,0,0,0],[3,0,0],[3,0,0],[2,1,0],[2,1,0],[1,0,2],[1,2,0],[3,0],[0,3],[0,3],[1,2],[3,0],[1,2,0],[3,0],[2,1] +00287fa010_940422.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[1,2],[1,2],[3,0],[1,2,0],[2,0,1],[2,1,0],[0,2,1],[0,2,1],[3,0,0],[3,0,0],[3,0],[2,1,0],[0,0,2,1],[1,2],[3,0,0],[3,0,0],[2,0,1],[2,1],[3,0],[3,0],[3,0,0],[3,0,0,0],[1,2],[2,1],[0,3,0,0],[0,3],[0,2,1],[2,0,0,1],[1,2,0],[0,0,3,0,0],[2,0,1],[0,0,3],[2,1,0],[3,0,0],[1,2,0],[1,2,0],[3,0],[0,3],[1,2],[0,3],[2,1],[3,0,0],[3,0],[3,0] +00288fa010_940422.tif,[0,3],[3,0],[3,0,0,0,0,0,0],[1,2],[0,3],[3,0],[2,1,0],[1,2,0],[1,1,1],[2,1,0],[1,2,0],[2,0,1],[2,0,1],[2,1],[2,0,1],[0,1,2,0],[3,0],[2,0,1],[2,1,0],[2,0,1],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[2,1],[0,2,0,1],[0,3],[0,3,0],[3,0,0,0],[3,0,0],[3,0,0,0,0],[3,0,0],[2,0,1],[0,1,2],[0,3,0],[2,0,1],[0,2,1],[3,0],[0,3],[1,2],[0,3],[2,1],[0,2,1],[3,0],[3,0] +00289fa010_940422.tif,[2,1],[1,2],[2,1,0,0,0,0,0],[2,1],[1,2],[1,2],[2,1,0],[1,2,0],[0,3,0],[1,2,0],[1,2,0],[2,1,0],[3,0,0],[3,0],[0,2,0],[2,1,0,0],[0,3],[3,0,0],[1,0,2],[0,0,2],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[0,3,0,0],[1,2],[0,2,1],[2,1,0,0],[2,1,0],[0,0,0,3,0],[1,2,0],[1,0,2],[2,1,0],[0,2,1],[2,0,1],[3,0,0],[3,0],[1,2],[2,1],[2,1],[2,1],[1,1,1],[3,0],[3,0] +00290fa010_940422.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[1,2],[1,2],[1,2],[2,1,0],[3,0,0],[3,0,0],[3,0,0],[0,3,0],[1,0,2],[2,0,1],[2,1],[1,2,0],[2,0,0,1],[3,0],[2,0,1],[2,0,1],[2,1,0],[2,1],[0,3],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,1],[0,3,0,0],[1,2],[0,3,0],[3,0,0,0],[0,3,0],[3,0,0,0,0],[2,0,1],[1,0,2],[1,2,0],[1,2,0],[3,0,0],[1,2,0],[2,1],[3,0],[1,2],[3,0],[2,1],[2,1,0],[3,0],[1,2] +00291fa010_940422.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[1,2],[2,1],[1,2],[1,1,1],[3,0,0],[0,0,3],[0,3,0],[0,2,1],[1,2,0],[2,0,1],[2,1],[3,0,0],[3,0,0,0],[0,3],[3,0,0],[0,3,0],[1,0,2],[3,0],[3,0],[2,0],[3,0,0],[3,0,0,0],[1,2],[3,0],[1,2,0,0],[0,3],[0,3,0],[3,0,0,0],[2,1,0],[2,0,1,0,0],[3,0,0],[2,0,1],[2,1,0],[1,1,1],[1,2,0],[3,0,0],[2,1],[2,1],[2,1],[1,2],[2,1],[0,1,2],[3,0],[2,1] +00292fa010_940422.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[0,3],[1,2],[0,3],[3,0,0],[3,0,0],[3,0,0],[2,1,0],[0,2,1],[1,2,0],[3,0,0],[3,0],[2,1,0],[3,0,0,0],[2,1],[1,0,2],[1,0,2],[1,2,0],[2,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[0,3],[3,0],[1,2,0,0],[2,1],[0,3,0],[2,0,0,1],[0,3,0],[3,0,0,0,0],[2,1,0],[3,0,0],[2,1,0],[0,2,1],[2,0,1],[3,0,0],[2,1],[3,0],[0,3],[3,0],[3,0],[1,0,2],[3,0],[3,0] +00293fa010_940422.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[2,1],[1,2],[0,3],[3,0,0],[0,2,1],[1,0,2],[0,2,1],[0,3,0],[1,0,2],[1,1,1],[2,1],[2,1,0],[0,0,1,2],[2,1],[3,0,0],[2,0,1],[1,0,2],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[2,1],[1,2,0,0],[3,0],[1,2,0],[3,0,0,0],[0,2,1],[3,0,0,0,0],[3,0,0],[0,0,3],[3,0,0],[0,3,0],[1,2,0],[1,2,0],[3,0],[1,2],[2,1],[0,3],[3,0],[0,1,2],[3,0],[3,0] +00294fa010_940422.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[3,0],[0,3],[0,3],[1,2,0],[2,1,0],[0,0,3],[1,1,1],[1,2,0],[2,0,1],[1,1,1],[1,2],[0,2,1],[3,0,0,0],[3,0],[2,0,1],[1,0,2],[2,0,1],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[3,0],[0,2,0,1],[3,0],[0,2,1],[3,0,0,0],[2,0,1],[3,0,0,0,0],[3,0,0],[3,0,0],[0,1,2],[2,0,1],[1,2,0],[0,2,1],[2,1],[2,1],[1,2],[3,0],[1,2],[2,1,0],[3,0],[1,1] +00295fa010_940422.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[1,0,2],[1,1,1],[2,1,0],[0,0,3],[0,3,0],[0,3,0],[1,1,1],[3,0],[0,3,0],[3,0,0,0],[0,3],[3,0,0],[1,1,1],[1,0,2],[3,0],[3,0],[2,1],[1,0,2],[2,0,1,0],[3,0],[1,2],[1,1,0,1],[0,2],[0,2,1],[3,0,0,0],[1,1,1],[3,0,0,0,0],[3,0,0],[1,0,2],[1,2,0],[3,0,0],[1,2,0],[2,1,0],[2,1],[0,2],[0,3],[1,2],[3,0],[1,1,1],[3,0],[2,1] +00296fa010_940422.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[3,0,0],[1,0,1],[0,3,0],[3,0,0],[0,3,0],[1,0,2],[2,0,1],[3,0],[3,0,0],[1,1,1,0],[3,0],[1,0,2],[1,0,2],[3,0,0],[3,0],[0,3],[3,0],[1,2,0],[2,0,0,0],[2,1],[1,2],[0,2,0,1],[3,0],[0,3,0],[1,2,0,0],[2,1,0],[3,0,0,0,0],[2,0,1],[2,0,1],[1,2,0],[0,3,0],[2,0,1],[0,3,0],[3,0],[1,2],[3,0],[0,3],[0,3],[0,1,2],[3,0],[3,0] +00297fa010_940422.tif,[3,0],[2,1],[1,0,2,0,0,0,0],[1,2],[2,1],[0,3],[0,1,2],[0,2,1],[0,0,3],[0,0,3],[2,1,0],[3,0,0],[0,1,2],[2,1],[0,2,1],[2,0,0,1],[0,3],[0,0,2],[0,3,0],[1,1,1],[1,2],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[1,1,1,0],[0,3],[0,1,2],[3,0,0,0],[0,3,0],[3,0,0,0,0],[3,0,0],[1,1,1],[1,2,0],[0,2,1],[1,0,2],[3,0,0],[0,3],[3,0],[0,3],[3,0],[3,0],[3,0,0],[2,1],[3,0] +00298fa010_940422.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[2,1],[1,2],[1,2],[1,0,2],[3,0,0],[2,1,0],[2,1,0],[1,2,0],[2,1,0],[0,0,3],[2,1],[1,1,1],[1,0,2,0],[1,2],[3,0,0],[0,0,3],[2,1,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[0,3],[0,2,0,1],[0,3],[2,0,1],[0,3,0,0],[3,0,0],[3,0,0,0,0],[3,0,0],[0,0,3],[1,1,1],[0,3,0],[1,1,1],[0,2,1],[3,0],[1,1],[0,3],[0,3],[0,3],[0,3,0],[3,0],[2,1] +00299fa010_940422.tif,[3,0],[3,0],[2,1,0,0,0,0,0],[1,2],[0,3],[1,2],[1,1,1],[0,1,2],[0,0,3],[1,0,2],[2,1,0],[2,0,1],[1,1,1],[1,2],[2,1,0],[2,1,0,0],[0,3],[3,0,0],[0,2,1],[3,0,0],[3,0],[3,0],[3,0],[2,1,0],[2,0,1,0],[3,0],[3,0],[3,0,0,0],[0,3],[0,3,0],[3,0,0,0],[2,1,0],[3,0,0,0,0],[2,0,1],[0,0,3],[3,0,0],[1,1,1],[0,3,0],[2,1,0],[1,2],[2,1],[1,2],[3,0],[2,1],[1,2,0],[2,1],[3,0] +00300fa010_940422.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[2,1],[1,2],[0,3],[1,0,2],[1,1,1],[1,1,1],[0,2,1],[0,3,0],[3,0,0],[2,0,1],[2,1],[2,1,0],[2,0,0,1],[0,3],[2,1,0],[0,3,0],[2,0,1],[3,0],[3,0],[3,0],[2,0,1],[0,3,0,0],[2,1],[2,1],[2,0,1,0],[0,3],[1,0,2],[0,1,2,0],[1,0,2],[2,1,0,0,0],[2,0,1],[3,0,0],[0,2,1],[2,1,0],[0,2,0],[0,3,0],[3,0],[1,2],[3,0],[1,2],[1,2],[0,3,0],[3,0],[3,0] +00301fa010_940422.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[1,2],[1,2],[1,2],[3,0,0],[2,1,0],[3,0,0],[1,1,0],[3,0,0],[0,0,3],[1,1,1],[1,2],[1,2,0],[2,1,0,0],[3,0],[0,0,3],[2,0,1],[0,3,0],[3,0],[3,0],[3,0],[3,0,0],[2,0,0,1],[3,0],[3,0],[1,1,0,1],[1,2],[0,3,0],[3,0,0,0],[1,2,0],[3,0,0,0,0],[2,0,1],[0,0,3],[2,1,0],[1,1,1],[0,2,1],[3,0,0],[2,1],[1,2],[2,1],[0,3],[3,0],[0,2,1],[3,0],[3,0] +00302fa010_940422.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[3,0,0],[1,2,0],[2,1,0],[2,1,0],[0,3,0],[0,0,3],[2,0,1],[2,1],[2,0,1],[3,0,0,0],[0,3],[2,0,1],[1,0,2],[2,1,0],[3,0],[0,3],[3,0],[2,1,0],[2,0,1,0],[3,0],[3,0],[1,0,2,0],[0,3],[0,2,1],[3,0,0,0],[2,1,0],[3,0,0,0,0],[2,0,1],[3,0,0],[2,1,0],[1,2,0],[2,0,1],[1,1,1],[3,0],[2,1],[0,3],[3,0],[1,2],[0,3,0],[3,0],[2,1] +00303fa010_940422.tif,[3,0],[3,0],[1,0,1,0,1,0,0],[1,2],[0,3],[0,3],[0,1,2],[0,1,2],[1,1,1],[1,1,1],[0,3,0],[3,0,0],[2,0,1],[3,0],[3,0,0],[2,0,0,1],[1,2],[3,0,0],[1,2,0],[3,0,0],[3,0],[3,0],[3,0],[3,0,0],[1,1,1,0],[3,0],[3,0],[0,3,0,0],[0,3],[0,3,0],[3,0,0,0],[1,1,0],[2,1,0,0,0],[2,0,1],[3,0,0],[2,1,0],[2,1,0],[1,1,1],[0,3,0],[0,3],[2,1],[0,3],[3,0],[1,2],[2,1,0],[2,1],[3,0] +00304fa010_940422.tif,[1,2],[1,2],[3,0,0,0,0,0,0],[2,1],[2,1],[2,1],[2,1,0],[2,1,0],[1,2,0],[1,1,1],[0,3,0],[2,0,1],[2,0,1],[3,0],[2,1,0],[2,0,0,1],[1,2],[3,0,0],[2,0,1],[1,2,0],[3,0],[3,0],[3,0],[2,1,0],[3,0,0,0],[3,0],[1,2],[3,0,0,0],[0,3],[0,2,1],[3,0,0,0],[1,2,0],[3,0,0,0,0],[1,1,1],[3,0,0],[1,2,0],[0,3,0],[1,2,0],[1,2,0],[3,0],[1,2],[1,2],[0,2],[3,0],[0,3,0],[2,1],[3,0] +00305fa010_940422.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[2,0,1],[0,3,0],[1,0,2],[2,1,0],[0,2,1],[1,0,2],[3,0,0],[2,1],[1,0,2],[2,1,0,0],[2,1],[3,0,0],[1,2,0],[1,2,0],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[3,0],[3,0],[1,0,2,0],[2,1],[0,2,1],[3,0,0,0],[2,0,1],[3,0,0,0,0],[2,0,1],[2,0,1],[0,0,3],[2,1,0],[1,1,1],[0,2,1],[2,1],[2,1],[1,2],[3,0],[2,1],[0,2,1],[3,0],[3,0] +00306fa010_940422.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[0,3],[1,2],[0,3],[0,0,3],[2,1,0],[1,0,2],[0,0,3],[0,3,0],[2,1,0],[1,1,1],[2,1],[3,0,0],[2,0,1,0],[0,3],[3,0,0],[3,0,0],[1,0,2],[3,0],[0,3],[3,0],[0,3,0],[3,0,0,0],[3,0],[3,0],[0,2,0,1],[2,1],[1,1,1],[2,1,0,0],[3,0,0],[3,0,0,0,0],[3,0,0],[0,0,3],[1,1,1],[1,2,0],[1,0,2],[2,0,1],[2,1],[3,0],[0,3],[3,0],[2,1],[0,1,2],[3,0],[3,0] +00307fb010_940422.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[0,3,0],[1,2,0],[0,3,0],[3,0,0],[0,3,0],[1,0,2],[1,1,1],[1,2],[2,1,0],[3,0,0,0],[1,2],[3,0,0],[2,0,1],[1,0,2],[3,0],[0,3],[3,0],[0,3,0],[3,0,0,0],[3,0],[3,0],[0,1,0,2],[0,3],[0,3,0],[3,0,0,0],[3,0,0],[3,0,0,0,0],[1,0,2],[3,0,0],[0,2,1],[0,2,1],[1,2,0],[0,3,0],[0,3],[3,0],[0,3],[3,0],[2,1],[0,0,3],[3,0],[0,3] +00308fb010_940422.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[1,1,1],[1,2,0],[3,0,0],[1,1,1],[0,3,0],[1,1,1],[1,0,2],[1,2],[2,1,0],[2,1,0,0],[3,0],[3,0,0],[1,1,1],[2,1,0],[3,0],[0,3],[3,0],[0,3,0],[3,0,0,0],[3,0],[3,0],[1,2,0,0],[2,1],[0,3,0],[2,1,0,0],[3,0,0],[3,0,0,0,0],[3,0,0],[2,0,1],[1,2,0],[1,1,1],[2,1,0],[2,0,0],[2,1],[2,1],[1,2],[3,0],[0,3],[0,2,1],[3,0],[3,0] +00309fb010_940422.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[0,3],[1,2],[1,2],[3,0,0],[0,3,0],[1,0,2],[0,1,2],[1,2,0],[1,1,1],[0,3,0],[2,1],[1,1,1],[2,1,0,0],[2,1],[3,0,0],[0,2,1],[3,0,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[0,3,0,0],[2,1],[0,2,1],[3,0,0,0],[2,1,0],[3,0,0,0,0],[3,0,0],[2,1,0],[1,2,0],[1,1,1],[2,0,1],[3,0,0],[2,1],[3,0],[0,3],[2,1],[3,0],[1,2,0],[3,0],[1,2] +00310fa010_940422.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[0,3],[1,2],[0,3],[1,0,2],[1,1,1],[3,0,0],[0,2,1],[1,2,0],[1,2,0],[3,0,0],[2,1],[1,2,0],[1,2,0,0],[0,3],[3,0,0],[0,1,2],[2,0,1],[2,1],[3,0],[3,0],[2,1,0],[3,0,0,0],[3,0],[2,1],[0,1,0,2],[1,2],[0,2,1],[3,0,0,0],[0,3,0],[3,0,0,0,0],[3,0,0],[3,0,0],[0,3,0],[1,1,1],[2,0,1],[2,1,0],[1,2],[3,0],[0,3],[3,0],[3,0],[1,2,0],[3,0],[3,0] +00311fa010_940422.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[1,1,1],[1,2,0],[2,0,0],[2,1,0],[0,2,1],[1,1,1],[2,1,0],[3,0],[1,0,2],[3,0,0,0],[1,2],[3,0,0],[2,0,1],[2,1,0],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[1,2],[3,0],[2,0,1,0],[0,3],[0,2,1],[3,0,0,0],[2,0,1],[3,0,0,0,0],[1,0,2],[0,2,1],[2,1,0],[0,1,2],[0,0,3],[2,1,0],[2,1],[3,0],[0,3],[3,0],[3,0],[0,3,0],[3,0],[1,2] +00312fa010_940422.tif,[1,2],[1,2],[3,0,0,0,0,0,0],[2,1],[1,2],[3,0],[2,0,1],[1,0,2],[2,0,1],[0,2,1],[1,0,2],[0,0,3],[2,0,1],[3,0],[0,3,0],[0,1,1,1],[0,3],[3,0,0],[1,1,1],[3,0,0],[1,2],[0,3],[3,0],[2,1,0],[3,0,0,0],[2,1],[0,3],[2,0,0,1],[1,2],[0,2,1],[2,1,0,0],[1,2,0],[3,0,0,0,0],[0,0,3],[2,0,1],[2,1,0],[1,1,1],[1,2,0],[2,1,0],[3,0],[2,1],[3,0],[0,3],[3,0],[0,2,1],[3,0],[3,0] +00313fa010_940422.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[0,3],[1,2],[0,2],[2,1,0],[3,0,0],[3,0,0],[1,2,0],[0,2,1],[3,0,0],[2,0,1],[2,1],[0,3,0],[2,0,1,0],[0,3],[3,0,0],[1,1,1],[0,0,3],[3,0],[0,3],[3,0],[2,0,1],[2,0,1,0],[2,1],[2,1],[2,1,0,0],[1,2],[0,3,0],[2,1,0,0],[1,2,0],[3,0,0,0,0],[2,0,1],[0,1,2],[1,2,0],[0,1,2],[3,0,0],[0,3,0],[2,1],[1,2],[0,3],[2,1],[1,2],[2,1,0],[3,0],[1,2] +00314fa010_940422.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[3,0,0],[2,1,0],[2,1,0],[2,0,1],[0,1,2],[2,0,1],[2,0,1],[2,1],[2,1,0],[2,0,0,1],[3,0],[2,0,1],[0,0,3],[3,0,0],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[2,1],[3,0,0,0],[1,2],[0,0,3],[3,0,0,0],[2,1,0],[3,0,0,0,0],[3,0,0],[3,0,0],[1,2,0],[1,0,2],[3,0,0],[0,3,0],[2,1],[3,0],[0,3],[3,0],[2,1],[2,1,0],[3,0],[2,1] +00315fb010_940422.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[1,2],[1,2],[0,3],[0,0,3],[1,0,2],[3,0,0],[2,0,1],[1,2,0],[0,1,2],[0,1,2],[3,0],[1,2,0],[3,0,0,0],[1,2],[3,0,0],[1,2,0],[2,0,1],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[3,0],[3,0],[0,2,0,1],[0,3],[0,3,0],[3,0,0,0],[1,2,0],[3,0,0,0,0],[3,0,0],[1,2,0],[1,2,0],[1,1,1],[3,0,0],[2,1,0],[1,2],[3,0],[2,1],[2,1],[3,0],[1,2,0],[3,0],[1,2] +00316fa010_940422.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[2,1],[0,3],[0,3],[1,1,1],[2,1,0],[3,0,0],[0,3,0],[0,3,0],[1,1,1],[0,2,1],[2,1],[1,2,0],[3,0,0,0],[2,1],[2,0,1],[2,1,0],[1,2,0],[3,0],[0,3],[3,0],[0,3,0],[3,0,0,0],[3,0],[3,0],[2,1,0,0],[3,0],[1,1,1],[3,0,0,0],[3,0,0],[3,0,0,0,0],[2,0,1],[1,0,2],[3,0,0],[1,2,0],[1,2,0],[2,0,1],[3,0],[0,3],[1,2],[1,2],[2,1],[0,3,0],[3,0],[3,0] +00317fb010_940422.tif,[1,2],[1,2],[3,0,0,0,0,0,0],[1,2],[1,2],[0,3],[1,2,0],[3,0,0],[2,1,0],[2,1,0],[1,2,0],[2,0,1],[1,1,1],[2,1],[2,0,1],[0,2,1,0],[3,0],[2,0,1],[3,0,0],[3,0,0],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[2,1],[1,2],[2,1,0,0],[3,0],[0,3,0],[3,0,0,0],[3,0,0],[3,0,0,0,0],[1,1,1],[3,0,0],[0,1,2],[2,1,0],[2,1,0],[1,2,0],[3,0],[0,3],[1,2],[0,3],[1,2],[0,0,3],[3,0],[2,0] +00318fb010_940422.tif,[2,1],[0,3],[2,0,0,0,1,0,0],[3,0],[0,3],[2,1],[2,1,0],[2,0,0],[3,0,0],[1,1,1],[0,1,2],[3,0,0],[1,0,2],[3,0],[0,2,0],[0,3,0,0],[2,1],[1,2,0],[2,0,1],[1,2,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[1,2],[0,2,1,0],[0,3],[0,2,1],[3,0,0,0],[2,1,0],[3,0,0,0,0],[3,0,0],[2,0,1],[0,1,2],[1,2,0],[3,0,0],[0,2,1],[3,0],[1,1],[0,3],[0,3],[2,1],[2,1,0],[2,1],[3,0] +00319fa010_940422.tif,[2,1],[0,3],[3,0,0,0,0,0,0],[1,2],[1,2],[2,1],[2,1,0],[1,1,1],[1,2,0],[0,3,0],[0,1,2],[1,1,1],[3,0,0],[2,1],[0,2,1],[1,0,1,1],[1,2],[3,0,0],[0,2,1],[1,2,0],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[3,0],[1,2],[0,3,0,0],[0,3],[0,0,3],[2,1,0,0],[1,1,1],[3,0,0,0,0],[1,0,2],[1,2,0],[2,1,0],[0,1,2],[1,0,2],[3,0,0],[3,0],[0,3],[2,1],[0,3],[1,2],[2,1,0],[3,0],[2,1] +00320fa010_940422.tif,[2,0],[1,2],[3,0,0,0,0,0,0],[0,3],[0,3],[3,0],[1,1,1],[2,1,0],[0,0,3],[0,2,1],[0,3,0],[3,0,0],[0,1,2],[2,1],[0,2,1],[2,1,0,0],[2,1],[3,0,0],[1,2,0],[1,1,1],[3,0],[3,0],[3,0],[2,1,0],[3,0,0,0],[3,0],[1,1],[1,1,1,0],[2,1],[1,0,2],[2,1,0,0],[1,1,1],[3,0,0,0,0],[1,0,2],[2,1,0],[0,1,2],[0,2,1],[0,2,1],[0,3,0],[3,0],[0,3],[0,3],[0,3],[0,3],[1,2,0],[1,2],[3,0] +00321fa010_940422.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[2,1],[1,2],[2,1],[2,1,0],[2,1,0],[1,1,1],[2,1,0],[0,3,0],[3,0,0],[1,0,2],[3,0],[0,2,1],[1,1,0,1],[3,0],[3,0,0],[1,0,2],[1,0,2],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[0,1,0,2],[2,1],[0,2,1],[3,0,0,0],[0,3,0],[2,0,1,0,0],[2,0,1],[2,0,1],[2,0,1],[2,1,0],[2,1,0],[0,3,0],[3,0],[1,2],[0,3],[1,2],[3,0],[0,2,1],[3,0],[2,1] +00322fa010_940422.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[3,0,0],[1,0,2],[0,0,3],[0,1,2],[0,0,3],[0,0,3],[1,2,0],[2,1],[1,2,0],[2,1,0,0],[3,0],[3,0,0],[0,2,1],[3,0,0],[3,0],[3,0],[3,0],[2,0,1],[3,0,0,0],[2,1],[3,0],[1,2,0,0],[0,3],[0,2,1],[3,0,0,0],[2,0,0],[2,1,0,0,0],[3,0,0],[2,0,1],[2,1,0],[0,3,0],[2,0,1],[2,1,0],[2,1],[2,1],[1,2],[1,2],[3,0],[1,2,0],[3,0],[2,1] +00323fa010_940422.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[2,1],[0,3],[1,2],[3,0,0],[2,0,1],[3,0,0],[3,0,0],[0,3,0],[2,0,1],[1,0,2],[3,0],[2,0,1],[0,1,2,0],[0,3],[3,0,0],[0,0,3],[2,0,1],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,1],[0,2,0,1],[0,3],[1,1,1],[2,1,0,0],[1,2,0],[3,0,0,0,0],[3,0,0],[2,0,1],[1,2,0],[2,1,0],[1,2,0],[1,2,0],[3,0],[0,3],[1,2],[0,3],[3,0],[3,0,0],[3,0],[2,1] +00324fa010_940422.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[2,1],[1,2],[2,1],[1,1,1],[1,0,2],[1,2,0],[1,2,0],[0,3,0],[1,1,1],[1,0,2],[2,1],[2,0,1],[1,0,0,2],[1,2],[3,0,0],[2,0,1],[0,3,0],[3,0],[0,3],[3,0],[0,3,0],[3,0,0,0],[3,0],[1,2],[1,2,0,0],[1,2],[0,0,3],[1,2,0,0],[0,3,0],[3,0,0,0,0],[2,0,1],[1,1,1],[2,1,0],[2,1,0],[2,0,1],[1,2,0],[3,0],[1,2],[1,2],[0,3],[3,0],[0,0,3],[3,0],[3,0] +00325fa010_940422.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[0,3],[0,3],[2,1],[2,0,1],[1,2,0],[3,0,0],[1,2,0],[0,3,0],[1,2,0],[0,1,2],[1,2],[3,0,0],[2,1,0,0],[1,2],[3,0,0],[1,0,2],[2,0,1],[3,0],[0,3],[3,0],[0,3,0],[3,0,0,0],[1,2],[3,0],[0,2,1,0],[1,2],[3,0,0],[1,1,1,0],[0,0,3],[3,0,0,0,0],[3,0,0],[1,2,0],[1,2,0],[0,2,1],[0,1,2],[0,3,0],[3,0],[0,3],[0,3],[0,3],[0,3],[1,2,0],[2,1],[2,1] +00326fa010_940422.tif,[0,3],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[0,2,1],[1,0,2],[3,0,0],[1,2,0],[0,2,1],[3,0,0],[0,0,3],[3,0],[3,0,0],[2,0,0,1],[0,3],[2,1,0],[0,3,0],[2,1,0],[3,0],[0,3],[3,0],[0,3,0],[3,0,0,0],[2,1],[2,1],[0,1,0,2],[1,2],[2,1,0],[0,0,0,3],[1,0,2],[3,0,0,0,0],[0,0,3],[0,3,0],[0,1,2],[0,1,2],[0,0,3],[0,2,1],[3,0],[2,1],[1,2],[0,3],[0,3],[1,1,1],[3,0],[2,1] +00327fa010_940422.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[3,0,0],[1,0,2],[0,3,0],[1,1,1],[0,3,0],[2,1,0],[2,0,1],[2,1],[0,3,0],[2,1,0,0],[2,1],[3,0,0],[1,0,2],[3,0,0],[3,0],[0,3],[3,0],[2,1,0],[2,0,0,0],[3,0],[2,1],[1,2,0,0],[1,2],[0,3,0],[2,1,0,0],[2,1,0],[3,0,0,0,0],[1,0,2],[1,0,2],[1,0,2],[0,2,1],[3,0,0],[0,3,0],[3,0],[1,2],[0,3],[1,2],[1,2],[3,0,0],[2,1],[2,1] +00328fb010_940422.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[0,3],[1,2],[1,2],[2,0,1],[2,0,1],[0,1,2],[0,1,2],[0,1,2],[2,0,1],[1,0,2],[3,0],[1,2,0],[3,0,0,0],[0,3],[3,0,0],[3,0,0],[1,0,2],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[2,1],[3,0],[0,0,0,3],[2,1],[0,2,1],[3,0,0,0],[0,2,1],[3,0,0,0,0],[3,0,0],[3,0,0],[2,1,0],[2,1,0],[1,2,0],[2,1,0],[1,2],[3,0],[0,3],[3,0],[1,2],[0,2,1],[3,0],[3,0] +00329fa010_940422.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[1,2,0],[1,0,2],[1,1,1],[1,2,0],[1,2,0],[2,0,1],[3,0,0],[1,2],[1,2,0],[2,0,0,0],[2,1],[3,0,0],[3,0,0],[0,3,0],[3,0],[0,3],[3,0],[1,2,0],[2,0,0,1],[2,1],[2,1],[1,1,0,1],[2,1],[1,1,1],[1,1,0,1],[0,3,0],[3,0,0,0,0],[0,0,3],[3,0,0],[0,2,1],[2,1,0],[3,0,0],[1,2,0],[3,0],[2,1],[2,1],[0,3],[2,1],[0,3,0],[2,1],[2,1] +00330fb010_940422.tif,[1,2],[1,2],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[1,2,0],[2,1,0],[1,2,0],[2,1,0],[0,3,0],[3,0,0],[1,0,2],[3,0],[3,0,0],[0,2,0,1],[3,0],[2,0,1],[3,0,0],[3,0,0],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,1],[1,1,1,0],[0,3],[1,1,1],[0,2,1,0],[2,1,0],[3,0,0,0,0],[3,0,0],[3,0,0],[0,2,1],[1,1,1],[2,0,1],[0,3,0],[3,0],[1,2],[0,3],[0,3],[0,3],[0,0,3],[3,0],[3,0] +00331fb010_940422.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[1,2],[1,2],[2,1],[1,0,2],[1,0,2],[0,0,3],[0,0,3],[0,2,1],[0,2,1],[1,1,1],[3,0],[2,1,0],[2,0,0,1],[1,2],[3,0,0],[0,1,2],[3,0,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[0,3],[0,2,0,1],[0,3],[1,2,0],[0,3,0,0],[1,0,2],[3,0,0,0,0],[2,0,1],[3,0,0],[2,0,1],[2,1,0],[3,0,0],[0,1,2],[3,0],[0,3],[1,2],[0,3],[0,3],[0,3,0],[3,0],[3,0] +00332fa010_940422.tif,[3,0],[3,0],[2,0,1,0,0,0,0],[1,2],[0,3],[0,3],[2,0,1],[1,2,0],[0,0,3],[0,0,3],[0,1,2],[0,0,3],[2,1,0],[2,1],[0,0,3],[3,0,0,0],[0,3],[3,0,0],[1,0,2],[2,1,0],[3,0],[3,0],[3,0],[1,0,2],[0,2,0,1],[2,1],[2,1],[0,0,3,0],[0,3],[0,1,2],[3,0,0,0],[2,1,0],[2,0,1,0,0],[3,0,0],[3,0,0],[0,0,3],[0,2,1],[2,1,0],[0,1,2],[0,3],[1,1],[0,3],[3,0],[3,0],[2,1,0],[3,0],[2,1] +00333fa010_940422.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[1,2],[1,2],[2,1],[2,1,0],[2,0,1],[1,0,2],[0,2,1],[2,1,0],[0,2,1],[2,0,1],[2,1],[0,3,0],[3,0,0,0],[0,3],[3,0,0],[2,0,1],[1,0,2],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[2,1,0,0],[0,3],[1,2,0],[0,2,1,0],[0,3,0],[3,0,0,0,0],[2,0,1],[0,3,0],[0,3,0],[0,0,3],[0,0,3],[2,1,0],[1,2],[2,1],[0,3],[3,0],[3,0],[3,0,0],[3,0],[1,2] +00334fa010_940422.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[0,3],[1,2],[1,2],[1,1,1],[3,0,0],[1,0,2],[0,1,2],[0,2,1],[1,2,0],[3,0,0],[3,0],[2,1,0],[2,0,1,0],[0,3],[3,0,0],[1,1,1],[1,0,2],[3,0],[3,0],[3,0],[2,0,1],[2,0,1,0],[3,0],[3,0],[1,2,0,0],[0,3],[0,3,0],[3,0,0,0],[3,0,0],[3,0,0,0,0],[3,0,0],[1,0,2],[1,2,0],[2,1,0],[0,3,0],[1,1,0],[3,0],[0,3],[1,2],[2,1],[3,0],[2,1,0],[3,0],[0,3] +00335fa010_940422.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[0,3],[0,3],[1,2],[1,0,2],[1,0,2],[3,0,0],[0,1,2],[1,1,1],[1,2,0],[2,0,1],[2,1],[1,2,0],[2,1,0,0],[0,3],[2,0,1],[2,1,0],[1,0,2],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[1,2,0,0],[1,2],[1,1,1],[3,0,0,0],[0,3,0],[2,0,1,0,0],[2,0,1],[0,0,3],[3,0,0],[3,0,0],[0,3,0],[2,1,0],[2,1],[2,1],[0,3],[3,0],[3,0],[1,2,0],[2,1],[2,1] +00336fa010_940422.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[2,1],[1,2],[1,2],[2,0,1],[2,1,0],[1,0,2],[1,1,1],[0,2,1],[2,1,0],[1,1,1],[2,1],[3,0,0],[1,1,0,1],[0,3],[3,0,0],[0,2,1],[1,0,2],[3,0],[2,1],[3,0],[1,2,0],[3,0,0,0],[2,1],[3,0],[1,1,0,1],[2,1],[3,0,0],[0,2,1,0],[2,1,0],[3,0,0,0,0],[2,0,1],[2,0,1],[2,1,0],[1,2,0],[2,0,1],[1,2,0],[3,0],[1,2],[1,2],[1,2],[0,3],[0,1,2],[3,0],[3,0] +00337fa010_940422.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[0,3],[1,2],[1,2],[0,3,0],[1,2,0],[2,1,0],[0,2,1],[0,1,2],[1,0,2],[0,2,1],[2,1],[2,0,1],[1,1,1,0],[0,3],[3,0,0],[1,2,0],[3,0,0],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[0,3],[1,2],[0,1,0,2],[2,1],[2,1,0],[0,1,2,0],[1,0,2],[3,0,0,0,0],[3,0,0],[3,0,0],[1,2,0],[1,2,0],[2,0,1],[0,3,0],[2,1],[1,2],[2,1],[0,3],[0,3],[0,1,2],[3,0],[3,0] +00338fa010_940422.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[0,3],[1,2],[1,2],[2,1,0],[1,0,2],[2,1,0],[0,1,2],[1,2,0],[2,1,0],[2,0,1],[2,1],[3,0,0],[2,1,0,0],[3,0],[2,1,0],[2,0,1],[0,1,1],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,1],[1,2,0,0],[0,3],[0,1,2],[3,0,0,0],[2,1,0],[3,0,0,0,0],[2,1,0],[2,0,1],[1,2,0],[2,0,1],[2,1,0],[0,2,1],[1,2],[3,0],[0,3],[2,1],[1,2],[1,2,0],[2,1],[3,0] +00339fa010_940422.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[3,0],[0,3],[1,2],[0,3,0],[1,1,1],[2,0,1],[0,3,0],[1,2,0],[1,2,0],[2,0,1],[3,0],[2,1,0],[1,0,1,1],[1,2],[3,0,0],[2,1,0],[3,0,0],[3,0],[3,0],[3,0],[2,0,1],[2,0,1,0],[3,0],[0,3],[2,0,1,0],[3,0],[1,1,1],[1,1,1,0],[2,0,1],[3,0,0,0,0],[3,0,0],[3,0,0],[1,2,0],[1,2,0],[2,0,1],[0,3,0],[3,0],[1,2],[3,0],[0,3],[0,3],[3,0,0],[3,0],[3,0] +00340fa010_940422.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[1,2],[0,3],[2,1],[1,1,1],[3,0,0],[0,0,3],[0,2,1],[1,2,0],[1,2,0],[0,0,3],[2,1],[0,2,1],[0,2,1,0],[1,2],[3,0,0],[0,1,2],[0,1,2],[2,1],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[1,2],[0,1,0,2],[1,2],[0,2,1],[3,0,0,0],[1,2,0],[0,0,3,0,0],[3,0,0],[3,0,0],[0,0,3],[3,0,0],[0,3,0],[0,3,0],[3,0],[1,2],[3,0],[0,3],[3,0],[0,0,3],[3,0],[3,0] +00341fa010_940422.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[1,0,2],[0,0,3],[1,0,2],[0,2,1],[0,0,3],[0,0,3],[0,3,0],[2,1],[1,2,0],[2,0,0,1],[0,3],[3,0,0],[0,3,0],[3,0,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[2,1],[3,0,0,0],[1,2],[0,2,1],[3,0,0,0],[0,1,2],[3,0,0,0,0],[2,0,1],[3,0,0],[0,3,0],[0,3,0],[1,2,0],[0,3,0],[2,1],[2,1],[1,2],[3,0],[3,0],[0,3,0],[3,0],[3,0] +00342fa010_940422.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[0,2],[0,3],[2,1],[2,1,0],[2,1,0],[1,2,0],[3,0,0],[0,3,0],[1,2,0],[1,1,1],[2,1],[1,1,1],[0,1,0,2],[3,0],[2,1,0],[2,0,1],[1,0,2],[1,2],[0,3],[3,0],[0,3,0],[3,0,0,0],[3,0],[1,2],[2,1,0,0],[1,2],[0,2,1],[3,0,0,0],[0,3,0],[3,0,0,0,0],[3,0,0],[2,0,1],[3,0,0],[0,3,0],[2,1,0],[3,0,0],[3,0],[0,3],[1,2],[2,1],[3,0],[0,0,3],[3,0],[3,0] +00343fa010_940422.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[1,1],[2,1],[1,2],[2,0,1],[0,3,0],[2,1,0],[3,0,0],[0,2,1],[2,1,0],[1,0,2],[2,1],[2,1,0],[0,1,0,2],[0,3],[3,0,0],[2,1,0],[2,1,0],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[3,0],[3,0],[0,3,0,0],[0,3],[0,3,0],[3,0,0,0],[0,3,0],[3,0,0,0,0],[3,0,0],[2,0,1],[0,3,0],[1,0,2],[2,1,0],[0,3,0],[2,1],[1,2],[2,1],[1,2],[3,0],[0,2,1],[3,0],[3,0] +00344fa010_940422.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[0,2],[0,3],[1,2],[0,2,1],[3,0,0],[2,1,0],[3,0,0],[0,3,0],[2,0,1],[2,0,1],[1,2],[1,1,1],[1,1,0,1],[1,2],[1,0,2],[1,0,2],[1,0,2],[2,1],[0,3],[3,0],[1,2,0],[3,0,0,0],[3,0],[1,2],[1,1,0,1],[1,2],[0,1,2],[2,1,0,0],[2,1,0],[3,0,0,0,0],[2,0,1],[3,0,0],[2,1,0],[1,2,0],[3,0,0],[3,0,0],[2,1],[1,2],[0,3],[2,1],[1,2],[0,0,3],[3,0],[3,0] +00345fa010_940422.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[3,0],[2,1],[1,2],[3,0,0],[2,1,0],[0,0,3],[0,2,1],[0,1,2],[2,0,1],[2,0,1],[2,1],[3,0,0],[1,1,1,0],[0,3],[3,0,0],[1,1,1],[3,0,0],[3,0],[3,0],[3,0],[2,0,1],[3,0,0,0],[2,1],[1,2],[0,1,0,2],[2,1],[0,2,1],[3,0,0,0],[0,3,0],[3,0,0,0,0],[3,0,0],[1,0,2],[2,1,0],[0,1,2],[2,1,0],[3,0,0],[3,0],[1,2],[3,0],[0,3],[3,0],[1,2,0],[3,0],[3,0] +00346fb010_940422.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[1,2],[1,2],[0,3],[1,2,0],[3,0,0],[2,1,0],[2,1,0],[1,2,0],[0,1,2],[1,1,1],[1,2],[2,1,0],[3,0,0,0],[0,3],[2,0,1],[2,0,1],[3,0,0],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[3,0],[3,0],[0,1,1,1],[1,2],[0,3,0],[2,1,0,0],[3,0,0],[3,0,0,0,0],[1,0,2],[3,0,0],[1,2,0],[1,2,0],[2,1,0],[2,1,0],[2,1],[1,2],[0,3],[3,0],[1,2],[0,1,2],[3,0],[3,0] +00347fa010_940422.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[1,2],[2,1,0],[2,1,0],[1,2,0],[3,0,0],[0,1,2],[2,0,1],[0,2,1],[1,2],[1,0,2],[2,0,0,1],[1,2],[3,0,0],[0,0,3],[2,0,1],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[1,2],[3,0],[0,2,0,1],[3,0],[3,0,0],[0,3,0,0],[1,0,2],[3,0,0,0,0],[1,0,2],[2,0,1],[0,3,0],[1,1,1],[3,0,0],[1,2,0],[0,3],[2,1],[1,2],[3,0],[0,3],[0,2,1],[3,0],[2,1] +00348fa010_940422.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[3,0],[1,2],[0,3],[3,0,0],[2,1,0],[1,0,2],[0,2,1],[1,1,1],[2,1,0],[3,0,0],[2,1],[0,2,1],[1,1,1,0],[1,2],[2,0,1],[1,2,0],[2,1,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[0,3],[2,1],[1,2,0,0],[2,1],[0,3,0],[3,0,0,0],[2,1,0],[3,0,0,0,0],[3,0,0],[0,0,3],[0,3,0],[0,3,0],[1,2,0],[0,3,0],[2,0],[1,2],[1,2],[1,2],[3,0],[1,2,0],[3,0],[2,1] +00349fb010_940422.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[2,1,0],[0,2,1],[2,1,0],[3,0,0],[1,2,0],[0,2,1],[0,0,3],[2,1],[3,0,0],[1,1,0,1],[1,2],[2,1,0],[2,0,1],[2,1,0],[3,0],[0,3],[3,0],[0,3,0],[3,0,0,0],[2,1],[3,0],[1,2,0,0],[1,2],[0,3,0],[3,0,0,0],[3,0,0],[3,0,0,0,0],[3,0,0],[3,0,0],[1,2,0],[0,2,1],[1,0,2],[1,2,0],[0,3],[2,1],[1,2],[3,0],[0,3],[0,3,0],[3,0],[2,1] +00350fb010_940422.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[2,0,1],[2,0,1],[1,0,2],[0,1,2],[1,2,0],[1,0,2],[2,0,1],[1,2],[1,0,2],[0,1,0,2],[0,3],[1,0,2],[0,2,1],[1,0,2],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[2,1],[3,0],[0,3,0,0],[0,3],[1,1,1],[3,0,0,0],[0,3,0],[2,1,0,0,0],[1,0,2],[1,0,2],[2,1,0],[1,2,0],[2,1,0],[2,1,0],[2,1],[2,1],[2,1],[3,0],[3,0],[0,3,0],[3,0],[2,1] +00351fa010_940422.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[0,3,0],[1,0,2],[2,1,0],[1,2,0],[1,2,0],[2,1,0],[1,0,2],[2,1],[0,2,1],[3,0,0,0],[2,1],[3,0,0],[3,0,0],[1,0,2],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[2,1],[3,0],[0,2,0,1],[2,1],[0,2,1],[2,1,0,0],[2,0,1],[3,0,0,0,0],[1,0,2],[1,0,2],[2,1,0],[2,0,1],[1,2,0],[1,2,0],[3,0],[3,0],[0,3],[3,0],[0,3],[0,3,0],[3,0],[3,0] +00352fa010_940422.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[3,0,0],[1,2,0],[2,1,0],[1,2,0],[0,1,2],[1,2,0],[2,0,1],[0,3],[1,0,2],[1,0,0,2],[3,0],[2,0,1],[3,0,0],[1,2,0],[3,0],[0,3],[3,0],[0,3,0],[3,0,0,0],[3,0],[3,0],[1,2,0,0],[2,1],[1,0,2],[1,2,0,0],[2,0,1],[3,0,0,0,0],[2,1,0],[3,0,0],[2,0,1],[0,3,0],[2,0,1],[3,0,0],[3,0],[1,2],[0,3],[3,0],[0,3],[2,1,0],[3,0],[3,0] +00353fa010_940422.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[0,3],[0,3],[2,1],[1,2,0],[3,0,0],[2,1,0],[2,1,0],[0,3,0],[2,1,0],[2,0,1],[3,0],[2,1,0],[2,1,0,0],[0,3],[1,0,2],[3,0,0],[3,0,0],[3,0],[0,3],[3,0],[0,3,0],[3,0,0,0],[3,0],[2,1],[0,1,0,2],[3,0],[0,2,1],[2,1,0,0],[2,1,0],[3,0,0,0,0],[2,1,0],[2,1,0],[1,2,0],[2,1,0],[2,0,1],[1,2,0],[2,1],[2,1],[0,3],[1,2],[0,3],[0,0,3],[3,0],[2,1] +00354fa010_940422.tif,[2,1],[2,1],[2,0,0,0,0,0,1],[0,3],[2,1],[2,1],[1,2,0],[2,1,0],[2,1,0],[2,1,0],[0,3,0],[2,0,1],[2,0,1],[3,0],[1,1,1],[3,0,0,0],[0,3],[0,1,2],[3,0,0],[2,0,1],[3,0],[0,3],[3,0],[0,3,0],[3,0,0,0],[0,3],[2,1],[0,2,0,1],[1,2],[0,3,0],[2,1,0,0],[0,3,0],[3,0,0,0,0],[2,0,1],[1,0,2],[3,0,0],[0,0,0],[2,1,0],[2,1,0],[3,0],[2,1],[0,3],[1,2],[3,0],[0,2,1],[3,0],[1,2] +00355fa010_940422.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[1,1],[0,3],[2,1],[0,2,1],[1,0,2],[1,0,2],[2,1,0],[1,2,0],[3,0,0],[2,0,1],[3,0],[1,2,0],[3,0,0,0],[0,3],[2,0,1],[2,0,1],[1,0,2],[3,0],[2,1],[3,0],[1,0,2],[2,0,1,0],[3,0],[3,0],[0,2,0,1],[0,3],[0,1,2],[3,0,0,0],[1,1,1],[3,0,0,0,0],[3,0,0],[2,1,0],[1,2,0],[0,3,0],[1,1,1],[2,1,0],[3,0],[3,0],[1,2],[2,1],[1,2],[2,1,0],[2,1],[1,2] +00356fb010_940422.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[3,0],[1,2],[1,2],[3,0,0],[1,1,1],[3,0,0],[3,0,0],[0,2,1],[2,1,0],[2,0,1],[2,1],[2,1,0],[1,1,0,1],[1,2],[1,0,2],[2,1,0],[2,0,1],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[3,0],[1,1,1,0],[3,0],[2,0,1],[0,3,0,0],[1,0,2],[3,0,0,0,0],[1,0,2],[3,0,0],[0,3,0],[0,2,1],[2,1,0],[1,2,0],[2,1],[3,0],[0,3],[3,0],[1,2],[0,0,3],[3,0],[3,0] +00357fa010_940422.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[2,1,0],[1,2,0],[2,0,1],[0,2,1],[0,3,0],[0,0,3],[3,0,0],[1,2],[2,1,0],[2,1,0,0],[2,1],[2,0,1],[2,0,1],[2,1,0],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,1],[2,1,0,0],[1,2],[0,3,0],[2,1,0,0],[1,2,0],[3,0,0,0,0],[1,1,1],[3,0,0],[0,2,1],[0,2,1],[3,0,0],[0,2,0],[1,2],[1,2],[0,3],[2,1],[1,2],[0,0,3],[3,0],[3,0] +00358fb010_940422.tif,[2,1],[3,0],[1,0,1,0,0,1,0],[2,1],[1,2],[0,3],[2,0,1],[2,1,0],[1,0,2],[0,2,1],[1,1,1],[2,0,1],[2,0,1],[2,1],[1,0,2],[2,1,0,0],[0,3],[2,0,1],[0,1,2],[2,0,1],[2,1],[3,0],[3,0],[3,0,0],[0,2,1,0],[3,0],[3,0],[0,1,2,0],[0,3],[0,3,0],[3,0,0,0],[1,0,2],[0,1,0,0,2],[3,0,0],[2,0,1],[0,0,3],[3,0,0],[1,2,0],[1,1,1],[1,2],[3,0],[0,3],[3,0],[3,0],[1,2,0],[3,0],[2,1] +00359fa010_940422.tif,[3,0],[3,0],[2,0,0,0,0,0,0],[0,3],[0,3],[0,3],[2,1,0],[0,3,0],[0,0,3],[1,1,1],[0,3,0],[3,0,0],[2,0,1],[3,0],[0,3,0],[2,1,0,0],[2,1],[3,0,0],[2,1,0],[2,1,0],[3,0],[3,0],[3,0],[2,1,0],[3,0,0,0],[3,0],[3,0],[0,1,1,1],[0,3],[0,2,0],[3,0,0,0],[1,2,0],[3,0,0,0,0],[3,0,0],[1,0,2],[3,0,0],[1,1,0],[1,2,0],[3,0,0],[3,0],[2,1],[2,1],[2,1],[3,0],[0,3,0],[3,0],[2,1] +00360fa010_940422.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[2,1],[1,2],[1,2],[2,0,1],[2,1,0],[2,0,1],[1,1,1],[0,2,1],[3,0,0],[0,2,1],[3,0],[3,0,0],[0,0,3,0],[1,2],[3,0,0],[0,3,0],[1,2,0],[3,0],[3,0],[3,0],[3,0,0],[2,0,0,1],[3,0],[0,3],[0,1,0,2],[0,3],[1,2,0],[3,0,0,0],[2,1,0],[0,0,3,0,0],[2,0,1],[2,0,1],[2,1,0],[0,2,0],[1,0,2],[3,0,0],[3,0],[2,1],[3,0],[0,3],[3,0],[0,3,0],[2,1],[1,2] +00361fa010_940422.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[2,1],[0,3],[2,1],[3,0,0],[1,2,0],[2,0,1],[1,2,0],[1,2,0],[3,0,0],[2,0,1],[3,0],[3,0,0],[1,0,2,0],[0,3],[3,0,0],[2,1,0],[2,0,1],[3,0],[3,0],[3,0],[2,1,0],[3,0,0,0],[3,0],[1,2],[1,1,0,1],[2,1],[0,1,2],[3,0,0,0],[3,0,0],[2,0,1,0,0],[2,0,1],[2,0,1],[1,2,0],[0,0,3],[0,3,0],[2,1,0],[3,0],[0,3],[2,1],[1,2],[1,2],[0,2,1],[3,0],[2,1] +00362fa010_940422.tif,[2,1],[2,1],[2,0,1,0,0,0,0],[2,1],[0,3],[1,2],[3,0,0],[0,2,1],[0,0,3],[0,0,3],[1,2,0],[1,1,0],[3,0,0],[2,1],[0,3,0],[2,0,1,0],[1,2],[2,1,0],[2,0,1],[1,0,2],[3,0],[3,0],[3,0],[2,0,1],[2,0,1,0],[3,0],[2,1],[0,2,0,1],[1,2],[0,3,0],[3,0,0,0],[1,2,0],[3,0,0,0,0],[3,0,0],[0,0,3],[2,1,0],[2,1,0],[2,1,0],[3,0,0],[3,0],[1,2],[3,0],[1,2],[3,0],[1,2,0],[3,0],[2,1] +00363fa010_940422.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[1,2],[1,2],[0,3],[2,0,1],[3,0,0],[0,0,3],[0,1,2],[1,2,0],[0,3,0],[1,1,1],[3,0],[3,0,0],[1,0,1,1],[1,2],[3,0,0],[1,0,2],[1,0,2],[3,0],[3,0],[3,0],[3,0,0],[2,0,1,0],[2,1],[1,2],[0,1,0,2],[0,3],[0,2,1],[3,0,0,0],[2,1,0],[3,0,0,0,0],[2,0,1],[3,0,0],[0,3,0],[1,2,0],[3,0,0],[0,3,0],[3,0],[1,2],[2,1],[1,2],[1,2],[0,2,1],[3,0],[2,1] +00364fa010_940422.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[0,3],[0,3],[1,2],[2,0,1],[2,1,0],[3,0,0],[0,3,0],[0,1,2],[1,2,0],[2,0,1],[3,0],[3,0,0],[3,0,0,0],[1,2],[1,0,2],[1,1,1],[3,0,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[0,3],[0,3,0,0],[2,1],[2,1,0],[3,0,0,0],[2,1,0],[3,0,0,0,0],[2,0,1],[2,0,1],[3,0,0],[0,3,0],[3,0,0],[2,1,0],[2,1],[2,1],[3,0],[0,3],[1,2],[2,1,0],[3,0],[3,0] +00365fa010_940422.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[1,2,0],[3,0,0],[0,3,0],[3,0,0],[0,3,0],[1,1,1],[1,0,2],[3,0],[0,2,1],[2,0,0,1],[3,0],[3,0,0],[0,1,2],[1,1,1],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[1,2],[3,0],[0,1,0,2],[1,2],[1,2,0],[0,0,3,0],[1,1,1],[3,0,0,0,0],[3,0,0],[0,0,3],[1,2,0],[0,2,1],[1,2,0],[0,3,0],[0,3],[3,0],[0,3],[3,0],[0,3],[2,1,0],[2,1],[3,0] +00366fa010_940422.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[1,2],[1,2],[1,2],[0,2,1],[2,0,1],[2,0,1],[1,2,0],[0,1,2],[1,0,2],[2,0,1],[0,3],[0,1,2],[1,1,0,1],[3,0],[2,1,0],[3,0,0],[1,2,0],[2,1],[0,3],[3,0],[2,1,0],[3,0,0,0],[2,1],[3,0],[0,1,0,2],[0,3],[1,1,1],[3,0,0,0],[1,1,1],[3,0,0,0,0],[0,2,1],[1,2,0],[2,1,0],[1,1,1],[2,1,0],[1,2,0],[2,1],[3,0],[1,2],[2,1],[3,0],[2,1,0],[2,1],[2,1] +00367fa010_940422.tif,[2,1],[3,0],[1,1,1,0,0,0,0],[1,2],[1,2],[0,3],[3,0,0],[2,1,0],[2,1,0],[1,2,0],[0,1,2],[3,0,0],[2,0,1],[2,1],[1,1,1],[3,0,0,0],[2,1],[2,0,1],[1,0,2],[3,0,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[0,1,0,2],[2,1],[0,2,1],[0,3,0,0],[1,2,0],[1,0,2,0,0],[1,1,1],[3,0,0],[0,2,1],[1,1,1],[2,1,0],[0,3,0],[2,1],[1,2],[0,3],[2,1],[0,3],[0,2,1],[3,0],[2,1] +00368fb010_940422.tif,[3,0],[1,2],[2,0,1,0,0,0,0],[0,3],[0,3],[1,2],[3,0,0],[3,0,0],[1,2,0],[0,3,0],[1,2,0],[2,1,0],[2,0,1],[3,0],[0,2,1],[2,1,0,0],[0,3],[3,0,0],[1,1,1],[1,0,2],[3,0],[3,0],[0,3],[2,0,1],[3,0,0,0],[2,1],[1,2],[0,0,0,3],[0,3],[0,3,0],[3,0,0,0],[2,1,0],[3,0,0,0,0],[2,0,1],[2,0,1],[0,3,0],[3,0,0],[0,3,0],[1,2,0],[2,1],[2,1],[1,2],[3,0],[2,1],[1,2,0],[3,0],[3,0] +00369fa010_940422.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[0,3],[1,2],[2,1],[0,0,3],[2,1,0],[1,0,2],[0,1,2],[1,2,0],[3,0,0],[0,1,2],[2,1],[1,2,0],[1,2,0,0],[0,3],[3,0,0],[0,3,0],[1,0,2],[3,0],[3,0],[3,0],[1,2,0],[3,0,0,0],[3,0],[1,2],[1,2,0,0],[1,2],[1,1,1],[3,0,0,0],[0,3,0],[3,0,0,0,0],[0,0,3],[2,0,1],[1,2,0],[1,0,2],[1,1,1],[1,2,0],[3,0],[1,2],[1,2],[1,2],[3,0],[3,0,0],[2,0],[3,0] +00370fa010_940422.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[0,3],[1,2],[0,3],[2,0,1],[1,0,2],[0,0,3],[0,0,3],[0,3,0],[2,1,0],[1,0,2],[3,0],[1,0,2],[1,1,0,1],[0,3],[3,0,0],[0,0,3],[1,2,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[1,2],[2,1,0,0],[0,3],[0,0,2],[3,0,0,0],[1,2,0],[2,0,1,0,0],[3,0,0],[2,0,1],[3,0,0],[1,0,2],[2,0,1],[2,1,0],[1,2],[1,2],[0,3],[2,1],[3,0],[3,0,0],[3,0],[2,1] +00371fb010_940422.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[3,0,0],[2,1,0],[1,2,0],[2,1,0],[2,1,0],[1,0,2],[3,0,0],[1,2],[0,3,0],[2,0,0,1],[2,1],[3,0,0],[2,0,1],[2,0,1],[3,0],[1,2],[3,0],[3,0,0],[2,1,0,0],[3,0],[3,0],[1,2,0,0],[1,2],[0,1,2],[3,0,0,0],[3,0,0],[2,0,0,0,0],[1,0,2],[3,0,0],[0,2,1],[2,1,0],[3,0,0],[0,3,0],[2,1],[1,2],[2,1],[3,0],[3,0],[1,2,0],[1,1],[3,0] +00373fa010_940422.tif,[1,2],[1,2],[3,0,0,0,0,0,0],[1,2],[1,2],[1,2],[3,0,0],[1,1,1],[2,1,0],[2,1,0],[0,0,3],[2,0,1],[3,0,0],[2,1],[2,0,1],[0,2,0,1],[1,2],[3,0,0],[3,0,0],[2,0,1],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[1,2],[3,0],[1,0,2,0],[1,2],[0,3,0],[3,0,0,0],[2,1,0],[3,0,0,0,0],[3,0,0],[3,0,0],[0,0,3],[0,0,3],[1,0,2],[0,0,3],[3,0],[1,2],[0,3],[1,2],[3,0],[1,2,0],[2,1],[3,0] +00374fa010_940422.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[1,2],[1,2],[1,2],[3,0,0],[1,2,0],[1,2,0],[2,1,0],[0,3,0],[2,0,1],[3,0,0],[1,2],[2,1,0],[2,1,0,0],[1,2],[2,0,1],[2,0,1],[2,1,0],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[2,1],[3,0],[0,0,3,0],[0,3],[0,1,2],[3,0,0,0],[2,0,1],[3,0,0,0,0],[3,0,0],[3,0,0],[1,1,1],[1,2,0],[0,2,1],[0,3,0],[0,2],[2,1],[0,3],[2,1],[3,0],[0,1,2],[3,0],[3,0] +00375fa010_940422.tif,[0,3],[3,0],[3,0,0,0,0,0,0],[3,0],[0,3],[2,1],[3,0,0],[2,0,1],[2,1,0],[1,2,0],[0,0,3],[1,0,2],[3,0,0],[3,0],[3,0,0],[0,3,0,0],[2,1],[3,0,0],[2,1,0],[2,1,0],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[1,2],[1,1,1,0],[0,3],[0,3,0],[0,3,0,0],[2,1,0],[3,0,0,0,0],[1,0,2],[2,0,1],[0,3,0],[0,3,0],[1,0,2],[0,2,1],[3,0],[0,3],[3,0],[0,3],[1,2],[0,3,0],[3,0],[3,0] +00376fa010_940422.tif,[1,2],[1,2],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[2,0,1],[0,2,1],[2,1,0],[2,1,0],[0,0,3],[0,0,3],[3,0,0],[2,1],[1,1,1],[2,1,0,0],[0,3],[3,0,0],[2,0,1],[1,0,2],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[1,2],[3,0],[3,0,0,0],[0,3],[1,1,1],[3,0,0,0],[1,2,0],[3,0,0,0,0],[2,0,1],[3,0,0],[0,1,2],[1,2,0],[0,1,2],[0,3,0],[1,2],[3,0],[1,2],[3,0],[2,1],[2,1,0],[3,0],[1,2] +00377fa010_940422.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[2,1],[1,2],[1,2],[2,1,0],[2,1,0],[1,2,0],[2,1,0],[1,2,0],[1,0,2],[2,1,0],[1,2],[2,1,0],[1,1,0,1],[2,1],[3,0,0],[3,0,0],[2,0,1],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,1],[3,0,0,0],[3,0],[1,2,0],[3,0,0,0],[0,0,3],[2,0,0,0,1],[2,0,1],[2,0,1],[0,3,0],[0,3,0],[2,1,0],[0,2,1],[1,2],[2,1],[0,3],[3,0],[1,2],[2,1,0],[2,1],[3,0] +00378fa011_940422.tif,[0,3],[3,0],[3,0,0,0,0,0,0],[1,2],[0,3],[2,1],[3,0,0],[1,2,0],[3,0,0],[1,2,0],[1,2,0],[3,0,0],[3,0,0],[1,2],[0,2,1],[1,1,0,1],[0,3],[3,0,0],[2,1,0],[3,0,0],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[1,2],[3,0],[1,0,2,0],[0,3],[0,2,1],[3,0,0,0],[2,1,0],[3,0,0,0,0],[2,0,1],[3,0,0],[0,0,3],[0,2,1],[2,0,1],[1,0,2],[1,2],[2,1],[0,3],[3,0],[2,1],[0,3,0],[3,0],[3,0] +00379fa010_940422.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[1,2],[1,2],[1,2],[2,0,1],[3,0,0],[0,3,0],[1,2,0],[0,2,1],[0,1,2],[1,0,1],[0,3],[2,0,1],[3,0,0,0],[0,3],[3,0,0],[1,0,2],[1,0,2],[3,0],[0,3],[2,1],[1,2,0],[3,0,0,0],[3,0],[2,1],[2,1,0,0],[0,3],[0,3,0],[3,0,0,0],[0,2,0],[3,0,0,0,0],[3,0,0],[1,0,2],[0,3,0],[0,2,1],[2,1,0],[3,0,0],[0,3],[3,0],[0,3],[3,0],[3,0],[0,1,2],[3,0],[3,0] +00380fa010_940422.tif,[2,1],[2,1],[2,0,0,0,1,0,0],[1,2],[0,3],[2,1],[2,1,0],[0,1,2],[2,1,0],[2,1,0],[1,1,1],[2,0,1],[2,0,1],[0,3],[2,0,1],[1,1,1,0],[2,1],[2,0,1],[2,1,0],[1,2,0],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[1,2],[1,2],[1,2,0,0],[2,1],[2,0,1],[0,1,2,0],[1,0,2],[3,0,0,0,0],[1,0,2],[1,2,0],[1,2,0],[1,2,0],[0,1,2],[1,1,1],[3,0],[0,3],[3,0],[0,3],[0,3],[1,0,2],[3,0],[3,0] +00381fa010_940422.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[0,2,1],[1,0,2],[0,3,0],[3,0,0],[1,0,2],[1,0,2],[0,0,3],[1,2],[3,0,0],[2,0,0,1],[2,1],[3,0,0],[0,2,1],[3,0,0],[3,0],[1,2],[2,1],[2,1,0],[3,0,0,0],[1,2],[1,2],[1,2,0,0],[0,3],[2,0,0],[0,1,2,0],[0,0,3],[3,0,0,0,0],[1,0,2],[3,0,0],[0,1,2],[0,1,2],[1,1,1],[1,1,1],[2,1],[2,1],[0,3],[1,2],[0,3],[1,2,0],[3,0],[3,0] +00382fb010_940422.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[1,1,1],[2,1,0],[3,0,0],[2,1,0],[0,3,0],[1,1,1],[0,0,3],[2,1],[3,0,0],[3,0,0,0],[0,3],[3,0,0],[1,1,1],[2,1,0],[3,0],[0,3],[3,0],[0,2,1],[3,0,0,0],[3,0],[1,2],[1,2,0,0],[0,3],[0,2,1],[3,0,0,0],[3,0,0],[3,0,0,0,0],[2,0,1],[3,0,0],[2,1,0],[1,1,1],[3,0,0],[2,1,0],[3,0],[2,1],[0,3],[1,2],[1,2],[0,1,2],[3,0],[3,0] +00383fb010_940422.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[1,2],[0,3],[2,1],[3,0,0],[1,1,1],[1,0,2],[0,1,2],[2,1,0],[1,2,0],[3,0,0],[2,1],[1,1,1],[2,0,0,1],[3,0],[3,0,0],[1,1,1],[3,0,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,1],[1,1,0,1],[2,1],[0,2,1],[2,1,0,0],[2,1,0],[1,0,2,0,0],[3,0,0],[0,0,3],[0,3,0],[1,1,1],[1,1,1],[0,3,0],[2,1],[1,2],[0,3],[2,1],[0,3],[0,3,0],[3,0],[1,2] +00384fa010_940422.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[2,1],[0,3],[1,2],[3,0,0],[0,1,1],[3,0,0],[1,1,1],[0,3,0],[1,1,1],[2,0,1],[2,1],[2,1,0],[2,0,0,1],[3,0],[3,0,0],[3,0,0],[2,0,0],[3,0],[0,3],[3,0],[0,2,1],[3,0,0,0],[2,1],[3,0],[1,2,0,0],[1,2],[0,3,0],[3,0,0,0],[3,0,0],[3,0,0,0,0],[2,0,1],[2,0,1],[0,1,2],[0,3,0],[1,0,2],[0,1,2],[2,1],[1,2],[0,3],[1,2],[1,2],[0,2,1],[3,0],[3,0] +00385fa010_940422.tif,[3,0],[0,3],[3,0,0,0,0,0,0],[2,1],[1,2],[1,2],[0,2,1],[2,1,0],[2,1,0],[3,0,0],[0,2,1],[2,1,0],[3,0,0],[2,1],[1,1,1],[0,1,2,0],[0,3],[3,0,0],[3,0,0],[1,0,2],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[3,0],[1,2],[0,1,2,0],[1,2],[2,0,1],[1,0,2,0],[2,0,1],[3,0,0,0,0],[3,0,0],[1,1,1],[1,2,0],[0,0,3],[1,0,2],[1,2,0],[3,0],[0,3],[0,3],[0,3],[0,3],[2,0,1],[3,0],[3,0] +00386fb010_940422.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[3,0,0],[0,3,0],[0,3,0],[3,0,0],[2,0,1],[2,0,1],[2,0,1],[2,1],[0,2,1],[0,2,0,1],[3,0],[3,0,0],[0,2,1],[3,0,0],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[1,2],[3,0],[0,0,3,0],[0,3],[0,2,1],[1,2,0,0],[2,1,0],[2,0,1,0,0],[3,0,0],[3,0,0],[0,2,1],[1,1,1],[3,0,0],[0,1,2],[3,0],[2,1],[0,3],[0,3],[0,3],[1,1,1],[3,0],[3,0] +00387fb010_940422.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[0,1,2],[2,0,1],[1,2,0],[3,0,0],[2,1,0],[2,0,1],[2,0,1],[3,0],[0,1,2],[0,1,0,2],[3,0],[2,1,0],[2,0,1],[1,2,0],[3,0],[0,3],[3,0],[2,0,1],[3,0,0,0],[2,1],[2,1],[0,0,3,0],[1,2],[0,2,1],[3,0,0,0],[1,1,1],[3,0,0,0,0],[1,1,1],[3,0,0],[0,1,2],[1,2,0],[1,1,1],[0,1,2],[0,3],[3,0],[0,3],[3,0],[2,1],[0,3,0],[3,0],[2,1] +00388fa010_940422.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[3,0],[0,3],[0,3],[1,2,0],[2,0,1],[0,3,0],[3,0,0],[0,3,0],[2,1,0],[1,2,0],[2,1],[1,0,2],[2,0,1,0],[3,0],[2,0,1],[2,0,1],[3,0,0],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[2,1],[1,0,0,2],[2,1],[3,0,0],[0,2,1,0],[3,0,0],[3,0,0,0,0],[3,0,0],[2,1,0],[0,0,3],[1,2,0],[2,0,1],[0,1,2],[3,0],[1,2],[1,2],[0,3],[0,3],[1,1,1],[3,0],[3,0] +00389fa010_940422.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[1,2],[3,0],[0,3],[1,1,1],[3,0,0],[2,0,1],[1,1,1],[0,3,0],[3,0,0],[0,2,1],[2,1],[2,1,0],[2,1,0,0],[0,3],[3,0,0],[0,0,3],[0,0,3],[3,0],[0,3],[3,0],[0,3,0],[3,0,0,0],[1,2],[2,1],[2,1,0,0],[0,3],[0,0,3],[3,0,0,0],[3,0,0],[3,0,0,0,0],[2,1,0],[1,2,0],[1,1,1],[1,2,0],[2,1,0],[0,2,1],[1,2],[3,0],[0,3],[3,0],[1,2],[0,2,1],[3,0],[3,0] +00390fb010_940422.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[0,3],[1,2],[1,2],[1,2,0],[1,2,0],[3,0,0],[0,3,0],[1,2,0],[0,2,1],[0,0,3],[3,0],[0,2,1],[3,0,0,0],[0,3],[2,0,1],[2,1,0],[2,1,0],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[2,1],[3,0],[0,2,1,0],[2,1],[2,1,0],[2,1,0,0],[2,0,1],[3,0,0,0,0],[2,0,1],[2,1,0],[1,1,1],[0,1,2],[2,0,1],[0,3,0],[3,0],[2,1],[1,2],[1,2],[0,3],[1,1,1],[3,0],[3,0] +00391fa010_940422.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[2,1],[1,2,0],[2,0,1],[2,0,1],[1,1,1],[0,3,0],[1,0,2],[0,2,1],[2,1],[1,1,1],[0,1,2,0],[0,3],[0,0,3],[1,0,2],[1,0,2],[3,0],[0,3],[3,0],[0,3,0],[3,0,0,0],[3,0],[0,3],[1,2,0,0],[2,1],[0,2,1],[3,0,0,0],[2,1,0],[3,0,0,0,0],[2,0,1],[1,0,2],[1,2,0],[0,3,0],[2,0,1],[0,3,0],[3,0],[1,2],[1,2],[0,3],[3,0],[0,2,1],[3,0],[2,1] +00392fb010_940422.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[0,1,2],[3,0,0],[3,0,0],[2,1,0],[0,1,2],[3,0,0],[2,0,1],[1,2],[1,0,2],[1,1,0,1],[0,3],[0,1,2],[1,2,0],[1,0,2],[3,0],[0,3],[3,0],[1,1,1],[3,0,0,0],[2,1],[3,0],[0,0,3,0],[2,1],[1,2,0],[3,0,0,0],[3,0,0],[3,0,0,0,0],[2,0,1],[1,1,1],[0,2,1],[0,2,1],[1,2,0],[0,1,2],[0,3],[3,0],[0,3],[3,0],[3,0],[1,1,1],[3,0],[2,1] +00393fb010_940422.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[2,0,1],[1,2,0],[1,1,1],[2,1,0],[0,3,0],[3,0,0],[1,0,2],[1,2],[1,2,0],[1,1,0,1],[1,2],[2,0,1],[3,0,0],[2,1,0],[3,0],[0,3],[2,1],[3,0,0],[2,0,1,0],[3,0],[1,2],[0,0,1,2],[3,0],[1,0,2],[0,3,0,0],[2,0,1],[3,0,0,0,0],[3,0,0],[2,0,1],[2,1,0],[1,2,0],[2,0,1],[2,1,0],[3,0],[0,3],[1,2],[1,2],[0,3],[0,3,0],[3,0],[2,1] +00394fa010_940422.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[0,3],[1,2],[1,2],[2,0,1],[0,2,1],[2,1,0],[2,1,0],[0,0,3],[0,1,2],[3,0,0],[3,0],[1,1,1],[2,1,0,0],[2,1],[1,0,2],[2,1,0],[1,0,2],[3,0],[0,3],[3,0],[0,3,0],[3,0,0,0],[3,0],[3,0],[0,2,0,1],[0,3],[0,2,1],[3,0,0,0],[1,2,0],[3,0,0,0,0],[2,0,1],[2,0,1],[2,1,0],[0,2,1],[2,0,1],[1,2,0],[1,2],[2,1],[0,3],[2,1],[3,0],[0,1,2],[3,0],[1,2] +00395fa010_940422.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[1,2],[1,2],[2,1],[1,1,1],[1,2,0],[3,0,0],[2,1,0],[0,3,0],[2,0,1],[1,0,2],[2,1],[0,2,1],[3,0,0,0],[2,1],[3,0,0],[1,1,1],[2,0,0],[3,0],[0,3],[3,0],[0,3,0],[3,0,0,0],[2,1],[2,1],[0,2,1,0],[0,3],[0,2,1],[2,1,0,0],[2,0,1],[3,0,0,0,0],[2,0,1],[3,0,0],[0,2,1],[0,3,0],[3,0,0],[0,3,0],[3,0],[2,1],[2,1],[1,2],[0,3],[0,1,2],[3,0],[3,0] +00396fa010_940422.tif,[0,3],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[1,2],[2,1,0],[1,1,1],[2,0,1],[1,1,1],[0,1,2],[2,0,1],[0,3,0],[3,0],[0,2,1],[2,1,0,0],[0,3],[3,0,0],[2,0,1],[2,0,1],[2,1],[0,3],[3,0],[1,1,1],[3,0,0,0],[3,0],[2,1],[0,1,0,2],[2,1],[0,2,1],[3,0,0,0],[1,2,0],[3,0,0,0,0],[3,0,0],[1,0,2],[2,1,0],[0,3,0],[1,2,0],[1,2,0],[2,1],[2,0],[0,3],[1,2],[3,0],[0,1,2],[3,0],[3,0] +00397fb010_940422.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[0,3],[2,1],[0,3],[2,1,0],[2,0,1],[2,1,0],[0,1,2],[0,3,0],[2,1,0],[3,0,0],[2,1],[1,2,0],[0,2,0,1],[0,3],[3,0,0],[1,0,2],[1,2,0],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,1],[1,0,2,0],[0,3],[0,2,1],[2,1,0,0],[1,0,2],[3,0,0,0,0],[2,0,1],[3,0,0],[0,2,1],[0,1,2],[3,0,0],[0,3,0],[2,1],[1,2],[0,3],[0,3],[2,1],[2,1,0],[3,0],[3,0] +00398fa010_940422.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[1,2],[1,2],[0,3],[1,2,0],[2,1,0],[1,2,0],[1,1,1],[0,3,0],[1,1,1],[0,1,2],[3,0],[2,1,0],[3,0,0,0],[2,1],[3,0,0],[2,0,1],[3,0,0],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[2,1],[2,1],[2,1,0,0],[1,2],[0,3,0],[2,1,0,0],[3,0,0],[3,0,0,0,0],[2,0,1],[2,0,1],[1,2,0],[0,3,0],[1,0,2],[1,2,0],[3,0],[0,3],[0,3],[3,0],[1,2],[0,1,2],[3,0],[2,1] +00399fa010_940422.tif,[3,0],[2,1],[2,0,0,0,0,0,1],[0,3],[1,2],[0,3],[0,3,0],[1,2,0],[2,1,0],[2,1,0],[1,2,0],[2,0,1],[2,1,0],[2,1],[1,0,2],[2,0,0,1],[3,0],[3,0,0],[2,0,1],[1,2,0],[3,0],[0,3],[3,0],[1,1,1],[3,0,0,0],[2,1],[2,1],[1,2,0,0],[0,3],[0,1,1],[2,1,0,0],[2,1,0],[3,0,0,0,0],[2,0,1],[3,0,0],[0,3,0],[0,3,0],[2,0,1],[3,0,0],[1,2],[2,1],[0,3],[3,0],[2,1],[1,0,2],[3,0],[3,0] +00400fa010_940422.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[3,0],[0,3],[3,0],[0,3,0],[2,1,0],[2,0,1],[1,1,1],[0,2,1],[1,1,1],[2,0,1],[1,2],[3,0,0],[1,0,2,0],[2,1],[2,0,1],[2,0,1],[1,1,1],[3,0],[0,3],[2,1],[1,2,0],[3,0,0,0],[3,0],[1,2],[0,1,0,2],[0,3],[0,3,0],[2,1,0,0],[2,0,0],[3,0,0,0,0],[3,0,0],[3,0,0],[0,2,1],[1,2,0],[1,0,2],[1,2,0],[3,0],[3,0],[1,2],[0,3],[0,3],[1,1,1],[3,0],[3,0] +00401fa010_940422.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[2,1,0],[1,0,2],[2,0,1],[1,1,1],[0,3,0],[3,0,0],[0,0,3],[2,1],[2,1,0],[1,2,0,0],[2,1],[3,0,0],[2,0,1],[2,0,1],[3,0],[0,3],[3,0],[0,3,0],[3,0,0,0],[3,0],[2,1],[1,2,0,0],[3,0],[0,2,1],[3,0,0,0],[2,0,1],[3,0,0,0,0],[1,2,0],[1,2,0],[0,2,1],[0,2,1],[1,0,2],[1,1,1],[3,0],[3,0],[0,3],[3,0],[0,3],[1,1,1],[3,0],[3,0] +00402fa010_940422.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[1,2],[1,2],[1,2],[3,0,0],[1,0,2],[2,0,1],[2,1,0],[0,3,0],[2,0,1],[0,1,2],[2,1],[3,0,0],[1,1,0,1],[2,1],[2,1,0],[3,0,0],[2,0,1],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[3,0],[1,2],[0,1,0,2],[2,1],[1,1,0],[2,1,0,0],[2,1,0],[3,0,0,0,0],[2,0,1],[2,0,1],[2,1,0],[0,3,0],[3,0,0],[0,3,0],[2,1],[1,2],[2,1],[1,2],[0,3],[0,2,1],[3,0],[3,0] +00403fb010_940422.tif,[2,1],[0,3],[2,1,0,0,0,0,0],[1,2],[1,2],[1,2],[2,1,0],[1,0,2],[2,1,0],[3,0,0],[1,2,0],[3,0,0],[1,1,1],[2,1],[2,1,0],[2,0,0,1],[0,3],[1,0,2],[3,0,0],[3,0,0],[3,0],[0,2],[2,1],[1,2,0],[3,0,0,0],[3,0],[1,2],[1,2,0,0],[1,2],[1,0,2],[0,3,0,0],[1,1,1],[3,0,0,0,0],[2,0,1],[3,0,0],[1,2,0],[2,1,0],[1,1,1],[1,2,0],[3,0],[2,1],[0,3],[1,2],[0,3],[0,2,1],[2,1],[3,0] +00404fb010_940422.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[0,3],[0,3],[2,1],[0,2,1],[1,2,0],[2,0,1],[0,2,1],[0,2,1],[2,0,1],[2,0,1],[0,3],[1,1,1],[1,0,0,2],[2,1],[3,0,0],[2,1,0],[2,1,0],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[2,1],[0,1,1,1],[1,2],[2,1,0],[0,2,1,0],[1,1,1],[3,0,0,0,0],[2,0,1],[2,1,0],[1,1,1],[0,2,1],[1,1,1],[1,1,1],[1,2],[3,0],[1,2],[3,0],[0,3],[0,3,0],[3,0],[2,1] +00405fa010_940422.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[2,1],[0,3],[1,2],[3,0,0],[1,0,2],[0,3,0],[3,0,0],[1,2,0],[0,0,3],[2,0,1],[3,0],[2,1,0],[3,0,0,0],[2,1],[3,0,0],[2,0,1],[2,1,0],[3,0],[1,2],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,1],[0,0,3,0],[1,2],[0,3,0],[3,0,0,0],[2,1,0],[3,0,0,0,0],[3,0,0],[1,0,2],[0,1,2],[3,0,0],[1,2,0],[0,3,0],[2,1],[2,1],[2,1],[1,2],[3,0],[0,2,1],[3,0],[1,2] +00406fb010_940422.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[2,1],[1,2],[1,2],[3,0,0],[2,1,0],[0,3,0],[1,2,0],[0,1,2],[1,1,1],[1,1,1],[2,1],[1,1,1],[1,2,0,0],[2,1],[2,0,1],[2,1,0],[2,1,0],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[3,0],[1,0,2,0],[1,2],[0,2,1],[3,0,0,0],[3,0,0],[3,0,0,0,0],[2,0,1],[0,1,2],[0,1,2],[1,2,0],[2,0,1],[0,0,3],[3,0],[2,1],[0,3],[2,1],[2,1],[0,1,2],[3,0],[3,0] +00407fb010_940422.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[2,1],[0,3],[0,3],[1,2,0],[2,1,0],[2,1,0],[2,1,0],[0,3,0],[2,0,1],[1,0,2],[1,2],[0,2,1],[0,2,0,1],[1,2],[2,1,0],[3,0,0],[3,0,0],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[2,1],[3,0],[1,2,0,0],[3,0],[1,1,1],[0,3,0,0],[1,0,2],[3,0,0,0,0],[2,1,0],[3,0,0],[0,3,0],[0,2,1],[3,0,0],[2,1,0],[3,0],[0,3],[0,3],[2,1],[0,3],[0,3,0],[1,2],[3,0] +00408fa010_940422.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[0,3,0],[2,1,0],[3,0,0],[3,0,0],[0,2,1],[3,0,0],[1,1,1],[1,2],[2,1,0],[0,0,1,2],[0,3],[2,0,1],[1,1,1],[0,3,0],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[3,0],[3,0],[0,2,1,0],[1,2],[2,1,0],[0,1,2,0],[2,0,1],[3,0,0,0,0],[2,0,1],[1,2,0],[1,2,0],[0,3,0],[1,0,2],[1,2,0],[3,0],[0,3],[1,2],[0,3],[0,3],[1,2,0],[3,0],[2,1] +00409fa010_940422.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[2,1],[2,1,0],[2,1,0],[1,2,0],[1,1,1],[0,3,0],[3,0,0],[2,1,0],[0,3],[0,3,0],[3,0,0,0],[2,1],[2,0,1],[2,0,1],[2,0,1],[3,0],[0,3],[3,0],[2,1,0],[2,0,1,0],[3,0],[2,1],[2,1,0,0],[0,3],[0,0,3],[3,0,0,0],[1,2,0],[3,0,0,0,0],[0,0,3],[0,0,3],[2,0,1],[0,2,1],[3,0,0],[1,2,0],[1,2],[2,1],[0,3],[1,2],[3,0],[0,1,2],[3,0],[2,1] +00410fb010_940422.tif,[0,3],[0,3],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[3,0,0],[1,1,1],[1,1,1],[3,0,0],[1,2,0],[0,1,2],[3,0,0],[3,0],[1,1,1],[2,0,0,1],[3,0],[2,0,1],[1,1,1],[3,0,0],[3,0],[0,3],[3,0],[3,0,0],[2,1,0,0],[3,0],[2,1],[1,2,0,0],[1,2],[0,2,1],[3,0,0,0],[2,1,0],[2,0,1,0,0],[2,0,1],[3,0,0],[1,0,2],[0,1,2],[1,0,2],[0,1,2],[0,3],[2,1],[0,3],[1,2],[3,0],[0,0,3],[3,0],[3,0] +00411fb010_940422.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[2,0,1],[3,0,0],[2,1,0],[1,2,0],[0,3,0],[2,1,0],[0,1,2],[3,0],[2,1,0],[3,0,0,0],[1,2],[3,0,0],[1,0,2],[3,0,0],[3,0],[0,3],[3,0],[0,3,0],[3,0,0,0],[3,0],[2,1],[2,1,0,0],[1,2],[2,0,1],[0,3,0,0],[3,0,0],[3,0,0,0,0],[3,0,0],[1,0,2],[3,0,0],[2,1,0],[2,1,0],[2,1,0],[2,1],[1,2],[0,3],[3,0],[2,1],[0,0,3],[3,0],[3,0] +00412fa010_940422.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[0,3],[1,2],[0,3],[0,1,2],[2,0,1],[0,0,3],[0,0,3],[1,2,0],[2,0,1],[0,1,2],[1,2],[0,1,2],[1,1,1,0],[0,3],[2,0,1],[0,2,1],[1,1,1],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[3,0],[3,0],[1,1,0,0],[0,3],[0,2,1],[2,1,0,0],[1,2,0],[3,0,0,0,0],[2,0,1],[2,0,1],[0,3,0],[2,1,0],[3,0,0],[1,2,0],[1,2],[1,2],[0,3],[3,0],[3,0],[0,2,1],[3,0],[3,0] +00413fa010_940422.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[2,0,1],[1,2,0],[2,0,1],[1,1,1],[1,2,0],[1,1,1],[0,1,2],[2,1],[3,0,0],[3,0,0,0],[1,2],[3,0,0],[2,0,1],[1,1,1],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,1],[0,3,0,0],[0,3],[0,2,1],[3,0,0,0],[2,0,1],[3,0,0,0,0],[3,0,0],[3,0,0],[0,3,0],[0,1,2],[0,0,3],[1,2,0],[1,2],[1,2],[1,2],[0,3],[3,0],[0,1,2],[3,0],[3,0] +00414fa010_940422.tif,[1,2],[1,2],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[0,3,0],[2,1,0],[1,2,0],[0,3,0],[0,3,0],[2,1,0],[1,1,1],[1,2],[1,1,1],[2,0,0,1],[1,2],[0,0,3],[1,0,2],[1,1,1],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,1],[0,1,0,2],[2,1],[0,3,0],[0,3,0,0],[2,0,1],[3,0,0,0,0],[1,0,2],[2,0,1],[0,3,0],[1,2,0],[2,1,0],[0,3,0],[3,0],[2,1],[0,3],[2,1],[0,3],[0,0,3],[3,0],[2,1] +00415fb010_940422.tif,[3,0],[2,1],[0,0,2,1,0,0,0],[0,3],[1,2],[0,3],[2,0,1],[3,0,0],[1,0,2],[0,2,1],[0,0,3],[3,0,0],[2,0,1],[3,0],[2,1,0],[1,2,0,0],[3,0],[2,0,1],[0,2,1],[2,1,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[2,1],[2,1,0,0],[0,3],[0,1,1],[3,0,0,0],[2,1,0],[0,3,0,0,0],[1,0,2],[1,2,0],[1,2,0],[0,3,0],[2,0,1],[0,3,0],[3,0],[1,2],[0,3],[1,2],[3,0],[1,2,0],[3,0],[1,2] +00416fa010_940422.tif,[0,3],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[3,0,0],[3,0,0],[0,3,0],[3,0,0],[1,2,0],[1,0,2],[0,2,1],[0,3],[1,2,0],[1,1,0,1],[3,0],[3,0,0],[1,0,2],[2,1,0],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[3,0],[2,1,0,0],[2,1],[0,2,0],[2,1,0,0],[1,2,0],[3,0,0,0,0],[2,0,1],[2,0,1],[0,2,1],[0,1,2],[2,0,1],[0,3,0],[2,1],[2,1],[0,3],[1,2],[3,0],[0,2,1],[3,0],[2,1] +00417fb010_940422.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[0,3],[0,3],[1,2],[1,0,2],[3,0,0],[1,0,2],[0,3,0],[0,3,0],[2,1,0],[1,0,2],[0,3],[2,1,0],[1,1,0,1],[2,1],[2,0,1],[2,1,0],[3,0,0],[3,0],[0,3],[2,1],[0,3,0],[3,0,0,0],[3,0],[3,0],[1,1,0,0],[0,3],[1,2,0],[1,2,0,0],[2,1,0],[3,0,0,0,0],[3,0,0],[3,0,0],[1,2,0],[2,1,0],[2,1,0],[1,2,0],[2,0],[0,3],[1,2],[0,3],[0,3],[0,3,0],[3,0],[2,1] +00418fa010_940422.tif,[1,2],[1,2],[3,0,0,0,0,0,0],[0,3],[2,1],[1,2],[2,1,0],[2,0,1],[2,1,0],[2,1,0],[0,1,2],[3,0,0],[2,0,1],[2,1],[2,1,0],[3,0,0,0],[0,3],[2,0,1],[3,0,0],[2,1,0],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[2,0],[2,1],[3,0,0,0],[2,1],[0,3,0],[3,0,0,0],[2,0,1],[3,0,0,0,0],[0,0,3],[3,0,0],[0,0,3],[1,2,0],[3,0,0],[0,3,0],[3,0],[2,1],[0,3],[1,2],[0,3],[1,2,0],[3,0],[3,0] +00419fa010_940422.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[2,1],[1,2],[0,3],[3,0,0],[2,1,0],[1,2,0],[1,1,1],[0,2,1],[0,2,1],[0,0,3],[1,2],[1,1,1],[0,0,0,3],[1,2],[3,0,0],[1,1,1],[2,0,1],[3,0],[0,3],[3,0],[0,2,1],[3,0,0,0],[3,0],[2,1],[1,2,0,0],[0,3],[0,3,0],[3,0,0,0],[1,2,0],[3,0,0,0,0],[3,0,0],[3,0,0],[2,1,0],[1,2,0],[3,0,0],[0,2,1],[2,1],[0,3],[1,2],[3,0],[3,0],[0,1,2],[3,0],[2,1] +00420fa010_940422.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[2,0,1],[1,1,1],[1,2,0],[2,1,0],[0,3,0],[1,0,2],[0,1,2],[0,3],[2,1,0],[3,0,0,0],[0,3],[3,0,0],[1,0,2],[1,1,1],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[3,0],[3,0],[1,1,0,1],[0,3],[0,3,0],[3,0,0,0],[2,1,0],[3,0,0,0,0],[1,0,2],[3,0,0],[2,1,0],[0,2,1],[3,0,0],[2,1,0],[3,0],[1,2],[0,3],[3,0],[3,0],[1,1,1],[3,0],[2,1] +00421fa010_940422.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[0,3],[1,1],[0,3],[2,0,1],[1,1,1],[1,2,0],[1,2,0],[0,2,1],[2,0,1],[1,1,1],[2,1],[2,0,1],[2,0,0,1],[0,3],[3,0,0],[2,0,1],[2,0,1],[3,0],[0,3],[3,0],[0,2,1],[3,0,0,0],[3,0],[2,1],[0,2,0,1],[3,0],[0,1,2],[3,0,0,0],[2,1,0],[3,0,0,0,0],[3,0,0],[2,0,1],[2,1,0],[0,2,1],[2,0,1],[1,2,0],[0,3],[3,0],[0,3],[3,0],[2,1],[1,2,0],[3,0],[1,2] +00422fa010_940422.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[1,2],[3,0,0],[2,1,0],[3,0,0],[2,1,0],[0,3,0],[2,0,1],[2,0,1],[2,1],[0,1,2],[2,1,0,0],[3,0],[3,0,0],[2,0,1],[2,0,1],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[1,1,1,0],[3,0],[0,2,0],[3,0,0,0],[2,1,0],[3,0,0,0,0],[2,1,0],[2,0,1],[0,1,2],[2,0,1],[2,1,0],[1,2,0],[2,1],[0,3],[0,3],[2,1],[3,0],[1,2,0],[3,0],[0,3] +00423fa010_940422.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[3,0,0],[2,1,0],[1,0,2],[1,2,0],[1,2,0],[1,0,2],[1,0,2],[0,3],[2,0,1],[2,1,0,0],[0,3],[3,0,0],[0,1,2],[2,0,1],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[1,2],[0,3],[2,0,0,1],[2,1],[1,2,0],[3,0,0,0],[1,2,0],[3,0,0,0,0],[0,0,3],[2,0,1],[3,0,0],[0,2,1],[2,1,0],[3,0,0],[2,1],[3,0],[0,3],[3,0],[3,0],[0,3,0],[3,0],[3,0] +00424fa010_940422.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[1,2],[3,0,0],[1,2,0],[1,0,2],[0,2,1],[0,2,1],[2,1,0],[3,0,0],[2,1],[2,0,1],[3,0,0,0],[0,3],[2,0,1],[1,0,2],[2,1,0],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[1,1,0,1],[1,2],[0,3,0],[2,0,1,0],[2,1,0],[3,0,0,0,0],[2,0,1],[1,0,2],[0,3,0],[0,1,2],[1,2,0],[1,2,0],[3,0],[2,1],[0,3],[2,1],[2,1],[1,2,0],[3,0],[3,0] +00425fa010_940422.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[0,3],[2,1],[1,2],[1,2,0],[2,0,1],[2,1,0],[2,1,0],[0,2,1],[1,0,2],[1,0,2],[1,2],[3,0,0],[1,0,1,1],[2,1],[3,0,0],[2,0,1],[0,1,2],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[3,0],[3,0],[0,1,0,2],[2,1],[0,3,0],[3,0,0,0],[0,0,3],[3,0,0,0,0],[1,0,2],[3,0,0],[0,3,0],[1,1,1],[2,0,1],[0,2,1],[3,0],[0,3],[3,0],[0,3],[0,3],[1,1,1],[3,0],[2,1] +00426fa010_940422.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[2,1,0],[2,1,0],[0,3,0],[2,0,1],[1,2,0],[2,0,1],[0,1,2],[2,1],[2,1,0],[1,2,0,0],[2,1],[2,0,1],[3,0,0],[2,0,1],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[0,3],[2,1],[3,0,0,0],[0,3],[0,3,0],[3,0,0,0],[2,1,0],[3,0,0,0,0],[2,0,1],[2,0,0],[1,2,0],[0,2,1],[3,0,0],[1,2,0],[1,2],[0,3],[0,3],[3,0],[2,1],[1,1,1],[3,0],[2,1] +00427fa010_940422.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[1,0,2],[1,2,0],[3,0,0],[0,3,0],[1,2,0],[1,1,1],[1,2,0],[2,1],[2,0,1],[3,0,0,0],[2,1],[3,0,0],[2,1,0],[2,0,1],[3,0],[0,3],[3,0],[0,1,2],[2,0,1,0],[3,0],[3,0],[1,1,0,1],[0,3],[0,1,2],[3,0,0,0],[1,1,1],[3,0,0,0,0],[3,0,0],[1,1,1],[0,2,1],[0,0,3],[3,0,0],[3,0,0],[1,2],[2,1],[0,3],[3,0],[3,0],[0,0,3],[3,0],[3,0] +00428fa010_940422.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[1,2],[1,2],[0,3],[3,0,0],[2,0,1],[2,0,1],[3,0,0],[0,3,0],[0,2,1],[1,0,2],[0,3],[1,2,0],[1,1,0,1],[0,3],[3,0,0],[1,1,1],[2,0,1],[3,0],[1,2],[3,0],[1,2,0],[3,0,0,0],[3,0],[2,1],[2,1,0,0],[1,2],[0,2,1],[3,0,0,0],[3,0,0],[3,0,0,0,0],[2,0,1],[1,2,0],[1,2,0],[0,1,2],[0,1,2],[3,0,0],[2,1],[2,1],[0,3],[3,0],[3,0],[1,0,2],[3,0],[2,1] +00429fa011_940422.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[1,0,2],[2,1,0],[2,1,0],[1,2,0],[0,3,0],[1,0,2],[3,0,0],[1,2],[1,2,0],[0,2,0,1],[1,2],[3,0,0],[1,2,0],[2,0,1],[2,1],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[3,0],[1,1,0,1],[0,3],[3,0,0],[0,3,0,0],[3,0,0],[3,0,0,0,0],[2,0,1],[2,0,1],[0,3,0],[0,3,0],[3,0,0],[2,1,0],[3,0],[2,1],[0,3],[2,1],[0,3],[0,1,2],[3,0],[3,0] +00430fa010_940422.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[1,2],[1,2],[2,1],[1,2,0],[3,0,0],[3,0,0],[1,2,0],[1,2,0],[1,1,1],[1,1,1],[3,0],[3,0,0],[2,0,0,1],[1,2],[3,0,0],[0,0,3],[0,0,2],[3,0],[0,3],[3,0],[2,0,0],[3,0,0,0],[3,0],[2,1],[0,2,1,0],[1,2],[1,2,0],[0,2,1,0],[2,1,0],[3,0,0,0,0],[1,0,2],[3,0,0],[2,1,0],[0,2,1],[1,0,2],[3,0,0],[2,1],[0,3],[0,3],[3,0],[1,2],[2,1,0],[3,0],[3,0] +00431fa010_940422.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[1,1,1],[1,2,0],[2,0,1],[0,3,0],[1,2,0],[1,1,1],[0,2,1],[2,1],[2,0,1],[2,1,0,0],[0,3],[2,1,0],[3,0,0],[2,0,1],[3,0],[0,3],[3,0],[0,3,0],[3,0,0,0],[3,0],[3,0],[0,3,0,0],[2,1],[0,2,1],[3,0,0,0],[1,0,2],[3,0,0,0,0],[3,0,0],[2,1,0],[2,1,0],[0,1,2],[1,2,0],[3,0,0],[2,1],[2,1],[1,2],[2,1],[1,2],[3,0,0],[3,0],[2,1] +00432fb010_940422.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[0,3],[1,2],[0,3],[0,0,3],[2,0,1],[3,0,0],[0,2,1],[0,0,3],[1,1,1],[0,0,3],[0,3],[2,1,0],[2,0,0,1],[0,3],[3,0,0],[0,3,0],[1,1,1],[3,0],[0,3],[3,0],[0,3,0],[3,0,0,0],[1,2],[3,0],[1,1,0,1],[1,2],[0,3,0],[3,0,0,0],[3,0,0],[3,0,0,0,0],[1,0,2],[2,1,0],[1,2,0],[1,2,0],[2,1,0],[3,0,0],[2,1],[3,0],[0,3],[3,0],[1,2],[0,0,3],[3,0],[3,0] +00433fb010_940422.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[2,1],[1,1,1],[0,1,2],[1,1,1],[2,1,0],[0,3,0],[1,2,0],[1,1,1],[2,1],[2,1,0],[0,1,2,0],[2,1],[3,0,0],[1,0,2],[1,0,2],[3,0],[0,3],[3,0],[3,0,0],[2,0,1,0],[3,0],[2,1],[1,1,1,0],[1,2],[2,0,1],[0,2,1,0],[1,0,2],[3,0,0,0,0],[2,0,1],[2,0,1],[1,1,1],[0,1,2],[2,0,1],[1,1,1],[3,0],[0,3],[0,3],[0,3],[0,3],[0,0,3],[3,0],[3,0] +00434fa010_940422.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[3,0],[0,3],[1,2],[1,1,1],[1,2,0],[3,0,0],[2,0,1],[0,1,2],[1,0,2],[2,0,1],[1,2],[2,1,0],[1,0,1,1],[2,1],[2,0,1],[3,0,0],[1,2,0],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[2,1],[2,1],[0,2,0,1],[2,1],[0,3,0],[2,1,0,0],[3,0,0],[3,0,0,0,0],[2,0,1],[3,0,0],[2,1,0],[1,2,0],[2,0,1],[1,2,0],[3,0],[1,2],[3,0],[0,3],[0,3],[0,2,1],[3,0],[2,1] +00435fa010_940422.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[1,2],[1,2],[0,3],[3,0,0],[2,1,0],[3,0,0],[2,1,0],[0,2,1],[0,3,0],[2,1,0],[2,1],[0,3,0],[1,1,0,0],[2,1],[3,0,0],[2,1,0],[2,0,1],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[2,1],[3,0],[1,2,0,0],[3,0],[1,1,1],[2,1,0,0],[1,2,0],[3,0,0,0,0],[2,0,1],[3,0,0],[1,2,0],[0,3,0],[2,1,0],[0,3,0],[3,0],[3,0],[3,0],[2,1],[3,0],[0,2,1],[3,0],[0,3] +00436fa011_940422.tif,[1,2],[3,0],[2,1,0,0,0,0,0],[1,2],[0,3],[1,2],[3,0,0],[1,2,0],[3,0,0],[0,3,0],[1,2,0],[3,0,0],[2,0,1],[3,0],[2,1,0],[2,1,0,0],[2,1],[3,0,0],[2,0,0],[3,0,0],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[1,1,0,1],[0,3],[0,3,0],[3,0,0,0],[1,2,0],[3,0,0,0,0],[1,0,2],[1,0,2],[0,2,1],[1,2,0],[2,0,1],[2,1,0],[2,1],[1,2],[1,2],[1,2],[3,0],[0,1,2],[3,0],[3,0] +00437fa010_940422.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[1,2],[1,2],[0,3],[2,1,0],[2,1,0],[2,1,0],[2,0,1],[0,2,1],[2,1,0],[2,0,1],[0,3],[1,2,0],[2,0,0,1],[0,3],[2,0,1],[1,0,2],[1,1,1],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[3,0],[3,0],[0,2,0,1],[1,2],[2,1,0],[0,3,0,0],[2,0,1],[3,0,0,0,0],[2,0,1],[0,1,2],[0,2,1],[0,3,0],[1,2,0],[1,2,0],[3,0],[1,2],[0,3],[2,1],[0,3],[0,2,1],[3,0],[2,1] +00438fa010_940422.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[1,2],[2,1],[2,1],[2,0,1],[1,0,2],[0,3,0],[3,0,0],[0,3,0],[3,0,0],[1,1,1],[3,0],[2,1,0],[0,3,0,0],[1,2],[2,1,0],[1,2,0],[1,0,2],[3,0],[1,2],[3,0],[0,3,0],[3,0,0,0],[3,0],[2,1],[2,0,0,1],[0,3],[1,2,0],[3,0,0,0],[1,2,0],[3,0,0,0,0],[2,0,1],[0,0,3],[1,2,0],[1,1,1],[1,2,0],[3,0,0],[3,0],[2,1],[2,1],[0,3],[2,1],[0,1,2],[3,0],[2,1] +00439fa010_940422.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[2,1],[0,3],[0,3],[3,0,0],[3,0,0],[3,0,0],[3,0,0],[0,3,0],[1,1,1],[0,2,1],[2,1],[1,1,1],[2,1,0,0],[2,1],[3,0,0],[2,0,1],[2,1,0],[3,0],[0,3],[3,0],[0,2,1],[3,0,0,0],[3,0],[2,1],[1,2,0,0],[1,2],[2,1,0],[0,0,2,1],[2,0,1],[3,0,0,0,0],[2,1,0],[3,0,0],[3,0,0],[0,1,2],[1,1,1],[2,1,0],[0,3],[1,2],[0,3],[3,0],[0,3],[1,1,1],[3,0],[2,1] +00440fa010_940422.tif,[1,2],[1,2],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[1,1,1],[1,1,1],[2,0,1],[0,3,0],[0,2,1],[1,0,2],[2,0,1],[2,1],[3,0,0],[0,1,1,1],[1,2],[3,0,0],[2,1,0],[3,0,0],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,1],[1,2,0,0],[0,3],[1,2,0],[0,2,1,0],[3,0,0],[3,0,0,0,0],[2,0,1],[3,0,0],[0,1,2],[0,1,1],[1,0,2],[0,2,1],[3,0],[1,2],[0,3],[0,3],[0,3],[1,2,0],[3,0],[3,0] +00441fb010_940422.tif,[0,3],[1,2],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[1,1,1],[3,0,0],[1,0,2],[1,2,0],[1,0,2],[0,0,3],[1,1,1],[2,1],[1,2,0],[0,2,0,1],[2,1],[2,0,1],[2,0,1],[2,1,0],[3,0],[0,3],[3,0],[1,0,2],[3,0,0,0],[3,0],[1,2],[2,0,0,1],[0,3],[0,2,0],[3,0,0,0],[0,3,0],[3,0,0,0,0],[3,0,0],[3,0,0],[3,0,0],[0,2,1],[1,2,0],[2,0,1],[2,1],[0,3],[1,2],[0,3],[2,1],[0,0,3],[3,0],[3,0] +00442fa011_940422.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[2,1],[0,2,1],[2,0,1],[3,0,0],[1,1,1],[0,1,2],[2,0,1],[3,0,0],[2,1],[1,2,0],[0,1,2,0],[2,1],[3,0,0],[3,0,0],[3,0,0],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[3,0],[1,2],[1,1,1,0],[0,3],[2,1,0],[0,0,2,1],[0,0,3],[3,0,0,0,0],[2,0,1],[2,1,0],[0,0,3],[0,3,0],[0,0,3],[0,1,2],[3,0],[1,2],[2,1],[0,3],[0,3],[1,2,0],[3,0],[3,0] +00443fa010_940422.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[2,1],[0,3],[0,3],[0,3,0],[2,1,0],[2,1,0],[2,1,0],[0,1,2],[2,0,1],[3,0,0],[1,2],[2,0,1],[3,0,0,0],[1,2],[2,0,1],[1,0,2],[2,1,0],[3,0],[0,2],[3,0],[0,3,0],[3,0,0,0],[3,0],[2,1],[2,1,0,0],[1,2],[2,1,0],[0,3,0,0],[2,0,1],[3,0,0,0,0],[2,0,1],[3,0,0],[0,0,3],[2,1,0],[1,1,1],[0,0,3],[2,1],[0,3],[0,3],[3,0],[0,3],[0,2,1],[3,0],[3,0] +00444fa010_940422.tif,[2,1],[0,3],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[1,1,1],[1,2,0],[3,0,0],[0,3,0],[0,3,0],[2,0,1],[2,0,1],[2,1],[2,1,0],[1,1,1,0],[3,0],[2,1,0],[2,0,1],[2,1,0],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[2,1],[0,2,0,1],[1,2],[2,1,0],[0,1,2,0],[2,0,1],[3,0,0,0,0],[3,0,0],[2,1,0],[3,0,0],[1,1,1],[2,1,0],[1,2,0],[2,1],[1,1],[1,2],[2,1],[1,2],[2,1,0],[3,0],[3,0] +00445fa010_940422.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[1,2],[1,2],[2,1],[0,3,0],[3,0,0],[1,0,2],[0,2,1],[0,3,0],[1,0,2],[0,2,1],[2,1],[2,1,0],[2,0,0,1],[1,2],[2,0,1],[1,1,1],[2,0,1],[3,0],[0,3],[3,0],[0,2,1],[3,0,0,0],[2,1],[3,0],[1,1,1,0],[1,2],[3,0,0],[0,2,1,0],[1,1,1],[3,0,0,0,0],[2,1,0],[3,0,0],[1,1,1],[1,1,1],[1,0,2],[0,2,1],[2,1],[1,2],[0,3],[0,3],[0,3],[0,0,2],[3,0],[3,0] +00446fa010_940422.tif,[2,1],[0,3],[2,0,1,0,0,0,0],[2,1],[0,3],[0,3],[1,2,0],[0,2,1],[2,0,1],[0,1,2],[0,3,0],[1,1,1],[3,0,0],[0,3],[2,0,1],[2,1,0,0],[0,3],[1,0,2],[0,1,2],[2,0,1],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[0,3],[2,1],[3,0,0,0],[2,1],[0,1,2],[1,1,1,0],[0,0,3],[3,0,0,0,0],[2,0,1],[2,0,0],[0,0,3],[1,1,1],[1,0,2],[0,0,2],[0,3],[3,0],[0,3],[3,0],[1,2],[0,0,2],[3,0],[3,0] +00447fb010_940422.tif,[2,1],[0,3],[3,0,0,0,0,0,0],[0,3],[0,3],[1,2],[0,3,0],[3,0,0],[2,1,0],[3,0,0],[0,2,1],[1,1,1],[1,0,2],[2,1],[3,0,0],[2,1,0,0],[3,0],[3,0,0],[2,0,1],[2,0,1],[3,0],[0,3],[3,0],[0,3,0],[3,0,0,0],[2,1],[1,2],[1,1,1,0],[1,2],[2,1,0],[0,0,2,1],[0,0,3],[3,0,0,0,0],[1,1,1],[3,0,0],[2,1,0],[1,2,0],[0,0,3],[0,3,0],[3,0],[0,3],[1,2],[0,3],[0,3],[0,0,3],[3,0],[1,2] +00448fa010_940422.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[1,2,0],[0,1,2],[1,2,0],[0,2,1],[0,2,1],[2,1,0],[1,2,0],[1,2],[3,0,0],[1,1,1,0],[2,1],[3,0,0],[3,0,0],[2,0,1],[2,1],[0,3],[3,0],[2,1,0],[3,0,0,0],[0,3],[0,3],[0,2,1,0],[0,3],[3,0,0],[0,0,2,1],[2,0,1],[3,0,0,0,0],[0,0,3],[3,0,0],[2,1,0],[0,1,2],[3,0,0],[0,3,0],[3,0],[0,3],[1,2],[1,2],[0,3],[0,2,1],[3,0],[3,0] +00449fa010_940422.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[0,3],[1,2],[1,2],[2,1,0],[1,1,1],[1,2,0],[3,0,0],[1,2,0],[3,0,0],[3,0,0],[3,0],[2,1,0],[1,2,0,0],[3,0],[2,0,1],[3,0,0],[1,2,0],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[2,1],[3,0,0,0],[2,1],[0,2,0],[2,1,0,0],[2,1,0],[3,0,0,0,0],[2,0,1],[2,0,1],[0,1,2],[0,2,1],[0,0,3],[0,1,2],[3,0],[1,2],[0,3],[1,2],[2,1],[3,0,0],[2,1],[3,0] +00450fa011_940422.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[1,2],[1,2],[3,0],[0,3,0],[0,2,1],[2,1,0],[3,0,0],[1,2,0],[0,3,0],[2,0,1],[0,3],[1,1,1],[2,0,1,0],[0,3],[3,0,0],[2,1,0],[2,1,0],[3,0],[0,3],[2,1],[2,1,0],[2,0,0,0],[1,2],[2,1],[2,1,0,0],[2,1],[0,3,0],[2,1,0,0],[1,0,2],[3,0,0,0,0],[2,0,1],[3,0,0],[0,1,2],[1,2,0],[2,1,0],[0,3,0],[2,1],[1,2],[0,3],[2,1],[0,3],[0,1,2],[3,0],[1,1] +00451fa010_940422.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[2,1],[0,3],[2,1],[2,0,1],[2,0,1],[2,1,0],[2,1,0],[0,2,1],[0,0,3],[1,1,1],[1,2],[3,0,0],[1,1,0,1],[1,2],[3,0,0],[1,0,2],[2,0,1],[3,0],[0,3],[3,0],[0,2,1],[3,0,0,0],[3,0],[0,3],[1,2,0,0],[2,1],[3,0,0],[0,2,1,0],[2,0,1],[3,0,0,0,0],[2,0,1],[1,0,2],[2,1,0],[0,1,2],[0,1,2],[1,2,0],[2,1],[2,1],[1,2],[0,3],[0,3],[0,2,1],[3,0],[3,0] +00452fa010_940422.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[3,0,0],[0,3,0],[3,0,0],[1,2,0],[0,3,0],[1,0,2],[2,1,0],[0,3],[2,1,0],[1,0,1,1],[2,1],[3,0,0],[2,1,0],[3,0,0],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[2,1],[1,2,0,0],[0,3],[0,3,0],[3,0,0,0],[1,2,0],[3,0,0,0,0],[2,0,1],[2,0,1],[0,2,1],[0,3,0],[3,0,0],[0,3,0],[1,2],[2,1],[1,2],[3,0],[3,0],[2,1,0],[3,0],[2,1] +00453fb010_940422.tif,[3,0],[3,0],[1,0,2,0,0,0,0],[2,1],[1,2],[2,1],[1,0,2],[0,3,0],[0,0,3],[0,1,2],[0,2,1],[3,0,0],[2,0,1],[2,1],[2,0,1],[2,1,0,0],[3,0],[1,1,1],[2,1,0],[1,1,1],[3,0],[3,0],[3,0],[2,0,1],[0,0,3,0],[2,1],[2,1],[0,0,3,0],[0,3],[0,2,1],[3,0,0,0],[2,0,1],[2,0,1,0,0],[1,0,2],[2,0,1],[0,1,2],[1,2,0],[1,0,2],[0,0,3],[3,0],[0,3],[3,0],[0,3],[3,0],[2,0,1],[3,0],[2,1] +00454fb010_940422.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[0,3,0],[2,1,0],[1,2,0],[2,1,0],[1,2,0],[2,0,1],[3,0,0],[2,1],[1,1,1],[0,1,2,0],[3,0],[3,0,0],[3,0,0],[2,0,1],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[2,1],[2,1],[3,0,0,0],[0,3],[0,1,2],[3,0,0,0],[2,0,1],[3,0,0,0,0],[0,1,2],[2,0,1],[0,2,1],[0,3,0],[2,1,0],[1,1,1],[3,0],[2,1],[1,2],[1,2],[0,3],[2,0,1],[3,0],[3,0] +00455fa010_940422.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[1,2],[1,2],[0,3],[3,0,0],[3,0,0],[1,1,1],[2,1,0],[0,2,1],[0,1,2],[1,2,0],[1,2],[2,0,1],[3,0,0,0],[3,0],[3,0,0],[3,0,0],[3,0,0],[2,1],[0,3],[3,0],[1,2,0],[3,0,0,0],[1,2],[3,0],[1,1,0,1],[1,2],[0,2,1],[3,0,0,0],[0,3,0],[3,0,0,0,0],[3,0,0],[1,0,2],[3,0,0],[3,0,0],[3,0,0],[3,0,0],[0,3],[2,1],[1,2],[2,1],[3,0],[0,1,2],[3,0],[3,0] +00456fa010_940422.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[2,0,1],[0,3,0],[0,3,0],[1,2,0],[0,2,1],[2,0,1],[2,0,1],[2,1],[1,1,1],[1,1,0,1],[0,3],[3,0,0],[1,1,1],[2,1,0],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[3,0],[1,1,0,1],[1,2],[0,3,0],[3,0,0,0],[1,2,0],[3,0,0,0,0],[3,0,0],[2,0,1],[2,1,0],[0,0,3],[2,0,1],[0,3,0],[0,3],[2,1],[0,3],[3,0],[2,1],[1,2,0],[3,0],[2,1] +00457fa010_940422.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[2,1,0],[2,1,0],[2,1,0],[2,1,0],[0,2,1],[3,0,0],[2,1,0],[3,0],[2,1,0],[2,0,0,1],[1,2],[3,0,0],[3,0,0],[1,0,2],[2,1],[0,3],[3,0],[1,2,0],[3,0,0,0],[2,1],[2,1],[1,0,0,2],[3,0],[0,2,1],[3,0,0,0],[0,3,0],[3,0,0,0,0],[2,0,1],[2,0,1],[3,0,0],[0,1,2],[0,0,3],[3,0,0],[3,0],[1,2],[1,2],[1,2],[1,2],[1,2,0],[2,1],[1,2] +00458fa011_940422.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[3,0,0],[0,3,0],[2,0,1],[2,1,0],[0,2,1],[1,0,2],[3,0,0],[2,1],[1,2,0],[0,0,2,1],[1,2],[3,0,0],[3,0,0],[3,0,0],[3,0],[0,3],[3,0],[3,0,0],[2,0,1,0],[0,3],[2,1],[0,3,0,0],[0,3],[2,1,0],[0,2,1,0],[2,0,1],[3,0,0,0,0],[2,0,1],[3,0,0],[1,2,0],[0,3,0],[0,0,3],[2,1,0],[2,1],[1,2],[1,2],[0,3],[0,3],[1,2,0],[3,0],[3,0] +00459fa010_940422.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[2,1],[1,2],[1,2],[0,3,0],[1,1,1],[2,1,0],[1,2,0],[0,3,0],[0,3,0],[2,0,1],[2,1],[3,0,0],[2,0,0,1],[3,0],[2,0,1],[3,0,0],[1,1,1],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[3,0],[0,3],[0,2,1,0],[1,2],[0,1,2],[2,1,0,0],[0,0,3],[3,0,0,0,0],[1,0,2],[3,0,0],[1,1,1],[0,3,0],[3,0,0],[0,3,0],[3,0],[1,2],[2,1],[0,3],[0,3],[1,2,0],[3,0],[2,1] +00460fa010_940422.tif,[3,0],[1,2],[2,0,1,0,0,0,0],[1,2],[0,3],[1,2],[1,2,0],[2,1,0],[1,2,0],[0,2,1],[0,1,2],[1,1,0],[1,0,2],[3,0],[0,3,0],[2,1,0,0],[2,1],[0,0,3],[0,0,3],[3,0,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[3,0],[0,3,0,0],[0,3],[0,3,0],[3,0,0,0],[2,1,0],[2,0,1,0,0],[0,2,1],[3,0,0],[0,3,0],[0,2,1],[2,1,0],[0,2,1],[2,1],[2,1],[1,2],[2,1],[3,0],[2,1,0],[3,0],[3,0] +00461fa010_940422.tif,[3,0],[2,1],[2,0,1,0,0,0,0],[0,3],[2,1],[1,2],[1,0,2],[1,1,1],[2,0,1],[1,0,2],[0,2,1],[1,1,1],[3,0,0],[2,1],[1,2,0],[3,0,0,0],[0,3],[3,0,0],[1,2,0],[1,2,0],[2,1],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,1],[1,2,0,0],[2,1],[0,3,0],[3,0,0,0],[0,3,0],[2,0,1,0,0],[3,0,0],[2,1,0],[1,2,0],[0,2,1],[2,1,0],[0,2,1],[2,1],[3,0],[1,2],[3,0],[3,0],[3,0,0],[2,1],[2,1] +00462fa010_940422.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[2,1],[0,3],[2,1],[3,0,0],[1,0,2],[1,2,0],[3,0,0],[1,1,1],[3,0,0],[0,1,2],[3,0],[3,0,0],[1,1,1,0],[3,0],[1,1,1],[3,0,0],[0,1,2],[3,0],[3,0],[3,0],[1,0,2],[2,0,1,0],[3,0],[1,2],[1,2,0,0],[0,3],[0,2,1],[3,0,0,0],[1,2,0],[3,0,0,0,0],[1,0,2],[0,0,3],[3,0,0],[2,1,0],[0,3,0],[0,3,0],[3,0],[1,2],[3,0],[1,2],[2,1],[0,1,2],[3,0],[3,0] +00463fb010_940422.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[2,1],[1,2],[0,3],[2,0,1],[2,0,1],[1,2,0],[0,3,0],[1,2,0],[1,2,0],[2,0,1],[1,2],[0,2,0],[2,1,0,0],[0,3],[3,0,0],[1,0,2],[3,0,0],[3,0],[3,0],[3,0],[1,1,1],[3,0,0,0],[3,0],[1,2],[0,2,0,1],[1,2],[0,3,0],[3,0,0,0],[3,0,0],[3,0,0,0,0],[3,0,0],[2,1,0],[0,1,2],[1,1,1],[0,3,0],[0,3,0],[3,0],[1,2],[1,2],[0,3],[0,3],[2,1,0],[3,0],[2,1] +00464fa010_940422.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[0,3],[1,2],[0,3],[3,0,0],[3,0,0],[1,2,0],[2,1,0],[0,2,1],[1,1,1],[2,0,1],[2,1],[1,1,1],[3,0,0,0],[0,3],[3,0,0],[3,0,0],[3,0,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[3,0],[2,0,1,0],[1,2],[0,1,1],[2,1,0,0],[1,2,0],[3,0,0,0,0],[1,0,2],[3,0,0],[0,3,0],[1,2,0],[1,0,2],[0,3,0],[3,0],[1,2],[1,2],[2,1],[0,3],[0,1,2],[3,0],[2,1] +00465fa010_940519.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[1,2],[1,2],[1,2],[1,1,1],[3,0,0],[3,0,0],[1,2,0],[0,3,0],[1,2,0],[0,1,2],[3,0],[3,0,0],[1,1,0,1],[3,0],[1,0,2],[1,0,2],[3,0,0],[0,3],[3,0],[3,0],[2,0,1],[3,0,0,0],[3,0],[2,1],[1,0,2,0],[3,0],[0,1,2],[3,0,0,0],[1,2,0],[3,0,0,0,0],[0,3,0],[3,0,0],[0,1,2],[1,2,0],[3,0,0],[0,1,2],[3,0],[1,2],[2,1],[0,3],[3,0],[0,1,2],[3,0],[2,1] +00466fb010_940519.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[2,1],[0,3],[3,0],[1,2,0],[1,2,0],[1,1,1],[1,1,1],[2,0,1],[2,0,1],[2,1,0],[1,2],[1,1,1],[3,0,0,0],[1,2],[3,0,0],[0,3,0],[0,3,0],[3,0],[1,2],[3,0],[3,0,0],[3,0,0,0],[2,1],[3,0],[0,1,0,2],[1,2],[1,2,0],[0,1,2,0],[1,1,1],[3,0,0,0,0],[1,1,1],[1,2,0],[2,1,0],[0,3,0],[2,0,1],[1,2,0],[3,0],[2,1],[1,2],[3,0],[2,1],[1,1,1],[3,0],[2,1] +00467fa010_940519.tif,[3,0],[2,1],[2,0,0,1,0,0,0],[0,3],[0,3],[1,2],[2,1,0],[2,1,0],[1,2,0],[2,0,1],[2,1,0],[0,0,3],[2,0,1],[3,0],[2,1,0],[2,1,0,0],[0,3],[3,0,0],[0,0,3],[1,0,2],[3,0],[3,0],[3,0],[0,1,2],[0,0,3,0],[0,3],[3,0],[0,1,1,1],[1,2],[0,3,0],[3,0,0,0],[3,0,0],[0,0,3,0,0],[1,0,2],[2,0,1],[0,0,3],[2,1,0],[1,2,0],[0,2,1],[2,1],[2,1],[1,2],[1,2],[3,0],[1,2,0],[3,0],[1,2] +00468fa010_940519.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[1,2],[1,2],[2,1],[1,0,2],[3,0,0],[2,1,0],[0,2,1],[2,1,0],[2,1,0],[1,0,2],[1,2],[1,1,1],[2,1,0,0],[1,2],[3,0,0],[3,0,0],[0,0,3],[2,1],[3,0],[2,1],[0,0,3],[0,0,3,0],[3,0],[2,1],[0,0,0,3],[0,3],[0,3,0],[3,0,0,0],[3,0,0],[2,0,1,0,0],[2,0,1],[1,2,0],[0,2,1],[1,1,1],[0,3,0],[1,2,0],[1,2],[1,2],[0,3],[3,0],[2,1],[1,0,2],[1,2],[3,0] +00469fa010_940519.tif,[2,1],[0,3],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[0,2,1],[2,0,1],[2,1,0],[2,1,0],[0,3,0],[2,1,0],[1,1,1],[2,1],[2,0,1],[1,2,0,0],[0,3],[3,0,0],[2,0,1],[2,0,1],[3,0],[0,3],[3,0],[0,3,0],[3,0,0,0],[3,0],[2,0],[0,3,0,0],[0,3],[0,2,1],[3,0,0,0],[2,0,1],[3,0,0,0,0],[3,0,0],[3,0,0],[2,1,0],[1,2,0],[2,1,0],[1,2,0],[2,1],[0,3],[1,2],[0,3],[0,3],[0,2,1],[3,0],[3,0] +00470fa010_940519.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[1,2],[1,2],[2,1],[0,2,1],[2,0,1],[3,0,0],[1,1,1],[2,1,0],[3,0,0],[1,0,2],[3,0],[3,0,0],[2,0,0,1],[3,0],[2,1,0],[2,0,1],[2,1,0],[2,1],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[1,2],[1,0,1,1],[0,3],[2,1,0],[0,1,2,0],[0,0,3],[1,0,2,0,0],[0,3,0],[0,2,1],[1,1,0],[0,3,0],[1,1,1],[1,2,0],[3,0],[1,2],[0,3],[0,3],[0,3],[1,1,1],[1,2],[3,0] +00471fb010_940519.tif,[2,1],[0,3],[3,0,0,0,0,0,0],[2,1],[0,3],[2,1],[1,2,0],[1,2,0],[3,0,0],[1,1,1],[1,2,0],[2,0,1],[1,0,2],[3,0],[2,1,0],[0,2,1,0],[2,1],[3,0,0],[3,0,0],[0,0,3],[1,2],[3,0],[3,0],[1,1,1],[0,0,2,1],[3,0],[1,2],[1,1,1,0],[0,3],[0,2,1],[3,0,0,0],[0,2,1],[3,0,0,0,0],[3,0,0],[1,1,1],[0,1,2],[1,1,1],[1,2,0],[0,2,1],[3,0],[1,2],[2,1],[0,3],[0,3],[0,1,2],[2,1],[2,1] +00472fa010_940519.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[2,1],[0,3],[1,2],[0,3,0],[0,2,1],[0,3,0],[2,1,0],[1,0,2],[1,0,2],[3,0,0],[2,1],[2,1,0],[3,0,0,0],[2,1],[2,1,0],[2,0,1],[3,0,0],[0,3],[0,3],[3,0],[2,0,1],[2,0,1,0],[3,0],[3,0],[1,0,2,0],[1,2],[1,1,1],[1,2,0,0],[1,0,2],[2,0,1,0,0],[0,2,1],[1,0,2],[0,0,3],[3,0,0],[1,2,0],[0,1,2],[0,3],[3,0],[0,3],[3,0],[0,3],[1,2,0],[3,0],[2,1] +00473fa010_940519.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[2,1],[1,2],[3,0],[0,2,1],[1,0,2],[0,3,0],[2,1,0],[3,0,0],[2,1,0],[0,0,3],[3,0],[2,0,1],[1,0,0,2],[2,1],[1,2,0],[2,0,1],[2,1,0],[0,3],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[0,0,0,3],[2,1],[1,0,1],[2,1,0,0],[2,1,0],[3,0,0,0,0],[0,0,3],[2,1,0],[2,1,0],[0,1,2],[2,1,0],[2,1,0],[3,0],[2,1],[2,1],[0,3],[1,2],[2,1,0],[3,0],[3,0] +00474fa010_940519.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[0,3],[2,1],[1,2],[2,0,1],[1,0,2],[0,0,3],[0,2,1],[1,0,2],[1,0,2],[0,1,2],[3,0],[1,0,2],[3,0,0,0],[0,3],[2,0,1],[0,2,0],[2,0,1],[0,3],[3,0],[3,0],[1,1,1],[3,0,0,0],[2,1],[2,1],[2,0,0,1],[0,3],[0,2,1],[3,0,0,0],[3,0,0],[3,0,0,0,0],[0,1,2],[1,0,2],[2,1,0],[0,1,2],[0,3,0],[1,2,0],[1,2],[3,0],[0,3],[3,0],[3,0],[1,2,0],[2,1],[0,3] +00475fa010_940519.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[2,1],[0,3],[2,1],[1,1,1],[2,1,0],[2,1,0],[0,1,2],[3,0,0],[0,3,0],[0,3,0],[2,1],[2,0,1],[2,1,0,0],[2,1],[0,2,1],[2,0,1],[2,1,0],[1,2],[3,0],[3,0],[1,2,0],[3,0,0,0],[3,0],[3,0],[0,1,2,0],[0,3],[1,2,0],[3,0,0,0],[3,0,0],[3,0,0,0,0],[2,1,0],[2,0,1],[0,0,3],[0,1,2],[2,1,0],[0,2,1],[2,0],[1,2],[1,2],[2,1],[3,0],[0,0,3],[3,0],[3,0] +00476fa010_940519.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[0,3],[2,1],[1,2],[3,0,0],[1,0,2],[2,0,1],[1,1,1],[1,0,2],[2,1,0],[2,0,1],[2,1],[1,1,1],[2,1,0,0],[0,3],[2,1,0],[1,0,2],[0,0,3],[3,0],[3,0],[3,0],[1,1,1],[3,0,0,0],[3,0],[3,0],[0,0,1,2],[0,3],[1,1,1],[3,0,0,0],[0,3,0],[3,0,0,0,0],[0,1,2],[0,1,2],[2,1,0],[1,1,1],[2,1,0],[3,0,0],[2,1],[1,2],[1,2],[3,0],[3,0],[1,2,0],[3,0],[1,2] +00477fa010_940519.tif,[2,1],[2,1],[1,0,1,1,0,0,0],[0,3],[0,3],[0,3],[1,1,1],[0,0,3],[3,0,0],[1,1,1],[2,1,0],[1,2,0],[0,3,0],[2,1],[3,0,0],[3,0,0,0],[0,3],[3,0,0],[0,3,0],[0,0,3],[0,3],[3,0],[3,0],[1,1,1],[3,0,0,0],[2,1],[3,0],[1,2,0,0],[1,2],[2,0,1],[0,2,1,0],[1,2,0],[0,1,0,2,0],[0,1,2],[3,0,0],[3,0,0],[1,1,1],[2,1,0],[2,1,0],[1,2],[1,2],[0,3],[3,0],[2,1],[1,2,0],[3,0],[3,0] +00478fa010_940519.tif,[2,1],[3,0],[2,0,0,0,0,1,0],[0,3],[0,3],[2,1],[2,1,0],[3,0,0],[3,0,0],[2,1,0],[0,2,1],[1,2,0],[3,0,0],[2,1],[2,1,0],[2,0,1,0],[3,0],[2,1,0],[3,0,0],[0,0,3],[2,1],[3,0],[3,0],[2,1,0],[3,0,0,0],[2,1],[2,0],[0,1,1,1],[1,2],[0,3,0],[3,0,0,0],[3,0,0],[0,0,0,3,0],[1,1,1],[2,1,0],[0,2,1],[2,1,0],[2,1,0],[0,3,0],[3,0],[2,1],[2,1],[0,3],[1,2],[0,3,0],[3,0],[1,2] +00479fa010_940519.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[2,1],[1,2],[1,2],[3,0,0],[0,0,3],[0,3,0],[3,0,0],[1,2,0],[3,0,0],[3,0,0],[3,0],[0,1,2],[2,1,0,0],[2,1],[3,0,0],[3,0,0],[1,2,0],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[3,0],[2,1],[1,2,0,0],[1,2],[0,3,0],[2,1,0,0],[1,2,0],[3,0,0,0,0],[1,2,0],[1,0,2],[3,0,0],[0,1,2],[1,2,0],[1,2,0],[1,2],[2,1],[0,3],[2,1],[2,1],[1,2,0],[3,0],[2,1] +00480fb010_940519.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[1,2,0],[1,1,1],[2,0,1],[1,2,0],[1,1,1],[0,0,3],[1,2,0],[2,1],[2,1,0],[1,1,0,1],[3,0],[3,0,0],[1,0,2],[2,1,0],[2,0],[0,3],[3,0],[0,3,0],[3,0,0,0],[1,2],[2,1],[0,3,0,0],[2,1],[0,3,0],[3,0,0,0],[2,0,1],[3,0,0,0,0],[0,2,1],[3,0,0],[0,3,0],[2,1,0],[1,1,1],[1,2,0],[2,1],[1,2],[0,3],[1,2],[0,3],[0,0,3],[3,0],[2,1] +00481fb010_940519.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[0,3],[2,1],[0,3],[1,1,1],[1,1,1],[1,1,1],[0,1,2],[1,2,0],[1,1,0],[1,2,0],[0,3],[0,0,3],[2,1,0,0],[2,1],[3,0,0],[0,1,2],[1,1,1],[3,0],[0,3],[3,0],[0,3,0],[3,0,0,0],[0,3],[1,2],[0,2,1,0],[1,2],[0,1,1],[3,0,0,0],[2,0,1],[3,0,0,0,0],[2,0,1],[1,1,1],[3,0,0],[1,2,0],[2,0,1],[2,1,0],[2,1],[0,3],[0,3],[1,2],[3,0],[0,0,3],[3,0],[3,0] +00482fa010_940519.tif,[0,3],[2,1],[3,0,0,0,0,0,0],[1,2],[1,2],[0,3],[1,0,2],[1,2,0],[2,0,1],[2,1,0],[0,1,2],[2,1,0],[3,0,0],[2,1],[0,1,2],[1,2,0,0],[2,1],[3,0,0],[2,0,1],[2,1,0],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[2,1],[1,2,0,0],[0,3],[2,0,1],[3,0,0,0],[2,1,0],[3,0,0,0,0],[3,0,0],[0,0,3],[0,3,0],[2,0,1],[2,0,1],[0,3,0],[3,0],[0,3],[1,2],[3,0],[2,1],[1,2,0],[3,0],[3,0] +00483fa010_940519.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[1,2,0],[1,2,0],[2,1,0],[1,2,0],[0,2,1],[1,0,2],[2,1,0],[0,3],[2,0,1],[2,1,0,0],[3,0],[1,0,2],[0,0,3],[1,1,1],[0,3],[0,3],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,1],[1,1,0,0],[1,2],[1,2,0],[3,0,0,0],[1,2,0],[3,0,0,0,0],[2,0,1],[2,1,0],[0,2,1],[1,2,0],[2,0,1],[0,2,1],[1,2],[2,1],[0,3],[2,1],[3,0],[0,1,2],[3,0],[2,1] +00484fa010_940519.tif,[2,1],[0,3],[0,0,0,0,0,3,0],[1,2],[0,3],[1,2],[1,2,0],[2,0,1],[2,1,0],[2,0,1],[0,3,0],[0,0,3],[0,1,2],[2,1],[2,1,0],[0,2,1,0],[3,0],[0,0,3],[3,0,0],[1,0,2],[2,1],[3,0],[3,0],[0,0,3],[1,0,2,0],[3,0],[2,1],[2,1,0,0],[0,3],[0,2,1],[3,0,0,0],[2,1,0],[1,0,0,1,1],[0,1,2],[1,0,2],[1,2,0],[2,0,1],[1,2,0],[1,2,0],[1,1],[2,1],[1,2],[2,1],[3,0],[2,1,0],[3,0],[0,3] +00485fb010_940519.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[0,1,2],[1,1,1],[1,2,0],[1,2,0],[0,1,2],[1,2,0],[1,1,1],[1,2],[1,0,2],[3,0,0,0],[0,3],[3,0,0],[2,1,0],[1,0,2],[2,1],[0,3],[3,0],[1,2,0],[3,0,0,0],[2,1],[3,0],[1,1,1,0],[0,3],[0,2,1],[1,2,0,0],[2,1,0],[3,0,0,0,0],[1,0,2],[2,0,1],[2,1,0],[0,3,0],[3,0,0],[1,1,1],[2,1],[1,2],[0,3],[3,0],[0,3],[0,1,2],[3,0],[2,1] +00486fa010_940519.tif,[3,0],[2,1],[0,0,1,0,0,2,0],[0,3],[1,2],[1,2],[0,2,1],[2,0,1],[3,0,0],[1,1,1],[1,2,0],[0,3,0],[2,0,1],[1,2],[1,0,2],[3,0,0,0],[3,0],[2,1,0],[2,1,0],[1,0,2],[3,0],[3,0],[3,0],[2,0,1],[0,0,3,0],[3,0],[1,2],[0,3,0,0],[2,1],[0,2,1],[1,2,0,0],[2,0,1],[0,0,0,2,1],[1,2,0],[2,1,0],[0,1,2],[3,0,0],[1,0,2],[0,2,1],[1,2],[3,0],[1,2],[1,2],[0,3],[1,1,1],[3,0],[0,3] +00487fb010_940519.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[2,1],[1,2],[2,1],[1,2,0],[1,2,0],[1,1,1],[1,2,0],[0,0,3],[0,0,3],[1,1,1],[1,2],[1,2,0],[3,0,0,0],[3,0],[3,0,0],[1,1,1],[0,3,0],[3,0],[0,3],[3,0],[2,0,1],[3,0,0,0],[0,3],[3,0],[1,2,0,0],[1,2],[0,3,0],[3,0,0,0],[3,0,0],[3,0,0,0,0],[2,0,1],[3,0,0],[0,3,0],[1,0,2],[3,0,0],[0,3,0],[1,2],[3,0],[1,2],[3,0],[0,3],[0,1,2],[3,0],[3,0] +00488fa010_940519.tif,[3,0],[1,2],[0,0,1,0,0,2,0],[0,3],[0,3],[0,3],[0,3,0],[2,0,1],[0,3,0],[3,0,0],[2,1,0],[2,1,0],[3,0,0],[2,1],[3,0,0],[3,0,0,0],[3,0],[3,0,0],[2,0,1],[2,0,1],[0,3],[3,0],[3,0],[2,0,1],[3,0,0,0],[1,2],[2,1],[2,1,0,0],[0,3],[0,3,0],[2,1,0,0],[1,0,2],[0,2,0,1,0],[0,0,3],[1,1,1],[0,2,1],[0,2,1],[0,2,1],[0,2,1],[2,1],[2,1],[0,3],[3,0],[2,1],[2,1,0],[3,0],[3,0] +00489fb010_940519.tif,[1,2],[3,0],[0,0,1,2,0,0,0],[1,2],[0,3],[1,2],[3,0,0],[0,3,0],[3,0,0],[0,2,1],[0,3,0],[1,1,1],[2,0,1],[2,1],[2,0,1],[1,1,0,1],[2,1],[2,1,0],[3,0,0],[3,0,0],[2,1],[3,0],[3,0],[2,0,1],[3,0,0,0],[3,0],[2,1],[0,1,2,0],[0,3],[0,3,0],[3,0,0,0],[3,0,0],[0,0,0,0,3],[3,0,0],[2,0,1],[2,1,0],[0,2,1],[2,1,0],[2,1,0],[2,1],[3,0],[0,3],[3,0],[3,0],[1,1,1],[3,0],[3,0] +00490fa010_940519.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[0,3],[1,2],[0,3],[1,0,2],[2,1,0],[1,0,2],[0,0,3],[0,2,1],[1,1,1],[3,0,0],[3,0],[0,1,2],[2,1,0,0],[1,2],[0,1,2],[1,1,1],[0,3,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[1,2,0,0],[1,2],[0,1,2],[3,0,0,0],[0,3,0],[2,0,1,0,0],[3,0,0],[1,0,2],[1,1,1],[1,2,0],[2,0,1],[0,1,2],[1,2],[3,0],[0,3],[3,0],[3,0],[1,1,1],[2,1],[3,0] +00491fa010_940519.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[2,1],[0,3],[1,2],[0,3,0],[1,0,2],[2,0,1],[0,1,2],[0,0,3],[1,2,0],[0,2,1],[1,2],[2,1,0],[2,1,0,0],[2,1],[2,0,1],[0,0,3],[1,1,1],[3,0],[3,0],[3,0],[2,0,1],[1,0,2,0],[2,1],[1,2],[0,1,1,1],[1,2],[1,1,1],[2,1,0,0],[2,0,1],[2,0,1,0,0],[0,2,1],[1,1,1],[1,2,0],[1,1,1],[0,3,0],[2,1,0],[2,1],[0,3],[1,2],[1,2],[0,3],[1,1,1],[3,0],[0,3] +00492fb010_940519.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[3,0],[1,2],[3,0],[0,3,0],[0,3,0],[0,2,1],[2,1,0],[1,2,0],[2,0,1],[0,2,1],[3,0],[2,0,1],[2,1,0,0],[1,2],[3,0,0],[1,2,0],[2,0,1],[0,3],[0,3],[3,0],[2,0,1],[3,0,0,0],[0,3],[0,3],[0,2,0,1],[0,3],[0,3,0],[1,2,0,0],[1,0,2],[3,0,0,0,0],[3,0,0],[3,0,0],[0,3,0],[0,3,0],[1,0,2],[2,1,0],[3,0],[0,3],[1,2],[0,3],[0,3],[0,2,1],[3,0],[2,1] +00493fa010_940519.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[3,0],[0,3],[3,0],[0,2,1],[1,1,1],[0,0,3],[0,1,2],[2,1,0],[2,1,0],[2,0,1],[2,1],[3,0,0],[1,0,0,2],[3,0],[1,0,2],[0,0,3],[2,1,0],[1,2],[3,0],[3,0],[2,0,1],[3,0,0,0],[0,3],[2,1],[0,1,1,1],[2,1],[0,2,1],[0,2,1,0],[3,0,0],[2,0,0,0,1],[0,1,2],[2,1,0],[1,2,0],[3,0,0],[1,1,1],[0,1,2],[3,0],[1,2],[1,2],[0,3],[0,3],[2,1,0],[3,0],[1,2] +00494fb010_940519.tif,[2,1],[3,0],[0,0,0,0,0,3,0],[2,1],[0,3],[0,3],[2,1,0],[1,0,2],[2,0,1],[0,2,1],[0,1,2],[1,1,1],[3,0,0],[2,0],[1,1,1],[3,0,0,0],[2,1],[0,1,2],[1,1,1],[1,0,2],[2,1],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[2,1],[1,2,0,0],[2,1],[1,2,0],[2,1,0,0],[2,0,1],[0,0,0,0,3],[2,0,1],[3,0,0],[1,2,0],[0,2,1],[3,0,0],[1,2,0],[2,1],[0,3],[0,3],[2,1],[0,3],[0,3,0],[3,0],[0,3] +00495fa010_940519.tif,[2,1],[0,3],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[1,0,2],[1,1,1],[1,0,2],[2,1,0],[0,2,1],[3,0,0],[0,1,2],[3,0],[2,0,1],[3,0,0,0],[1,2],[2,1,0],[1,0,2],[2,1,0],[1,2],[0,3],[3,0],[3,0,0],[3,0,0,0],[1,2],[2,1],[1,2,0,0],[3,0],[0,2,1],[1,2,0,0],[3,0,0],[3,0,0,0,0],[0,0,3],[1,0,2],[0,2,1],[1,1,1],[2,1,0],[0,2,1],[3,0],[1,2],[2,1],[1,2],[0,3],[2,1,0],[3,0],[3,0] +00496fb010_940519.tif,[2,1],[0,3],[1,0,1,1,0,0,0],[2,1],[1,2],[2,1],[2,0,1],[1,1,1],[2,0,1],[0,2,1],[1,2,0],[1,1,1],[2,0,1],[3,0],[3,0,0],[1,1,1,0],[2,1],[1,1,1],[0,1,2],[1,0,2],[0,3],[3,0],[3,0],[2,0,1],[1,0,2,0],[0,3],[2,1],[0,2,0,1],[0,3],[3,0,0],[0,2,1,0],[1,0,2],[0,1,0,1,1],[0,0,3],[0,3,0],[1,0,2],[0,3,0],[0,1,2],[1,1,1],[3,0],[2,1],[1,2],[1,2],[0,3],[0,3,0],[2,1],[2,1] +00497fa010_940519.tif,[2,1],[2,1],[2,0,0,1,0,0,0],[3,0],[0,3],[3,0],[0,3,0],[2,0,1],[1,2,0],[3,0,0],[0,2,1],[0,3,0],[2,0,0],[3,0],[2,0,1],[2,1,0,0],[1,2],[1,0,2],[2,1,0],[2,0,1],[3,0],[3,0],[3,0],[1,1,1],[0,0,0,3],[3,0],[1,2],[1,0,2,0],[0,3],[1,2,0],[3,0,0,0],[3,0,0],[0,0,1,1,0],[0,0,3],[0,3,0],[0,1,2],[0,3,0],[3,0,0],[0,2,1],[3,0],[0,3],[1,2],[0,3],[0,3],[1,2,0],[3,0],[3,0] +00498fa010_940519.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[2,1],[1,2],[1,2],[0,2,1],[1,1,1],[2,0,1],[1,2,0],[0,0,3],[2,0,1],[2,0,1],[0,2],[1,2,0],[2,0,0,1],[2,1],[3,0,0],[0,3,0],[1,1,1],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[3,0],[3,0],[0,0,1,2],[2,1],[2,1,0],[0,2,1,0],[1,0,2],[3,0,0,0,0],[2,0,1],[2,1,0],[1,2,0],[0,3,0],[2,0,1],[0,3,0],[2,1],[2,0],[0,3],[3,0],[0,3],[0,1,2],[3,0],[2,1] +00499fa010_940519.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[2,1],[1,2],[3,0],[0,3,0],[2,1,0],[1,1,1],[2,0,1],[2,1,0],[2,0,1],[0,0,3],[3,0],[0,3,0],[0,0,3,0],[3,0],[1,2,0],[2,0,1],[1,1,1],[0,3],[3,0],[3,0],[1,0,2],[1,0,2,0],[3,0],[0,3],[0,1,0,2],[2,1],[1,2,0],[3,0,0,0],[1,0,2],[3,0,0,0,0],[0,3,0],[3,0,0],[0,0,3],[1,2,0],[1,1,1],[0,0,3],[3,0],[1,2],[2,1],[0,3],[0,3],[0,1,2],[3,0],[1,2] +00500fa010_940519.tif,[1,2],[0,3],[3,0,0,0,0,0,0],[0,3],[1,2],[0,3],[0,3,0],[1,0,2],[1,2,0],[1,0,2],[0,2,1],[3,0,0],[0,3,0],[2,1],[0,1,2],[0,1,1,1],[0,3],[2,0,1],[2,0,1],[0,0,3],[3,0],[0,3],[3,0],[1,1,1],[3,0,0,0],[0,3],[2,1],[1,1,1,0],[0,3],[3,0,0],[0,1,2,0],[0,2,1],[3,0,0,0,0],[0,1,2],[2,1,0],[1,1,1],[0,2,1],[2,0,1],[2,1,0],[0,3],[2,1],[0,3],[3,0],[0,3],[0,0,3],[3,0],[3,0] +00501fa010_940519.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[1,2],[0,3],[2,1],[0,1,2],[1,1,1],[1,0,2],[0,0,3],[2,1,0],[1,2,0],[1,1,1],[3,0],[2,1,0],[3,0,0,0],[1,2],[1,0,2],[1,1,1],[2,0,1],[1,2],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[1,2],[0,2,0,1],[3,0],[1,1,0],[0,1,2,0],[3,0,0],[2,0,1,0,0],[2,0,1],[1,2,0],[1,2,0],[0,3,0],[1,1,1],[1,1,1],[3,0],[0,3],[1,2],[0,3],[0,3],[1,1,1],[2,1],[3,0] +00502fa010_940519.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[1,0,2],[1,0,2],[1,0,2],[0,1,2],[3,0,0],[0,3,0],[0,2,1],[3,0],[1,2,0],[2,1,0,0],[2,1],[3,0,0],[3,0,0],[1,1,1],[1,2],[3,0],[3,0],[1,1,1],[3,0,0,0],[3,0],[3,0],[1,1,1,0],[2,1],[2,1,0],[3,0,0,0],[2,1,0],[3,0,0,0,0],[2,0,1],[3,0,0],[1,2,0],[2,1,0],[0,3,0],[2,1,0],[2,1],[2,1],[1,2],[2,1],[3,0],[0,0,3],[3,0],[2,1] +00503fa010_940519.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[3,0],[0,2],[3,0],[0,3,0],[0,1,2],[2,0,1],[0,1,2],[1,2,0],[0,2,1],[1,2,0],[3,0],[3,0,0],[1,1,0,1],[2,1],[1,1,1],[2,1,0],[2,0,1],[3,0],[3,0],[3,0],[0,1,2],[0,0,0,3],[3,0],[2,1],[1,0,1,1],[2,1],[1,1,1],[0,3,0,0],[0,0,2],[0,0,0,3,0],[0,2,1],[2,1,0],[1,0,2],[0,3,0],[3,0,0],[0,2,1],[3,0],[1,2],[1,2],[0,3],[0,3],[0,0,3],[3,0],[3,0] +00504fb010_940519.tif,[2,1],[2,1],[0,0,0,3,0,0,0],[2,1],[1,2],[3,0],[0,3,0],[3,0,0],[0,1,2],[1,2,0],[0,1,2],[1,1,1],[3,0,0],[3,0],[3,0,0],[0,0,2,1],[3,0],[3,0,0],[2,0,1],[1,2,0],[3,0],[3,0],[3,0],[2,1,0],[3,0,0,0],[0,3],[0,3],[2,1,0,0],[2,1],[0,3,0],[3,0,0,0],[2,1,0],[0,0,0,1,2],[0,1,2],[3,0,0],[0,1,2],[3,0,0],[1,2,0],[1,0,2],[3,0],[0,3],[3,0],[0,3],[1,2],[0,3,0],[3,0],[1,2] +00505fa010_940519.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[1,2],[0,1],[1,2],[0,2,1],[0,2,1],[2,1,0],[2,1,0],[2,1,0],[0,0,3],[0,1,2],[2,1],[2,1,0],[2,1,0,0],[3,0],[2,0,1],[0,0,3],[2,1,0],[2,1],[0,3],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[0,2,0,1],[0,3],[1,2,0],[3,0,0,0],[2,0,1],[3,0,0,0,0],[2,1,0],[1,0,2],[1,1,1],[3,0,0],[1,2,0],[1,2,0],[3,0],[0,3],[1,2],[1,2],[3,0],[1,1,1],[3,0],[2,1] +00506fa010_940519.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[0,3],[1,2],[1,2],[0,2,1],[3,0,0],[1,2,0],[3,0,0],[0,3,0],[2,0,1],[0,1,2],[3,0],[1,1,1],[3,0,0,0],[1,2],[3,0,0],[2,0,1],[1,2,0],[3,0],[0,3],[3,0],[1,2,0],[2,0,1,0],[1,2],[3,0],[1,2,0,0],[2,1],[2,1,0],[2,1,0,0],[2,0,1],[3,0,0,0,0],[0,1,2],[2,0,1],[0,3,0],[0,2,1],[0,3,0],[0,3,0],[2,1],[2,1],[0,3],[2,0],[1,2],[3,0,0],[3,0],[2,1] +00507fa010_940519.tif,[3,0],[1,2],[2,1,0,0,0,0,0],[0,3],[0,3],[2,1],[0,1,2],[1,1,1],[2,1,0],[3,0,0],[0,3,0],[0,2,1],[3,0,0],[1,2],[2,1,0],[2,1,0,0],[3,0],[0,3,0],[0,0,3],[2,1,0],[3,0],[0,3],[3,0],[2,1,0],[2,0,0,0],[0,3],[2,1],[1,0,0,2],[1,2],[0,2,0],[3,0,0,0],[0,2,1],[3,0,0,0,0],[0,3,0],[0,0,3],[3,0,0],[1,1,1],[1,2,0],[3,0,0],[1,2],[2,1],[0,3],[3,0],[3,0],[0,0,3],[3,0],[3,0] +00508fa010_940519.tif,[3,0],[0,3],[0,0,0,0,0,3,0],[2,1],[1,2],[3,0],[2,0,1],[0,0,3],[2,1,0],[0,1,2],[0,3,0],[1,2,0],[0,2,1],[3,0],[0,3,0],[2,1,0,0],[1,2],[1,1,1],[1,0,2],[0,1,2],[3,0],[3,0],[3,0],[2,1,0],[3,0,0,0],[3,0],[2,1],[1,0,0,2],[0,3],[2,1,0],[3,0,0,0],[3,0,0],[0,0,0,1,2],[2,0,1],[3,0,0],[1,2,0],[0,3,0],[2,0,1],[2,1,0],[1,2],[1,2],[1,2],[0,3],[3,0],[0,0,3],[3,0],[2,1] +00509fa010_940519.tif,[3,0],[3,0],[2,0,0,0,1,0,0],[0,3],[0,3],[0,3],[0,1,2],[0,1,2],[1,0,2],[0,1,2],[2,1,0],[1,2,0],[2,0,1],[3,0],[2,0,1],[3,0,0,0],[0,3],[2,0,1],[2,0,1],[0,0,3],[2,1],[3,0],[3,0],[0,0,3],[0,0,3,0],[3,0],[3,0],[0,1,0,2],[0,3],[0,3,0],[3,0,0,0],[2,1,0],[3,0,0,0,0],[2,0,1],[3,0,0],[2,1,0],[1,2,0],[2,1,0],[0,3,0],[1,2],[2,1],[0,3],[3,0],[0,3],[0,2,1],[3,0],[2,1] +00510fa010_940519.tif,[0,3],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[0,2,1],[2,1,0],[1,2,0],[1,2,0],[0,3,0],[0,0,3],[0,2,1],[2,1],[2,0,1],[1,2,0,0],[1,2],[2,0,1],[3,0,0],[1,2,0],[3,0],[0,3],[3,0],[1,1,1],[3,0,0,0],[2,1],[2,1],[0,1,0,2],[0,3],[3,0,0],[0,1,2,0],[1,0,2],[3,0,0,0,0],[3,0,0],[3,0,0],[1,2,0],[0,3,0],[0,2,1],[0,3,0],[3,0],[0,3],[2,1],[1,2],[0,3],[0,2,1],[3,0],[1,2] +00511fb010_940519.tif,[3,0],[0,3],[2,0,1,0,0,0,0],[1,2],[0,3],[2,1],[1,0,2],[2,0,1],[1,1,1],[1,1,1],[2,1,0],[2,1,0],[3,0,0],[2,1],[1,1,1],[1,1,0,1],[0,3],[2,0,1],[0,2,1],[0,0,3],[1,2],[3,0],[3,0],[1,0,2],[0,0,3,0],[3,0],[1,2],[0,2,1,0],[2,1],[2,0,1],[1,2,0,0],[1,1,1],[0,1,0,2,0],[1,1,1],[1,2,0],[2,1,0],[0,0,3],[1,2,0],[3,0,0],[2,1],[1,2],[0,3],[0,3],[0,3],[2,1,0],[3,0],[1,2] +00512fa010_940519.tif,[1,2],[1,2],[3,0,0,0,0,0,0],[0,3],[0,3],[2,1],[0,1,2],[2,0,1],[2,0,1],[0,3,0],[1,1,1],[1,0,2],[2,1,0],[3,0],[2,1,0],[0,2,1,0],[1,2],[1,0,2],[1,0,2],[1,1,1],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[1,2],[0,2,0,1],[0,3],[0,3,0],[3,0,0,0],[0,3,0],[3,0,0,0,0],[2,1,0],[3,0,0],[0,3,0],[3,0,0],[3,0,0],[2,1,0],[3,0],[1,2],[3,0],[1,1],[2,1],[1,1,1],[3,0],[2,1] +00513fb010_940519.tif,[2,1],[0,3],[3,0,0,0,0,0,0],[1,2],[0,3],[2,1],[1,2,0],[0,2,1],[2,1,0],[2,0,1],[1,2,0],[0,3,0],[0,0,2],[1,2],[1,1,1],[2,0,0,1],[3,0],[0,1,2],[2,1,0],[0,1,2],[0,3],[3,0],[3,0],[0,1,2],[0,0,3,0],[1,2],[3,0],[1,1,0,1],[3,0],[0,3,0],[1,2,0,0],[1,0,2],[3,0,0,0,0],[2,1,0],[0,0,3],[2,1,0],[1,1,1],[2,1,0],[3,0,0],[3,0],[1,2],[1,2],[0,3],[0,3],[0,2,1],[3,0],[2,1] +00514fa010_940519.tif,[3,0],[3,0],[2,0,0,0,0,1,0],[0,3],[1,2],[1,2],[0,1,1],[3,0,0],[2,0,1],[0,1,2],[1,2,0],[1,2,0],[1,0,2],[3,0],[2,0,1],[3,0,0,0],[2,1],[1,1,1],[0,0,3],[1,0,2],[0,3],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,1],[0,1,0,2],[1,2],[1,1,1],[2,1,0,0],[2,1,0],[0,1,0,2,0],[2,0,1],[1,0,2],[2,1,0],[1,1,1],[1,2,0],[0,3,0],[2,1],[3,0],[0,3],[2,1],[3,0],[1,2,0],[3,0],[0,3] +00515fa010_940519.tif,[3,0],[3,0],[2,0,1,0,0,0,0],[0,3],[0,3],[1,2],[2,1,0],[1,1,1],[0,0,3],[1,2,0],[0,3,0],[0,3,0],[0,2,1],[2,1],[1,2,0],[2,0,1,0],[0,3],[3,0,0],[0,0,3],[2,0,1],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[3,0],[0,0,1,2],[1,2],[2,0,1],[0,3,0,0],[2,0,1],[3,0,0,0,0],[2,0,1],[2,0,1],[3,0,0],[1,0,2],[3,0,0],[1,2,0],[0,3],[2,1],[0,3],[3,0],[0,3],[0,0,3],[3,0],[2,1] +00516fa010_940519.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[2,1],[2,1],[3,0],[2,0,1],[2,1,0],[3,0,0],[0,2,1],[2,1,0],[0,1,2],[2,0,1],[3,0],[0,0,3],[0,0,3,0],[3,0],[1,0,2],[1,2,0],[1,2,0],[2,1],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[2,1],[3,0,0,0],[3,0],[2,1,0],[2,1,0,0],[2,0,1],[3,0,0,0,0],[2,0,1],[3,0,0],[0,0,3],[1,1,1],[1,1,1],[0,0,3],[3,0],[1,2],[1,2],[0,3],[1,2],[3,0,0],[3,0],[3,0] +00517fb010_940519.tif,[3,0],[0,3],[3,0,0,0,0,0,0],[1,2],[1,2],[2,1],[1,0,2],[1,1,1],[1,0,2],[0,1,2],[2,1,0],[1,0,2],[1,1,1],[2,1],[1,2,0],[1,0,0,2],[0,3],[1,0,2],[2,1,0],[0,0,3],[3,0],[3,0],[3,0],[2,0,1],[1,0,2,0],[2,0],[3,0],[0,0,0,3],[1,2],[0,3,0],[2,1,0,0],[3,0,0],[3,0,0,0,0],[2,0,1],[0,2,1],[0,1,2],[0,0,3],[2,0,1],[0,1,2],[0,3],[3,0],[1,2],[3,0],[1,2],[0,2,1],[3,0],[2,1] +00518fa010_940519.tif,[3,0],[0,3],[3,0,0,0,0,0,0],[0,3],[3,0],[2,1],[2,1,0],[2,1,0],[0,3,0],[2,1,0],[0,3,0],[2,0,1],[0,3,0],[3,0],[2,1,0],[2,0,0,1],[3,0],[2,1,0],[1,0,2],[2,0,1],[0,3],[3,0],[3,0],[2,0,1],[2,0,1,0],[3,0],[3,0],[1,2,0,0],[0,3],[0,3,0],[3,0,0,0],[3,0,0],[3,0,0,0,0],[0,0,3],[2,0,1],[1,2,0],[0,3,0],[2,1,0],[2,1,0],[3,0],[1,2],[3,0],[1,2],[1,2],[0,2,1],[3,0],[3,0] +00519fa010_940519.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[3,0],[2,0,1],[3,0,0],[1,0,2],[1,0,2],[3,0,0],[1,2,0],[0,0,3],[3,0],[0,3,0],[1,0,1,1],[0,3],[0,0,3],[1,0,2],[0,0,3],[2,1],[3,0],[3,0],[1,1,1],[1,0,2,0],[3,0],[3,0],[0,2,0,1],[1,2],[0,2,1],[3,0,0,0],[3,0,0],[2,0,1,0,0],[1,0,2],[2,0,1],[2,1,0],[1,2,0],[0,3,0],[2,1,0],[3,0],[2,1],[1,2],[0,3],[2,1],[2,1,0],[3,0],[2,1] +00520fb010_940519.tif,[2,1],[2,1],[0,1,0,0,0,2,0],[1,2],[1,2],[2,1],[2,0,1],[0,1,2],[2,1,0],[1,1,1],[2,0,1],[3,0,0],[2,0,1],[2,1],[1,1,1],[1,1,0,1],[1,2],[2,1,0],[2,0,1],[1,1,1],[3,0],[3,0],[3,0],[0,1,2],[3,0,0,0],[3,0],[0,3],[0,3,0,0],[0,3],[0,1,2],[3,0,0,0],[2,1,0],[0,0,0,1,2],[1,0,2],[2,1,0],[0,3,0],[0,2,1],[1,2,0],[0,3,0],[3,0],[0,3],[2,1],[0,3],[3,0],[0,2,1],[3,0],[3,0] +00521fa010_940519.tif,[3,0],[2,1],[2,0,1,0,0,0,0],[1,2],[0,3],[0,3],[2,0,1],[2,1,0],[2,1,0],[3,0,0],[0,3,0],[3,0,0],[0,3,0],[3,0],[1,1,1],[1,0,0,2],[2,1],[3,0,0],[0,0,3],[2,1,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,1],[0,3,0,0],[1,2],[3,0,0],[0,2,1,0],[0,3,0],[2,0,1,0,0],[0,2,1],[2,0,1],[1,2,0],[0,2,1],[2,1,0],[2,1,0],[3,0],[1,2],[1,2],[1,2],[1,2],[0,0,2],[3,0],[3,0] +00522fb010_940519.tif,[2,1],[0,3],[3,0,0,0,0,0,0],[2,1],[0,3],[3,0],[0,3,0],[0,0,3],[3,0,0],[0,1,2],[3,0,0],[1,0,2],[2,0,1],[3,0],[3,0,0],[1,0,2,0],[3,0],[2,1,0],[2,0,1],[2,0,1],[0,3],[3,0],[3,0],[2,0,1],[2,0,1,0],[3,0],[0,3],[0,1,0,2],[0,3],[0,3,0],[1,2,0,0],[2,0,1],[3,0,0,0,0],[1,1,1],[3,0,0],[0,2,1],[1,2,0],[1,2,0],[0,1,2],[3,0],[0,3],[0,3],[0,3],[1,2],[3,0,0],[3,0],[2,1] +00523fb010_940519.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[1,1,1],[1,2,0],[2,0,1],[0,0,3],[2,1,0],[2,1,0],[0,0,3],[3,0],[2,1,0],[2,0,0,1],[0,3],[2,0,1],[0,1,2],[3,0,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[2,1],[0,3,0,0],[1,2],[0,0,3],[0,3,0,0],[1,2,0],[3,0,0,0,0],[3,0,0],[3,0,0],[2,1,0],[2,0,0],[0,3,0],[1,2,0],[3,0],[0,3],[1,2],[2,1],[1,2],[1,2,0],[3,0],[1,2] +00524fa010_940519.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[0,3],[1,2],[1,2],[1,0,2],[2,0,1],[0,0,3],[0,1,2],[0,1,2],[2,1,0],[0,2,1],[3,0],[2,1,0],[2,0,0,1],[3,0],[0,1,2],[0,0,3],[1,1,1],[0,3],[3,0],[3,0],[2,0,1],[0,0,3,0],[3,0],[3,0],[0,1,1,1],[2,1],[0,2,0],[3,0,0,0],[1,2,0],[3,0,0,0,0],[0,2,1],[2,0,1],[2,1,0],[1,2,0],[1,2,0],[2,1,0],[3,0],[2,1],[0,3],[1,2],[3,0],[0,2,1],[3,0],[2,1] +00525fa010_940519.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[2,1],[0,3],[2,1],[0,1,2],[0,1,2],[3,0,0],[2,1,0],[0,3,0],[1,2,0],[1,0,2],[1,2],[1,2,0],[2,1,0,0],[1,2],[3,0,0],[1,0,2],[2,1,0],[3,0],[0,3],[3,0],[0,3,0],[3,0,0,0],[1,2],[3,0],[2,0,0,1],[3,0],[1,1,1],[0,2,1,0],[3,0,0],[3,0,0,0,0],[2,0,1],[3,0,0],[0,3,0],[2,0,0],[1,1,1],[1,2,0],[2,1],[1,2],[1,2],[2,1],[0,3],[1,0,2],[2,1],[3,0] +00526fa010_940519.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[2,1],[0,3],[2,1],[0,1,2],[2,1,0],[3,0,0],[0,3,0],[1,1,1],[1,2,0],[3,0,0],[3,0],[2,0,1],[1,1,1,0],[1,2],[2,0,1],[0,3,0],[0,0,3],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[1,2],[1,2],[0,0,0,3],[1,2],[0,3,0],[3,0,0,0],[3,0,0],[1,0,2,0,0],[3,0,0],[2,1,0],[0,3,0],[1,2,0],[2,1,0],[1,2,0],[3,0],[1,2],[0,3],[0,3],[0,3],[3,0,0],[2,1],[3,0] +00527fa010_940519.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[0,3],[0,3],[1,2],[3,0,0],[2,0,1],[0,0,3],[0,1,2],[0,3,0],[3,0,0],[1,1,1],[2,1],[1,2,0],[2,1,0,0],[0,3],[2,0,1],[0,1,2],[0,0,3],[3,0],[3,0],[3,0],[3,0,0],[2,0,1,0],[2,1],[2,1],[2,0,1,0],[2,1],[2,1,0],[0,1,2,0],[1,2,0],[2,0,1,0,0],[1,0,2],[3,0,0],[1,2,0],[0,1,2],[1,0,2],[2,1,0],[1,2],[1,2],[1,2],[3,0],[0,3],[1,2,0],[3,0],[2,1] +00528fb010_940519.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[3,0],[0,3],[2,1],[0,3,0],[2,0,1],[2,0,1],[2,1,0],[0,3,0],[1,2,0],[0,1,2],[2,1],[3,0,0],[1,0,2,0],[3,0],[2,0,1],[3,0,0],[3,0,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[1,2],[0,3,0,0],[2,1],[0,2,1],[1,2,0,0],[0,0,3],[1,0,2,0,0],[0,0,3],[3,0,0],[1,2,0],[0,2,1],[1,1,1],[0,3,0],[3,0],[1,2],[1,2],[0,3],[1,2],[1,2,0],[3,0],[2,1] +00529fa010_940519.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[2,1],[0,3],[0,3],[1,0,2],[1,2,0],[2,0,1],[1,1,1],[0,3,0],[1,0,2],[2,1,0],[3,0],[0,0,3],[2,0,1,0],[1,2],[3,0,0],[1,2,0],[1,0,2],[3,0],[0,3],[3,0],[3,0,0],[2,0,1,0],[2,1],[3,0],[0,0,3,0],[3,0],[2,0,1],[0,0,3,0],[0,1,2],[3,0,0,0,0],[2,0,1],[2,0,1],[0,0,3],[0,2,1],[1,2,0],[0,0,3],[3,0],[1,2],[0,3],[2,1],[0,3],[0,0,3],[3,0],[3,0] +00530fb010_940519.tif,[1,2],[1,2],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[0,3,0],[2,0,1],[0,3,0],[2,1,0],[0,3,0],[1,1,1],[2,0,1],[2,1],[2,0,1],[1,0,0,2],[3,0],[3,0,0],[0,1,2],[1,2,0],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[1,2],[3,0],[0,2,0,1],[0,3],[3,0,0],[0,1,2,0],[1,0,2],[3,0,0,0,0],[2,0,1],[2,1,0],[1,2,0],[1,2,0],[2,0,1],[0,2,1],[2,1],[3,0],[1,2],[2,1],[0,3],[1,1,1],[3,0],[3,0] +00531fa010_940519.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[1,0,2],[2,0,1],[0,0,3],[0,0,3],[1,2,0],[2,0,1],[2,0,1],[2,1],[1,1,1],[1,2,0,0],[0,3],[1,0,2],[0,3,0],[1,0,2],[3,0],[3,0],[3,0],[2,0,1],[3,0,0,0],[3,0],[3,0],[1,1,1,0],[1,2],[1,2,0],[2,1,0,0],[1,0,2],[3,0,0,0,0],[2,0,1],[3,0,0],[0,0,3],[0,2,1],[0,3,0],[0,0,3],[2,1],[2,1],[0,3],[3,0],[1,2],[0,3,0],[3,0],[3,0] +00532fa010_940519.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[0,3],[1,2],[1,2],[0,2,1],[0,3,0],[0,3,0],[0,3,0],[0,3,0],[2,0,1],[0,0,3],[3,0],[1,2,0],[1,1,1,0],[1,2],[1,1,1],[1,2,0],[0,3,0],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[2,1],[2,1],[1,0,0,2],[2,1],[1,2,0],[2,1,0,0],[0,0,3],[3,0,0,0,0],[2,0,1],[2,0,1],[0,2,1],[1,2,0],[3,0,0],[1,2,0],[2,1],[0,2],[0,3],[2,1],[0,3],[0,2,1],[3,0],[2,1] +00533fa010_940519.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[3,0],[0,3],[2,1],[0,1,2],[3,0,0],[0,3,0],[2,1,0],[0,3,0],[3,0,0],[2,0,1],[3,0],[1,0,2],[2,1,0,0],[2,1],[1,0,2],[2,0,1],[3,0,0],[2,1],[3,0],[3,0],[0,0,3],[1,1,0,1],[1,2],[1,1],[0,0,3,0],[2,1],[1,2,0],[2,1,0,0],[1,0,2],[0,2,0,1,0],[1,0,2],[1,0,2],[0,1,2],[2,1,0],[2,0,1],[0,0,3],[3,0],[1,2],[1,2],[0,3],[0,3],[0,1,2],[3,0],[3,0] +00534fa010_940519.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[0,3,0],[1,1,1],[0,3,0],[2,0,1],[0,3,0],[1,0,2],[2,0,1],[2,1],[3,0,0],[2,0,0,1],[3,0],[3,0,0],[2,0,1],[2,1,0],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[0,3],[2,1],[0,3,0,0],[1,2],[0,3,0],[2,1,0,0],[1,2,0],[3,0,0,0,0],[0,3,0],[2,0,1],[1,2,0],[2,1,0],[2,0,1],[0,3,0],[3,0],[1,2],[0,3],[1,2],[0,3],[0,2,1],[3,0],[2,1] +00536fa010_940519.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[2,1],[0,3],[1,2],[0,1,2],[2,1,0],[0,0,3],[0,1,2],[1,2,0],[0,3,0],[0,1,2],[3,0],[2,0,1],[3,0,0,0],[0,2],[3,0,0],[1,0,2],[0,0,3],[0,3],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[3,0],[1,1,0,1],[1,2],[3,0,0],[0,1,2,0],[2,0,1],[2,0,1,0,0],[0,0,3],[3,0,0],[1,1,1],[0,2,1],[2,0,1],[0,1,2],[1,2],[2,1],[0,3],[3,0],[0,3],[0,0,3],[2,1],[2,1] +00537fa010_940519.tif,[3,0],[0,3],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[1,1,1],[1,1,1],[3,0,0],[0,3,0],[0,3,0],[0,1,2],[0,2,1],[3,0],[1,0,2],[3,0,0,0],[0,3],[2,1,0],[1,0,2],[2,0,1],[1,2],[0,3],[3,0],[1,2,0],[3,0,0,0],[3,0],[1,2],[0,1,2,0],[1,2],[2,0,0],[0,1,2,0],[1,0,2],[3,0,0,0,0],[3,0,0],[1,2,0],[3,0,0],[2,1,0],[2,0,1],[1,2,0],[3,0],[2,1],[0,3],[1,2],[0,3],[0,1,2],[3,0],[3,0] +00538fa010_940519.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[2,1],[2,1],[3,0],[3,0,0],[1,0,2],[0,0,3],[0,0,3],[0,3,0],[0,3,0],[0,0,3],[3,0],[0,1,2],[2,1,0,0],[1,2],[1,0,2],[0,1,2],[1,1,1],[2,1],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[1,2,0,0],[1,2],[2,1,0],[3,0,0,0],[0,3,0],[3,0,0,0,0],[1,1,1],[2,0,1],[2,1,0],[0,2,1],[0,3,0],[3,0,0],[1,2],[2,1],[0,3],[3,0],[2,1],[0,3,0],[3,0],[2,1] +00539fa010_940519.tif,[2,1],[2,1],[2,0,1,0,0,0,0],[1,2],[3,0],[0,3],[1,1,1],[2,1,0],[0,0,3],[0,1,2],[0,0,3],[2,1,0],[2,0,1],[3,0],[1,1,1],[3,0,0,0],[1,2],[3,0,0],[0,3,0],[0,1,2],[0,3],[3,0],[3,0],[1,0,2],[3,0,0,0],[2,1],[3,0],[1,2,0,0],[2,1],[1,2,0],[3,0,0,0],[2,0,1],[2,0,1,0,0],[2,0,1],[2,1,0],[0,3,0],[0,2,1],[3,0,0],[1,2,0],[0,3],[1,2],[2,1],[2,1],[1,2],[1,2,0],[3,0],[1,2] +00540fa010_940519.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[0,2,1],[1,0,2],[2,1,0],[2,0,1],[1,2,0],[2,0,1],[1,0,2],[2,1],[1,1,1],[1,2,0,0],[0,3],[1,0,2],[1,2,0],[0,2,1],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[2,1],[3,0],[0,0,3,0],[0,3],[1,2,0],[2,1,0,0],[2,1,0],[2,0,1,0,0],[2,0,1],[1,0,2],[0,1,2],[1,2,0],[0,3,0],[0,0,3],[3,0],[3,0],[2,1],[3,0],[3,0],[0,2,1],[3,0],[2,1] +00541fa010_940519.tif,[3,0],[2,1],[2,0,0,0,0,0,1],[0,3],[3,0],[0,3],[0,0,3],[0,2,1],[2,1,0],[2,1,0],[2,1,0],[2,0,1],[2,1,0],[2,1],[0,1,2],[3,0,0,0],[0,3],[3,0,0],[0,3,0],[2,1,0],[3,0],[0,3],[3,0],[0,3,0],[3,0,0,0],[1,2],[3,0],[0,1,1,1],[3,0],[2,1,0],[0,1,2,0],[0,0,3],[3,0,0,0,0],[1,0,2],[1,2,0],[0,3,0],[0,3,0],[0,2,1],[1,2,0],[2,1],[2,1],[1,2],[2,1],[0,3],[0,0,3],[3,0],[3,0] +00542fa010_940519.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[0,3],[0,3],[1,2],[0,0,3],[0,2,1],[0,0,3],[0,1,2],[0,3,0],[1,1,1],[1,0,2],[3,0],[3,0,0],[1,0,1,1],[0,3],[3,0,0],[0,1,2],[0,0,3],[3,0],[3,0],[3,0],[1,2,0],[3,0,0,0],[3,0],[2,1],[0,2,1,0],[1,2],[1,2,0],[0,0,3,0],[1,0,2],[2,0,1,0,0],[1,0,2],[3,0,0],[2,1,0],[0,3,0],[3,0,0],[1,2,0],[3,0],[1,1],[0,3],[0,3],[0,3],[1,2,0],[3,0],[1,2] +00543fa010_940519.tif,[1,2],[0,3],[3,0,0,0,0,0,0],[1,2],[0,3],[2,1],[2,1,0],[2,1,0],[3,0,0],[2,1,0],[0,2,1],[0,0,3],[3,0,0],[2,1],[2,0,1],[0,0,3,0],[3,0],[1,0,2],[3,0,0],[1,2,0],[0,3],[0,3],[3,0],[3,0,0],[3,0,0,0],[2,1],[0,3],[1,1,0,1],[0,3],[0,3,0],[2,0,0,1],[2,1,0],[3,0,0,0,0],[0,1,2],[2,1,0],[0,0,3],[3,0,0],[0,2,0],[0,0,3],[2,1],[2,1],[3,0],[0,3],[3,0],[0,0,3],[3,0],[2,1] +00544fa010_940519.tif,[2,1],[2,1],[2,0,1,0,0,0,0],[0,3],[0,3],[0,3],[0,3,0],[0,3,0],[2,0,1],[0,1,2],[1,2,0],[0,0,3],[2,0,1],[3,0],[1,1,1],[2,1,0,0],[2,1],[1,2,0],[3,0,0],[2,0,1],[0,3],[3,0],[3,0],[1,0,2],[0,0,2,1],[1,2],[3,0],[1,2,0,0],[2,1],[2,1,0],[1,2,0,0],[2,0,1],[0,2,0,1,0],[1,2,0],[3,0,0],[1,0,2],[0,2,1],[1,2,0],[0,0,3],[0,3],[2,1],[0,3],[3,0],[1,2],[0,2,1],[2,1],[0,3] +00545fa010_940519.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[3,0],[1,0,2],[3,0,0],[0,0,3],[0,2,1],[0,3,0],[2,1,0],[3,0,0],[3,0],[2,1,0],[0,0,3,0],[1,2],[2,1,0],[0,2,1],[2,0,1],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[0,3],[1,0,1,1],[0,3],[2,0,1],[2,1,0,0],[3,0,0],[2,0,1,0,0],[3,0,0],[1,0,2],[0,3,0],[0,2,1],[1,2,0],[0,1,2],[3,0],[0,3],[2,1],[0,3],[3,0],[0,2,1],[3,0],[3,0] +00546fa010_940519.tif,[3,0],[2,1],[1,0,1,1,0,0,0],[0,3],[1,2],[2,1],[2,0,1],[2,1,0],[1,2,0],[0,3,0],[3,0,0],[1,0,2],[2,0,1],[3,0],[1,0,2],[2,0,0,1],[3,0],[2,1,0],[1,0,2],[2,0,1],[0,3],[3,0],[3,0],[0,1,2],[0,0,3,0],[3,0],[1,2],[0,1,0,2],[0,3],[0,3,0],[3,0,0,0],[2,1,0],[0,0,1,1,1],[2,1,0],[1,1,1],[1,1,1],[2,1,0],[1,2,0],[2,1,0],[1,2],[3,0],[1,2],[1,2],[1,2],[1,0,2],[2,1],[3,0] +00547fb010_940519.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[1,2],[1,2],[1,2],[0,3,0],[0,2,1],[3,0,0],[0,2,1],[1,2,0],[1,2,0],[1,2,0],[1,2],[0,2,1],[1,0,2,0],[0,3],[2,0,1],[1,2,0],[0,0,3],[3,0],[0,3],[3,0],[0,3,0],[1,0,2,0],[3,0],[1,2],[2,1,0,0],[0,3],[1,1,1],[0,1,2,0],[3,0,0],[3,0,0,0,0],[3,0,0],[3,0,0],[1,2,0],[0,2,1],[2,0,1],[2,1,0],[3,0],[1,2],[0,3],[0,3],[0,3],[0,0,3],[3,0],[3,0] +00548fa010_940519.tif,[0,3],[1,2],[3,0,0,0,0,0,0],[0,3],[0,3],[2,1],[1,2,0],[1,0,2],[1,2,0],[1,2,0],[0,3,0],[0,0,3],[3,0,0],[1,2],[1,0,2],[0,1,1,1],[1,2],[3,0,0],[1,1,1],[1,2,0],[2,1],[0,3],[3,0],[2,1,0],[3,0,0,0],[0,3],[2,1],[1,2,0,0],[3,0],[0,2,0],[3,0,0,0],[3,0,0],[3,0,0,0,0],[2,0,1],[2,0,1],[0,0,3],[3,0,0],[0,3,0],[0,2,1],[2,1],[1,2],[1,2],[0,3],[2,1],[0,3,0],[3,0],[2,1] +00549fa010_940519.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[2,1],[0,3],[2,1],[1,1,1],[1,0,2],[1,2,0],[2,0,1],[0,1,2],[0,0,3],[3,0,0],[3,0],[1,1,1],[2,0,0,1],[2,1],[3,0,0],[0,2,1],[2,1,0],[3,0],[0,3],[3,0],[0,1,2],[3,0,0,0],[0,3],[2,1],[0,2,1,0],[0,3],[1,2,0],[0,1,2,0],[2,0,1],[3,0,0,0,0],[0,2,1],[0,3,0],[2,1,0],[0,2,1],[1,0,2],[0,3,0],[3,0],[3,0],[2,1],[1,2],[0,3],[0,1,2],[3,0],[2,1] +00550fa010_940519.tif,[2,1],[1,2],[2,0,0,1,0,0,0],[0,3],[1,2],[3,0],[1,2,0],[2,1,0],[2,1,0],[1,2,0],[0,2,1],[1,1,1],[1,1,1],[3,0],[0,3,0],[0,1,1,1],[3,0],[0,1,2],[2,0,1],[1,1,1],[0,3],[3,0],[3,0],[0,0,3],[0,0,2,1],[2,1],[2,1],[0,2,0,1],[3,0],[1,2,0],[3,0,0,0],[2,0,1],[0,0,0,3,0],[0,3,0],[2,0,1],[0,2,1],[2,1,0],[2,1,0],[1,2,0],[3,0],[0,3],[2,1],[0,3],[0,3],[0,0,3],[3,0],[3,0] +00551fb010_940519.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[1,2,0],[2,1,0],[2,1,0],[2,1,0],[0,0,3],[2,0,1],[2,0,1],[2,1],[2,1,0],[0,1,0,2],[1,2],[3,0,0],[1,0,2],[1,2,0],[0,3],[3,0],[3,0],[1,0,2],[2,0,1,0],[3,0],[2,1],[0,1,0,2],[0,3],[0,3,0],[2,1,0,0],[2,0,1],[3,0,0,0,0],[0,3,0],[1,1,1],[2,0,1],[3,0,0],[0,3,0],[0,1,2],[3,0],[1,2],[2,1],[0,3],[0,3],[2,1,0],[3,0],[1,2] +00552fa010_940519.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[0,3],[1,2],[0,3],[2,0,1],[2,0,1],[1,1,0],[2,0,1],[3,0,0],[3,0,0],[0,2,1],[3,0],[2,1,0],[3,0,0,0],[1,2],[2,1,0],[1,0,2],[1,0,2],[2,1],[3,0],[3,0],[2,1,0],[2,0,1,0],[3,0],[3,0],[0,0,1,2],[1,2],[0,2,1],[3,0,0,0],[2,0,1],[3,0,0,0,0],[1,1,1],[1,0,2],[2,1,0],[2,1,0],[1,2,0],[0,3,0],[3,0],[2,1],[1,2],[1,2],[3,0],[1,2,0],[3,0],[2,1] +00553fa010_940519.tif,[3,0],[0,3],[3,0,0,0,0,0,0],[1,2],[1,2],[0,3],[2,0,1],[2,0,1],[1,0,2],[0,3,0],[0,2,1],[2,1,0],[3,0,0],[1,2],[2,0,1],[3,0,0,0],[1,2],[3,0,0],[2,1,0],[0,1,2],[2,1],[3,0],[3,0],[0,0,3],[0,0,2,1],[3,0],[3,0],[1,1,0,1],[0,3],[0,2,1],[3,0,0,0],[2,1,0],[2,0,1,0,0],[2,0,1],[3,0,0],[1,2,0],[1,1,1],[0,3,0],[2,1,0],[0,3],[2,1],[0,3],[3,0],[1,2],[0,2,1],[3,0],[2,1] +00554fa010_940519.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[1,2],[2,1],[2,1],[0,2,1],[0,3,0],[2,1,0],[1,2,0],[0,1,2],[0,1,2],[0,1,2],[2,1],[2,1,0],[3,0,0,0],[0,3],[1,1,1],[1,1,1],[2,1,0],[0,3],[0,3],[2,1],[1,2,0],[3,0,0,0],[3,0],[2,1],[0,2,0,1],[1,2],[1,2,0],[3,0,0,0],[3,0,0],[3,0,0,0,0],[2,1,0],[2,1,0],[2,0,1],[0,1,2],[2,1,0],[1,1,1],[2,1],[2,1],[0,3],[1,2],[0,3],[0,2,1],[3,0],[3,0] +00555fa010_940519.tif,[1,2],[1,2],[3,0,0,0,0,0,0],[0,3],[0,3],[2,1],[0,2,1],[1,0,2],[2,1,0],[2,1,0],[1,0,2],[1,0,2],[0,3,0],[2,1],[2,1,0],[1,1,0,1],[3,0],[2,1,0],[2,1,0],[1,2,0],[1,2],[0,3],[3,0],[0,3,0],[3,0,0,0],[3,0],[3,0],[0,2,0,1],[0,3],[1,2,0],[0,1,2,0],[0,0,3],[3,0,0,0,0],[3,0,0],[2,1,0],[0,3,0],[1,2,0],[2,1,0],[0,2,1],[2,1],[1,2],[0,3],[0,3],[0,3],[0,0,3],[3,0],[2,1] +00556fa010_940519.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[0,3],[2,1],[0,3],[0,1,2],[2,1,0],[2,1,0],[1,0,2],[1,2,0],[1,1,1],[0,0,3],[2,1],[1,0,2],[2,1,0,0],[1,2],[3,0,0],[0,3,0],[2,0,1],[3,0],[0,3],[3,0],[0,3,0],[2,0,0,1],[2,1],[3,0],[1,1,0,1],[1,2],[2,1,0],[0,2,1,0],[1,0,2],[3,0,0,0,0],[3,0,0],[3,0,0],[2,1,0],[0,1,2],[2,0,1],[3,0,0],[2,1],[3,0],[1,2],[3,0],[0,3],[0,2,1],[3,0],[1,2] +00557fa010_940519.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[3,0],[0,3],[2,1],[1,2,0],[3,0,0],[1,2,0],[2,1,0],[0,3,0],[1,0,2],[0,1,2],[3,0],[2,0,1],[1,1,0,1],[2,1],[3,0,0],[2,1,0],[1,2,0],[2,1],[0,3],[3,0],[1,2,0],[3,0,0,0],[3,0],[3,0],[0,1,0,2],[2,1],[1,1,1],[0,2,1,0],[2,1,0],[3,0,0,0,0],[0,0,3],[2,1,0],[0,3,0],[0,2,1],[1,0,2],[0,3,0],[3,0],[1,2],[1,2],[0,3],[0,3],[0,3,0],[3,0],[2,1] +00558fa010_940519.tif,[3,0],[0,3],[0,0,0,1,0,2,0],[1,2],[1,2],[2,1],[3,0,0],[1,2,0],[2,1,0],[2,1,0],[1,1,1],[2,1,0],[3,0,0],[2,1],[2,0,1],[2,0,1,0],[2,1],[3,0,0],[1,1,1],[3,0,0],[2,1],[3,0],[3,0],[2,0,1],[3,0,0,0],[2,1],[3,0],[0,0,3,0],[0,3],[0,2,1],[3,0,0,0],[3,0,0],[0,0,0,0,3],[1,0,2],[2,0,1],[0,2,1],[2,1,0],[1,2,0],[0,2,1],[3,0],[1,2],[1,2],[0,3],[3,0],[1,2,0],[3,0],[2,1] +00559fa010_940519.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[0,3],[1,2],[3,0],[0,2,1],[2,1,0],[2,1,0],[1,2,0],[1,2,0],[2,1,0],[1,0,2],[2,1],[1,2,0],[3,0,0,0],[1,2],[2,1,0],[2,1,0],[2,0,1],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[0,3],[3,0],[0,0,0,3],[0,3],[0,1,2],[3,0,0,0],[1,0,2],[3,0,0,0,0],[2,0,1],[2,1,0],[2,1,0],[0,0,3],[2,0,1],[2,1,0],[1,2],[2,1],[0,3],[3,0],[0,3],[2,1,0],[3,0],[3,0] +00560fa010_940519.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[2,1,0],[2,0,1],[2,1,0],[3,0,0],[0,1,2],[2,0,1],[1,1,1],[0,3],[0,1,2],[2,0,1,0],[3,0],[3,0,0],[2,0,1],[2,1,0],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[0,3],[3,0],[1,1,0,1],[3,0],[2,0,0],[0,1,2,0],[2,0,1],[3,0,0,0,0],[3,0,0],[2,0,1],[2,0,1],[0,2,1],[2,0,1],[2,1,0],[0,3],[3,0],[0,3],[3,0],[0,3],[0,0,3],[3,0],[3,0] +00561fa010_940519.tif,[1,2],[0,3],[3,0,0,0,0,0,0],[3,0],[3,0],[1,2],[0,1,2],[2,0,1],[2,1,0],[0,3,0],[0,3,0],[3,0,0],[2,0,1],[2,1],[2,0,1],[1,0,1,1],[0,3],[2,0,1],[0,1,2],[1,0,2],[3,0],[3,0],[3,0],[1,2,0],[2,0,1,0],[3,0],[2,1],[0,2,0,1],[1,2],[1,1,1],[0,2,1,0],[1,0,1],[3,0,0,0,0],[1,0,2],[1,2,0],[0,1,2],[0,2,1],[2,1,0],[1,0,2],[3,0],[2,1],[3,0],[1,2],[0,2],[1,2,0],[3,0],[2,1] +00562fb010_940928.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[2,1],[0,3],[1,2],[3,0,0],[2,1,0],[2,0,1],[0,1,2],[1,2,0],[1,0,2],[2,0,1],[0,3],[2,0,1],[1,2,0,0],[2,0],[3,0,0],[3,0,0],[3,0,0],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[3,0],[2,1],[0,1,2,0],[3,0],[0,2,1],[2,1,0,0],[1,2,0],[3,0,0,0,0],[2,0,1],[2,0,1],[1,2,0],[2,1,0],[2,0,1],[1,2,0],[1,2],[2,1],[1,2],[3,0],[3,0],[0,2,1],[3,0],[3,0] +00563fb010_940928.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[1,2],[1,2],[0,3],[1,0,2],[1,2,0],[1,2,0],[3,0,0],[1,1,1],[1,0,2],[3,0,0],[2,1],[0,1,2],[2,0,1,0],[3,0],[2,1,0],[2,1,0],[2,1,0],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[3,0],[2,1],[3,0,0,0],[1,2],[3,0,0],[1,2,0,0],[1,2,0],[3,0,0,0,0],[3,0,0],[1,0,2],[0,0,3],[0,1,2],[3,0,0],[0,1,2],[3,0],[2,1],[0,3],[1,2],[1,2],[0,3,0],[3,0],[3,0] +00564fa010_940928.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[2,1],[0,3],[1,2],[3,0,0],[2,0,1],[2,0,1],[2,1,0],[0,2,1],[0,0,3],[3,0,0],[1,2],[0,1,2],[1,2,0,0],[0,3],[2,0,1],[3,0,0],[2,0,1],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[1,2],[2,1],[2,1,0,0],[2,1],[0,2,1],[3,0,0,0],[3,0,0],[3,0,0,0,0],[3,0,0],[2,1,0],[0,3,0],[0,2,1],[2,0,1],[0,3,0],[1,2],[3,0],[0,3],[3,0],[3,0],[0,2,1],[3,0],[2,1] +00565fa010_940307.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[2,0],[0,3],[3,0],[1,0,2],[2,1,0],[1,1,1],[0,2,1],[2,1,0],[1,2,0],[1,2,0],[3,0],[1,2,0],[1,0,0,2],[0,3],[2,1,0],[1,2,0],[1,0,2],[0,3],[3,0],[3,0],[2,0,1],[2,0,1,0],[3,0],[2,1],[1,1,0,0],[0,3],[0,2,1],[1,2,0,0],[3,0,0],[3,0,0,0,0],[0,0,3],[3,0,0],[1,2,0],[0,2,1],[0,3,0],[1,2,0],[3,0],[2,1],[2,1],[2,1],[3,0],[0,1,2],[3,0],[2,1] +00566fa010_940928.tif,[0,3],[2,1],[3,0,0,0,0,0,0],[0,3],[0,3],[1,2],[2,0,1],[1,2,0],[0,0,3],[0,3,0],[0,2,1],[2,0,1],[2,0,1],[2,1],[0,3,0],[0,2,0,1],[0,3],[2,0,1],[0,0,3],[3,0,0],[3,0],[3,0],[3,0],[3,0,0],[2,0,1,0],[3,0],[3,0],[1,0,2,0],[2,1],[0,3,0],[3,0,0,0],[1,1,1],[3,0,0,0,0],[3,0,0],[1,0,2],[0,0,3],[0,3,0],[0,3,0],[0,1,2],[3,0],[0,3],[0,3],[1,2],[2,1],[1,2,0],[3,0],[3,0] +00567fa010_940928.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[0,3],[1,1],[0,3],[1,0,2],[0,0,3],[3,0,0],[2,1,0],[0,3,0],[3,0,0],[1,0,2],[3,0],[0,2,1],[3,0,0,0],[2,1],[3,0,0],[0,1,2],[1,0,2],[0,3],[2,1],[3,0],[3,0,0],[0,0,2,1],[3,0],[2,1],[0,2,0,1],[0,3],[0,2,1],[3,0,0,0],[1,2,0],[3,0,0,0,0],[0,1,2],[0,0,3],[0,3,0],[2,1,0],[0,3,0],[0,3,0],[0,3],[2,1],[1,2],[3,0],[3,0],[1,2,0],[3,0],[2,1] +00568fa010_940928.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[1,2],[2,1],[1,2],[2,1,0],[1,2,0],[1,2,0],[2,1,0],[1,1,1],[1,0,2],[3,0,0],[2,1],[0,2,1],[0,2,1,0],[3,0],[3,0,0],[0,0,3],[2,0,1],[2,1],[0,3],[3,0],[3,0,0],[3,0,0,0],[0,3],[2,1],[1,2,0,0],[2,1],[0,2,1],[3,0,0,0],[1,2,0],[3,0,0,0,0],[2,0,1],[2,1,0],[0,3,0],[1,2,0],[2,1,0],[1,1,1],[3,0],[0,3],[1,2],[2,1],[3,0],[0,3,0],[3,0],[3,0] +00569fa010_940928.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[1,1,1],[1,2,0],[0,0,3],[0,3,0],[1,0,2],[0,1,2],[2,0,1],[0,3],[0,1,2],[2,1,0,0],[3,0],[2,0,1],[2,0,1],[1,2,0],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[2,1],[2,1],[1,2,0,0],[0,3],[0,2,1],[3,0,0,0],[1,2,0],[3,0,0,0,0],[2,0,1],[2,0,1],[0,2,1],[1,2,0],[3,0,0],[1,2,0],[0,3],[2,1],[0,3],[3,0],[3,0],[1,1,1],[3,0],[2,1] +00570fa010_940928.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[3,0],[1,2],[2,1],[2,0,1],[1,2,0],[1,2,0],[3,0,0],[0,3,0],[0,1,2],[1,0,2],[3,0],[3,0,0],[0,1,2,0],[1,2],[3,0,0],[1,2,0],[2,0,1],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[0,3],[0,2,0,1],[1,2],[0,2,0],[3,0,0,0],[0,3,0],[3,0,0,0,0],[3,0,0],[3,0,0],[0,2,1],[0,3,0],[1,1,1],[0,0,3],[3,0],[1,2],[2,1],[0,3],[3,0],[0,3,0],[3,0],[3,0] +00571fa010_940928.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[1,2],[2,1],[0,3],[2,1,0],[1,2,0],[2,1,0],[2,1,0],[0,3,0],[1,0,2],[3,0,0],[3,0],[0,2,1],[2,1,0,0],[3,0],[3,0,0],[3,0,0],[1,2,0],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[2,1],[3,0],[1,0,0,2],[3,0],[0,0,3],[2,0,0,0],[1,2,0],[3,0,0,0,0],[1,1,1],[0,0,3],[3,0,0],[1,2,0],[2,0,1],[2,1,0],[2,1],[2,1],[1,2],[0,3],[3,0],[0,2,1],[3,0],[2,1] +00572fa010_940928.tif,[0,3],[0,3],[3,0,0,0,0,0,0],[2,1],[1,2],[2,1],[2,0,1],[1,2,0],[3,0,0],[1,2,0],[1,2,0],[0,0,3],[0,0,3],[3,0],[2,1,0],[1,1,1,0],[3,0],[2,0,1],[2,1,0],[1,1,1],[0,3],[3,0],[3,0],[3,0,0],[2,0,1,0],[3,0],[1,2],[0,3,0,0],[0,3],[2,0,1],[1,2,0,0],[3,0,0],[1,0,2,0,0],[2,0,1],[2,0,1],[0,1,2],[1,2,0],[2,1,0],[0,1,2],[2,1],[0,3],[1,2],[0,3],[1,2],[0,0,3],[3,0],[3,0] +00573fa010_940928.tif,[1,2],[1,2],[3,0,0,0,0,0,0],[0,2],[1,2],[2,1],[2,0,1],[0,0,3],[0,0,3],[1,0,2],[0,3,0],[3,0,0],[0,2,1],[3,0],[3,0,0],[3,0,0,0],[0,3],[2,1,0],[1,2,0],[1,0,2],[3,0],[3,0],[3,0],[1,2,0],[1,0,2,0],[3,0],[0,3],[2,1,0,0],[0,3],[1,2,0],[3,0,0,0],[2,0,1],[3,0,0,0,0],[2,0,1],[1,0,2],[1,2,0],[0,2,1],[3,0,0],[1,2,0],[3,0],[2,1],[2,1],[0,3],[2,1],[0,3,0],[3,0],[2,1] +00574fb010_940928.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[0,3],[3,0],[0,3],[0,1,2],[3,0,0],[1,0,2],[0,1,2],[3,0,0],[0,0,3],[0,0,3],[2,1],[2,1,0],[1,0,1,1],[2,1],[2,0,1],[0,0,3],[2,0,1],[3,0],[0,3],[3,0],[0,3,0],[3,0,0,0],[3,0],[3,0],[0,3,0,0],[2,1],[0,0,3],[2,1,0,0],[3,0,0],[3,0,0,0,0],[3,0,0],[1,1,1],[2,1,0],[0,2,1],[2,1,0],[3,0,0],[2,1],[1,1],[2,1],[3,0],[3,0],[1,1,1],[3,0],[3,0] +00575fb010_940928.tif,[3,0],[2,1],[2,0,1,0,0,0,0],[0,3],[3,0],[1,2],[2,0,1],[3,0,0],[2,0,1],[2,1,0],[0,1,2],[2,1,0],[3,0,0],[1,2],[1,2,0],[0,2,1,0],[2,1],[2,1,0],[2,1,0],[2,0,1],[3,0],[3,0],[3,0],[2,1,0],[3,0,0,0],[3,0],[1,2],[2,1,0,0],[0,3],[0,0,3],[3,0,0,0],[0,3,0],[2,0,1,0,0],[2,0,1],[2,0,1],[1,2,0],[2,1,0],[2,1,0],[0,1,2],[3,0],[0,3],[1,2],[0,3],[3,0],[3,0,0],[3,0],[3,0] +00576fb010_940928.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[2,1],[2,1],[1,2],[1,0,2],[1,2,0],[3,0,0],[1,2,0],[0,3,0],[1,0,2],[3,0,0],[2,1],[3,0,0],[0,0,3,0],[1,2],[2,0,1],[0,2,1],[2,1,0],[3,0],[0,2],[3,0],[2,1,0],[3,0,0,0],[1,2],[2,1],[2,1,0,0],[1,2],[0,1,2],[1,2,0,0],[3,0,0],[3,0,0,0,0],[2,0,1],[3,0,0],[0,1,2],[0,2,1],[1,2,0],[0,1,2],[3,0],[1,2],[3,0],[0,3],[2,1],[2,1,0],[3,0],[2,1] +00577fa010_940928.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[0,3],[1,2],[0,3],[1,0,2],[0,1,2],[1,1,0],[1,1,1],[0,1,2],[2,1,0],[0,3,0],[1,2],[2,1,0],[0,0,2,1],[0,3],[3,0,0],[0,2,1],[0,0,3],[1,2],[3,0],[3,0],[1,1,1],[3,0,0,0],[3,0],[2,1],[1,2,0,0],[0,3],[0,1,2],[3,0,0,0],[0,3,0],[3,0,0,0,0],[1,0,2],[1,1,1],[0,3,0],[1,2,0],[1,2,0],[1,2,0],[2,1],[0,3],[1,2],[2,1],[3,0],[3,0,0],[3,0],[3,0] +00578fa010_940928.tif,[1,2],[3,0],[2,0,1,0,0,0,0],[2,1],[0,3],[3,0],[3,0,0],[3,0,0],[2,0,1],[0,3,0],[1,2,0],[2,0,1],[3,0,0],[2,1],[1,2,0],[0,3,0,0],[3,0],[3,0,0],[3,0,0],[3,0,0],[2,1],[3,0],[3,0],[2,1,0],[3,0,0,0],[3,0],[2,1],[0,0,3,0],[1,2],[1,1,1],[3,0,0,0],[0,3,0],[2,0,1,0,0],[2,0,1],[1,0,2],[0,2,1],[1,2,0],[2,0,1],[0,2,1],[3,0],[3,0],[1,2],[0,3],[3,0],[1,2,0],[3,0],[3,0] +00579fb010_940928.tif,[0,3],[1,2],[3,0,0,0,0,0,0],[3,0],[1,2],[1,2],[1,0,2],[0,3,0],[1,2,0],[0,3,0],[0,3,0],[1,0,2],[3,0,0],[2,1],[0,0,3],[1,1,0,1],[1,2],[1,0,2],[1,1,1],[2,1,0],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[3,0],[3,0],[1,2,0,0],[2,1],[2,1,0],[0,2,1,0],[2,1,0],[3,0,0,0,0],[1,0,2],[2,0,0],[1,0,2],[0,3,0],[1,2,0],[0,0,3],[3,0],[0,3],[2,1],[1,2],[2,1],[1,2,0],[0,3],[3,0] +00580fa010_940928.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[0,2],[0,3],[0,3],[1,0,2],[0,3,0],[1,0,2],[1,2,0],[0,3,0],[1,1,1],[2,0,1],[2,1],[2,1,0],[3,0,0,0],[1,2],[2,0,1],[2,1,0],[2,0,1],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[1,2],[1,2],[1,2,0,0],[1,2],[0,2,1],[3,0,0,0],[0,3,0],[0,2,0,1,0],[2,0,1],[2,0,1],[0,1,2],[1,2,0],[3,0,0],[0,3,0],[3,0],[1,2],[1,2],[2,1],[3,0],[3,0,0],[3,0],[3,0] +00581fa010_940928.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[2,1],[2,1],[1,2],[2,0,1],[1,1,1],[3,0,0],[3,0,0],[0,0,3],[2,1,0],[2,0,1],[1,2],[2,0,1],[0,1,0,2],[0,3],[2,0,1],[0,3,0],[1,2,0],[3,0],[0,3],[2,0],[0,2,1],[3,0,0,0],[3,0],[2,1],[0,2,1,0],[2,1],[0,3,0],[3,0,0,0],[1,2,0],[3,0,0,0,0],[3,0,0],[3,0,0],[1,2,0],[0,1,2],[1,2,0],[1,1,1],[3,0],[2,1],[0,3],[1,2],[1,2],[1,2,0],[3,0],[2,1] +00582fa010_940928.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[2,1],[2,1],[2,1],[3,0,0],[2,1,0],[3,0,0],[2,0,1],[1,2,0],[2,1,0],[1,2,0],[2,1],[2,0,1],[1,0,1,1],[3,0],[3,0,0],[1,0,2],[2,1,0],[3,0],[3,0],[3,0],[2,1,0],[3,0,0,0],[3,0],[1,2],[2,1,0,0],[2,1],[0,2,0],[3,0,0,0],[1,1,1],[3,0,0,0,0],[1,2,0],[1,0,2],[0,0,3],[2,0,1],[2,1,0],[0,0,3],[3,0],[0,3],[2,1],[0,3],[1,2],[3,0,0],[2,1],[3,0] +00583fa010_940928.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[0,3],[2,1],[0,3],[2,0,1],[0,2,1],[1,0,2],[1,1,1],[0,1,2],[3,0,0],[2,0,1],[3,0],[0,2,1],[1,1,0,1],[0,3],[2,0,1],[0,2,1],[0,0,3],[3,0],[3,0],[2,1],[3,0,0],[3,0,0,0],[3,0],[2,1],[2,0,1,0],[0,3],[1,2,0],[3,0,0,0],[1,2,0],[3,0,0,0,0],[2,0,1],[2,1,0],[1,2,0],[1,1,1],[3,0,0],[1,2,0],[3,0],[3,0],[1,2],[2,1],[3,0],[3,0,0],[3,0],[3,0] +00584fa010_940928.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[3,0],[2,1,0],[1,1,1],[1,2,0],[3,0,0],[0,2,1],[1,0,2],[1,0,2],[3,0],[3,0,0],[0,2,1,0],[3,0],[1,1,1],[1,0,2],[1,1,1],[2,1],[3,0],[3,0],[2,0,1],[1,0,2,0],[2,1],[0,3],[2,0,1,0],[0,3],[1,1,1],[3,0,0,0],[1,2,0],[0,0,3,0,0],[1,2,0],[2,0,1],[0,0,3],[2,1,0],[0,0,3],[0,0,3],[3,0],[1,2],[3,0],[0,3],[3,0],[2,0,1],[3,0],[2,1] +00585fa010_940928.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[0,3],[1,2],[0,3],[1,0,2],[0,2,1],[3,0,0],[0,2,1],[2,1,0],[0,3,0],[0,0,3],[2,1],[2,1,0],[3,0,0,0],[0,3],[2,1,0],[0,2,1],[2,0,1],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[0,1,0,2],[1,2],[0,3,0],[2,1,0,0],[2,1,0],[3,0,0,0,0],[2,0,1],[2,0,1],[0,3,0],[1,1,1],[1,2,0],[1,2,0],[2,1],[2,1],[0,3],[3,0],[2,1],[3,0,0],[3,0],[2,1] +00586fa010_940928.tif,[3,0],[2,1],[1,0,1,1,0,0,0],[1,2],[2,1],[0,3],[0,1,2],[2,1,0],[2,1,0],[1,2,0],[1,0,2],[3,0,0],[2,0,1],[2,1],[1,2,0],[3,0,0,0],[0,3],[3,0,0],[0,3,0],[2,0,1],[1,2],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[3,0],[1,0,2,0],[0,3],[0,3,0],[3,0,0,0],[3,0,0],[0,2,1,0,0],[1,0,2],[1,0,2],[0,3,0],[0,3,0],[1,0,2],[0,3,0],[1,2],[2,1],[0,3],[3,0],[3,0],[1,2,0],[3,0],[1,2] +00587fa010_940928.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[3,0,0],[2,1,0],[1,0,2],[0,0,3],[0,3,0],[3,0,0],[2,0,1],[3,0],[2,1,0],[3,0,0,0],[1,2],[2,0,1],[0,1,2],[2,0,1],[2,1],[3,0],[3,0],[2,0,1],[3,0,0,0],[3,0],[3,0],[1,1,0,1],[0,3],[0,1,2],[3,0,0,0],[1,2,0],[1,0,2,0,0],[2,0,1],[3,0,0],[1,2,0],[0,3,0],[1,2,0],[1,2,0],[2,1],[2,1],[0,3],[3,0],[3,0],[0,3,0],[3,0],[1,2] +00588fa010_940307.tif,[1,2],[0,3],[3,0,0,0,0,0,0],[2,1],[0,3],[3,0],[0,0,3],[1,2,0],[0,0,3],[0,2,1],[0,2,1],[0,0,3],[2,0,1],[3,0],[2,1,0],[1,0,2,0],[3,0],[3,0,0],[0,3,0],[1,2,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[1,2],[1,2,0,0],[0,3],[1,1,1],[2,1,0,0],[1,2,0],[3,0,0,0,0],[3,0,0],[1,1,1],[1,2,0],[1,0,2],[0,2,0],[0,2,1],[3,0],[1,2],[2,1],[0,3],[0,3],[2,1,0],[3,0],[1,2] +00589fa010_940928.tif,[3,0],[2,1],[2,0,0,0,0,1,0],[0,3],[1,2],[0,3],[3,0,0],[1,1,1],[2,1,0],[2,1,0],[1,1,1],[2,1,0],[1,0,2],[2,1],[1,2,0],[2,1,0,0],[1,2],[2,0,1],[3,0,0],[2,0,1],[2,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[3,0],[2,1],[1,0,0,2],[0,3],[0,3,0],[3,0,0,0],[1,2,0],[3,0,0,0,0],[2,0,1],[2,0,1],[3,0,0],[2,0,1],[2,0,1],[2,1,0],[3,0],[1,2],[0,3],[2,1],[2,1],[0,3,0],[3,0],[3,0] +00590fa010_940928.tif,[1,2],[2,1],[2,0,1,0,0,0,0],[0,3],[3,0],[1,2],[1,1,1],[2,0,1],[2,1,0],[1,2,0],[1,1,1],[1,2,0],[0,2,1],[2,1],[2,0,1],[2,1,0,0],[0,3],[2,1,0],[0,0,3],[0,0,3],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,1],[1,1,1,0],[3,0],[0,1,2],[1,2,0,0],[2,1,0],[1,0,2,0,0],[2,0,1],[1,1,1],[2,1,0],[1,2,0],[2,1,0],[0,1,2],[2,1],[2,1],[1,2],[3,0],[1,2],[1,1,1],[3,0],[3,0] +00591fa010_940928.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[1,2],[0,3],[2,1],[3,0,0],[2,0,1],[2,0,1],[0,2,1],[1,1,1],[2,1,0],[0,0,3],[1,2],[0,3,0],[3,0,0,0],[0,3],[1,0,2],[0,3,0],[0,1,2],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[2,1,0,0],[0,3],[2,1,0],[3,0,0,0],[0,3,0],[3,0,0,0,0],[3,0,0],[0,0,3],[3,0,0],[2,0,1],[0,3,0],[2,1,0],[1,2],[1,2],[0,3],[3,0],[3,0],[1,1,1],[2,1],[1,2] +00592fa010_940928.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[1,2],[2,0,1],[3,0,0],[1,0,2],[0,2,1],[1,1,1],[0,3,0],[0,1,2],[2,1],[1,1,1],[2,1,0,0],[1,2],[3,0,0],[1,0,2],[1,1,1],[1,2],[3,0],[3,0],[3,0,0],[2,0,1,0],[2,1],[2,1],[0,2,0,1],[0,3],[0,3,0],[3,0,0,0],[1,2,0],[2,0,1,0,0],[3,0,0],[2,0,1],[1,2,0],[1,2,0],[0,3,0],[1,2,0],[1,2],[3,0],[1,2],[2,1],[1,2],[0,0,3],[3,0],[2,1] +00593fb010_940928.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[1,2],[1,2],[1,2],[1,0,2],[1,1,1],[0,0,3],[0,0,3],[1,2,0],[0,3,0],[1,0,2],[2,1],[2,0,1],[3,0,0,0],[0,3],[2,0,1],[0,3,0],[2,0,1],[3,0],[3,0],[3,0],[1,1,1],[3,0,0,0],[1,2],[3,0],[1,2,0,0],[0,3],[2,0,1],[0,2,1,0],[1,1,1],[3,0,0,0,0],[2,0,1],[2,0,1],[3,0,0],[2,0,1],[0,3,0],[3,0,0],[3,0],[2,1],[0,3],[2,1],[0,3],[3,0,0],[3,0],[3,0] +00594fa010_940928.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[0,3],[1,2],[0,3],[1,0,2],[0,1,2],[1,0,2],[0,2,1],[2,1,0],[1,2,0],[0,1,2],[3,0],[0,3,0],[3,0,0,0],[0,3],[3,0,0],[0,3,0],[2,1,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[2,1],[0,1,0,2],[0,3],[2,0,1],[0,1,2,0],[1,2,0],[3,0,0,0,0],[3,0,0],[1,0,2],[0,3,0],[0,2,1],[1,2,0],[0,3,0],[1,2],[1,2],[0,3],[2,1],[0,3],[3,0,0],[0,3],[3,0] +00595fa010_940928.tif,[2,1],[3,0],[0,0,2,0,0,0,1],[1,2],[1,2],[1,2],[3,0,0],[1,0,2],[1,1,1],[1,1,1],[0,3,0],[2,1,0],[1,0,2],[3,0],[0,0,3],[0,2,0,1],[0,3],[2,0,1],[1,1,1],[2,0,1],[3,0],[3,0],[3,0],[3,0,0],[2,0,1,0],[2,1],[3,0],[1,1,1,0],[1,2],[1,1,0],[3,0,0,0],[2,1,0],[0,0,3,0,0],[3,0,0],[0,0,3],[0,1,2],[1,1,1],[1,1,1],[0,2,1],[1,2],[0,3],[1,2],[3,0],[2,1],[0,3,0],[1,2],[2,1] +00596fa010_940928.tif,[0,3],[2,1],[3,0,0,0,0,0,0],[2,1],[3,0],[3,0],[1,0,2],[1,1,1],[0,0,3],[0,2,1],[0,1,2],[0,1,2],[2,0,1],[1,2],[1,2,0],[0,2,0,1],[2,1],[1,0,2],[0,3,0],[1,2,0],[1,2],[3,0],[3,0],[1,1,1],[2,0,1,0],[3,0],[2,0],[0,2,1,0],[0,3],[0,2,1],[3,0,0,0],[1,2,0],[1,0,2,0,0],[3,0,0],[0,0,3],[1,1,1],[2,1,0],[1,2,0],[1,1,1],[3,0],[3,0],[2,1],[1,2],[3,0],[1,0,2],[3,0],[3,0] +00597fa010_940928.tif,[2,1],[3,0],[1,0,2,0,0,0,0],[1,2],[0,3],[2,1],[2,0,1],[2,0,1],[2,1,0],[2,1,0],[0,1,2],[2,0,1],[2,0,1],[3,0],[2,0,1],[2,0,0,1],[0,3],[2,0,1],[0,1,2],[0,2,1],[3,0],[3,0],[3,0],[0,2,1],[3,0,0,0],[3,0],[3,0],[1,0,0,2],[0,3],[1,2,0],[3,0,0,0],[1,1,1],[0,0,3,0,0],[1,0,2],[3,0,0],[1,2,0],[2,1,0],[2,1,0],[2,1,0],[2,1],[2,1],[1,2],[2,1],[3,0],[2,0,1],[3,0],[1,2] +00598fa010_940928.tif,[0,3],[1,2],[3,0,0,0,0,0,0],[2,1],[0,3],[2,1],[0,2,1],[1,2,0],[0,3,0],[3,0,0],[0,1,2],[1,0,2],[2,0,1],[2,1],[1,2,0],[1,1,0,1],[3,0],[2,0,1],[3,0,0],[2,1,0],[3,0],[0,3],[3,0],[1,1,1],[3,0,0,0],[2,1],[2,1],[1,2,0,0],[0,3],[1,2,0],[1,2,0,0],[0,1,2],[3,0,0,0,0],[2,0,1],[2,0,1],[0,1,2],[1,2,0],[1,0,2],[0,0,3],[3,0],[1,1],[1,2],[0,3],[0,3],[0,2,1],[3,0],[3,0] +00599fa010_940928.tif,[1,2],[0,3],[3,0,0,0,0,0,0],[2,1],[1,2],[2,1],[0,2,1],[2,0,1],[2,1,0],[1,2,0],[0,3,0],[1,1,1],[0,0,3],[3,0],[2,1,0],[0,0,3,0],[3,0],[2,1,0],[2,1,0],[1,2,0],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[3,0],[1,2],[1,1,0,1],[2,1],[2,0,1],[0,2,1,0],[0,1,2],[3,0,0,0,0],[1,2,0],[1,1,1],[0,0,3],[1,1,1],[2,0,1],[0,1,2],[3,0],[1,2],[0,3],[0,3],[0,3],[0,1,2],[2,1],[2,1] +00600fa010_940928.tif,[0,3],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[1,2],[2,1,0],[2,1,0],[1,2,0],[2,1,0],[0,2,0],[0,1,2],[3,0,0],[3,0],[0,3,0],[0,2,1,0],[1,2],[3,0,0],[3,0,0],[0,2,1],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[1,2],[2,1],[0,3,0,0],[1,2],[0,2,1],[3,0,0,0],[0,3,0],[3,0,0,0,0],[1,1,1],[2,0,1],[0,3,0],[0,3,0],[2,1,0],[2,1,0],[3,0],[3,0],[0,3],[0,3],[3,0],[0,1,2],[3,0],[2,1] +00601fb010_940928.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[0,3],[1,2],[0,3],[1,1,1],[2,0,1],[3,0,0],[0,3,0],[1,2,0],[3,0,0],[3,0,0],[2,1],[0,3,0],[3,0,0,0],[3,0],[3,0,0],[2,0,1],[1,0,2],[3,0],[3,0],[3,0],[2,1,0],[3,0,0,0],[0,3],[2,0],[2,1,0,0],[0,3],[0,3,0],[3,0,0,0],[3,0,0],[1,1,0,1,0],[1,1,1],[3,0,0],[0,0,3],[1,2,0],[2,1,0],[0,0,3],[1,2],[2,1],[0,3],[2,1],[3,0],[2,1,0],[3,0],[2,1] +00602fa010_940928.tif,[1,2],[2,1],[2,0,1,0,0,0,0],[1,2],[0,3],[0,3],[1,0,2],[2,1,0],[2,0,1],[1,0,2],[3,0,0],[1,1,1],[1,1,1],[0,3],[2,1,0],[3,0,0,0],[1,2],[3,0,0],[1,2,0],[2,1,0],[3,0],[3,0],[3,0],[2,1,0],[3,0,0,0],[3,0],[3,0],[2,1,0,0],[0,3],[0,1,2],[2,1,0,0],[3,0,0],[2,0,1,0,0],[3,0,0],[3,0,0],[0,3,0],[0,3,0],[1,0,2],[0,3,0],[1,2],[3,0],[1,2],[3,0],[1,2],[3,0,0],[3,0],[2,1] +00603fa010_940928.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[0,3],[2,1],[1,2],[1,0,2],[1,1,1],[2,0,1],[1,1,1],[1,2,0],[2,1,0],[1,2,0],[2,1],[2,1,0],[1,2,0,0],[0,3],[1,0,2],[0,2,1],[1,0,2],[3,0],[3,0],[3,0],[2,1,0],[3,0,0,0],[1,2],[3,0],[1,2,0,0],[1,2],[1,1,1],[3,0,0,0],[1,2,0],[3,0,0,0,0],[1,0,2],[1,1,1],[2,1,0],[2,0,1],[2,0,1],[1,1,1],[3,0],[1,1],[1,2],[1,2],[2,1],[1,1,1],[3,0],[3,0] +00604fa010_940928.tif,[2,1],[2,1],[2,0,1,0,0,0,0],[0,3],[0,3],[0,3],[0,3,0],[3,0,0],[1,1,1],[2,1,0],[0,3,0],[1,2,0],[2,1,0],[3,0],[1,1,1],[0,1,0,2],[3,0],[2,1,0],[2,0,1],[0,1,2],[2,1],[3,0],[3,0],[2,0,1],[0,0,2,1],[3,0],[3,0],[0,0,3,0],[0,3],[0,2,1],[3,0,0,0],[2,1,0],[0,1,0,2,0],[1,1,1],[2,0,1],[1,0,2],[1,1,1],[1,0,2],[1,0,2],[1,2],[1,2],[0,3],[3,0],[1,2],[1,1,1],[3,0],[3,0] +00605fa010_940928.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[2,0,1],[0,3,0],[1,2,0],[1,2,0],[0,3,0],[2,0,1],[3,0,0],[2,1],[0,0,3],[3,0,0,0],[3,0],[2,0,1],[2,0,1],[2,1,0],[3,0],[0,3],[3,0],[0,3,0],[3,0,0,0],[3,0],[2,1],[1,1,1,0],[1,2],[1,2,0],[0,1,2,0],[0,0,3],[3,0,0,0,0],[3,0,0],[1,0,2],[0,3,0],[1,2,0],[1,1,1],[0,1,2],[1,2],[2,1],[0,3],[3,0],[0,3],[1,2,0],[2,1],[3,0] +00606fa010_940928.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[2,1],[2,1],[1,2],[0,2,1],[3,0,0],[2,0,1],[1,1,1],[0,0,3],[1,1,1],[0,1,2],[2,1],[2,1,0],[3,0,0,0],[2,1],[1,0,2],[3,0,0],[1,0,2],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[2,1],[2,0],[0,3,0,0],[3,0],[1,1,1],[0,1,2,0],[2,0,1],[3,0,0,0,0],[2,1,0],[2,0,1],[0,3,0],[2,0,1],[1,1,1],[0,3,0],[2,1],[1,2],[1,2],[3,0],[0,3],[1,1,1],[3,0],[3,0] +00607fb010_940928.tif,[1,2],[1,2],[3,0,0,0,0,0,0],[2,1],[0,3],[0,3],[1,1,1],[2,0,1],[3,0,0],[0,2,1],[0,3,0],[1,1,1],[2,0,1],[1,2],[1,2,0],[0,0,2,1],[0,3],[3,0,0],[1,1,1],[1,1,1],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[3,0],[0,3],[0,3,0,0],[0,3],[0,3,0],[3,0,0,0],[2,1,0],[3,0,0,0,0],[2,0,1],[2,1,0],[3,0,0],[2,1,0],[1,2,0],[2,1,0],[3,0],[0,3],[1,2],[0,3],[3,0],[1,1,1],[3,0],[2,1] +00608fa010_940928.tif,[2,1],[0,3],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[2,0,1],[1,2,0],[0,0,3],[0,1,2],[0,1,2],[0,3,0],[1,0,2],[3,0],[1,1,1],[1,2,0,0],[0,3],[3,0,0],[0,3,0],[3,0,0],[3,0],[3,0],[3,0],[2,1,0],[3,0,0,0],[2,1],[3,0],[0,0,0,3],[1,2],[0,2,0],[3,0,0,0],[2,1,0],[2,0,1,0,0],[1,0,2],[3,0,0],[1,2,0],[1,1,1],[1,1,1],[2,1,0],[0,3],[2,1],[0,3],[3,0],[2,1],[2,1,0],[2,1],[2,1] +00609fa010_940928.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[0,3],[0,3],[1,2],[3,0,0],[3,0,0],[2,0,1],[3,0,0],[0,3,0],[2,0,1],[2,0,1],[1,2],[3,0,0],[2,1,0,0],[1,2],[2,0,1],[3,0,0],[1,1,1],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[3,0],[1,2],[1,1,0,1],[2,1],[0,2,1],[3,0,0,0],[1,2,0],[3,0,0,0,0],[3,0,0],[2,0,1],[1,2,0],[1,2,0],[2,0,1],[2,1,0],[3,0],[2,1],[1,2],[0,3],[1,2],[0,0,3],[3,0],[2,1] +00610fa010_940928.tif,[0,3],[3,0],[3,0,0,0,0,0,0],[2,1],[0,3],[1,2],[3,0,0],[1,2,0],[2,0,1],[3,0,0],[0,2,1],[3,0,0],[1,1,1],[3,0],[1,0,2],[1,1,1,0],[3,0],[3,0,0],[3,0,0],[2,0,1],[3,0],[3,0],[3,0],[2,1,0],[1,0,2,0],[3,0],[3,0],[2,1,0,0],[0,3],[0,2,1],[3,0,0,0],[0,3,0],[2,0,0,1,0],[2,0,1],[3,0,0],[0,1,2],[1,1,1],[2,1,0],[1,2,0],[1,2],[1,2],[0,3],[1,2],[3,0],[0,0,3],[3,0],[3,0] +00611fa010_940307.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[1,0,2],[2,0,1],[1,0,2],[0,3,0],[0,3,0],[2,1,0],[3,0,0],[2,1],[2,0,1],[0,2,1,0],[3,0],[3,0,0],[2,1,0],[3,0,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[1,2],[0,2,0,1],[0,3],[0,2,0],[2,1,0,0],[1,2,0],[3,0,0,0,0],[3,0,0],[3,0,0],[0,0,3],[0,2,1],[1,1,1],[0,1,2],[3,0],[1,2],[3,0],[0,3],[0,3],[1,1,1],[2,1],[2,1] +00612fa010_940928.tif,[2,1],[3,0],[2,0,1,0,0,0,0],[0,3],[0,3],[0,3],[1,0,2],[1,1,1],[0,0,3],[2,1,0],[2,1,0],[2,1,0],[1,1,1],[0,3],[2,0,1],[1,0,1,1],[0,3],[1,0,2],[0,3,0],[3,0,0],[3,0],[3,0],[3,0],[2,1,0],[3,0,0,0],[3,0],[3,0],[1,2,0,0],[0,3],[0,3,0],[3,0,0,0],[3,0,0],[1,0,2,0,0],[3,0,0],[1,0,2],[2,1,0],[1,1,1],[0,3,0],[0,3,0],[1,2],[1,1],[0,3],[3,0],[3,0],[3,0,0],[3,0],[1,2] +00613fa010_940928.tif,[3,0],[3,0],[0,0,3,0,0,0,0],[0,3],[0,3],[1,2],[3,0,0],[3,0,0],[3,0,0],[2,1,0],[1,2,0],[2,1,0],[0,0,3],[3,0],[1,0,2],[0,0,2,1],[3,0],[0,0,3],[0,1,2],[1,1,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[0,3],[0,3,0,0],[0,3],[0,2,1],[3,0,0,0],[2,1,0],[1,0,2,0,0],[0,1,2],[1,0,2],[2,1,0],[2,0,1],[1,1,1],[3,0,0],[3,0],[0,3],[3,0],[0,3],[3,0],[3,0,0],[0,3],[3,0] +00614fa010_940928.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[2,0,1],[2,1,0],[0,0,3],[0,1,2],[0,3,0],[2,1,0],[2,1,0],[1,2],[0,1,2],[1,1,0,1],[1,2],[3,0,0],[1,1,1],[3,0,0],[3,0],[3,0],[3,0],[2,1,0],[3,0,0,0],[2,1],[3,0],[1,1,1,0],[1,2],[0,3,0],[3,0,0,0],[1,2,0],[3,0,0,0,0],[2,0,1],[2,1,0],[0,0,3],[0,3,0],[3,0,0],[1,0,2],[2,1],[2,1],[0,3],[3,0],[2,1],[2,1,0],[3,0],[3,0] +00615fa010_940928.tif,[3,0],[3,0],[2,0,1,0,0,0,0],[2,1],[0,3],[2,1],[1,1,1],[0,2,1],[2,0,1],[1,2,0],[1,2,0],[2,0,0],[1,0,2],[3,0],[2,1,0],[2,0,1,0],[3,0],[1,0,2],[3,0,0],[2,0,1],[2,1],[3,0],[3,0],[3,0,0],[2,0,0,0],[3,0],[3,0],[3,0,0,0],[0,3],[0,2,0],[3,0,0,0],[0,3,0],[2,0,1,0,0],[3,0,0],[3,0,0],[2,1,0],[1,2,0],[3,0,0],[2,1,0],[3,0],[1,2],[1,2],[0,3],[3,0],[3,0,0],[1,2],[0,3] +00616fa010_940928.tif,[2,1],[2,1],[2,0,1,0,0,0,0],[0,3],[2,1],[1,2],[1,2,0],[3,0,0],[2,1,0],[2,1,0],[1,2,0],[2,0,1],[1,1,1],[1,2],[0,3,0],[0,2,0,1],[2,1],[1,2,0],[2,0,1],[1,1,1],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[3,0],[1,1,0,1],[1,2],[0,2,0],[3,0,0,0],[2,1,0],[0,1,2,0,0],[2,0,1],[0,3,0],[2,1,0],[0,1,2],[3,0,0],[2,1,0],[1,2],[1,2],[0,3],[3,0],[3,0],[3,0,0],[0,3],[3,0] +00617fa010_940928.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[0,3],[1,2],[3,0],[2,0,1],[3,0,0],[0,0,3],[0,0,3],[2,1,0],[1,2,0],[3,0,0],[0,3],[1,2,0],[2,1,0,0],[2,1],[2,0,1],[1,1,1],[1,2,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[1,2],[2,0],[0,2,1,0],[0,3],[1,1,1],[3,0,0,0],[0,3,0],[3,0,0,0,0],[3,0,0],[0,1,2],[2,0,1],[1,0,2],[1,1,1],[0,3,0],[3,0],[1,2],[1,2],[1,2],[3,0],[3,0,0],[0,3],[2,1] +00618fa010_940928.tif,[3,0],[3,0],[2,0,1,0,0,0,0],[0,3],[1,2],[1,2],[2,0,1],[2,1,0],[3,0,0],[1,1,1],[0,3,0],[2,1,0],[2,0,1],[2,1],[2,1,0],[3,0,0,0],[0,3],[2,0,1],[1,2,0],[3,0,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[3,0],[2,0,1,0],[3,0],[0,1,2],[3,0,0,0],[2,1,0],[0,1,2,0,0],[3,0,0],[1,1,1],[1,1,1],[0,3,0],[2,1,0],[1,2,0],[1,2],[2,1],[2,1],[3,0],[3,0],[1,2,0],[3,0],[2,1] +00619fa010_940928.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[1,2,0],[2,1,0],[0,0,3],[0,1,2],[0,3,0],[2,1,0],[3,0,0],[2,1],[0,0,3],[3,0,0,0],[3,0],[2,1,0],[2,0,1],[2,0,1],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[1,2],[1,1,1,0],[0,3],[0,3,0],[3,0,0,0],[0,3,0],[0,0,3,0,0],[2,1,0],[3,0,0],[0,1,2],[1,1,1],[1,0,2],[0,2,1],[2,1],[1,2],[0,3],[3,0],[3,0],[1,2,0],[3,0],[1,2] +00620fa010_940928.tif,[0,3],[3,0],[3,0,0,0,0,0,0],[2,1],[0,3],[1,2],[1,2,0],[1,2,0],[1,2,0],[3,0,0],[0,3,0],[3,0,0],[3,0,0],[3,0],[0,1,2],[0,3,0,0],[3,0],[3,0,0],[2,0,1],[2,1,0],[3,0],[1,2],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,1],[1,2,0,0],[0,3],[0,1,1],[3,0,0,0],[1,2,0],[3,0,0,0,0],[1,0,2],[2,0,1],[0,0,3],[0,1,2],[2,1,0],[0,1,2],[2,1],[1,2],[1,2],[3,0],[2,1],[0,2,1],[3,0],[3,0] +00621fb010_940928.tif,[1,2],[2,1],[2,0,1,0,0,0,0],[1,2],[0,3],[2,1],[3,0,0],[0,1,2],[0,2,1],[2,1,0],[0,1,2],[1,0,2],[2,0,1],[1,2],[0,3,0],[3,0,0,0],[0,3],[2,1,0],[0,3,0],[3,0,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[2,1,0,0],[0,3],[0,3,0],[3,0,0,0],[1,2,0],[3,0,0,0,0],[2,0,1],[0,0,3],[3,0,0],[3,0,0],[0,3,0],[1,2,0],[3,0],[1,2],[0,3],[3,0],[3,0],[0,1,2],[3,0],[3,0] +00622fa010_940928.tif,[3,0],[1,2],[0,0,0,3,0,0,0],[1,2],[0,3],[0,3],[0,3,0],[2,1,0],[0,0,3],[0,1,2],[2,0,1],[1,2,0],[3,0,0],[2,1],[0,0,3],[2,1,0,0],[1,2],[3,0,0],[3,0,0],[2,0,1],[0,3],[3,0],[3,0],[1,0,2],[3,0,0,0],[2,1],[3,0],[1,1,0,1],[1,2],[1,0,1],[3,0,0,0],[1,2,0],[0,0,0,3,0],[0,1,2],[3,0,0],[1,2,0],[0,3,0],[2,1,0],[3,0,0],[1,2],[1,2],[1,2],[3,0],[2,1],[0,2,1],[1,2],[2,1] +00623fa010_940928.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[1,2],[1,2],[0,3],[0,2,1],[3,0,0],[0,3,0],[2,1,0],[2,1,0],[1,2,0],[2,1,0],[2,1],[1,2,0],[1,2,0,0],[2,1],[0,0,3],[1,1,1],[2,0,1],[3,0],[3,0],[3,0],[2,0,1],[3,0,0,0],[1,2],[3,0],[0,1,0,2],[0,3],[0,2,1],[3,0,0,0],[2,1,0],[0,1,1,1,0],[3,0,0],[3,0,0],[1,2,0],[1,1,1],[3,0,0],[0,3,0],[2,1],[2,1],[0,3],[2,1],[3,0],[2,1,0],[1,2],[3,0] +00624fa010_940928.tif,[3,0],[2,1],[2,0,1,0,0,0,0],[1,2],[0,3],[0,3],[3,0,0],[0,3,0],[1,2,0],[2,0,1],[1,2,0],[2,0,1],[3,0,0],[3,0],[2,0,1],[0,1,1,1],[3,0],[0,3,0],[0,0,3],[2,0,1],[2,1],[3,0],[3,0],[3,0,0],[3,0,0,0],[1,2],[1,2],[1,1,1,0],[0,3],[1,1,1],[3,0,0,0],[3,0,0],[0,2,0,1,0],[2,0,1],[2,0,1],[0,0,3],[1,2,0],[2,1,0],[0,0,3],[3,0],[0,3],[0,3],[0,3],[3,0],[0,3,0],[2,1],[2,1] +00625fa010_940928.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[0,0,3],[1,2,0],[1,0,2],[0,2,1],[1,0,2],[1,1,1],[3,0,0],[3,0],[1,2,0],[0,2,1,0],[2,1],[2,1,0],[3,0,0],[2,1,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,1],[2,1,0,0],[0,3],[0,2,1],[3,0,0,0],[0,3,0],[3,0,0,0,0],[3,0,0],[0,0,3],[0,2,1],[0,3,0],[1,2,0],[1,2,0],[3,0],[0,3],[0,3],[0,3],[3,0],[2,1,0],[3,0],[3,0] +00626fa010_940928.tif,[1,2],[2,1],[0,0,0,3,0,0,0],[1,2],[0,3],[3,0],[0,1,2],[1,2,0],[3,0,0],[1,1,1],[0,2,1],[0,3,0],[3,0,0],[1,2],[1,2,0],[1,0,0,1],[0,3],[1,1,1],[1,0,2],[2,0,1],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[1,1],[2,1,0,0],[1,2],[1,2,0],[3,0,0,0],[0,2,1],[0,3,0,0,0],[0,0,3],[0,0,3],[2,1,0],[3,0,0],[3,0,0],[1,2,0],[3,0],[0,3],[2,1],[1,2],[3,0],[0,2,1],[3,0],[3,0] +00627fa010_940928.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[2,1],[1,2],[1,2],[2,1,0],[3,0,0],[0,0,3],[0,0,3],[3,0,0],[0,3,0],[1,0,2],[2,1],[0,3,0],[2,0,1,0],[0,3],[1,0,2],[0,1,2],[2,0,1],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[3,0],[0,3,0,0],[2,1],[1,1,1],[3,0,0,0],[1,2,0],[0,3,0,0,0],[1,2,0],[3,0,0],[0,2,1],[0,3,0],[0,2,1],[0,3,0],[3,0],[1,2],[1,2],[2,1],[3,0],[2,1,0],[2,1],[2,1] +00628fb010_940928.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[3,0,0],[0,3,0],[3,0,0],[1,2,0],[0,2,1],[2,0,1],[1,1,1],[0,3],[1,0,2],[2,1,0,0],[3,0],[3,0,0],[2,1,0],[1,2,0],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[2,1],[2,1],[1,2,0,0],[2,1],[0,3,0],[2,1,0,0],[2,0,1],[2,0,1,0,0],[2,0,1],[1,0,2],[1,2,0],[1,2,0],[2,1,0],[1,2,0],[3,0],[3,0],[1,2],[2,1],[2,1],[0,2,1],[3,0],[3,0] +00629fa010_940928.tif,[0,3],[2,1],[3,0,0,0,0,0,0],[3,0],[0,3],[1,2],[2,0,1],[2,0,1],[0,0,3],[0,2,1],[0,3,0],[1,0,2],[2,0,1],[2,1],[0,3,0],[1,2,0,0],[3,0],[2,1,0],[1,0,2],[0,3,0],[0,3],[3,0],[3,0],[2,0,0],[3,0,0,0],[2,1],[2,1],[0,2,0,1],[0,2],[0,3,0],[3,0,0,0],[1,2,0],[2,0,1,0,0],[3,0,0],[1,0,2],[0,1,2],[3,0,0],[3,0,0],[0,1,2],[2,1],[1,2],[0,3],[1,2],[2,1],[1,2,0],[2,1],[3,0] +00630fa010_940928.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[2,1],[0,3],[2,1],[1,0,2],[2,1,0],[2,1,0],[1,1,1],[0,2,1],[0,1,2],[2,1,0],[2,1],[1,0,2],[0,2,1,0],[2,1],[2,1,0],[0,0,3],[3,0,0],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[2,1],[1,2,0,0],[2,1],[0,3,0],[3,0,0,0],[1,2,0],[3,0,0,0,0],[3,0,0],[1,0,2],[0,2,1],[0,3,0],[0,3,0],[0,2,1],[3,0],[0,3],[2,1],[0,3],[3,0],[0,0,3],[2,1],[2,1] +00631fa010_940928.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[1,2],[1,2],[0,3],[1,1,1],[2,1,0],[2,1,0],[3,0,0],[0,3,0],[3,0,0],[2,0,1],[0,3],[2,0,1],[2,1,0,0],[1,2],[2,0,1],[1,1,1],[3,0,0],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[3,0],[0,2,1,0],[2,1],[0,3,0],[3,0,0,0],[1,1,1],[3,0,0,0,0],[3,0,0],[2,0,1],[0,3,0],[1,2,0],[2,0,1],[0,3,0],[3,0],[3,0],[1,2],[2,1],[0,3],[0,2,0],[3,0],[3,0] +00632fa010_940928.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[2,1,0],[2,1,0],[2,1,0],[3,0,0],[1,2,0],[1,0,2],[3,0,0],[2,1],[1,2,0],[2,1,0,0],[2,1],[2,0,1],[2,0,1],[0,3,0],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[2,1],[2,1],[1,2,0,0],[0,3],[0,2,1],[3,0,0,0],[2,1,0],[3,0,0,0,0],[3,0,0],[1,0,2],[1,2,0],[0,3,0],[1,2,0],[1,2,0],[2,1],[2,1],[0,3],[3,0],[2,1],[1,2,0],[3,0],[2,1] +00633fa010_940928.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[0,0,3],[0,2,1],[1,2,0],[1,2,0],[0,1,2],[2,1,0],[2,0,1],[1,2],[2,0,1],[0,2,0,1],[1,2],[1,0,2],[0,3,0],[0,3,0],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[2,1],[2,1],[1,1,1,0],[0,3],[0,2,1],[3,0,0,0],[2,0,1],[3,0,0,0,0],[3,0,0],[2,0,1],[2,1,0],[0,2,1],[0,3,0],[1,2,0],[3,0],[1,2],[2,1],[0,3],[3,0],[0,3,0],[3,0],[1,2] +00634fa010_940928.tif,[0,3],[3,0],[3,0,0,0,0,0,0],[1,2],[1,2],[1,2],[2,1,0],[3,0,0],[2,0,1],[1,1,1],[0,0,3],[2,0,1],[2,1,0],[2,1],[2,0,1],[2,1,0,0],[2,1],[3,0,0],[2,0,1],[2,1,0],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[3,0],[3,0],[1,2,0,0],[2,1],[0,2,1],[3,0,0,0],[2,1,0],[3,0,0,0,0],[3,0,0],[0,0,3],[3,0,0],[2,1,0],[1,2,0],[1,2,0],[3,0],[1,2],[0,3],[3,0],[3,0],[1,1,1],[2,1],[3,0] +00635fa010_941031.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[0,2],[0,3],[0,3],[1,1,1],[2,1,0],[1,2,0],[2,1,0],[0,3,0],[2,1,0],[1,0,2],[2,1],[2,1,0],[2,1,0,0],[2,1],[3,0,0],[3,0,0],[2,0,0],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[2,1],[0,2,0,1],[1,2],[0,3,0],[3,0,0,0],[0,2,1],[3,0,0,0,0],[3,0,0],[3,0,0],[0,3,0],[0,3,0],[3,0,0],[1,1,1],[2,1],[3,0],[0,3],[3,0],[1,2],[1,1,1],[3,0],[3,0] +00636fa010_941031.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[1,2],[1,2],[1,2],[1,0,2],[2,0,1],[1,2,0],[2,1,0],[0,3,0],[2,1,0],[1,0,2],[3,0],[3,0,0],[1,1,1,0],[2,1],[1,0,2],[0,0,3],[1,2,0],[3,0],[1,2],[3,0],[0,3,0],[3,0,0,0],[3,0],[3,0],[0,3,0,0],[0,3],[0,3,0],[3,0,0,0],[1,1,1],[3,0,0,0,0],[3,0,0],[1,0,2],[3,0,0],[1,1,1],[1,1,1],[2,1,0],[2,1],[2,1],[0,3],[2,1],[3,0],[1,1,1],[3,0],[2,1] +00637fa010_941031.tif,[0,2],[2,1],[3,0,0,0,0,0,0],[2,1],[2,1],[1,2],[1,2,0],[0,2,1],[1,2,0],[1,2,0],[0,3,0],[2,0,1],[2,1,0],[3,0],[3,0,0],[0,3,0,0],[3,0],[2,0,1],[3,0,0],[3,0,0],[3,0],[0,3],[2,0],[1,2,0],[3,0,0,0],[3,0],[2,1],[2,1,0,0],[3,0],[0,1,2],[1,2,0,0],[1,0,2],[3,0,0,0,0],[2,0,1],[3,0,0],[0,2,1],[1,0,2],[1,0,2],[0,3,0],[3,0],[1,2],[3,0],[1,2],[0,3],[2,1,0],[3,0],[3,0] +00638fa010_941031.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[1,1,1],[1,2,0],[3,0,0],[0,2,1],[1,2,0],[0,0,3],[3,0,0],[1,2],[1,2,0],[2,1,0,0],[2,1],[2,1,0],[3,0,0],[3,0,0],[3,0],[0,3],[3,0],[1,1,1],[3,0,0,0],[2,1],[3,0],[1,2,0,0],[1,2],[1,2,0],[3,0,0,0],[1,2,0],[3,0,0,0,0],[3,0,0],[3,0,0],[0,1,2],[0,2,0],[3,0,0],[0,2,1],[0,3],[2,1],[0,3],[3,0],[3,0],[0,3,0],[3,0],[2,1] +00640fa010_941031.tif,[2,0],[3,0],[1,0,0,0,0,2,0],[1,2],[0,3],[0,3],[2,0,1],[0,3,0],[2,1,0],[1,2,0],[0,0,3],[1,2,0],[3,0,0],[3,0],[0,2,1],[2,0,0,1],[0,3],[1,2,0],[0,3,0],[2,1,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[1,2],[2,1],[0,0,3,0],[1,2],[0,2,1],[3,0,0,0],[2,1,0],[0,0,0,3,0],[2,0,1],[3,0,0],[1,2,0],[3,0,0],[0,3,0],[0,3,0],[3,0],[2,1],[0,3],[3,0],[2,1],[0,3,0],[2,1],[2,1] +00641fa010_941031.tif,[2,1],[2,1],[0,2,0,1,0,0,0],[0,3],[2,1],[0,3],[1,2,0],[1,1,1],[0,3,0],[3,0,0],[0,1,2],[2,0,1],[3,0,0],[3,0],[1,2,0],[2,0,0,1],[2,1],[2,1,0],[3,0,0],[2,1,0],[2,1],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[1,2,0,0],[1,2],[0,2,1],[3,0,0,0],[2,1,0],[0,0,0,3,0],[0,3,0],[1,0,2],[1,2,0],[2,0,1],[2,1,0],[0,3,0],[1,2],[2,1],[0,3],[3,0],[3,0],[0,3,0],[3,0],[1,2] +00642fa010_941031.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[2,1],[1,2],[1,2],[1,1,1],[1,1,1],[1,2,0],[1,2,0],[0,3,0],[2,1,0],[3,0,0],[2,1],[0,3,0],[2,0,0,1],[3,0],[3,0,0],[1,0,2],[1,0,2],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[0,3],[1,1,1,0],[3,0],[0,2,1],[3,0,0,0],[2,1,0],[3,0,0,0,0],[1,0,2],[1,0,2],[0,2,1],[2,1,0],[1,2,0],[0,1,2],[3,0],[1,2],[3,0],[0,3],[2,1],[3,0,0],[3,0],[3,0] +00643fa010_941031.tif,[3,0],[2,1],[0,0,3,0,0,0,0],[1,2],[2,1],[2,1],[1,0,2],[1,2,0],[0,0,3],[0,0,3],[1,2,0],[2,1,0],[2,1,0],[3,0],[0,0,3],[1,1,1,0],[0,3],[3,0,0],[0,2,1],[1,0,2],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[3,0],[1,0,2,0],[1,2],[0,3,0],[3,0,0,0],[1,2,0],[0,0,3,0,0],[3,0,0],[3,0,0],[1,2,0],[0,2,1],[1,0,2],[1,2,0],[1,2],[1,2],[1,2],[3,0],[3,0],[3,0,0],[3,0],[2,1] +00644fa010_941031.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[1,2],[1,1,1],[2,1,0],[1,2,0],[3,0,0],[0,3,0],[2,0,1],[3,0,0],[1,2],[2,0,1],[2,0,1,0],[3,0],[3,0,0],[3,0,0],[0,0,3],[3,0],[0,3],[3,0],[0,3,0],[3,0,0,0],[3,0],[2,1],[0,3,0,0],[1,2],[0,3,0],[3,0,0,0],[1,1,0],[3,0,0,0,0],[3,0,0],[2,0,1],[1,1,1],[0,1,2],[3,0,0],[3,0,0],[0,3],[1,2],[0,3],[3,0],[1,2],[1,0,2],[3,0],[3,0] +00645fa010_941031.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[1,2],[1,2],[0,3],[1,0,2],[0,1,2],[0,0,3],[0,1,2],[0,1,2],[0,3,0],[0,2,1],[2,1],[0,2,1],[1,1,0,1],[0,3],[3,0,0],[0,3,0],[2,0,1],[3,0],[3,0],[3,0],[2,1,0],[3,0,0,0],[1,2],[2,1],[0,2,0,1],[3,0],[1,2,0],[3,0,0,0],[3,0,0],[3,0,0,0,0],[3,0,0],[0,1,2],[0,3,0],[0,1,2],[2,1,0],[1,1,1],[3,0],[1,2],[1,2],[0,3],[3,0],[0,2,1],[3,0],[2,1] +00646fa010_941031.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[2,0,1],[0,1,2],[1,0,2],[0,1,2],[1,2,0],[2,1,0],[2,0,1],[1,2],[2,1,0],[1,2,0,0],[0,3],[3,0,0],[0,0,3],[1,0,2],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[1,2,0,0],[0,3],[0,3,0],[3,0,0,0],[0,3,0],[3,0,0,0,0],[3,0,0],[2,0,1],[0,3,0],[0,2,1],[1,2,0],[1,2,0],[2,1],[1,2],[1,2],[3,0],[3,0],[0,3,0],[3,0],[2,1] +00647fa010_941031.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[1,0,2],[1,1,1],[1,2,0],[3,0,0],[1,2,0],[2,0,1],[3,0,0],[2,1],[1,1,1],[3,0,0,0],[1,2],[1,0,2],[2,1,0],[1,2,0],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[1,1,0,1],[0,3],[0,3,0],[3,0,0,0],[2,1,0],[3,0,0,0,0],[2,0,1],[1,0,2],[3,0,0],[0,2,1],[3,0,0],[0,3,0],[0,3],[2,1],[0,3],[3,0],[3,0],[3,0,0],[3,0],[2,1] +00648fa010_941031.tif,[0,3],[3,0],[3,0,0,0,0,0,0],[3,0],[0,3],[2,1],[1,1,1],[2,1,0],[1,2,0],[1,1,1],[0,3,0],[0,0,3],[3,0,0],[2,1],[0,0,3],[0,2,0,1],[2,1],[3,0,0],[2,0,1],[2,1,0],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[2,0],[1,1],[1,1,1,0],[1,2],[0,3,0],[3,0,0,0],[0,3,0],[3,0,0,0,0],[0,0,3],[1,1,1],[0,0,3],[2,1,0],[2,1,0],[0,0,3],[3,0],[1,2],[0,3],[1,2],[3,0],[0,1,2],[3,0],[3,0] +00649fa010_941031.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[2,1],[0,3],[2,1],[2,0,1],[2,1,0],[1,1,1],[1,2,0],[3,0,0],[2,0,1],[3,0,0],[2,1],[2,1,0],[0,2,1,0],[3,0],[2,0,1],[1,1,1],[2,1,0],[2,1],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[0,3],[2,1,0,0],[0,3],[0,2,1],[3,0,0,0],[0,3,0],[1,1,1,0,0],[2,0,1],[3,0,0],[2,1,0],[2,0,1],[1,2,0],[1,2,0],[2,1],[2,1],[3,0],[0,3],[2,1],[3,0,0],[1,2],[2,1] +00650fa010_941031.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[2,1],[0,3],[2,1],[3,0,0],[3,0,0],[3,0,0],[1,2,0],[1,2,0],[2,0,1],[3,0,0],[3,0],[1,1,1],[0,2,1,0],[3,0],[1,0,2],[2,0,1],[1,2,0],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[3,0],[3,0],[1,2,0,0],[3,0],[3,0,0],[1,2,0,0],[0,3,0],[3,0,0,0,0],[3,0,0],[1,0,2],[1,1,1],[1,2,0],[1,0,2],[0,3,0],[2,1],[2,1],[0,3],[1,2],[1,2],[0,1,2],[3,0],[3,0] +00652fa010_941031.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[1,0,2],[0,2,1],[3,0,0],[0,2,1],[2,1,0],[2,1,0],[2,0,1],[0,3],[1,1,1],[3,0,0,0],[1,2],[3,0,0],[0,1,2],[2,1,0],[2,1],[3,0],[3,0],[3,0,0],[3,0,0,0],[1,2],[1,2],[3,0,0,0],[0,3],[1,2,0],[3,0,0,0],[0,3,0],[3,0,0,0,0],[2,0,1],[0,0,3],[3,0,0],[0,2,1],[1,2,0],[1,2,0],[2,1],[1,2],[0,3],[3,0],[3,0],[3,0,0],[2,1],[2,1] +00653fa010_941031.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[2,0,1],[1,1,1],[1,2,0],[1,2,0],[0,3,0],[3,0,0],[3,0,0],[0,3],[3,0,0],[1,1,1,0],[2,1],[3,0,0],[2,0,1],[2,1,0],[3,0],[0,3],[3,0],[2,0,1],[3,0,0,0],[2,1],[2,1],[2,1,0,0],[2,1],[0,2,1],[3,0,0,0],[1,1,1],[3,0,0,0,0],[3,0,0],[1,1,1],[2,1,0],[1,1,1],[2,0,1],[2,0,1],[2,1],[3,0],[0,3],[3,0],[2,1],[0,2,1],[3,0],[3,0] +00654fb010_941031.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[2,1],[1,2],[2,1],[0,2,0],[0,2,1],[3,0,0],[0,3,0],[0,1,2],[0,0,3],[3,0,0],[2,1],[2,0,1],[0,3,0,0],[2,1],[1,1,1],[3,0,0],[3,0,0],[3,0],[0,3],[3,0],[2,0,1],[3,0,0,0],[3,0],[1,2],[1,2,0,0],[1,2],[0,3,0],[2,1,0,0],[0,1,2],[3,0,0,0,0],[1,0,2],[3,0,0],[0,0,3],[0,3,0],[2,1,0],[0,0,3],[3,0],[2,1],[2,1],[0,3],[0,3],[0,1,2],[2,1],[1,2] +00655fb010_941031.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[1,2],[1,2],[1,2],[1,0,2],[2,0,1],[3,0,0],[0,3,0],[0,2,1],[1,0,2],[1,1,1],[2,1],[3,0,0],[0,1,1,1],[0,3],[3,0,0],[1,1,1],[3,0,0],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[3,0],[2,0,0,1],[2,1],[0,2,1],[3,0,0,0],[1,2,0],[3,0,0,0,0],[3,0,0],[1,1,1],[2,0,1],[1,0,2],[2,1,0],[3,0,0],[1,2],[3,0],[0,3],[3,0],[2,1],[1,1,1],[3,0],[2,1] +00656fa010_941121.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[3,0,0],[2,1,0],[1,0,2],[1,2,0],[1,2,0],[3,0,0],[3,0,0],[1,2],[1,1,1],[0,2,1,0],[1,2],[2,0,1],[1,1,1],[1,2,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[1,2],[3,0],[2,0,1,0],[0,3],[0,2,1],[3,0,0,0],[0,3,0],[2,0,0,0,0],[1,1,1],[3,0,0],[0,1,2],[1,0,2],[2,1,0],[0,3,0],[2,1],[1,2],[0,3],[0,3],[2,1],[2,1,0],[2,1],[3,0] +00657fa010_941121.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[1,2,0],[1,2,0],[2,1,0],[1,2,0],[0,3,0],[2,1,0],[1,0,2],[0,3],[0,3,0],[2,0,1,0],[1,2],[3,0,0],[3,0,0],[3,0,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[1,2],[1,1,0,1],[1,2],[0,1,2],[3,0,0,0],[1,2,0],[3,0,0,0,0],[2,0,1],[2,0,1],[0,3,0],[0,2,0],[1,2,0],[2,1,0],[3,0],[0,3],[0,3],[3,0],[2,1],[3,0,0],[1,2],[3,0] +00659fa010_941121.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[1,2],[2,0,1],[0,3,0],[3,0,0],[0,3,0],[0,2,1],[2,1,0],[1,0,2],[2,1],[2,1,0],[3,0,0,0],[1,2],[1,0,2],[1,2,0],[2,0,1],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[1,2],[0,2,0,1],[0,3],[0,3,0],[3,0,0,0],[0,3,0],[3,0,0,0,0],[2,0,1],[2,0,1],[1,2,0],[2,1,0],[1,2,0],[2,1,0],[3,0],[2,1],[1,2],[1,2],[3,0],[3,0,0],[3,0],[2,1] +00660fa010_941121.tif,[1,2],[2,1],[2,0,1,0,0,0,0],[0,3],[0,3],[1,2],[0,0,3],[2,1,0],[2,0,1],[1,2,0],[1,2,0],[3,0,0],[0,1,2],[3,0],[1,2,0],[3,0,0,0],[0,3],[3,0,0],[2,0,1],[0,0,3],[3,0],[3,0],[2,1],[2,0,1],[0,0,3,0],[0,3],[2,1],[2,1,0,0],[0,3],[0,3,0],[3,0,0,0],[3,0,0],[3,0,0,0,0],[3,0,0],[1,0,2],[1,2,0],[1,1,1],[1,1,1],[0,2,1],[2,1],[1,2],[0,3],[2,1],[3,0],[0,2,1],[3,0],[0,3] +00661fa010_941121.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[1,2],[1,2],[1,2],[1,2,0],[1,1,1],[1,2,0],[1,2,0],[0,0,3],[2,0,1],[3,0,0],[1,2],[0,0,3],[2,1,0,0],[3,0],[3,0,0],[3,0,0],[1,2,0],[0,3],[0,3],[3,0],[1,2,0],[3,0,0,0],[3,0],[3,0],[1,1,0,1],[0,3],[1,2,0],[3,0,0,0],[0,3,0],[3,0,0,0,0],[0,1,1],[1,1,1],[0,1,2],[0,2,1],[3,0,0],[1,2,0],[3,0],[2,1],[0,3],[2,1],[3,0],[1,2,0],[3,0],[2,1] +00662fa010_941121.tif,[0,3],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[1,2],[3,0,0],[2,1,0],[1,2,0],[2,1,0],[1,2,0],[1,0,2],[0,1,2],[1,2],[2,1,0],[2,1,0,0],[1,2],[3,0,0],[2,0,1],[2,0,1],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[2,1],[2,1],[1,2,0,0],[0,3],[0,3,0],[3,0,0,0],[3,0,0],[3,0,0,0,0],[3,0,0],[2,0,1],[0,3,0],[0,3,0],[3,0,0],[0,3,0],[1,2],[2,1],[0,3],[3,0],[3,0],[1,1,1],[3,0],[3,0] +00663fa010_941121.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[2,1],[1,0,2],[2,1,0],[0,0,3],[0,0,3],[0,3,0],[3,0,0],[2,0,1],[1,2],[1,1,1],[2,1,0,0],[3,0],[2,0,1],[2,0,1],[3,0,0],[3,0],[0,3],[3,0],[0,3,0],[3,0,0,0],[3,0],[2,1],[0,3,0,0],[0,3],[1,1,1],[3,0,0,0],[3,0,0],[3,0,0,0,0],[2,0,1],[2,1,0],[1,2,0],[2,0,1],[1,2,0],[1,2,0],[2,1],[1,2],[2,1],[3,0],[3,0],[1,2,0],[3,0],[1,2] +00664fa010_941121.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[1,2],[1,2],[0,3],[2,0,1],[1,2,0],[0,0,3],[2,0,1],[0,3,0],[1,0,2],[2,0,1],[3,0],[2,1,0],[0,1,1,1],[0,3],[2,0,1],[0,2,1],[0,0,3],[0,3],[3,0],[3,0],[3,0,0],[2,0,1,0],[1,2],[2,1],[0,0,3,0],[0,3],[2,1,0],[1,1,0,0],[2,0,1],[3,0,0,0,0],[2,0,1],[2,0,1],[0,0,3],[1,1,1],[1,0,2],[0,0,3],[2,1],[1,2],[0,3],[1,2],[3,0],[3,0,0],[2,1],[1,2] +00665fa010_941121.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[0,3],[1,2],[0,3],[0,2,1],[1,0,2],[2,1,0],[2,1,0],[0,1,2],[2,0,1],[1,0,2],[1,2],[1,2,0],[2,1,0,0],[3,0],[0,2,1],[2,1,0],[1,1,1],[3,0],[2,1],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[0,1,0,2],[0,3],[0,3,0],[3,0,0,0],[1,2,0],[2,1,0,0,0],[2,0,1],[3,0,0],[1,2,0],[0,2,1],[1,1,1],[3,0,0],[1,2],[3,0],[0,3],[3,0],[0,3],[1,2,0],[3,0],[3,0] +00666fa010_941121.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[1,2],[1,0,2],[1,1,1],[0,0,3],[0,1,2],[0,2,1],[2,1,0],[3,0,0],[2,1],[2,1,0],[2,1,0,0],[0,3],[3,0,0],[0,2,1],[3,0,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[1,2],[3,0],[2,0,0,1],[2,1],[0,2,1],[3,0,0,0],[2,1,0],[3,0,0,0,0],[3,0,0],[3,0,0],[0,3,0],[2,1,0],[1,2,0],[0,2,1],[3,0],[1,2],[1,2],[1,2],[3,0],[3,0,0],[3,0],[2,1] +00667fa010_941121.tif,[1,2],[0,3],[3,0,0,0,0,0,0],[2,1],[0,3],[1,2],[2,1,0],[1,0,2],[0,0,3],[0,3,0],[0,1,2],[2,0,1],[3,0,0],[3,0],[0,0,3],[0,1,2,0],[2,1],[1,0,2],[2,0,1],[3,0,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[0,3],[0,3,0,0],[0,3],[1,2,0],[3,0,0,0],[2,1,0],[2,0,1,0,0],[3,0,0],[2,0,1],[0,1,2],[1,1,1],[3,0,0],[0,1,2],[2,1],[2,1],[2,1],[0,3],[2,1],[2,1,0],[3,0],[3,0] +00668fa010_941121.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[2,0,1],[1,2,0],[2,0,1],[1,2,0],[0,1,2],[1,0,2],[3,0,0],[2,1],[0,3,0],[0,1,1,1],[2,1],[2,1,0],[0,1,2],[1,1,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[2,1],[0,2,0,1],[0,3],[0,2,1],[3,0,0,0],[1,2,0],[3,0,0,0,0],[3,0,0],[3,0,0],[0,2,1],[1,1,1],[1,2,0],[0,2,1],[3,0],[2,1],[1,2],[1,2],[3,0],[2,1,0],[3,0],[3,0] +00669fa010_940307.tif,[3,0],[2,1],[2,1,0,0,0,0,0],[3,0],[2,1],[1,2],[0,0,3],[2,0,1],[2,0,1],[0,2,1],[0,2,1],[1,2,0],[3,0,0],[2,1],[0,2,1],[2,0,0,1],[0,3],[2,0,1],[1,1,1],[1,1,1],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[1,2],[2,1,0,0],[0,3],[0,2,1],[3,0,0,0],[3,0,0],[0,0,0,3,0],[2,0,1],[2,0,1],[1,2,0],[1,2,0],[1,1,1],[2,1,0],[3,0],[0,3],[0,3],[1,2],[2,1],[3,0,0],[3,0],[3,0] +00670fa010_941121.tif,[1,2],[1,2],[3,0,0,0,0,0,0],[0,3],[1,2],[0,3],[2,1,0],[0,2,1],[0,3,0],[3,0,0],[0,3,0],[2,0,1],[3,0,0],[2,1],[1,1,1],[3,0,0,0],[0,3],[3,0,0],[2,0,1],[3,0,0],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[3,0],[0,1,1,1],[1,2],[0,2,1],[3,0,0,0],[3,0,0],[3,0,0,0,0],[2,0,1],[3,0,0],[0,3,0],[0,3,0],[2,1,0],[2,1,0],[1,2],[1,2],[0,2],[3,0],[1,2],[0,1,2],[3,0],[2,1] +00671fa010_941121.tif,[2,1],[3,0],[1,0,1,0,1,0,0],[1,2],[0,3],[0,3],[0,3,0],[1,2,0],[2,0,1],[2,0,1],[0,2,1],[3,0,0],[3,0,0],[2,1],[2,0,1],[1,1,0,1],[2,1],[3,0,0],[1,0,2],[2,0,1],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[0,2,1,0],[0,3],[1,1,1],[3,0,0,0],[0,3,0],[0,1,2,0,0],[2,0,1],[2,0,1],[0,3,0],[2,1,0],[1,0,2],[2,1,0],[2,1],[0,3],[2,0],[2,1],[3,0],[1,0,2],[3,0],[2,0] +00672fa010_941121.tif,[3,0],[3,0],[2,0,0,1,0,0,0],[0,3],[1,2],[0,3],[1,2,0],[2,1,0],[0,3,0],[2,1,0],[0,2,1],[2,0,1],[3,0,0],[2,1],[0,1,2],[2,1,0,0],[3,0],[3,0,0],[2,0,1],[1,2,0],[3,0],[3,0],[3,0],[1,1,1],[3,0,0,0],[3,0],[2,1],[0,2,1,0],[2,1],[0,1,2],[3,0,0,0],[1,1,1],[0,0,0,3,0],[0,2,1],[3,0,0],[0,3,0],[1,1,1],[2,0,1],[1,2,0],[2,1],[0,3],[1,2],[2,1],[3,0],[1,1,1],[2,1],[1,2] +00673fa010_941121.tif,[0,3],[3,0],[3,0,0,0,0,0,0],[3,0],[0,3],[1,2],[1,2,0],[1,1,1],[0,0,3],[0,1,2],[1,1,1],[3,0,0],[3,0,0],[1,2],[0,2,1],[0,3,0,0],[3,0],[3,0,0],[2,0,1],[0,3,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,1],[1,0,2,0],[0,3],[1,1,1],[3,0,0,0],[1,1,1],[1,0,2,0,0],[1,0,2],[1,0,2],[1,1,1],[1,1,1],[1,2,0],[0,1,2],[3,0],[1,2],[0,3],[1,2],[3,0],[3,0,0],[2,1],[2,1] +00674fa010_941121.tif,[3,0],[2,1],[0,1,0,2,0,0,0],[2,1],[1,2],[1,2],[1,0,2],[0,1,2],[0,0,3],[0,2,1],[3,0,0],[0,3,0],[0,2,1],[2,1],[0,2,1],[1,0,2,0],[0,3],[0,0,3],[1,2,0],[2,0,1],[0,3],[3,0],[3,0],[2,1,0],[3,0,0,0],[0,3],[2,1],[1,0,1,1],[0,3],[0,2,0],[2,0,1,0],[1,2,0],[0,0,0,1,2],[2,0,1],[2,0,1],[1,2,0],[1,2,0],[2,1,0],[3,0,0],[3,0],[2,1],[2,1],[3,0],[2,1],[1,2,0],[3,0],[2,1] +00675fa010_941121.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[1,2],[3,0,0],[1,2,0],[2,1,0],[3,0,0],[0,3,0],[3,0,0],[3,0,0],[2,1],[0,0,3],[0,3,0,0],[3,0],[3,0,0],[2,0,1],[1,0,2],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[2,1,0,0],[0,3],[1,1,1],[3,0,0,0],[1,2,0],[3,0,0,0,0],[1,0,2],[2,0,1],[2,1,0],[0,3,0],[2,1,0],[0,3,0],[2,1],[2,1],[0,3],[2,1],[3,0],[1,2,0],[3,0],[2,1] +00676fa010_941121.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[0,3],[1,2],[0,3],[2,1,0],[2,1,0],[2,0,1],[1,2,0],[2,1,0],[1,0,2],[2,0,0],[2,1],[1,1,1],[1,2,0,0],[3,0],[2,0,1],[3,0,0],[1,0,2],[3,0],[0,3],[3,0],[3,0,0],[2,0,0,0],[3,0],[3,0],[0,2,0,1],[2,1],[2,1,0],[0,3,0,0],[2,0,1],[3,0,0,0,0],[2,0,1],[0,0,3],[2,1,0],[1,1,1],[2,1,0],[0,3,0],[0,3],[2,1],[1,2],[2,1],[1,2],[1,1,1],[3,0],[2,1] +00677fa010_941121.tif,[2,1],[1,2],[2,1,0,0,0,0,0],[1,2],[0,3],[0,3],[1,2,0],[1,2,0],[0,0,3],[0,2,1],[0,1,2],[2,0,1],[2,1,0],[2,1],[2,0,1],[3,0,0,0],[3,0],[2,1,0],[3,0,0],[1,2,0],[3,0],[3,0],[3,0],[1,0,2],[2,0,1,0],[3,0],[3,0],[1,1,1,0],[0,3],[0,2,1],[3,0,0,0],[2,1,0],[1,2,0,0,0],[1,0,2],[2,0,1],[0,0,3],[1,1,1],[2,1,0],[0,0,3],[1,2],[2,1],[0,3],[2,1],[3,0],[0,3,0],[3,0],[2,1] +00678fa010_941121.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[0,3],[0,3],[1,2],[2,0,1],[0,0,3],[3,0,0],[1,2,0],[2,1,0],[0,3,0],[0,1,2],[3,0],[0,3,0],[1,2,0,0],[0,3],[3,0,0],[1,1,1],[1,0,2],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[1,1,1,0],[1,2],[0,1,2],[3,0,0,0],[2,1,0],[3,0,0,0,0],[3,0,0],[1,0,2],[3,0,0],[2,0,1],[0,3,0],[3,0,0],[2,1],[1,2],[0,3],[2,1],[3,0],[0,2,1],[3,0],[2,1] +00679fa010_941121.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[2,1],[0,3],[2,1],[3,0,0],[1,1,1],[0,0,3],[1,0,2],[2,1,0],[3,0,0],[3,0,0],[3,0],[1,2,0],[0,2,1,0],[3,0],[0,0,3],[0,1,2],[3,0,0],[3,0],[3,0],[3,0],[3,0,0],[2,0,0,1],[2,1],[2,1],[2,0,1,0],[1,2],[0,3,0],[3,0,0,0],[1,2,0],[2,0,1,0,0],[2,0,1],[2,1,0],[0,3,0],[1,1,1],[0,0,3],[0,2,1],[2,1],[0,3],[2,1],[0,3],[3,0],[3,0,0],[2,1],[3,0] +00680fa010_941121.tif,[3,0],[3,0],[2,0,0,0,1,0,0],[1,2],[0,3],[1,2],[2,0,1],[2,1,0],[2,0,1],[0,1,2],[2,1,0],[0,3,0],[2,0,1],[0,3],[1,2,0],[2,0,0,1],[3,0],[1,0,2],[1,0,2],[3,0,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[0,3],[0,1,0,2],[1,2],[0,3,0],[3,0,0,0],[0,3,0],[3,0,0,0,0],[2,0,1],[3,0,0],[0,3,0],[2,1,0],[2,1,0],[1,2,0],[2,1],[2,1],[3,0],[1,2],[3,0],[3,0,0],[2,1],[2,1] +00681fa010_941121.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[1,1,1],[3,0,0],[2,1,0],[0,2,1],[1,1,1],[2,1,0],[2,0,1],[2,1],[1,0,2],[2,0,0,1],[3,0],[3,0,0],[3,0,0],[1,2,0],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,1],[1,0,0,2],[1,2],[0,3,0],[3,0,0,0],[0,3,0],[3,0,0,0,0],[1,0,2],[3,0,0],[0,3,0],[0,2,1],[1,2,0],[1,2,0],[0,3],[1,2],[0,3],[3,0],[2,1],[1,2,0],[3,0],[3,0] +00682fa010_941121.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[0,0,3],[1,1,1],[1,2,0],[3,0,0],[0,2,1],[0,3,0],[1,2,0],[0,3],[2,1,0],[3,0,0,0],[0,3],[3,0,0],[0,2,1],[1,1,1],[3,0],[0,3],[2,1],[1,2,0],[3,0,0,0],[3,0],[2,1],[0,3,0,0],[2,1],[0,3,0],[3,0,0,0],[0,1,2],[3,0,0,0,0],[0,0,3],[2,0,1],[2,1,0],[2,0,1],[0,3,0],[3,0,0],[1,2],[2,1],[0,3],[3,0],[3,0],[0,0,3],[3,0],[0,3] +00683fa010_941121.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[1,2],[2,1],[0,3],[2,0,1],[2,0,1],[2,0,1],[0,3,0],[1,2,0],[2,1,0],[1,1,1],[1,2],[1,1,1],[2,1,0,0],[0,3],[1,1,1],[0,1,2],[0,1,2],[2,1],[3,0],[3,0],[3,0,0],[2,0,0,0],[3,0],[3,0],[0,0,0,3],[0,3],[1,2,0],[3,0,0,0],[1,2,0],[0,0,3,0,0],[3,0,0],[1,1,1],[2,1,0],[0,1,2],[1,2,0],[1,2,0],[1,2],[0,3],[1,2],[2,1],[3,0],[3,0,0],[2,1],[3,0] +00684fa010_941121.tif,[2,1],[3,0],[2,0,1,0,0,0,0],[1,2],[0,3],[0,3],[2,0,1],[1,2,0],[3,0,0],[1,1,1],[1,0,2],[3,0,0],[0,0,3],[2,1],[1,1,1],[3,0,0,0],[3,0],[3,0,0],[1,2,0],[0,1,2],[3,0],[3,0],[3,0],[2,0,1],[3,0,0,0],[2,1],[1,2],[1,1,0,1],[0,3],[1,2,0],[3,0,0,0],[0,3,0],[0,0,3,0,0],[3,0,0],[2,0,1],[1,2,0],[3,0,0],[2,1,0],[0,3,0],[0,3],[2,1],[1,2],[3,0],[3,0],[0,2,1],[3,0],[3,0] +00685fa010_941121.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[1,2],[1,2],[0,3],[0,0,3],[2,0,1],[3,0,0],[0,3,0],[1,2,0],[2,1,0],[3,0,0],[2,1],[1,1,1],[3,0,0,0],[0,3],[3,0,0],[0,1,2],[1,0,2],[2,1],[3,0],[3,0],[2,1,0],[3,0,0,0],[1,2],[3,0],[1,1,1,0],[1,2],[0,3,0],[3,0,0,0],[1,2,0],[2,0,1,0,0],[2,0,1],[2,0,1],[1,2,0],[0,1,2],[3,0,0],[0,3,0],[2,1],[1,2],[0,3],[3,0],[3,0],[1,2,0],[3,0],[3,0] +00686fb010_941121.tif,[3,0],[3,0],[1,0,1,0,0,1,0],[1,2],[2,1],[0,3],[0,2,1],[1,1,1],[2,0,1],[0,3,0],[0,2,1],[2,1,0],[3,0,0],[3,0],[1,1,1],[3,0,0,0],[3,0],[3,0,0],[3,0,0],[2,1,0],[1,2],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[2,1],[1,1,0,1],[3,0],[0,3,0],[2,1,0,0],[1,2,0],[0,1,0,2,0],[2,0,1],[3,0,0],[0,3,0],[0,3,0],[2,0,1],[0,2,1],[0,3],[2,1],[0,3],[3,0],[3,0],[3,0,0],[3,0],[2,1] +00687fa010_941121.tif,[0,3],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[2,1],[2,1,0],[2,1,0],[2,0,1],[1,2,0],[0,3,0],[1,0,2],[2,0,1],[1,2],[1,0,2],[1,1,0,1],[2,1],[1,1,1],[2,0,1],[3,0,0],[3,0],[0,3],[3,0],[1,2,0],[2,0,0,0],[2,1],[2,1],[1,2,0,0],[2,1],[3,0,0],[0,3,0,0],[2,0,1],[3,0,0,0,0],[3,0,0],[2,0,1],[0,1,2],[1,1,1],[1,0,2],[0,1,2],[3,0],[1,2],[1,2],[1,2],[0,3],[0,1,2],[3,0],[2,1] +00688fa010_941121.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[0,3],[0,3],[2,1],[0,0,3],[1,2,0],[0,0,3],[0,0,3],[0,0,3],[1,0,2],[3,0,0],[1,1],[3,0,0],[1,2,0,0],[0,3],[1,2,0],[0,1,2],[3,0,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[0,1,2,0],[1,2],[1,1,1],[1,2,0,0],[1,2,0],[3,0,0,0,0],[1,0,2],[3,0,0],[0,2,1],[0,1,2],[1,2,0],[0,1,2],[1,2],[1,2],[0,3],[2,1],[3,0],[3,0,0],[3,0],[3,0] +00689fa010_941121.tif,[0,3],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[0,2],[3,0,0],[0,2,1],[2,1,0],[2,1,0],[0,1,2],[1,0,2],[2,0,1],[2,1],[0,3,0],[1,2,0,0],[2,1],[3,0,0],[0,2,1],[1,2,0],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[3,0],[1,0,0,2],[0,3],[1,2,0],[3,0,0,0],[0,3,0],[3,0,0,0,0],[2,0,1],[2,0,1],[0,1,2],[0,1,2],[1,2,0],[0,1,2],[0,3],[2,1],[0,3],[1,2],[3,0],[0,3,0],[3,0],[2,1] +00690fa010_941121.tif,[2,1],[3,0],[2,0,1,0,0,0,0],[2,1],[0,3],[1,2],[1,0,2],[1,2,0],[2,0,1],[2,1,0],[0,3,0],[2,1,0],[2,0,1],[3,0],[0,1,2],[1,2,0,0],[0,3],[3,0,0],[0,3,0],[2,1,0],[3,0],[3,0],[3,0],[3,0,0],[2,0,1,0],[2,1],[3,0],[2,1,0,0],[0,3],[2,1,0],[3,0,0,0],[2,1,0],[1,0,2,0,0],[3,0,0],[3,0,0],[0,3,0],[0,2,1],[3,0,0],[0,2,1],[1,2],[3,0],[1,2],[1,2],[3,0],[2,1,0],[3,0],[1,2] +00691fa010_941121.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[2,1],[1,2],[1,2],[2,1,0],[2,0,1],[0,0,3],[1,1,1],[0,3,0],[2,1,0],[3,0,0],[2,1],[2,1,0],[1,1,1,0],[0,3],[1,0,2],[0,1,2],[2,1,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[1,2],[3,0],[0,3,0,0],[1,2],[0,3,0],[3,0,0,0],[2,1,0],[3,0,0,0,0],[3,0,0],[3,0,0],[0,2,1],[1,1,1],[0,3,0],[2,1,0],[3,0],[0,3],[2,1],[1,2],[2,1],[3,0,0],[3,0],[1,2] +00692fa010_941121.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[2,1],[0,3],[0,3],[1,1,1],[0,2,1],[1,0,2],[0,2,1],[0,1,2],[0,0,3],[2,0,1],[3,0],[1,1,1],[1,2,0,0],[2,1],[2,0,1],[2,1,0],[0,0,3],[3,0],[3,0],[3,0],[1,0,2],[0,2,1,0],[3,0],[3,0],[0,0,2,1],[0,3],[3,0,0],[1,2,0,0],[1,1,1],[2,1,0,0,0],[2,0,1],[3,0,0],[0,2,1],[0,3,0],[3,0,0],[0,3,0],[3,0],[1,2],[1,2],[0,3],[0,3],[0,2,1],[3,0],[3,0] +00693fa010_941121.tif,[1,2],[3,0],[2,0,1,0,0,0,0],[0,3],[0,3],[1,2],[3,0,0],[2,1,0],[2,1,0],[3,0,0],[1,0,2],[2,0,1],[2,1,0],[2,1],[2,1,0],[0,3,0,0],[3,0],[1,0,2],[3,0,0],[1,0,2],[2,1],[3,0],[3,0],[1,1,1],[0,0,1,2],[2,1],[2,1],[1,0,1,1],[0,3],[0,3,0],[3,0,0,0],[1,2,0],[1,0,2,0,0],[1,1,1],[1,0,2],[0,1,2],[1,2,0],[1,2,0],[0,1,2],[3,0],[1,2],[0,3],[3,0],[2,1],[3,0,0],[3,0],[1,2] +00694fa010_941121.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[2,0,1],[1,2,0],[3,0,0],[1,2,0],[0,3,0],[2,1,0],[1,1,1],[2,1],[2,1,0],[3,0,0,0],[1,2],[2,0,1],[0,2,1],[3,0,0],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[3,0],[2,1],[3,0,0,0],[0,3],[0,2,0],[3,0,0,0],[2,0,1],[3,0,0,0,0],[3,0,0],[3,0,0],[3,0,0],[1,2,0],[3,0,0],[1,2,0],[1,2],[2,1],[0,3],[3,0],[0,3],[0,2,1],[3,0],[3,0] +00695fb010_941121.tif,[3,0],[2,1],[2,0,1,0,0,0,0],[1,2],[0,3],[1,2],[0,0,3],[1,0,2],[0,0,3],[0,0,3],[1,1,1],[0,2,1],[3,0,0],[3,0],[0,2,1],[1,0,2,0],[0,3],[0,0,3],[0,2,1],[1,0,2],[3,0],[3,0],[3,0],[2,1,0],[3,0,0,0],[3,0],[1,2],[0,3,0,0],[2,1],[0,3,0],[2,1,0,0],[2,0,1],[2,0,1,0,0],[1,1,1],[3,0,0],[1,2,0],[0,0,3],[0,1,2],[1,2,0],[3,0],[2,1],[2,1],[0,3],[0,3],[1,1,1],[2,1],[3,0] +00696fb010_941121.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[2,1,0],[2,0,1],[0,3,0],[1,2,0],[1,1,1],[1,0,2],[2,0,1],[2,1],[1,1,1],[2,1,0,0],[1,2],[3,0,0],[1,1,1],[2,0,1],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[2,0,1,0],[1,2],[0,2,1],[2,1,0,0],[0,3,0],[3,0,0,0,0],[3,0,0],[0,0,3],[0,2,1],[2,1,0],[2,1,0],[0,3,0],[3,0],[1,2],[0,3],[2,1],[3,0],[1,2,0],[3,0],[3,0] +00697fa010_941121.tif,[2,1],[3,0],[2,0,1,0,0,0,0],[0,3],[0,3],[0,3],[2,1,0],[3,0,0],[2,1,0],[0,3,0],[0,3,0],[1,2,0],[0,2,1],[3,0],[1,1,1],[3,0,0,0],[3,0],[0,0,3],[2,0,1],[3,0,0],[2,1],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[1,2,0,0],[0,2],[0,1,2],[3,0,0,0],[2,1,0],[3,0,0,0,0],[1,1,1],[3,0,0],[1,2,0],[1,0,2],[1,1,1],[0,3,0],[2,1],[1,2],[0,3],[0,3],[3,0],[0,3,0],[3,0],[2,1] +00698fb010_941121.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[2,1],[0,3],[3,0],[0,1,2],[1,0,2],[1,0,2],[0,3,0],[0,0,3],[0,0,3],[3,0,0],[1,2],[1,2,0],[0,3,0,0],[0,3],[2,0,1],[0,1,2],[3,0,0],[0,3],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,1],[0,1,0,2],[1,2],[0,3,0],[3,0,0,0],[1,2,0],[2,0,1,0,0],[2,0,1],[1,0,2],[0,2,1],[0,1,1],[1,2,0],[0,2,1],[2,1],[2,1],[1,2],[0,3],[3,0],[3,0,0],[3,0],[3,0] +00699fb010_941121.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[2,1],[2,1,0],[0,3,0],[3,0,0],[1,2,0],[0,2,1],[1,0,2],[3,0,0],[2,1],[2,1,0],[2,0,0,1],[3,0],[3,0,0],[3,0,0],[3,0,0],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[2,1],[3,0],[0,3,0,0],[1,2],[2,0,0],[0,2,1,0],[0,1,2],[3,0,0,0,0],[1,0,2],[2,0,1],[0,0,3],[3,0,0],[3,0,0],[0,2,1],[2,1],[1,2],[0,3],[3,0],[0,3],[0,2,1],[3,0],[2,1] +00700fb010_941121.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[1,2],[2,0,1],[1,1,1],[1,2,0],[3,0,0],[0,1,2],[1,2,0],[3,0,0],[3,0],[2,1,0],[3,0,0,0],[3,0],[0,0,3],[0,2,1],[1,2,0],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[3,0],[1,1,0,1],[1,2],[0,0,3],[3,0,0,0],[2,1,0],[3,0,0,0,0],[1,0,2],[3,0,0],[2,1,0],[0,3,0],[1,0,2],[2,1,0],[1,2],[2,1],[0,3],[3,0],[3,0],[2,1,0],[3,0],[3,0] +00701fa010_941201.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[0,3],[1,2],[0,3],[2,0,1],[2,1,0],[0,0,3],[0,1,2],[0,3,0],[1,2,0],[1,0,2],[2,1],[2,1,0],[2,1,0,0],[2,1],[1,1,1],[0,0,3],[3,0,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[0,2,0,1],[1,2],[0,3,0],[3,0,0,0],[2,1,0],[3,0,0,0,0],[1,0,2],[1,0,2],[1,1,1],[1,2,0],[0,3,0],[1,2,0],[2,1],[2,1],[1,2],[3,0],[3,0],[0,2,1],[3,0],[2,1] +00703fb010_941201.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[1,2],[2,1],[0,3],[1,1,1],[3,0,0],[0,2,1],[2,0,1],[0,2,1],[3,0,0],[1,1,1],[2,1],[0,1,2],[3,0,0,0],[2,1],[3,0,0],[1,0,2],[2,0,1],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[3,0],[1,0,0,2],[3,0],[1,0,2],[3,0,0,0],[1,2,0],[3,0,0,0,0],[0,3,0],[3,0,0],[0,1,2],[2,1,0],[2,1,0],[0,1,2],[0,3],[2,1],[0,3],[3,0],[3,0],[0,1,2],[3,0],[3,0] +00704fb010_941201.tif,[1,2],[0,3],[3,0,0,0,0,0,0],[2,1],[0,3],[2,1],[0,1,2],[0,2,1],[3,0,0],[2,1,0],[1,0,2],[0,2,1],[2,0,1],[0,3],[0,1,2],[3,0,0,0],[0,3],[2,0,1],[0,2,1],[2,0,1],[2,1],[0,3],[3,0],[1,2,0],[3,0,0,0],[3,0],[2,1],[1,1,0,1],[1,2],[0,3,0],[3,0,0,0],[2,0,1],[3,0,0,0,0],[2,0,1],[1,0,2],[1,2,0],[0,1,2],[2,1,0],[1,2,0],[1,2],[1,2],[0,3],[2,1],[2,1],[0,3,0],[2,1],[3,0] +00705fa010_941201.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[1,0,2],[2,1,0],[3,0,0],[2,1,0],[0,3,0],[0,0,3],[2,0,1],[1,2],[1,1,1],[1,1,1,0],[3,0],[0,0,3],[0,1,2],[1,2,0],[3,0],[0,3],[3,0],[3,0,0],[2,0,1,0],[2,1],[2,1],[0,1,2,0],[2,1],[1,1,1],[3,0,0,0],[2,0,1],[3,0,0,0,0],[2,0,1],[1,0,2],[0,2,1],[1,1,1],[2,1,0],[0,1,2],[1,2],[1,2],[0,3],[3,0],[3,0],[0,1,2],[3,0],[2,1] +00706fa010_941201.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[1,0,2],[3,0,0],[1,1,1],[1,2,0],[0,3,0],[1,2,0],[1,1,1],[3,0],[1,1,1],[3,0,0,0],[2,1],[0,3,0],[3,0,0],[1,0,2],[0,3],[3,0],[3,0],[1,1,1],[2,0,1,0],[3,0],[3,0],[0,2,0,1],[2,1],[0,3,0],[3,0,0,0],[0,3,0],[3,0,0,0,0],[2,0,1],[2,0,1],[0,3,0],[2,0,1],[0,3,0],[0,2,1],[2,1],[2,1],[0,3],[3,0],[3,0],[0,0,3],[3,0],[3,0] +00707fa010_941201.tif,[1,2],[0,3],[3,0,0,0,0,0,0],[3,0],[1,2],[3,0],[2,1,0],[0,3,0],[0,1,2],[1,0,2],[0,3,0],[2,0,1],[2,0,1],[3,0],[2,0,1],[2,0,1,0],[3,0],[1,0,2],[1,0,2],[1,0,2],[1,2],[3,0],[3,0],[2,0,1],[3,0,0,0],[3,0],[2,1],[0,2,0,1],[0,3],[0,1,2],[3,0,0,0],[3,0,0],[3,0,0,0,0],[3,0,0],[3,0,0],[0,2,1],[2,1,0],[2,1,0],[0,2,1],[3,0],[0,3],[2,1],[0,3],[3,0],[3,0,0],[3,0],[1,2] +00708fa010_941201.tif,[2,1],[0,3],[3,0,0,0,0,0,0],[3,0],[1,2],[2,1],[1,1,1],[2,1,0],[2,0,1],[0,3,0],[1,1,1],[3,0,0],[0,2,1],[2,1],[1,1,1],[2,0,1,0],[2,1],[0,3,0],[3,0,0],[3,0,0],[2,1],[3,0],[3,0],[3,0,0],[2,0,1,0],[3,0],[1,2],[2,1,0,0],[1,2],[0,2,1],[3,0,0,0],[3,0,0],[3,0,0,0,0],[0,2,1],[2,1,0],[0,0,3],[0,3,0],[2,0,1],[0,2,1],[3,0],[1,2],[1,2],[1,2],[2,1],[3,0,0],[3,0],[2,1] +00709fa010_941201.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[0,2,1],[1,2,0],[3,0,0],[2,0,1],[1,1,1],[0,0,2],[3,0,0],[2,1],[1,0,2],[3,0,0,0],[2,1],[2,1,0],[0,3,0],[1,2,0],[2,1],[0,3],[3,0],[3,0,0],[3,0,0,0],[1,2],[3,0],[1,0,2,0],[0,3],[1,0,2],[1,2,0,0],[0,1,2],[3,0,0,0,0],[3,0,0],[2,0,1],[0,1,2],[0,3,0],[2,0,0],[0,0,3],[3,0],[1,2],[0,3],[2,1],[2,1],[0,0,3],[3,0],[3,0] +00710fa010_941201.tif,[2,1],[0,3],[3,0,0,0,0,0,0],[3,0],[0,3],[1,2],[2,0,1],[3,0,0],[1,1,1],[1,0,2],[3,0,0],[1,0,2],[3,0,0],[3,0],[1,0,2],[0,3,0,0],[2,1],[2,1,0],[2,0,1],[1,0,2],[0,3],[3,0],[3,0],[0,0,3],[1,0,2,0],[3,0],[1,2],[0,2,0,1],[2,1],[0,3,0],[3,0,0,0],[1,2,0],[1,0,2,0,0],[2,0,1],[1,1,1],[0,3,0],[1,1,1],[2,1,0],[0,3,0],[3,0],[1,2],[0,3],[0,3],[3,0],[0,3,0],[3,0],[1,2] +00711fa010_941201.tif,[3,0],[1,2],[1,0,0,1,0,1,0],[3,0],[0,3],[2,1],[3,0,0],[2,1,0],[2,1,0],[1,2,0],[1,0,2],[3,0,0],[1,2,0],[1,2],[3,0,0],[2,1,0,0],[3,0],[2,1,0],[3,0,0],[1,0,2],[1,2],[3,0],[3,0],[3,0,0],[2,0,1,0],[3,0],[1,2],[0,2,0,1],[0,3],[0,3,0],[3,0,0,0],[1,2,0],[0,0,0,3,0],[1,0,2],[2,0,1],[3,0,0],[1,1,1],[1,1,1],[0,3,0],[1,1],[2,1],[3,0],[2,1],[3,0],[2,1,0],[3,0],[2,1] +00712fb010_941201.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[3,0],[0,3],[2,1],[1,2,0],[3,0,0],[2,0,1],[2,0,1],[0,2,1],[2,1,0],[3,0,0],[3,0],[1,1,1],[0,0,3,0],[3,0],[0,0,3],[2,0,1],[1,1,1],[3,0],[3,0],[3,0],[3,0,0],[1,0,2,0],[2,1],[0,3],[1,2,0,0],[1,2],[1,1,1],[3,0,0,0],[2,1,0],[3,0,0,0,0],[1,0,2],[2,0,1],[0,1,2],[3,0,0],[1,2,0],[0,0,3],[3,0],[1,2],[2,1],[1,2],[2,1],[1,1,1],[3,0],[1,2] +00713fa010_941201.tif,[1,1],[1,2],[0,3,0,0,0,0,0],[0,3],[2,1],[2,1],[0,1,2],[1,0,2],[3,0,0],[1,2,0],[1,1,1],[0,2,1],[1,0,2],[3,0],[2,0,1],[2,0,0,1],[1,2],[1,1,1],[1,0,2],[2,0,1],[1,2],[3,0],[3,0],[1,2,0],[3,0,0,0],[3,0],[2,1],[1,1,0,1],[1,2],[0,2,1],[3,0,0,0],[3,0,0],[0,0,0,0,3],[2,0,1],[2,0,1],[1,2,0],[0,3,0],[0,3,0],[0,3,0],[2,1],[0,3],[1,2],[3,0],[3,0],[1,1,1],[3,0],[3,0] +00714fa010_941201.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[2,1],[2,1],[1,2],[0,1,2],[2,0,1],[3,0,0],[0,2,1],[1,2,0],[1,2,0],[1,1,1],[3,0],[0,2,1],[2,0,1,0],[2,1],[2,0,1],[0,0,3],[2,0,1],[0,3],[3,0],[3,0],[1,0,2],[2,0,1,0],[0,3],[3,0],[0,2,0,1],[3,0],[0,2,1],[3,0,0,0],[0,1,2],[3,0,0,0,0],[1,2,0],[0,3,0],[2,1,0],[3,0,0],[0,3,0],[3,0,0],[3,0],[1,2],[2,1],[1,2],[3,0],[0,2,1],[3,0],[3,0] +00715fa010_941201.tif,[3,0],[1,2],[1,0,1,1,0,0,0],[0,3],[0,3],[2,1],[0,3,0],[2,1,0],[3,0,0],[1,1,1],[0,2,1],[3,0,0],[3,0,0],[3,0],[1,2,0],[3,0,0,0],[3,0],[2,0,1],[3,0,0],[0,3,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[1,2],[0,2,1,0],[1,2],[0,3,0],[3,0,0,0],[3,0,0],[0,1,0,2,0],[2,1,0],[2,0,1],[0,3,0],[0,0,3],[2,0,1],[0,2,1],[3,0],[1,2],[1,2],[0,3],[0,3],[1,1,1],[1,2],[2,1] +00716fa010_941201.tif,[2,1],[1,2],[1,0,1,0,0,1,0],[0,3],[0,3],[0,3],[1,1,1],[3,0,0],[1,0,2],[1,1,1],[1,2,0],[2,1,0],[2,0,1],[3,0],[1,0,2],[3,0,0,0],[2,1],[0,2,1],[2,1,0],[0,0,3],[0,3],[3,0],[3,0],[0,0,3],[0,1,0,2],[2,1],[2,1],[1,0,2,0],[2,1],[2,1,0],[3,0,0,0],[2,0,1],[0,0,0,2,1],[2,0,1],[2,0,1],[0,0,3],[1,2,0],[1,2,0],[1,0,2],[2,1],[0,3],[0,3],[3,0],[3,0],[0,3,0],[3,0],[2,1] +00717fa010_941201.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[1,1,1],[3,0,0],[2,1,0],[3,0,0],[2,1,0],[0,0,3],[1,0,2],[0,3],[2,1,0],[1,2,0,0],[2,1],[0,0,3],[1,0,2],[2,0,1],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[1,2],[1,1,0,1],[1,2],[0,2,1],[1,2,0,0],[3,0,0],[3,0,0,0,0],[1,1,1],[2,0,1],[0,3,0],[0,3,0],[3,0,0],[0,3,0],[3,0],[0,3],[0,3],[1,2],[3,0],[0,2,1],[3,0],[3,0] +00718fa010_941201.tif,[3,0],[2,1],[2,0,0,0,0,1,0],[1,2],[0,3],[1,2],[1,2,0],[2,1,0],[1,2,0],[2,1,0],[0,3,0],[2,0,1],[0,3,0],[2,1],[0,2,1],[2,1,0,0],[3,0],[1,0,2],[2,0,1],[1,1,1],[3,0],[3,0],[3,0],[2,0,1],[3,0,0,0],[0,3],[3,0],[1,0,0,2],[0,3],[0,3,0],[3,0,0,0],[2,1,0],[0,0,0,3,0],[0,3,0],[3,0,0],[1,2,0],[1,1,1],[1,1,1],[0,3,0],[3,0],[1,2],[1,2],[0,3],[2,1],[0,1,2],[3,0],[3,0] +00719fa010_941201.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[2,1],[0,3],[2,1],[3,0,0],[2,0,1],[2,1,0],[3,0,0],[0,2,1],[3,0,0],[1,1,1],[2,1],[2,0,1],[3,0,0,0],[2,1],[2,1,0],[1,0,2],[1,0,2],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[3,0],[3,0],[0,2,0,1],[0,3],[0,2,1],[3,0,0,0],[1,2,0],[3,0,0,0,0],[1,1,1],[2,0,1],[3,0,0],[2,1,0],[2,1,0],[1,2,0],[2,1],[1,2],[0,3],[1,2],[2,1],[1,1,1],[3,0],[3,0] +00720fa010_941201.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[0,3,0],[3,0,0],[2,1,0],[2,1,0],[1,1,1],[2,0,1],[2,0,1],[2,1],[2,1,0],[3,0,0,0],[1,2],[1,2,0],[2,0,1],[2,1,0],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,1],[1,0,2,0],[1,2],[1,1,0],[0,1,2,0],[1,1,1],[3,0,0,0,0],[3,0,0],[2,0,1],[0,0,3],[2,1,0],[0,1,2],[0,1,2],[3,0],[2,1],[1,2],[2,1],[0,3],[1,2,0],[3,0],[2,1] +00721fa010_941201.tif,[1,2],[0,3],[0,0,0,0,0,3,0],[1,2],[0,3],[0,3],[1,2,0],[1,1,1],[1,0,2],[0,3,0],[0,2,1],[3,0,0],[0,3,0],[2,1],[1,1,1],[0,1,0,2],[2,1],[1,1,1],[2,0,1],[2,1,0],[3,0],[2,1],[3,0],[3,0,0],[3,0,0,0],[2,1],[3,0],[1,1,0,1],[1,2],[0,2,1],[3,0,0,0],[2,1,0],[0,0,0,0,3],[3,0,0],[3,0,0],[0,2,1],[0,2,1],[1,2,0],[1,2,0],[2,1],[2,1],[0,3],[2,1],[3,0],[0,3,0],[3,0],[2,1] +00722fa010_941201.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[3,0],[1,2],[3,0],[1,1,0],[1,2,0],[3,0,0],[2,1,0],[3,0,0],[2,1,0],[3,0,0],[3,0],[1,2,0],[3,0,0,0],[3,0],[2,1,0],[2,1,0],[2,1,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[3,0],[1,2,0,0],[2,1],[1,2,0],[2,1,0,0],[2,1,0],[3,0,0,0,0],[2,1,0],[3,0,0],[1,2,0],[3,0,0],[2,1,0],[2,1,0],[3,0],[3,0],[1,2],[1,2],[3,0],[2,1,0],[3,0],[3,0] +00723fa010_941201.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[2,1],[2,1],[1,2],[1,2,0],[1,1,1],[1,2,0],[3,0,0],[1,2,0],[1,2,0],[1,2,0],[0,3],[1,1,1],[0,0,2,1],[3,0],[2,1,0],[1,1,1],[2,1,0],[3,0],[0,3],[3,0],[1,1,1],[3,0,0,0],[2,1],[1,2],[0,0,0,3],[0,3],[2,0,1],[0,2,1,0],[1,1,1],[3,0,0,0,0],[1,1,1],[3,0,0],[3,0,0],[0,1,2],[0,0,3],[1,1,1],[3,0],[1,2],[1,2],[0,3],[0,3],[0,1,2],[3,0],[2,1] +00724fa010_941201.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[3,0],[1,2],[1,2],[1,1,1],[1,2,0],[0,0,3],[1,0,2],[0,2,1],[1,0,2],[2,0,1],[3,0],[3,0,0],[0,3,0,0],[1,2],[1,0,2],[1,1,1],[1,1,1],[2,1],[3,0],[3,0],[2,0,1],[0,0,3,0],[3,0],[0,3],[0,0,2,1],[1,2],[0,1,2],[3,0,0,0],[0,3,0],[3,0,0,0,0],[2,0,1],[0,0,3],[2,0,1],[0,2,1],[3,0,0],[1,2,0],[3,0],[2,1],[2,1],[1,2],[2,1],[1,2,0],[3,0],[3,0] +00725fa010_941201.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[2,1],[1,2],[2,1],[1,1,1],[1,0,2],[1,2,0],[3,0,0],[0,3,0],[1,2,0],[1,1,1],[2,1],[1,2,0],[2,1,0,0],[0,3],[1,0,2],[0,2,1],[0,2,1],[3,0],[0,3],[3,0],[0,3,0],[3,0,0,0],[3,0],[2,1],[0,3,0,0],[0,3],[0,3,0],[3,0,0,0],[3,0,0],[3,0,0,0,0],[0,0,3],[2,0,1],[1,2,0],[0,2,1],[3,0,0],[3,0,0],[3,0],[1,2],[0,3],[1,2],[3,0],[0,0,3],[3,0],[1,2] +00726fa010_941201.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[1,2],[0,3],[2,1],[0,2,1],[2,1,0],[3,0,0],[0,1,2],[0,0,3],[3,0,0],[2,0,1],[2,1],[1,1,1],[1,2,0,0],[3,0],[0,2,1],[3,0,0],[1,0,2],[0,3],[3,0],[3,0],[2,0,1],[1,0,2,0],[2,1],[3,0],[1,0,2,0],[0,3],[0,3,0],[3,0,0,0],[1,2,0],[3,0,0,0,0],[0,3,0],[2,1,0],[0,0,3],[0,2,1],[2,0,1],[0,1,2],[1,2],[2,1],[0,3],[3,0],[2,1],[2,1,0],[3,0],[0,3] +00727fa010_941201.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[0,0,3],[1,0,2],[2,1,0],[1,2,0],[1,1,1],[0,2,1],[2,0,1],[3,0],[0,1,2],[2,0,0,1],[0,3],[2,0,1],[1,2,0],[3,0,0],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[0,2,0,1],[3,0],[0,2,0],[2,1,0,0],[2,1,0],[3,0,0,0,0],[1,0,2],[1,0,2],[2,1,0],[1,1,1],[1,2,0],[3,0,0],[1,2],[3,0],[0,3],[3,0],[3,0],[0,1,2],[3,0],[3,0] +00728fa010_941201.tif,[1,2],[1,2],[3,0,0,0,0,0,0],[3,0],[0,3],[3,0],[1,2,0],[2,1,0],[2,1,0],[1,2,0],[1,1,1],[0,0,3],[3,0,0],[2,1],[3,0,0],[0,0,1,2],[2,1],[2,1,0],[2,0,1],[1,2,0],[1,2],[0,3],[3,0],[0,3,0],[2,0,0,1],[0,3],[2,1],[0,0,1,2],[0,3],[1,1,1],[3,0,0,0],[2,1,0],[3,0,0,0,0],[0,2,1],[2,0,1],[0,1,2],[0,1,2],[0,3,0],[0,2,1],[3,0],[1,2],[1,2],[1,2],[1,2],[0,1,2],[3,0],[2,1] +00729fa010_941201.tif,[3,0],[2,1],[1,0,0,0,0,2,0],[2,1],[0,3],[0,3],[2,0,1],[0,2,1],[0,3,0],[2,1,0],[1,1,1],[1,2,0],[2,1,0],[2,1],[2,1,0],[2,0,0,1],[0,3],[2,1,0],[1,2,0],[3,0,0],[3,0],[3,0],[3,0],[2,1,0],[3,0,0,0],[3,0],[3,0],[2,0,1,0],[0,3],[0,3,0],[3,0,0,0],[3,0,0],[0,0,0,1,2],[2,0,1],[1,2,0],[0,3,0],[0,0,3],[1,1,1],[0,3,0],[2,1],[2,1],[0,3],[3,0],[0,3],[0,3,0],[3,0],[0,3] +00730fb010_941201.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[0,3],[0,2],[0,3],[1,0,2],[1,1,1],[1,2,0],[0,3,0],[1,2,0],[1,1,1],[1,0,2],[1,2],[0,3,0],[1,2,0,0],[0,3],[2,0,1],[1,2,0],[3,0,0],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[3,0],[0,1,0,2],[3,0],[0,2,1],[3,0,0,0],[3,0,0],[3,0,0,0,0],[1,0,2],[2,0,1],[1,1,1],[2,1,0],[3,0,0],[0,3,0],[2,1],[1,2],[1,2],[3,0],[3,0],[1,1,1],[3,0],[2,1] +00731fb010_941201.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[0,1,2],[1,0,2],[2,1,0],[1,1,1],[0,1,2],[3,0,0],[1,0,2],[1,2],[1,0,2],[3,0,0,0],[1,2],[3,0,0],[2,0,1],[0,0,3],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[3,0],[2,1,0,0],[1,2],[1,2,0],[3,0,0,0],[1,2,0],[3,0,0,0,0],[3,0,0],[1,0,2],[3,0,0],[2,0,1],[2,1,0],[1,2,0],[1,2],[3,0],[0,3],[3,0],[0,3],[0,1,2],[3,0],[2,1] +00732fa010_941201.tif,[0,3],[2,1],[3,0,0,0,0,0,0],[2,1],[0,3],[2,1],[3,0,0],[2,1,0],[1,2,0],[2,1,0],[0,0,3],[1,1,1],[3,0,0],[3,0],[2,0,1],[0,0,3,0],[1,2],[1,1,1],[1,0,2],[1,0,2],[3,0],[3,0],[3,0],[2,1,0],[3,0,0,0],[1,2],[1,2],[1,1,0,1],[0,3],[1,2,0],[3,0,0,0],[1,2,0],[3,0,0,0,0],[2,0,1],[2,1,0],[0,3,0],[0,2,1],[1,2,0],[0,2,1],[3,0],[0,3],[0,3],[0,3],[3,0],[0,2,1],[3,0],[3,0] +00733fa010_941201.tif,[3,0],[0,3],[0,0,0,0,0,3,0],[0,3],[0,3],[2,1],[1,0,2],[0,0,3],[1,2,0],[1,0,2],[2,0,1],[1,2,0],[2,0,1],[2,1],[1,1,1],[2,0,0,1],[0,3],[2,1,0],[0,3,0],[3,0,0],[2,1],[2,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,1],[0,1,0,2],[0,3],[0,3,0],[3,0,0,0],[1,2,0],[0,0,0,2,1],[1,0,2],[0,3,0],[2,1,0],[0,2,1],[0,3,0],[2,1,0],[3,0],[1,2],[2,1],[2,1],[3,0],[3,0,0],[0,3],[3,0] +00734fa010_941201.tif,[1,2],[1,2],[3,0,0,0,0,0,0],[2,1],[0,3],[3,0],[2,0,1],[2,1,0],[3,0,0],[1,1,1],[0,3,0],[0,0,3],[2,0,1],[3,0],[2,0,1],[0,1,2,0],[2,1],[1,0,2],[0,0,3],[2,0,1],[1,2],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,1],[0,1,1,1],[0,3],[0,2,1],[3,0,0,0],[0,3,0],[2,0,1,0,0],[3,0,0],[3,0,0],[0,1,2],[1,1,1],[3,0,0],[0,1,2],[2,1],[0,3],[0,3],[0,3],[3,0],[1,2,0],[3,0],[3,0] +00735fa010_941201.tif,[1,2],[2,1],[0,0,0,3,0,0,0],[1,2],[1,2],[2,1],[2,0,1],[1,1,1],[0,0,3],[0,2,1],[3,0,0],[0,3,0],[0,2,1],[3,0],[2,1,0],[3,0,0,0],[1,2],[3,0,0],[1,1,1],[1,1,1],[0,3],[3,0],[3,0],[2,0,1],[3,0,0,0],[3,0],[1,2],[0,1,1,1],[0,3],[0,2,1],[3,0,0,0],[2,1,0],[0,0,0,0,3],[2,0,1],[3,0,0],[0,3,0],[0,0,3],[1,2,0],[2,1,0],[2,1],[0,3],[3,0],[0,3],[3,0],[0,1,2],[3,0],[3,0] +00736fa010_941201.tif,[3,0],[0,3],[3,0,0,0,0,0,0],[3,0],[1,2],[3,0],[0,1,2],[1,0,2],[1,0,2],[0,0,3],[0,3,0],[1,2,0],[0,2,1],[3,0],[0,3,0],[1,1,1,0],[0,3],[2,1,0],[1,1,1],[1,0,2],[0,3],[3,0],[3,0],[0,1,2],[0,0,3,0],[3,0],[3,0],[0,1,0,2],[0,3],[1,2,0],[3,0,0,0],[1,0,2],[3,0,0,0,0],[2,0,1],[3,0,0],[0,1,2],[1,1,1],[0,3,0],[0,1,2],[3,0],[1,2],[0,3],[2,1],[3,0],[0,2,1],[3,0],[3,0] +00737fa010_941201.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[3,0,0],[3,0,0],[2,1,0],[1,2,0],[0,0,3],[2,0,1],[3,0,0],[3,0],[1,1,1],[0,1,1,1],[0,2],[2,0,1],[2,0,1],[1,2,0],[3,0],[3,0],[3,0],[3,0,0],[2,1,0,0],[3,0],[3,0],[1,0,1,1],[0,3],[0,3,0],[3,0,0,0],[0,3,0],[2,0,1,0,0],[3,0,0],[1,0,2],[0,1,2],[0,0,3],[1,2,0],[0,0,3],[3,0],[0,3],[0,3],[1,2],[3,0],[3,0,0],[2,1],[3,0] +00738fa010_941201.tif,[2,1],[0,3],[3,0,0,0,0,0,0],[3,0],[1,2],[3,0],[1,1,1],[0,3,0],[3,0,0],[3,0,0],[1,0,2],[1,1,1],[2,0,1],[2,1],[2,0,1],[2,0,1,0],[3,0],[2,0,1],[2,0,1],[2,0,1],[2,1],[3,0],[3,0],[0,3,0],[3,0,0,0],[3,0],[0,3],[1,2,0,0],[1,2],[2,1,0],[0,2,1,0],[3,0,0],[2,0,0,1,0],[0,2,1],[1,1,1],[1,2,0],[1,2,0],[2,0,1],[0,2,1],[3,0],[0,3],[3,0],[0,3],[2,1],[0,2,1],[3,0],[1,2] +00739fa010_941201.tif,[3,0],[0,3],[3,0,0,0,0,0,0],[1,2],[0,3],[3,0],[1,2,0],[2,0,1],[0,3,0],[3,0,0],[0,0,3],[2,1,0],[3,0,0],[1,2],[3,0,0],[2,0,0,1],[3,0],[0,2,1],[0,1,2],[3,0,0],[3,0],[3,0],[3,0],[0,2,1],[3,0,0,0],[3,0],[3,0],[1,1,0,1],[0,3],[0,1,2],[2,1,0,0],[2,1,0],[1,0,2,0,0],[1,0,2],[2,1,0],[1,2,0],[1,2,0],[2,1,0],[1,2,0],[2,1],[1,2],[0,3],[1,2],[0,3],[3,0,0],[2,1],[1,2] +00740fa010_941201.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[2,1],[2,1],[1,2],[2,0,1],[2,1,0],[2,0,1],[0,3,0],[1,1,1],[2,1,0],[2,0,1],[2,1],[3,0,0],[0,0,3,0],[0,3],[2,0,1],[1,1,1],[2,0,1],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[1,2],[2,0,1,0],[0,3],[0,2,1],[3,0,0,0],[2,1,0],[3,0,0,0,0],[2,0,1],[0,0,3],[0,1,2],[2,1,0],[0,3,0],[1,1,1],[3,0],[1,2],[3,0],[0,3],[3,0],[2,1,0],[3,0],[3,0] +00741fa010_941201.tif,[1,2],[1,2],[3,0,0,0,0,0,0],[1,2],[1,2],[2,1],[3,0,0],[1,0,2],[2,0,1],[0,2,1],[0,2,1],[2,0,1],[1,1,1],[1,2],[0,2,1],[0,1,2,0],[2,1],[2,0,1],[0,0,3],[3,0,0],[3,0],[3,0],[3,0],[1,1,1],[2,0,1,0],[2,1],[0,3],[2,1,0,0],[1,2],[0,3,0],[3,0,0,0],[2,1,0],[3,0,0,0,0],[3,0,0],[1,0,2],[1,2,0],[1,1,1],[1,2,0],[0,3,0],[3,0],[2,1],[3,0],[1,2],[2,1],[3,0,0],[0,3],[3,0] +00742fa010_941201.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[3,0],[2,1],[3,0],[1,1,1],[0,3,0],[1,2,0],[1,2,0],[2,1,0],[1,2,0],[1,0,2],[2,1],[1,1,1],[2,0,1,0],[1,2],[2,1,0],[1,1,1],[2,0,1],[2,1],[0,3],[2,1],[0,3,0],[3,0,0,0],[0,3],[2,1],[1,2,0,0],[3,0],[0,1,2],[3,0,0,0],[0,0,3],[3,0,0,0,0],[0,0,3],[1,2,0],[1,1,1],[0,1,2],[0,3,0],[2,1,0],[3,0],[1,2],[2,1],[0,3],[0,3],[2,1,0],[3,0],[2,1] +00743fa010_941201.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[2,1],[0,3],[3,0],[1,2,0],[2,1,0],[2,0,1],[0,2,1],[1,2,0],[1,2,0],[2,0,1],[3,0],[2,1,0],[1,1,1,0],[0,3],[0,0,3],[1,1,1],[3,0,0],[3,0],[2,1],[3,0],[3,0,0],[3,0,0,0],[0,3],[1,2],[0,1,0,2],[2,1],[0,3,0],[3,0,0,0],[1,1,1],[2,0,1,0,0],[0,1,2],[3,0,0],[0,3,0],[2,1,0],[1,2,0],[0,3,0],[3,0],[0,3],[0,3],[0,3],[2,1],[3,0,0],[2,1],[3,0] +00744fa010_941201.tif,[2,1],[0,3],[2,0,0,1,0,0,0],[1,2],[0,3],[1,2],[1,0,1],[0,1,2],[1,0,2],[0,2,1],[2,0,1],[2,1,0],[1,1,1],[2,1],[2,0,1],[3,0,0,0],[1,2],[1,0,2],[1,0,2],[2,1,0],[1,2],[3,0],[3,0],[1,0,2],[3,0,0,0],[2,1],[3,0],[0,0,1,2],[0,3],[0,2,0],[3,0,0,0],[1,1,1],[0,0,0,3,0],[2,0,1],[2,1,0],[2,1,0],[1,1,1],[2,1,0],[1,2,0],[0,3],[2,0],[0,3],[3,0],[3,0],[3,0,0],[3,0],[2,1] +00745fb010_941201.tif,[0,3],[1,2],[3,0,0,0,0,0,0],[0,3],[1,2],[0,3],[1,0,2],[1,1,1],[2,0,1],[2,0,1],[0,3,0],[2,0,1],[2,0,1],[1,2],[1,1,1],[2,0,0,1],[3,0],[3,0,0],[1,2,0],[2,1,0],[2,1],[0,3],[3,0],[1,2,0],[3,0,0,0],[2,1],[2,1],[1,2,0,0],[0,3],[0,2,1],[3,0,0,0],[2,1,0],[3,0,0,0,0],[2,1,0],[2,0,1],[0,2,1],[1,2,0],[2,0,1],[1,1,1],[1,2],[2,1],[0,3],[3,0],[0,3],[0,1,2],[3,0],[3,0] +00746fa010_941201.tif,[2,1],[3,0],[1,0,1,1,0,0,0],[0,3],[0,2],[1,2],[1,1,1],[3,0,0],[2,1,0],[1,1,1],[0,0,3],[1,1,1],[3,0,0],[3,0],[1,1,1],[0,1,1,1],[3,0],[1,2,0],[2,1,0],[0,0,3],[3,0],[3,0],[3,0],[2,0,1],[1,0,2,0],[1,2],[3,0],[1,0,2,0],[0,3],[0,2,0],[3,0,0,0],[0,0,3],[0,2,0,1,0],[1,0,2],[1,0,2],[0,0,3],[1,0,2],[0,1,2],[0,0,3],[3,0],[1,2],[2,1],[0,3],[3,0],[0,1,2],[2,1],[3,0] +00747fb010_941201.tif,[3,0],[0,3],[2,0,0,0,0,1,0],[2,1],[0,3],[3,0],[3,0,0],[1,1,1],[1,2,0],[1,2,0],[2,0,1],[0,3,0],[3,0,0],[3,0],[3,0,0],[0,0,2,1],[1,2],[1,0,2],[1,1,1],[1,2,0],[0,3],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[0,3],[1,0,1,1],[0,3],[0,3,0],[3,0,0,0],[1,2,0],[0,0,0,3,0],[1,0,2],[2,1,0],[0,0,3],[1,1,1],[2,0,1],[0,0,3],[3,0],[1,2],[2,1],[0,3],[2,1],[0,2,1],[1,2],[2,1] +00749fb010_941201.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[2,1],[2,1],[2,1],[0,1,2],[0,0,3],[2,1,0],[2,0,1],[0,0,3],[3,0,0],[1,0,2],[2,1],[1,0,2],[3,0,0,0],[0,3],[1,0,2],[1,0,2],[2,0,1],[1,2],[3,0],[3,0],[2,0,1],[3,0,0,0],[3,0],[3,0],[3,0,0,0],[3,0],[1,1,1],[3,0,0,0],[0,1,2],[3,0,0,0,0],[3,0,0],[1,0,2],[1,1,1],[1,2,0],[0,3,0],[1,2,0],[3,0],[1,2],[0,3],[2,1],[3,0],[1,2,0],[3,0],[3,0] +00750fa010_941201.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[0,3],[2,1],[1,2],[3,0,0],[2,0,1],[1,0,2],[3,0,0],[0,2,1],[2,1,0],[2,1,0],[2,1],[0,0,3],[3,0,0,0],[2,1],[3,0,0],[0,2,1],[2,1,0],[3,0],[3,0],[3,0],[3,0,0],[2,0,1,0],[3,0],[3,0],[0,3,0,0],[0,3],[0,2,1],[3,0,0,0],[1,2,0],[2,0,1,0,0],[2,0,1],[2,1,0],[1,2,0],[0,2,1],[2,0,1],[0,3,0],[0,3],[1,2],[0,3],[3,0],[3,0],[0,3,0],[3,0],[1,2] +00751fa010_941201.tif,[2,1],[2,1],[2,0,1,0,0,0,0],[1,2],[0,3],[1,2],[2,1,0],[2,0,1],[1,0,2],[0,1,2],[1,2,0],[0,3,0],[1,0,2],[2,1],[2,0,1],[2,1,0,0],[2,1],[3,0,0],[2,0,1],[2,1,0],[2,1],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[3,0],[0,2,0,1],[0,3],[0,3,0],[3,0,0,0],[2,0,1],[0,0,0,3,0],[3,0,0],[2,0,1],[0,2,1],[1,1,1],[1,2,0],[0,1,2],[2,1],[2,1],[0,3],[3,0],[3,0],[3,0,0],[1,2],[2,1] +00752fa010_941201.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[2,1],[3,0,0],[0,2,1],[1,0,2],[0,0,3],[0,3,0],[1,0,2],[2,0,1],[3,0],[2,1,0],[0,3,0,0],[2,1],[0,0,3],[1,1,1],[1,2,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,1],[0,2,1,0],[0,3],[2,0,1],[0,3,0,0],[0,3,0],[2,0,1,0,0],[3,0,0],[1,0,2],[0,1,2],[0,2,1],[2,0,1],[0,2,1],[3,0],[1,2],[1,2],[0,3],[2,1],[1,2,0],[3,0],[3,0] +00753fa010_941201.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[3,0],[0,3],[1,2],[1,2,0],[2,0,1],[0,3,0],[1,2,0],[1,0,2],[2,0,1],[3,0,0],[2,1],[1,2,0],[3,0,0,0],[1,2],[2,0,1],[1,2,0],[1,1,1],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[0,3,0,0],[3,0],[0,2,1],[2,1,0,0],[1,1,1],[3,0,0,0,0],[3,0,0],[3,0,0],[0,2,1],[1,1,1],[3,0,0],[1,1,1],[3,0],[1,2],[0,3],[2,1],[2,1],[3,0,0],[3,0],[1,1] +00754fa010_941201.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[3,0],[0,3],[2,1],[2,1,0],[2,0,1],[2,1,0],[1,2,0],[2,1,0],[3,0,0],[0,2,1],[2,1],[1,2,0],[0,0,2,1],[2,1],[3,0,0],[0,0,3],[2,0,1],[3,0],[3,0],[3,0],[2,0,1],[1,0,2,0],[2,1],[0,3],[0,0,0,3],[0,3],[0,2,1],[3,0,0,0],[1,2,0],[2,1,0,0,0],[1,0,2],[2,0,1],[1,2,0],[0,1,2],[0,3,0],[1,2,0],[3,0],[1,2],[2,1],[0,3],[2,1],[0,3,0],[3,0],[2,1] +00755fa010_941201.tif,[2,1],[2,1],[0,3,0,0,0,0,0],[2,1],[2,1],[3,0],[2,1,0],[2,0,1],[0,3,0],[1,2,0],[3,0,0],[2,0,1],[1,2,0],[1,2],[2,1,0],[1,1,1,0],[0,3],[2,0,1],[3,0,0],[2,0,1],[3,0],[3,0],[3,0],[2,0,1],[3,0,0,0],[3,0],[1,2],[2,1,0,0],[1,2],[0,2,1],[3,0,0,0],[0,3,0],[0,0,0,0,3],[0,1,2],[3,0,0],[1,2,0],[2,0,1],[3,0,0],[1,2,0],[3,0],[0,3],[3,0],[0,3],[1,2],[0,1,2],[3,0],[2,1] +00756fa010_941201.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[1,2],[0,3],[2,1],[3,0,0],[1,0,2],[1,1,1],[1,2,0],[2,0,1],[1,2,0],[0,2,1],[3,0],[2,1,0],[3,0,0,0],[2,1],[1,0,2],[1,0,2],[1,2,0],[3,0],[3,0],[3,0],[0,0,3],[3,0,0,0],[3,0],[3,0],[0,1,0,2],[2,1],[0,1,2],[3,0,0,0],[0,0,3],[2,0,1,0,0],[3,0,0],[1,0,2],[0,2,1],[2,0,1],[1,2,0],[0,3,0],[1,2],[2,1],[0,3],[2,1],[3,0],[3,0,0],[3,0],[3,0] +00757fa010_941201.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[2,1],[0,3],[0,3],[2,1,0],[2,0,1],[3,0,0],[2,1,0],[1,2,0],[0,3,0],[0,3,0],[3,0],[2,1,0],[2,1,0,0],[0,3],[3,0,0],[0,0,3],[2,0,1],[3,0],[3,0],[3,0],[2,1,0],[3,0,0,0],[3,0],[3,0],[0,1,0,2],[1,2],[0,2,1],[3,0,0,0],[1,2,0],[2,0,1,0,0],[2,1,0],[0,1,2],[3,0,0],[1,2,0],[1,2,0],[0,2,0],[2,1],[2,1],[0,3],[2,1],[3,0],[0,1,2],[3,0],[3,0] +00758fb010_941201.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[3,0],[0,3],[2,1],[1,1,1],[1,1,1],[1,2,0],[3,0,0],[0,3,0],[3,0,0],[3,0,0],[1,2],[0,2,1],[3,0,0,0],[0,3],[3,0,0],[2,1,0],[1,0,2],[2,1],[0,3],[3,0],[3,0,0],[3,0,0,0],[0,2],[3,0],[1,1,0,1],[0,3],[0,0,3],[0,2,1,0],[2,1,0],[3,0,0,0,0],[2,0,1],[2,0,1],[0,3,0],[1,1,1],[1,2,0],[2,1,0],[3,0],[2,1],[0,3],[2,1],[0,3],[1,1,1],[3,0],[3,0] +00760fa010_941201.tif,[2,1],[0,3],[2,0,1,0,0,0,0],[2,1],[1,2],[1,2],[2,1,0],[2,0,1],[3,0,0],[1,0,2],[1,2,0],[0,3,0],[1,0,2],[3,0],[3,0,0],[1,0,2,0],[3,0],[2,1,0],[2,1,0],[0,1,2],[0,3],[3,0],[3,0],[0,1,2],[0,0,3,0],[3,0],[0,3],[1,2,0,0],[0,3],[0,3,0],[3,0,0,0],[1,0,2],[0,1,0,2,0],[1,0,2],[2,1,0],[0,1,2],[1,2,0],[2,0,1],[0,0,3],[3,0],[2,1],[1,2],[0,3],[0,3],[1,2,0],[3,0],[3,0] +00761fa010_941201.tif,[1,2],[0,3],[2,0,1,0,0,0,0],[1,2],[1,2],[3,0],[2,1,0],[1,1,1],[1,2,0],[0,2,1],[2,1,0],[0,3,0],[2,0,1],[3,0],[2,1,0],[2,0,1,0],[3,0],[2,1,0],[0,0,3],[3,0,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[0,3],[1,1,1,0],[1,2],[0,1,2],[1,2,0,0],[3,0,0],[0,1,0,2,0],[1,1,1],[2,0,1],[1,0,2],[2,1,0],[1,1,1],[0,0,3],[3,0],[0,3],[0,3],[0,3],[2,1],[0,1,2],[3,0],[3,0] +00762fa010_941201.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[1,2],[2,1],[1,2],[2,0,1],[0,1,2],[1,0,2],[0,0,3],[0,3,0],[1,1,1],[2,1,0],[2,1],[0,3,0],[2,1,0,0],[0,3],[3,0,0],[1,1,1],[3,0,0],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[3,0],[0,3,0,0],[0,3],[0,2,1],[2,1,0,0],[2,0,1],[3,0,0,0,0],[1,1,1],[3,0,0],[1,2,0],[1,2,0],[1,2,0],[1,2,0],[2,1],[2,1],[0,3],[1,2],[2,1],[0,0,3],[3,0],[3,0] +00763fb010_941201.tif,[2,1],[1,2],[2,0,1,0,0,0,0],[1,2],[0,3],[0,3],[2,1,0],[3,0,0],[3,0,0],[1,1,1],[3,0,0],[1,0,2],[3,0,0],[1,2],[1,0,2],[0,2,1,0],[3,0],[0,0,3],[3,0,0],[1,2,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[1,2],[0,3,0,0],[0,3],[0,3,0],[3,0,0,0],[2,1,0],[3,0,0,0,0],[0,3,0],[2,0,1],[0,3,0],[1,1,1],[0,3,0],[1,2,0],[3,0],[1,2],[1,2],[1,2],[2,1],[3,0,0],[3,0],[3,0] +00764fa010_941201.tif,[3,0],[2,1],[0,2,0,0,0,1,0],[0,3],[1,2],[0,3],[3,0,0],[1,0,2],[0,3,0],[3,0,0],[2,1,0],[0,3,0],[1,0,2],[3,0],[2,1,0],[2,0,1,0],[1,2],[2,0,1],[2,1,0],[2,1,0],[1,2],[3,0],[3,0],[1,2,0],[3,0,0,0],[3,0],[3,0],[0,3,0,0],[0,3],[0,2,1],[3,0,0,0],[1,1,1],[0,0,0,1,2],[0,1,2],[0,0,3],[2,1,0],[1,1,1],[0,2,1],[2,1,0],[3,0],[3,0],[0,3],[2,1],[3,0],[0,0,3],[3,0],[2,1] +00765fb010_941201.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[1,0,2],[1,0,2],[2,0,1],[0,2,1],[2,1,0],[1,1,1],[2,1,0],[3,0],[1,1,1],[2,0,1,0],[2,1],[2,0,1],[1,1,1],[3,0,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[3,0],[1,2,0,0],[1,2],[1,2,0],[3,0,0,0],[0,0,3],[3,0,0,0,0],[1,0,2],[1,1,1],[0,2,1],[2,1,0],[1,2,0],[0,3,0],[2,1],[3,0],[0,3],[3,0],[1,2],[1,2,0],[3,0],[2,1] +00766fa010_941201.tif,[2,1],[3,0],[2,0,1,0,0,0,0],[0,3],[1,2],[0,3],[3,0,0],[2,1,0],[1,0,2],[1,2,0],[1,1,1],[3,0,0],[1,1,1],[3,0],[3,0,0],[1,2,0,0],[2,1],[2,0,1],[1,1,1],[0,0,3],[3,0],[3,0],[3,0],[1,1,1],[2,0,1,0],[3,0],[3,0],[0,2,0,1],[2,1],[0,3,0],[3,0,0,0],[2,1,0],[2,0,1,0,0],[3,0,0],[0,0,3],[2,1,0],[1,1,1],[0,3,0],[0,3,0],[2,1],[2,1],[0,3],[3,0],[2,1],[2,1,0],[2,1],[2,1] +00767fa010_941201.tif,[3,0],[1,2],[0,3,0,0,0,0,0],[0,3],[0,3],[2,1],[0,2,1],[1,1,1],[2,1,0],[3,0,0],[2,1,0],[1,2,0],[2,0,1],[3,0],[3,0,0],[1,0,0,2],[1,2],[1,0,2],[1,1,1],[2,0,1],[3,0],[3,0],[3,0],[1,0,2],[3,0,0,0],[2,1],[1,2],[0,1,0,2],[0,3],[0,2,0],[3,0,0,0],[3,0,0],[0,0,0,1,2],[0,2,1],[2,1,0],[0,3,0],[0,2,1],[2,0,1],[0,3,0],[3,0],[2,1],[3,0],[0,3],[2,1],[1,2,0],[3,0],[3,0] +00768fa010_941201.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[1,2],[2,1],[3,0],[2,1,0],[1,1,1],[3,0,0],[0,2,1],[2,0,1],[1,2,0],[3,0,0],[2,1],[1,2,0],[0,0,3,0],[3,0],[1,0,2],[1,2,0],[0,0,3],[2,1],[3,0],[3,0],[1,0,2],[1,0,2,0],[3,0],[0,3],[0,1,0,2],[0,3],[0,3,0],[2,1,0,0],[2,0,1],[3,0,0,0,0],[3,0,0],[2,0,1],[2,1,0],[2,1,0],[2,1,0],[0,3,0],[3,0],[0,3],[3,0],[0,3],[1,2],[3,0,0],[3,0],[3,0] +00769fa010_941201.tif,[3,0],[0,3],[2,0,1,0,0,0,0],[0,3],[0,3],[1,2],[0,0,3],[0,2,1],[2,1,0],[1,2,0],[0,3,0],[2,0,1],[3,0,0],[2,1],[1,1,1],[3,0,0,0],[0,3],[2,0,1],[1,1,1],[0,0,3],[3,0],[0,3],[3,0],[1,0,2],[2,0,1,0],[0,3],[3,0],[2,1,0,0],[1,2],[2,1,0],[0,2,1,0],[0,1,2],[3,0,0,0,0],[0,1,2],[3,0,0],[0,0,3],[3,0,0],[1,2,0],[0,1,2],[1,2],[2,1],[1,2],[3,0],[0,3],[0,1,2],[3,0],[2,1] +00770fa010_941201.tif,[2,1],[3,0],[0,1,0,0,0,2,0],[0,3],[2,1],[0,3],[2,0,1],[3,0,0],[2,1,0],[2,1,0],[1,2,0],[0,3,0],[3,0,0],[1,2],[0,1,2],[3,0,0,0],[3,0],[3,0,0],[2,0,1],[2,1,0],[2,1],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[3,0],[1,1,1,0],[2,1],[0,3,0],[3,0,0,0],[2,1,0],[0,0,1,1,1],[1,0,2],[1,0,2],[1,2,0],[1,1,1],[2,0,1],[1,2,0],[0,3],[3,0],[0,3],[3,0],[3,0],[0,0,3],[3,0],[2,1] +00771fa010_941201.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[1,0,2],[2,0,1],[2,1,0],[2,1,0],[0,3,0],[1,2,0],[2,0,1],[2,1],[0,3,0],[3,0,0,0],[3,0],[3,0,0],[3,0,0],[1,2,0],[3,0],[3,0],[3,0],[1,1,1],[3,0,0,0],[2,1],[3,0],[1,1,0,1],[3,0],[0,3,0],[3,0,0,0],[1,0,2],[3,0,0,0,0],[1,1,1],[3,0,0],[1,1,1],[2,0,1],[1,2,0],[0,3,0],[2,1],[1,2],[0,3],[3,0],[2,1],[2,0,1],[3,0],[3,0] +00772fb010_941201.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[0,3],[1,2],[0,3],[2,0,1],[0,1,2],[1,0,2],[1,2,0],[0,0,3],[2,0,1],[0,3,0],[3,0],[2,1,0],[3,0,0,0],[0,3],[2,0,1],[1,0,2],[3,0,0],[0,3],[3,0],[3,0],[1,1,1],[3,0,0,0],[2,1],[3,0],[0,2,1,0],[2,1],[0,3,0],[3,0,0,0],[2,1,0],[3,0,0,0,0],[3,0,0],[2,0,1],[1,2,0],[3,0,0],[1,2,0],[1,2,0],[2,1],[3,0],[1,2],[3,0],[3,0],[1,2,0],[3,0],[2,1] +00773fa010_941201.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[0,0,3],[1,2,0],[1,2,0],[1,2,0],[1,2,0],[2,0,1],[1,1,1],[2,1],[3,0,0],[2,1,0,0],[0,3],[1,0,2],[0,3,0],[1,1,1],[0,3],[0,3],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[1,1,0,1],[0,3],[0,3,0],[3,0,0,0],[2,1,0],[3,0,0,0,0],[2,0,1],[1,0,2],[1,2,0],[0,1,2],[0,3,0],[3,0,0],[0,3],[1,2],[0,3],[3,0],[2,1],[0,3,0],[3,0],[3,0] +00774fa010_941201.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[0,3],[0,3],[1,2],[2,0,1],[3,0,0],[1,2,0],[1,2,0],[0,2,1],[1,2,0],[1,2,0],[2,1],[0,3,0],[3,0,0,0],[3,0],[2,0,1],[1,0,2],[0,0,3],[0,3],[3,0],[3,0],[2,0,1],[3,0,0,0],[3,0],[3,0],[0,0,0,3],[0,3],[0,3,0],[2,1,0,0],[1,0,2],[3,0,0,0,0],[1,1,1],[2,0,1],[1,1,1],[1,2,0],[0,3,0],[1,2,0],[0,3],[1,2],[0,3],[3,0],[1,2],[0,1,2],[2,1],[2,1] +00775fa010_941205.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[0,3],[0,3],[2,1],[0,0,3],[2,1,0],[1,0,2],[1,1,1],[2,1,0],[0,3,0],[0,1,2],[2,1],[1,2,0],[1,2,0,0],[0,3],[3,0,0],[0,3,0],[2,0,1],[3,0],[3,0],[3,0],[1,0,2],[3,0,0,0],[3,0],[3,0],[0,2,0,1],[0,3],[0,2,1],[3,0,0,0],[3,0,0],[3,0,0,0,0],[3,0,0],[2,0,1],[0,3,0],[2,1,0],[0,2,1],[0,3,0],[2,1],[2,1],[1,2],[3,0],[3,0],[0,2,1],[3,0],[3,0] +00776fa010_941205.tif,[3,0],[3,0],[1,0,0,1,0,1,0],[1,2],[0,3],[0,3],[3,0,0],[2,0,1],[1,2,0],[0,3,0],[1,2,0],[3,0,0],[2,0,1],[3,0],[3,0,0],[3,0,0,0],[0,3],[3,0,0],[1,1,1],[0,0,3],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[1,2],[2,1],[1,2,0,0],[0,3],[0,3,0],[2,1,0,0],[1,0,2],[0,0,0,3,0],[2,0,1],[0,0,3],[2,1,0],[1,2,0],[2,1,0],[2,1,0],[3,0],[0,3],[1,2],[1,2],[2,1],[0,2,1],[3,0],[2,1] +00777fa010_941205.tif,[2,1],[0,3],[3,0,0,0,0,0,0],[2,1],[0,3],[2,1],[2,1,0],[2,1,0],[0,0,3],[1,0,2],[2,1,0],[1,2,0],[0,1,2],[3,0],[3,0,0],[2,1,0,0],[3,0],[2,0,1],[0,0,3],[0,0,3],[0,3],[3,0],[3,0],[0,0,3],[0,0,1,2],[3,0],[1,2],[0,1,0,2],[2,1],[0,1,2],[3,0,0,0],[1,0,2],[3,0,0,0,0],[0,1,2],[2,0,1],[0,1,2],[2,1,0],[1,2,0],[0,2,1],[3,0],[0,3],[1,2],[0,3],[2,1],[1,0,2],[3,0],[2,1] +00778fb010_941205.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[3,0],[1,2],[0,3],[1,0,2],[0,1,2],[3,0,0],[0,3,0],[2,1,0],[3,0,0],[3,0,0],[3,0],[3,0,0],[2,1,0,0],[1,2],[3,0,0],[0,1,2],[0,0,3],[3,0],[3,0],[3,0],[2,0,1],[1,0,2,0],[2,1],[3,0],[2,1,0,0],[1,2],[0,2,1],[3,0,0,0],[2,1,0],[3,0,0,0,0],[2,0,1],[1,0,2],[1,2,0],[2,1,0],[0,3,0],[3,0,0],[3,0],[2,1],[3,0],[3,0],[3,0],[0,3,0],[3,0],[0,3] +00779fa010_941205.tif,[1,2],[0,3],[3,0,0,0,0,0,0],[1,2],[1,2],[2,1],[1,1,1],[1,0,2],[0,3,0],[3,0,0],[1,1,1],[1,0,2],[1,2,0],[1,2],[1,2,0],[3,0,0,0],[3,0],[2,0,1],[2,1,0],[0,3,0],[2,1],[0,3],[3,0],[0,3,0],[3,0,0,0],[3,0],[0,3],[0,0,2,1],[0,3],[1,1,1],[3,0,0,0],[3,0,0],[3,0,0,0,0],[0,0,3],[3,0,0],[0,2,1],[3,0,0],[1,2,0],[0,2,1],[3,0],[1,2],[0,3],[2,1],[0,3],[0,3,0],[3,0],[3,0] +00780fb010_941205.tif,[1,2],[1,2],[3,0,0,0,0,0,0],[2,1],[2,1],[3,0],[0,2,1],[0,2,1],[0,0,3],[2,1,0],[0,2,1],[1,0,2],[3,0,0],[3,0],[3,0,0],[1,0,1,1],[1,2],[2,0,1],[0,3,0],[0,3,0],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[1,2],[1,2],[0,1,0,2],[1,2],[2,0,0],[0,1,2,0],[1,0,1],[3,0,0,0,0],[3,0,0],[2,1,0],[0,3,0],[2,1,0],[0,0,3],[0,2,1],[3,0],[1,2],[2,1],[0,3],[0,3],[0,2,1],[3,0],[1,2] +00781fb010_941205.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[1,2],[1,2],[0,3],[1,2,0],[1,1,1],[3,0,0],[2,1,0],[0,2,1],[2,0,1],[0,1,2],[2,1],[0,0,3],[3,0,0,0],[3,0],[1,0,2],[2,0,1],[3,0,0],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[3,0],[2,1],[0,0,0,3],[0,3],[0,3,0],[3,0,0,0],[2,0,1],[3,0,0,0,0],[1,2,0],[2,0,1],[1,1,1],[1,2,0],[2,1,0],[0,2,1],[1,2],[1,2],[0,3],[3,0],[1,2],[0,0,3],[3,0],[3,0] +00782fa010_941205.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[1,2],[1,2],[1,2],[1,2,0],[2,0,1],[1,2,0],[0,3,0],[1,0,2],[3,0,0],[3,0,0],[3,0],[1,1,1],[0,1,0,2],[3,0],[2,1,0],[2,0,1],[3,0,0],[3,0],[0,3],[2,1],[1,2,0],[3,0,0,0],[3,0],[2,1],[1,2,0,0],[2,1],[0,3,0],[3,0,0,0],[1,2,0],[3,0,0,0,0],[0,3,0],[3,0,0],[0,2,1],[3,0,0],[2,0,1],[0,1,2],[3,0],[3,0],[0,3],[2,1],[1,2],[0,3,0],[2,1],[3,0] +00783fa010_941205.tif,[2,1],[3,0],[2,0,0,1,0,0,0],[1,2],[0,2],[1,2],[3,0,0],[1,1,1],[0,3,0],[2,1,0],[1,2,0],[3,0,0],[0,0,3],[3,0],[1,2,0],[2,1,0,0],[2,1],[1,1,1],[3,0,0],[1,2,0],[1,2],[3,0],[3,0],[2,0,1],[3,0,0,0],[2,1],[1,2],[0,0,0,3],[0,3],[0,2,0],[3,0,0,0],[3,0,0],[0,0,0,3,0],[1,0,2],[2,0,1],[0,3,0],[0,3,0],[2,1,0],[0,3,0],[3,0],[0,3],[3,0],[0,3],[3,0],[1,2,0],[3,0],[3,0] +00784fb010_941205.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[3,0],[0,3],[2,1],[1,0,2],[1,0,2],[2,1,0],[2,1,0],[0,0,3],[1,0,2],[3,0,0],[3,0],[2,0,1],[0,0,2,1],[2,1],[1,0,2],[3,0,0],[0,3,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[1,2],[1,1,0,1],[2,1],[1,1,1],[0,2,1,0],[2,0,1],[3,0,0,0,0],[2,0,1],[2,0,1],[0,0,3],[0,3,0],[3,0,0],[0,1,2],[3,0],[2,1],[1,2],[0,3],[0,3],[0,3,0],[3,0],[1,2] +00785fa010_941205.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[2,1],[0,3],[3,0],[0,3,0],[3,0,0],[1,0,2],[0,2,1],[0,2,1],[0,3,0],[1,0,2],[3,0],[1,0,2],[0,0,3,0],[2,1],[2,0,1],[2,0,1],[0,0,3],[2,1],[2,1],[3,0],[0,3,0],[2,0,1,0],[3,0],[2,1],[2,1,0,0],[0,3],[1,2,0],[3,0,0,0],[1,1,1],[3,0,0,0,0],[2,0,1],[1,0,2],[0,3,0],[0,3,0],[2,1,0],[0,3,0],[3,0],[0,3],[2,1],[1,2],[3,0],[0,0,3],[3,0],[2,1] +00786fa010_941205.tif,[2,1],[2,0],[2,0,0,1,0,0,0],[0,3],[0,3],[0,3],[3,0,0],[1,1,1],[0,3,0],[2,0,1],[3,0,0],[1,0,2],[3,0,0],[2,1],[1,0,2],[2,0,1,0],[2,1],[2,0,1],[3,0,0],[1,2,0],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[2,1],[1,1,1,0],[1,2],[0,2,1],[3,0,0,0],[1,0,2],[3,0,0,0,0],[1,0,2],[1,0,2],[0,0,3],[3,0,0],[1,1,1],[0,1,2],[0,3],[3,0],[1,2],[3,0],[2,1],[0,3,0],[3,0],[3,0] +00787fa010_941205.tif,[0,3],[1,2],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[0,1,2],[1,2,0],[1,2,0],[1,2,0],[0,3,0],[1,1,1],[3,0,0],[2,1],[1,1,1],[0,3,0,0],[1,2],[0,0,3],[0,2,1],[1,2,0],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,1],[1,2,0,0],[0,3],[0,1,2],[2,1,0,0],[0,3,0],[3,0,0,0,0],[2,0,1],[2,0,1],[1,1,1],[0,2,1],[3,0,0],[1,2,0],[2,1],[1,2],[1,2],[0,3],[2,1],[0,2,1],[3,0],[3,0] +00788fa010_941205.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[1,2],[0,0,3],[1,0,2],[1,2,0],[2,1,0],[1,2,0],[2,1,0],[0,0,3],[3,0],[2,1,0],[2,0,0,1],[0,3],[3,0,0],[2,0,1],[1,0,2],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[2,1],[0,3,0,0],[1,2],[2,1,0],[3,0,0,0],[0,2,0],[3,0,0,0,0],[2,1,0],[2,0,1],[1,2,0],[0,3,0],[1,2,0],[1,1,0],[2,1],[0,3],[1,2],[3,0],[2,1],[0,2,1],[3,0],[2,1] +00789fa010_941205.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[2,0,1],[1,0,2],[2,0,1],[1,0,2],[2,0,1],[1,0,2],[1,0,2],[3,0],[1,2,0],[3,0,0,0],[2,1],[3,0,0],[0,1,2],[0,3,0],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[3,0],[0,3,0,0],[2,1],[0,3,0],[2,1,0,0],[3,0,0],[3,0,0,0,0],[3,0,0],[2,0,1],[2,1,0],[0,3,0],[1,2,0],[1,2,0],[2,1],[1,2],[1,2],[3,0],[1,2],[0,1,2],[3,0],[2,1] +00790fa010_941205.tif,[2,1],[0,3],[3,0,0,0,0,0,0],[3,0],[1,2],[2,1],[1,1,1],[3,0,0],[2,1,0],[2,0,1],[0,2,1],[0,3,0],[0,0,3],[2,1],[3,0,0],[1,0,0,2],[3,0],[3,0,0],[1,0,2],[3,0,0],[1,2],[3,0],[3,0],[0,2,1],[3,0,0,0],[2,1],[3,0],[0,0,0,3],[0,3],[1,1,1],[3,0,0,0],[0,2,1],[3,0,0,0,0],[2,0,1],[2,0,1],[0,2,1],[0,3,0],[1,2,0],[0,2,1],[2,1],[3,0],[1,2],[2,1],[3,0],[0,3,0],[3,0],[3,0] +00791fa010_941205.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[0,3],[1,2],[1,2],[0,2,1],[1,2,0],[0,3,0],[3,0,0],[1,2,0],[3,0,0],[1,0,2],[1,2],[2,0,1],[2,1,0,0],[1,2],[2,0,1],[2,0,1],[3,0,0],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[3,0],[2,1],[0,0,1,2],[1,2],[0,3,0],[3,0,0,0],[0,3,0],[3,0,0,0,0],[2,0,1],[0,0,3],[3,0,0],[1,2,0],[0,2,1],[3,0,0],[0,3],[3,0],[0,3],[3,0],[3,0],[1,1,1],[3,0],[3,0] +00792fa010_941205.tif,[2,1],[3,0],[1,0,0,2,0,0,0],[1,2],[1,2],[1,2],[2,1,0],[1,2,0],[2,0,1],[1,1,1],[1,2,0],[0,3,0],[1,1,1],[1,2],[2,1,0],[1,2,0,0],[3,0],[2,0,1],[2,0,1],[2,1,0],[1,2],[3,0],[3,0],[2,1,0],[3,0,0,0],[3,0],[2,1],[1,1,1,0],[2,1],[1,2,0],[3,0,0,0],[1,1,1],[0,1,1,1,0],[1,1,1],[2,0,1],[0,3,0],[0,0,2],[2,0,1],[0,3,0],[1,2],[1,1],[0,3],[3,0],[3,0],[1,1,1],[3,0],[3,0] +00793fa010_941205.tif,[1,2],[1,2],[3,0,0,0,0,0,0],[0,3],[0,3],[1,2],[2,1,0],[3,0,0],[2,1,0],[3,0,0],[1,2,0],[2,1,0],[3,0,0],[2,1],[1,2,0],[1,2,0,0],[1,2],[2,0,1],[2,1,0],[3,0,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[2,1],[2,0,1,0],[2,1],[0,3,0],[3,0,0,0],[2,1,0],[2,0,1,0,0],[0,2,1],[2,0,1],[0,2,1],[2,0,1],[0,3,0],[0,0,3],[3,0],[3,0],[0,3],[3,0],[3,0],[0,2,1],[3,0],[3,0] +00794fa010_941205.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[2,0,1],[2,0,1],[1,2,0],[3,0,0],[0,3,0],[0,3,0],[1,1,1],[2,1],[1,2,0],[2,1,0,0],[1,2],[2,1,0],[2,0,1],[0,0,3],[3,0],[3,0],[3,0],[2,0,1],[0,0,2,1],[3,0],[1,2],[1,2,0,0],[0,3],[0,2,1],[3,0,0,0],[3,0,0],[3,0,0,0,0],[1,1,1],[2,0,1],[1,2,0],[3,0,0],[1,2,0],[0,3,0],[2,1],[2,1],[0,3],[2,1],[3,0],[0,0,3],[3,0],[1,2] +00795fa010_941205.tif,[2,1],[0,3],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[2,1,0],[3,0,0],[3,0,0],[3,0,0],[1,0,2],[1,0,2],[0,1,2],[3,0],[2,1,0],[1,2,0,0],[2,1],[2,0,1],[2,1,0],[3,0,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[1,1,1,0],[0,3],[0,3,0],[3,0,0,0],[2,0,1],[2,1,0,0,0],[1,0,2],[3,0,0],[0,3,0],[0,2,1],[1,2,0],[0,3,0],[3,0],[1,2],[0,3],[1,2],[3,0],[2,1,0],[3,0],[3,0] +00796fa010_941205.tif,[2,1],[2,1],[2,1,0,0,0,0,0],[0,3],[0,3],[0,3],[2,0,1],[2,1,0],[2,1,0],[0,2,1],[1,1,1],[1,1,1],[2,0,1],[3,0],[2,1,0],[1,2,0,0],[1,2],[3,0,0],[1,2,0],[1,0,2],[3,0],[3,0],[3,0],[1,2,0],[1,0,2,0],[2,1],[3,0],[2,1,0,0],[1,2],[0,3,0],[3,0,0,0],[3,0,0],[3,0,0,0,0],[3,0,0],[0,0,3],[2,1,0],[0,3,0],[0,3,0],[2,0,1],[2,1],[1,2],[1,2],[1,2],[2,1],[3,0,0],[2,1],[1,2] +00797fa010_941205.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[2,1],[1,2],[1,2],[2,0,1],[2,1,0],[3,0,0],[2,1,0],[2,0,1],[2,0,1],[3,0,0],[2,1],[1,1,1],[2,1,0,0],[3,0],[3,0,0],[2,0,1],[3,0,0],[2,1],[3,0],[3,0],[2,1,0],[3,0,0,0],[3,0],[1,2],[0,1,0,2],[2,1],[0,3,0],[3,0,0,0],[1,0,2],[2,0,1,0,0],[2,1,0],[3,0,0],[0,1,2],[3,0,0],[3,0,0],[0,2,1],[3,0],[0,3],[1,2],[0,3],[2,1],[3,0,0],[3,0],[3,0] +00798fa010_941205.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[2,1],[0,3],[1,2],[2,1,0],[2,0,1],[0,0,3],[0,2,1],[2,1,0],[1,2,0],[1,1,1],[3,0],[3,0,0],[2,0,0,1],[0,3],[0,0,3],[0,0,3],[2,0,1],[1,2],[3,0],[3,0],[1,2,0],[3,0,0,0],[3,0],[2,1],[2,1,0,0],[1,2],[0,3,0],[3,0,0,0],[3,0,0],[2,0,1,0,0],[3,0,0],[3,0,0],[0,2,1],[1,2,0],[3,0,0],[1,2,0],[3,0],[0,3],[0,3],[0,3],[3,0],[0,2,1],[3,0],[3,0] +00799fa010_941205.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[1,1],[0,3],[2,1],[1,2,0],[1,2,0],[2,1,0],[1,1,1],[0,1,2],[3,0,0],[2,1,0],[3,0],[1,0,2],[2,0,0,1],[2,1],[0,0,3],[3,0,0],[1,2,0],[3,0],[3,0],[3,0],[1,1,1],[3,0,0,0],[3,0],[3,0],[0,3,0,0],[1,2],[0,3,0],[3,0,0,0],[2,1,0],[3,0,0,0,0],[1,1,1],[2,0,1],[1,2,0],[3,0,0],[1,2,0],[0,3,0],[2,1],[1,2],[2,1],[0,3],[2,1],[0,3,0],[3,0],[1,2] +00800fb010_941205.tif,[3,0],[1,2],[0,0,0,2,1,0,0],[0,3],[2,1],[0,3],[2,1,0],[3,0,0],[1,2,0],[2,1,0],[0,3,0],[0,3,0],[2,0,1],[2,1],[1,1,1],[3,0,0,0],[0,3],[1,0,2],[0,2,1],[1,0,2],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[1,2],[3,0,0,0],[2,1],[0,2,1],[3,0,0,0],[2,0,1],[0,0,0,3,0],[1,0,2],[2,1,0],[1,2,0],[0,3,0],[2,1,0],[1,2,0],[0,3],[3,0],[0,3],[3,0],[2,1],[1,2,0],[0,3],[2,1] +00801fa010_941205.tif,[2,1],[1,2],[0,0,3,0,0,0,0],[1,2],[1,2],[0,3],[2,0,1],[2,0,1],[3,0,0],[2,1,0],[0,0,3],[1,0,2],[3,0,0],[3,0],[1,1,1],[1,1,0,1],[2,1],[3,0,0],[1,0,2],[0,1,2],[2,1],[3,0],[3,0],[3,0,0],[0,0,0,3],[1,2],[3,0],[2,1,0,0],[1,2],[2,1,0],[2,1,0,0],[1,0,2],[0,1,0,1,1],[2,0,1],[2,0,1],[0,0,3],[1,2,0],[2,0,1],[0,1,2],[3,0],[1,2],[1,2],[0,3],[3,0],[1,2,0],[3,0],[1,2] +00802fa010_941205.tif,[2,1],[2,1],[0,0,0,0,1,0,2],[0,3],[1,2],[3,0],[0,2,1],[2,1,0],[0,3,0],[3,0,0],[1,2,0],[0,1,2],[0,3,0],[2,1],[2,1,0],[1,0,0,2],[3,0],[0,1,2],[1,0,2],[2,0,1],[0,3],[3,0],[3,0],[0,0,3],[0,0,3,0],[2,1],[2,1],[0,1,0,2],[0,3],[0,3,0],[3,0,0,0],[2,0,1],[3,0,0,0,0],[0,2,1],[1,1,1],[0,1,2],[1,2,0],[1,0,2],[0,0,3],[3,0],[2,1],[1,2],[1,2],[2,1],[3,0,0],[3,0],[1,2] +00803fa010_941205.tif,[2,1],[2,1],[0,0,0,0,1,2,0],[1,2],[1,2],[0,3],[2,0,1],[2,0,1],[3,0,0],[0,1,2],[0,3,0],[2,1,0],[0,3,0],[3,0],[2,0,1],[3,0,0,0],[1,2],[3,0,0],[2,0,1],[0,2,1],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[3,0],[0,2,1,0],[0,3],[0,1,2],[3,0,0,0],[2,1,0],[0,0,0,3,0],[1,0,2],[1,0,2],[0,3,0],[1,2,0],[2,1,0],[0,3,0],[2,1],[1,2],[0,3],[3,0],[3,0],[2,1,0],[0,3],[3,0] +00804fb010_941205.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[2,1],[0,3],[1,2],[1,1,1],[3,0,0],[3,0,0],[1,1,1],[0,1,2],[1,1,1],[0,1,2],[3,0],[1,0,2],[0,1,0,2],[3,0],[3,0,0],[2,0,1],[2,1,0],[3,0],[0,3],[3,0],[1,1,1],[3,0,0,0],[3,0],[2,1],[1,2,0,0],[0,3],[1,1,0],[0,1,2,0],[0,0,3],[3,0,0,0,0],[3,0,0],[3,0,0],[2,0,1],[1,0,2],[1,0,2],[1,0,2],[2,1],[1,2],[1,2],[2,1],[0,3],[0,1,2],[3,0],[3,0] +00805fa010_941205.tif,[2,1],[3,0],[1,0,1,0,0,1,0],[2,1],[1,2],[3,0],[2,0,1],[2,0,1],[3,0,0],[1,2,0],[0,2,1],[0,3,0],[1,0,2],[3,0],[2,1,0],[2,0,0,1],[3,0],[1,2,0],[1,1,1],[0,3,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[0,3],[2,1],[0,0,2,1],[1,2],[1,2,0],[3,0,0,0],[2,1,0],[0,0,0,3,0],[1,1,1],[1,0,2],[1,2,0],[1,1,1],[1,2,0],[0,3,0],[3,0],[2,1],[0,3],[0,3],[3,0],[2,1,0],[2,1],[3,0] +00806fa010_941205.tif,[2,1],[1,2],[0,0,0,0,0,3,0],[0,3],[1,2],[1,2],[0,0,3],[1,0,2],[3,0,0],[1,1,1],[1,0,2],[1,2,0],[2,0,1],[2,1],[1,2,0],[0,1,1,1],[0,3],[1,0,1],[1,0,2],[2,0,1],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[1,2],[2,0,1,0],[2,1],[0,2,1],[3,0,0,0],[2,0,1],[0,0,0,0,3],[3,0,0],[0,3,0],[1,2,0],[2,1,0],[2,1,0],[2,1,0],[3,0],[2,1],[2,1],[0,3],[2,1],[3,0,0],[3,0],[0,3] +00807fa010_941205.tif,[3,0],[3,0],[0,0,1,0,0,2,0],[0,3],[1,2],[1,2],[1,2,0],[2,1,0],[0,3,0],[0,3,0],[1,1,1],[1,1,0],[0,2,1],[3,0],[1,2,0],[3,0,0,0],[2,1],[3,0,0],[1,1,1],[0,0,2],[2,1],[3,0],[3,0],[2,0,1],[0,0,3,0],[2,1],[3,0],[0,1,1,1],[0,3],[0,3,0],[2,1,0,0],[3,0,0],[0,0,2,0,1],[2,0,1],[3,0,0],[0,3,0],[2,1,0],[2,1,0],[0,3,0],[1,2],[2,1],[0,3],[2,1],[3,0],[0,3,0],[0,3],[1,2] +00809fa010_941205.tif,[0,3],[3,0],[3,0,0,0,0,0,0],[2,1],[0,3],[2,1],[1,0,2],[3,0,0],[3,0,0],[1,0,2],[0,1,2],[2,0,1],[3,0,0],[3,0],[1,1,1],[0,0,2,0],[3,0],[3,0,0],[1,1,1],[2,1,0],[3,0],[2,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,1],[2,1,0,0],[1,2],[0,2,1],[3,0,0,0],[2,1,0],[0,0,3,0,0],[3,0,0],[1,0,2],[0,2,1],[0,3,0],[0,3,0],[0,1,2],[3,0],[2,1],[2,1],[0,3],[3,0],[2,1,0],[2,1],[3,0] +00810fa010_941205.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[3,0],[1,2],[2,1],[1,1,1],[1,0,2],[1,0,2],[0,1,2],[0,3,0],[0,0,3],[2,1,0],[3,0],[1,0,2],[0,1,2,0],[0,3],[1,1,1],[0,3,0],[2,0,1],[2,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[0,3],[2,0,0,1],[1,2],[0,1,2],[3,0,0,0],[1,2,0],[3,0,0,0,0],[3,0,0],[3,0,0],[0,1,2],[2,1,0],[0,3,0],[0,1,2],[3,0],[1,2],[2,1],[0,3],[3,0],[0,2,1],[2,1],[2,1] +00811fb010_941205.tif,[3,0],[1,2],[1,1,0,1,0,0,0],[1,2],[0,3],[3,0],[2,1,0],[2,1,0],[1,0,2],[0,2,1],[3,0,0],[1,2,0],[1,1,1],[3,0],[3,0,0],[0,2,1,0],[2,1],[2,0,1],[3,0,0],[0,0,3],[0,3],[3,0],[3,0],[0,1,2],[1,0,2,0],[1,2],[0,3],[1,0,0,2],[0,3],[1,1,0],[3,0,0,0],[0,3,0],[0,0,0,3,0],[1,1,1],[3,0,0],[2,1,0],[2,1,0],[1,2,0],[1,2,0],[3,0],[1,2],[3,0],[0,3],[2,1],[1,1,1],[3,0],[3,0] +00812fa010_941205.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[2,1],[0,3],[3,0],[2,0,1],[3,0,0],[3,0,0],[1,0,2],[2,0,1],[0,2,1],[2,0,1],[3,0],[1,2,0],[1,1,0,1],[1,2],[2,0,1],[2,0,1],[1,0,2],[3,0],[3,0],[3,0],[0,1,2],[0,0,3,0],[3,0],[2,1],[1,1,1,0],[1,2],[0,2,1],[3,0,0,0],[1,1,1],[3,0,0,0,0],[1,0,2],[3,0,0],[0,2,1],[1,1,1],[0,3,0],[2,1,0],[3,0],[0,3],[3,0],[2,1],[2,1],[0,1,2],[3,0],[2,1] +00813fa010_941205.tif,[2,1],[2,1],[2,0,1,0,0,0,0],[1,2],[0,3],[1,2],[1,1,1],[1,1,1],[2,0,1],[1,0,2],[0,2,1],[3,0,0],[2,0,1],[3,0],[1,0,2],[1,0,1,1],[2,1],[2,0,1],[1,0,2],[3,0,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[2,1],[0,1,0,2],[1,2],[0,3,0],[3,0,0,0],[3,0,0],[1,0,2,0,0],[0,1,2],[0,0,3],[1,2,0],[2,1,0],[1,2,0],[1,2,0],[3,0],[0,3],[2,1],[1,2],[3,0],[3,0,0],[3,0],[1,2] +00814fa010_941205.tif,[3,0],[0,3],[0,0,0,0,3,0,0],[3,0],[0,3],[3,0],[0,3,0],[1,0,2],[0,3,0],[2,1,0],[1,2,0],[0,3,0],[2,0,1],[3,0],[1,0,2],[0,0,2,1],[3,0],[2,1,0],[3,0,0],[1,0,2],[0,3],[3,0],[3,0],[0,0,3],[0,0,0,3],[1,2],[0,3],[0,0,3,0],[2,1],[2,1,0],[0,3,0,0],[2,0,1],[3,0,0,0,0],[1,1,1],[0,2,1],[0,0,3],[3,0,0],[0,1,2],[0,0,3],[3,0],[1,2],[2,1],[0,3],[0,3],[3,0,0],[2,1],[2,1] +00815fa010_941205.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[2,0,1],[0,1,2],[1,2,0],[2,1,0],[1,0,2],[2,1,0],[0,3,0],[1,2],[0,1,2],[2,1,0,0],[1,2],[3,0,0],[1,2,0],[1,2,0],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[1,2],[3,0],[0,2,1,0],[0,3],[0,3,0],[2,1,0,0],[3,0,0],[3,0,0,0,0],[2,0,1],[2,0,1],[2,1,0],[0,2,1],[2,1,0],[0,3,0],[2,1],[2,1],[0,3],[2,1],[1,2],[0,3,0],[3,0],[3,0] +00816fa010_941205.tif,[3,0],[3,0],[1,0,1,0,0,1,0],[0,3],[0,3],[0,3],[2,1,0],[2,0,1],[0,0,3],[1,1,1],[3,0,0],[0,3,0],[3,0,0],[2,1],[2,1,0],[1,1,0,1],[2,1],[3,0,0],[2,1,0],[3,0,0],[0,3],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,1],[0,3,0,0],[0,3],[0,2,1],[3,0,0,0],[3,0,0],[0,0,0,3,0],[2,0,1],[2,0,1],[0,3,0],[1,2,0],[2,0,1],[2,1,0],[2,1],[2,1],[0,3],[3,0],[1,2],[2,1,0],[3,0],[2,1] +00817fa010_941205.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[2,1],[1,2],[2,1],[1,0,2],[2,1,0],[3,0,0],[0,3,0],[0,3,0],[0,3,0],[2,0,1],[1,2],[0,3,0],[3,0,0,0],[2,1],[1,0,2],[0,0,3],[0,0,3],[3,0],[3,0],[3,0],[3,0,0],[2,0,1,0],[2,1],[2,1],[0,0,0,3],[0,3],[2,1,0],[3,0,0,0],[1,0,2],[2,1,0,0,0],[3,0,0],[3,0,0],[1,2,0],[1,1,1],[1,1,1],[0,2,1],[2,1],[1,2],[0,3],[3,0],[3,0],[0,2,1],[3,0],[2,0] +00818fa010_940307.tif,[2,1],[0,3],[3,0,0,0,0,0,0],[0,3],[0,3],[2,1],[0,3,0],[1,2,0],[2,1,0],[1,1,1],[1,2,0],[3,0,0],[2,0,1],[3,0],[1,1,1],[0,0,3,0],[3,0],[2,1,0],[3,0,0],[2,1,0],[3,0],[0,3],[3,0],[0,3,0],[3,0,0,0],[0,3],[1,2],[1,0,0,2],[0,3],[2,1,0],[2,1,0,0],[0,1,2],[3,0,0,0,0],[1,1,1],[3,0,0],[0,3,0],[0,3,0],[1,1,1],[1,2,0],[3,0],[3,0],[1,2],[0,3],[1,2],[0,1,2],[3,0],[3,0] +00819fa010_940307.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[3,0],[0,3],[1,2],[2,0,1],[0,1,2],[2,0,1],[1,1,1],[1,2,0],[2,1,0],[1,0,2],[1,2],[1,2,0],[0,0,2,1],[0,3],[0,0,3],[1,1,1],[1,1,1],[3,0],[3,0],[3,0],[2,1,0],[3,0,0,0],[3,0],[0,3],[1,2,0,0],[2,1],[0,2,1],[1,2,0,0],[2,1,0],[3,0,0,0,0],[3,0,0],[2,0,1],[1,2,0],[2,1,0],[3,0,0],[2,1,0],[3,0],[1,2],[2,1],[0,3],[1,2],[1,2,0],[2,1],[1,2] +00820fa010_940307.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[0,2,1],[1,1,1],[0,0,3],[0,1,2],[1,0,2],[0,3,0],[2,0,1],[3,0],[0,2,1],[0,1,1,1],[0,3],[1,0,2],[0,3,0],[1,1,1],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[2,1],[2,0,1,0],[2,1],[0,3,0],[2,1,0,0],[3,0,0],[3,0,0,0,0],[3,0,0],[3,0,0],[0,1,2],[1,1,1],[2,0,1],[0,3,0],[2,1],[1,2],[0,3],[2,1],[0,3],[2,1,0],[2,1],[3,0] +00821fa010_940307.tif,[2,1],[0,3],[3,0,0,0,0,0,0],[1,2],[1,2],[2,1],[1,0,2],[0,0,3],[1,0,2],[0,2,1],[0,3,0],[2,1,0],[3,0,0],[2,1],[2,1,0],[1,1,1,0],[0,3],[1,1,1],[2,1,0],[1,2,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[0,3],[0,2,1,0],[1,2],[0,3,0],[2,1,0,0],[1,1,1],[2,0,1,0,0],[2,0,1],[3,0,0],[2,1,0],[0,3,0],[2,1,0],[1,2,0],[3,0],[0,3],[2,1],[2,1],[0,3],[1,2,0],[3,0],[2,1] +00822fa010_940307.tif,[3,0],[1,2],[0,1,0,1,0,1,0],[1,2],[0,3],[3,0],[2,0,1],[2,1,0],[0,0,3],[0,0,3],[3,0,0],[0,3,0],[1,0,2],[2,1],[3,0,0],[1,1,1,0],[0,3],[3,0,0],[2,1,0],[1,0,2],[1,2],[3,0],[3,0],[1,1,1],[0,2,0,1],[1,2],[0,3],[0,0,1,2],[1,2],[0,3,0],[3,0,0,0],[2,1,0],[0,0,1,1,1],[3,0,0],[2,0,1],[1,2,0],[0,3,0],[0,2,1],[0,3,0],[3,0],[1,2],[3,0],[0,3],[3,0],[1,1,1],[3,0],[2,1] +00823fa010_940307.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[2,0,1],[0,3,0],[2,1,0],[0,3,0],[0,0,3],[1,2,0],[2,1,0],[3,0],[0,2,1],[2,1,0,0],[2,1],[0,0,3],[2,1,0],[1,1,1],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[3,0],[1,2],[3,0,0,0],[0,3],[1,1,1],[2,1,0,0],[2,0,1],[3,0,0,0,0],[2,0,1],[3,0,0],[2,1,0],[1,2,0],[1,2,0],[2,1,0],[3,0],[2,1],[2,1],[3,0],[3,0],[0,3,0],[3,0],[3,0] +00824fb010_940307.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[1,2],[1,2],[1,2],[2,1,0],[2,1,0],[1,0,2],[0,3,0],[1,1,1],[2,1,0],[0,2,1],[3,0],[2,1,0],[2,0,1,0],[3,0],[3,0,0],[0,0,3],[1,2,0],[2,1],[0,3],[3,0],[0,3,0],[3,0,0,0],[3,0],[3,0],[3,0,0,0],[0,3],[0,2,1],[3,0,0,0],[2,0,1],[3,0,0,0,0],[3,0,0],[3,0,0],[2,1,0],[0,2,1],[1,0,2],[0,3,0],[2,1],[2,1],[0,3],[3,0],[2,1],[1,1,1],[3,0],[2,1] +00825fa010_940307.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[2,1],[2,1],[3,0],[1,1,1],[3,0,0],[2,0,1],[1,1,1],[0,1,2],[0,3,0],[3,0,0],[1,2],[2,1,0],[2,1,0,0],[2,1],[3,0,0],[3,0,0],[2,0,1],[2,1],[3,0],[3,0],[1,2,0],[3,0,0,0],[3,0],[1,2],[0,1,1,1],[3,0],[3,0,0],[0,2,1,0],[1,0,2],[3,0,0,0,0],[3,0,0],[0,2,1],[1,2,0],[0,1,2],[1,0,2],[2,1,0],[3,0],[3,0],[0,3],[0,3],[0,3],[1,2,0],[2,1],[2,1] +00826fa010_940307.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[2,1],[2,1],[1,2],[2,0,1],[0,1,2],[0,0,2],[0,1,2],[2,1,0],[0,2,1],[0,1,2],[3,0],[2,1,0],[0,2,1,0],[0,3],[3,0,0],[0,3,0],[1,0,2],[3,0],[3,0],[3,0],[2,0,1],[3,0,0,0],[2,1],[1,2],[0,3,0,0],[0,3],[0,1,2],[3,0,0,0],[2,1,0],[3,0,0,0,0],[3,0,0],[0,2,1],[3,0,0],[0,3,0],[0,1,2],[2,1,0],[3,0],[1,2],[0,3],[0,3],[3,0],[0,2,1],[2,1],[2,1] +00827fa010_940307.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[1,2],[3,0],[1,2],[0,2,1],[0,2,1],[0,2,1],[2,1,0],[2,1,0],[2,0,1],[1,2,0],[0,3],[1,2,0],[2,0,1,0],[0,3],[2,1,0],[1,1,1],[1,0,2],[3,0],[0,3],[3,0],[0,3,0],[3,0,0,0],[3,0],[2,1],[0,0,1,2],[2,1],[0,0,3],[0,3,0,0],[3,0,0],[3,0,0,0,0],[2,0,1],[0,2,1],[0,3,0],[0,1,2],[1,0,2],[1,2,0],[2,1],[2,1],[0,3],[2,1],[0,3],[0,2,1],[3,0],[2,1] +00828fa010_940307.tif,[3,0],[2,1],[2,0,0,1,0,0,0],[0,3],[0,3],[0,3],[2,1,0],[2,1,0],[0,3,0],[2,1,0],[0,3,0],[1,2,0],[3,0,0],[2,1],[0,0,3],[1,1,1,0],[3,0],[2,0,1],[2,0,1],[3,0,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[3,0],[0,2,0,1],[2,1],[0,0,3],[3,0,0,0],[1,0,2],[0,0,0,3,0],[3,0,0],[2,1,0],[2,1,0],[0,3,0],[3,0,0],[1,2,0],[3,0],[1,2],[1,2],[3,0],[3,0],[3,0,0],[3,0],[3,0] +00829fa010_940307.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[1,1],[0,3],[0,3],[2,1,0],[2,1,0],[1,2,0],[1,2,0],[1,2,0],[1,2,0],[3,0,0],[2,1],[1,1,1],[2,1,0,0],[1,2],[2,0,1],[0,0,3],[3,0,0],[3,0],[3,0],[3,0],[2,0,1],[3,0,0,0],[3,0],[2,1],[1,1,0,1],[0,3],[0,2,1],[3,0,0,0],[2,1,0],[0,1,0,2,0],[3,0,0],[2,1,0],[0,2,1],[0,2,1],[1,1,1],[1,2,0],[3,0],[1,2],[2,1],[0,3],[1,2],[3,0,0],[1,2],[3,0] +00830fa010_940307.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[2,1],[0,3],[3,0],[2,1,0],[2,1,0],[2,0,1],[1,1,1],[0,3,0],[2,1,0],[2,0,1],[2,1],[3,0,0],[0,2,1,0],[3,0],[1,0,2],[3,0,0],[2,1,0],[3,0],[3,0],[3,0],[1,2,0],[3,0,0,0],[0,3],[0,3],[1,2,0,0],[2,1],[2,0,1],[3,0,0,0],[2,0,1],[3,0,0,0,0],[2,0,1],[1,0,2],[1,2,0],[0,3,0],[0,2,1],[1,2,0],[3,0],[1,2],[2,1],[0,3],[0,3],[3,0,0],[1,2],[2,1] +00831fa010_940307.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[0,3],[0,3],[2,1],[3,0,0],[2,1,0],[2,1,0],[1,2,0],[0,3,0],[2,1,0],[0,3,0],[2,1],[2,1,0],[1,1,0,1],[2,1],[1,0,2],[1,1,1],[1,2,0],[3,0],[0,3],[3,0],[0,2,1],[3,0,0,0],[2,1],[2,1],[2,1,0,0],[0,3],[0,3,0],[2,1,0,0],[1,0,2],[3,0,0,0,0],[3,0,0],[2,1,0],[1,2,0],[0,0,3],[2,0,1],[2,1,0],[3,0],[2,1],[1,2],[1,2],[0,3],[0,0,3],[3,0],[2,1] +00832fa010_940307.tif,[3,0],[1,2],[0,0,0,0,0,3,0],[1,2],[1,2],[3,0],[1,0,2],[2,1,0],[2,1,0],[0,3,0],[0,2,1],[2,1,0],[1,1,1],[2,1],[3,0,0],[1,1,1,0],[0,3],[3,0,0],[1,2,0],[3,0,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[1,2],[1,2,0,0],[0,3],[0,3,0],[1,2,0,0],[0,3,0],[0,0,0,3,0],[2,0,1],[2,1,0],[0,2,1],[0,3,0],[2,1,0],[1,1,1],[3,0],[1,2],[0,3],[1,2],[2,1],[0,3,0],[3,0],[3,0] +00833fb010_940307.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[1,0,2],[0,0,3],[2,0,1],[0,1,2],[2,1,0],[0,3,0],[0,1,2],[2,1],[2,1,0],[3,0,0,0],[0,3],[2,0,1],[0,3,0],[3,0,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,1],[0,3,0,0],[1,2],[0,2,1],[3,0,0,0],[3,0,0],[3,0,0,0,0],[3,0,0],[1,0,2],[2,1,0],[1,2,0],[0,3,0],[2,1,0],[2,1],[1,2],[0,3],[2,1],[3,0],[0,0,3],[3,0],[2,1] +00834fb010_940307.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[2,1],[2,1],[1,2],[1,2,0],[2,1,0],[2,0,1],[1,1,1],[0,1,2],[2,1,0],[0,2,1],[2,1],[2,1,0],[1,0,1,1],[2,1],[2,1,0],[0,0,3],[3,0,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[1,2],[1,2,0,0],[1,2],[0,1,2],[1,2,0,0],[0,3,0],[2,0,1,0,0],[2,0,1],[2,0,1],[2,1,0],[3,0,0],[3,0,0],[2,1,0],[3,0],[1,2],[3,0],[0,3],[2,1],[2,1,0],[3,0],[2,1] +00835fa010_940307.tif,[1,2],[3,0],[1,0,2,0,0,0,0],[1,2],[1,2],[1,2],[2,0,1],[2,0,1],[1,2,0],[0,3,0],[0,3,0],[0,3,0],[3,0,0],[2,1],[2,1,0],[0,1,1,1],[1,2],[2,0,1],[1,2,0],[0,3,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,1],[0,1,2,0],[1,2],[3,0,0],[0,3,0,0],[1,1,1],[1,1,1,0,0],[3,0,0],[3,0,0],[0,2,1],[0,0,3],[1,0,2],[3,0,0],[3,0],[1,2],[1,2],[0,3],[3,0],[1,2,0],[3,0],[1,2] +00836fa010_940307.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[2,1],[0,3],[3,0],[2,0,1],[1,0,2],[3,0,0],[1,1,1],[1,2,0],[1,2,0],[1,0,2],[3,0],[3,0,0],[1,0,0,2],[1,2],[3,0,0],[1,0,2],[0,0,3],[3,0],[3,0],[3,0],[2,0,1],[3,0,0,0],[2,1],[1,2],[0,0,0,3],[2,1],[0,2,1],[3,0,0,0],[2,0,1],[3,0,0,0,0],[0,2,1],[2,0,1],[0,0,3],[2,0,1],[0,0,3],[2,1,0],[3,0],[1,2],[3,0],[0,3],[3,0],[0,0,3],[3,0],[3,0] +00837fb010_940307.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[1,1,1],[3,0,0],[1,2,0],[2,1,0],[0,3,0],[2,1,0],[1,1,1],[1,2],[2,1,0],[1,1,1,0],[2,1],[2,0,1],[2,1,0],[2,1,0],[3,0],[2,1],[3,0],[3,0,0],[3,0,0,0],[2,1],[3,0],[0,2,0,1],[0,3],[0,2,1],[3,0,0,0],[2,1,0],[3,0,0,0,0],[1,0,2],[0,0,3],[1,2,0],[1,2,0],[3,0,0],[3,0,0],[3,0],[0,3],[2,1],[3,0],[3,0],[0,2,1],[3,0],[3,0] +00838fa010_940307.tif,[3,0],[2,1],[2,0,0,0,0,1,0],[1,2],[2,1],[0,3],[2,0,1],[1,0,2],[0,0,3],[0,1,2],[1,1,1],[0,3,0],[0,0,3],[3,0],[2,1,0],[2,1,0,0],[0,3],[2,0,1],[0,2,1],[2,1,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,1],[2,1,0,0],[0,3],[0,1,2],[0,3,0,0],[1,2,0],[2,0,0,0,1],[3,0,0],[3,0,0],[1,1,1],[2,1,0],[2,1,0],[0,3,0],[2,1],[2,1],[0,3],[2,1],[2,1],[3,0,0],[1,2],[2,1] +00839fb010_940307.tif,[3,0],[2,1],[0,0,3,0,0,0,0],[0,3],[1,2],[1,2],[2,0,1],[2,0,1],[0,0,3],[0,0,3],[1,2,0],[0,3,0],[2,1,0],[2,1],[0,2,1],[1,0,2,0],[0,3],[3,0,0],[1,0,2],[0,1,2],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[0,3],[2,1,0,0],[1,2],[1,1,1],[3,0,0,0],[3,0,0],[0,0,3,0,0],[2,0,1],[0,0,3],[1,1,1],[1,1,1],[1,2,0],[0,3,0],[3,0],[0,3],[2,1],[0,3],[2,1],[1,1,1],[1,2],[3,0] +00840fb010_940307.tif,[2,1],[0,3],[3,0,0,0,0,0,0],[0,3],[1,2],[1,2],[3,0,0],[3,0,0],[2,1,0],[1,2,0],[0,2,1],[0,2,1],[3,0,0],[2,1],[2,0,1],[0,0,1,1],[1,2],[1,1,1],[1,1,1],[1,1,1],[3,0],[0,3],[3,0],[3,0,0],[1,0,0,1],[3,0],[0,2],[1,2,0,0],[0,3],[1,2,0],[3,0,0,0],[2,1,0],[3,0,0,0,0],[2,0,1],[1,0,2],[2,1,0],[1,2,0],[2,1,0],[2,1,0],[2,1],[0,3],[2,1],[0,3],[3,0],[0,2,1],[3,0],[2,1] +00841fa010_940307.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[1,2],[1,2,0],[1,2,0],[1,0,2],[0,2,1],[0,3,0],[0,3,0],[3,0,0],[2,1],[3,0,0],[3,0,0,0],[3,0],[3,0,0],[2,1,0],[2,1,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,1],[1,2,0,0],[1,2],[0,2,1],[3,0,0,0],[1,2,0],[3,0,0,0,0],[2,0,1],[1,2,0],[1,2,0],[0,2,1],[1,0,2],[0,3,0],[3,0],[0,3],[1,2],[0,3],[1,2],[3,0,0],[2,1],[3,0] +00842fb010_940307.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[0,3],[1,2],[0,3],[0,0,3],[1,2,0],[3,0,0],[2,1,0],[1,2,0],[2,1,0],[2,1,0],[2,1],[2,0,1],[3,0,0,0],[1,2],[1,0,2],[2,1,0],[2,1,0],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[3,0],[2,1,0,0],[0,3],[0,2,1],[2,1,0,0],[1,2,0],[3,0,0,0,0],[1,0,2],[3,0,0],[2,1,0],[0,2,1],[1,1,1],[1,2,0],[0,3],[1,2],[0,3],[3,0],[3,0],[3,0,0],[3,0],[3,0] +00844fa010_940307.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[2,1],[0,3],[1,2],[3,0,0],[3,0,0],[2,0,1],[0,1,2],[0,3,0],[1,2,0],[3,0,0],[2,1],[0,2,1],[1,0,2,0],[3,0],[1,1,1],[2,1,0],[2,1,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[0,3],[1,2,0,0],[0,3],[0,1,2],[3,0,0,0],[3,0,0],[3,0,0,0,0],[1,0,2],[1,2,0],[1,1,1],[1,2,0],[1,0,2],[2,1,0],[3,0],[1,2],[3,0],[0,3],[3,0],[2,1,0],[3,0],[2,1] +00845fa010_940307.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[3,0],[0,3],[2,1],[2,0,1],[1,1,1],[0,0,3],[0,1,2],[1,2,0],[2,1,0],[2,0,1],[3,0],[2,1,0],[2,0,1,0],[0,3],[0,0,3],[1,1,1],[1,0,2],[3,0],[3,0],[3,0],[2,1,0],[3,0,0,0],[3,0],[3,0],[1,2,0,0],[2,1],[1,1,1],[0,1,2,0],[0,3,0],[2,0,1,0,0],[2,0,1],[0,2,1],[0,3,0],[0,3,0],[0,1,2],[3,0,0],[3,0],[0,3],[1,2],[1,2],[0,3],[3,0,0],[3,0],[2,1] +00846fa010_940307.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[2,1],[2,1],[2,1],[0,1,2],[1,2,0],[3,0,0],[0,1,2],[2,1,0],[0,3,0],[2,0,1],[3,0],[3,0,0],[0,0,3,0],[1,2],[2,1,0],[0,1,2],[1,0,2],[0,3],[3,0],[3,0],[0,0,3],[3,0,0,0],[2,1],[0,3],[0,1,1,1],[2,1],[0,2,0],[1,2,0,0],[1,0,2],[3,0,0,0,0],[2,0,1],[1,2,0],[0,3,0],[1,1,1],[1,2,0],[1,2,0],[3,0],[0,3],[2,1],[0,3],[1,2],[2,0,1],[2,1],[3,0] +00847fa010_940307.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[3,0],[1,1,1],[0,2,1],[2,0,1],[2,1,0],[0,3,0],[0,3,0],[1,0,2],[2,1],[3,0,0],[2,0,0,1],[2,1],[1,0,2],[2,0,1],[1,0,2],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[0,3],[1,2],[1,1,1,0],[1,2],[1,1,1],[2,1,0,0],[2,0,1],[3,0,0,0,0],[2,0,1],[2,0,1],[2,1,0],[0,2,1],[3,0,0],[2,1,0],[3,0],[2,1],[1,2],[0,3],[0,3],[0,3,0],[3,0],[2,1] +00848fa010_940307.tif,[1,2],[1,2],[3,0,0,0,0,0,0],[0,3],[2,1],[1,2],[1,1,1],[2,0,1],[0,0,3],[0,1,2],[0,1,2],[3,0,0],[1,0,2],[1,2],[2,0,1],[1,0,1,1],[2,1],[2,0,1],[3,0,0],[1,1,1],[3,0],[0,3],[3,0],[0,3,0],[3,0,0,0],[3,0],[0,3],[1,0,2,0],[1,2],[0,2,1],[3,0,0,0],[3,0,0],[3,0,0,0,0],[2,0,1],[2,1,0],[0,3,0],[1,2,0],[1,0,2],[0,1,2],[3,0],[1,2],[2,1],[0,3],[0,3],[1,1,1],[3,0],[2,1] +00850fb010_940307.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[1,2],[1,2],[2,1],[1,2,0],[3,0,0],[3,0,0],[2,0,1],[0,3,0],[1,2,0],[2,0,1],[1,2],[3,0,0],[1,0,0,2],[1,2],[0,0,3],[2,0,1],[0,1,2],[3,0],[0,3],[3,0],[0,3,0],[3,0,0,0],[2,1],[2,1],[1,2,0,0],[0,3],[0,1,2],[3,0,0,0],[2,0,1],[3,0,0,0,0],[1,1,1],[2,0,1],[2,1,0],[0,2,1],[0,2,1],[1,2,0],[3,0],[1,2],[2,1],[0,3],[3,0],[1,2,0],[3,0],[3,0] +00851fa010_940307.tif,[1,2],[1,2],[3,0,0,0,0,0,0],[2,1],[0,3],[3,0],[0,3,0],[1,2,0],[1,2,0],[2,0,1],[0,1,2],[1,0,2],[3,0,0],[2,1],[3,0,0],[1,1,1,0],[3,0],[1,0,2],[3,0,0],[2,1,0],[2,1],[0,3],[3,0],[2,1,0],[3,0,0,0],[1,2],[2,1],[0,3,0,0],[2,1],[1,1,1],[1,2,0,0],[0,3,0],[3,0,0,0,0],[0,1,2],[3,0,0],[0,1,2],[1,1,1],[2,1,0],[0,2,1],[3,0],[0,3],[1,2],[1,2],[1,2],[0,1,2],[2,1],[3,0] +00852fa010_940307.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[0,3],[0,3],[2,1],[3,0,0],[1,2,0],[2,0,1],[0,2,1],[0,3,0],[0,3,0],[3,0,0],[3,0],[1,2,0],[1,1,0,1],[2,1],[2,0,1],[1,0,2],[2,1,0],[3,0],[3,0],[3,0],[2,0,1],[3,0,0,0],[3,0],[0,3],[0,2,0,1],[0,3],[0,3,0],[3,0,0,0],[1,1,1],[3,0,0,0,0],[0,0,3],[2,0,1],[1,2,0],[1,1,1],[1,0,2],[2,1,0],[3,0],[0,3],[1,2],[0,3],[3,0],[0,3,0],[1,2],[3,0] +00853fa010_940307.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[2,1],[2,0,1],[1,1,1],[3,0,0],[2,1,0],[2,1,0],[1,2,0],[2,0,1],[2,1],[3,0,0],[1,0,1,1],[2,1],[3,0,0],[1,1,1],[0,3,0],[3,0],[3,0],[3,0],[2,1,0],[3,0,0,0],[3,0],[1,2],[0,3,0,0],[0,3],[0,1,2],[3,0,0,0],[1,2,0],[3,0,0,0,0],[2,0,1],[2,1,0],[0,2,1],[1,2,0],[0,2,1],[1,2,0],[2,1],[2,1],[1,2],[1,2],[2,1],[2,1,0],[2,1],[1,2] +00854fa010_940307.tif,[1,2],[1,2],[1,0,0,2,0,0,0],[2,1],[1,2],[2,1],[3,0,0],[2,1,0],[3,0,0],[1,2,0],[0,0,3],[0,0,3],[2,0,1],[3,0],[0,0,3],[0,2,1,0],[3,0],[1,1,1],[2,1,0],[0,1,2],[3,0],[3,0],[3,0],[2,0,1],[0,0,3,0],[0,3],[3,0],[0,0,2,0],[0,3],[1,2,0],[3,0,0,0],[1,2,0],[0,2,0,1,0],[0,0,3],[1,0,2],[1,1,1],[1,2,0],[2,0,1],[0,0,3],[3,0],[2,1],[2,1],[0,3],[2,1],[1,1,1],[3,0],[2,1] +00855fa010_940307.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[2,1],[0,3],[1,2],[2,1,0],[2,1,0],[2,0,1],[1,1,1],[1,2,0],[2,1,0],[2,0,1],[0,3],[2,1,0],[1,1,1,0],[1,2],[0,0,3],[0,0,3],[1,0,2],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[0,3],[0,3,0,0],[0,3],[1,1,1],[3,0,0,0],[1,2,0],[3,0,0,0,0],[2,0,1],[1,2,0],[0,1,2],[1,2,0],[0,2,1],[0,3,0],[3,0],[1,2],[2,1],[0,3],[3,0],[1,2,0],[3,0],[2,1] +00856fa010_940307.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[2,1],[1,2],[1,2],[2,0,1],[0,2,1],[1,0,2],[1,1,1],[1,0,2],[2,1,0],[3,0,0],[3,0],[2,0,1],[0,1,2,0],[0,3],[3,0,0],[0,3,0],[1,0,2],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[1,2],[3,0,0,0],[1,2],[1,1,1],[3,0,0,0],[1,1,1],[3,0,0,0,0],[3,0,0],[1,0,2],[1,1,1],[0,2,1],[1,2,0],[1,2,0],[3,0],[1,2],[1,2],[0,3],[3,0],[1,2,0],[3,0],[2,1] +00857fa010_940307.tif,[1,2],[1,2],[3,0,0,0,0,0,0],[2,1],[1,2],[0,3],[3,0,0],[2,1,0],[3,0,0],[2,1,0],[0,1,2],[1,0,2],[3,0,0],[2,1],[0,0,3],[3,0,0,0],[2,1],[2,0,1],[2,1,0],[2,0,1],[3,0],[3,0],[3,0],[1,1,1],[0,1,1,1],[2,1],[3,0],[0,0,3,0],[0,3],[0,2,1],[3,0,0,0],[3,0,0],[2,0,1,0,0],[2,1,0],[2,0,1],[0,0,3],[2,1,0],[2,0,1],[0,0,3],[3,0],[0,3],[1,2],[2,1],[3,0],[1,2,0],[3,0],[3,0] +00858fa010_940307.tif,[2,1],[2,1],[2,0,0,0,0,0,0],[1,2],[0,3],[2,1],[0,1,2],[1,0,2],[3,0,0],[0,1,2],[0,2,1],[2,0,1],[1,0,2],[1,2],[2,1,0],[1,1,1,0],[0,3],[1,1,1],[2,1,0],[2,1,0],[3,0],[0,3],[3,0],[0,3,0],[2,0,1,0],[3,0],[3,0],[3,0,0,0],[0,3],[1,1,1],[3,0,0,0],[2,1,0],[3,0,0,0,0],[3,0,0],[2,0,1],[1,2,0],[0,0,3],[0,3,0],[1,2,0],[3,0],[0,3],[3,0],[1,2],[2,1],[2,1,0],[3,0],[3,0] +00859fa010_940307.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[2,1],[0,3],[2,1],[1,0,2],[0,3,0],[1,0,2],[0,3,0],[1,2,0],[3,0,0],[3,0,0],[2,1],[1,2,0],[0,2,1,0],[3,0],[1,0,2],[0,3,0],[3,0,0],[2,1],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[1,1],[2,1,0,0],[2,1],[0,2,1],[3,0,0,0],[2,1,0],[2,0,1,0,0],[3,0,0],[2,1,0],[0,2,1],[0,2,1],[3,0,0],[0,2,1],[3,0],[1,2],[0,3],[3,0],[3,0],[1,2,0],[3,0],[2,1] +00860fa010_940307.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[2,1],[1,2],[1,2],[1,0,2],[0,0,3],[0,0,3],[1,0,2],[2,0,1],[0,3,0],[1,0,2],[3,0],[1,1,1],[3,0,0,0],[0,3],[3,0,0],[1,2,0],[0,2,1],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[1,2],[1,2,0,0],[0,3],[0,2,1],[3,0,0,0],[2,1,0],[3,0,0,0,0],[1,0,2],[2,0,1],[1,2,0],[2,1,0],[1,2,0],[3,0,0],[3,0],[1,2],[1,2],[0,3],[3,0],[1,1,1],[3,0],[3,0] +00861fb010_940307.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[1,2],[2,1],[3,0],[1,0,2],[0,1,2],[1,0,2],[0,3,0],[1,1,0],[1,2,0],[2,0,1],[2,1],[2,1,0],[2,0,1,0],[1,2],[3,0,0],[1,2,0],[2,1,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[0,3],[2,1,0,0],[0,3],[2,1,0],[3,0,0,0],[2,1,0],[3,0,0,0,0],[2,0,1],[3,0,0],[1,2,0],[1,0,2],[1,2,0],[1,2,0],[3,0],[1,2],[3,0],[0,3],[3,0],[1,2,0],[3,0],[3,0] +00862fa010_940307.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[2,1],[0,3],[2,1],[1,1,1],[3,0,0],[2,0,1],[2,1,0],[0,0,3],[2,1,0],[3,0,0],[2,1],[2,0,1],[0,1,2,0],[3,0],[1,2,0],[1,1,1],[2,1,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[0,3],[1,1,1,0],[0,3],[0,1,2],[2,1,0,0],[1,1,1],[3,0,0,0,0],[1,0,2],[1,1,1],[0,1,2],[1,2,0],[1,2,0],[0,3,0],[3,0],[0,3],[2,1],[0,3],[3,0],[1,2,0],[3,0],[1,2] +00863fa010_940307.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[1,1,1],[3,0,0],[1,2,0],[3,0,0],[0,1,2],[2,1,0],[1,2,0],[3,0],[2,0,1],[2,0,0,1],[3,0],[2,0,1],[1,0,2],[2,1,0],[3,0],[2,1],[3,0],[2,1,0],[3,0,0,0],[3,0],[2,1],[1,1,0,1],[0,3],[0,1,1],[3,0,0,0],[1,2,0],[3,0,0,0,0],[1,0,2],[2,1,0],[1,2,0],[0,2,1],[1,0,2],[0,3,0],[3,0],[1,2],[1,2],[0,3],[3,0],[2,0,1],[2,1],[3,0] +00864fa010_940307.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[1,2],[1,2],[1,2],[2,0,1],[1,2,0],[3,0,0],[1,1,1],[0,3,0],[1,1,1],[1,1,1],[1,2],[3,0,0],[1,0,1,1],[2,1],[0,0,3],[0,3,0],[3,0,0],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[3,0],[0,3],[1,0,0,2],[0,3],[0,1,1],[3,0,0,0],[2,1,0],[3,0,0,0,0],[1,0,2],[3,0,0],[0,3,0],[0,3,0],[1,1,1],[0,1,2],[3,0],[2,1],[1,2],[0,3],[3,0],[2,0,1],[3,0],[2,0] +00866fa010_940307.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[3,0,0],[3,0,0],[2,0,1],[0,2,1],[1,2,0],[1,2,0],[3,0,0],[2,1],[1,2,0],[1,1,0,1],[3,0],[1,0,2],[2,0,1],[3,0,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[3,0],[1,2,0,0],[0,3],[0,2,1],[3,0,0,0],[0,3,0],[3,0,0,0,0],[2,0,1],[2,1,0],[1,0,2],[1,0,2],[1,0,2],[0,3,0],[2,1],[2,1],[1,2],[3,0],[2,1],[0,2,1],[3,0],[3,0] +00867fa010_940307.tif,[2,1],[1,2],[2,0,0,0,1,0,0],[1,2],[0,3],[0,3],[2,0,1],[2,1,0],[1,2,0],[2,1,0],[0,0,3],[3,0,0],[3,0,0],[3,0],[3,0,0],[2,1,0,0],[3,0],[3,0,0],[0,2,1],[3,0,0],[3,0],[3,0],[3,0],[3,0,0],[2,0,1,0],[0,3],[1,2],[0,0,3,0],[1,2],[0,1,2],[3,0,0,0],[1,0,2],[2,0,1,0,0],[1,2,0],[1,0,2],[0,1,2],[0,3,0],[0,2,1],[0,2,1],[1,2],[2,1],[0,3],[1,2],[3,0],[0,2,1],[2,1],[3,0] +00868fa010_940307.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[1,2],[1,2],[2,1],[2,1,0],[0,0,3],[2,0,1],[0,2,1],[1,1,1],[1,2,0],[2,0,1],[3,0],[2,1,0],[1,0,2,0],[0,3],[3,0,0],[0,3,0],[1,0,2],[3,0],[3,0],[3,0],[1,0,2],[3,0,0,0],[1,2],[1,2],[1,1,0,1],[0,3],[0,1,2],[2,1,0,0],[2,1,0],[2,0,1,0,0],[1,0,2],[1,0,2],[1,2,0],[3,0,0],[0,3,0],[1,2,0],[3,0],[2,1],[0,3],[0,3],[2,1],[3,0,0],[3,0],[2,1] +00869fa010_940307.tif,[1,2],[2,1],[2,0,0,1,0,0,0],[1,2],[1,2],[2,1],[1,2,0],[3,0,0],[0,3,0],[2,1,0],[1,0,2],[0,3,0],[3,0,0],[1,2],[3,0,0],[1,2,0,0],[3,0],[1,1,1],[3,0,0],[1,2,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[3,0],[1,1,0,1],[0,3],[1,2,0],[3,0,0,0],[1,2,0],[0,0,0,3,0],[0,1,2],[2,1,0],[0,2,1],[1,1,1],[3,0,0],[0,3,0],[2,1],[2,1],[1,2],[2,1],[3,0],[3,0,0],[2,1],[2,1] +00870fa010_940307.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[3,0],[0,3],[2,1],[0,0,3],[2,0,1],[1,0,2],[0,1,2],[1,1,1],[0,3,0],[2,1,0],[3,0],[1,2,0],[0,0,2,1],[1,2],[3,0,0],[0,3,0],[1,0,1],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[1,2],[0,2,1,0],[2,1],[0,1,1],[3,0,0,0],[2,0,1],[3,0,0,0,0],[3,0,0],[2,1,0],[1,2,0],[0,3,0],[3,0,0],[2,1,0],[3,0],[0,3],[2,1],[0,3],[0,3],[2,1,0],[3,0],[3,0] +00871fa010_940307.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[2,1],[0,3],[3,0],[2,1,0],[2,1,0],[1,2,0],[2,1,0],[2,1,0],[0,3,0],[3,0,0],[2,1],[2,0,1],[1,0,2,0],[3,0],[1,1,1],[0,0,3],[2,0,0],[2,1],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[1,2],[0,2,0,1],[0,3],[0,0,3],[3,0,0,0],[3,0,0],[3,0,0,0,0],[2,0,1],[2,0,1],[0,2,1],[1,1,1],[1,2,0],[0,2,1],[3,0],[1,2],[2,1],[0,3],[3,0],[1,2,0],[3,0],[3,0] +00872fb010_940307.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[1,2],[1,2],[0,3],[1,1,1],[2,1,0],[0,2,1],[2,1,0],[0,2,1],[3,0,0],[3,0,0],[1,2],[0,1,2],[0,2,0,1],[2,1],[1,1,1],[3,0,0],[3,0,0],[3,0],[1,2],[3,0],[3,0,0],[3,0,0,0],[2,1],[2,1],[1,0,1,1],[0,3],[1,1,1],[1,2,0,0],[3,0,0],[3,0,0,0,0],[0,1,2],[3,0,0],[1,2,0],[0,2,1],[2,0,1],[0,3,0],[3,0],[1,2],[2,1],[1,2],[1,2],[1,2,0],[3,0],[0,3] +00873fb010_940307.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[2,1],[0,3],[2,1],[0,3,0],[0,2,1],[0,3,0],[3,0,0],[1,2,0],[3,0,0],[3,0,0],[2,1],[3,0,0],[1,1,1,0],[2,1],[3,0,0],[3,0,0],[2,0,1],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[0,3],[0,2,0,1],[2,1],[1,2,0],[2,1,0,0],[2,1,0],[3,0,0,0,0],[0,1,2],[2,1,0],[3,0,0],[1,2,0],[2,0,1],[2,1,0],[3,0],[0,3],[3,0],[0,3],[1,2],[0,3,0],[2,1],[3,0] +00874fa010_940307.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[1,0,2],[0,2,1],[0,0,3],[0,1,2],[1,2,0],[1,2,0],[0,2,1],[2,1],[1,1,1],[3,0,0,0],[0,3],[3,0,0],[0,2,1],[1,2,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[0,3],[2,1],[0,2,0,1],[0,3],[0,3,0],[3,0,0,0],[3,0,0],[3,0,0,0,0],[2,0,1],[2,1,0],[2,1,0],[2,1,0],[1,2,0],[3,0,0],[0,3],[3,0],[0,3],[3,0],[3,0],[0,3,0],[3,0],[2,1] +00875fa010_940307.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[1,2],[0,3],[3,0],[1,1,1],[2,0,1],[0,0,3],[0,2,1],[1,2,0],[0,3,0],[1,0,2],[2,1],[1,2,0],[1,1,1,0],[3,0],[0,0,3],[1,0,2],[0,3,0],[3,0],[3,0],[2,1],[3,0,0],[3,0,0,0],[0,3],[0,3],[0,1,0,2],[1,2],[0,2,1],[3,0,0,0],[2,0,1],[3,0,0,0,0],[3,0,0],[1,1,1],[0,2,1],[1,2,0],[2,1,0],[0,1,2],[3,0],[1,2],[2,1],[0,3],[2,1],[3,0,0],[1,2],[3,0] +00876fb010_960530.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[0,3],[1,2],[1,2],[2,1,0],[2,0,1],[3,0,0],[2,1,0],[1,1,1],[0,2,1],[2,0,1],[2,1],[1,2,0],[2,1,0,0],[1,2],[3,0,0],[1,0,2],[0,0,3],[3,0],[3,0],[3,0],[1,2,0],[2,0,1,0],[3,0],[2,1],[1,1,0,1],[0,3],[0,2,1],[3,0,0,0],[1,2,0],[3,0,0,0,0],[3,0,0],[3,0,0],[0,3,0],[0,2,0],[3,0,0],[0,2,1],[0,3],[3,0],[0,3],[3,0],[3,0],[2,1,0],[3,0],[0,3] +00877fa010_960530.tif,[2,1],[0,3],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[1,1,1],[1,0,2],[3,0,0],[3,0,0],[1,2,0],[0,3,0],[0,1,2],[3,0],[1,2,0],[3,0,0,0],[0,3],[3,0,0],[1,0,2],[1,0,2],[2,1],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[3,0,0,0],[0,3],[1,0,1],[2,1,0,0],[3,0,0],[3,0,0,0,0],[1,0,2],[2,0,1],[1,2,0],[1,2,0],[1,2,0],[0,3,0],[2,1],[2,1],[1,2],[3,0],[3,0],[1,0,2],[3,0],[2,1] +00878fa010_960530.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[0,3],[1,2],[0,3],[2,1,0],[3,0,0],[1,2,0],[1,1,1],[1,2,0],[2,0,1],[2,0,1],[2,1],[1,1,1],[1,0,0,1],[2,1],[2,0,1],[2,0,1],[0,1,2],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[2,1],[0,2,0,1],[1,2],[0,3,0],[2,1,0,0],[2,1,0],[3,0,0,0,0],[3,0,0],[1,0,2],[0,3,0],[0,2,1],[3,0,0],[2,1,0],[1,2],[3,0],[1,2],[3,0],[1,2],[0,3,0],[3,0],[1,2] +00879fa010_960530.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[1,2],[1,2],[0,3],[1,1,1],[3,0,0],[1,2,0],[3,0,0],[1,1,1],[1,2,0],[0,2,1],[3,0],[2,1,0],[3,0,0,0],[2,1],[3,0,0],[0,0,3],[2,0,0],[1,2],[3,0],[3,0],[2,0,1],[3,0,0,0],[2,1],[3,0],[1,1,1,0],[0,3],[1,1,1],[3,0,0,0],[1,2,0],[2,0,1,0,0],[3,0,0],[3,0,0],[1,2,0],[1,1,1],[2,1,0],[0,3,0],[0,3],[3,0],[0,3],[2,1],[3,0],[1,2,0],[3,0],[2,1] +00880fa010_960530.tif,[0,3],[1,2],[3,0,0,0,0,0,0],[2,1],[0,3],[2,1],[1,0,2],[2,1,0],[0,0,3],[1,1,1],[1,1,1],[0,0,3],[2,0,1],[3,0],[1,0,2],[1,2,0,0],[1,2],[1,0,2],[0,2,1],[1,2,0],[2,1],[3,0],[3,0],[3,0,0],[2,0,0,1],[3,0],[1,2],[0,3,0,0],[2,1],[0,2,1],[3,0,0,0],[2,1,0],[3,0,0,0,0],[1,0,2],[3,0,0],[0,2,1],[1,2,0],[2,1,0],[0,3,0],[3,0],[2,1],[1,2],[1,2],[3,0],[1,2,0],[2,1],[3,0] +00881fa010_960530.tif,[3,0],[2,1],[0,1,0,0,0,2,0],[0,3],[0,3],[2,0],[1,1,1],[0,0,3],[1,2,0],[0,2,1],[0,3,0],[0,3,0],[1,0,2],[0,3],[1,2,0],[3,0,0,0],[0,3],[1,1,1],[2,1,0],[1,0,2],[3,0],[3,0],[3,0],[1,0,2],[0,0,2,1],[2,1],[3,0],[0,2,0,1],[0,3],[0,2,0],[2,0,0,0],[1,1,1],[0,0,2,1,0],[3,0,0],[2,0,1],[0,2,1],[2,1,0],[0,3,0],[0,3,0],[2,1],[1,2],[1,2],[3,0],[3,0],[0,2,1],[3,0],[3,0] +00882fa010_960530.tif,[3,0],[2,1],[2,0,1,0,0,0,0],[0,3],[0,3],[2,1],[1,0,2],[1,0,2],[1,0,2],[1,1,1],[1,2,0],[1,2,0],[0,1,2],[1,2],[1,1,1],[3,0,0,0],[0,3],[3,0,0],[1,1,1],[1,0,2],[3,0],[3,0],[3,0],[1,1,1],[1,0,2,0],[2,1],[3,0],[0,1,1,1],[0,3],[0,3,0],[3,0,0,0],[3,0,0],[0,0,0,3,0],[1,0,2],[3,0,0],[0,2,1],[0,1,2],[0,2,1],[0,3,0],[2,1],[2,1],[0,3],[2,1],[3,0],[0,2,1],[3,0],[2,1] +00883fa010_960530.tif,[0,3],[1,2],[3,0,0,0,0,0,0],[2,1],[0,3],[1,2],[0,2,1],[2,1,0],[1,2,0],[1,2,0],[1,2,0],[1,1,1],[3,0,0],[3,0],[1,0,2],[1,2,0,0],[1,2],[3,0,0],[3,0,0],[3,0,0],[2,1],[0,3],[3,0],[2,0,0],[3,0,0,0],[2,1],[3,0],[1,0,2,0],[0,3],[0,2,0],[0,3,0,0],[2,1,0],[3,0,0,0,0],[3,0,0],[2,0,1],[0,1,2],[0,3,0],[3,0,0],[0,0,3],[0,3],[2,1],[0,3],[3,0],[1,2],[0,0,3],[3,0],[3,0] +00884fa010_960530.tif,[2,1],[0,3],[3,0,0,0,0,0,0],[1,2],[0,3],[3,0],[0,3,0],[2,0,1],[3,0,0],[0,0,3],[0,3,0],[2,1,0],[1,1,1],[2,1],[1,2,0],[1,1,0,1],[2,1],[3,0,0],[1,0,2],[2,1,0],[1,2],[3,0],[3,0],[0,2,1],[1,0,2,0],[3,0],[3,0],[0,1,0,2],[1,2],[0,1,2],[3,0,0,0],[3,0,0],[3,0,0,0,0],[1,1,1],[3,0,0],[0,1,2],[2,1,0],[2,1,0],[0,1,2],[2,1],[2,1],[0,3],[2,1],[3,0],[1,2,0],[3,0],[3,0] +00885fa010_960530.tif,[2,1],[0,3],[3,0,0,0,0,0,0],[1,2],[2,1],[2,1],[2,1,0],[1,1,1],[1,0,2],[0,0,3],[0,2,1],[1,1,1],[0,2,1],[2,1],[1,1,1],[2,0,0,1],[0,3],[1,1,1],[1,1,1],[1,0,2],[2,1],[3,0],[3,0],[0,1,2],[0,0,2,1],[3,0],[3,0],[0,0,0,3],[1,2],[0,3,0],[3,0,0,0],[2,1,0],[3,0,0,0,0],[0,0,3],[3,0,0],[3,0,0],[1,1,1],[1,2,0],[2,1,0],[2,1],[1,2],[1,2],[2,1],[3,0],[2,1,0],[3,0],[3,0] +00886fa010_960530.tif,[3,0],[0,3],[3,0,0,0,0,0,0],[2,1],[0,3],[1,2],[1,2,0],[0,0,3],[1,0,2],[0,0,3],[1,0,2],[0,3,0],[0,1,2],[3,0],[1,2,0],[2,0,0,1],[0,3],[3,0,0],[0,3,0],[1,0,2],[1,2],[3,0],[3,0],[0,1,2],[0,0,3,0],[3,0],[3,0],[0,0,0,3],[2,1],[0,2,0],[3,0,0,0],[2,0,1],[3,0,0,0,0],[0,0,3],[3,0,0],[1,2,0],[1,2,0],[2,1,0],[1,2,0],[3,0],[0,3],[2,1],[3,0],[1,2],[1,2,0],[3,0],[0,3] +00887fa010_960530.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[0,3],[1,2],[0,3],[1,0,2],[1,0,2],[1,2,0],[0,1,2],[0,3,0],[1,1,1],[2,0,1],[2,1],[1,2,0],[3,0,0,0],[0,3],[2,1,0],[0,3,0],[2,0,1],[3,0],[3,0],[3,0],[1,1,1],[3,0,0,0],[3,0],[2,1],[0,2,1,0],[1,2],[0,3,0],[3,0,0,0],[3,0,0],[2,0,1,0,0],[3,0,0],[3,0,0],[0,3,0],[1,1,1],[0,3,0],[1,2,0],[3,0],[2,1],[1,2],[2,1],[3,0],[3,0,0],[0,3],[2,1] +00888fa010_960530.tif,[3,0],[0,3],[2,0,0,1,0,0,0],[3,0],[1,2],[3,0],[1,1,1],[3,0,0],[1,0,2],[0,2,1],[2,1,0],[1,2,0],[0,1,2],[3,0],[0,2,1],[2,0,0,1],[2,1],[3,0,0],[1,2,0],[3,0,0],[3,0],[3,0],[3,0],[2,1,0],[3,0,0,0],[3,0],[2,1],[0,2,0,1],[0,3],[2,0,1],[0,2,1,0],[1,0,2],[0,1,0,2,0],[2,0,1],[1,1,1],[0,1,2],[0,3,0],[1,0,2],[0,2,1],[3,0],[0,3],[0,3],[1,2],[0,3],[2,1,0],[3,0],[3,0] +00889fa010_960530.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[2,0,1],[0,1,2],[2,1,0],[3,0,0],[1,0,2],[2,0,1],[0,1,2],[3,0],[2,0,1],[2,1,0,0],[0,3],[3,0,0],[3,0,0],[1,2,0],[2,1],[0,3],[3,0],[0,3,0],[3,0,0,0],[0,3],[3,0],[0,2,0,1],[0,3],[0,3,0],[3,0,0,0],[0,3,0],[3,0,0,0,0],[2,0,1],[3,0,0],[1,2,0],[0,2,1],[2,1,0],[1,2,0],[2,1],[2,1],[0,3],[3,0],[2,1],[0,1,2],[3,0],[3,0] +00890fa010_960530.tif,[3,0],[3,0],[2,0,0,0,0,1,0],[3,0],[0,3],[1,2],[1,0,2],[3,0,0],[1,2,0],[2,1,0],[2,1,0],[1,1,1],[2,0,1],[2,1],[2,1,0],[3,0,0,0],[3,0],[3,0,0],[1,0,2],[1,2,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[1,2],[2,1],[0,1,0,2],[1,2],[1,2,0],[3,0,0,0],[2,1,0],[0,0,0,3,0],[0,3,0],[1,0,2],[0,2,1],[3,0,0],[1,0,2],[0,2,1],[3,0],[0,3],[1,2],[0,3],[3,0],[2,1,0],[0,3],[2,1] +00891fa010_960530.tif,[3,0],[1,2],[2,0,0,0,1,0,0],[0,3],[0,3],[1,2],[1,0,2],[1,1,1],[0,0,3],[0,1,2],[0,2,0],[1,2,0],[1,1,1],[2,1],[2,0,1],[1,1,1,0],[0,3],[3,0,0],[3,0,0],[1,0,2],[0,3],[3,0],[3,0],[1,0,2],[0,1,0,2],[3,0],[3,0],[0,0,0,3],[2,1],[1,2,0],[2,1,0,0],[3,0,0],[2,0,1,0,0],[1,1,1],[1,2,0],[0,1,2],[2,1,0],[2,1,0],[0,3,0],[1,2],[2,1],[0,3],[2,1],[2,1],[3,0,0],[2,1],[2,1] +00892fa010_960530.tif,[1,2],[1,2],[1,0,1,1,0,0,0],[0,3],[2,1],[2,1],[0,1,2],[1,0,2],[3,0,0],[0,3,0],[1,2,0],[1,2,0],[1,1,1],[3,0],[1,1,1],[3,0,0,0],[1,2],[0,0,3],[0,3,0],[1,0,2],[1,2],[3,0],[3,0],[0,0,3],[0,0,3,0],[3,0],[3,0],[0,1,1,1],[0,3],[1,2,0],[3,0,0,0],[1,2,0],[0,0,0,3,0],[3,0,0],[1,2,0],[1,0,2],[0,2,1],[2,1,0],[0,2,1],[1,2],[3,0],[0,3],[3,0],[3,0],[3,0,0],[3,0],[2,1] +00893fa010_960530.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[2,0,1],[1,1,1],[2,1,0],[0,3,0],[0,3,0],[2,0,1],[2,0,1],[3,0],[1,1,1],[0,2,0,1],[0,3],[3,0,0],[1,0,2],[2,0,1],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,1],[0,3,0,0],[0,3],[1,2,0],[3,0,0,0],[1,2,0],[3,0,0,0,0],[2,0,1],[3,0,0],[0,3,0],[0,2,1],[1,2,0],[0,2,1],[2,1],[3,0],[0,3],[2,1],[3,0],[3,0,0],[3,0],[3,0] +00894fa010_960530.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[2,1,0],[1,1,1],[2,1,0],[1,1,1],[0,3,0],[3,0,0],[3,0,0],[1,2],[2,1,0],[2,1,0,0],[3,0],[1,0,2],[3,0,0],[0,3,0],[3,0],[1,2],[3,0],[3,0,0],[3,0,0,0],[1,2],[2,1],[0,2,0,1],[0,3],[0,3,0],[3,0,0,0],[2,0,1],[3,0,0,0,0],[3,0,0],[3,0,0],[2,1,0],[1,2,0],[2,1,0],[0,1,2],[2,1],[3,0],[0,3],[2,1],[1,2],[1,2,0],[2,1],[3,0] +00895fa010_960530.tif,[2,1],[0,3],[3,0,0,0,0,0,0],[0,3],[0,3],[1,2],[1,1,1],[2,1,0],[0,3,0],[2,1,0],[0,3,0],[3,0,0],[0,2,1],[0,3],[1,2,0],[3,0,0,0],[1,2],[2,1,0],[1,1,1],[0,3,0],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[2,1],[3,0],[1,1,1,0],[1,2],[1,2,0],[1,2,0,0],[1,2,0],[3,0,0,0,0],[1,2,0],[1,0,2],[1,2,0],[2,1,0],[0,3,0],[1,2,0],[2,1],[3,0],[0,3],[2,1],[2,1],[0,2,1],[3,0],[2,1] +00896fa010_960530.tif,[3,0],[1,2],[0,2,0,0,0,0,1],[1,2],[3,0],[2,1],[1,1,1],[0,1,2],[2,0,1],[2,1,0],[3,0,0],[1,2,0],[0,1,2],[3,0],[1,2,0],[3,0,0,0],[0,3],[3,0,0],[2,0,1],[2,0,1],[3,0],[3,0],[3,0],[1,1,1],[0,0,2,1],[2,1],[1,2],[1,1,0,1],[0,3],[0,3,0],[3,0,0,0],[1,0,2],[2,0,1,0,0],[1,0,2],[1,2,0],[2,1,0],[0,3,0],[1,1,1],[1,2,0],[2,1],[1,2],[1,2],[1,1],[3,0],[3,0,0],[3,0],[2,1] +00897fa010_960530.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[1,2],[1,2],[0,3],[0,2,1],[2,1,0],[2,0,1],[2,1,0],[0,3,0],[2,1,0],[1,1,1],[3,0],[2,0,1],[3,0,0,0],[0,3],[3,0,0],[0,0,3],[2,1,0],[3,0],[3,0],[3,0],[2,1,0],[3,0,0,0],[3,0],[3,0],[2,1,0,0],[1,2],[0,1,2],[3,0,0,0],[2,0,1],[3,0,0,0,0],[2,0,1],[0,0,3],[0,3,0],[0,2,1],[1,1,1],[0,3,0],[2,1],[2,1],[1,2],[2,1],[3,0],[1,1,1],[2,1],[1,2] +00898fa010_960530.tif,[3,0],[2,1],[1,0,0,0,0,2,0],[1,2],[0,3],[2,1],[1,0,2],[3,0,0],[1,2,0],[0,2,1],[1,2,0],[0,2,1],[0,1,2],[2,1],[3,0,0],[3,0,0,0],[2,1],[3,0,0],[3,0,0],[3,0,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,1],[1,1,1,0],[0,3],[0,1,2],[3,0,0,0],[1,0,2],[0,0,0,0,3],[2,0,1],[2,0,1],[0,3,0],[2,1,0],[2,0,1],[0,2,1],[2,1],[1,2],[2,1],[0,3],[2,1],[0,2,1],[2,1],[2,1] +00899fa010_960530.tif,[2,1],[1,2],[2,0,1,0,0,0,0],[2,1],[0,3],[2,1],[1,2,0],[1,1,1],[0,3,0],[2,1,0],[1,0,2],[2,0,1],[1,2,0],[3,0],[2,0,1],[1,1,1,0],[3,0],[2,1,0],[3,0,0],[2,0,1],[0,3],[3,0],[3,0],[0,1,2],[0,0,0,3],[3,0],[1,2],[0,2,0,1],[0,3],[0,2,1],[3,0,0,0],[3,0,0],[0,1,0,2,0],[0,1,2],[2,0,1],[0,3,0],[0,3,0],[1,2,0],[0,2,1],[3,0],[1,2],[1,2],[2,1],[1,2],[0,1,2],[3,0],[3,0] +00900fa010_960530.tif,[2,1],[1,2],[2,0,0,1,0,0,0],[3,0],[1,2],[3,0],[1,1,1],[1,1,1],[1,0,2],[0,0,3],[1,2,0],[0,3,0],[3,0,0],[2,1],[1,0,2],[3,0,0,0],[3,0],[3,0,0],[0,0,3],[3,0,0],[0,3],[3,0],[3,0],[1,2,0],[3,0,0,0],[3,0],[2,1],[1,1,0,1],[0,3],[0,1,2],[3,0,0,0],[3,0,0],[0,1,1,1,0],[2,0,1],[1,1,1],[1,2,0],[0,2,0],[3,0,0],[0,2,1],[3,0],[3,0],[0,3],[1,2],[3,0],[0,3,0],[2,1],[1,2] +00901fa010_960530.tif,[3,0],[3,0],[2,0,0,1,0,0,0],[1,2],[1,2],[1,2],[0,0,3],[0,0,3],[1,0,2],[0,1,2],[1,1,1],[1,2,0],[1,0,2],[1,2],[0,2,0],[2,0,0,1],[0,3],[3,0,0],[1,2,0],[0,0,3],[2,1],[3,0],[3,0],[1,0,2],[0,0,0,3],[3,0],[3,0],[0,0,0,3],[1,2],[0,2,1],[3,0,0,0],[2,0,1],[0,0,0,3,0],[3,0,0],[2,0,1],[1,2,0],[2,1,0],[1,2,0],[1,2,0],[0,3],[3,0],[0,3],[3,0],[3,0],[0,3,0],[2,1],[3,0] +00902fb010_960530.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[1,2],[1,2],[3,0],[0,2,1],[2,1,0],[2,1,0],[2,1,0],[0,3,0],[3,0,0],[2,0,1],[2,1],[2,0,1],[1,1,1,0],[2,1],[3,0,0],[2,1,0],[2,0,1],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[0,3],[1,0,1,1],[0,3],[0,3,0],[2,1,0,0],[2,0,1],[0,1,0,2,0],[1,0,2],[3,0,0],[1,2,0],[1,2,0],[3,0,0],[0,3,0],[3,0],[0,3],[3,0],[0,3],[2,1],[3,0,0],[3,0],[2,1] +00903fa010_960530.tif,[2,1],[0,3],[3,0,0,0,0,0,0],[3,0],[1,2],[3,0],[2,1,0],[3,0,0],[0,2,1],[3,0,0],[0,1,2],[1,0,2],[1,1,1],[2,1],[1,1,1],[0,1,2,0],[2,1],[2,1,0],[2,0,1],[0,3,0],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[2,1],[2,1],[2,0,0,1],[1,2],[0,2,1],[3,0,0,0],[2,1,0],[3,0,0,0,0],[1,0,2],[2,0,1],[1,2,0],[0,2,1],[0,3,0],[1,2,0],[3,0],[1,2],[0,3],[1,2],[1,2],[1,1,1],[3,0],[2,1] +00904fa010_960530.tif,[3,0],[0,3],[3,0,0,0,0,0,0],[1,2],[0,3],[2,1],[1,1,1],[1,0,2],[1,2,0],[1,2,0],[0,1,2],[1,0,2],[0,3,0],[3,0],[1,2,0],[0,1,0,2],[0,3],[2,1,0],[1,2,0],[2,0,1],[0,3],[3,0],[3,0],[0,1,2],[3,0,0,0],[2,1],[3,0],[1,2,0,0],[1,2],[1,2,0],[2,1,0,0],[2,0,1],[3,0,0,0,0],[1,1,1],[1,0,2],[0,1,2],[1,2,0],[0,3,0],[1,2,0],[3,0],[3,0],[1,2],[3,0],[2,1],[1,1,1],[3,0],[0,3] +00905fa010_960530.tif,[3,0],[1,2],[1,0,0,2,0,0,0],[2,1],[0,3],[2,1],[0,1,2],[2,1,0],[2,0,1],[1,1,1],[1,2,0],[1,1,1],[1,0,2],[3,0],[3,0,0],[2,0,0,1],[2,1],[2,0,1],[2,0,1],[0,0,3],[1,2],[3,0],[3,0],[0,0,3],[0,0,3,0],[2,1],[3,0],[1,0,0,2],[1,2],[1,2,0],[2,1,0,0],[3,0,0],[0,0,0,3,0],[1,1,1],[3,0,0],[1,0,2],[0,2,1],[2,1,0],[0,2,1],[3,0],[0,3],[1,2],[1,2],[3,0],[2,1,0],[3,0],[1,2] +00906fa010_960530.tif,[3,0],[1,2],[2,0,0,1,0,0,0],[1,2],[0,3],[1,2],[0,2,1],[1,0,2],[0,0,3],[1,2,0],[1,2,0],[1,2,0],[1,0,2],[2,1],[1,2,0],[2,0,0,1],[0,3],[2,0,1],[1,1,1],[1,0,2],[2,1],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[0,0,0,3],[0,3],[0,3,0],[2,1,0,0],[3,0,0],[0,0,1,2,0],[3,0,0],[3,0,0],[1,2,0],[2,1,0],[1,1,1],[1,2,0],[2,1],[1,2],[2,1],[0,3],[1,2],[0,3,0],[3,0],[2,1] +00907fa010_960530.tif,[3,0],[1,2],[0,1,0,0,0,2,0],[2,1],[1,2],[2,1],[2,0,1],[0,0,3],[1,2,0],[1,1,1],[1,0,2],[2,0,1],[0,0,3],[3,0],[2,1,0],[1,1,1,0],[0,3],[0,3,0],[2,1,0],[0,0,3],[1,2],[2,0],[3,0],[0,0,3],[1,0,2,0],[2,1],[1,2],[0,2,0,1],[0,3],[0,2,1],[3,0,0,0],[2,0,1],[0,0,0,1,2],[1,0,2],[2,0,1],[0,2,1],[0,2,1],[1,2,0],[0,2,1],[3,0],[1,2],[2,1],[1,2],[2,1],[2,1,0],[3,0],[3,0] +00908fa010_960530.tif,[2,1],[1,2],[0,0,0,0,0,3,0],[1,2],[1,2],[0,3],[3,0,0],[0,0,3],[2,1,0],[2,1,0],[2,0,1],[3,0,0],[1,0,2],[3,0],[1,1,1],[2,1,0,0],[1,2],[2,0,1],[2,0,1],[1,1,1],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[0,2,0,1],[0,3],[0,3,0],[3,0,0,0],[2,0,1],[1,0,0,0,2],[1,0,2],[1,0,1],[2,1,0],[0,2,1],[2,1,0],[0,3,0],[1,2],[2,1],[0,3],[3,0],[3,0],[2,1,0],[1,2],[2,1] +00909fa010_960530.tif,[1,2],[2,1],[2,0,0,0,0,0,1],[1,2],[0,3],[1,2],[2,0,1],[1,0,2],[3,0,0],[1,2,0],[1,2,0],[1,2,0],[0,1,2],[3,0],[0,3,0],[2,0,1,0],[0,3],[3,0,0],[2,1,0],[2,1,0],[3,0],[3,0],[3,0],[0,2,1],[3,0,0,0],[2,1],[2,0],[0,1,0,2],[1,2],[0,3,0],[2,1,0,0],[1,1,1],[3,0,0,0,0],[2,0,1],[1,0,2],[2,1,0],[2,0,1],[0,3,0],[2,1,0],[3,0],[2,1],[0,3],[1,2],[1,2],[0,1,2],[3,0],[2,1] +00910fa010_960530.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[3,0,0],[1,2,0],[0,3,0],[3,0,0],[0,2,1],[3,0,0],[1,0,2],[2,1],[0,3,0],[3,0,0,0],[2,1],[3,0,0],[3,0,0],[2,0,1],[3,0],[0,3],[3,0],[1,1,1],[3,0,0,0],[3,0],[1,2],[1,2,0,0],[0,3],[0,2,1],[3,0,0,0],[1,2,0],[3,0,0,0,0],[3,0,0],[0,0,3],[2,1,0],[0,2,1],[3,0,0],[2,1,0],[3,0],[0,3],[0,3],[3,0],[3,0],[1,1,1],[3,0],[2,1] +00911fa010_960530.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[2,1],[0,3],[2,1],[1,0,2],[0,2,1],[1,0,2],[1,2,0],[1,2,0],[1,1,1],[2,0,1],[3,0],[0,2,1],[2,1,0,0],[2,1],[3,0,0],[0,1,2],[1,2,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[0,3,0,0],[3,0],[1,1,1],[3,0,0,0],[1,1,1],[3,0,0,0,0],[2,0,1],[3,0,0],[0,0,3],[0,2,1],[3,0,0],[0,1,2],[1,2],[2,1],[3,0],[3,0],[2,1],[3,0,0],[3,0],[3,0] +00912fa010_960530.tif,[3,0],[0,3],[2,0,0,0,0,1,0],[0,3],[1,2],[0,3],[1,0,2],[2,1,0],[0,0,3],[0,0,3],[0,2,1],[2,1,0],[2,1,0],[1,2],[1,1,1],[2,0,0,1],[1,2],[2,1,0],[0,1,2],[1,0,2],[0,3],[3,0],[3,0],[2,1,0],[1,0,2,0],[2,1],[2,1],[1,0,0,2],[0,3],[0,3,0],[3,0,0,0],[2,1,0],[0,0,0,3,0],[1,0,2],[0,3,0],[0,1,2],[0,2,1],[1,2,0],[0,0,3],[2,1],[3,0],[0,2],[3,0],[2,1],[3,0,0],[3,0],[1,2] +00913fa010_960530.tif,[0,3],[3,0],[3,0,0,0,0,0,0],[3,0],[1,2],[1,2],[1,2,0],[2,1,0],[2,1,0],[1,2,0],[0,0,3],[2,0,1],[2,1,0],[3,0],[2,0,1],[0,1,2,0],[2,1],[3,0,0],[1,1,1],[3,0,0],[3,0],[2,1],[3,0],[3,0,0],[3,0,0,0],[2,1],[0,3],[2,1,0,0],[0,3],[3,0,0],[0,3,0,0],[2,1,0],[3,0,0,0,0],[2,0,1],[3,0,0],[0,1,2],[0,2,1],[3,0,0],[0,2,1],[3,0],[0,3],[1,2],[0,3],[0,3],[0,3,0],[3,0],[3,0] +00914fa010_960620.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[0,3],[1,2],[0,3],[0,2,1],[1,0,2],[1,2,0],[1,2,0],[0,3,0],[1,0,2],[0,2,1],[0,3],[2,0,1],[3,0,0,0],[2,1],[2,0,1],[3,0,0],[3,0,0],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[2,1],[3,0],[0,1,0,2],[1,2],[0,2,1],[3,0,0,0],[1,2,0],[3,0,0,0,0],[2,1,0],[2,0,1],[1,0,2],[1,1,1],[0,3,0],[0,1,1],[0,3],[3,0],[0,3],[3,0],[3,0],[0,1,2],[3,0],[3,0] +00915fa010_960620.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[2,1,0],[3,0,0],[1,1,1],[1,2,0],[1,2,0],[0,0,3],[3,0,0],[2,1],[3,0,0],[2,0,1,0],[3,0],[3,0,0],[2,1,0],[1,1,1],[3,0],[0,3],[3,0],[1,1,1],[3,0,0,0],[3,0],[3,0],[0,2,0,1],[0,3],[1,2,0],[0,3,0,0],[2,1,0],[3,0,0,0,0],[1,0,2],[3,0,0],[0,1,2],[1,2,0],[2,1,0],[0,0,2],[2,1],[0,3],[1,2],[1,2],[0,3],[0,1,2],[3,0],[3,0] +00916fa010_960620.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[1,0,2],[0,3,0],[1,0,2],[1,1,1],[2,1,0],[0,0,3],[3,0,0],[2,1],[2,0,1],[2,0,0,1],[1,2],[2,1,0],[3,0,0],[1,1,1],[3,0],[0,3],[3,0],[2,0,1],[3,0,0,0],[3,0],[3,0],[0,0,3,0],[0,3],[1,0,2],[3,0,0,0],[2,0,1],[3,0,0,0,0],[3,0,0],[1,0,2],[0,2,1],[3,0,0],[2,1,0],[0,1,2],[2,1],[2,1],[1,2],[2,1],[3,0],[1,1,1],[2,1],[3,0] +00917fa010_960620.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[2,1],[0,3],[0,3],[0,3,0],[1,0,2],[0,2,1],[3,0,0],[0,0,3],[0,0,3],[2,0,1],[3,0],[2,0,1],[2,1,0,0],[1,2],[1,2,0],[3,0,0],[1,1,1],[3,0],[3,0],[3,0],[2,1,0],[1,0,2,0],[1,2],[3,0],[1,0,1,1],[1,2],[0,2,1],[3,0,0,0],[0,1,2],[3,0,0,0,0],[0,3,0],[1,0,2],[0,0,3],[1,1,1],[0,3,0],[0,1,2],[2,1],[2,1],[0,3],[1,2],[3,0],[1,2,0],[3,0],[2,1] +00918fa010_960620.tif,[3,0],[3,0],[0,0,0,0,0,3,0],[1,2],[1,2],[1,2],[1,0,2],[0,0,3],[2,1,0],[0,1,2],[1,2,0],[0,3,0],[0,0,3],[3,0],[2,1,0],[3,0,0,0],[0,3],[3,0,0],[1,0,2],[1,0,2],[3,0],[3,0],[3,0],[3,0,0],[2,0,1,0],[1,2],[2,1],[0,0,0,3],[1,2],[0,3,0],[3,0,0,0],[2,0,1],[0,0,0,2,1],[3,0,0],[2,0,1],[0,3,0],[0,3,0],[1,1,1],[0,3,0],[3,0],[2,1],[0,3],[3,0],[2,1],[1,2,0],[3,0],[1,2] +00919fa010_960620.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[3,0],[0,3],[3,0],[1,1,1],[0,1,2],[2,0,1],[0,2,1],[0,0,3],[1,0,2],[0,0,3],[3,0],[3,0,0],[1,1,1,0],[1,2],[3,0,0],[1,0,2],[2,0,1],[3,0],[3,0],[3,0],[2,0,1],[2,0,1,0],[2,1],[0,3],[1,2,0,0],[1,2],[0,2,1],[0,3,0,0],[1,2,0],[3,0,0,0,0],[1,1,1],[1,0,2],[0,3,0],[2,1,0],[0,3,0],[0,3,0],[3,0],[0,3],[3,0],[0,3],[2,1],[2,0,0],[3,0],[3,0] +00920fa010_960627.tif,[3,0],[0,3],[3,0,0,0,0,0,0],[0,3],[1,2],[1,2],[0,1,2],[1,0,2],[2,1,0],[2,1,0],[1,2,0],[0,0,3],[0,3,0],[2,1],[1,0,2],[2,0,0,1],[2,1],[3,0,0],[3,0,0],[3,0,0],[3,0],[1,2],[3,0],[1,2,0],[3,0,0,0],[1,2],[3,0],[1,1,1,0],[1,2],[1,1,1],[0,1,2,0],[2,1,0],[3,0,0,0,0],[2,0,1],[2,0,1],[2,1,0],[3,0,0],[0,3,0],[2,1,0],[0,3],[2,1],[0,3],[3,0],[0,3],[0,2,1],[3,0],[2,1] +00921fa010_960627.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[2,1],[1,2],[1,2],[0,0,3],[2,0,1],[2,0,1],[1,2,0],[1,0,2],[2,1,0],[3,0,0],[3,0],[1,2,0],[2,1,0,0],[0,3],[3,0,0],[1,0,2],[3,0,0],[3,0],[3,0],[3,0],[3,0,0],[2,0,1,0],[3,0],[3,0],[2,1,0,0],[0,3],[0,3,0],[3,0,0,0],[2,1,0],[3,0,0,0,0],[2,0,1],[1,0,2],[2,1,0],[1,2,0],[1,2,0],[1,2,0],[2,1],[1,2],[1,2],[2,1],[2,1],[0,3,0],[3,0],[3,0] +00922fa010_960627.tif,[1,2],[1,2],[3,0,0,0,0,0,0],[1,2],[0,3],[2,1],[2,1,0],[3,0,0],[1,0,2],[0,1,2],[0,0,3],[3,0,0],[3,0,0],[3,0],[3,0,0],[1,1,0,0],[3,0],[2,1,0],[2,0,1],[1,0,2],[3,0],[3,0],[3,0],[2,0,1],[2,0,1,0],[2,1],[2,1],[1,2,0,0],[3,0],[0,3,0],[3,0,0,0],[1,0,2],[3,0,0,0,0],[3,0,0],[2,0,1],[1,2,0],[2,1,0],[0,3,0],[0,3,0],[2,1],[1,2],[1,2],[0,3],[0,2],[0,3,0],[3,0],[2,1] +00923fa010_960627.tif,[2,1],[3,0],[1,0,1,1,0,0,0],[1,1],[0,3],[2,1],[0,2,1],[0,1,2],[0,3,0],[1,2,0],[1,2,0],[2,1,0],[3,0,0],[2,1],[0,1,2],[1,0,0,2],[2,1],[1,1,1],[2,0,0],[1,0,2],[2,1],[3,0],[3,0],[1,0,2],[0,0,3,0],[3,0],[3,0],[2,1,0,0],[1,2],[1,0,2],[0,3,0,0],[1,1,1],[0,0,0,2,1],[1,0,2],[2,1,0],[0,3,0],[1,0,2],[0,2,1],[0,3,0],[3,0],[1,2],[0,3],[1,2],[0,3],[2,1,0],[3,0],[1,2] +00924fa010_960627.tif,[3,0],[1,2],[0,0,0,1,0,2,0],[0,3],[0,3],[3,0],[1,2,0],[2,1,0],[1,2,0],[1,2,0],[2,1,0],[2,1,0],[2,1,0],[2,1],[3,0,0],[3,0,0,0],[3,0],[3,0,0],[0,0,3],[3,0,0],[0,3],[3,0],[3,0],[1,1,1],[3,0,0,0],[1,2],[2,1],[0,3,0,0],[1,2],[0,1,2],[0,3,0,0],[1,0,2],[1,0,0,0,2],[3,0,0],[3,0,0],[1,1,1],[1,2,0],[1,2,0],[0,3,0],[2,1],[1,2],[1,2],[0,3],[0,3],[2,0,1],[3,0],[0,3] +00925fa010_960627.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[1,2],[1,2,0],[1,2,0],[2,1,0],[2,1,0],[0,3,0],[2,0,1],[3,0,0],[1,2],[2,0,1],[2,1,0,0],[3,0],[2,1,0],[2,0,1],[0,3,0],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[0,3],[2,0],[1,2,0,0],[1,2],[0,3,0],[3,0,0,0],[2,0,1],[3,0,0,0,0],[1,2,0],[2,0,1],[0,3,0],[1,1,1],[2,1,0],[0,1,2],[3,0],[2,1],[0,3],[2,1],[1,2],[0,3,0],[3,0],[2,1] +00926fa010_960627.tif,[3,0],[1,2],[2,0,0,1,0,0,0],[0,3],[0,3],[0,3],[0,1,2],[1,0,2],[0,0,3],[0,1,2],[3,0,0],[1,0,2],[3,0,0],[2,1],[0,3,0],[3,0,0,0],[0,3],[1,2,0],[1,2,0],[2,0,1],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[3,0],[1,1,1,0],[0,3],[1,1,1],[3,0,0,0],[2,0,1],[0,2,0,1,0],[2,0,1],[3,0,0],[2,1,0],[0,3,0],[2,1,0],[0,2,1],[0,3],[3,0],[0,3],[3,0],[3,0],[2,1,0],[2,1],[3,0] +00927fa010_960627.tif,[3,0],[0,3],[3,0,0,0,0,0,0],[2,1],[0,3],[2,1],[0,3,0],[1,0,2],[2,0,1],[3,0,0],[1,2,0],[2,1,0],[1,1,1],[2,1],[1,0,2],[1,2,0,0],[0,3],[1,2,0],[0,0,3],[2,1,0],[3,0],[1,2],[3,0],[2,1,0],[3,0,0,0],[2,1],[3,0],[1,0,1,1],[2,1],[2,1,0],[0,0,2,1],[1,0,2],[3,0,0,0,0],[2,0,1],[2,0,1],[3,0,0],[0,2,1],[1,2,0],[2,1,0],[2,1],[2,1],[0,3],[1,2],[0,3],[0,3,0],[3,0],[3,0] +00928fb010_960627.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[1,2],[0,3],[2,1],[2,1,0],[0,0,3],[0,0,3],[0,2,1],[1,2,0],[0,3,0],[1,1,1],[3,0],[2,1,0],[3,0,0,0],[0,3],[3,0,0],[0,2,1],[1,2,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,1],[1,1,0,1],[0,3],[0,1,2],[3,0,0,0],[3,0,0],[3,0,0,0,0],[3,0,0],[1,2,0],[1,2,0],[0,2,1],[2,0,1],[0,3,0],[3,0],[1,2],[0,3],[1,2],[0,3],[0,0,3],[3,0],[1,2] +00929fa010_960627.tif,[2,1],[0,3],[2,0,1,0,0,0,0],[1,2],[1,2],[1,2],[3,0,0],[0,3,0],[1,1,1],[1,2,0],[0,3,0],[3,0,0],[2,0,1],[2,1],[2,0,1],[2,0,0,1],[1,2],[1,1,1],[1,0,2],[3,0,0],[2,1],[3,0],[3,0],[1,0,2],[0,0,2,1],[0,3],[1,2],[1,1,1,0],[2,1],[0,1,2],[3,0,0,0],[2,0,1],[0,0,0,3,0],[0,1,2],[3,0,0],[0,1,2],[2,1,0],[1,1,0],[1,1,1],[3,0],[2,1],[2,1],[0,3],[2,1],[1,2,0],[3,0],[3,0] +00930fa010_960627.tif,[3,0],[1,2],[0,3,0,0,0,0,0],[0,3],[1,2],[1,2],[0,2,1],[1,1,1],[2,0,1],[0,3,0],[1,1,1],[1,2,0],[3,0,0],[2,1],[1,2,0],[3,0,0,0],[1,2],[2,0,1],[3,0,0],[2,1,0],[3,0],[3,0],[3,0],[3,0,0],[2,0,1,0],[3,0],[2,1],[1,1,0,1],[2,1],[0,2,1],[3,0,0,0],[2,0,1],[0,0,0,0,3],[0,1,2],[2,0,1],[0,0,3],[0,3,0],[1,2,0],[0,0,3],[2,1],[0,3],[2,1],[0,3],[3,0],[0,2,1],[3,0],[2,1] +00931fa010_960627.tif,[2,1],[2,1],[0,0,0,3,0,0,0],[0,3],[2,1],[1,2],[0,3,0],[2,1,0],[3,0,0],[1,2,0],[0,2,1],[2,0,1],[1,0,2],[3,0],[1,1,1],[2,0,0,1],[2,1],[2,1,0],[3,0,0],[0,0,3],[0,3],[3,0],[3,0],[0,0,3],[0,1,0,2],[0,3],[3,0],[1,1,1,0],[1,2],[0,3,0],[3,0,0,0],[2,1,0],[0,1,0,0,2],[0,0,3],[3,0,0],[0,0,3],[0,2,1],[2,1,0],[0,2,1],[0,3],[3,0],[0,3],[3,0],[3,0],[0,0,3],[3,0],[3,0] +00932fa010_960627.tif,[2,1],[0,3],[3,0,0,0,0,0,0],[2,1],[0,3],[2,1],[1,2,0],[1,2,0],[2,1,0],[1,2,0],[1,0,2],[2,1,0],[3,0,0],[3,0],[1,0,2],[0,2,1,0],[2,1],[2,1,0],[0,3,0],[1,2,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[1,2],[0,2,1,0],[3,0],[2,0,1],[1,2,0,0],[2,0,1],[3,0,0,0,0],[3,0,0],[2,1,0],[0,2,1],[1,1,1],[1,0,2],[0,3,0],[3,0],[0,3],[0,3],[1,2],[1,2],[1,1,1],[3,0],[3,0] +00933fa010_960627.tif,[1,2],[1,2],[3,0,0,0,0,0,0],[2,1],[0,3],[2,1],[2,0,1],[2,1,0],[3,0,0],[1,2,0],[2,1,0],[2,0,1],[3,0,0],[3,0],[2,1,0],[0,3,0,0],[2,1],[2,0,1],[2,0,1],[3,0,0],[2,1],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[1,1,0,1],[0,3],[0,3,0],[3,0,0,0],[2,1,0],[3,0,0,0,0],[2,0,1],[2,0,1],[0,3,0],[2,1,0],[2,1,0],[0,3,0],[3,0],[0,3],[2,1],[1,2],[3,0],[0,2,1],[3,0],[2,1] +00934fb010_960627.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[2,1],[1,2],[3,0],[0,3,0],[1,1,1],[2,1,0],[1,2,0],[1,1,1],[0,2,1],[1,1,1],[2,1],[1,2,0],[1,1,1,0],[3,0],[2,1,0],[3,0,0],[3,0,0],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[2,1],[0,2,0,1],[1,2],[2,1,0],[0,1,2,0],[2,0,1],[3,0,0,0,0],[3,0,0],[2,1,0],[1,2,0],[0,2,1],[1,0,2],[2,1,0],[3,0],[2,1],[0,3],[1,2],[0,3],[0,0,3],[3,0],[2,1] +00935fa010_960627.tif,[3,0],[1,2],[2,0,0,1,0,0,0],[2,1],[0,3],[1,2],[3,0,0],[2,0,1],[1,1,1],[1,2,0],[1,2,0],[2,1,0],[1,0,2],[3,0],[2,1,0],[2,1,0,0],[1,2],[2,0,1],[1,0,2],[1,0,2],[1,2],[3,0],[3,0],[0,0,3],[1,0,2,0],[2,1],[3,0],[0,1,0,2],[1,2],[0,2,1],[3,0,0,0],[3,0,0],[1,0,0,2,0],[2,0,1],[3,0,0],[1,1,1],[0,3,0],[2,1,0],[2,1,0],[2,1],[1,2],[0,3],[2,1],[3,0],[1,2,0],[3,0],[2,1] +00936fa010_960627.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[1,2,0],[2,0,1],[2,1,0],[2,1,0],[1,0,2],[2,1,0],[2,0,1],[1,2],[2,1,0],[2,0,1,0],[2,1],[3,0,0],[2,0,1],[3,0,0],[1,2],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[3,0],[0,2,1,0],[3,0],[1,1,1],[2,1,0,0],[1,0,2],[3,0,0,0,0],[0,0,3],[2,0,1],[1,2,0],[2,1,0],[1,2,0],[0,2,1],[2,1],[3,0],[0,3],[3,0],[3,0],[2,1,0],[3,0],[2,1] +00937fa010_960627.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[1,2],[1,2],[0,3],[1,0,2],[2,0,1],[1,1,1],[1,1,1],[0,3,0],[1,1,1],[3,0,0],[2,1],[2,1,0],[2,1,0,0],[2,1],[2,1,0],[3,0,0],[2,0,1],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,1],[2,0,0,0],[1,2],[0,1,2],[3,0,0,0],[1,1,1],[3,0,0,0,0],[1,1,1],[1,1,1],[0,3,0],[0,3,0],[3,0,0],[0,2,1],[2,1],[2,1],[0,3],[3,0],[3,0],[1,1,1],[3,0],[2,1] +00938fa010_960627.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[1,2],[1,2],[1,2],[1,0,2],[1,2,0],[2,1,0],[1,1,1],[1,1,1],[2,1,0],[0,3,0],[2,1],[1,2,0],[1,2,0,0],[0,3],[3,0,0],[1,1,1],[1,0,2],[2,1],[3,0],[3,0],[1,0,2],[0,0,3,0],[1,2],[3,0],[0,1,0,2],[1,2],[1,2,0],[3,0,0,0],[3,0,0],[3,0,0,0,0],[1,0,2],[2,0,1],[0,3,0],[0,1,2],[2,1,0],[2,1,0],[1,2],[3,0],[0,3],[3,0],[3,0],[1,2,0],[3,0],[0,3] +00939fa010_960627.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[1,2],[1,2],[0,3],[2,1,0],[2,1,0],[2,0,1],[0,2,1],[0,2,1],[2,0,1],[0,3,0],[2,1],[1,1,1],[1,1,0,1],[0,3],[2,0,1],[0,0,3],[3,0,0],[3,0],[3,0],[3,0],[1,1,1],[3,0,0,0],[3,0],[2,1],[0,2,1,0],[0,3],[0,2,1],[3,0,0,0],[1,2,0],[3,0,0,0,0],[3,0,0],[2,0,1],[3,0,0],[1,1,1],[2,1,0],[1,2,0],[3,0],[1,2],[1,2],[0,3],[3,0],[0,1,2],[3,0],[3,0] +00940fa010_960627.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[0,3,0],[1,1,1],[3,0,0],[2,1,0],[0,2,1],[2,0,1],[2,0,1],[3,0],[1,1,1],[3,0,0,0],[3,0],[3,0,0],[3,0,0],[0,2,1],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[3,0],[1,1,1,0],[0,3],[0,2,1],[1,2,0,0],[1,2,0],[2,0,1,0,0],[0,3,0],[2,0,1],[0,1,2],[0,2,1],[1,2,0],[0,3,0],[0,3],[3,0],[1,2],[3,0],[3,0],[2,1,0],[3,0],[2,1] +00941fb010_960627.tif,[1,2],[1,2],[3,0,0,0,0,0,0],[1,2],[1,2],[0,3],[0,2,1],[1,1,1],[1,0,2],[0,2,1],[1,1,1],[1,1,1],[2,0,1],[2,1],[3,0,0],[1,1,0,1],[0,3],[3,0,0],[0,1,2],[2,1,0],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,1],[0,2,1,0],[2,1],[1,2,0],[0,2,1,0],[0,0,3],[3,0,0,0,0],[2,0,1],[2,1,0],[0,2,1],[0,0,3],[0,0,3],[1,2,0],[3,0],[1,2],[0,3],[1,2],[0,3],[0,3,0],[3,0],[3,0] +00942fa010_960627.tif,[2,1],[0,3],[0,1,0,0,0,2,0],[0,3],[0,3],[0,3],[2,1,0],[2,0,1],[1,2,0],[1,1,1],[0,1,2],[2,1,0],[2,1,0],[3,0],[1,1,1],[3,0,0,0],[2,1],[1,2,0],[3,0,0],[1,1,1],[1,2],[3,0],[3,0],[0,0,3],[0,0,0,3],[2,1],[3,0],[0,1,0,2],[0,3],[0,1,2],[3,0,0,0],[2,1,0],[0,0,0,2,1],[0,0,3],[3,0,0],[0,3,0],[0,2,1],[2,1,0],[0,3,0],[2,1],[2,1],[0,3],[3,0],[3,0],[0,1,2],[3,0],[2,0] +00943fa010_960627.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[0,3],[0,3],[1,2],[1,0,2],[1,2,0],[2,1,0],[3,0,0],[0,3,0],[0,3,0],[1,0,2],[3,0],[2,0,1],[2,0,0,1],[0,3],[3,0,0],[2,1,0],[3,0,0],[0,3],[0,3],[3,0],[0,3,0],[3,0,0,0],[2,1],[3,0],[0,3,0,0],[1,2],[0,2,1],[1,2,0,0],[3,0,0],[3,0,0,0,0],[3,0,0],[1,1,1],[1,2,0],[0,3,0],[2,1,0],[0,3,0],[2,1],[2,1],[1,2],[1,2],[3,0],[0,1,2],[3,0],[2,1] +00944fa010_960627.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[1,2],[1,2],[0,3],[3,0,0],[2,1,0],[1,2,0],[0,2,1],[1,2,0],[0,0,3],[3,0,0],[3,0],[0,2,1],[1,2,0,0],[3,0],[3,0,0],[0,0,3],[0,2,1],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[1,2],[2,1],[0,3,0,0],[3,0],[1,0,2],[3,0,0,0],[2,0,1],[3,0,0,0,0],[3,0,0],[0,0,3],[2,1,0],[2,0,1],[1,2,0],[3,0,0],[2,1],[2,1],[0,3],[2,1],[1,2],[1,0,2],[3,0],[1,2] +00945fa010_960627.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[0,3,0],[0,3,0],[1,2,0],[3,0,0],[0,0,3],[1,0,2],[3,0,0],[1,2],[0,1,2],[1,0,0,2],[2,1],[2,1,0],[3,0,0],[0,0,3],[2,1],[0,3],[3,0],[0,0,3],[0,0,3,0],[3,0],[3,0],[1,0,1,1],[2,1],[1,1,1],[0,0,3,0],[1,0,2],[3,0,0,0,0],[1,1,1],[0,0,3],[0,0,3],[3,0,0],[0,3,0],[0,0,3],[0,3],[2,1],[0,3],[3,0],[3,0],[2,1,0],[2,1],[3,0] +00946fa010_960627.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[1,2,0],[2,1,0],[1,2,0],[2,1,0],[1,2,0],[1,1,1],[3,0,0],[2,1],[0,1,2],[3,0,0,0],[3,0],[3,0,0],[2,0,1],[1,2,0],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[1,2],[2,1],[1,1,1,0],[2,1],[2,0,1],[0,3,0,0],[1,2,0],[3,0,0,0,0],[0,3,0],[1,1,1],[0,1,2],[0,2,1],[2,0,1],[0,0,3],[2,1],[1,2],[1,2],[3,0],[0,3],[1,1,1],[3,0],[3,0] +00947fa010_960627.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[2,1,0],[1,1,1],[2,1,0],[0,3,0],[0,3,0],[1,2,0],[2,0,1],[3,0],[1,0,2],[3,0,0,0],[1,2],[1,1,1],[0,1,2],[3,0,0],[1,2],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[1,2,0,0],[0,3],[0,3,0],[3,0,0,0],[2,1,0],[3,0,0,0,0],[1,0,2],[1,2,0],[0,3,0],[0,3,0],[3,0,0],[0,3,0],[0,3],[2,1],[0,3],[2,1],[2,1],[3,0,0],[3,0],[1,2] +00948fa010_960627.tif,[2,1],[0,3],[3,0,0,0,0,0,0],[0,3],[0,3],[2,1],[0,2,1],[2,0,1],[1,1,1],[2,1,0],[0,3,0],[2,0,0],[3,0,0],[3,0],[1,1,1],[2,0,1,0],[2,1],[3,0,0],[1,0,2],[3,0,0],[3,0],[3,0],[3,0],[2,1,0],[3,0,0,0],[1,2],[1,2],[0,1,0,2],[1,2],[2,1,0],[1,2,0,0],[2,0,1],[0,0,3,0,0],[0,3,0],[0,0,3],[3,0,0],[2,1,0],[1,2,0],[1,2,0],[3,0],[1,2],[1,2],[0,3],[0,3],[2,1,0],[1,2],[3,0] +00949fb010_960627.tif,[2,1],[0,3],[3,0,0,0,0,0,0],[2,1],[0,3],[3,0],[0,2,1],[0,0,3],[2,0,1],[0,3,0],[1,2,0],[1,2,0],[1,0,2],[1,2],[2,1,0],[2,1,0,0],[2,1],[3,0,0],[1,1,1],[1,0,2],[0,3],[0,3],[3,0],[0,1,2],[3,0,0,0],[2,1],[3,0],[2,0,1,0],[1,2],[1,1,1],[0,1,2,0],[1,0,2],[3,0,0,0,0],[1,0,2],[2,1,0],[1,2,0],[0,2,1],[2,0,1],[1,1,1],[3,0],[1,2],[0,3],[1,2],[0,3],[1,1,1],[3,0],[2,1] +00950fa010_960627.tif,[0,3],[0,3],[0,0,0,3,0,0,0],[1,2],[0,3],[3,0],[1,1,1],[1,0,2],[0,3,0],[1,2,0],[0,0,3],[2,0,1],[3,0,0],[3,0],[0,3,0],[3,0,0,0],[2,1],[2,0,1],[1,1,1],[2,0,1],[3,0],[3,0],[3,0],[0,1,2],[0,0,3,0],[3,0],[2,1],[1,1,0,1],[2,1],[0,2,1],[1,2,0,0],[0,3,0],[0,0,0,2,1],[0,0,3],[2,1,0],[1,2,0],[0,0,3],[2,0,1],[1,2,0],[3,0],[1,2],[0,3],[2,1],[3,0],[0,3,0],[3,0],[2,1] +00951fa010_960627.tif,[3,0],[0,3],[3,0,0,0,0,0,0],[2,1],[0,3],[2,1],[0,3,0],[2,0,1],[0,3,0],[0,3,0],[0,3,0],[2,0,1],[3,0,0],[1,2],[1,1,1],[1,0,2,0],[2,1],[3,0,0],[1,0,2],[1,2,0],[3,0],[1,2],[3,0],[1,1,1],[2,0,1,0],[1,2],[1,2],[1,1,0,1],[0,3],[1,1,1],[0,1,2,0],[2,1,0],[3,0,0,0,0],[1,1,1],[1,0,2],[0,1,2],[3,0,0],[0,3,0],[0,1,2],[3,0],[1,2],[2,1],[0,3],[0,3],[0,3,0],[3,0],[3,0] +00952fa010_960627.tif,[3,0],[0,3],[3,0,0,0,0,0,0],[0,3],[0,3],[3,0],[0,3,0],[2,1,0],[1,0,2],[0,0,3],[1,1,1],[0,2,1],[1,0,2],[2,1],[0,2,1],[3,0,0,0],[2,1],[2,0,1],[1,1,1],[1,0,2],[0,3],[3,0],[3,0],[0,0,3],[0,0,1,2],[3,0],[3,0],[0,1,0,2],[0,3],[0,3,0],[3,0,0,0],[1,2,0],[1,0,2,0,0],[2,0,1],[0,2,1],[0,3,0],[0,3,0],[1,1,1],[0,3,0],[1,2],[2,1],[0,3],[3,0],[3,0],[2,1,0],[3,0],[3,0] +00953fa010_960627.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[3,0],[2,1,0],[2,1,0],[3,0,0],[3,0,0],[2,1,0],[1,2,0],[1,1,1],[3,0],[3,0,0],[3,0,0,0],[2,1],[3,0,0],[2,0,1],[3,0,0],[0,3],[0,3],[3,0],[1,2,0],[3,0,0,0],[2,1],[3,0],[0,2,0,1],[2,1],[0,2,0],[1,2,0,0],[0,0,3],[3,0,0,0,0],[1,1,1],[3,0,0],[0,1,2],[0,2,1],[1,1,1],[2,0,1],[3,0],[2,1],[2,1],[1,2],[0,3],[0,0,3],[3,0],[3,0] +00954fa010_960627.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[1,1,1],[3,0,0],[0,3,0],[3,0,0],[1,2,0],[2,1,0],[2,0,1],[3,0],[2,1,0],[2,0,0,1],[3,0],[3,0,0],[1,1,1],[2,0,1],[2,1],[3,0],[3,0],[3,0,0],[0,0,3,0],[3,0],[2,1],[0,2,0,1],[1,2],[0,3,0],[3,0,0,0],[1,2,0],[3,0,0,0,0],[1,0,2],[2,1,0],[1,2,0],[1,2,0],[1,2,0],[0,3,0],[3,0],[1,2],[0,3],[2,1],[1,2],[1,1,1],[3,0],[2,1] +00955fb010_960627.tif,[3,0],[0,3],[3,0,0,0,0,0,0],[2,1],[1,2],[2,1],[1,0,2],[2,0,1],[1,0,2],[1,2,0],[0,3,0],[1,2,0],[0,1,2],[1,2],[2,1,0],[2,0,1,0],[2,1],[3,0,0],[1,1,1],[1,0,2],[1,2],[3,0],[3,0],[1,1,1],[2,0,0,1],[3,0],[2,1],[0,2,0,1],[2,1],[2,1,0],[3,0,0,0],[2,1,0],[3,0,0,0,0],[2,0,1],[1,1,1],[2,1,0],[0,2,1],[0,3,0],[1,1,1],[2,1],[0,3],[1,2],[0,3],[1,2],[0,1,2],[3,0],[2,1] +00956fa010_960627.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[1,2],[0,2,1],[3,0,0],[2,1,0],[1,2,0],[0,3,0],[0,0,3],[3,0,0],[2,1],[2,0,1],[0,1,1,1],[3,0],[0,2,1],[3,0,0],[2,0,1],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[1,2],[3,0],[0,1,0,2],[2,1],[2,1,0],[3,0,0,0],[2,1,0],[3,0,0,0,0],[0,3,0],[2,0,1],[1,0,2],[2,0,1],[0,3,0],[0,2,1],[3,0],[1,2],[2,1],[1,2],[3,0],[0,0,3],[3,0],[2,1] +00957fa010_960627.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[3,0],[3,0],[3,0],[1,1,1],[2,0,0],[2,0,1],[1,1,1],[0,3,0],[1,1,1],[0,2,1],[1,2],[2,1,0],[2,0,0,1],[1,2],[2,0,1],[1,0,2],[0,3,0],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[1,2],[0,3],[1,1,0,1],[3,0],[0,1,2],[3,0,0,0],[0,0,3],[3,0,0,0,0],[2,0,1],[2,1,0],[1,1,1],[1,1,1],[1,1,1],[0,3,0],[2,1],[0,3],[1,2],[0,3],[0,3],[1,1,1],[3,0],[2,1] +00958fa010_960627.tif,[1,2],[1,2],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[0,2,1],[2,1,0],[0,0,3],[0,2,1],[0,3,0],[1,2,0],[3,0,0],[2,1],[1,1,1],[3,0,0,0],[3,0],[2,0,1],[3,0,0],[2,1,0],[1,2],[0,3],[3,0],[0,3,0],[3,0,0,0],[3,0],[3,0],[0,0,0,3],[1,2],[1,0,1],[0,3,0,0],[2,1,0],[3,0,0,0,0],[0,2,1],[3,0,0],[2,1,0],[0,3,0],[2,0,1],[2,1,0],[1,2],[2,1],[1,2],[3,0],[0,3],[1,2,0],[3,0],[3,0] +00959fa010_960627.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[0,3],[0,3],[1,2],[1,2,0],[3,0,0],[1,0,2],[0,0,3],[0,3,0],[2,1,0],[2,0,1],[3,0],[1,0,2],[2,1,0,0],[1,2],[1,0,2],[0,1,2],[2,0,1],[0,3],[3,0],[3,0],[0,1,2],[0,0,3,0],[3,0],[3,0],[1,0,0,2],[1,2],[0,2,0],[3,0,0,0],[1,0,2],[3,0,0,0,0],[1,1,1],[2,0,1],[1,0,2],[1,2,0],[1,1,1],[0,1,2],[2,1],[2,1],[0,3],[3,0],[3,0],[1,1,1],[3,0],[1,2] +00960fa010_960627.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[3,0,0],[3,0,0],[3,0,0],[0,2,1],[2,1,0],[0,3,0],[1,0,2],[1,2],[2,1,0],[3,0,0,0],[0,3],[2,1,0],[0,0,3],[2,0,1],[0,3],[3,0],[3,0],[2,1,0],[3,0,0,0],[3,0],[3,0],[0,3,0,0],[0,3],[1,1,1],[3,0,0,0],[2,1,0],[2,0,1,0,0],[3,0,0],[2,1,0],[2,1,0],[1,2,0],[2,1,0],[1,2,0],[2,1],[1,2],[0,3],[2,1],[3,0],[0,1,2],[2,1],[3,0] +00961fa010_960627.tif,[1,2],[1,2],[0,3,0,0,0,0,0],[0,3],[0,3],[2,1],[1,1,1],[1,0,2],[1,2,0],[2,1,0],[2,0,0],[1,1,1],[1,0,2],[2,1],[1,2,0],[2,0,1,0],[3,0],[2,1,0],[2,0,1],[0,0,3],[0,3],[3,0],[3,0],[1,0,2],[0,0,3,0],[2,1],[3,0],[0,2,0,1],[0,3],[0,2,0],[3,0,0,0],[2,1,0],[0,0,0,1,2],[0,0,3],[2,0,1],[2,1,0],[0,1,2],[1,2,0],[1,2,0],[2,1],[3,0],[0,3],[3,0],[2,1],[0,3,0],[3,0],[1,2] +00962fb010_960627.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[1,2],[0,3],[2,1],[2,1,0],[2,0,1],[3,0,0],[1,2,0],[1,2,0],[2,0,1],[0,1,2],[3,0],[1,1,1],[1,1,0,1],[2,1],[0,0,3],[2,1,0],[2,1,0],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[3,0],[3,0],[1,2,0,0],[2,1],[1,1,1],[3,0,0,0],[2,0,1],[3,0,0,0,0],[3,0,0],[1,0,2],[2,1,0],[0,3,0],[3,0,0],[0,2,1],[2,1],[3,0],[0,3],[2,1],[1,2],[0,0,3],[3,0],[2,1] +00963fa010_960627.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[1,2,0],[3,0,0],[0,0,3],[1,0,2],[0,3,0],[0,1,2],[3,0,0],[3,0],[0,0,3],[2,0,0,1],[2,1],[3,0,0],[2,0,1],[2,1,0],[3,0],[0,3],[3,0],[1,1,1],[3,0,0,0],[0,3],[3,0],[0,1,2,0],[1,2],[0,1,2],[3,0,0,0],[1,0,2],[3,0,0,0,0],[3,0,0],[2,1,0],[0,0,3],[3,0,0],[1,0,2],[0,0,3],[2,1],[3,0],[1,2],[3,0],[2,1],[0,0,3],[3,0],[3,0] +00964fb010_960627.tif,[3,0],[3,0],[0,1,2,0,0,0,0],[2,1],[0,3],[0,3],[0,3,0],[2,0,1],[1,2,0],[3,0,0],[1,2,0],[2,1,0],[1,0,2],[1,2],[2,1,0],[3,0,0,0],[1,2],[1,1,1],[3,0,0],[1,0,2],[2,1],[3,0],[3,0],[1,0,2],[0,1,2,0],[2,1],[3,0],[1,0,2,0],[0,3],[0,1,2],[2,1,0,0],[3,0,0],[0,3,0,0,0],[2,1,0],[3,0,0],[0,0,3],[2,0,1],[2,0,1],[0,0,3],[2,1],[2,0],[2,1],[3,0],[1,2],[0,2,1],[3,0],[1,2] +00965fa010_960627.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[2,0,1],[2,0,1],[2,1,0],[1,2,0],[0,3,0],[0,2,1],[1,0,2],[2,1],[2,0,1],[2,1,0,0],[1,2],[3,0,0],[0,0,3],[2,1,0],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[2,1],[3,0],[1,2,0,0],[1,2],[1,2,0],[3,0,0,0],[2,0,1],[3,0,0,0,0],[2,0,1],[3,0,0],[1,2,0],[1,2,0],[2,1,0],[1,2,0],[1,2],[3,0],[0,3],[3,0],[1,2],[2,1,0],[3,0],[3,0] +00966fa010_960627.tif,[3,0],[0,3],[3,0,0,0,0,0,0],[1,2],[1,2],[1,2],[1,0,2],[3,0,0],[1,1,1],[1,2,0],[2,1,0],[0,3,0],[1,2,0],[3,0],[1,1,1],[3,0,0,0],[2,1],[3,0,0],[1,0,2],[3,0,0],[0,3],[3,0],[3,0],[0,0,3],[3,0,0,0],[2,1],[3,0],[0,2,0,1],[2,1],[0,3,0],[2,1,0,0],[0,0,3],[3,0,0,0,0],[0,0,3],[2,0,1],[1,2,0],[3,0,0],[0,3,0],[1,2,0],[2,1],[3,0],[0,3],[3,0],[3,0],[2,0,1],[3,0],[3,0] +00967fa010_960627.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[2,1],[0,3],[0,3],[0,3,0],[2,1,0],[2,0,1],[2,1,0],[0,3,0],[1,2,0],[2,0,1],[1,2],[2,1,0],[3,0,0,0],[3,0],[3,0,0],[3,0,0],[2,1,0],[3,0],[1,2],[3,0],[1,2,0],[3,0,0,0],[3,0],[3,0],[0,3,0,0],[3,0],[0,2,1],[0,3,0,0],[0,0,3],[3,0,0,0,0],[3,0,0],[1,0,2],[2,1,0],[1,2,0],[3,0,0],[3,0,0],[2,1],[2,1],[0,3],[3,0],[0,3],[0,0,3],[3,0],[3,0] +00968fb010_960627.tif,[2,1],[1,2],[0,0,3,0,0,0,0],[1,2],[0,3],[2,1],[2,1,0],[1,0,2],[2,1,0],[3,0,0],[2,1,0],[2,0,1],[1,1,1],[3,0],[1,2,0],[2,0,0,1],[1,2],[1,1,1],[1,1,1],[3,0,0],[1,2],[3,0],[3,0],[0,1,2],[0,0,2,1],[3,0],[3,0],[0,1,0,2],[1,2],[2,0,1],[0,2,1,0],[0,2,1],[0,1,0,1,1],[0,0,3],[1,0,2],[1,2,0],[1,2,0],[0,3,0],[3,0,0],[3,0],[2,1],[1,2],[3,0],[2,1],[0,3,0],[3,0],[1,2] +00969fa010_960627.tif,[1,2],[0,3],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[0,0,3],[0,3,0],[2,1,0],[1,2,0],[1,1,1],[1,1,1],[0,0,2],[1,2],[0,1,2],[3,0,0,0],[2,1],[2,1,0],[2,0,1],[3,0,0],[3,0],[0,3],[3,0],[1,0,2],[3,0,0,0],[0,3],[2,1],[0,2,0,1],[2,1],[0,2,1],[3,0,0,0],[0,1,2],[3,0,0,0,0],[1,1,1],[1,0,2],[3,0,0],[0,2,0],[0,3,0],[2,1,0],[0,3],[3,0],[0,3],[3,0],[3,0],[0,0,3],[3,0],[3,0] +00970fa010_960627.tif,[2,1],[0,3],[3,0,0,0,0,0,0],[3,0],[0,3],[3,0],[2,1,0],[3,0,0],[0,2,1],[2,1,0],[0,1,2],[0,0,3],[1,1,1],[3,0],[2,1,0],[2,0,1,0],[2,1],[0,1,2],[3,0,0],[0,3,0],[1,2],[0,3],[3,0],[1,0,2],[3,0,0,0],[2,1],[3,0],[0,1,1,1],[0,3],[0,3,0],[2,1,0,0],[1,0,2],[3,0,0,0,0],[1,0,2],[2,0,1],[0,3,0],[1,2,0],[2,1,0],[2,1,0],[3,0],[1,2],[0,3],[1,2],[1,2],[0,2,1],[3,0],[3,0] +00971fa010_960627.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[1,2],[1,2],[2,1],[1,2,0],[3,0,0],[0,2,1],[1,2,0],[1,2,0],[1,2,0],[1,2,0],[2,1],[2,1,0],[2,0,0,1],[3,0],[2,0,1],[2,1,0],[1,2,0],[3,0],[0,3],[3,0],[1,1,1],[3,0,0,0],[3,0],[2,1],[1,1,0,1],[3,0],[0,3,0],[3,0,0,0],[2,1,0],[2,0,1,0,0],[2,0,1],[0,0,3],[3,0,0],[3,0,0],[1,2,0],[3,0,0],[2,1],[1,2],[0,3],[0,3],[2,1],[1,0,2],[3,0],[2,1] +00972fa010_960627.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[1,2],[2,1],[1,2],[2,0,1],[1,1,1],[3,0,0],[0,3,0],[0,3,0],[3,0,0],[0,2,1],[3,0],[1,1,1],[3,0,0,0],[0,3],[1,0,2],[3,0,0],[1,1,1],[2,1],[3,0],[3,0],[2,0,1],[2,0,1,0],[3,0],[3,0],[0,3,0,0],[0,3],[0,3,0],[3,0,0,0],[1,2,0],[3,0,0,0,0],[2,0,1],[1,0,2],[0,3,0],[2,1,0],[2,1,0],[3,0,0],[1,2],[3,0],[0,3],[2,1],[3,0],[3,0,0],[3,0],[0,3] +00973fa010_960627.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[2,0,1],[1,1,1],[0,0,3],[0,2,1],[2,1,0],[1,2,0],[3,0,0],[2,1],[1,1,1],[3,0,0,0],[1,2],[3,0,0],[2,0,1],[3,0,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[0,1,0,2],[2,1],[0,3,0],[3,0,0,0],[1,0,2],[3,0,0,0,0],[3,0,0],[1,0,2],[2,1,0],[0,3,0],[3,0,0],[1,2,0],[0,3],[3,0],[0,3],[2,1],[3,0],[2,1,0],[3,0],[3,0] +00974fa010_960627.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[1,1,1],[1,2,0],[3,0,0],[2,1,0],[2,1,0],[0,0,3],[0,2,1],[1,2],[2,1,0],[2,0,0,1],[1,2],[2,1,0],[2,0,1],[2,0,1],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[2,1],[2,1],[0,0,3,0],[2,1],[1,0,1],[3,0,0,0],[2,0,1],[3,0,0,0,0],[3,0,0],[1,0,2],[0,0,3],[2,1,0],[2,1,0],[0,0,3],[0,3],[3,0],[0,3],[3,0],[2,1],[0,0,3],[3,0],[2,1] +00975fa010_960627.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[0,3],[0,3],[1,2],[0,1,2],[1,1,1],[0,0,3],[0,0,3],[0,2,1],[2,0,1],[3,0,0],[2,1],[1,0,2],[2,1,0,0],[1,2],[1,0,2],[1,2,0],[1,0,2],[0,3],[3,0],[3,0],[2,0,1],[2,0,1,0],[2,1],[3,0],[0,1,2,0],[1,2],[0,1,2],[2,1,0,0],[1,0,2],[3,0,0,0,0],[3,0,0],[2,1,0],[0,1,2],[1,1,1],[3,0,0],[0,1,2],[0,3],[3,0],[0,3],[3,0],[3,0],[2,1,0],[3,0],[3,0] +00976fa010_960627.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[1,1,0],[3,0,0],[1,1,1],[1,2,0],[1,2,0],[1,2,0],[2,0,1],[3,0],[1,2,0],[1,2,0,0],[2,1],[2,1,0],[2,0,1],[1,0,2],[1,2],[3,0],[3,0],[3,0,0],[2,0,1,0],[3,0],[3,0],[1,2,0,0],[1,2],[1,1,1],[3,0,0,0],[2,1,0],[0,0,0,3,0],[3,0,0],[1,1,1],[0,0,3],[1,1,1],[1,2,0],[0,1,2],[0,3],[2,1],[0,3],[3,0],[3,0],[2,0,1],[3,0],[3,0] +00977fa010_960627.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[2,1],[1,2],[1,2],[3,0,0],[0,1,2],[0,0,3],[0,0,3],[0,2,1],[2,1,0],[1,0,2],[2,1],[2,1,0],[3,0,0,0],[2,1],[3,0,0],[3,0,0],[0,0,3],[0,3],[3,0],[3,0],[2,1,0],[0,0,2,1],[3,0],[2,1],[0,0,0,3],[2,1],[0,2,1],[3,0,0,0],[2,0,1],[3,0,0,0,0],[1,0,2],[3,0,0],[1,2,0],[3,0,0],[0,3,0],[0,3,0],[1,2],[2,1],[0,3],[3,0],[3,0],[0,0,3],[3,0],[0,3] +00978fa010_960627.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[1,2],[0,2],[0,3],[0,1,2],[1,2,0],[1,1,1],[0,1,2],[1,1,1],[1,0,2],[3,0,0],[2,1],[0,3,0],[3,0,0,0],[3,0],[3,0,0],[1,0,2],[3,0,0],[2,1],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[3,0],[0,0,3,0],[2,1],[1,2,0],[2,1,0,0],[2,1,0],[3,0,0,0,0],[3,0,0],[2,0,1],[0,2,1],[2,1,0],[1,2,0],[1,1,1],[0,3],[2,1],[0,3],[3,0],[1,2],[1,2,0],[2,1],[2,1] +00979fa010_960627.tif,[2,1],[0,3],[3,0,0,0,0,0,0],[0,3],[0,3],[1,2],[2,1,0],[1,2,0],[1,1,1],[3,0,0],[1,2,0],[2,1,0],[3,0,0],[3,0],[1,1,1],[3,0,0,0],[3,0],[1,1,1],[2,1,0],[1,0,2],[2,1],[2,1],[3,0],[0,1,2],[0,3,0,0],[3,0],[1,2],[1,0,2,0],[0,3],[0,2,0],[3,0,0,0],[1,0,2],[2,0,1,0,0],[2,1,0],[1,1,1],[0,1,2],[1,2,0],[2,1,0],[0,0,3],[0,3],[2,1],[0,3],[3,0],[2,1],[3,0,0],[3,0],[2,1] +00980fa010_960627.tif,[0,3],[1,2],[3,0,0,0,0,0,0],[1,2],[0,3],[3,0],[1,2,0],[2,0,1],[2,0,1],[1,2,0],[0,3,0],[3,0,0],[3,0,0],[3,0],[0,0,3],[0,3,0,0],[3,0],[3,0,0],[3,0,0],[2,1,0],[3,0],[0,3],[3,0],[0,3,0],[3,0,0,0],[2,1],[1,2],[2,1,0,0],[0,3],[0,2,1],[3,0,0,0],[1,0,2],[3,0,0,0,0],[3,0,0],[2,0,1],[0,3,0],[1,2,0],[2,1,0],[0,3,0],[3,0],[1,2],[2,1],[0,3],[1,2],[1,2,0],[3,0],[3,0] +00981fa010_960627.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[2,1],[1,2],[1,2],[1,1,1],[0,1,2],[1,1,1],[2,0,1],[0,1,2],[3,0,0],[0,2,1],[2,1],[1,0,2],[2,0,0,1],[3,0],[3,0,0],[1,2,0],[0,3,0],[2,1],[0,3],[3,0],[1,0,2],[3,0,0,0],[3,0],[2,1],[0,0,0,3],[1,2],[3,0,0],[0,3,0,0],[0,0,3],[3,0,0,0,0],[1,1,1],[2,0,1],[1,1,1],[1,1,0],[2,1,0],[0,3,0],[2,1],[1,2],[0,3],[3,0],[0,3],[0,0,3],[3,0],[3,0] +00982fa010_960627.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[0,3],[1,2],[0,3],[1,0,2],[0,1,2],[0,0,3],[0,1,2],[1,2,0],[1,2,0],[3,0,0],[2,1],[2,1,0],[3,0,0,0],[0,3],[3,0,0],[1,2,0],[2,0,1],[3,0],[3,0],[3,0],[3,0,0],[1,0,2,0],[2,1],[2,1],[1,2,0,0],[0,3],[1,2,0],[2,1,0,0],[2,1,0],[3,0,0,0,0],[3,0,0],[2,1,0],[1,0,2],[1,1,1],[2,0,1],[1,2,0],[0,3],[3,0],[0,3],[3,0],[3,0],[3,0,0],[2,1],[2,1] +00983fa010_960627.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[1,2],[0,3],[2,1],[0,2,1],[0,1,2],[2,1,0],[3,0,0],[1,2,0],[2,1,0],[0,1,2],[3,0],[0,3,0],[2,1,0,0],[3,0],[2,1,0],[2,0,1],[1,0,2],[2,1],[3,0],[3,0],[1,0,2],[1,0,2,0],[3,0],[3,0],[1,1,1,0],[1,2],[0,3,0],[2,1,0,0],[3,0,0],[3,0,0,0,0],[0,2,1],[0,1,2],[1,2,0],[1,1,1],[3,0,0],[1,2,0],[2,1],[2,1],[1,2],[3,0],[1,2],[0,0,3],[3,0],[2,1] +00984fa010_960627.tif,[1,2],[1,2],[3,0,0,0,0,0,0],[2,1],[0,3],[3,0],[0,2,1],[2,1,0],[2,0,1],[2,1,0],[0,3,0],[1,0,2],[3,0,0],[3,0],[2,1,0],[0,1,0,2],[1,2],[2,0,1],[0,0,3],[1,2,0],[2,1],[0,3],[3,0],[0,3,0],[3,0,0,0],[3,0],[3,0],[1,1,0,1],[0,3],[1,2,0],[0,0,3,0],[2,0,1],[3,0,0,0,0],[3,0,0],[0,0,3],[3,0,0],[1,1,1],[3,0,0],[1,2,0],[3,0],[1,2],[0,3],[3,0],[0,3],[0,1,2],[3,0],[3,0] +00985fa010_960627.tif,[2,1],[0,3],[3,0,0,0,0,0,0],[3,0],[1,2],[3,0],[1,2,0],[2,1,0],[0,3,0],[2,1,0],[0,1,2],[3,0,0],[1,0,2],[3,0],[0,3,0],[1,1,1,0],[3,0],[3,0,0],[1,0,2],[0,2,1],[3,0],[3,0],[3,0],[2,1,0],[1,0,2,0],[3,0],[0,3],[0,2,1,0],[3,0],[1,2,0],[2,1,0,0],[1,0,2],[0,0,0,3,0],[0,3,0],[0,3,0],[0,2,1],[0,2,1],[0,1,2],[1,1,1],[3,0],[0,3],[2,1],[0,3],[2,1],[1,2,0],[3,0],[3,0] +00986fa010_960627.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[0,3],[2,1],[1,2],[0,2,1],[0,1,2],[3,0,0],[1,2,0],[0,0,3],[0,1,2],[0,2,1],[0,3],[1,0,2],[3,0,0,0],[1,2],[0,0,3],[0,3,0],[0,2,1],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[3,0],[2,1,0,0],[3,0],[1,1,1],[2,1,0,0],[2,0,1],[3,0,0,0,0],[3,0,0],[2,0,1],[1,1,1],[0,1,2],[0,0,3],[1,1,1],[0,3],[2,1],[0,3],[3,0],[0,3],[0,3,0],[3,0],[3,0] +00987fa010_960627.tif,[3,0],[0,3],[3,0,0,0,0,0,0],[3,0],[0,3],[3,0],[0,0,3],[2,1,0],[1,0,2],[0,0,3],[0,1,2],[0,3,0],[2,0,1],[3,0],[2,1,0],[2,0,1,0],[1,2],[0,2,1],[1,2,0],[0,0,3],[0,3],[3,0],[2,1],[1,1,1],[0,0,3,0],[2,1],[1,2],[0,0,0,3],[2,1],[0,2,1],[3,0,0,0],[2,1,0],[3,0,0,0,0],[3,0,0],[3,0,0],[0,3,0],[2,1,0],[0,2,1],[2,1,0],[3,0],[0,3],[1,2],[0,3],[1,2],[0,1,2],[3,0],[1,2] +00988fa010_960627.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[2,1],[0,3],[1,2],[0,3,0],[0,1,2],[2,0,0],[1,0,2],[0,3,0],[1,0,2],[3,0,0],[2,1],[3,0,0],[0,1,2,0],[2,1],[1,1,1],[1,2,0],[2,1,0],[3,0],[2,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,1],[0,2,1,0],[1,2],[0,3,0],[3,0,0,0],[2,1,0],[3,0,0,0,0],[3,0,0],[2,0,1],[0,0,3],[1,1,1],[1,0,2],[0,0,3],[3,0],[2,1],[0,3],[0,3],[0,3],[3,0,0],[3,0],[3,0] +00989fa010_960627.tif,[0,3],[3,0],[3,0,0,0,0,0,0],[2,1],[0,3],[3,0],[2,1,0],[0,2,1],[1,2,0],[3,0,0],[0,2,0],[0,0,3],[2,0,1],[2,1],[1,1,1],[0,3,0,0],[3,0],[0,0,3],[0,0,3],[3,0,0],[3,0],[3,0],[3,0],[2,1,0],[3,0,0,0],[2,1],[3,0],[0,1,0,2],[1,2],[0,1,2],[2,1,0,0],[2,1,0],[3,0,0,0,0],[1,0,2],[0,0,3],[0,2,1],[2,1,0],[3,0,0],[1,2,0],[3,0],[0,3],[3,0],[0,3],[0,3],[2,0,1],[3,0],[2,1] +00990fa010_960627.tif,[3,0],[2,1],[2,0,0,1,0,0,0],[1,2],[1,2],[0,3],[2,0,1],[1,2,0],[0,0,3],[0,2,1],[0,3,0],[1,2,0],[3,0,0],[1,2],[2,1,0],[2,0,0,1],[0,3],[1,0,2],[1,1,1],[3,0,0],[1,2],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,1],[2,1,0,0],[0,3],[0,2,1],[3,0,0,0],[3,0,0],[0,0,0,3,0],[2,0,1],[1,1,1],[0,1,1],[2,0,1],[3,0,0],[0,1,2],[2,1],[1,2],[0,3],[3,0],[3,0],[3,0,0],[3,0],[2,1] +00991fa010_960627.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[2,1],[0,2,1],[1,2,0],[1,0,2],[0,1,2],[1,2,0],[1,1,1],[3,0,0],[3,0],[1,2,0],[2,0,1,0],[2,1],[0,1,2],[3,0,0],[0,0,3],[1,2],[3,0],[3,0],[0,0,3],[0,0,3,0],[1,2],[3,0],[1,0,1,1],[1,2],[0,1,2],[3,0,0,0],[1,1,0],[3,0,0,0,0],[1,0,2],[3,0,0],[0,1,2],[1,2,0],[1,2,0],[0,3,0],[2,1],[2,1],[1,2],[2,1],[3,0],[0,1,2],[3,0],[2,1] +00992fa010_960627.tif,[1,2],[0,3],[3,0,0,0,0,0,0],[0,3],[0,3],[1,2],[1,2,0],[2,1,0],[1,0,2],[0,2,1],[1,1,1],[2,0,1],[3,0,0],[2,1],[1,0,2],[2,1,0,0],[3,0],[3,0,0],[3,0,0],[2,0,1],[0,3],[3,0],[3,0],[0,1,1],[0,1,0,2],[3,0],[2,1],[0,2,1,0],[1,2],[0,3,0],[3,0,0,0],[2,1,0],[3,0,0,0,0],[0,0,3],[0,1,2],[0,3,0],[1,2,0],[0,3,0],[1,1,1],[0,3],[1,2],[0,3],[3,0],[3,0],[1,2,0],[1,2],[3,0] +00993fa010_960627.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[1,2],[1,2],[3,0],[0,1,2],[1,0,2],[2,0,1],[0,2,1],[1,2,0],[1,0,2],[2,0,1],[2,1],[1,1,1],[1,0,1,1],[2,1],[2,0,1],[1,2,0],[0,3,0],[3,0],[0,3],[3,0],[2,0,1],[3,0,0,0],[3,0],[3,0],[0,2,1,0],[2,1],[2,1,0],[3,0,0,0],[2,1,0],[3,0,0,0,0],[2,0,1],[1,1,1],[3,0,0],[2,1,0],[1,1,1],[1,2,0],[2,1],[2,1],[0,3],[1,2],[3,0],[0,3,0],[3,0],[3,0] +00994fa010_960627.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[2,1],[0,3],[1,2],[1,0,2],[0,3,0],[0,0,3],[1,0,2],[0,1,2],[1,1,1],[3,0,0],[3,0],[0,1,2],[2,1,0,0],[0,3],[0,0,3],[1,1,1],[2,0,1],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,1],[1,2,0,0],[0,3],[1,2,0],[3,0,0,0],[2,1,0],[3,0,0,0,0],[3,0,0],[0,2,1],[1,2,0],[0,2,1],[2,0,1],[0,3,0],[1,2],[1,2],[0,3],[2,0],[3,0],[3,0,0],[1,2],[1,2] +00995fa010_960627.tif,[3,0],[1,2],[0,0,0,1,0,2,0],[2,1],[1,2],[1,2],[0,0,3],[0,0,3],[1,2,0],[3,0,0],[1,2,0],[3,0,0],[0,0,3],[1,2],[3,0,0],[0,1,2,0],[0,3],[2,0,1],[3,0,0],[2,0,1],[0,3],[3,0],[3,0],[2,0,1],[3,0,0,0],[2,1],[3,0],[0,3,0,0],[0,3],[2,0,1],[3,0,0,0],[2,1,0],[0,0,0,1,2],[0,1,2],[3,0,0],[0,1,2],[1,2,0],[3,0,0],[1,1,1],[3,0],[1,2],[0,3],[0,3],[3,0],[0,2,1],[3,0],[3,0] +00996fa010_960627.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[2,1],[2,1],[0,3],[0,3,0],[2,0,1],[2,1,0],[3,0,0],[0,1,2],[1,2,0],[0,0,3],[1,2],[3,0,0],[2,0,0,1],[3,0],[0,1,2],[2,0,1],[2,1,0],[3,0],[0,3],[3,0],[0,2,1],[3,0,0,0],[3,0],[2,0],[0,2,0,1],[2,1],[0,0,3],[2,1,0,0],[2,1,0],[3,0,0,0,0],[1,0,2],[2,1,0],[2,1,0],[0,2,1],[1,2,0],[2,1,0],[2,1],[2,1],[0,3],[3,0],[0,3],[1,1,1],[3,0],[3,0] +00997fa010_960627.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[0,3],[1,2],[0,3],[1,1,1],[3,0,0],[2,0,1],[0,1,2],[0,1,2],[1,2,0],[0,2,1],[2,1],[2,0,1],[3,0,0,0],[2,1],[2,0,1],[2,0,1],[1,0,2],[1,2],[3,0],[3,0],[2,0,1],[0,0,2,1],[3,0],[3,0],[1,2,0,0],[1,2],[0,3,0],[3,0,0,0],[3,0,0],[1,0,2,0,0],[0,2,1],[2,0,1],[1,2,0],[2,0,1],[2,1,0],[2,1,0],[0,3],[2,1],[0,3],[2,1],[3,0],[3,0,0],[1,2],[2,1] +00998fb010_960627.tif,[3,0],[1,2],[0,0,0,1,0,2,0],[2,1],[2,1],[1,2],[1,1,1],[1,1,1],[2,1,0],[1,2,0],[0,3,0],[1,1,1],[1,1,1],[1,2],[2,1,0],[2,1,0,0],[3,0],[3,0,0],[2,1,0],[1,1,1],[3,0],[3,0],[3,0],[0,0,3],[0,0,3,0],[3,0],[3,0],[1,2,0,0],[0,3],[0,3,0],[2,1,0,0],[2,0,1],[0,0,1,0,2],[2,0,1],[1,0,2],[1,2,0],[0,2,1],[3,0,0],[2,1,0],[3,0],[0,3],[1,2],[1,2],[1,2],[0,3,0],[3,0],[0,3] +00999fa010_960627.tif,[3,0],[0,3],[3,0,0,0,0,0,0],[3,0],[1,2],[3,0],[2,0,1],[2,0,1],[0,1,2],[0,2,1],[2,1,0],[0,3,0],[0,3,0],[2,1],[2,1,0],[2,0,1,0],[1,2],[2,1,0],[0,1,2],[2,0,1],[2,1],[3,0],[3,0],[1,1,1],[3,0,0,0],[3,0],[2,1],[1,1,0,1],[0,3],[0,3,0],[3,0,0,0],[2,1,0],[1,0,1,1,0],[2,0,1],[3,0,0],[0,2,1],[0,2,1],[1,2,0],[0,3,0],[2,1],[2,1],[0,3],[0,3],[3,0],[0,0,3],[3,0],[2,1] +01000fa010_960627.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[1,2],[1,2],[2,1],[0,2,1],[0,1,2],[1,2,0],[1,0,2],[0,2,1],[0,3,0],[3,0,0],[2,1],[0,3,0],[1,0,0,2],[1,2],[0,2,1],[0,1,2],[0,0,3],[0,3],[3,0],[3,0],[2,0,1],[0,0,3,0],[3,0],[2,1],[1,1,1,0],[2,1],[0,2,0],[3,0,0,0],[2,1,0],[0,0,0,3,0],[0,1,2],[2,1,0],[2,1,0],[1,1,1],[1,1,1],[0,3,0],[3,0],[2,1],[0,3],[2,1],[3,0],[1,1,1],[2,1],[0,3] +01001fa010_960627.tif,[2,1],[3,0],[0,2,0,0,0,1,0],[0,3],[0,3],[1,2],[2,1,0],[2,0,1],[1,1,1],[1,1,1],[0,1,2],[1,2,0],[2,0,1],[2,1],[1,2,0],[3,0,0,0],[0,3],[1,2,0],[1,0,2],[2,0,1],[0,3],[3,0],[3,0],[1,1,1],[3,0,0,0],[2,1],[2,1],[0,1,1,0],[0,3],[0,3,0],[3,0,0,0],[1,0,2],[0,0,1,1,1],[0,0,3],[3,0,0],[0,3,0],[1,1,1],[1,0,2],[0,3,0],[1,2],[3,0],[0,3],[2,1],[3,0],[2,1,0],[0,3],[3,0] +01002fa010_960627.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[1,2],[0,3],[2,1],[2,0,1],[1,1,1],[3,0,0],[1,2,0],[0,3,0],[0,3,0],[1,1,1],[3,0],[1,2,0],[2,0,1,0],[0,3],[2,1,0],[1,1,1],[2,0,1],[0,3],[3,0],[3,0],[1,1,1],[3,0,0,0],[2,1],[3,0],[0,2,0,1],[2,1],[0,1,1],[2,1,0,0],[1,2,0],[3,0,0,0,0],[0,1,2],[3,0,0],[2,1,0],[0,3,0],[0,3,0],[0,3,0],[3,0],[0,3],[2,1],[0,3],[2,1],[2,1,0],[2,1],[3,0] +01003fa010_960627.tif,[0,3],[0,3],[2,0,0,0,0,1,0],[1,2],[1,2],[3,0],[0,1,2],[1,0,2],[2,0,1],[1,2,0],[0,2,1],[2,0,1],[2,0,0],[2,1],[1,1,1],[1,1,1,0],[0,3],[0,0,3],[0,2,1],[1,0,2],[2,1],[3,0],[3,0],[1,0,2],[3,0,0,0],[0,3],[1,2],[0,2,0,1],[2,1],[0,2,1],[2,1,0,0],[2,0,1],[3,0,0,0,0],[0,0,3],[3,0,0],[0,1,2],[0,1,2],[1,2,0],[0,2,1],[3,0],[1,2],[1,2],[0,3],[1,2],[0,2,1],[3,0],[1,2] +01004fa010_960627.tif,[2,1],[2,1],[0,0,0,2,0,1,0],[0,3],[0,3],[0,3],[1,0,2],[2,1,0],[2,1,0],[0,1,2],[1,2,0],[0,3,0],[0,1,2],[1,2],[2,0,1],[2,1,0,0],[0,3],[0,0,3],[1,0,2],[3,0,0],[3,0],[3,0],[3,0],[2,0,1],[3,0,0,0],[2,1],[3,0],[0,2,0,1],[0,3],[0,3,0],[3,0,0,0],[3,0,0],[1,0,0,0,2],[3,0,0],[3,0,0],[0,3,0],[1,1,1],[2,1,0],[0,2,1],[2,1],[1,2],[0,3],[3,0],[1,2],[3,0,0],[3,0],[2,1] +01005fa010_960627.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[0,3],[1,2],[0,3],[1,1,1],[1,1,1],[0,0,3],[0,1,2],[1,2,0],[3,0,0],[1,2,0],[1,2],[1,1,1],[3,0,0,0],[3,0],[1,2,0],[2,0,1],[2,1,0],[3,0],[2,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[1,2,0,0],[1,2],[0,3,0],[3,0,0,0],[2,0,1],[2,0,1,0,0],[1,0,2],[2,0,1],[0,3,0],[0,3,0],[2,1,0],[1,2,0],[1,2],[2,1],[0,3],[3,0],[1,2],[1,2,0],[3,0],[3,0] +01006fa010_960627.tif,[2,1],[2,1],[1,0,1,0,1,0,0],[2,1],[0,3],[2,1],[2,1,0],[2,0,1],[2,1,0],[1,2,0],[2,1,0],[0,3,0],[1,2,0],[2,1],[2,1,0],[3,0,0,0],[2,1],[3,0,0],[2,0,1],[2,1,0],[2,1],[3,0],[3,0],[0,3,0],[3,0,0,0],[2,1],[3,0],[1,1,1,0],[1,2],[0,2,1],[3,0,0,0],[0,3,0],[0,0,3,0,0],[3,0,0],[1,0,2],[2,1,0],[0,2,1],[2,1,0],[1,2,0],[2,1],[1,2],[1,2],[3,0],[2,1],[0,3,0],[3,0],[3,0] +01007fa010_960627.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[1,2],[0,0,3],[2,1,0],[0,3,0],[3,0,0],[0,1,2],[1,0,2],[1,2,0],[0,3],[1,2,0],[2,0,0,1],[2,1],[2,0,1],[2,1,0],[1,1,1],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[3,0],[2,1],[1,1,1,0],[1,2],[0,2,1],[3,0,0,0],[2,1,0],[3,0,0,0,0],[0,1,2],[0,0,3],[3,0,0],[0,3,0],[1,2,0],[3,0,0],[1,2],[1,2],[0,3],[3,0],[2,1],[0,2,1],[2,1],[2,1] +01008fa010_960627.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[2,1],[0,3],[0,3],[3,0,0],[1,1,1],[3,0,0],[1,2,0],[0,1,2],[1,2,0],[0,1,2],[1,2],[0,2,1],[2,1,0,0],[0,3],[1,0,2],[2,0,1],[2,0,1],[3,0],[0,3],[3,0],[1,1,1],[3,0,0,0],[3,0],[2,1],[1,1,0,1],[0,3],[0,3,0],[2,1,0,0],[0,3,0],[3,0,0,0,0],[0,0,3],[3,0,0],[2,1,0],[1,2,0],[1,2,0],[3,0,0],[2,1],[1,2],[0,3],[1,2],[3,0],[1,1,1],[3,0],[2,1] +01009fa010_960627.tif,[2,1],[0,3],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[0,3,0],[1,2,0],[1,2,0],[2,0,1],[0,2,1],[1,1,1],[3,0,0],[2,1],[1,2,0],[2,1,0,0],[1,2],[1,1,1],[0,2,1],[2,0,1],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[2,1],[3,0],[2,0,1,0],[1,2],[1,0,2],[3,0,0,0],[0,2,1],[3,0,0,0,0],[2,0,1],[0,0,3],[0,0,3],[2,1,0],[1,1,1],[0,0,3],[1,2],[1,2],[0,3],[3,0],[2,1],[1,2,0],[3,0],[2,1] +01010fa010_960627.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[0,3],[0,3],[1,2],[1,0,2],[2,1,0],[0,0,3],[0,3,0],[1,2,0],[0,2,0],[0,0,3],[3,0],[0,3,0],[3,0,0,0],[1,2],[2,0,1],[0,0,3],[3,0,0],[2,1],[3,0],[3,0],[0,1,2],[3,0,0,0],[0,3],[2,1],[1,0,1,1],[2,1],[0,2,1],[3,0,0,0],[3,0,0],[3,0,0,0,0],[2,0,1],[2,0,1],[0,2,1],[0,1,2],[1,1,1],[1,2,0],[3,0],[2,1],[0,3],[3,0],[3,0],[0,1,2],[3,0],[2,1] +01011fa010_960627.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[0,3],[1,2],[1,2],[1,1,1],[2,1,0],[1,2,0],[1,2,0],[1,1,1],[1,0,2],[1,0,2],[3,0],[0,1,2],[2,0,0,0],[3,0],[0,2,1],[3,0,0],[2,1,0],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[3,0],[2,1],[2,1,0,0],[1,2],[0,2,1],[2,1,0,0],[2,0,1],[3,0,0,0,0],[1,1,1],[2,0,1],[0,3,0],[1,1,1],[2,0,1],[1,2,0],[1,2],[3,0],[0,3],[2,1],[0,3],[0,0,3],[3,0],[3,0] +01012fa010_960627.tif,[2,1],[0,3],[3,0,0,0,0,0,0],[3,0],[0,3],[3,0],[1,1,1],[3,0,0],[1,2,0],[1,1,1],[2,1,0],[0,3,0],[0,0,3],[3,0],[3,0,0],[2,1,0,0],[2,1],[3,0,0],[1,0,2],[0,3,0],[0,3],[3,0],[3,0],[1,1,1],[3,0,0,0],[3,0],[1,2],[1,1,1,0],[0,3],[2,0,1],[1,2,0,0],[2,1,0],[2,0,1,0,0],[1,2,0],[2,1,0],[0,3,0],[0,2,1],[1,2,0],[0,2,1],[3,0],[0,3],[2,1],[0,3],[1,2],[1,0,2],[3,0],[3,0] +01013ba010_960521.tif,[0,3],[0,3],[3,0,0,0,0,0,0],[0,3],[1,2],[1,2],[0,1,2],[2,1,0],[1,2,0],[1,2,0],[0,2,1],[2,0,1],[0,2,1],[2,1],[2,1,0],[1,1,0,1],[0,3],[1,1,1],[1,0,2],[3,0,0],[3,0],[0,3],[3,0],[0,3,0],[3,0,0,0],[0,3],[3,0],[0,1,0,2],[0,3],[0,3,0],[3,0,0,0],[1,1,1],[3,0,0,0,0],[2,1,0],[1,0,2],[3,0,0],[2,1,0],[1,1,1],[1,2,0],[3,0],[1,2],[0,3],[1,2],[2,1],[0,1,2],[3,0],[3,0] +01014ba010_960521.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[2,1,0],[3,0,0],[2,0,1],[1,2,0],[1,2,0],[1,0,2],[3,0,0],[2,1],[2,0,1],[1,1,1,0],[3,0],[3,0,0],[2,0,1],[0,1,2],[0,3],[3,0],[3,0],[2,0,1],[1,0,1,1],[1,2],[3,0],[0,2,0,1],[0,3],[1,1,1],[3,0,0,0],[1,2,0],[3,0,0,0,0],[0,0,3],[2,0,1],[0,1,2],[1,2,0],[1,1,1],[0,0,3],[2,1],[2,1],[0,3],[2,1],[3,0],[0,1,2],[3,0],[0,3] +01015ba010_960521.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[3,0,0],[0,1,2],[3,0,0],[2,1,0],[1,2,0],[3,0,0],[2,1,0],[2,1],[2,0,1],[3,0,0,0],[0,3],[1,1,1],[1,0,2],[2,0,1],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[0,3],[2,1],[1,1,1,0],[1,2],[0,2,1],[3,0,0,0],[1,2,0],[3,0,0,0,0],[3,0,0],[1,0,2],[2,1,0],[1,1,1],[2,0,1],[1,2,0],[3,0],[0,3],[2,1],[0,3],[3,0],[1,2,0],[3,0],[3,0] +01016ba010_960521.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[0,3,0],[3,0,0],[2,1,0],[2,1,0],[1,1,1],[1,1,1],[0,3,0],[2,1],[3,0,0],[2,0,0,1],[1,2],[0,0,3],[1,0,2],[3,0,0],[0,3],[0,3],[3,0],[2,1,0],[3,0,0,0],[0,3],[2,1],[0,1,0,2],[1,2],[2,1,0],[0,1,2,0],[1,0,2],[3,0,0,0,0],[3,0,0],[2,0,1],[0,3,0],[1,2,0],[2,1,0],[0,2,1],[3,0],[2,1],[0,3],[0,3],[1,2],[0,1,2],[3,0],[3,0] +01017ba010_960521.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[3,0],[0,3],[1,2],[2,1,0],[0,2,1],[0,2,1],[3,0,0],[0,0,3],[0,0,3],[3,0,0],[3,0],[2,0,1],[1,2,0,0],[3,0],[2,0,1],[3,0,0],[3,0,0],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[3,0],[1,2,0,0],[1,2],[0,3,0],[3,0,0,0],[0,3,0],[3,0,0,0,0],[3,0,0],[2,0,1],[1,1,1],[2,1,0],[2,0,1],[0,2,1],[2,1],[3,0],[0,3],[0,3],[3,0],[0,2,1],[3,0],[1,2] +01018ba010_960521.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[3,0,0],[1,2,0],[2,1,0],[1,1,1],[0,3,0],[2,1,0],[3,0,0],[1,2],[1,0,2],[1,1,0,1],[2,0],[3,0,0],[2,0,1],[2,0,1],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[1,2],[3,0],[1,1,1,0],[2,1],[0,3,0],[2,1,0,0],[2,0,1],[3,0,0,0,0],[2,0,1],[2,1,0],[1,0,2],[0,1,2],[3,0,0],[0,2,1],[0,3],[2,1],[0,3],[3,0],[1,2],[2,1,0],[3,0],[3,0] +01019ba010_960521.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[2,1],[0,3],[1,2],[2,1,0],[0,1,2],[0,3,0],[3,0,0],[0,1,2],[0,0,3],[0,3,0],[1,2],[2,1,0],[3,0,0,0],[2,1],[3,0,0],[3,0,0],[1,2,0],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[2,1],[3,0],[0,2,0,1],[1,2],[0,0,3],[3,0,0,0],[0,3,0],[3,0,0,0,0],[0,1,2],[2,1,0],[1,2,0],[1,2,0],[2,1,0],[0,3,0],[3,0],[2,1],[0,3],[2,1],[3,0],[2,1,0],[3,0],[2,1] +01020ba010_960521.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[2,1],[0,3],[1,2],[1,1,1],[1,0,2],[1,2,0],[3,0,0],[0,3,0],[1,0,2],[2,0,1],[2,1],[2,0,1],[1,0,1,1],[2,1],[0,0,3],[2,1,0],[3,0,0],[3,0],[0,3],[3,0],[0,1,2],[3,0,0,0],[3,0],[1,2],[2,0,1,0],[0,3],[1,1,1],[0,1,2,0],[2,0,1],[2,0,1,0,0],[1,0,2],[1,0,2],[0,1,2],[1,1,1],[2,0,1],[0,1,2],[2,0],[0,3],[1,2],[1,2],[0,3],[0,1,2],[3,0],[3,0] +01021ba010_960521.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[2,1],[1,2],[2,1],[0,2,1],[3,0,0],[1,2,0],[2,1,0],[0,3,0],[3,0,0],[1,0,2],[2,1],[1,1,1],[3,0,0,0],[3,0],[3,0,0],[2,0,1],[2,0,1],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[2,1],[1,2],[0,1,0,2],[0,3],[0,2,1],[3,0,0,0],[2,0,1],[3,0,0,0,0],[0,3,0],[2,1,0],[1,2,0],[1,1,1],[0,0,3],[0,3,0],[3,0],[3,0],[0,3],[1,2],[2,1],[0,2,1],[3,0],[3,0] +01022ba010_960521.tif,[0,3],[3,0],[3,0,0,0,0,0,0],[1,2],[2,1],[1,2],[2,0,1],[0,2,1],[2,1,0],[2,1,0],[0,0,3],[1,0,2],[3,0,0],[2,1],[2,0,1],[0,2,0,1],[0,3],[1,0,2],[0,2,1],[3,0,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[2,1,0,0],[1,2],[0,3,0],[3,0,0,0],[0,3,0],[2,0,1,0,0],[3,0,0],[3,0,0],[0,1,2],[0,0,3],[2,1,0],[0,3,0],[2,1],[2,1],[1,2],[2,1],[3,0],[1,2,0],[3,0],[2,1] +01023ba010_960521.tif,[2,1],[3,0],[2,0,1,0,0,0,0],[1,2],[0,3],[1,2],[2,1,0],[2,1,0],[1,1,1],[0,2,1],[0,0,3],[3,0,0],[2,0,1],[2,1],[1,1,1],[3,0,0,0],[3,0],[3,0,0],[1,0,2],[0,0,3],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[2,1],[1,1,1,0],[1,2],[0,2,1],[0,3,0,0],[2,1,0],[2,0,1,0,0],[1,0,2],[2,0,1],[0,2,1],[2,1,0],[3,0,0],[0,2,1],[2,1],[1,2],[0,3],[3,0],[2,1],[2,1,0],[3,0],[1,2] +01024ba010_960521.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[0,3],[1,2],[1,2],[3,0,0],[2,0,1],[2,0,1],[1,2,0],[1,2,0],[0,3,0],[1,2,0],[3,0],[0,2,1],[2,1,0,0],[2,1],[0,1,2],[0,1,2],[1,0,2],[3,0],[3,0],[3,0],[1,1,1],[2,0,1,0],[2,1],[3,0],[2,1,0,0],[0,3],[0,2,1],[3,0,0,0],[2,1,0],[2,0,1,0,0],[3,0,0],[2,0,1],[0,2,1],[2,1,0],[2,1,0],[0,2,1],[3,0],[0,3],[0,3],[1,2],[2,1],[1,1,1],[1,2],[3,0] +01025ba010_960521.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[3,0,0],[1,0,2],[3,0,0],[2,0,1],[0,3,0],[2,1,0],[3,0,0],[2,1],[0,0,3],[3,0,0,0],[2,1],[1,0,2],[3,0,0],[3,0,0],[1,2],[3,0],[3,0],[2,1,0],[3,0,0,0],[1,2],[3,0],[0,1,0,2],[0,3],[0,2,1],[3,0,0,0],[0,3,0],[3,0,0,0,0],[2,0,1],[1,0,2],[1,2,0],[2,0,1],[2,1,0],[0,3,0],[0,3],[3,0],[1,2],[3,0],[3,0],[1,2,0],[3,0],[3,0] +01026ba010_960521.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[1,2],[1,2],[0,3],[2,0,1],[2,0,1],[1,2,0],[2,1,0],[0,1,2],[0,0,3],[3,0,0],[1,2],[2,0,1],[3,0,0,0],[1,2],[2,1,0],[1,0,2],[3,0,0],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[1,2],[3,0],[0,0,2,1],[0,3],[0,1,2],[3,0,0,0],[1,1,1],[3,0,0,0,0],[2,0,1],[2,1,0],[0,0,3],[1,2,0],[1,1,1],[0,0,3],[2,1],[1,2],[1,2],[3,0],[3,0],[0,0,3],[3,0],[3,0] +01027ba010_960521.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[2,1],[0,3],[1,2],[1,0,2],[1,1,1],[1,1,1],[1,2,0],[0,2,1],[1,2,0],[1,0,1],[3,0],[0,0,3],[3,0,0,0],[0,3],[2,0,1],[0,3,0],[1,0,2],[0,3],[3,0],[3,0],[3,0,0],[2,0,1,0],[3,0],[3,0],[0,1,0,2],[3,0],[0,2,1],[3,0,0,0],[0,3,0],[3,0,0,0,0],[2,0,1],[2,0,1],[0,3,0],[3,0,0],[1,2,0],[1,2,0],[0,3],[1,2],[0,3],[3,0],[3,0],[1,2,0],[0,3],[2,1] +01028ba010_960521.tif,[3,0],[3,0],[2,0,0,0,0,0,0],[1,2],[1,2],[0,3],[0,0,3],[0,0,3],[1,0,2],[0,1,2],[0,3,0],[0,3,0],[0,1,2],[2,1],[0,3,0],[3,0,0,0],[0,3],[0,0,3],[0,3,0],[1,0,2],[3,0],[3,0],[3,0],[1,2,0],[3,0,0,0],[3,0],[3,0],[1,2,0,0],[0,3],[0,3,0],[3,0,0,0],[1,2,0],[3,0,0,0,0],[3,0,0],[1,0,2],[1,2,0],[0,1,2],[2,1,0],[2,1,0],[0,3],[1,2],[0,3],[3,0],[3,0],[0,2,1],[3,0],[0,3] +01029ba010_960521.tif,[2,1],[2,1],[1,0,1,0,1,0,0],[0,3],[0,3],[1,2],[3,0,0],[1,1,1],[2,0,1],[2,1,0],[1,2,0],[1,0,2],[3,0,0],[1,2],[1,0,2],[2,0,0,1],[3,0],[0,0,3],[1,2,0],[2,1,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[1,2],[3,0],[0,0,3,0],[0,3],[1,1,1],[3,0,0,0],[0,3,0],[1,0,2,0,0],[2,0,1],[1,0,2],[0,1,2],[1,2,0],[3,0,0],[0,1,2],[3,0],[2,1],[0,3],[3,0],[3,0],[0,2,1],[3,0],[2,1] +01030ba010_960521.tif,[2,1],[2,1],[2,0,0,1,0,0,0],[0,3],[2,1],[0,3],[2,1,0],[2,1,0],[0,3,0],[3,0,0],[0,3,0],[2,1,0],[3,0,0],[0,3],[1,0,1],[2,1,0,0],[3,0],[0,3,0],[3,0,0],[1,2,0],[3,0],[3,0],[3,0],[3,0,0],[2,1,0,0],[0,3],[2,1],[0,0,3,0],[1,2],[0,2,1],[2,0,1,0],[1,2,0],[2,1,0,0,0],[1,0,2],[2,0,1],[1,1,1],[0,3,0],[1,0,1],[0,2,1],[2,1],[3,0],[0,3],[2,1],[2,1],[1,1,1],[3,0],[3,0] +01031ba010_960521.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[1,1,1],[1,2,0],[0,3,0],[3,0,0],[0,2,1],[1,0,2],[2,0,1],[2,1],[1,1,1],[2,1,0,0],[0,3],[1,0,2],[2,1,0],[2,1,0],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[1,0,2,0],[0,3],[0,2,1],[3,0,0,0],[2,1,0],[3,0,0,0,0],[2,1,0],[1,1,1],[1,0,2],[1,1,1],[1,2,0],[0,0,3],[0,3],[1,2],[0,3],[3,0],[3,0],[0,1,2],[3,0],[3,0] +01032ba010_960521.tif,[3,0],[3,0],[2,0,0,0,0,1,0],[2,1],[0,3],[2,1],[1,2,0],[2,1,0],[2,1,0],[2,1,0],[0,3,0],[1,0,2],[3,0,0],[1,2],[3,0,0],[1,0,2,0],[1,2],[2,0,1],[3,0,0],[1,2,0],[2,1],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[2,1],[1,0,2,0],[3,0],[0,0,3],[3,0,0,0],[3,0,0],[3,0,0,0,0],[2,0,1],[3,0,0],[0,1,2],[2,1,0],[1,0,2],[0,2,1],[3,0],[0,3],[3,0],[0,3],[2,1],[2,1,0],[3,0],[1,2] +01033ba010_960521.tif,[2,1],[3,0],[0,0,3,0,0,0,0],[0,3],[0,3],[1,2],[3,0,0],[1,2,0],[1,0,2],[0,1,2],[0,1,2],[2,0,1],[3,0,0],[3,0],[1,0,2],[2,1,0,0],[0,3],[0,0,3],[0,3,0],[2,0,1],[3,0],[3,0],[3,0],[3,0,0],[2,0,1,0],[0,3],[3,0],[2,0,1,0],[0,3],[1,0,2],[3,0,0,0],[0,3,0],[1,2,0,0,0],[2,0,1],[1,0,2],[0,0,3],[0,2,1],[2,1,0],[0,2,1],[3,0],[1,2],[0,3],[2,1],[3,0],[0,2,1],[3,0],[2,1] +01034ba010_960521.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[1,2],[1,2],[0,3],[3,0,0],[2,1,0],[1,0,2],[3,0,0],[0,1,2],[2,0,1],[1,2,0],[1,2],[2,0,1],[1,1,0,1],[1,2],[1,0,2],[2,0,1],[2,0,1],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[3,0],[1,1,0,1],[0,3],[0,3,0],[3,0,0,0],[0,2,0],[3,0,0,0,0],[2,0,1],[3,0,0],[1,1,1],[0,1,2],[2,1,0],[1,2,0],[0,3],[3,0],[1,2],[3,0],[2,1],[0,2,1],[3,0],[3,0] +01035ba010_960521.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[0,3],[1,2],[0,3],[3,0,0],[1,2,0],[3,0,0],[0,3,0],[0,2,1],[2,0,1],[3,0,0],[0,3],[3,0,0],[2,0,0,1],[3,0],[3,0,0],[3,0,0],[3,0,0],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[3,0],[2,1],[0,3,0,0],[1,2],[0,2,0],[3,0,0,0],[2,1,0],[3,0,0,0,0],[2,0,1],[2,1,0],[1,2,0],[0,3,0],[1,1,1],[1,2,0],[3,0],[1,2],[1,2],[2,1],[2,1],[2,1,0],[3,0],[3,0] +01036ba010_960521.tif,[2,1],[1,2],[1,0,2,0,0,0,0],[0,3],[0,3],[1,2],[1,2,0],[3,0,0],[2,1,0],[1,2,0],[0,3,0],[1,0,2],[3,0,0],[2,1],[2,1,0],[3,0,0,0],[3,0],[2,1,0],[3,0,0],[1,1,1],[2,1],[3,0],[3,0],[2,0,1],[2,1,0,0],[3,0],[3,0],[1,0,2,0],[0,3],[0,1,2],[3,0,0,0],[0,3,0],[0,3,0,0,0],[0,0,3],[0,0,3],[0,0,3],[0,3,0],[1,0,2],[0,0,3],[2,1],[2,1],[0,3],[3,0],[3,0],[3,0,0],[1,2],[3,0] +01037ba010_960521.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[1,2],[1,2],[0,3],[2,1,0],[2,1,0],[1,0,2],[3,0,0],[0,1,2],[3,0,0],[3,0,0],[2,1],[1,2,0],[1,1,0,0],[3,0],[3,0,0],[2,1,0],[2,0,1],[3,0],[3,0],[3,0],[3,0,0],[2,0,1,0],[0,3],[3,0],[1,1,1,0],[0,3],[1,2,0],[1,2,0,0],[1,2,0],[3,0,0,0,0],[1,0,2],[3,0,0],[1,0,2],[1,2,0],[1,1,1],[0,3,0],[1,2],[2,1],[0,3],[3,0],[3,0],[1,2,0],[1,2],[3,0] +01038ba010_960521.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[2,0,1],[2,1,0],[0,0,3],[1,1,1],[0,3,0],[1,2,0],[0,1,2],[2,1],[1,2,0],[1,2,0,0],[2,1],[1,0,2],[1,2,0],[2,0,1],[2,1],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,1],[0,1,0,2],[0,3],[1,1,1],[3,0,0,0],[0,3,0],[3,0,0,0,0],[2,0,1],[1,0,2],[1,1,1],[3,0,0],[0,3,0],[0,3,0],[3,0],[2,0],[1,2],[3,0],[3,0],[0,3,0],[2,1],[0,3] +01039ba010_960521.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[1,0,2],[0,3,0],[0,1,2],[1,1,1],[0,3,0],[2,1,0],[1,2,0],[2,1],[0,1,2],[2,1,0,0],[0,3],[0,0,3],[1,2,0],[2,0,1],[3,0],[3,0],[3,0],[1,2,0],[3,0,0,0],[1,2],[2,0],[0,2,1,0],[0,3],[1,2,0],[2,1,0,0],[1,0,2],[1,0,2,0,0],[2,0,1],[1,2,0],[0,3,0],[2,1,0],[2,0,1],[1,2,0],[2,1],[1,2],[1,2],[3,0],[1,2],[1,2,0],[3,0],[3,0] +01040ba010_960521.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[1,2],[3,0,0],[1,1,1],[2,1,0],[0,1,2],[1,2,0],[1,1,1],[1,0,2],[1,2],[1,1,1],[3,0,0,0],[1,2],[3,0,0],[1,0,2],[2,1,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[0,1,0,2],[0,3],[0,2,1],[3,0,0,0],[2,1,0],[0,0,2,1,0],[3,0,0],[3,0,0],[2,1,0],[1,2,0],[0,2,1],[1,2,0],[3,0],[1,2],[0,3],[2,1],[3,0],[3,0,0],[3,0],[3,0] +01041ba010_960521.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[0,3],[1,2],[0,3],[0,1,2],[2,0,1],[3,0,0],[0,3,0],[2,1,0],[0,2,1],[0,0,3],[2,1],[1,2,0],[2,1,0,0],[2,1],[2,0,1],[0,0,3],[1,1,1],[0,3],[3,0],[3,0],[0,1,2],[2,0,1,0],[3,0],[3,0],[0,0,0,3],[1,2],[0,3,0],[3,0,0,0],[1,2,0],[3,0,0,0,0],[2,0,1],[2,0,1],[1,2,0],[1,2,0],[2,1,0],[0,3,0],[3,0],[2,1],[0,3],[2,1],[2,1],[3,0,0],[0,3],[2,1] +01042ba010_960521.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[0,3],[2,1],[1,2],[1,0,2],[1,2,0],[3,0,0],[1,2,0],[2,1,0],[2,0,1],[0,2,1],[1,2],[1,1,1],[3,0,0,0],[0,3],[3,0,0],[2,1,0],[3,0,0],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[2,1],[3,0],[0,1,0,2],[0,3],[0,3,0],[3,0,0,0],[1,2,0],[3,0,0,0,0],[1,0,2],[1,0,2],[0,3,0],[1,2,0],[1,2,0],[1,2,0],[1,2],[3,0],[0,3],[3,0],[3,0],[0,1,2],[3,0],[2,1] +01043ba010_960521.tif,[2,1],[3,0],[0,0,0,0,3,0,0],[2,1],[1,2],[1,2],[0,0,3],[1,0,2],[0,0,2],[0,0,3],[1,1,1],[2,1,0],[0,1,2],[3,0],[1,2,0],[2,0,0,1],[0,3],[1,0,2],[0,3,0],[0,0,3],[3,0],[3,0],[3,0],[3,0,0],[2,0,1,0],[3,0],[3,0],[1,0,2,0],[2,1],[0,2,1],[3,0,0,0],[2,0,1],[2,0,1,0,0],[3,0,0],[1,0,2],[2,1,0],[0,3,0],[0,3,0],[3,0,0],[3,0],[2,1],[0,3],[3,0],[2,1],[0,3,0],[3,0],[3,0] +01044ba010_960521.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[0,3],[1,2],[0,3],[1,1,0],[1,1,1],[3,0,0],[3,0,0],[1,2,0],[1,0,2],[3,0,0],[2,1],[0,0,3],[3,0,0,0],[2,1],[3,0,0],[2,1,0],[1,0,1],[3,0],[0,3],[2,1],[3,0,0],[3,0,0,0],[3,0],[3,0],[0,0,3,0],[0,3],[1,1,1],[2,1,0,0],[2,1,0],[3,0,0,0,0],[1,0,2],[2,0,1],[0,0,3],[0,1,2],[1,0,2],[0,0,3],[0,3],[2,1],[0,3],[3,0],[1,2],[0,0,3],[3,0],[2,0] +01045ba010_960521.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[2,1,0],[1,2,0],[1,2,0],[1,2,0],[1,1,1],[2,0,1],[3,0,0],[2,1],[1,0,2],[2,0,1,0],[3,0],[0,1,2],[3,0,0],[3,0,0],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[3,0],[1,1,1,0],[0,3],[0,3,0],[3,0,0,0],[2,1,0],[3,0,0,0,0],[1,1,1],[1,1,1],[0,1,2],[0,3,0],[1,2,0],[1,2,0],[1,2],[2,1],[0,3],[2,1],[3,0],[2,0,1],[3,0],[3,0] +01046ba010_960521.tif,[2,1],[3,0],[2,0,1,0,0,0,0],[0,3],[0,3],[0,3],[1,0,2],[2,0,1],[0,0,3],[1,0,2],[1,1,1],[2,0,1],[0,0,3],[2,1],[0,2,1],[3,0,0,0],[0,2],[0,0,3],[0,0,3],[2,1,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[2,1,0,0],[0,3],[0,3,0],[2,1,0,0],[1,2,0],[2,0,1,0,0],[2,0,1],[1,2,0],[0,1,2],[3,0,0],[2,1,0],[0,2,1],[2,1],[2,1],[1,2],[2,1],[3,0],[2,1,0],[1,2],[3,0] +01047ba010_960521.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[0,3],[2,1],[2,1],[3,0,0],[1,2,0],[2,1,0],[1,2,0],[0,2,1],[2,1,0],[3,0,0],[0,3],[0,1,2],[2,0,0,1],[2,1],[3,0,0],[2,1,0],[3,0,0],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[0,2,0,1],[0,3],[0,3,0],[3,0,0,0],[1,2,0],[3,0,0,0,0],[2,0,1],[1,0,2],[1,1,1],[1,2,0],[2,1,0],[1,2,0],[3,0],[1,2],[0,3],[2,1],[3,0],[1,1,1],[2,1],[3,0] +01048ba010_960521.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[2,1],[0,3],[0,3],[3,0,0],[2,0,1],[0,3,0],[2,1,0],[1,2,0],[2,0,1],[3,0,0],[3,0],[2,0,1],[2,1,0,0],[3,0],[2,0,1],[3,0,0],[3,0,0],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[1,2],[3,0],[1,2,0,0],[1,2],[0,2,1],[3,0,0,0],[2,1,0],[3,0,0,0,0],[0,2,1],[0,0,3],[2,1,0],[1,2,0],[1,1,1],[0,2,1],[3,0],[2,1],[0,3],[2,1],[3,0],[1,2,0],[3,0],[2,1] +01049ba010_960521.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[2,1],[2,1],[0,3],[0,1,2],[1,1,1],[1,2,0],[1,1,1],[0,1,2],[1,1,1],[2,0,1],[2,1],[0,1,2],[1,0,0,2],[3,0],[2,1,0],[2,0,1],[3,0,0],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[3,0],[2,0,0,1],[2,1],[0,3,0],[2,0,0,1],[2,1,0],[3,0,0,0,0],[2,1,0],[3,0,0],[1,1,1],[0,3,0],[3,0,0],[1,1,1],[2,1],[2,1],[0,3],[3,0],[1,2],[1,2,0],[3,0],[3,0] +01050ba010_960521.tif,[1,2],[3,0],[0,0,0,1,2,0,0],[0,3],[1,2],[0,3],[2,0,1],[1,0,2],[0,0,3],[0,1,2],[0,3,0],[3,0,0],[2,1,0],[2,1],[0,1,2],[2,1,0,0],[0,3],[1,0,2],[0,2,1],[2,1,0],[3,0],[3,0],[3,0],[2,1,0],[2,0,1,0],[2,1],[2,1],[0,3,0,0],[1,2],[1,1,1],[3,0,0,0],[0,3,0],[3,0,0,0,0],[2,0,1],[2,0,1],[2,1,0],[0,2,1],[1,1,1],[2,1,0],[2,1],[1,2],[0,3],[3,0],[3,0],[2,1,0],[3,0],[3,0] +01051ba010_960521.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[3,0,0],[0,3,0],[2,1,0],[2,1,0],[0,2,1],[1,1,1],[3,0,0],[1,2],[1,0,2],[2,0,1,0],[2,1],[1,0,2],[2,0,1],[1,0,2],[3,0],[0,3],[3,0],[1,1,1],[2,0,1,0],[3,0],[2,1],[1,2,0,0],[1,2],[2,1,0],[0,3,0,0],[2,0,1],[3,0,0,0,0],[1,0,2],[2,0,1],[0,2,1],[0,3,0],[2,0,1],[0,3,0],[2,1],[1,2],[2,1],[3,0],[3,0],[1,2,0],[3,0],[2,1] +01052ba010_960521.tif,[2,1],[2,1],[2,0,0,1,0,0,0],[1,2],[0,3],[1,2],[2,0,1],[1,2,0],[0,3,0],[3,0,0],[0,3,0],[2,1,0],[1,0,2],[0,3],[2,0,1],[3,0,0,0],[2,1],[3,0,0],[3,0,0],[1,0,2],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[1,2],[3,0],[0,2,0,1],[0,3],[0,2,1],[3,0,0,0],[0,3,0],[3,0,0,0,0],[2,1,0],[2,0,1],[0,2,1],[0,1,2],[1,2,0],[0,3,0],[1,2],[1,2],[0,3],[2,1],[3,0],[0,0,3],[3,0],[2,1] +01053ba010_960521.tif,[1,2],[2,1],[2,0,1,0,0,0,0],[2,1],[2,1],[1,2],[3,0,0],[1,1,0],[0,3,0],[2,1,0],[1,1,1],[1,2,0],[2,0,1],[2,1],[2,0,1],[1,1,0,1],[3,0],[2,0,1],[3,0,0],[2,1,0],[0,3],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[2,1],[0,1,1,1],[2,1],[0,3,0],[3,0,0,0],[3,0,0],[1,0,2,0,0],[0,0,3],[3,0,0],[0,3,0],[0,1,2],[2,1,0],[0,3,0],[3,0],[0,3],[1,2],[0,3],[3,0],[2,1,0],[0,3],[1,2] +01054ba010_960521.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[0,3],[3,0],[0,3],[1,2,0],[2,1,0],[2,0,1],[1,2,0],[1,2,0],[3,0,0],[2,0,1],[1,2],[1,2,0],[2,1,0,0],[2,1],[1,0,2],[1,0,2],[2,1,0],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[3,0],[1,2],[1,2,0,0],[2,1],[0,0,3],[3,0,0,0],[1,0,2],[3,0,0,0,0],[0,2,1],[2,1,0],[1,2,0],[0,2,1],[2,1,0],[0,3,0],[3,0],[1,2],[0,3],[3,0],[1,2],[2,1,0],[0,3],[2,1] +01055ba010_960521.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[3,0],[2,1,0],[2,1,0],[2,0,1],[1,2,0],[0,2,1],[2,0,1],[2,1,0],[2,1],[1,0,2],[0,1,2,0],[3,0],[3,0,0],[2,1,0],[1,2,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[0,3],[3,0,0,0],[0,3],[0,3,0],[2,1,0,0],[3,0,0],[2,0,1,0,0],[3,0,0],[3,0,0],[0,0,3],[2,1,0],[1,1,1],[0,0,3],[3,0],[2,1],[2,1],[0,3],[2,1],[3,0,0],[1,2],[3,0] +01056ba010_960521.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[3,0],[2,1],[2,1],[3,0,0],[3,0,0],[1,0,2],[0,2,1],[2,0,1],[3,0,0],[3,0,0],[2,1],[2,0,1],[1,1,0,1],[2,1],[0,1,2],[1,0,2],[2,1,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,1],[0,1,0,2],[0,3],[2,1,0],[3,0,0,0],[3,0,0],[3,0,0,0,0],[3,0,0],[2,0,1],[0,0,3],[0,3,0],[2,1,0],[0,1,2],[3,0],[2,1],[1,2],[0,3],[1,2],[2,1,0],[2,1],[2,1] +01057ba010_960521.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[3,0],[0,3],[2,1],[0,3,0],[2,0,1],[1,1,1],[3,0,0],[2,1,0],[2,0,1],[3,0,0],[3,0],[1,2,0],[3,0,0,0],[2,1],[3,0,0],[3,0,0],[1,2,0],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[3,0],[1,2],[0,2,1,0],[1,2],[0,2,1],[1,2,0,0],[3,0,0],[3,0,0,0,0],[2,1,0],[2,1,0],[0,3,0],[0,2,1],[2,1,0],[0,3,0],[3,0],[1,2],[1,1],[0,3],[1,2],[0,2,1],[3,0],[2,1] +01058ba010_960521.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[2,1],[2,0,1],[1,1,1],[3,0,0],[2,1,0],[1,2,0],[1,0,2],[1,2,0],[1,2],[2,0,1],[0,0,3,0],[0,3],[3,0,0],[1,0,2],[2,1,0],[3,0],[1,2],[3,0],[2,0,1],[3,0,0,0],[0,3],[0,3],[2,1,0,0],[0,3],[0,3,0],[3,0,0,0],[0,3,0],[3,0,0,0,0],[3,0,0],[3,0,0],[0,2,1],[1,2,0],[0,3,0],[0,3,0],[3,0],[0,3],[3,0],[0,3],[3,0],[0,3,0],[3,0],[3,0] +01059ba010_960521.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[1,1,1],[1,1,1],[2,1,0],[3,0,0],[0,0,3],[0,1,2],[3,0,0],[2,1],[0,3,0],[2,0,0,1],[0,3],[1,1,1],[2,0,1],[1,0,2],[3,0],[0,3],[3,0],[2,1,0],[2,0,0,1],[1,2],[3,0],[1,0,2,0],[0,3],[0,1,2],[3,0,0,0],[2,1,0],[3,0,0,0,0],[3,0,0],[3,0,0],[0,1,2],[2,1,0],[1,2,0],[1,2,0],[2,1],[3,0],[0,3],[2,1],[2,1],[0,0,3],[3,0],[2,1] +01060ba010_960521.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[2,1],[1,2],[3,0],[1,2,0],[2,0,1],[3,0,0],[2,1,0],[1,1,1],[0,1,2],[2,0,1],[3,0],[1,0,1],[0,0,2,1],[2,1],[2,0,1],[3,0,0],[2,0,1],[3,0],[0,3],[3,0],[1,1,1],[1,0,2,0],[3,0],[0,3],[1,0,2,0],[0,3],[1,1,0],[2,1,0,0],[1,2,0],[3,0,0,0,0],[1,0,2],[3,0,0],[0,2,1],[2,0,1],[2,1,0],[0,1,2],[2,1],[1,2],[3,0],[0,3],[3,0],[0,3,0],[2,1],[0,3] +01061ba010_960521.tif,[0,3],[3,0],[2,0,0,0,0,0,1],[1,2],[1,2],[0,3],[1,2,0],[1,2,0],[0,3,0],[3,0,0],[0,0,3],[0,0,3],[3,0,0],[3,0],[0,0,3],[2,0,1,0],[3,0],[3,0,0],[3,0,0],[2,0,1],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[3,0],[2,0,1,0],[0,3],[0,2,1],[3,0,0,0],[2,1,0],[3,0,0,0,0],[0,1,2],[1,0,2],[1,0,2],[2,1,0],[2,1,0],[0,0,3],[0,3],[3,0],[1,2],[3,0],[3,0],[0,0,3],[3,0],[2,1] +01062ba010_960521.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[2,1],[0,3],[1,2],[2,0,1],[1,1,1],[1,0,2],[0,3,0],[2,1,0],[1,2,0],[0,0,3],[3,0],[2,1,0],[3,0,0,0],[0,3],[3,0,0],[0,1,2],[2,0,1],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[0,0,1,2],[2,1],[1,2,0],[2,1,0,0],[1,1,1],[3,0,0,0,0],[3,0,0],[2,0,1],[1,2,0],[1,1,1],[0,3,0],[1,2,0],[2,1],[2,0],[0,3],[3,0],[3,0],[2,1,0],[3,0],[3,0] +01063ba010_960521.tif,[2,1],[3,0],[2,0,1,0,0,0,0],[1,2],[1,2],[0,3],[3,0,0],[2,0,1],[3,0,0],[1,1,1],[0,3,0],[0,3,0],[2,0,1],[0,3],[0,2,1],[3,0,0,0],[0,3],[2,0,1],[0,2,1],[3,0,0],[0,3],[3,0],[3,0],[3,0,0],[3,0,0,0],[1,2],[2,1],[0,1,0,2],[0,3],[0,2,1],[3,0,0,0],[1,1,0],[2,0,1,0,0],[2,0,1],[1,0,2],[1,0,2],[3,0,0],[0,3,0],[1,2,0],[0,3],[2,1],[0,3],[3,0],[3,0],[3,0,0],[2,1],[2,1] +01064ba010_960521.tif,[3,0],[3,0],[1,1,0,0,0,0,0],[0,3],[2,1],[0,3],[3,0,0],[0,1,2],[0,0,3],[1,2,0],[0,3,0],[1,2,0],[2,1,0],[0,3],[0,1,2],[3,0,0,0],[2,1],[3,0,0],[0,0,3],[3,0,0],[2,1],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[3,0],[0,3,0,0],[0,3],[0,3,0],[3,0,0,0],[1,2,0],[3,0,0,0,0],[3,0,0],[2,0,1],[0,3,0],[2,1,0],[1,2,0],[0,3,0],[1,2],[3,0],[0,3],[3,0],[3,0],[0,3,0],[2,1],[2,1] +01065ba010_960521.tif,[0,3],[1,2],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[2,1,0],[3,0,0],[0,0,3],[0,1,2],[0,2,1],[0,0,3],[3,0,0],[3,0],[1,1,1],[1,2,0,0],[3,0],[3,0,0],[2,1,0],[2,1,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[1,2,0,0],[2,1],[0,2,1],[0,3,0,0],[0,3,0],[3,0,0,0,0],[3,0,0],[3,0,0],[0,3,0],[1,2,0],[2,0,1],[1,2,0],[3,0],[0,2],[1,2],[0,3],[2,1],[0,3,0],[3,0],[0,3] +01066ba010_960521.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[1,2],[1,2],[1,2],[3,0,0],[0,3,0],[1,2,0],[2,0,1],[1,1,1],[3,0,0],[2,0,1],[2,1],[1,2,0],[2,1,0,0],[0,3],[1,0,2],[1,2,0],[3,0,0],[3,0],[3,0],[3,0],[2,1,0],[3,0,0,0],[3,0],[2,1],[1,1,0,1],[0,3],[1,1,1],[3,0,0,0],[0,3,0],[2,1,0,0,0],[1,0,2],[2,0,1],[0,3,0],[0,2,1],[2,1,0],[2,1,0],[3,0],[1,2],[0,3],[0,3],[2,1],[2,1,0],[3,0],[2,1] +01067ba010_960521.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[2,1],[2,1,0],[1,2,0],[2,0,1],[0,3,0],[0,3,0],[0,0,3],[2,0,1],[2,0],[1,1,1],[1,2,0,0],[3,0],[0,0,3],[3,0,0],[2,1,0],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[2,1],[3,0],[1,1,0,1],[3,0],[0,2,1],[3,0,0,0],[2,1,0],[3,0,0,0,0],[2,0,1],[1,0,2],[0,0,3],[1,2,0],[3,0,0],[1,2,0],[2,1],[1,2],[1,2],[2,1],[2,1],[1,2,0],[3,0],[2,1] +01068ba010_960521.tif,[1,2],[2,1],[1,0,2,0,0,0,0],[1,2],[0,3],[0,3],[2,0,1],[1,1,1],[2,0,1],[0,2,1],[0,2,1],[2,1,0],[3,0,0],[0,3],[0,1,2],[2,1,0,0],[3,0],[1,0,2],[3,0,0],[3,0,0],[3,0],[3,0],[3,0],[0,3,0],[3,0,0,0],[3,0],[3,0],[0,1,0,2],[1,2],[0,3,0],[3,0,0,0],[3,0,0],[0,0,3,0,0],[2,0,1],[3,0,0],[0,3,0],[1,2,0],[2,1,0],[1,2,0],[2,1],[2,1],[0,3],[3,0],[3,0],[0,3,0],[2,1],[3,0] +01069ba010_960521.tif,[3,0],[3,0],[0,0,2,1,0,0,0],[1,2],[2,1],[2,1],[3,0,0],[2,0,1],[0,0,3],[0,2,1],[2,1,0],[2,1,0],[1,1,1],[2,1],[2,1,0],[2,0,1,0],[1,2],[3,0,0],[0,0,3],[1,0,2],[1,2],[3,0],[3,0],[2,0,0],[3,0,0,0],[3,0],[1,2],[0,1,0,1],[1,2],[1,2,0],[3,0,0,0],[2,1,0],[1,0,2,0,0],[2,0,1],[3,0,0],[0,2,1],[1,1,1],[3,0,0],[0,3,0],[3,0],[1,2],[2,1],[0,3],[3,0],[1,2,0],[2,1],[3,0] +01070ba010_960521.tif,[0,3],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[3,0,0],[2,1,0],[2,1,0],[3,0,0],[2,1,0],[0,0,3],[2,0,1],[3,0],[1,1,1],[1,2,0,0],[1,2],[2,0,1],[2,0,1],[2,1,0],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,1],[2,1,0,0],[2,1],[0,3,0],[3,0,0,0],[1,2,0],[3,0,0,0,0],[3,0,0],[3,0,0],[2,0,1],[1,1,1],[2,0,1],[0,3,0],[3,0],[3,0],[1,2],[1,2],[3,0],[0,3,0],[3,0],[2,1] +01071ba010_960521.tif,[3,0],[3,0],[1,0,2,0,0,0,0],[1,2],[0,3],[0,3],[3,0,0],[1,1,1],[2,0,1],[0,2,1],[0,3,0],[3,0,0],[0,0,3],[3,0],[2,0,1],[3,0,0,0],[2,1],[3,0,0],[0,0,3],[3,0,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[1,2,0,0],[1,2],[0,3,0],[3,0,0,0],[2,1,0],[2,0,1,0,0],[1,1,1],[1,0,2],[0,2,1],[1,2,0],[2,1,0],[0,3,0],[0,3],[3,0],[1,2],[3,0],[3,0],[0,3,0],[3,0],[2,1] +01072ba010_960521.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[0,2],[0,3],[0,3],[3,0,0],[2,1,0],[1,1,1],[1,2,0],[0,3,0],[3,0,0],[0,2,1],[2,1],[2,1,0],[2,0,0,1],[1,2],[2,0,1],[3,0,0],[3,0,0],[3,0],[0,3],[3,0],[0,3,0],[3,0,0,0],[3,0],[3,0],[1,2,0,0],[0,3],[0,3,0],[3,0,0,0],[2,1,0],[3,0,0,0,0],[2,0,1],[3,0,0],[2,1,0],[0,1,2],[2,1,0],[1,2,0],[1,2],[2,1],[0,3],[3,0],[3,0],[1,1,1],[3,0],[3,0] +01073ba010_960521.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[2,1],[1,2],[1,2],[1,0,2],[1,2,0],[3,0,0],[2,1,0],[1,2,0],[0,3,0],[3,0,0],[1,2],[0,3,0],[1,1,1,0],[1,2],[2,0,1],[1,0,2],[1,0,2],[3,0],[3,0],[3,0],[3,0,0],[2,0,1,0],[3,0],[1,2],[0,2,0,1],[0,3],[0,3,0],[3,0,0,0],[2,1,0],[3,0,0,0,0],[3,0,0],[2,1,0],[1,2,0],[1,2,0],[2,1,0],[0,3,0],[3,0],[0,3],[3,0],[1,2],[3,0],[3,0,0],[1,2],[1,2] +01074ba010_960521.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[2,0,1],[2,1,0],[2,0,1],[0,1,2],[1,2,0],[3,0,0],[2,0,1],[1,2],[1,0,2],[1,1,1,0],[0,3],[1,1,1],[0,0,3],[3,0,0],[2,1],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[3,0],[0,3,0,0],[0,3],[0,3,0],[3,0,0,0],[3,0,0],[3,0,0,0,0],[3,0,0],[0,0,3],[0,2,1],[1,2,0],[3,0,0],[0,3,0],[3,0],[1,2],[0,3],[1,2],[3,0],[1,2,0],[3,0],[2,1] +01075ba010_960521.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[3,0],[1,2],[2,1],[0,2,1],[2,1,0],[1,2,0],[3,0,0],[0,2,1],[0,0,3],[3,0,0],[2,1],[1,0,2],[1,0,2,0],[2,1],[0,0,3],[1,0,2],[2,1,0],[3,0],[0,3],[3,0],[0,3,0],[3,0,0,0],[0,3],[0,3],[1,2,0,0],[1,2],[0,3,0],[3,0,0,0],[1,2,0],[3,0,0,0,0],[3,0,0],[2,1,0],[0,0,3],[3,0,0],[2,1,0],[0,0,3],[3,0],[0,3],[3,0],[1,2],[3,0],[0,2,1],[2,1],[2,1] +01076ba010_960521.tif,[2,1],[2,1],[0,0,3,0,0,0,0],[0,3],[0,3],[0,3],[2,0,1],[2,1,0],[2,0,1],[0,1,2],[2,1,0],[0,1,2],[3,0,0],[1,2],[1,1,1],[3,0,0,0],[1,2],[3,0,0],[1,2,0],[2,1,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[3,0],[2,0,0,1],[0,3],[0,3,0],[3,0,0,0],[2,1,0],[0,0,1,1,1],[3,0,0],[3,0,0],[0,3,0],[0,2,1],[2,1,0],[1,2,0],[1,2],[3,0],[0,3],[3,0],[3,0],[3,0,0],[2,1],[2,1] +01077ba010_960521.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[2,1],[0,3],[2,1],[2,1,0],[3,0,0],[1,0,2],[0,0,3],[1,1,1],[2,1,0],[1,2,0],[2,1],[3,0,0],[3,0,0,0],[2,1],[3,0,0],[1,0,2],[0,3,0],[3,0],[3,0],[3,0],[2,1,0],[3,0,0,0],[3,0],[3,0],[1,2,0,0],[0,3],[0,3,0],[3,0,0,0],[2,0,1],[2,0,1,0,0],[3,0,0],[2,0,1],[1,2,0],[1,2,0],[3,0,0],[1,2,0],[3,0],[0,3],[1,2],[3,0],[3,0],[2,1,0],[2,1],[3,0] +01078ba010_960521.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[0,3],[2,1],[0,3],[1,0,2],[1,1,1],[2,1,0],[1,1,1],[1,1,1],[2,0,1],[3,0,0],[2,1],[0,2,1],[1,1,0,0],[0,3],[2,0,1],[1,1,1],[2,1,0],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[2,1],[1,2,0,0],[0,3],[0,3,0],[3,0,0,0],[2,1,0],[3,0,0,0,0],[2,0,1],[1,0,2],[3,0,0],[1,1,1],[2,1,0],[3,0,0],[1,2],[2,1],[0,3],[3,0],[3,0],[0,2,1],[3,0],[2,1] +01079ba010_960521.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[2,1],[0,3],[0,3],[1,0,2],[1,1,1],[3,0,0],[2,1,0],[0,1,2],[2,0,1],[0,1,2],[1,2],[2,0,1],[2,1,0,0],[2,1],[0,1,2],[2,1,0],[2,1,0],[3,0],[0,3],[3,0],[1,1,1],[3,0,0,0],[0,3],[3,0],[0,2,1,0],[0,3],[0,3,0],[3,0,0,0],[1,2,0],[3,0,0,0,0],[1,0,2],[2,0,1],[2,0,1],[1,2,0],[1,2,0],[1,2,0],[2,1],[2,1],[0,3],[3,0],[3,0],[0,0,3],[3,0],[2,1] +01080ba010_960521.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[0,3,0],[1,1,1],[1,2,0],[1,2,0],[0,1,2],[1,1,1],[1,1,1],[3,0],[1,1,1],[1,2,0,0],[3,0],[2,0,1],[2,0,0],[1,2,0],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[3,0],[1,0,2,0],[2,1],[2,0,1],[3,0,0,0],[1,2,0],[3,0,0,0,0],[1,1,1],[1,2,0],[1,1,1],[1,1,1],[2,0,1],[0,2,1],[2,1],[1,2],[1,2],[3,0],[0,3],[0,1,2],[3,0],[3,0] +01081ba010_960521.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[1,2],[1,2],[0,3],[1,0,2],[0,2,1],[0,0,3],[0,1,2],[0,2,1],[1,1,1],[2,0,1],[1,0],[0,0,3],[1,0,0,2],[0,3],[2,1,0],[2,1,0],[1,0,2],[3,0],[3,0],[3,0],[2,0,1],[2,1,0,0],[3,0],[3,0],[3,0,0,0],[1,2],[1,2,0],[2,0,0,1],[0,0,3],[2,0,1,0,0],[3,0,0],[0,1,2],[0,0,3],[1,2,0],[1,1,1],[0,0,3],[3,0],[2,1],[0,3],[3,0],[1,2],[0,2,1],[3,0],[3,0] +01082ba010_960521.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[3,0,0],[2,1,0],[1,0,2],[1,2,0],[1,2,0],[2,1,0],[2,0,1],[2,1],[0,1,2],[2,0,1,0],[2,1],[2,1,0],[2,0,1],[2,0,1],[3,0],[3,0],[3,0],[2,0,1],[3,0,0,0],[0,3],[2,1],[0,0,3,0],[1,2],[1,1,1],[2,1,0,0],[0,3,0],[2,1,0,0,0],[1,0,2],[2,0,1],[0,0,3],[1,2,0],[2,1,0],[0,0,3],[3,0],[1,2],[2,1],[2,1],[3,0],[0,2,1],[2,1],[1,2] +01083ba010_960521.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[0,3],[0,3],[1,2],[0,3,0],[0,2,1],[0,3,0],[1,0,2],[0,0,3],[1,1,1],[3,0,0],[3,0],[1,1,1],[0,1,0,2],[3,0],[3,0,0],[3,0,0],[2,1,0],[0,3],[0,3],[3,0],[0,2,1],[3,0,0,0],[3,0],[1,1],[0,2,1,0],[0,3],[0,3,0],[3,0,0,0],[1,0,2],[3,0,0,0,0],[1,1,1],[3,0,0],[2,1,0],[1,2,0],[2,1,0],[1,2,0],[3,0],[1,2],[0,3],[3,0],[3,0],[2,1,0],[3,0],[3,0] +01084ba010_960521.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[0,3],[0,3],[1,2],[2,0,1],[1,2,0],[3,0,0],[1,2,0],[0,3,0],[1,1,1],[1,0,2],[2,1],[3,0,0],[0,1,0,2],[3,0],[1,0,2],[0,0,3],[3,0,0],[3,0],[0,3],[3,0],[0,3,0],[3,0,0,0],[3,0],[2,1],[2,1,0,0],[2,1],[0,3,0],[2,1,0,0],[1,2,0],[3,0,0,0,0],[2,0,1],[2,0,1],[1,2,0],[1,2,0],[2,1,0],[0,3,0],[2,1],[1,2],[0,3],[1,2],[3,0],[0,3,0],[3,0],[3,0] +01085ba010_960521.tif,[3,0],[2,1],[2,0,1,0,0,0,0],[0,3],[0,3],[0,3],[3,0,0],[2,0,1],[2,1,0],[1,2,0],[2,1,0],[1,2,0],[1,0,2],[2,1],[1,2,0],[2,1,0,0],[0,3],[3,0,0],[0,1,2],[2,0,1],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[0,2,0,1],[2,1],[0,3,0],[2,1,0,0],[2,1,0],[1,0,2,0,0],[2,0,1],[1,0,2],[3,0,0],[1,0,2],[3,0,0],[0,3,0],[1,2],[2,1],[0,3],[3,0],[3,0],[1,2,0],[1,2],[2,1] +01086ba010_960521.tif,[1,2],[2,1],[0,0,2,1,0,0,0],[2,1],[0,3],[1,2],[3,0,0],[2,0,1],[2,1,0],[2,0,1],[1,2,0],[3,0,0],[1,0,2],[3,0],[1,0,2],[2,0,1,0],[0,3],[1,2,0],[1,0,2],[1,0,2],[3,0],[3,0],[3,0],[0,2,1],[3,0,0,0],[2,1],[1,2],[0,2,0,1],[0,3],[3,0,0],[3,0,0,0],[2,1,0],[0,2,1,0,0],[2,0,1],[1,1,1],[1,2,0],[1,1,1],[1,1,1],[2,1,0],[3,0],[0,3],[2,1],[0,3],[3,0],[1,2,0],[3,0],[2,1] +01087ba010_960521.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[0,3],[1,2],[0,3],[1,0,2],[0,0,3],[0,0,3],[1,1,1],[0,0,3],[2,0,1],[1,0,2],[2,1],[0,1,2],[3,0,0,0],[0,3],[3,0,0],[0,3,0],[1,2,0],[2,1],[3,0],[3,0],[2,1,0],[3,0,0,0],[2,1],[3,0],[1,2,0,0],[1,2],[2,0,1],[0,3,0,0],[0,3,0],[2,0,1,0,0],[1,1,1],[0,0,3],[2,1,0],[2,1,0],[0,3,0],[3,0,0],[0,3],[2,1],[0,3],[2,1],[0,3],[0,2,1],[3,0],[3,0] +01088ba010_960521.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[3,0],[2,0,1],[1,1,1],[0,0,3],[0,2,1],[2,1,0],[0,3,0],[0,2,1],[1,2],[2,1,0],[0,1,2,0],[0,3],[2,0,1],[0,3,0],[3,0,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[1,2],[1,2,0,0],[2,1],[0,3,0],[3,0,0,0],[2,0,1],[3,0,0,0,0],[2,0,1],[3,0,0],[0,3,0],[1,2,0],[1,1,1],[2,1,0],[3,0],[0,3],[2,1],[0,3],[2,1],[1,0,2],[3,0],[2,1] +01089ba010_960521.tif,[0,3],[3,0],[3,0,0,0,0,0,0],[1,2],[0,3],[2,1],[2,0,1],[2,0,1],[3,0,0],[3,0,0],[0,2,1],[1,0,2],[0,3,0],[2,1],[0,1,2],[2,1,0,0],[0,3],[1,0,2],[2,1,0],[2,0,1],[3,0],[0,3],[3,0],[0,3,0],[3,0,0,0],[3,0],[3,0],[2,1,0,0],[0,3],[0,3,0],[3,0,0,0],[0,3,0],[3,0,0,0,0],[3,0,0],[2,0,1],[2,1,0],[2,1,0],[2,1,0],[3,0,0],[3,0],[2,1],[0,3],[0,3],[3,0],[0,2,1],[3,0],[3,0] +01090ba010_960521.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[1,1,1],[0,2,1],[1,0,2],[1,2,0],[0,3,0],[3,0,0],[0,3,0],[0,3],[0,1,2],[2,0,0,1],[0,3],[0,0,3],[2,1,0],[2,0,1],[3,0],[0,3],[3,0],[0,2,1],[2,0,1,0],[3,0],[2,1],[3,0,0,0],[1,2],[1,1,1],[0,2,1,0],[0,2,0],[3,0,0,0,0],[3,0,0],[3,0,0],[2,1,0],[2,1,0],[2,1,0],[0,3,0],[1,2],[0,3],[0,3],[3,0],[1,2],[1,2,0],[3,0],[3,0] +01091ba010_960521.tif,[3,0],[3,0],[0,0,1,1,1,0,0],[1,2],[1,2],[0,3],[2,0,1],[2,1,0],[3,0,0],[0,1,2],[1,1,1],[2,1,0],[3,0,0],[3,0],[3,0,0],[1,1,0,1],[3,0],[3,0,0],[3,0,0],[0,0,3],[3,0],[3,0],[3,0],[3,0,0],[0,0,3,0],[1,2],[3,0],[0,0,3,0],[1,2],[0,3,0],[3,0,0,0],[2,1,0],[1,1,0,1,0],[2,0,1],[2,0,1],[0,1,2],[1,1,1],[1,2,0],[0,1,2],[1,2],[3,0],[0,3],[3,0],[3,0],[0,1,2],[3,0],[1,2] +01092ba010_960521.tif,[1,2],[0,3],[3,0,0,0,0,0,0],[2,1],[0,3],[1,2],[2,1,0],[2,1,0],[2,1,0],[0,2,1],[0,1,2],[1,0,2],[3,0,0],[2,1],[0,1,2],[0,1,2,0],[2,1],[0,0,3],[0,0,3],[2,0,1],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,1],[1,2,0,0],[1,2],[0,3,0],[2,1,0,0],[1,2,0],[3,0,0,0,0],[2,1,0],[1,1,1],[1,0,2],[0,1,2],[1,0,2],[0,2,1],[3,0],[1,2],[0,3],[0,3],[1,2],[1,2,0],[3,0],[2,1] +01093ba010_960521.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[3,0],[1,2],[1,2],[0,0,3],[0,2,1],[1,0,2],[0,2,1],[2,1,0],[2,1,0],[2,0,1],[1,2],[2,1,0],[3,0,0,0],[0,3],[0,2,1],[0,2,1],[2,0,1],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,1],[1,2,0,0],[1,2],[0,2,1],[3,0,0,0],[1,2,0],[2,0,1,0,0],[3,0,0],[2,0,1],[1,2,0],[1,2,0],[0,3,0],[0,2,1],[3,0],[1,2],[1,2],[0,3],[3,0],[3,0,0],[3,0],[2,1] +01094ba010_960521.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[2,1,0],[1,1,1],[3,0,0],[1,2,0],[0,3,0],[3,0,0],[1,1,1],[0,3],[1,1,1],[3,0,0,0],[1,2],[3,0,0],[1,0,2],[2,0,1],[3,0],[0,3],[3,0],[2,0,1],[3,0,0,0],[1,2],[3,0],[1,2,0,0],[0,3],[0,3,0],[3,0,0,0],[0,3,0],[3,0,0,0,0],[1,0,2],[0,0,3],[3,0,0],[0,2,1],[1,2,0],[3,0,0],[0,3],[2,1],[0,3],[3,0],[3,0],[0,3,0],[3,0],[3,0] +01095ba010_960521.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[2,1,0],[1,2,0],[1,1,1],[1,2,0],[1,1,1],[3,0,0],[3,0,0],[2,1],[0,0,3],[3,0,0,0],[1,2],[0,0,3],[1,0,2],[2,1,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[2,1],[0,0,0,3],[0,3],[2,1,0],[3,0,0,0],[1,2,0],[3,0,0,0,0],[2,0,1],[2,0,1],[1,2,0],[0,1,2],[1,2,0],[0,3,0],[2,1],[2,1],[0,3],[3,0],[3,0],[3,0,0],[1,2],[3,0] +01096ba010_960521.tif,[2,1],[3,0],[1,0,2,0,0,0,0],[1,2],[1,2],[3,0],[3,0,0],[2,0,1],[1,0,2],[0,3,0],[0,3,0],[3,0,0],[2,0,1],[3,0],[1,1,1],[3,0,0,0],[2,1],[3,0,0],[0,0,3],[0,0,3],[3,0],[3,0],[3,0],[2,0,0],[3,0,0,0],[3,0],[3,0],[0,1,1,1],[0,3],[1,1,0],[3,0,0,0],[2,1,0],[0,0,3,0,0],[1,0,2],[2,0,1],[2,1,0],[1,0,2],[2,0,1],[1,2,0],[2,1],[1,2],[1,2],[2,1],[2,1],[0,3,0],[3,0],[2,1] +01097ba010_960521.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[3,0,0],[1,2,0],[0,0,3],[2,0,1],[0,3,0],[1,2,0],[3,0,0],[1,2],[2,1,0],[0,1,1,1],[3,0],[3,0,0],[0,0,3],[2,1,0],[1,2],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[2,1],[1,2,0,0],[0,3],[0,2,1],[3,0,0,0],[1,2,0],[2,0,1,0,0],[1,1,1],[2,1,0],[0,1,2],[2,1,0],[1,1,1],[0,2,1],[2,1],[0,3],[0,3],[3,0],[3,0],[3,0,0],[1,2],[1,2] +01098ba010_960521.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[3,0,0],[1,1,1],[1,2,0],[0,1,2],[0,3,0],[2,1,0],[3,0,0],[2,1],[0,1,2],[3,0,0,0],[2,1],[0,1,2],[2,0,1],[1,2,0],[3,0],[2,1],[2,1],[3,0,0],[3,0,0,0],[2,1],[3,0],[0,0,2,1],[0,3],[0,2,1],[3,0,0,0],[1,2,0],[3,0,0,0,0],[3,0,0],[1,0,2],[0,1,2],[1,2,0],[0,1,2],[2,1,0],[1,2],[3,0],[0,3],[2,1],[3,0],[3,0,0],[3,0],[2,1] +01099ba010_960521.tif,[1,2],[3,0],[1,0,1,0,1,0,0],[1,2],[2,1],[1,2],[2,0,1],[0,1,2],[2,0,1],[0,2,1],[1,2,0],[2,1,0],[0,2,1],[1,2],[2,0,1],[2,0,1,0],[0,3],[3,0,0],[0,2,1],[3,0,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,1],[1,1,1,0],[1,2],[0,3,0],[3,0,0,0],[2,1,0],[1,0,2,0,0],[1,0,2],[2,1,0],[0,2,1],[1,2,0],[3,0,0],[0,3,0],[2,1],[2,1],[0,3],[1,2],[2,1],[1,1,1],[3,0],[3,0] +01100ba010_960521.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[1,2],[0,3],[2,1],[2,0,1],[1,0,2],[0,0,3],[0,2,1],[3,0,0],[2,1,0],[1,0,2],[2,1],[0,2,1],[3,0,0,0],[0,3],[3,0,0],[0,1,2],[1,0,2],[0,3],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[0,1,0,2],[0,3],[0,0,3],[0,3,0,0],[0,3,0],[0,1,2,0,0],[3,0,0],[2,0,1],[0,3,0],[1,2,0],[0,3,0],[2,1,0],[3,0],[1,2],[1,2],[2,1],[3,0],[2,1,0],[3,0],[2,1] +01101ba010_960521.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[0,3],[1,2],[1,2],[2,1,0],[1,1,1],[3,0,0],[1,1,1],[0,2,1],[3,0,0],[3,0,0],[0,3],[1,1,1],[3,0,0,0],[0,3],[1,0,2],[3,0,0],[1,2,0],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[2,1],[3,0],[1,1,1,0],[2,1],[0,2,1],[3,0,0,0],[2,1,0],[3,0,0,0,0],[3,0,0],[3,0,0],[1,2,0],[1,1,1],[2,1,0],[0,1,2],[2,1],[2,1],[0,3],[2,1],[0,3],[1,1,1],[3,0],[2,1] +01102ba010_960521.tif,[0,3],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[3,0,0],[3,0,0],[3,0,0],[1,1,0],[0,1,2],[1,0,2],[2,1,0],[2,1],[1,1,1],[0,2,0,1],[3,0],[2,0,1],[3,0,0],[3,0,0],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,1],[3,0,0,0],[1,2],[0,1,2],[3,0,0,0],[2,1,0],[3,0,0,0,0],[2,0,1],[1,1,1],[0,0,3],[0,1,2],[2,1,0],[0,1,2],[3,0],[1,2],[0,3],[0,3],[3,0],[0,1,2],[3,0],[3,0] +01103ba010_960521.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[0,3],[1,2],[0,3],[3,0,0],[3,0,0],[3,0,0],[1,2,0],[0,1,2],[3,0,0],[1,0,2],[1,2],[1,2,0],[2,1,0,0],[3,0],[3,0,0],[3,0,0],[3,0,0],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[3,0],[3,0],[1,0,1,1],[0,3],[0,2,0],[3,0,0,0],[0,3,0],[3,0,0,0,0],[1,0,2],[0,0,3],[3,0,0],[2,1,0],[2,0,1],[0,3,0],[3,0],[2,1],[0,3],[3,0],[3,0],[1,2,0],[3,0],[3,0] +01104ba010_960521.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[2,1],[1,2],[1,2],[3,0,0],[2,1,0],[3,0,0],[2,1,0],[1,2,0],[2,1,0],[1,1,1],[3,0],[3,0,0],[1,1,0,1],[3,0],[0,0,3],[1,0,2],[0,1,2],[3,0],[3,0],[3,0],[3,0,0],[2,0,1,0],[2,1],[3,0],[1,1,0,1],[0,3],[0,3,0],[3,0,0,0],[0,3,0],[1,1,1,0,0],[1,0,2],[2,1,0],[0,1,2],[0,3,0],[2,0,1],[0,3,0],[2,1],[1,2],[0,3],[2,1],[3,0],[1,2,0],[2,1],[1,1] +01105ba010_960521.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[2,1],[1,0,2],[1,0,2],[3,0,0],[2,1,0],[0,3,0],[1,2,0],[2,0,1],[1,2],[0,3,0],[3,0,0,0],[0,3],[1,1,1],[0,3,0],[1,1,1],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[1,2],[2,1],[0,3,0,0],[0,3],[0,3,0],[3,0,0,0],[1,2,0],[3,0,0,0,0],[2,0,1],[2,0,1],[1,0,1],[2,1,0],[3,0,0],[0,3,0],[2,1],[0,3],[2,1],[1,2],[3,0],[1,2,0],[2,1],[3,0] +01106ba010_960521.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[1,2],[2,1],[0,3],[2,1,0],[0,3,0],[0,3,0],[0,3,0],[1,0,2],[0,1,2],[3,0,0],[3,0],[1,0,2],[2,1,0,0],[2,1],[1,0,2],[0,3,0],[1,1,1],[3,0],[1,2],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[1,0,2,0],[1,2],[3,0,0],[0,0,3,0],[1,2,0],[3,0,0,0,0],[3,0,0],[3,0,0],[0,1,2],[0,2,1],[2,1,0],[0,1,2],[2,1],[1,2],[0,3],[2,1],[0,3],[0,1,2],[3,0],[1,2] +01107ba010_960521.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[3,0,0],[2,1,0],[3,0,0],[0,3,0],[0,1,2],[0,3,0],[2,0,1],[3,0],[1,1,1],[1,1,0,1],[2,1],[3,0,0],[0,0,3],[0,0,3],[3,0],[3,0],[3,0],[2,1,0],[3,0,0,0],[2,1],[1,2],[0,2,0,1],[1,2],[0,3,0],[3,0,0,0],[1,2,0],[3,0,0,0,0],[3,0,0],[2,0,1],[3,0,0],[1,2,0],[1,2,0],[1,2,0],[3,0],[0,3],[2,1],[2,1],[3,0],[0,3,0],[1,2],[2,1] +01108ba010_960521.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[0,3],[1,2],[0,3],[0,3,0],[2,1,0],[1,2,0],[2,1,0],[0,3,0],[1,2,0],[3,0,0],[0,2],[0,0,3],[1,2,0,0],[2,1],[3,0,0],[2,0,1],[1,0,1],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[3,0],[2,1],[1,1,0,1],[0,3],[0,1,2],[0,3,0,0],[1,2,0],[3,0,0,0,0],[3,0,0],[1,0,2],[2,1,0],[1,1,1],[0,3,0],[0,3,0],[1,2],[2,1],[0,3],[2,1],[2,1],[0,1,1],[2,1],[3,0] +01109ba010_960521.tif,[1,2],[1,2],[3,0,0,0,0,0,0],[3,0],[1,2],[2,1],[2,0,1],[2,1,0],[3,0,0],[1,1,1],[2,1,0],[0,3,0],[1,2,0],[3,0],[1,2,0],[0,1,2,0],[2,1],[0,1,2],[2,0,1],[1,2,0],[3,0],[3,0],[3,0],[2,1,0],[3,0,0,0],[3,0],[2,1],[1,1,1,0],[0,3],[0,3,0],[3,0,0,0],[2,1,0],[3,0,0,0,0],[2,0,1],[1,0,1],[0,1,2],[1,1,1],[1,1,1],[0,1,2],[3,0],[2,1],[0,3],[2,1],[3,0],[0,1,2],[2,1],[3,0] +01110ba010_960521.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[0,3],[1,2],[1,2],[1,0,2],[2,1,0],[0,0,3],[0,2,1],[0,3,0],[0,3,0],[0,0,3],[2,1],[2,0,1],[2,0,0,1],[2,1],[0,0,3],[1,0,2],[2,1,0],[3,0],[3,0],[3,0],[1,2,0],[3,0,0,0],[2,1],[3,0],[2,1,0,0],[0,3],[2,0,0],[0,3,0,0],[1,2,0],[3,0,0,0,0],[0,0,3],[1,0,2],[0,3,0],[1,2,0],[1,0,2],[1,0,2],[0,3],[2,1],[0,3],[2,1],[3,0],[0,1,2],[3,0],[2,1] +01111bj010_960521.tif,[1,2],[1,2],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[2,1,0],[2,1,0],[2,0,1],[1,1,1],[0,2,1],[2,0,1],[0,2,1],[2,1],[1,1,1],[2,0,0,1],[3,0],[2,0,1],[2,1,0],[2,0,1],[3,0],[0,3],[3,0],[0,3,0],[3,0,0,0],[3,0],[3,0],[3,0,0,0],[1,2],[1,1,1],[0,0,3,0],[0,1,2],[3,0,0,0,0],[2,1,0],[2,0,1],[0,2,1],[1,1,1],[1,1,1],[0,3,0],[2,1],[2,1],[1,2],[0,3],[0,3],[1,2,0],[3,0],[2,1] +01112ba010_960521.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[0,3],[0,3],[2,1],[0,0,3],[2,1,0],[0,0,3],[1,0,2],[0,2,1],[3,0,0],[0,0,3],[2,1],[1,1,1],[2,1,0,0],[1,2],[0,0,3],[0,1,2],[1,0,2],[2,1],[0,3],[3,0],[0,3,0],[3,0,0,0],[2,1],[3,0],[0,0,0,3],[0,3],[0,3,0],[3,0,0,0],[3,0,0],[3,0,0,0,0],[2,0,1],[1,0,2],[2,1,0],[1,1,1],[0,3,0],[3,0,0],[1,2],[2,1],[1,2],[2,1],[3,0],[0,3,0],[3,0],[1,2] +01113ba010_960521.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[2,0,1],[0,0,3],[2,1,0],[2,1,0],[0,3,0],[3,0,0],[0,3,0],[3,0],[1,1,1],[3,0,0,0],[0,3],[0,0,3],[0,0,3],[2,0,1],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[0,0,1,2],[0,3],[0,2,1],[3,0,0,0],[1,2,0],[3,0,0,0,0],[2,1,0],[0,0,3],[2,0,1],[3,0,0],[3,0,0],[0,2,1],[2,1],[0,3],[0,3],[1,2],[3,0],[0,1,2],[0,3],[3,0] +01114ba010_960521.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[2,1],[0,3],[2,1],[0,0,3],[1,2,0],[0,0,3],[1,1,1],[0,2,1],[2,0,1],[3,0,0],[3,0],[1,2,0],[1,1,1,0],[2,1],[0,0,3],[1,2,0],[2,1,0],[3,0],[2,1],[3,0],[3,0,0],[3,0,0,0],[2,1],[1,2],[2,1,0,0],[1,2],[0,3,0],[3,0,0,0],[2,1,0],[3,0,0,0,0],[3,0,0],[0,1,2],[3,0,0],[0,1,2],[1,0,2],[2,1,0],[3,0],[1,2],[1,2],[0,3],[3,0],[1,2,0],[3,0],[2,1] +01115ba010_960521.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[2,1],[0,3],[1,2],[2,1,0],[1,1,1],[1,0,2],[1,2,0],[0,3,0],[2,1,0],[0,3,0],[2,1],[2,0,1],[1,2,0,0],[2,1],[3,0,0],[2,0,1],[2,1,0],[3,0],[3,0],[3,0],[1,1,1],[3,0,0,0],[3,0],[1,2],[1,1,0,1],[0,3],[0,3,0],[3,0,0,0],[3,0,0],[3,0,0,0,0],[2,1,0],[0,0,3],[2,1,0],[2,1,0],[0,3,0],[0,3,0],[3,0],[0,3],[0,3],[1,2],[3,0],[1,1,1],[3,0],[3,0] +01116ba010_960521.tif,[1,2],[1,2],[3,0,0,0,0,0,0],[1,2],[2,1],[1,2],[2,0,1],[2,0,1],[0,3,0],[2,1,0],[2,1,0],[1,1,1],[0,0,3],[2,1],[2,1,0],[2,0,1,0],[0,2],[2,0,1],[2,0,1],[1,0,2],[3,0],[0,3],[3,0],[0,3,0],[3,0,0,0],[3,0],[3,0],[1,1,1,0],[0,3],[0,3,0],[3,0,0,0],[3,0,0],[3,0,0,0,0],[3,0,0],[1,0,2],[1,2,0],[0,1,2],[0,2,1],[1,2,0],[3,0],[1,2],[0,2],[0,3],[3,0],[1,0,2],[3,0],[3,0] +01117ba010_960521.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[1,0,2],[1,2,0],[3,0,0],[2,1,0],[1,1,1],[0,0,3],[1,1,1],[2,1],[1,1,1],[2,0,0,1],[1,2],[0,1,2],[0,1,2],[2,0,1],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[1,2],[3,0],[2,0,1,0],[0,3],[0,3,0],[3,0,0,0],[2,1,0],[3,0,0,0,0],[3,0,0],[1,0,2],[1,0,2],[1,2,0],[2,1,0],[0,1,2],[0,3],[3,0],[1,2],[3,0],[2,1],[1,2,0],[3,0],[2,1] +01118ba010_960521.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[1,2],[2,1],[0,3],[2,1,0],[2,1,0],[2,1,0],[2,1,0],[0,3,0],[2,1,0],[0,0,3],[2,1],[3,0,0],[3,0,0,0],[1,2],[0,1,2],[0,1,2],[0,3,0],[3,0],[0,2],[3,0],[1,2,0],[3,0,0,0],[2,1],[3,0],[0,2,0,1],[3,0],[1,0,2],[3,0,0,0],[0,3,0],[3,0,0,0,0],[0,3,0],[1,1,1],[2,1,0],[2,0,1],[0,2,1],[0,3,0],[0,3],[2,1],[1,2],[3,0],[3,0],[1,2,0],[3,0],[2,1] +01119ba010_960521.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[2,1],[1,2,0],[1,1,1],[2,1,0],[1,2,0],[0,2,1],[2,0,1],[3,0,0],[3,0],[1,1,1],[1,1,1,0],[3,0],[3,0,0],[2,0,1],[3,0,0],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[0,3],[1,2],[1,2,0,0],[0,3],[0,2,1],[3,0,0,0],[0,2,1],[3,0,0,0,0],[0,1,2],[3,0,0],[0,1,2],[0,3,0],[1,2,0],[0,1,2],[3,0],[2,1],[3,0],[0,3],[0,3],[0,2,1],[3,0],[0,3] +01120ba010_960521.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[0,3],[1,2],[3,0],[1,1,1],[0,1,2],[2,1,0],[1,2,0],[1,0,2],[1,0,2],[2,0,1],[3,0],[1,1,1],[2,0,1,0],[0,3],[2,1,0],[0,1,2],[2,1,0],[0,3],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[0,3,0,0],[2,1],[0,2,1],[3,0,0,0],[3,0,0],[1,0,2,0,0],[2,0,1],[1,0,2],[0,1,2],[2,1,0],[1,2,0],[0,2,1],[3,0],[1,2],[1,2],[1,2],[3,0],[2,1,0],[2,1],[2,1] +01121ba010_960521.tif,[1,2],[3,0],[2,0,0,0,0,0,1],[0,3],[1,2],[0,3],[2,0,1],[0,1,2],[1,0,2],[0,2,1],[1,1,1],[3,0,0],[3,0,0],[2,1],[1,1,1],[2,1,0,0],[0,3],[3,0,0],[0,3,0],[2,0,1],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,0],[3,0],[3,0,0,0],[0,3],[0,3,0],[3,0,0,0],[0,3,0],[3,0,0,0,0],[3,0,0],[1,0,2],[0,1,2],[1,1,1],[2,0,1],[0,1,2],[0,3],[2,1],[0,3],[3,0],[1,2],[3,0,0],[3,0],[3,0] +01122ba010_960521.tif,[2,1],[3,0],[2,0,1,0,0,0,0],[0,3],[0,3],[1,2],[3,0,0],[2,1,0],[3,0,0],[1,1,1],[1,2,0],[3,0,0],[2,0,1],[2,1],[2,0,1],[1,1,0,1],[0,3],[2,0,1],[1,0,2],[3,0,0],[3,0],[3,0],[3,0],[2,1,0],[3,0,0,0],[3,0],[2,1],[1,1,0,1],[0,3],[0,1,2],[3,0,0,0],[1,2,0],[2,0,1,0,0],[1,0,2],[0,0,3],[1,2,0],[1,0,2],[0,3,0],[0,3,0],[3,0],[0,3],[0,3],[0,3],[2,1],[3,0,0],[2,1],[3,0] +01123ba010_960521.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[2,1],[2,1],[1,2],[3,0,0],[3,0,0],[0,0,3],[0,1,2],[1,1,1],[3,0,0],[3,0,0],[3,0],[0,2,1],[1,2,0,0],[0,3],[0,2,1],[0,3,0],[1,0,2],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,1],[1,2,0,0],[1,2],[3,0,0],[3,0,0,0],[1,2,0],[1,0,2,0,0],[2,0,1],[3,0,0],[1,2,0],[0,2,1],[2,1,0],[1,2,0],[3,0],[0,3],[0,3],[3,0],[3,0],[0,3,0],[3,0],[2,1] +01124ba010_960521.tif,[3,0],[2,1],[1,0,0,1,1,0,0],[0,3],[1,2],[0,3],[3,0,0],[2,1,0],[3,0,0],[2,1,0],[2,1,0],[2,0,1],[2,1,0],[3,0],[0,1,2],[2,0,0,1],[3,0],[3,0,0],[1,2,0],[2,1,0],[3,0],[3,0],[3,0],[2,1,0],[1,0,2,0],[2,1],[3,0],[0,1,2,0],[0,3],[1,1,1],[3,0,0,0],[3,0,0],[0,2,0,0,1],[2,0,1],[2,1,0],[0,0,3],[1,0,2],[1,2,0],[0,0,3],[3,0],[2,1],[0,3],[3,0],[3,0],[2,1,0],[3,0],[3,0] +01125ba010_960521.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[1,2],[1,2],[0,3],[1,0,2],[2,0,1],[1,0,2],[0,3,0],[0,3,0],[0,3,0],[3,0,0],[2,1],[2,1,0],[2,1,0,0],[1,2],[2,1,0],[0,0,3],[3,0,0],[3,0],[3,0],[3,0],[2,1,0],[3,0,0,0],[3,0],[1,2],[0,2,0,1],[0,3],[0,1,2],[3,0,0,0],[1,2,0],[2,0,1,0,0],[0,0,3],[2,1,0],[2,0,1],[0,0,3],[3,0,0],[2,1,0],[3,0],[0,3],[1,2],[3,0],[3,0],[3,0,0],[3,0],[0,3] +01126ba010_960521.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[3,0,0],[2,1,0],[2,1,0],[2,1,0],[0,0,3],[1,0,2],[3,0,0],[3,0],[1,2,0],[3,0,0,0],[1,2],[1,0,2],[3,0,0],[1,0,2],[3,0],[0,3],[2,1],[1,2,0],[3,0,0,0],[3,0],[2,1],[0,1,2,0],[0,3],[0,3,0],[3,0,0,0],[0,3,0],[3,0,0,0,0],[3,0,0],[2,0,1],[0,1,2],[0,2,1],[0,1,2],[0,1,2],[0,3],[2,1],[1,2],[3,0],[3,0],[0,3,0],[2,1],[3,0] +01127ba010_960521.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[2,0,1],[1,2,0],[0,1,2],[0,3,0],[1,2,0],[2,1,0],[0,1,2],[0,3],[1,2,0],[2,0,1,0],[1,2],[0,0,3],[1,0,2],[2,0,1],[3,0],[0,3],[3,0],[1,1,1],[3,0,0,0],[3,0],[3,0],[0,1,0,2],[0,3],[0,3,0],[2,1,0,0],[2,1,0],[3,0,0,0,0],[2,1,0],[1,2,0],[2,1,0],[1,1,1],[1,2,0],[0,3,0],[3,0],[2,1],[0,3],[3,0],[2,1],[1,2,0],[3,0],[1,2] +01128ba010_960521.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[2,1,0],[2,1,0],[1,1,1],[2,0,1],[1,2,0],[1,0,2],[0,1,2],[0,3],[2,0,1],[3,0,0,0],[3,0],[1,0,2],[1,1,1],[3,0,0],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[2,1],[3,0],[1,1,1,0],[1,2],[0,2,1],[3,0,0,0],[1,2,0],[3,0,0,0,0],[2,0,1],[1,0,2],[0,2,1],[1,2,0],[1,2,0],[1,0,2],[1,2],[2,1],[0,3],[3,0],[3,0],[1,1,1],[3,0],[3,0] +01129ba010_960521.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[0,3],[2,0],[1,2],[1,1,1],[3,0,0],[1,0,2],[0,0,3],[1,0,2],[1,1,1],[3,0,0],[3,0],[2,0,1],[0,3,0,0],[1,2],[3,0,0],[1,1,1],[2,0,1],[2,1],[3,0],[3,0],[3,0,0],[2,0,1,0],[1,2],[3,0],[0,3,0,0],[3,0],[1,2,0],[2,1,0,0],[0,3,0],[0,0,3,0,0],[3,0,0],[3,0,0],[0,2,1],[1,2,0],[1,2,0],[1,2,0],[3,0],[0,3],[1,2],[1,1],[2,1],[0,2,1],[3,0],[0,3] +01130ba010_960521.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[2,1],[1,2],[0,3],[3,0,0],[2,1,0],[2,0,1],[1,2,0],[1,2,0],[1,2,0],[1,1,1],[2,1],[1,2,0],[2,1,0,0],[3,0],[3,0,0],[2,1,0],[1,2,0],[3,0],[3,0],[3,0],[2,1,0],[3,0,0,0],[3,0],[3,0],[0,2,0,1],[1,2],[0,2,1],[3,0,0,0],[2,1,0],[3,0,0,0,0],[1,1,1],[0,0,3],[1,2,0],[1,1,1],[1,2,0],[3,0,0],[3,0],[3,0],[0,3],[3,0],[3,0],[1,2,0],[3,0],[3,0] +01131ba010_960521.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[2,1],[0,3],[3,0],[1,2,0],[2,1,0],[1,0,2],[0,2,1],[0,3,0],[0,1,2],[3,0,0],[2,1],[1,1,1],[0,2,1,0],[3,0],[2,0,1],[2,0,1],[1,1,1],[2,1],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[0,3],[2,0,1,0],[0,3],[1,2,0],[3,0,0,0],[0,3,0],[3,0,0,0,0],[1,2,0],[2,0,1],[0,0,3],[0,3,0],[3,0,0],[0,2,1],[3,0],[1,2],[3,0],[0,3],[3,0],[0,2,1],[3,0],[1,2] +01132ba010_960521.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[1,0,2],[2,1,0],[2,0,1],[0,3,0],[1,2,0],[2,0,1],[1,1,1],[0,3],[1,2,0],[3,0,0,0],[1,2],[2,0,1],[2,0,1],[2,0,1],[2,1],[0,3],[3,0],[2,1,0],[3,0,0,0],[2,1],[3,0],[0,1,0,2],[1,2],[0,2,1],[3,0,0,0],[2,1,0],[3,0,0,0,0],[2,1,0],[3,0,0],[0,3,0],[0,1,2],[2,1,0],[1,2,0],[2,1],[0,3],[0,3],[3,0],[2,1],[0,3,0],[3,0],[3,0] +01133ba010_960521.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[2,1,0],[2,0,1],[0,3,0],[1,1,1],[1,2,0],[1,0,2],[2,0,1],[1,1],[2,1,0],[2,1,0,0],[0,3],[3,0,0],[1,2,0],[3,0,0],[2,1],[0,3],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[1,0,2,0],[0,3],[0,2,1],[3,0,0,0],[2,1,0],[3,0,0,0,0],[3,0,0],[1,1,1],[1,2,0],[0,1,2],[2,1,0],[2,1,0],[3,0],[0,3],[0,3],[2,1],[3,0],[1,1,1],[3,0],[2,1] +01134ba010_960521.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[0,3],[2,1],[1,2],[2,1,0],[0,3,0],[2,0,1],[0,1,2],[1,2,0],[1,0,2],[3,0,0],[3,0],[2,0,1],[3,0,0,0],[3,0],[2,1,0],[3,0,0],[2,0,1],[3,0],[0,3],[3,0],[2,0,1],[3,0,0,0],[2,1],[3,0],[1,0,1,1],[0,3],[2,0,0],[3,0,0,0],[1,2,0],[3,0,0,0,0],[1,0,2],[1,0,2],[0,0,3],[3,0,0],[1,2,0],[0,1,2],[0,3],[0,3],[1,2],[2,1],[3,0],[0,1,2],[3,0],[3,0] +01135ba010_960521.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[2,1,0],[2,1,0],[2,1,0],[3,0,0],[0,2,1],[2,0,1],[3,0,0],[2,1],[2,0,1],[3,0,0,0],[3,0],[0,0,3],[3,0,0],[2,0,1],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[2,1],[3,0],[2,0,1,0],[0,3],[0,2,1],[3,0,0,0],[2,1,0],[3,0,0,0,0],[1,2,0],[2,1,0],[0,1,2],[1,1,1],[0,0,3],[0,2,1],[2,1],[2,1],[0,3],[1,2],[3,0],[0,2,1],[3,0],[3,0] +01136ba010_960521.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[1,2],[1,2],[0,3],[3,0,0],[2,1,0],[2,1,0],[1,2,0],[1,2,0],[0,3,0],[1,0,2],[0,3],[1,2,0],[3,0,0,0],[3,0],[1,0,2],[1,0,2],[2,0,1],[3,0],[0,3],[3,0],[0,2,1],[3,0,0,0],[3,0],[2,1],[0,2,1,0],[0,3],[1,2,0],[3,0,0,0],[1,2,0],[3,0,0,0,0],[2,0,1],[2,1,0],[2,1,0],[1,1,1],[3,0,0],[2,1,0],[3,0],[3,0],[1,2],[3,0],[3,0],[0,1,2],[3,0],[3,0] +01137ba010_960521.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[0,3],[1,2],[0,3],[2,0,1],[1,1,1],[3,0,0],[3,0,0],[1,2,0],[3,0,0],[0,1,2],[3,0],[1,1,1],[3,0,0,0],[0,3],[3,0,0],[2,0,1],[2,0,1],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[2,1],[0,3,0,0],[0,3],[0,3,0],[3,0,0,0],[1,2,0],[3,0,0,0,0],[2,0,1],[2,1,0],[1,1,1],[0,1,2],[1,2,0],[1,1,1],[1,2],[1,2],[1,2],[3,0],[3,0],[0,3,0],[3,0],[2,1] +01138ba010_960521.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[3,0,0],[2,1,0],[1,1,0],[1,2,0],[3,0,0],[2,0,1],[2,0,1],[2,1],[2,1,0],[2,0,0,1],[0,3],[0,0,3],[1,1,1],[2,0,1],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[0,3],[1,1],[1,1,0,1],[0,3],[0,1,2],[0,3,0,0],[2,1,0],[3,0,0,0,0],[2,0,1],[1,1,1],[0,3,0],[0,2,1],[3,0,0],[2,1,0],[3,0],[1,2],[0,3],[1,2],[0,3],[1,2,0],[3,0],[3,0] +01139ba010_960521.tif,[2,1],[0,3],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[0,3,0],[3,0,0],[3,0,0],[0,2,1],[0,3,0],[1,0,2],[3,0,0],[1,1],[0,2,1],[2,1,0,0],[3,0],[0,0,3],[2,0,1],[3,0,0],[3,0],[0,3],[3,0],[1,2,0],[2,0,1,0],[0,3],[3,0],[0,1,0,2],[1,2],[0,3,0],[2,1,0,0],[2,1,0],[3,0,0,0,0],[2,0,1],[3,0,0],[0,0,3],[2,1,0],[1,2,0],[1,1,1],[2,1],[1,2],[1,2],[2,1],[1,2],[0,1,2],[3,0],[2,1] +01140ba010_960521.tif,[3,0],[2,1],[0,3,0,0,0,0,0],[1,2],[0,3],[0,3],[2,0,1],[3,0,0],[3,0,0],[2,0,1],[1,2,0],[3,0,0],[1,0,2],[1,2],[2,1,0],[2,0,1,0],[0,3],[1,1,1],[1,2,0],[2,0,1],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[3,0],[0,0,0,3],[0,3],[0,3,0],[2,0,0,0],[1,2,0],[0,0,0,0,3],[1,2,0],[3,0,0],[1,2,0],[0,0,3],[2,1,0],[2,1,0],[3,0],[1,2],[3,0],[2,1],[3,0],[0,3,0],[3,0],[3,0] +01141ba010_960521.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[2,1],[0,3],[2,1],[1,1,1],[2,0,1],[1,0,2],[2,1,0],[1,1,1],[3,0,0],[3,0,0],[3,0],[3,0,0],[0,3,0,0],[3,0],[2,0,1],[2,0,1],[3,0,0],[3,0],[3,0],[3,0],[2,0,1],[3,0,0,0],[3,0],[1,2],[2,1,0,0],[3,0],[0,3,0],[2,1,0,0],[1,2,0],[3,0,0,0,0],[2,0,1],[1,0,2],[0,0,3],[0,2,1],[1,0,2],[0,1,2],[3,0],[1,2],[1,2],[0,3],[3,0],[2,1,0],[3,0],[3,0] +01142ba010_960521.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[2,1],[0,3],[1,2],[1,2,0],[3,0,0],[1,1,1],[0,1,2],[1,0,2],[1,0,2],[3,0,0],[3,0],[1,0,2],[0,2,1,0],[3,0],[2,1,0],[3,0,0],[0,3,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[1,2],[0,0,0,3],[1,2],[1,2,0],[3,0,0,0],[3,0,0],[3,0,0,0,0],[1,1,1],[2,0,1],[0,1,2],[0,3,0],[1,0,2],[0,3,0],[3,0],[0,3],[1,2],[0,3],[2,1],[0,2,1],[2,1],[2,1] +01143ba010_960521.tif,[3,0],[1,2],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[2,1,0],[3,0,0],[2,1,0],[2,1,0],[1,2,0],[3,0,0],[3,0,0],[2,1],[0,0,3],[3,0,0,0],[3,0],[1,0,2],[2,0,1],[0,3,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[0,2,0,1],[0,3],[0,2,1],[3,0,0,0],[1,2,0],[3,0,0,0,0],[1,1,1],[3,0,0],[1,2,0],[1,1,1],[3,0,0],[0,3,0],[0,3],[3,0],[0,3],[3,0],[3,0],[0,3,0],[3,0],[2,1] +01144ba010_960521.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[2,0,1],[2,1,0],[1,0,2],[0,2,1],[1,2,0],[2,1,0],[1,0,2],[1,2],[3,0,0],[3,0,0,0],[1,2],[2,0,1],[0,2,1],[1,2,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[3,0],[0,1,0,2],[0,3],[3,0,0],[0,2,1,0],[2,1,0],[3,0,0,0,0],[1,1,1],[1,0,2],[3,0,0],[1,2,0],[0,3,0],[3,0,0],[2,1],[2,1],[0,3],[3,0],[0,3],[2,1,0],[3,0],[0,3] +01145ba010_960521.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[2,1,0],[1,0,2],[2,1,0],[3,0,0],[0,3,0],[1,0,1],[3,0,0],[2,1],[0,1,2],[3,0,0,0],[2,1],[3,0,0],[2,0,1],[3,0,0],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[3,0],[0,0,3,0],[1,2],[0,2,1],[3,0,0,0],[1,1,1],[3,0,0,0,0],[2,0,1],[2,0,1],[0,0,3],[1,1,1],[3,0,0],[0,0,3],[0,3],[1,2],[0,3],[2,1],[2,1],[0,3,0],[3,0],[3,0] +01146ba010_960521.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[2,1,0],[3,0,0],[1,0,2],[1,0,2],[0,3,0],[2,1,0],[1,0,2],[1,2],[2,0,1],[3,0,0,0],[2,1],[1,0,2],[2,0,1],[1,1,1],[3,0],[0,3],[3,0],[2,1,0],[2,0,0,1],[1,2],[3,0],[1,2,0,0],[2,1],[0,3,0],[0,0,3,0],[0,1,2],[3,0,0,0,0],[3,0,0],[3,0,0],[0,3,0],[0,2,1],[2,0,1],[0,2,1],[3,0],[1,2],[0,3],[2,1],[0,3],[0,3,0],[3,0],[2,1] +01147ba010_960521.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[2,0,1],[1,1,1],[0,0,3],[0,0,3],[0,1,2],[2,0,1],[1,0,2],[1,2],[1,0,2],[2,1,0,0],[2,1],[3,0,0],[2,0,1],[3,0,0],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[1,1,1,0],[3,0],[0,3,0],[3,0,0,0],[2,0,1],[3,0,0,0,0],[2,0,1],[1,0,2],[2,1,0],[1,0,2],[3,0,0],[0,3,0],[1,2],[3,0],[0,3],[3,0],[0,3],[1,2,0],[3,0],[2,1] +01148ba010_960521.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[3,0,0],[1,2,0],[2,1,0],[2,1,0],[0,3,0],[0,0,3],[2,1,0],[2,1],[0,1,2],[1,2,0,0],[3,0],[2,0,1],[2,1,0],[2,1,0],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[0,3],[3,0],[0,0,3,0],[1,2],[0,3,0],[3,0,0,0],[2,1,0],[3,0,0,0,0],[2,0,1],[0,0,3],[0,1,2],[0,3,0],[2,1,0],[0,2,0],[3,0],[1,2],[0,3],[3,0],[2,1],[0,3,0],[3,0],[3,0] +01149ba010_960521.tif,[2,1],[3,0],[2,0,1,0,0,0,0],[1,2],[1,2],[1,2],[2,1,0],[1,2,0],[2,1,0],[1,2,0],[1,1,1],[1,2,0],[0,2,1],[3,0],[0,2,1],[2,0,0,1],[3,0],[2,0,1],[3,0,0],[2,0,1],[3,0],[3,0],[3,0],[1,2,0],[2,0,0,1],[3,0],[3,0],[1,1,0,1],[1,2],[0,3,0],[3,0,0,0],[0,3,0],[2,0,1,0,0],[2,0,1],[3,0,0],[1,1,1],[2,0,1],[2,1,0],[3,0,0],[2,1],[1,2],[0,3],[0,3],[3,0],[1,2,0],[3,0],[2,1] +01150ba010_960521.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[1,2],[1,2],[0,3],[2,0,1],[2,1,0],[2,0,1],[1,2,0],[0,3,0],[3,0,0],[2,0,1],[0,3],[2,0,1],[2,1,0,0],[1,2],[0,0,3],[1,1,1],[0,1,2],[3,0],[3,0],[3,0],[2,1,0],[2,0,1,0],[3,0],[3,0],[1,2,0,0],[0,3],[0,3,0],[3,0,0,0],[2,1,0],[3,0,0,0,0],[2,0,1],[2,0,1],[1,1,1],[2,1,0],[3,0,0],[0,2,1],[2,1],[0,3],[1,2],[2,1],[2,1],[2,1,0],[3,0],[0,3] +01151ba010_960521.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[0,2,1],[0,2,1],[3,0,0],[2,1,0],[0,3,0],[3,0,0],[0,0,3],[2,1],[2,1,0],[3,0,0,0],[1,2],[2,0,1],[1,2,0],[1,0,2],[3,0],[0,3],[3,0],[1,2,0],[2,0,1,0],[3,0],[1,2],[0,2,0,1],[2,1],[0,2,1],[3,0,0,0],[1,1,1],[3,0,0,0,0],[3,0,0],[2,1,0],[1,2,0],[0,0,3],[2,1,0],[2,1,0],[2,1],[2,1],[0,3],[3,0],[0,2],[0,2,1],[3,0],[3,0] +01152ba010_960521.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[2,1],[0,3],[1,2],[0,2,1],[1,1,1],[0,0,3],[0,1,2],[3,0,0],[1,0,2],[3,0,0],[2,1],[0,1,2],[0,2,0,1],[1,2],[3,0,0],[1,1,1],[2,0,1],[3,0],[0,3],[2,0],[1,2,0],[3,0,0,0],[3,0],[2,1],[1,0,2,0],[0,3],[2,1,0],[0,0,3,0],[1,0,2],[3,0,0,0,0],[1,1,1],[3,0,0],[0,1,2],[0,2,1],[2,0,1],[1,2,0],[3,0],[0,3],[3,0],[2,1],[1,2],[3,0,0],[3,0],[3,0] +01153ba010_960521.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[0,3],[1,2],[0,3],[2,1,0],[3,0,0],[1,1,1],[2,1,0],[0,2,1],[3,0,0],[0,1,2],[1,2],[3,0,0],[2,1,0,0],[3,0],[0,0,3],[3,0,0],[2,1,0],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[1,2,0,0],[0,3],[0,2,0],[3,0,0,0],[1,2,0],[3,0,0,0,0],[1,2,0],[1,0,2],[1,2,0],[1,1,1],[0,3,0],[1,2,0],[3,0],[0,3],[0,3],[2,1],[2,1],[1,2,0],[3,0],[2,1] +01154ba010_960521.tif,[0,3],[3,0],[3,0,0,0,0,0,0],[1,2],[1,2],[0,3],[1,2,0],[2,0,1],[2,1,0],[3,0,0],[1,1,1],[2,0,1],[1,0,2],[3,0],[0,1,2],[2,0,1,0],[3,0],[1,1,1],[3,0,0],[1,0,2],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[2,1],[2,1],[2,0,1,0],[0,3],[0,3,0],[3,0,0,0],[0,3,0],[3,0,0,0,0],[0,1,2],[3,0,0],[0,0,3],[1,2,0],[3,0,0],[0,2,1],[3,0],[1,2],[0,3],[2,1],[2,1],[0,1,2],[0,3],[2,1] +01155ba010_960521.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[3,0,0],[2,0,1],[2,1,0],[2,1,0],[0,1,2],[0,2,1],[2,0,1],[2,1],[0,3,0],[3,0,0,0],[3,0],[0,0,3],[3,0,0],[3,0,0],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[1,2],[2,1],[2,1,0,0],[1,2],[1,1,1],[3,0,0,0],[0,3,0],[3,0,0,0,0],[1,2,0],[3,0,0],[1,1,1],[3,0,0],[2,1,0],[1,2,0],[2,1],[1,2],[0,3],[3,0],[3,0],[2,1,0],[3,0],[2,1] +01156ba010_960521.tif,[2,1],[3,0],[0,0,1,2,0,0,0],[0,3],[0,3],[0,3],[3,0,0],[2,1,0],[0,0,3],[0,1,2],[0,1,2],[3,0,0],[3,0,0],[3,0],[0,1,2],[1,1,0,1],[1,2],[2,1,0],[2,1,0],[3,0,0],[3,0],[3,0],[3,0],[2,0,1],[0,3,0,0],[1,2],[3,0],[0,0,3,0],[0,3],[0,2,1],[3,0,0,0],[2,1,0],[0,0,0,0,3],[2,0,1],[1,0,2],[0,1,2],[0,2,1],[2,1,0],[0,2,1],[2,1],[2,1],[0,3],[3,0],[3,0],[1,2,0],[3,0],[3,0] +01157ba010_960521.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[1,2],[3,0],[0,3],[1,0,2],[0,0,3],[0,0,3],[1,1,1],[1,2,0],[0,3,0],[2,0,1],[2,1],[2,1,0],[2,1,0,0],[0,3],[0,2,1],[0,1,2],[0,0,3],[3,0],[3,0],[3,0],[2,1,0],[3,0,0,0],[3,0],[3,0],[0,2,0,1],[0,3],[0,0,2],[2,1,0,0],[3,0,0],[3,0,0,0,0],[3,0,0],[3,0,0],[0,1,2],[0,1,2],[2,1,0],[0,2,1],[0,3],[3,0],[1,2],[3,0],[3,0],[1,1,1],[3,0],[2,1] +01158ba010_960521.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[2,0,1],[3,0,0],[2,0,1],[0,2,1],[0,3,0],[2,0,1],[1,0,2],[2,1],[2,0,1],[3,0,0,0],[1,2],[2,0,1],[2,1,0],[3,0,0],[3,0],[1,2],[3,0],[1,1,1],[3,0,0,0],[2,1],[3,0],[0,2,0,1],[2,1],[0,3,0],[1,1,0,0],[2,1,0],[3,0,0,0,0],[2,1,0],[1,0,2],[2,1,0],[1,1,1],[1,2,0],[2,1,0],[1,2],[3,0],[1,2],[3,0],[2,1],[0,2,1],[3,0],[3,0] +01159ba010_960521.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[3,0,0],[3,0,0],[1,2,0],[2,1,0],[1,2,0],[0,3,0],[0,3,0],[1,2],[1,1,1],[2,1,0,0],[3,0],[3,0,0],[2,0,1],[3,0,0],[3,0],[0,3],[3,0],[0,3,0],[3,0,0,0],[2,1],[2,1],[1,2,0,0],[2,1],[0,3,0],[3,0,0,0],[1,2,0],[3,0,0,0,0],[2,1,0],[1,0,2],[0,2,1],[1,2,0],[0,3,0],[0,3,0],[1,2],[2,1],[0,3],[3,0],[2,1],[1,0,1],[2,1],[3,0] +01160ba010_960521.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[0,3],[2,1],[1,2],[2,0,0],[3,0,0],[1,0,2],[0,1,2],[0,3,0],[3,0,0],[1,0,2],[3,0],[2,1,0],[3,0,0,0],[0,3],[1,0,2],[3,0,0],[3,0,0],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[2,1],[3,0],[0,3,0,0],[0,3],[0,2,1],[3,0,0,0],[0,3,0],[3,0,0,0,0],[2,0,0],[1,1,1],[3,0,0],[1,0,2],[2,1,0],[3,0,0],[3,0],[0,3],[0,3],[1,2],[3,0],[0,2,1],[3,0],[2,1] +01161ba010_960521.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[1,2],[2,0,1],[1,1,1],[1,2,0],[3,0,0],[0,1,2],[1,0,2],[3,0,0],[3,0],[1,0,2],[2,0,0,1],[1,2],[2,0,1],[3,0,0],[3,0,0],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[0,0,3,0],[2,1],[1,2,0],[3,0,0,0],[3,0,0],[3,0,0,0,0],[3,0,0],[1,2,0],[0,0,3],[0,3,0],[0,2,1],[0,1,2],[3,0],[1,2],[1,2],[3,0],[3,0],[0,2,1],[3,0],[2,1] +01162ba010_960521.tif,[1,2],[3,0],[1,0,1,1,0,0,0],[0,3],[1,2],[0,3],[2,0,1],[0,2,1],[0,0,3],[0,2,1],[0,3,0],[3,0,0],[3,0,0],[3,0],[1,2,0],[1,1,0,1],[0,3],[2,0,1],[2,0,1],[1,0,2],[0,3],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[2,0],[0,0,3,0],[1,2],[0,1,1],[3,0,0,0],[1,2,0],[0,3,0,0,0],[2,0,1],[2,0,1],[0,0,3],[0,0,3],[2,1,0],[0,0,3],[1,2],[2,1],[0,3],[2,1],[2,1],[1,2,0],[3,0],[3,0] +01163ba010_960521.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[0,3],[1,2],[2,1],[3,0,0],[3,0,0],[1,2,0],[0,1,2],[0,1,2],[1,0,2],[3,0,0],[3,0],[2,0,1],[2,0,0,1],[1,2],[3,0,0],[3,0,0],[3,0,0],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[1,2],[2,1],[0,2,1,0],[1,2],[0,1,1],[3,0,0,0],[1,2,0],[3,0,0,0,0],[0,0,3],[2,1,0],[0,1,2],[1,2,0],[2,1,0],[1,1,1],[3,0],[0,3],[2,1],[1,2],[3,0],[1,0,2],[3,0],[2,1] +01164ba010_960521.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[2,1],[0,3],[0,3],[1,1,1],[1,2,0],[0,0,3],[1,1,1],[0,2,1],[3,0,0],[3,0,0],[1,2],[0,0,3],[1,1,0,1],[2,1],[0,0,3],[3,0,0],[2,1,0],[2,1],[0,3],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,1],[1,2,0,0],[0,3],[0,3,0],[3,0,0,0],[0,3,0],[3,0,0,0,0],[1,0,2],[3,0,0],[2,0,1],[0,2,1],[2,1,0],[2,1,0],[0,3],[2,1],[0,3],[3,0],[2,1],[1,2,0],[3,0],[2,1] +01165ba010_960521.tif,[1,2],[0,3],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[2,1,0],[3,0,0],[3,0,0],[0,1,2],[0,3,0],[0,3,0],[2,0,1],[1,2],[1,0,2],[2,1,0,0],[3,0],[1,1,1],[3,0,0],[3,0,0],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[0,0,3,0],[1,2],[0,2,1],[3,0,0,0],[2,1,0],[3,0,0,0,0],[1,1,1],[2,0,1],[0,2,1],[1,2,0],[1,2,0],[0,2,1],[1,2],[3,0],[2,1],[3,0],[3,0],[0,0,3],[3,0],[3,0] +01166bj010_960521.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[1,2],[1,2],[0,3],[2,0,1],[0,3,0],[1,2,0],[2,1,0],[0,3,0],[3,0,0],[3,0,0],[2,1],[0,2,1],[3,0,0,0],[3,0],[0,1,2],[3,0,0],[2,1,0],[3,0],[0,3],[3,0],[1,0,2],[3,0,0,0],[3,0],[3,0],[0,0,3,0],[0,3],[0,2,1],[2,0,1,0],[1,0,2],[3,0,0,0,0],[3,0,0],[3,0,0],[0,0,3],[2,1,0],[2,0,1],[0,0,3],[1,2],[3,0],[0,3],[3,0],[0,3],[0,1,2],[3,0],[3,0] +01167ba010_960521.tif,[0,3],[2,1],[3,0,0,0,0,0,0],[1,2],[1,2],[1,2],[2,1,0],[2,0,1],[1,1,1],[1,1,1],[0,1,2],[0,0,3],[3,0,0],[3,0],[2,0,1],[0,1,1,1],[1,2],[1,0,2],[2,0,1],[2,1,0],[3,0],[0,3],[3,0],[2,0,1],[3,0,0,0],[3,0],[1,2],[1,0,1,1],[0,3],[0,1,2],[2,1,0,0],[1,2,0],[3,0,0,0,0],[1,1,1],[2,1,0],[0,0,3],[1,2,0],[2,0,1],[0,0,3],[3,0],[1,2],[1,2],[0,3],[2,1],[0,1,2],[3,0],[3,0] +01168ba010_960521.tif,[3,0],[3,0],[1,1,0,0,0,1,0],[0,3],[0,3],[0,3],[2,0,1],[1,0,2],[0,3,0],[3,0,0],[0,3,0],[1,2,0],[1,0,2],[3,0],[0,1,2],[2,1,0,0],[1,2],[0,2,1],[1,2,0],[2,1,0],[3,0],[3,0],[3,0],[2,1,0],[3,0,0,0],[3,0],[3,0],[0,1,0,2],[0,3],[0,2,1],[3,0,0,0],[2,1,0],[0,0,0,1,2],[2,0,1],[2,1,0],[1,2,0],[1,1,1],[3,0,0],[0,2,1],[3,0],[2,1],[0,3],[3,0],[3,0],[0,2,1],[3,0],[1,2] +01169ba010_960521.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[2,0,1],[2,1,0],[1,0,1],[0,2,1],[1,1,1],[2,0,1],[1,0,2],[1,2],[1,2,0],[3,0,0,0],[2,1],[1,0,2],[1,2,0],[2,1,0],[2,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[3,0],[0,1,1,1],[2,1],[1,2,0],[3,0,0,0],[2,0,1],[3,0,0,0,0],[3,0,0],[3,0,0],[2,1,0],[0,3,0],[0,3,0],[0,3,0],[2,1],[2,1],[1,2],[1,2],[3,0],[1,2,0],[3,0],[3,0] +01170ba010_960521.tif,[3,0],[2,1],[0,0,1,1,1,0,0],[0,3],[0,3],[0,3],[2,0,1],[0,1,2],[0,0,3],[0,0,3],[0,3,0],[3,0,0],[2,1,0],[1,2],[1,1,1],[3,0,0,0],[0,3],[1,2,0],[1,1,1],[3,0,0],[3,0],[3,0],[3,0],[3,0,0],[1,0,2,0],[3,0],[3,0],[0,1,2,0],[1,2],[0,2,1],[3,0,0,0],[1,2,0],[0,2,0,0,0],[1,0,2],[3,0,0],[0,0,3],[0,3,0],[3,0,0],[0,1,2],[3,0],[2,1],[0,3],[3,0],[3,0],[2,1,0],[3,0],[2,1] +01171ba010_960521.tif,[2,1],[1,2],[0,0,0,2,1,0,0],[2,1],[1,2],[3,0],[1,2,0],[3,0,0],[1,2,0],[2,0,1],[0,1,2],[2,0,1],[2,1,0],[2,1],[2,0,1],[1,1,0,0],[3,0],[3,0,0],[3,0,0],[2,1,0],[3,0],[3,0],[3,0],[3,0,0],[2,0,1,0],[2,1],[2,1],[0,0,3,0],[1,2],[0,3,0],[3,0,0,0],[1,2,0],[1,0,0,0,2],[0,3,0],[1,0,2],[0,0,3],[2,1,0],[1,2,0],[0,1,2],[3,0],[0,3],[3,0],[0,3],[3,0],[1,2,0],[3,0],[1,2] +01172ba010_960521.tif,[1,2],[1,2],[3,0,0,0,0,0,0],[2,1],[2,1],[0,3],[2,1,0],[3,0,0],[2,1,0],[1,2,0],[0,3,0],[2,1,0],[2,0,1],[3,0],[1,2,0],[2,0,1,0],[0,3],[1,0,2],[1,1,1],[3,0,0],[3,0],[3,0],[2,1],[3,0,0],[3,0,0,0],[3,0],[2,1],[0,3,0,0],[1,2],[0,2,1],[3,0,0,0],[1,2,0],[0,0,3,0,0],[3,0,0],[1,1,1],[1,2,0],[1,1,1],[2,1,0],[0,3,0],[3,0],[1,2],[0,3],[3,0],[3,0],[2,1,0],[0,3],[1,2] +01173ba010_960521.tif,[3,0],[3,0],[3,0,0,0,0,0,0],[3,0],[1,2],[3,0],[3,0,0],[0,3,0],[0,0,3],[0,3,0],[0,1,2],[2,1,0],[0,1,1],[2,1],[1,0,2],[1,2,0,0],[0,3],[0,0,3],[0,0,3],[2,0,1],[3,0],[3,0],[3,0],[2,1,0],[3,0,0,0],[2,1],[2,1],[0,2,0,1],[2,1],[1,2,0],[3,0,0,0],[2,1,0],[3,0,0,0,0],[3,0,0],[3,0,0],[0,0,3],[1,1,1],[0,2,0],[0,1,2],[3,0],[1,2],[0,3],[2,1],[3,0],[0,3,0],[3,0],[2,1] +01174ba010_960521.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[1,2],[1,2],[0,3],[1,1,1],[1,1,1],[3,0,0],[2,1,0],[0,3,0],[2,0,1],[1,1,1],[3,0],[0,1,2],[3,0,0,0],[1,2],[3,0,0],[1,2,0],[1,2,0],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[3,0],[3,0],[1,1,1,0],[0,3],[1,1,1],[3,0,0,0],[0,3,0],[3,0,0,0,0],[1,0,2],[3,0,0],[0,2,1],[0,3,0],[0,3,0],[0,2,1],[1,2],[3,0],[0,3],[3,0],[3,0],[1,2,0],[3,0],[3,0] +01175ba010_960521.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[0,3],[2,1],[1,2],[2,1,0],[1,2,0],[0,0,3],[0,1,2],[0,2,1],[3,0,0],[1,1,1],[2,1],[0,2,1],[2,1,0,0],[3,0],[0,0,3],[0,3,0],[0,3,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,1],[0,2,0,1],[1,2],[0,2,0],[3,0,0,0],[2,0,1],[3,0,0,0,0],[2,0,1],[1,0,2],[1,2,0],[1,2,0],[0,3,0],[1,2,0],[0,3],[2,1],[1,2],[2,1],[3,0],[3,0,0],[3,0],[2,1] +01176ba010_960521.tif,[0,3],[2,1],[3,0,0,0,0,0,0],[1,2],[1,2],[2,1],[2,1,0],[0,3,0],[2,1,0],[3,0,0],[0,2,1],[1,0,2],[3,0,0],[1,2],[0,2,1],[3,0,0,0],[3,0],[3,0,0],[3,0,0],[1,2,0],[3,0],[0,3],[3,0],[0,2,1],[3,0,0,0],[3,0],[3,0],[0,2,0,1],[1,2],[0,3,0],[3,0,0,0],[3,0,0],[3,0,0,0,0],[1,1,1],[1,0,2],[0,2,1],[2,1,0],[1,2,0],[0,3,0],[2,1],[3,0],[0,3],[3,0],[2,1],[2,1,0],[3,0],[2,1] +01177ba010_960521.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[0,3],[0,3],[1,2],[1,2,0],[2,1,0],[2,1,0],[2,0,1],[0,2,1],[0,0,3],[2,0,1],[2,1],[1,2,0],[3,0,0,0],[3,0],[3,0,0],[2,0,1],[2,0,1],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[0,3],[2,1],[1,0,2,0],[2,1],[0,2,1],[2,1,0,0],[1,0,2],[3,0,0,0,0],[1,1,1],[2,0,1],[0,1,2],[2,1,0],[0,3,0],[1,0,2],[2,1],[1,2],[1,2],[2,1],[2,1],[0,3,0],[3,0],[3,0] +01178ba010_960521.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[0,1,2],[0,0,3],[2,1,0],[2,0,1],[0,2,1],[1,2,0],[0,2,1],[2,1],[1,1,1],[2,0,0,1],[0,3],[3,0,0],[0,2,1],[0,0,3],[3,0],[3,0],[2,1],[0,1,2],[0,0,3,0],[3,0],[3,0],[0,1,0,2],[2,1],[0,3,0],[3,0,0,0],[1,2,0],[2,0,1,0,0],[3,0,0],[3,0,0],[0,3,0],[1,2,0],[1,0,2],[0,3,0],[2,1],[2,1],[0,3],[2,1],[1,2],[0,1,2],[3,0],[1,2] +01179ba010_960521.tif,[2,1],[3,0],[0,0,0,3,0,0,0],[2,1],[0,3],[2,1],[2,0,1],[3,0,0],[3,0,0],[1,2,0],[0,1,2],[1,0,2],[0,3,0],[2,1],[3,0,0],[1,0,2,0],[2,1],[0,0,3],[0,1,2],[3,0,0],[3,0],[3,0],[3,0],[3,0,0],[2,0,0,1],[2,1],[0,3],[0,1,0,2],[0,3],[0,2,1],[3,0,0,0],[2,1,0],[0,1,1,0,1],[3,0,0],[2,0,1],[0,2,1],[2,0,1],[1,0,2],[0,2,1],[3,0],[0,3],[2,1],[2,1],[1,1],[0,3,0],[0,3],[3,0] +01180ba010_960521.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[1,1,1],[2,0,1],[2,0,1],[1,2,0],[1,1,1],[1,2,0],[0,2,1],[0,3],[2,0,1],[2,1,0,0],[1,2],[1,0,2],[0,0,3],[3,0,0],[3,0],[3,0],[3,0],[2,0,1],[3,0,0,0],[2,1],[2,1],[0,2,0,1],[0,3],[0,2,1],[3,0,0,0],[2,1,0],[3,0,0,0,0],[3,0,0],[1,0,2],[0,2,1],[2,1,0],[0,3,0],[0,3,0],[1,2],[1,2],[0,3],[2,1],[3,0],[2,1,0],[2,1],[2,1] +01181ba010_960521.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[3,0,0],[1,2,0],[3,0,0],[2,1,0],[0,3,0],[0,0,3],[0,1,2],[1,2],[0,0,3],[2,1,0,0],[0,3],[1,0,2],[1,1,1],[0,0,3],[3,0],[0,3],[3,0],[0,3,0],[3,0,0,0],[3,0],[3,0],[0,2,1,0],[0,3],[0,3,0],[3,0,0,0],[2,1,0],[3,0,0,0,0],[3,0,0],[3,0,0],[0,3,0],[1,2,0],[0,1,2],[2,1,0],[3,0],[0,3],[2,1],[0,3],[0,3],[0,0,3],[3,0],[3,0] +01182ba010_960521.tif,[1,2],[1,2],[0,0,1,2,0,0,0],[1,2],[1,2],[3,0],[3,0,0],[2,1,0],[1,0,2],[1,2,0],[0,1,2],[2,0,1],[1,2,0],[3,0],[1,1,1],[2,0,1,0],[1,2],[1,0,2],[0,0,3],[0,0,3],[2,1],[3,0],[2,1],[2,0,1],[2,0,1,0],[1,2],[0,3],[1,0,2,0],[0,3],[0,2,1],[3,0,0,0],[2,0,1],[0,0,1,0,2],[1,0,2],[3,0,0],[0,1,2],[0,1,2],[1,1,1],[0,2,1],[3,0],[0,3],[2,1],[0,3],[2,1],[0,3,0],[3,0],[3,0] +01183ba010_960521.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[1,2],[2,1],[0,3],[1,0,2],[2,1,0],[3,0,0],[0,3,0],[0,2,1],[2,0,1],[2,0,1],[2,1],[1,1,1],[3,0,0,0],[0,3],[3,0,0],[0,2,1],[2,0,1],[3,0],[3,0],[3,0],[3,0,0],[1,0,2,0],[2,1],[3,0],[0,0,3,0],[1,2],[1,2,0],[3,0,0,0],[0,1,2],[0,1,2,0,0],[2,0,1],[2,0,1],[0,0,3],[2,0,1],[2,1,0],[0,1,2],[0,3],[3,0],[0,3],[3,0],[3,0],[1,1,1],[3,0],[3,0] +01184ba010_960521.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[1,2],[0,3],[0,3],[3,0,0],[2,0,1],[3,0,0],[2,1,0],[1,2,0],[2,1,0],[0,1,2],[3,0],[1,1,1],[2,0,0,1],[0,3],[0,0,3],[0,1,2],[1,2,0],[3,0],[3,0],[3,0],[1,2,0],[3,0,0,0],[2,1],[2,1],[2,0,1,0],[0,3],[0,3,0],[3,0,0,0],[3,0,0],[3,0,0,0,0],[1,0,2],[1,0,2],[0,2,1],[1,2,0],[1,2,0],[0,2,1],[2,1],[1,2],[0,3],[2,1],[3,0],[3,0,0],[3,0],[1,2] +01185ba010_960521.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[0,3],[2,1],[0,3],[1,2,0],[1,2,0],[2,0,1],[1,2,0],[1,2,0],[2,0,1],[0,2,1],[0,3],[2,1,0],[1,1,0,1],[2,1],[0,0,3],[3,0,0],[2,1,0],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[1,2],[0,3],[0,1,0,2],[1,2],[0,3,0],[2,1,0,0],[1,2,0],[3,0,0,0,0],[0,0,3],[3,0,0],[1,0,2],[0,2,1],[2,0,1],[0,3,0],[3,0],[1,2],[2,1],[0,3],[2,1],[0,3,0],[3,0],[2,1] +01186ba010_960521.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[1,0,2],[1,0,2],[1,0,2],[1,2,0],[0,2,1],[1,2,0],[1,2,0],[1,2],[0,3,0],[3,0,0,0],[0,3],[2,0,1],[1,1,1],[2,0,1],[3,0],[3,0],[3,0],[3,0,0],[0,0,3,0],[3,0],[3,0],[0,1,0,2],[0,3],[0,2,1],[3,0,0,0],[1,2,0],[3,0,0,0,0],[2,0,1],[1,0,2],[1,2,0],[2,1,0],[0,3,0],[0,3,0],[1,2],[0,3],[0,3],[2,1],[3,0],[0,2,1],[3,0],[0,3] +01187ba010_960521.tif,[0,3],[3,0],[3,0,0,0,0,0,0],[2,1],[0,3],[0,3],[2,1,0],[3,0,0],[1,0,2],[0,3,0],[0,2,1],[3,0,0],[1,1,1],[1,2],[1,1,1],[2,1,0,0],[3,0],[0,0,3],[3,0,0],[0,3,0],[3,0],[3,0],[2,1],[3,0,0],[3,0,0,0],[2,1],[3,0],[2,1,0,0],[1,2],[2,1,0],[0,1,2,0],[0,3,0],[3,0,0,0,0],[2,1,0],[0,0,3],[0,2,1],[2,1,0],[2,0,1],[1,1,1],[2,1],[0,3],[0,3],[3,0],[3,0],[2,1,0],[0,3],[2,1] +01188ba010_960521.tif,[1,2],[2,1],[1,0,1,1,0,0,0],[0,3],[0,3],[0,3],[2,0,1],[1,1,1],[1,0,2],[0,2,1],[0,1,2],[0,0,3],[2,0,1],[2,1],[2,1,0],[1,2,0,0],[0,3],[2,1,0],[2,0,1],[1,1,1],[3,0],[3,0],[3,0],[1,0,2],[0,3,0,0],[2,1],[3,0],[1,1,1,0],[1,2],[0,2,1],[3,0,0,0],[2,0,1],[0,3,0,0,0],[2,0,1],[2,0,1],[1,1,1],[0,1,2],[1,1,1],[0,2,1],[3,0],[2,1],[1,2],[3,0],[3,0],[1,2,0],[3,0],[2,0] +01189ba010_960521.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[1,1,1],[2,1,0],[2,0,1],[2,1,0],[0,0,3],[3,0,0],[3,0,0],[3,0],[2,1,0],[1,2,0,0],[0,3],[0,0,3],[1,0,2],[0,0,3],[1,2],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[3,0],[1,2,0,0],[0,3],[0,2,0],[2,1,0,0],[2,0,1],[2,0,1,0,0],[2,0,1],[3,0,0],[0,1,2],[0,0,3],[0,3,0],[0,1,2],[2,1],[0,3],[1,2],[2,1],[1,2],[3,0,0],[0,3],[2,1] +01190ba010_960521.tif,[2,1],[3,0],[0,0,3,0,0,0,0],[0,3],[1,2],[0,3],[1,0,2],[0,0,3],[1,0,2],[0,2,1],[2,1,0],[3,0,0],[0,2,1],[3,0],[1,1,1],[2,0,0,1],[0,3],[0,0,3],[1,2,0],[2,1,0],[3,0],[3,0],[2,1],[3,0,0],[3,0,0,0],[3,0],[2,1],[1,2,0,0],[1,2],[1,0,2],[3,0,0,0],[1,2,0],[1,1,1,0,0],[1,0,2],[1,0,2],[1,1,1],[2,1,0],[1,2,0],[0,3,0],[3,0],[2,1],[2,1],[2,1],[3,0],[2,1,0],[2,1],[2,1] +01191ba010_960521.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[2,1],[1,2],[0,3],[2,0,1],[1,1,1],[1,1,1],[2,0,1],[1,1,1],[3,0,0],[1,0,2],[2,1],[2,0,1],[1,1,1,0],[2,1],[3,0,0],[0,3,0],[1,0,2],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[3,0],[3,0],[0,0,0,3],[0,3],[0,3,0],[3,0,0,0],[0,3,0],[3,0,0,0,0],[2,0,1],[2,0,1],[2,1,0],[2,1,0],[1,2,0],[2,1,0],[3,0],[1,2],[2,1],[0,3],[3,0],[3,0,0],[3,0],[3,0] +01192ba010_960521.tif,[1,2],[2,1],[3,0,0,0,0,0,0],[0,3],[0,3],[1,2],[3,0,0],[3,0,0],[2,1,0],[0,3,0],[0,3,0],[2,1,0],[0,2,1],[3,0],[0,2,1],[1,1,0,1],[2,1],[1,0,2],[1,1,1],[2,0,1],[3,0],[3,0],[3,0],[2,1,0],[1,0,2,0],[2,1],[1,2],[0,3,0,0],[1,2],[0,3,0],[3,0,0,0],[0,3,0],[3,0,0,0,0],[2,0,1],[0,0,3],[1,1,1],[2,0,1],[0,3,0],[0,3,0],[3,0],[1,2],[0,3],[0,3],[3,0],[3,0,0],[3,0],[3,0] +01193ba010_960521.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[0,3],[1,2],[1,2],[1,1,1],[2,0,0],[0,0,3],[1,0,2],[1,1,1],[2,1,0],[1,0,2],[3,0],[0,1,2],[2,1,0,0],[2,1],[0,0,3],[1,0,2],[2,1,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[2,1],[2,1],[1,1,1,0],[1,2],[0,3,0],[3,0,0,0],[1,2,0],[2,0,1,0,0],[3,0,0],[1,2,0],[1,0,1],[0,1,2],[2,1,0],[0,1,2],[3,0],[0,3],[0,3],[3,0],[3,0],[0,3,0],[3,0],[1,1] +01194ba010_960521.tif,[2,1],[3,0],[3,0,0,0,0,0,0],[0,3],[1,2],[0,3],[1,1,1],[0,2,1],[3,0,0],[1,2,0],[0,1,2],[0,1,2],[2,1,0],[0,3],[2,1,0],[1,1,0,1],[3,0],[2,0,1],[2,0,1],[1,2,0],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[0,3],[3,0],[2,0,0,1],[2,1],[0,2,0],[3,0,0,0],[0,3,0],[2,0,0,1,0],[3,0,0],[3,0,0],[0,1,2],[1,2,0],[1,2,0],[0,2,1],[1,2],[2,1],[0,3],[3,0],[3,0],[0,2,1],[2,1],[3,0] +01195ba010_960521.tif,[2,1],[1,2],[3,0,0,0,0,0,0],[0,3],[1,2],[1,2],[2,1,0],[2,0,1],[0,3,0],[3,0,0],[1,0,2],[0,0,3],[3,0,0],[1,2],[1,0,2],[1,2,0,0],[3,0],[3,0,0],[2,0,1],[3,0,0],[0,3],[0,3],[3,0],[2,0,1],[3,0,0,0],[0,3],[3,0],[0,0,2,1],[0,3],[0,2,1],[3,0,0,0],[0,3,0],[3,0,0,0,0],[1,1,1],[3,0,0],[0,0,3],[0,0,3],[2,0,1],[0,0,3],[3,0],[1,2],[1,2],[1,2],[2,1],[0,3,0],[3,0],[2,1] +01196ba010_960521.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[1,2],[1,2],[0,3],[3,0,0],[3,0,0],[3,0,0],[2,1,0],[0,3,0],[0,0,3],[3,0,0],[2,1],[1,0,2],[3,0,0,0],[3,0],[3,0,0],[1,1,0],[0,2,1],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[1,2],[2,1],[0,0,3,0],[0,3],[1,0,2],[3,0,0,0],[2,0,1],[3,0,0,0,0],[0,1,2],[1,1,1],[0,2,1],[1,1,1],[2,0,1],[0,2,1],[2,1],[2,1],[0,3],[3,0],[3,0],[0,2,1],[3,0],[2,1] +01197ba010_960521.tif,[1,2],[3,0],[0,0,1,1,1,0,0],[0,3],[0,3],[0,3],[3,0,0],[1,2,0],[0,3,0],[2,1,0],[1,0,2],[1,0,2],[3,0,0],[3,0],[1,2,0],[2,0,0,1],[1,2],[3,0,0],[2,0,1],[0,0,3],[3,0],[3,0],[3,0],[3,0,0],[2,0,1,0],[1,2],[3,0],[0,0,2,1],[0,3],[1,2,0],[3,0,0,0],[3,0,0],[0,3,0,0,0],[0,0,3],[2,1,0],[1,1,1],[0,1,2],[2,1,0],[1,2,0],[1,2],[2,1],[0,3],[3,0],[3,0],[2,1,0],[3,0],[3,0] +01198ba010_960521.tif,[1,2],[3,0],[1,0,0,2,0,0,0],[0,3],[0,3],[1,2],[2,1,0],[1,1,1],[1,0,2],[1,0,2],[0,3,0],[2,0,1],[2,1,0],[1,2],[0,0,3],[1,0,1,1],[3,0],[2,1,0],[1,0,2],[0,3,0],[3,0],[3,0],[3,0],[2,1,0],[1,0,1,1],[1,2],[3,0],[0,0,3,0],[0,3],[0,2,1],[3,0,0,0],[2,0,1],[0,0,1,0,2],[1,0,2],[0,0,3],[0,1,2],[2,1,0],[3,0,0],[0,0,3],[3,0],[1,2],[0,3],[1,2],[2,1],[2,1,0],[2,1],[3,0] +01199ba010_960521.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[1,2],[0,3],[1,2],[1,1,1],[0,3,0],[3,0,0],[0,3,0],[1,2,0],[0,0,3],[3,0,0],[1,2],[0,1,2],[0,2,0,1],[3,0],[1,0,2],[3,0,0],[3,0,0],[3,0],[0,3],[3,0],[2,1,0],[3,0,0,0],[2,1],[3,0],[1,1,0,1],[1,2],[0,0,3],[0,3,0,0],[0,3,0],[3,0,0,0,0],[1,0,2],[1,0,2],[3,0,0],[2,1,0],[1,2,0],[2,1,0],[3,0],[1,2],[1,2],[3,0],[3,0],[0,1,2],[3,0],[2,1] +01200ba010_960521.tif,[0,3],[3,0],[3,0,0,0,0,0,0],[1,2],[0,3],[2,1],[3,0,0],[2,1,0],[1,2,0],[1,2,0],[0,3,0],[1,0,2],[1,2,0],[1,2],[0,0,3],[3,0,0,0],[3,0],[2,1,0],[3,0,0],[3,0,0],[3,0],[0,3],[3,0],[3,0,0],[3,0,0,0],[2,1],[3,0],[0,0,0,3],[0,3],[0,3,0],[3,0,0,0],[1,2,0],[2,1,0,0,0],[2,1,0],[2,0,1],[3,0,0],[2,1,0],[0,3,0],[1,2,0],[2,1],[2,1],[0,3],[3,0],[3,0],[1,1,1],[3,0],[3,0] +01201ba010_960521.tif,[3,0],[0,3],[2,0,1,0,0,0,0],[1,2],[2,1],[0,3],[1,1,1],[0,3,0],[2,0,1],[0,1,2],[1,2,0],[2,1,0],[3,0,0],[2,1],[0,1,2],[2,0,0,1],[0,3],[2,1,0],[0,1,2],[0,1,2],[3,0],[3,0],[3,0],[2,0,1],[1,0,2,0],[1,2],[2,1],[0,1,2,0],[1,2],[2,0,1],[1,0,2,0],[0,0,3],[0,2,1,0,0],[3,0,0],[2,1,0],[0,0,3],[1,1,1],[0,0,3],[0,1,2],[3,0],[2,1],[1,2],[1,2],[0,3],[1,1,1],[3,0],[1,2] +01202ba010_960521.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[0,3],[1,2],[1,2],[1,2,0],[1,2,0],[1,1,1],[1,0,2],[1,2,0],[0,1,2],[3,0,0],[3,0],[1,1,1],[1,2,0,0],[2,1],[2,0,1],[3,0,0],[3,0,0],[3,0],[0,3],[3,0],[1,2,0],[3,0,0,0],[3,0],[3,0],[0,2,0,1],[0,3],[1,2,0],[3,0,0,0],[0,3,0],[3,0,0,0,0],[1,1,1],[1,1,1],[1,1,1],[1,2,0],[0,3,0],[1,1,1],[0,3],[2,1],[0,3],[3,0],[3,0],[0,0,3],[3,0],[3,0] +01203ba010_960521.tif,[2,1],[2,1],[3,0,0,0,0,0,0],[0,3],[0,3],[0,3],[2,0,1],[2,0,1],[0,3,0],[2,1,0],[3,0,0],[3,0,0],[0,1,2],[3,0],[2,1,0],[3,0,0,0],[1,2],[3,0,0],[0,0,3],[1,0,2],[3,0],[3,0],[3,0],[2,1,0],[3,0,0,0],[3,0],[2,1],[0,2,1,0],[0,3],[0,1,1],[2,1,0,0],[3,0,0],[3,0,0,0,0],[3,0,0],[2,0,1],[0,3,0],[1,1,1],[2,1,0],[0,2,1],[1,2],[3,0],[1,2],[3,0],[3,0],[1,1,1],[2,0],[3,0] +01204ba010_960521.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[3,0],[2,1],[3,0],[2,1,0],[2,0,1],[1,0,2],[1,2,0],[2,1,0],[1,0,2],[3,0,0],[2,1],[2,0,1],[0,2,1,0],[3,0],[0,0,3],[2,0,1],[0,0,3],[3,0],[3,0],[3,0],[2,1,0],[3,0,0,0],[3,0],[1,2],[1,1,1,0],[2,1],[0,3,0],[3,0,0,0],[2,1,0],[2,0,1,0,0],[3,0,0],[1,2,0],[0,0,3],[0,0,3],[0,0,3],[0,0,3],[3,0],[1,2],[2,1],[0,3],[2,1],[3,0,0],[3,0],[2,1] +01205ba010_960521.tif,[3,0],[2,1],[1,0,0,2,0,0,0],[1,2],[0,3],[1,2],[2,1,0],[3,0,0],[2,0,1],[0,2,1],[0,3,0],[0,0,3],[1,0,2],[3,0],[2,1,0],[2,1,0,0],[3,0],[3,0,0],[3,0,0],[2,0,1],[3,0],[3,0],[3,0],[2,0,1],[0,2,1,0],[2,1],[1,2],[2,1,0,0],[1,2],[0,3,0],[3,0,0,0],[2,0,1],[0,2,0,0,1],[3,0,0],[2,0,1],[0,2,1],[0,3,0],[2,1,0],[0,3,0],[3,0],[0,3],[2,1],[2,1],[3,0],[1,2,0],[3,0],[2,1] +01206ba010_960521.tif,[0,3],[2,1],[0,0,3,0,0,0,0],[1,2],[2,1],[1,2],[2,0,0],[2,1,0],[2,0,1],[2,1,0],[0,0,3],[1,1,1],[3,0,0],[3,0],[1,1,1],[2,0,0,1],[1,2],[1,0,2],[1,1,1],[1,2,0],[3,0],[3,0],[3,0],[3,0,0],[3,0,0,0],[3,0],[2,1],[3,0,0,0],[1,2],[1,2,0],[3,0,0,0],[0,1,2],[0,1,2,0,0],[3,0,0],[3,0,0],[0,3,0],[0,1,2],[2,0,1],[0,3,0],[1,2],[0,3],[0,3],[2,1],[3,0],[3,0,0],[0,3],[2,1] +01207fa010_940128.tif,[3,0],[3,0],[0,0,0,0,0,3,0],[1,2],[0,3],[1,2],[1,2,0],[1,0,2],[2,1,0],[2,1,0],[2,1,0],[0,3,0],[3,0,0],[1,2],[0,2,1],[3,0,0,0],[3,0],[1,0,2],[2,0,1],[1,0,1],[0,3],[3,0],[3,0],[3,0,0],[2,0,1,0],[3,0],[2,1],[0,2,1,0],[0,3],[0,1,2],[1,2,0,0],[1,0,2],[0,0,1,0,2],[3,0,0],[1,0,2],[0,2,1],[1,2,0],[3,0,0],[0,3,0],[3,0],[2,1],[2,1],[3,0],[1,2],[2,1,0],[1,1],[2,1] +01208fa010_960627.tif,[1,2],[3,0],[3,0,0,0,0,0,0],[2,1],[0,3],[1,2],[3,0,0],[2,1,0],[2,0,1],[3,0,0],[0,0,3],[3,0,0],[1,0,2],[0,3],[2,0,1],[2,0,0,1],[1,2],[3,0,0],[1,2,0],[1,1,1],[3,0],[0,3],[3,0],[0,1,2],[3,0,0,0],[3,0],[3,0],[1,1,0,1],[0,3],[0,2,1],[3,0,0,0],[1,2,0],[3,0,0,0,0],[3,0,0],[3,0,0],[0,3,0],[1,1,1],[0,3,0],[1,2,0],[0,3],[2,1],[0,3],[3,0],[3,0],[1,1,1],[3,0],[3,0] +01209fa010_940128.tif,[3,0],[2,1],[3,0,0,0,0,0,0],[1,2],[1,2],[1,2],[0,0,3],[1,2,0],[0,0,3],[1,1,1],[1,2,0],[2,0,1],[2,0,1],[3,0],[2,1,0],[1,2,0,0],[1,2],[2,0,1],[1,1,1],[2,0,1],[3,0],[3,0],[0,3],[3,0,0],[3,0,0,0],[3,0],[2,1],[0,2,0,1],[1,2],[0,1,2],[3,0,0,0],[3,0,0],[3,0,0,0,0],[3,0,0],[2,1,0],[1,2,0],[1,1,1],[2,1,0],[2,1,0],[3,0],[2,1],[0,3],[1,2],[2,1],[1,2,0],[3,0],[3,0] diff --git a/scripts/runAttribute.py b/scripts/runAttribute.py new file mode 100644 index 0000000..3f92160 --- /dev/null +++ b/scripts/runAttribute.py @@ -0,0 +1,22 @@ +import torque +import os + +def call(alg, name): + + name = 'Attribute_%s' % name + cmdList = [] + cmdList.append('cd /data2/pattrec/home/bklare/src/openbr/scripts') + cmdList.append('bash attributesTorque.sh %s %s %s' % (alg,name ,os.environ['DATA'])) + torque.createQsub(3,0,cmdList,name) + + + +sys.exit(0) + +call('"CvtFloat+Blur(1.1)+GammaFull(0.2)+DoG(1,2)+ContrastEq(0.1,10)+LBP(1,2)+RectRegions(4,4,4,4)+Hist(59)+Cat+PCA(0.95)"','DoGLBP_Rect4') +call('"CvtFloat+Blur(1.1)+GammaFull(0.2)+DoG(1,2)+ContrastEq(0.1,10)+LBP(1,2)+RectRegions(8,8,4,4)+Hist(59)+Cat+PCA(0.8)"','DoGLBP_PCA8') +call('"CvtFloat+Blur(1.1)+GammaFull(0.2)+DoG(1,2)+ContrastEq(0.1,10)+LBP(1,2)+RectRegions(8,8,4,4)+Hist(59)+Cat+PCA(0.95,whiten=true)"','DoGLBP_Whiten') +call('"CvtFloat+Blur(1.1)+GammaFull(0.2)+DoG(1,2)+ContrastEq(0.1,10)+LBP(4,2)+RectRegions(16,16,8,8)+Hist(59)+Cat+PCA(0.95)"','DoGLBP4_Rect16') +call('"CvtFloat+PCA(0.95)"','BaselineNoCenter') +call('"CvtFloat+Blur(1.1)+GammaFull(0.2)+DoG(1,2)+ContrastEq(0.1,10)+LBP(1,2)+RectRegions(8,8,4,4)+Hist(59)+Cat+PCA(0.95)+Center(Range)"','LBP_Center') +call('"CvtFloat+Blur(1.1)+GammaFull(0.2)+DoG(1,2)+ContrastEq(0.1,10)+LBP(1,2)+RectRegions(8,8,4,4)+Hist(59)+Cat+PCA(0.95)"','LBP') diff --git a/share/openbr/openbr.bib b/share/openbr/openbr.bib index fd5ec21..10f178c 100644 --- a/share/openbr/openbr.bib +++ b/share/openbr/openbr.bib @@ -405,3 +405,9 @@ booktitle={IEEE Conf. on Computer Vision and Pattern Recognition, 2011}, pages={513--520} } + +@misc{baba1472, + Author = {Babatunde Ogunfemi}, + Howpublished = {https://github.com/baba1472}, + Title = {ogunfemi.b at gmail.com}} +