Commit 2ba3aa40c4fbf2e2190aaa95d37e216770197c43
Merge branch 'attributes' of https://github.com/biometrics/openbr into attributes
Conflicts: openbr/plugins/gallery.cpp
Showing
19 changed files
with
1965 additions
and
15 deletions
openbr/core/common.h
| ... | ... | @@ -116,15 +116,24 @@ T Max(const QList<T> &vals) |
| 116 | 116 | } |
| 117 | 117 | |
| 118 | 118 | /*! |
| 119 | + * \brief Returns the sum of a vector of values. | |
| 120 | + */ | |
| 121 | +template <template<class> class V, typename T> | |
| 122 | +double Sum(const V<T> &vals) | |
| 123 | +{ | |
| 124 | + double sum = 0; | |
| 125 | + foreach (T val, vals) sum += val; | |
| 126 | + return sum; | |
| 127 | +} | |
| 128 | + | |
| 129 | +/*! | |
| 119 | 130 | * \brief Returns the mean and standard deviation of a vector of values. |
| 120 | 131 | */ |
| 121 | 132 | template <template<class> class V, typename T> |
| 122 | 133 | double Mean(const V<T> &vals) |
| 123 | 134 | { |
| 124 | 135 | if (vals.isEmpty()) return 0; |
| 125 | - double sum = 0; | |
| 126 | - foreach (T val, vals) sum += val; | |
| 127 | - return sum / vals.size(); | |
| 136 | + return Sum(vals) / vals.size(); | |
| 128 | 137 | } |
| 129 | 138 | |
| 130 | 139 | /*! | ... | ... |
openbr/core/plot.cpp
| ... | ... | @@ -249,6 +249,7 @@ bool Plot(const QStringList &files, const File &destination, bool show) |
| 249 | 249 | qDebug("Plotting %d file(s) to %s", files.size(), qPrintable(destination)); |
| 250 | 250 | |
| 251 | 251 | const bool minimalist = destination.getBool("minimalist"); |
| 252 | + const bool uncertainty = destination.get<bool>("uncertainty"); | |
| 252 | 253 | |
| 253 | 254 | // Use a br::file for simple storage of plot options |
| 254 | 255 | File cmcOpts; |
| ... | ... | @@ -297,7 +298,7 @@ bool Plot(const QStringList &files, const File &destination, bool show) |
| 297 | 298 | QString(" + theme(aspect.ratio=1)\n\n"))); |
| 298 | 299 | |
| 299 | 300 | 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<QString>("title",QString())) + |
| 300 | - 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\", " | |
| 301 | + 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\", " | |
| 301 | 302 | "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<float>("thickness",1))) + |
| 302 | 303 | (minimalist ? "" : " + scale_x_log10(labels=c(1,5,10,50,100), breaks=c(1,5,10,50,100)) + annotation_logticks(sides=\"b\")") + |
| 303 | 304 | (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) |
| 311 | 312 | QString(", xlab=\"False Accept Rate\", ylab=\"True Accept Rate\") + theme_minimal()") + |
| 312 | 313 | (p.major.size > 1 ? getScale("fill", "Algorithm", p.major.size) : QString()) + |
| 313 | 314 | (p.minor.size > 1 ? QString(" + facet_grid(%2 ~ X)").arg(p.minor.header) : QString(" + facet_grid(. ~ X, labeller=far_labeller)")) + |
| 314 | - 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"))); | |
| 315 | + 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")); | |
| 315 | 316 | |
| 316 | 317 | 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\"") + |
| 317 | 318 | ((p.flip ? p.major.size : p.minor.size) > 1 ? QString(", colour=factor(%1)").arg(p.flip ? p.major.header : p.minor.header) : QString()) + | ... | ... |
openbr/core/qtutils.cpp
| ... | ... | @@ -31,6 +31,7 @@ |
| 31 | 31 | |
| 32 | 32 | #include "alphanum.hpp" |
| 33 | 33 | #include "qtutils.h" |
| 34 | +#include "opencvutils.h" | |
| 34 | 35 | |
| 35 | 36 | using namespace br; |
| 36 | 37 | |
| ... | ... | @@ -429,7 +430,7 @@ QString toString(const QVariant &variant) |
| 429 | 430 | QString::number(rect.y()), |
| 430 | 431 | QString::number(rect.width()), |
| 431 | 432 | QString::number(rect.height())); |
| 432 | - } | |
| 433 | + } else if (variant.canConvert<cv::Mat>()) return OpenCVUtils::matrixToString(variant.value<cv::Mat>()); | |
| 433 | 434 | |
| 434 | 435 | return QString(); |
| 435 | 436 | } |
| ... | ... | @@ -446,6 +447,21 @@ QString toString(const QVariantList &variantList) |
| 446 | 447 | return QString(); |
| 447 | 448 | } |
| 448 | 449 | |
| 450 | +QString toString(const QMap<QString,QVariant> &variantMap) | |
| 451 | +{ | |
| 452 | + QStringList variants; | |
| 453 | + | |
| 454 | + QMapIterator<QString, QVariant> i(variantMap); | |
| 455 | + while (i.hasNext()) { | |
| 456 | + i.next(); | |
| 457 | + variants.append(i.key() + "=" + toString(i.value())); | |
| 458 | + } | |
| 459 | + | |
| 460 | + if (!variants.isEmpty()) return "[" + variants.join(", ") + "]"; | |
| 461 | + | |
| 462 | + return QString(); | |
| 463 | +} | |
| 464 | + | |
| 449 | 465 | QString toTime(int s) |
| 450 | 466 | { |
| 451 | 467 | int h = s / (60*60); | ... | ... |
openbr/core/qtutils.h
| ... | ... | @@ -75,6 +75,7 @@ namespace QtUtils |
| 75 | 75 | /**** Variant Utilities ****/ |
| 76 | 76 | QString toString(const QVariant &variant); |
| 77 | 77 | QString toString(const QVariantList &variantList); |
| 78 | + QString toString(const QVariantMap &QVariantMap); | |
| 78 | 79 | |
| 79 | 80 | template <typename T> |
| 80 | 81 | QVariantList toVariantList(const QList<T> &list) | ... | ... |
openbr/openbr_plugin.cpp
| ... | ... | @@ -950,7 +950,7 @@ float br::Context::progress() const |
| 950 | 950 | |
| 951 | 951 | void br::Context::setProperty(const QString &key, const QString &value) |
| 952 | 952 | { |
| 953 | - Object::setProperty(key, value.isEmpty() ? QVariant() : value); | |
| 953 | + Object::setProperty(key, value.isEmpty() ? QVariant(true) : value); | |
| 954 | 954 | qDebug("Set %s%s", qPrintable(key), value.isEmpty() ? "" : qPrintable(" to " + value)); |
| 955 | 955 | |
| 956 | 956 | if (key == "parallelism") { | ... | ... |
openbr/plugins/filter.cpp
openbr/plugins/independent.cpp
| ... | ... | @@ -23,6 +23,7 @@ static TemplateList Downsample(const TemplateList &templates, int classes, int i |
| 23 | 23 | instances = abs(instances); |
| 24 | 24 | |
| 25 | 25 | QList<QString> allLabels = File::get<QString>(templates, inputVariable); |
| 26 | + | |
| 26 | 27 | QList<QString> uniqueLabels = allLabels.toSet().toList(); |
| 27 | 28 | qSort(uniqueLabels); |
| 28 | 29 | ... | ... |
openbr/plugins/misc.cpp
| ... | ... | @@ -424,6 +424,36 @@ BR_REGISTER(Transform, RenameFirstTransform) |
| 424 | 424 | |
| 425 | 425 | /*! |
| 426 | 426 | * \ingroup transforms |
| 427 | + * \brief Add any ground truth to the template using the file's base name. | |
| 428 | + * \author Josh Klontz \cite jklontz | |
| 429 | + */ | |
| 430 | +class GroundTruthTransform : public UntrainableMetaTransform | |
| 431 | +{ | |
| 432 | + Q_OBJECT | |
| 433 | + Q_PROPERTY(QString groundTruth READ get_groundTruth WRITE set_groundTruth RESET reset_groundTruth STORED false) | |
| 434 | + Q_PROPERTY(QStringList keys READ get_keys WRITE set_keys RESET reset_keys STORED false) | |
| 435 | + BR_PROPERTY(QString, groundTruth, "") | |
| 436 | + BR_PROPERTY(QStringList, keys, QStringList()) | |
| 437 | + | |
| 438 | + QMap<QString,File> files; | |
| 439 | + | |
| 440 | + void init() | |
| 441 | + { | |
| 442 | + foreach (const File &file, TemplateList::fromGallery(groundTruth).files()) | |
| 443 | + files.insert(file.baseName(), file); | |
| 444 | + } | |
| 445 | + | |
| 446 | + void project(const Template &src, Template &dst) const | |
| 447 | + { | |
| 448 | + dst = src; | |
| 449 | + foreach(const QString &key, keys) dst.file.set(key,files[dst.file.baseName()].value(key)); | |
| 450 | + } | |
| 451 | +}; | |
| 452 | + | |
| 453 | +BR_REGISTER(Transform, GroundTruthTransform) | |
| 454 | + | |
| 455 | +/*! | |
| 456 | + * \ingroup transforms | |
| 427 | 457 | * \brief Change the br::Template::file extension |
| 428 | 458 | * \author Josh Klontz \cite jklontz |
| 429 | 459 | */ |
| ... | ... | @@ -472,6 +502,29 @@ BR_REGISTER(Transform, RegexPropertyTransform) |
| 472 | 502 | |
| 473 | 503 | /*! |
| 474 | 504 | * \ingroup transforms |
| 505 | + * \brief Create matrix from metadata values. | |
| 506 | + * \author Josh Klontz \cite jklontz | |
| 507 | + */ | |
| 508 | +class ExtractMetadataTransform : public UntrainableMetaTransform | |
| 509 | +{ | |
| 510 | + Q_OBJECT | |
| 511 | + Q_PROPERTY(QStringList keys READ get_keys WRITE set_keys RESET reset_keys STORED false) | |
| 512 | + BR_PROPERTY(QStringList, keys, QStringList()) | |
| 513 | + | |
| 514 | + void project(const Template &src, Template &dst) const | |
| 515 | + { | |
| 516 | + dst.file = src.file; | |
| 517 | + QList<float> values; | |
| 518 | + foreach (const QString &key, keys) | |
| 519 | + values.append(src.file.get<float>(key)); | |
| 520 | + dst.append(OpenCVUtils::toMat(values, 1)); | |
| 521 | + } | |
| 522 | +}; | |
| 523 | + | |
| 524 | +BR_REGISTER(Transform, ExtractMetadataTransform) | |
| 525 | + | |
| 526 | +/*! | |
| 527 | + * \ingroup transforms | |
| 475 | 528 | * \brief Store the last matrix of the input template as a metadata key with input property name. |
| 476 | 529 | * \author Charles Otto \cite caotto |
| 477 | 530 | */ | ... | ... |
openbr/plugins/output.cpp
| ... | ... | @@ -371,15 +371,22 @@ BR_REGISTER(Output, EmptyOutput) |
| 371 | 371 | class evalOutput : public MatrixOutput |
| 372 | 372 | { |
| 373 | 373 | Q_OBJECT |
| 374 | + Q_PROPERTY(QString target READ get_target WRITE set_target RESET reset_target STORED false) | |
| 375 | + Q_PROPERTY(QString query READ get_query WRITE set_query RESET reset_query STORED false) | |
| 374 | 376 | Q_PROPERTY(bool crossValidate READ get_crossValidate WRITE set_crossValidate RESET reset_crossValidate STORED false) |
| 375 | 377 | BR_PROPERTY(bool, crossValidate, true) |
| 378 | + BR_PROPERTY(QString, target, QString()) | |
| 379 | + BR_PROPERTY(QString, query, QString()) | |
| 376 | 380 | |
| 377 | 381 | ~evalOutput() |
| 378 | 382 | { |
| 383 | + if (!target.isEmpty()) targetFiles = TemplateList::fromGallery(target).files(); | |
| 384 | + if (!query.isEmpty()) queryFiles = TemplateList::fromGallery(query).files(); | |
| 385 | + | |
| 379 | 386 | if (data.data) { |
| 380 | 387 | const QString csv = QString(file.name).replace(".eval", ".csv"); |
| 381 | 388 | if ((Globals->crossValidate == 0) || (!crossValidate)) { |
| 382 | - Evaluate(data,targetFiles, queryFiles, csv); | |
| 389 | + Evaluate(data, targetFiles, queryFiles, csv); | |
| 383 | 390 | } else { |
| 384 | 391 | QFutureSynchronizer<float> futures; |
| 385 | 392 | for (int i=0; i<Globals->crossValidate; i++) | ... | ... |
openbr/plugins/regions.cpp
| ... | ... | @@ -292,7 +292,7 @@ BR_REGISTER(Transform, CropRectTransform) |
| 292 | 292 | |
| 293 | 293 | /*! |
| 294 | 294 | * \ingroup transforms |
| 295 | - * \brief Create matrix from landmarks. | |
| 295 | + * \brief Create rect from landmarks. | |
| 296 | 296 | * \author Scott Klum \cite sklum |
| 297 | 297 | * \todo Padding should be a percent of total image size |
| 298 | 298 | */ |
| ... | ... | @@ -313,7 +313,6 @@ class RectFromPointsTransform : public UntrainableTransform |
| 313 | 313 | |
| 314 | 314 | if (src.file.points().isEmpty()) { |
| 315 | 315 | if (Globals->verbose) qWarning("No landmarks"); |
| 316 | - dst = src; | |
| 317 | 316 | return; |
| 318 | 317 | } |
| 319 | 318 | |
| ... | ... | @@ -355,6 +354,33 @@ BR_REGISTER(Transform, RectFromPointsTransform) |
| 355 | 354 | |
| 356 | 355 | /*! |
| 357 | 356 | * \ingroup transforms |
| 357 | + * \brief Create matrix from landmarks. | |
| 358 | + * \author Scott Klum \cite sklum | |
| 359 | + * \todo Padding should be a percent of total image size | |
| 360 | + */ | |
| 361 | + | |
| 362 | +class BoundingBoxTransform : public UntrainableTransform | |
| 363 | +{ | |
| 364 | + Q_OBJECT | |
| 365 | + | |
| 366 | + void project(const Template &src, Template &dst) const | |
| 367 | + { | |
| 368 | + dst = src; | |
| 369 | + | |
| 370 | + if (src.file.points().isEmpty()) { | |
| 371 | + if (Globals->verbose) qFatal("No landmarks"); | |
| 372 | + return; | |
| 373 | + } | |
| 374 | + | |
| 375 | + Rect boundingBox = boundingRect(OpenCVUtils::toPoints(src.file.points()).toVector().toStdVector()); | |
| 376 | + dst.file.appendRect(OpenCVUtils::fromRect(boundingBox)); | |
| 377 | + } | |
| 378 | +}; | |
| 379 | + | |
| 380 | +BR_REGISTER(Transform, BoundingBoxTransform) | |
| 381 | + | |
| 382 | +/*! | |
| 383 | + * \ingroup transforms | |
| 358 | 384 | * \brief Create face bounding box from two eye locations. `widthPadding` specifies |
| 359 | 385 | * what percentage of the interpupliary distance (ipd) will be padded in both |
| 360 | 386 | * horizontal directions. The `verticalLocation` specifies where vertically the | ... | ... |
openbr/plugins/svm.cpp
| ... | ... | @@ -74,7 +74,7 @@ static void trainSVM(SVM &svm, Mat data, Mat lab, int kernel, int type, float C, |
| 74 | 74 | svm.train_auto(data, lab, Mat(), Mat(), params, 5); |
| 75 | 75 | } catch (...) { |
| 76 | 76 | qWarning("Some classes do not contain sufficient examples or are not discriminative enough for accurate SVM classification."); |
| 77 | - svm.train(data, lab); | |
| 77 | + svm.train(data, lab, Mat(), Mat(), params); | |
| 78 | 78 | } |
| 79 | 79 | } else { |
| 80 | 80 | params.C = C; |
| ... | ... | @@ -136,12 +136,12 @@ private: |
| 136 | 136 | Mat data = OpenCVUtils::toMat(_data.data()); |
| 137 | 137 | Mat lab; |
| 138 | 138 | // If we are doing regression, the input variable should have float |
| 139 | - // values | |
| 139 | + // values | |
| 140 | 140 | if (type == EPS_SVR || type == NU_SVR) { |
| 141 | 141 | lab = OpenCVUtils::toMat(File::get<float>(_data, inputVariable)); |
| 142 | 142 | } |
| 143 | 143 | // If we are doing classification, we should be dealing with discrete |
| 144 | - // values. Map them and store the mapping data | |
| 144 | + // values. Map them and store the mapping data | |
| 145 | 145 | else { |
| 146 | 146 | QList<int> dataLabels = _data.indexProperty(inputVariable, labelMap, reverseLookup); |
| 147 | 147 | lab = OpenCVUtils::toMat(dataLabels); |
| ... | ... | @@ -161,7 +161,8 @@ private: |
| 161 | 161 | dst.m().at<float>(0, 0) = prediction; |
| 162 | 162 | // positive values ==> first class |
| 163 | 163 | // negative values ==> second class |
| 164 | - prediction = prediction > 0 ? 0 : 1; | |
| 164 | + if (type != EPS_SVR && type != NU_SVR) | |
| 165 | + prediction = prediction > 0 ? 0 : 1; | |
| 165 | 166 | } |
| 166 | 167 | if (type == EPS_SVR || type == NU_SVR) { |
| 167 | 168 | dst.file.set(outputVariable, prediction); | ... | ... |
openbr/plugins/turk.cpp
0 → 100644
| 1 | +#include "openbr_internal.h" | |
| 2 | +#include "openbr/core/common.h" | |
| 3 | +#include "openbr/core/opencvutils.h" | |
| 4 | +#include "openbr/core/qtutils.h" | |
| 5 | + | |
| 6 | +namespace br | |
| 7 | +{ | |
| 8 | + | |
| 9 | +/*! | |
| 10 | + * \ingroup galleries | |
| 11 | + * \brief For Amazon Mechanical Turk datasets | |
| 12 | + * \author Scott Klum \cite sklum | |
| 13 | + */ | |
| 14 | +class turkGallery : public Gallery | |
| 15 | +{ | |
| 16 | + Q_OBJECT | |
| 17 | + | |
| 18 | + struct Attribute : public QStringList | |
| 19 | + { | |
| 20 | + QString name; | |
| 21 | + Attribute(const QString &str = QString()) | |
| 22 | + { | |
| 23 | + const int i = str.indexOf('['); | |
| 24 | + name = str.mid(0, i); | |
| 25 | + if (i != -1) | |
| 26 | + append(str.mid(i+1, str.length()-i-2).split(",")); | |
| 27 | + } | |
| 28 | + | |
| 29 | + Attribute normalized() const | |
| 30 | + { | |
| 31 | + bool ok; | |
| 32 | + QList<float> values; | |
| 33 | + foreach (const QString &value, *this) { | |
| 34 | + values.append(value.toFloat(&ok)); | |
| 35 | + if (!ok) | |
| 36 | + qFatal("Can't normalize non-numeric vector!"); | |
| 37 | + } | |
| 38 | + | |
| 39 | + Attribute normal(name); | |
| 40 | + float sum = Common::Sum(values); | |
| 41 | + if (sum == 0) sum = 1; | |
| 42 | + for (int i=0; i<values.size(); i++) | |
| 43 | + normal.append(QString::number(values[i] / sum)); | |
| 44 | + return normal; | |
| 45 | + } | |
| 46 | + }; | |
| 47 | + | |
| 48 | + TemplateList readBlock(bool *done) | |
| 49 | + { | |
| 50 | + *done = true; | |
| 51 | + QStringList lines = QtUtils::readLines(file); | |
| 52 | + QList<Attribute> headers; | |
| 53 | + if (!lines.isEmpty()) | |
| 54 | + foreach (const QString &header, parse(lines.takeFirst())) | |
| 55 | + headers.append(header); | |
| 56 | + | |
| 57 | + TemplateList templates; | |
| 58 | + foreach (const QString &line, lines) { | |
| 59 | + QStringList words = parse(line); | |
| 60 | + if (words.size() != headers.size()) | |
| 61 | + qFatal("turkGallery invalid column count"); | |
| 62 | + | |
| 63 | + File f; | |
| 64 | + f.name = words[0]; | |
| 65 | + f.set("Label", words[0].mid(0,5)); | |
| 66 | + | |
| 67 | + for (int i=1; i<words.size(); i++) { | |
| 68 | + Attribute ratings = Attribute(words[i]).normalized(); | |
| 69 | + if (headers[i].size() != ratings.size()) | |
| 70 | + qFatal("turkGallery invalid attribute count"); | |
| 71 | + for (int j=0; j<ratings.size(); j++) | |
| 72 | + f.set(headers[i].name + "_" + headers[i][j], ratings[j]); | |
| 73 | + } | |
| 74 | + templates.append(f); | |
| 75 | + } | |
| 76 | + | |
| 77 | + return templates; | |
| 78 | + } | |
| 79 | + | |
| 80 | + void write(const Template &) | |
| 81 | + { | |
| 82 | + qFatal("turkGallery write not implemented."); | |
| 83 | + } | |
| 84 | +}; | |
| 85 | + | |
| 86 | +BR_REGISTER(Gallery, turkGallery) | |
| 87 | + | |
| 88 | +/*! | |
| 89 | + * \ingroup transforms | |
| 90 | + * \brief Convenience class for training turk attribute regressors | |
| 91 | + * \author Josh Klontz \cite jklontz | |
| 92 | + */ | |
| 93 | +class TurkClassifierTransform : public Transform | |
| 94 | +{ | |
| 95 | + Q_OBJECT | |
| 96 | + Q_PROPERTY(QString key READ get_key WRITE set_key RESET reset_key STORED false) | |
| 97 | + Q_PROPERTY(QStringList values READ get_values WRITE set_values RESET reset_values STORED false) | |
| 98 | + Q_PROPERTY(bool isMeta READ get_isMeta WRITE set_isMeta RESET reset_isMeta STORED false) | |
| 99 | + BR_PROPERTY(QString, key, QString()) | |
| 100 | + BR_PROPERTY(QStringList, values, QStringList()) | |
| 101 | + BR_PROPERTY(bool, isMeta, false) | |
| 102 | + | |
| 103 | + Transform *child; | |
| 104 | + | |
| 105 | + void init() | |
| 106 | + { | |
| 107 | + QStringList classifiers; | |
| 108 | + foreach (const QString &value, values) | |
| 109 | + classifiers.append(QString("(SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=%1,outputVariable=predicted_%1)%2)").arg(key + "_" + value, isMeta ? QString("+Average+SaveMat(predicted_%1)").arg(value) : QString())); | |
| 110 | + child = Transform::make(classifiers.join("/") + (classifiers.size() > 1 ? "+Cat" : "")); | |
| 111 | + } | |
| 112 | + | |
| 113 | + void train(const QList<TemplateList> &data) | |
| 114 | + { | |
| 115 | + child->train(data); | |
| 116 | + } | |
| 117 | + | |
| 118 | + void project(const Template &src, Template &dst) const | |
| 119 | + { | |
| 120 | + child->project(src, dst); | |
| 121 | + } | |
| 122 | + | |
| 123 | + void store(QDataStream &stream) const | |
| 124 | + { | |
| 125 | + child->store(stream); | |
| 126 | + } | |
| 127 | + | |
| 128 | + void load(QDataStream &stream) | |
| 129 | + { | |
| 130 | + child->load(stream); | |
| 131 | + } | |
| 132 | +}; | |
| 133 | + | |
| 134 | +BR_REGISTER(Transform, TurkClassifierTransform) | |
| 135 | + | |
| 136 | +/*! | |
| 137 | + * \ingroup distances | |
| 138 | + * \brief Unmaps Turk HITs to be compared against query mats | |
| 139 | + * \author Scott Klum \cite sklum | |
| 140 | + */ | |
| 141 | +class TurkDistance : public Distance | |
| 142 | +{ | |
| 143 | + Q_OBJECT | |
| 144 | + Q_PROPERTY(QString key READ get_key WRITE set_key RESET reset_key) | |
| 145 | + Q_PROPERTY(QStringList values READ get_values WRITE set_values RESET reset_values STORED false) | |
| 146 | + BR_PROPERTY(QString, key, QString()) | |
| 147 | + BR_PROPERTY(QStringList, values, QStringList()) | |
| 148 | + | |
| 149 | + bool targetHuman; | |
| 150 | + bool queryMachine; | |
| 151 | + | |
| 152 | + void init() | |
| 153 | + { | |
| 154 | + targetHuman = Globals->property("TurkTargetHuman").toBool(); | |
| 155 | + queryMachine = Globals->property("TurkQueryMachine").toBool(); | |
| 156 | + } | |
| 157 | + | |
| 158 | + cv::Mat getValues(const Template &t) const | |
| 159 | + { | |
| 160 | + QList<float> result; | |
| 161 | + foreach (const QString &value, values) | |
| 162 | + result.append(t.file.get<float>(key + "_" + value)); | |
| 163 | + return OpenCVUtils::toMat(result, 1); | |
| 164 | + } | |
| 165 | + | |
| 166 | + float compare(const Template &target, const Template &query) const | |
| 167 | + { | |
| 168 | + const cv::Mat a = targetHuman ? getValues(target) : target.m(); | |
| 169 | + const cv::Mat b = queryMachine ? query.m() : getValues(query); | |
| 170 | + return -norm(a, b, cv::NORM_L1); | |
| 171 | + } | |
| 172 | +}; | |
| 173 | + | |
| 174 | +BR_REGISTER(Distance, TurkDistance) | |
| 175 | + | |
| 176 | +/*! | |
| 177 | + * \ingroup initializers | |
| 178 | + * \brief Initializes global abbreviations with implemented algorithms for attributes | |
| 179 | + * \author Babatunde Ogunfemi \cite baba1472 | |
| 180 | + */ | |
| 181 | +class AttributeAlgorithmsInitializer : public Initializer | |
| 182 | +{ | |
| 183 | + Q_OBJECT | |
| 184 | + | |
| 185 | + void initialize() const | |
| 186 | + { | |
| 187 | + // Constants | |
| 188 | + 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)])"; | |
| 189 | + 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)"; | |
| 190 | + | |
| 191 | + QString NOSE="RectFromStasmNoseWithBridge+ROI+Resize(36,24)+" + SUBSPACE; | |
| 192 | + QString MOUTH="RectFromStasmMouth+ROI+Resize(24,36)+" + SUBSPACE; | |
| 193 | + QString EYES="RectFromStasmEyes+ROI+Resize(24,36)+" + SUBSPACE; | |
| 194 | + QString HAIR="RectFromStasmHair+ROI+Resize(24,36)+" + SUBSPACE; | |
| 195 | + QString BROW="RectFromStasmBrow+ROI+Resize(24,36)+" + SUBSPACE; | |
| 196 | + QString JAW="RectFromStasmJaw+ROI+Resize(36,36)+" + SUBSPACE; | |
| 197 | + QString FACE = "Crop(24,30,144,190)+Resize(36,36)+" + SUBSPACE; | |
| 198 | + | |
| 199 | + // All Attributes | |
| 200 | + Globals->abbreviations.insert("AllAttributes", "AttributeBrow/AttributeMouth/AttributeEyes/AttributeFace/AttributeHair/AttributeNose/AttributeJaw"); | |
| 201 | + Globals->abbreviations.insert("AllAttributesMatching", "(AttributeBrow)/(AttributeMouth)/(AttributeEyes)/(AttributeFace)/(AttributeHair)/(AttributeNose)/(AttributeJaw):AttributeMatch"); | |
| 202 | + | |
| 203 | + //Individual Attributes | |
| 204 | + Globals->abbreviations.insert("AttributeBrow", "(" + BASE+ "+" + BROW + "+" | |
| 205 | + "TurkClassifier(eyebrowposition,[closebrows,highbrows],3)/" | |
| 206 | + "TurkClassifier(unibrow,[unibrow],3)/" | |
| 207 | + "TurkClassifier(eyebroworientation,[eyebrowsdown,eyebrowsuptodown],3)/" | |
| 208 | + "TurkClassifier(thickeyebrows,[thickeyebrows,lighteyebrows],3))"); | |
| 209 | + Globals->abbreviations.insert("AttributeMouth", "(" + BASE + "+" + MOUTH + "+" | |
| 210 | + "TurkClassifier(smiling,[smiling],3)/" | |
| 211 | + "TurkClassifier(lipthickness,[cherry,big,small],3)/" | |
| 212 | + "TurkClassifier(mouthbite,[underbite,overbite],3)/" | |
| 213 | + "TurkClassifier(mouthopen,[closed,noteeth,halfteeth,allteeth],3)/" | |
| 214 | + "TurkClassifier(mouthwidth,[small,wide],3)/" | |
| 215 | + "TurkClassifier(mustache,[nomustache,linemustache,lightmustache,normalmustache,down],3)/" | |
| 216 | + "TurkClassifier(mouthasymmetry,[asymmetrical],3))"); | |
| 217 | + Globals->abbreviations.insert("AttributeEyes", "(" + BASE + "+" + EYES + "+ " | |
| 218 | + "TurkClassifier(eyeseparation,[close,wide],3)/" | |
| 219 | + "TurkClassifier(eyeslant,[slant2,slant1,wild],3)/" | |
| 220 | + "TurkClassifier(benteyes,[bent])/" | |
| 221 | + "TurkClassifier(eyecolor,[darkeyes,lighteyes],3)/" | |
| 222 | + "TurkClassifier(baggyeyes,[baggy],3)/" | |
| 223 | + "TurkClassifier(almondeyes,[almond],3)/" | |
| 224 | + "TurkClassifier(buriedeyes,[buriedeyes],3)/" | |
| 225 | + "TurkClassifier(sleepyeyes,[sleepy],3)/" | |
| 226 | + "TurkClassifier(lineeyes,[line],3)/" | |
| 227 | + "TurkClassifier(roundeyes,[round],3)/" | |
| 228 | + "TurkClassifier(sharpeyes,[sharp],3)/" | |
| 229 | + "TurkClassifier(smalleyes,[smalleyes],3)/" | |
| 230 | + "TurkClassifier(glasses,[glasses],3)/" | |
| 231 | + "TurkClassifier(eyelashvisibility,[feweyelashes],3))"); | |
| 232 | + Globals->abbreviations.insert("AttributeFace", "(" + BASE + "+" + FACE + "+" | |
| 233 | + "TurkClassifier(gender,[male],3)/" | |
| 234 | + "TurkClassifier(faceshape,[round,triangular,rectangular],3)/" | |
| 235 | + "TurkClassifier(cheekdensity,[puffy,in,normal],3)/" | |
| 236 | + "TurkClassifier(facemarks,[scars,moles,normal],3)/" | |
| 237 | + "TurkClassifier(facelength,[long],3)/" | |
| 238 | + "TurkClassifier(nosetoeyedist,[short,long],3)/" | |
| 239 | + "TurkClassifier(nosetomouthdist,[long,small],3))"); | |
| 240 | + Globals->abbreviations.insert("AttributeHair", "(" + BASE + "+" + HAIR + "+" | |
| 241 | + "TurkClassifier(foreheadwrinkles,[wrinkled],3)/" | |
| 242 | + "TurkClassifier(foreheadsize,[smallforehead,largeforehead],3)/" | |
| 243 | + "TurkClassifier(haircolor,[darkhair,lighthair,greyhair],3)/" | |
| 244 | + "TurkClassifier(hairdensity,[thick,bald,thin,halfbald],3)/" | |
| 245 | + "TurkClassifier(widowspeak,[widowspeak],3)/" | |
| 246 | + "TurkClassifier(hairstyle,[curlyhair],3))"); | |
| 247 | + Globals->abbreviations.insert("AttributeNose", "(" + BASE + "+" + NOSE + "+" | |
| 248 | + "TurkClassifier(noseorientation,[upnose,downnose],3)/" | |
| 249 | + "TurkClassifier(nosewidth,[small,thick],3)/" | |
| 250 | + "TurkClassifier(nosesize,[smallnose,bignose],3)/" | |
| 251 | + "TurkClassifier(brokennose,[broken],3))"); | |
| 252 | + Globals->abbreviations.insert("AttributeJaw", "(" + BASE + "+" + JAW + "+" | |
| 253 | + "TurkClassifier(beard,[nobeard,bigbeard,lightbeard,goatee,linebeard,normalbeard,lincolnbeard],3)/" | |
| 254 | + "TurkClassifier(chinsize,[shortchin,longchin],3))"); | |
| 255 | + Globals->abbreviations.insert("AttributeMatch", "Fuse([" | |
| 256 | + "Turk(eyebrowposition,[closebrows,highbrows],3)," | |
| 257 | + "Turk(unibrow,[unibrow],3)," | |
| 258 | + "Turk(eyebroworientation,[eyebrowsdown,eyebrowsuptodown],3)," | |
| 259 | + "Turk(thickeyebrows,[thickeyebrows,lighteyebrows],3)," | |
| 260 | + "Turk(smiling,[smiling],3)," | |
| 261 | + "Turk(lipthickness,[cherry,big,small],3)," | |
| 262 | + "Turk(mouthbite,[underbite,overbite],3)," | |
| 263 | + "Turk(mouthopen,[closed,noteeth,halfteeth,allteeth],3)," | |
| 264 | + "Turk(mouthwidth,[small,wide],3)," | |
| 265 | + "Turk(mustache,[nomustache,linemustache,lightmustache,normalmustache,down],3)," | |
| 266 | + "Turk(mouthasymmetry,[asymmetrical],3)," | |
| 267 | + "Turk(eyeseparation,[close,wide],3)," | |
| 268 | + "Turk(eyeslant,[slant2,slant1,wild],3)," | |
| 269 | + "Turk(benteyes,[bent],3)," | |
| 270 | + "Turk(eyecolor,[darkeyes,lighteyes],3)," | |
| 271 | + "Turk(baggyeyes,[baggy],3)," | |
| 272 | + "Turk(almondeyes,[almond],3)," | |
| 273 | + "Turk(buriedeyes,[buriedeyes],3)," | |
| 274 | + "Turk(sleepyeyes,[sleepy],3)," | |
| 275 | + "Turk(lineeyes,[line],3)," | |
| 276 | + "Turk(roundeyes,[round],3)," | |
| 277 | + "Turk(sharpeyes,[sharp],3)," | |
| 278 | + "Turk(smalleyes,[smalleyes],3)," | |
| 279 | + "Turk(glasses,[glasses],3)," | |
| 280 | + "Turk(eyelashvisibility,[feweyelashes],3)," | |
| 281 | + "Turk(gender,[male],3)," | |
| 282 | + "Turk(faceshape,[round,triangular,rectangular],3)," | |
| 283 | + "Turk(cheekdensity,[puffy,in,normal],3)," | |
| 284 | + "Turk(facemarks,[scars,moles,normal],3)," | |
| 285 | + "Turk(facelength,[long],3)," | |
| 286 | + "Turk(nosetoeyedist,[short,long],3)," | |
| 287 | + "Turk(nosetomouthdist,[long,small],3)," | |
| 288 | + "Turk(foreheadwrinkles,[wrinkled],3)," | |
| 289 | + "Turk(foreheadsize,[smallforehead,largeforehead],3)," | |
| 290 | + "Turk(haircolor,[darkhair,lighthair,greyhair],3)," | |
| 291 | + "Turk(hairdensity,[thick,bald,thin,halfbald],3)," | |
| 292 | + "Turk(widowspeak,[widowspeak],3)," | |
| 293 | + "Turk(hairstyle,[curlyhair],3)," | |
| 294 | + "Turk(noseorientation,[upnose,downnose],3)," | |
| 295 | + "Turk(nosewidth,[small,thick],3)," | |
| 296 | + "Turk(nosesize,[smallnose,bignose],3)," | |
| 297 | + "Turk(brokennose,[broken],3)," | |
| 298 | + "Turk(beard,[nobeard,bigbeard,lightbeard,goatee,linebeard,normalbeard,lincolnbeard],3)," | |
| 299 | + "Turk(chinsize,[shortchin,longchin],3)])"); | |
| 300 | + } | |
| 301 | +}; | |
| 302 | + | |
| 303 | +BR_REGISTER(Initializer, AttributeAlgorithmsInitializer) | |
| 304 | + | |
| 305 | +} // namespace br | |
| 306 | + | |
| 307 | +#include "turk.moc" | ... | ... |
scripts/attributes.sh
0 → 100755
| 1 | +#!/bin/bash | |
| 2 | + | |
| 3 | +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)])" | |
| 4 | +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)" | |
| 5 | + | |
| 6 | +NOSE="RectFromStasmNoseWithBridge+ROI+Resize(36,24)+$SUBSPACE" | |
| 7 | +MOUTH="RectFromStasmMouth+ROI+Resize(24,36)+$SUBSPACE" | |
| 8 | +EYES="RectFromStasmEyes+ROI+Resize(24,36)+$SUBSPACE" | |
| 9 | +HAIR="RectFromStasmHair+ROI+Resize(24,36)+$SUBSPACE" | |
| 10 | +BROW="RectFromStasmBrow+ROI+Resize(24,36)+$SUBSPACE" | |
| 11 | +JAW="RectFromStasmJaw+ROI+Resize(36,36)+$SUBSPACE" | |
| 12 | +FACE="Crop(24,30,144,190)+Resize(36,36)+$SUBSPACE" | |
| 13 | + | |
| 14 | +ATTDIR=Attributes | |
| 15 | +mkdir -p $ATTDIR | |
| 16 | + | |
| 17 | +# Provide a sensible default value for DATA if undefined | |
| 18 | +DATA=${DATA:-~/data/CUHK-VHDC} | |
| 19 | + | |
| 20 | +if [ ! -f $ATTDIR/all.model ]; then | |
| 21 | + br -crossValidate 2 -algorithm "CrossValidate($BASE+ \ | |
| 22 | + ($BROW+ \ | |
| 23 | + TurkClassifier(eyebrowposition,[closebrows,highbrows],3)/ \ | |
| 24 | + TurkClassifier(unibrow,[unibrow],3)/ \ | |
| 25 | + TurkClassifier(eyebroworientation,[eyebrowsdown,eyebrowsuptodown],3)/ \ | |
| 26 | + TurkClassifier(thickeyebrows,[thickeyebrows,lighteyebrows],3))/ \ | |
| 27 | + ($MOUTH+ \ | |
| 28 | + TurkClassifier(smiling,[smiling],3)/ \ | |
| 29 | + TurkClassifier(lipthickness,[cherry,big,small],3)/ \ | |
| 30 | + TurkClassifier(mouthbite,[underbite,overbite],3)/ \ | |
| 31 | + TurkClassifier(mouthopen,[closed,noteeth,halfteeth,allteeth],3)/ \ | |
| 32 | + TurkClassifier(mouthwidth,[small,wide],3)/ \ | |
| 33 | + TurkClassifier(mustache,[nomustache,linemustache,lightmustache,normalmustache,down],3)/ \ | |
| 34 | + TurkClassifier(mouthasymmetry,[asymmetrical],3))/ \ | |
| 35 | + ($EYES+ \ | |
| 36 | + TurkClassifier(eyeseparation,[close,wide],3)/ \ | |
| 37 | + TurkClassifier(eyeslant,[slant2,slant1,wild],3)/ \ | |
| 38 | + TurkClassifier(benteyes,[bent])/ \ | |
| 39 | + TurkClassifier(eyecolor,[darkeyes,lighteyes],3)/ \ | |
| 40 | + TurkClassifier(baggyeyes,[baggy],3)/ \ | |
| 41 | + TurkClassifier(almondeyes,[almond],3)/ \ | |
| 42 | + TurkClassifier(buriedeyes,[buriedeyes],3)/ \ | |
| 43 | + TurkClassifier(sleepyeyes,[sleepy],3)/ \ | |
| 44 | + TurkClassifier(lineeyes,[line],3)/ \ | |
| 45 | + TurkClassifier(roundeyes,[round],3)/ \ | |
| 46 | + TurkClassifier(sharpeyes,[sharp],3)/ \ | |
| 47 | + TurkClassifier(smalleyes,[smalleyes],3)/ \ | |
| 48 | + TurkClassifier(glasses,[glasses],3)/ \ | |
| 49 | + TurkClassifier(eyelashvisibility,[feweyelashes],3))/ \ | |
| 50 | + ($FACE+ \ | |
| 51 | + TurkClassifier(gender,[male],3)/ \ | |
| 52 | + TurkClassifier(faceshape,[round,triangular,rectangular],3)/ \ | |
| 53 | + TurkClassifier(cheekdensity,[puffy,in,normal],3)/ \ | |
| 54 | + TurkClassifier(facemarks,[scars,moles,normal],3)/ \ | |
| 55 | + TurkClassifier(facelength,[long],3)/ \ | |
| 56 | + TurkClassifier(nosetoeyedist,[short,long],3)/ \ | |
| 57 | + TurkClassifier(nosetomouthdist,[long,small],3))/ \ | |
| 58 | + ($HAIR+ \ | |
| 59 | + TurkClassifier(foreheadwrinkles,[wrinkled],3)/ \ | |
| 60 | + TurkClassifier(foreheadsize,[smallforehead,largeforehead],3)/ \ | |
| 61 | + TurkClassifier(haircolor,[darkhair,lighthair,greyhair],3)/ \ | |
| 62 | + TurkClassifier(hairdensity,[thick,bald,thin,halfbald],3)/ \ | |
| 63 | + TurkClassifier(widowspeak,[widowspeak],3)/ \ | |
| 64 | + TurkClassifier(hairstyle,[curlyhair],3))/ \ | |
| 65 | + ($NOSE+ \ | |
| 66 | + TurkClassifier(noseorientation,[upnose,downnose],3)/ \ | |
| 67 | + TurkClassifier(nosewidth,[small,thick],3)/ \ | |
| 68 | + TurkClassifier(nosesize,[smallnose,bignose],3)/ \ | |
| 69 | + TurkClassifier(brokennose,[broken],3))/ \ | |
| 70 | + ($JAW+ \ | |
| 71 | + TurkClassifier(beard,[nobeard,bigbeard,lightbeard,goatee,linebeard,normalbeard,lincolnbeard],3)/ \ | |
| 72 | + TurkClassifier(chinsize,[shortchin,longchin],3)) \ | |
| 73 | + ): \ | |
| 74 | +CrossValidate+Fuse([ \ | |
| 75 | +Turk(eyebrowposition,[closebrows,highbrows],3), \ | |
| 76 | +Turk(unibrow,[unibrow],3), \ | |
| 77 | +Turk(eyebroworientation,[eyebrowsdown,eyebrowsuptodown],3), \ | |
| 78 | +Turk(thickeyebrows,[thickeyebrows,lighteyebrows],3), \ | |
| 79 | +Turk(smiling,[smiling],3), \ | |
| 80 | +Turk(lipthickness,[cherry,big,small],3), \ | |
| 81 | +Turk(mouthbite,[underbite,overbite],3), \ | |
| 82 | +Turk(mouthopen,[closed,noteeth,halfteeth,allteeth],3), \ | |
| 83 | +Turk(mouthwidth,[small,wide],3), \ | |
| 84 | +Turk(mustache,[nomustache,linemustache,lightmustache,normalmustache,down],3), \ | |
| 85 | +Turk(mouthasymmetry,[asymmetrical],3), \ | |
| 86 | +Turk(eyeseparation,[close,wide],3), \ | |
| 87 | +Turk(eyeslant,[slant2,slant1,wild],3), \ | |
| 88 | +Turk(benteyes,[bent],3), \ | |
| 89 | +Turk(eyecolor,[darkeyes,lighteyes],3), \ | |
| 90 | +Turk(baggyeyes,[baggy],3), \ | |
| 91 | +Turk(almondeyes,[almond],3), \ | |
| 92 | +Turk(buriedeyes,[buriedeyes],3), \ | |
| 93 | +Turk(sleepyeyes,[sleepy],3), \ | |
| 94 | +Turk(lineeyes,[line],3), \ | |
| 95 | +Turk(roundeyes,[round],3), \ | |
| 96 | +Turk(sharpeyes,[sharp],3), \ | |
| 97 | +Turk(smalleyes,[smalleyes],3), \ | |
| 98 | +Turk(glasses,[glasses],3), \ | |
| 99 | +Turk(eyelashvisibility,[feweyelashes],3), \ | |
| 100 | +Turk(gender,[male],3), \ | |
| 101 | +Turk(faceshape,[round,triangular,rectangular],3), \ | |
| 102 | +Turk(cheekdensity,[puffy,in,normal],3), \ | |
| 103 | +Turk(facemarks,[scars,moles,normal],3), \ | |
| 104 | +Turk(facelength,[long],3), \ | |
| 105 | +Turk(nosetoeyedist,[short,long],3), \ | |
| 106 | +Turk(nosetomouthdist,[long,small],3), \ | |
| 107 | +Turk(foreheadwrinkles,[wrinkled],3), \ | |
| 108 | +Turk(foreheadsize,[smallforehead,largeforehead],3), \ | |
| 109 | +Turk(haircolor,[darkhair,lighthair,greyhair],3), \ | |
| 110 | +Turk(hairdensity,[thick,bald,thin,halfbald],3), \ | |
| 111 | +Turk(widowspeak,[widowspeak],3), \ | |
| 112 | +Turk(hairstyle,[curlyhair],3), \ | |
| 113 | +Turk(noseorientation,[upnose,downnose],3), \ | |
| 114 | +Turk(nosewidth,[small,thick],3), \ | |
| 115 | +Turk(nosesize,[smallnose,bignose],3), \ | |
| 116 | +Turk(brokennose,[broken],3), \ | |
| 117 | +Turk(beard,[nobeard,bigbeard,lightbeard,goatee,linebeard,normalbeard,lincolnbeard],3), \ | |
| 118 | +Turk(chinsize,[shortchin,longchin],3)])" \ | |
| 119 | +-path $DATA/CUFSF/target/ -train results1194v2.turk $ATTDIR/all.model | |
| 120 | +fi | |
| 121 | + | |
| 122 | +br -crossValidate 2 -path $DATA/CUFSF/target/ -algorithm $ATTDIR/all.model -compare results1194v2.turk results1194v2.turk $ATTDIR/all.mtx | |
| 123 | +br -crossValidate 2 -setHeader $ATTDIR/all.mtx $DATA/CUFSF/target.xml $DATA/CUFSF/query.xml | |
| 124 | +br -crossValidate 2 -convert Output $ATTDIR/all.mtx $ATTDIR/all_CUFSF%1.eval | |
| 125 | +br -plot $ATTDIR/all_CUFSF* results.pdf | ... | ... |
scripts/attributesTorque.sh
0 → 100755
| 1 | +#!/bin/bash | |
| 2 | + | |
| 3 | + | |
| 4 | +SUBSPACE=$1 | |
| 5 | +NAME=$2 | |
| 6 | +DATA=$3 | |
| 7 | + | |
| 8 | +ROOT=/data2/pattrec/home/bklare/src/openbr/scripts | |
| 9 | +BR="/data2/pattrec/home/bklare/src/openbr/build/app/br/br" | |
| 10 | +#SUBSPACE="CvtFloat+PCA(0.95)+Center(Range)" | |
| 11 | + | |
| 12 | +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)])" | |
| 13 | +NOSE="RectFromStasmNoseWithBridge+ROI+Resize(36,24)+$SUBSPACE" | |
| 14 | +MOUTH="RectFromStasmMouth+ROI+Resize(24,36)+$SUBSPACE" | |
| 15 | +EYES="RectFromStasmEyes+ROI+Resize(24,36)+$SUBSPACE" | |
| 16 | +HAIR="RectFromStasmHair+ROI+Resize(24,36)+$SUBSPACE" | |
| 17 | +BROW="RectFromStasmBrow+ROI+Resize(24,36)+$SUBSPACE" | |
| 18 | +JAW="RectFromStasmJaw+ROI+Resize(36,36)+$SUBSPACE" | |
| 19 | +FACE="Crop(24,30,144,190)+Resize(36,36)+$SUBSPACE" | |
| 20 | + | |
| 21 | +mkdir $NAME | |
| 22 | + | |
| 23 | +if [ ! -f $NAME/all.model ]; then | |
| 24 | + ${BR} -crossValidate 2 -algorithm "CrossValidate($BASE+ \ | |
| 25 | +($BROW+ \ | |
| 26 | +(Turk(unibrow,3)+SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=unibrow,outputVariable=predicted_unibrow)+Cat)/ \ | |
| 27 | +(Turk(eyebroworientation,3)+SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=eyebrowsdown,outputVariable=predicted_eyebrowsdown)/ \ | |
| 28 | +SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=eyebrowsuptodown,outputVariable=predicted_eyebrowsuptodown)+Cat)/ \ | |
| 29 | +(Turk(thickeyebrows,3)+SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=thickeyebrows,outputVariable=predicted_thickeyebrows)/ \ | |
| 30 | +SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=lighteyebrows,outputVariable=predicted_lighteyebrows)+Cat))/ \ | |
| 31 | +($MOUTH+ \ | |
| 32 | +(Turk(smiling,3)+SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=smiling,outputVariable=predicted_smiling)+Cat)/ \ | |
| 33 | +(Turk(mouthasymmetry,3)+SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=asymmetrical,outputVariable=predicted_asymmetrical)+Cat))/ \ | |
| 34 | +($EYES+ \ | |
| 35 | +(Turk(eyecolor,3)+SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=darkeyes,outputVariable=predicted_darkeyes)/ \ | |
| 36 | +SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=lighteyes,outputVariable=predicted_lighteyes)+Cat)/ \ | |
| 37 | +(Turk(baggyeyes,3)+SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=baggy,outputVariable=predicted_baggy)+Cat)/ \ | |
| 38 | +(Turk(almondeyes,3)+SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=almond,outputVariable=predicted_almond)+Cat)/ \ | |
| 39 | +(Turk(buriedeyes,3)+SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=buriedeyes,outputVariable=predicted_buriedeyes)+Cat)/ \ | |
| 40 | +(Turk(sleepyeyes,3)+SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=sleepy,outputVariable=predicted_sleepy)+Cat)/ \ | |
| 41 | +(Turk(lineeyes,3)+SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=line,outputVariable=predicted_line)+Cat)/ \ | |
| 42 | +(Turk(roundeyes,3)+SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=round,outputVariable=predicted_round)+Cat)/ \ | |
| 43 | +(Turk(smalleyes,3)+SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=smalleyes,outputVariable=predicted_smalleyes)+Cat)/ \ | |
| 44 | +(Turk(glasses,3)+SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=glasses,outputVariable=predicted_glasses)+Cat)/ \ | |
| 45 | +(Turk(eyelashvisibility,3)+SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=feweyelashes,outputVariable=predicted_feweyelashes)+Cat))/ \ | |
| 46 | +($FACE+ \ | |
| 47 | +(Turk(gender,3)+SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=male,outputVariable=predicted_male)+Cat)/ \ | |
| 48 | +(Turk(cheekdensity,3)+SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=puffy,outputVariable=predicted_puffy)/ \ | |
| 49 | +SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=in,outputVariable=predicted_in)/ \ | |
| 50 | +SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=normal,outputVariable=predicted_normal)+Cat)/ \ | |
| 51 | +(Turk(facemarks,3)+SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=scars,outputVariable=predicted_scars)/ \ | |
| 52 | +SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=moles,outputVariable=predicted_moles)/ \ | |
| 53 | +SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=normal,outputVariable=predicted_normal)+Cat)/ \ | |
| 54 | +(Turk(facelength,3)+SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=long,outputVariable=predicted_long)+Cat)/ \ | |
| 55 | +(Turk(nosetomouthdist,3)+SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=long,outputVariable=predicted_long)/ \ | |
| 56 | +SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=small,outputVariable=predicted_small)+Cat))/ \ | |
| 57 | +($HAIR+ \ | |
| 58 | +(Turk(foreheadwrinkles,3)+SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=wrinkled,outputVariable=predicted_wrinkled)+Cat)/ \ | |
| 59 | +(Turk(haircolor,3)+SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=darkhair,outputVariable=predicted_darkhair)/ \ | |
| 60 | +SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=lighthair,outputVariable=predicted_lighthair)/ \ | |
| 61 | +SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=greyhair,outputVariable=predicted_greyhair)+Cat)/ \ | |
| 62 | +(Turk(hairstyle,3)+SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=curlyhair,outputVariable=predicted_curlyhair)+Cat))/ \ | |
| 63 | +($NOSE+ \ | |
| 64 | +(Turk(noseorientation,3)+SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=upnose,outputVariable=predicted_upnose)/ \ | |
| 65 | +SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=downnose,outputVariable=predicted_downnose)+Cat)/ \ | |
| 66 | +(Turk(nosewidth,3)+SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=small,outputVariable=predicted_small)/ \ | |
| 67 | +SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=thick,outputVariable=predicted_thick)+Cat)/ \ | |
| 68 | +(Turk(nosesize,3)+SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=smallnose,outputVariable=predicted_smallnose)/ \ | |
| 69 | +SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=bignose,outputVariable=predicted_bignose)+Cat))/ \ | |
| 70 | +($JAW+ \ | |
| 71 | +(Turk(chinsize,3)+SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=shortchin,outputVariable=predicted_shortchin)/ \ | |
| 72 | +SVM(RBF,EPS_SVR,returnDFVal=true,inputVariable=longchin,outputVariable=predicted_longchin))+Cat)): \ | |
| 73 | +CrossValidate+Fuse([ \ | |
| 74 | +Turk(unibrow,[unibrow],3), \ | |
| 75 | +Turk(eyebroworientation,[eyebrowsdown,eyebrowsuptodown],3), \ | |
| 76 | +Turk(thickeyebrows,[thickeyebrows,lighteyebrows],3), \ | |
| 77 | +Turk(smiling,[smiling],3), \ | |
| 78 | +Turk(mouthasymmetry,[asymmetrical],3), \ | |
| 79 | +Turk(eyecolor,[darkeyes,lighteyes],3), \ | |
| 80 | +Turk(baggyeyes,[baggy],3), \ | |
| 81 | +Turk(almondeyes,[almond],3), \ | |
| 82 | +Turk(buriedeyes,[buriedeyes],3), \ | |
| 83 | +Turk(sleepyeyes,[sleepy],3), \ | |
| 84 | +Turk(lineeyes,[line],3), \ | |
| 85 | +Turk(roundeyes,[round],3), \ | |
| 86 | +Turk(smalleyes,[smalleyes],3), \ | |
| 87 | +Turk(glasses,[glasses],3), \ | |
| 88 | +Turk(cheekdensity,[puffy,in,normal],3), \ | |
| 89 | +Turk(facemarks,[scars,moles,normal],3), \ | |
| 90 | +Turk(facelength,[long],3), \ | |
| 91 | +Turk(nosetomouthdist,[long,small],3), \ | |
| 92 | +Turk(foreheadwrinkles,[wrinkled],3), \ | |
| 93 | +Turk(haircolor,[darkhair,lighthair,greyhair],3), \ | |
| 94 | +Turk(hairstyle,[curlyhair],3), \ | |
| 95 | +Turk(noseorientation,[upnose,downnose],3), \ | |
| 96 | +Turk(nosewidth,[small,thick],3), \ | |
| 97 | +Turk(nosesize,[smallnose,bignose],3), \ | |
| 98 | +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])" \ | |
| 99 | +-path $DATA/CUFSF/target/ -train results1194v2.turk $NAME/all.model | |
| 100 | +fi | |
| 101 | + | |
| 102 | +${BR} -crossValidate 2 -path $DATA/CUFSF/target/ -algorithm $NAME/all.model -compare results1194v2.turk results1194v2.turk $NAME/all.mtx | |
| 103 | + | |
| 104 | +${BR} -crossValidate 2 -setHeader $NAME/all.mtx $DATA/CUFSF/target.xml $DATA/CUFSF/query.xml | |
| 105 | +${BR} -crossValidate 2 -convert Output $NAME/all.mtx $NAME/all.rank | |
| 106 | +${BR} -crossValidate 2 -convert Output $NAME/all.mtx $NAME/all_CUFSF%1.eval | ... | ... |
scripts/attributesWeighted.py
0 → 100644
| 1 | +import os | |
| 2 | +import sys | |
| 3 | + | |
| 4 | +if not (len(sys.argv)) == 3: | |
| 5 | + print("ERROR: Input requires 3 parameters\nUsage: attributesWeighted.py <min-weight-FR> <max-weight-FR>") | |
| 6 | +else: | |
| 7 | + mask = "MEDS.mask" | |
| 8 | + fr_matrix = "faceRecognition.mtx" | |
| 9 | + attr_matrix = "attributes.mtx" | |
| 10 | + min_weight = sys.argv[1] | |
| 11 | + max_weight = sys.argv[2] | |
| 12 | + constant = 1 | |
| 13 | + | |
| 14 | + if not os.path.isfile(mask): | |
| 15 | + print("ERROR: No mask found, run compareFaceRecognitionToAttributes.py first then try again") | |
| 16 | + elif not os.path.isfile(fr_matrix): | |
| 17 | + print("ERROR: No face recognition matrix found, run compareFaceRecognitionToAttributes.py first then try again") | |
| 18 | + elif not os.path.isfile(attr_matrix): | |
| 19 | + print("ERROR: No attributes matrix found, run compareFaceRecognitionToAttributes.py first then try again") | |
| 20 | + else: | |
| 21 | + for i in range(int(min_weight), int(max_weight)): | |
| 22 | + print("Using weights " + str(i) + ":" + str(constant)) | |
| 23 | + os.system("br -fuse " + fr_matrix + " " + attr_matrix + " ZScore Sum" + str(i) + ":" + str(constant) + " weightedFusion.mtx") | |
| 24 | + os.system("br -eval weightedFusion.mtx " + mask + " weightedFusion.csv") | |
| 25 | + os.system("br -eval faceRecognition.mtx " + mask + " faceRecognition.csv") | |
| 26 | + os.system("br -eval attributes.mtx " + mask + " attributes.csv") | |
| 27 | + os.system("br -plot faceRecognition.csv attributes.csv weightedFusion.csv weightedFusion_" + str(i) + ".pdf") | ... | ... |
scripts/compareFaceRecognionToAttributes.py
0 → 100755
| 1 | +import os | |
| 2 | +import sys | |
| 3 | + | |
| 4 | +if not (len(sys.argv) == 2 or len(sys.argv) == 4): | |
| 5 | + print("ERROR: Input requires 1 or 3 input parameters\n Usage: compareFaceRecognitionToAttributes.py <path_to_data> [optional]<<path_to_query_parameter> <path_to_target_parameter>>") | |
| 6 | +else: | |
| 7 | + data = sys.argv[1] | |
| 8 | + compareData = "../data/MEDS/img" | |
| 9 | + attrDir = "Attributes" | |
| 10 | + attrPath = attrDir + "/all.model" | |
| 11 | + mask = "MEDS.mask" | |
| 12 | + if len(sys.argv) == 4: | |
| 13 | + query = sys.argv[2] | |
| 14 | + target = sys.argv[3] | |
| 15 | + else: | |
| 16 | + query = "../data/MEDS/sigset/MEDS_frontal_query.xml" | |
| 17 | + target = "../data/MEDS/sigset/MEDS_frontal_target.xml" | |
| 18 | + | |
| 19 | + #Create Evaluation Mask | |
| 20 | + if not os.path.isfile(mask): | |
| 21 | + os.system("br -makeMask ../data/MEDS/sigset/MEDS_frontal_target.xml ../data/MEDS/sigset/MEDS_frontal_query.xml " + mask) | |
| 22 | + | |
| 23 | + #Train FaceRecognition Algorithm (Already trained from "make install") | |
| 24 | + #os.system("br -algorithm FaceRecognition -path " + data + " -train results1194v2.turk faceRecognition.model") | |
| 25 | + #Train Attributes Algorithm | |
| 26 | + if not os.path.isfile(attrPath): | |
| 27 | + os.system("mkdir -p " + attrDir) | |
| 28 | + os.system("br -algorithm AllAttributesMatching -path " + data + " -train results1194v2.turk " + attrPath) | |
| 29 | + | |
| 30 | + #Run FaceRecognition Comparison | |
| 31 | + os.system("br -path " + compareData + " -algorithm FaceRecognition -compare " + target + " " + query + " faceRecognition.mtx") | |
| 32 | + #Run Attributes Comparison | |
| 33 | + os.system("br -path " + compareData + " -TurkTargetHuman false -TurkQueryMachine true -algorithm " + attrPath + " -compare " + target + " " + query + " attributes.mtx") | |
| 34 | + | |
| 35 | + #Fuse the Matricies | |
| 36 | + os.system("br -fuse faceRecognition.mtx attributes.mtx ZScore Sum fusion.mtx") | |
| 37 | + | |
| 38 | + #Evaluate all three matricies | |
| 39 | + os.system("br -eval faceRecognition.mtx " + mask + " faceRecognition.csv") | |
| 40 | + os.system("br -eval attributes.mtx " + mask + " attributes.csv") | |
| 41 | + os.system("br -eval fusion.mtx " + mask + " faceRecognitionVSAttributes.csv") | |
| 42 | + | |
| 43 | + #Plot results | |
| 44 | + os.system("br -plot faceRecognition.csv faceRecognition.pdf") | |
| 45 | + os.system("br -plot attributes.csv attributes.pdf") | |
| 46 | + os.system("br -plot faceRecognition.csv attributes.csv faceRecognitionVSAttributes.csv faceRecognitionVSAttributes.pdf") | ... | ... |
scripts/results1194v2.turk
0 → 100644
| 1 | +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] | |
| 2 | +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] | |
| 3 | +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] | |
| 4 | +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] | |
| 5 | +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] | |
| 6 | +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] | |
| 7 | +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] | |
| 8 | +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] | |
| 9 | +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] | |
| 10 | +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] | |
| 11 | +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] | |
| 12 | +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] | |
| 13 | +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] | |
| 14 | +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] | |
| 15 | +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] | |
| 16 | +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] | |
| 17 | +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] | |
| 18 | +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] | |
| 19 | +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] | |
| 20 | +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] | |
| 21 | +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] | |
| 22 | +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] | |
| 23 | +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] | |
| 24 | +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] | |
| 25 | +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] | |
| 26 | +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] | |
| 27 | +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] | |
| 28 | +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] | |
| 29 | +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] | |
| 30 | +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] | |
| 31 | +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] | |
| 32 | +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] | |
| 33 | +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] | |
| 34 | +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] | |
| 35 | +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] | |
| 36 | +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] | |
| 37 | +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] | |
| 38 | +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] | |
| 39 | +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] | |
| 40 | +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] | |
| 41 | +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] | |
| 42 | +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] | |
| 43 | +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] | |
| 44 | +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] | |
| 45 | +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] | |
| 46 | +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] | |
| 47 | +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] | |
| 48 | +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] | |
| 49 | +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] | |
| 50 | +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] | |
| 51 | +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] | |
| 52 | +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] | |
| 53 | +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] | |
| 54 | +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] | |
| 55 | +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] | |
| 56 | +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] | |
| 57 | +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] | |
| 58 | +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] | |
| 59 | +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] | |
| 60 | +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] | |
| 61 | +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] | |
| 62 | +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] | |
| 63 | +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] | |
| 64 | +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] | |
| 65 | +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] | |
| 66 | +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] | |
| 67 | +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] | |
| 68 | +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] | |
| 69 | +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] | |
| 70 | +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] | |
| 71 | +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] | |
| 72 | +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] | |
| 73 | +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] | |
| 74 | +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] | |
| 75 | +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] | |
| 76 | +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] | |
| 77 | +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] | |
| 78 | +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] | |
| 79 | +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] | |
| 80 | +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] | |
| 81 | +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] | |
| 82 | +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] | |
| 83 | +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] | |
| 84 | +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] | |
| 85 | +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] | |
| 86 | +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] | |
| 87 | +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] | |
| 88 | +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] | |
| 89 | +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] | |
| 90 | +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] | |
| 91 | +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] | |
| 92 | +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] | |
| 93 | +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] | |
| 94 | +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] | |
| 95 | +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] | |
| 96 | +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] | |
| 97 | +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] | |
| 98 | +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] | |
| 99 | +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] | |
| 100 | +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] | |
| 101 | +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] | |
| 102 | +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] | |
| 103 | +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] | |
| 104 | +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] | |
| 105 | +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] | |
| 106 | +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] | |
| 107 | +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] | |
| 108 | +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] | |
| 109 | +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] | |
| 110 | +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] | |
| 111 | +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] | |
| 112 | +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] | |
| 113 | +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] | |
| 114 | +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] | |
| 115 | +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] | |
| 116 | +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] | |
| 117 | +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] | |
| 118 | +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] | |
| 119 | +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] | |
| 120 | +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] | |
| 121 | +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] | |
| 122 | +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] | |
| 123 | +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] | |
| 124 | +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] | |
| 125 | +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] | |
| 126 | +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] | |
| 127 | +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] | |
| 128 | +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] | |
| 129 | +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] | |
| 130 | +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] | |
| 131 | +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] | |
| 132 | +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] | |
| 133 | +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] | |
| 134 | +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] | |
| 135 | +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] | |
| 136 | +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] | |
| 137 | +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] | |
| 138 | +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] | |
| 139 | +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] | |
| 140 | +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] | |
| 141 | +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] | |
| 142 | +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] | |
| 143 | +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] | |
| 144 | +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] | |
| 145 | +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] | |
| 146 | +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] | |
| 147 | +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] | |
| 148 | +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] | |
| 149 | +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] | |
| 150 | +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] | |
| 151 | +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] | |
| 152 | +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] | |
| 153 | +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] | |
| 154 | +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] | |
| 155 | +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] | |
| 156 | +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] | |
| 157 | +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] | |
| 158 | +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] | |
| 159 | +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] | |
| 160 | +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] | |
| 161 | +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] | |
| 162 | +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] | |
| 163 | +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] | |
| 164 | +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] | |
| 165 | +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] | |
| 166 | +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] | |
| 167 | +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] | |
| 168 | +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] | |
| 169 | +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] | |
| 170 | +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] | |
| 171 | +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] | |
| 172 | +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] | |
| 173 | +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] | |
| 174 | +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] | |
| 175 | +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] | |
| 176 | +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] | |
| 177 | +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] | |
| 178 | +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] | |
| 179 | +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] | |
| 180 | +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] | |
| 181 | +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] | |
| 182 | +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] | |
| 183 | +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] | |
| 184 | +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] | |
| 185 | +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] | |
| 186 | +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] | |
| 187 | +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] | |
| 188 | +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] | |
| 189 | +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] | |
| 190 | +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] | |
| 191 | +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] | |
| 192 | +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] | |
| 193 | +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] | |
| 194 | +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] | |
| 195 | +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] | |
| 196 | +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] | |
| 197 | +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] | |
| 198 | +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] | |
| 199 | +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] | |
| 200 | +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] | |
| 201 | +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] | |
| 202 | +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] | |
| 203 | +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] | |
| 204 | +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] | |
| 205 | +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] | |
| 206 | +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] | |
| 207 | +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] | |
| 208 | +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] | |
| 209 | +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] | |
| 210 | +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] | |
| 211 | +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] | |
| 212 | +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] | |
| 213 | +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] | |
| 214 | +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] | |
| 215 | +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] | |
| 216 | +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] | |
| 217 | +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] | |
| 218 | +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] | |
| 219 | +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] | |
| 220 | +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] | |
| 221 | +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] | |
| 222 | +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] | |
| 223 | +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] | |
| 224 | +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] | |
| 225 | +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] | |
| 226 | +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] | |
| 227 | +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] | |
| 228 | +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] | |
| 229 | +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] | |
| 230 | +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] | |
| 231 | +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] | |
| 232 | +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] | |
| 233 | +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] | |
| 234 | +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] | |
| 235 | +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] | |
| 236 | +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] | |
| 237 | +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] | |
| 238 | +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] | |
| 239 | +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] | |
| 240 | +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] | |
| 241 | +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] | |
| 242 | +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] | |
| 243 | +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] | |
| 244 | +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] | |
| 245 | +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] | |
| 246 | +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] | |
| 247 | +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] | |
| 248 | +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] | |
| 249 | +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] | |
| 250 | +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] | |
| 251 | +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] | |
| 252 | +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] | |
| 253 | +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] | |
| 254 | +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] | |
| 255 | +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] | |
| 256 | +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] | |
| 257 | +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] | |
| 258 | +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] | |
| 259 | +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] | |
| 260 | +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] | |
| 261 | +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] | |
| 262 | +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] | |
| 263 | +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] | |
| 264 | +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] | |
| 265 | +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] | |
| 266 | +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] | |
| 267 | +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] | |
| 268 | +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] | |
| 269 | +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] | |
| 270 | +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] | |
| 271 | +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] | |
| 272 | +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] | |
| 273 | +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] | |
| 274 | +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] | |
| 275 | +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] | |
| 276 | +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] | |
| 277 | +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] | |
| 278 | +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] | |
| 279 | +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] | |
| 280 | +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] | |
| 281 | +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] | |
| 282 | +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] | |
| 283 | +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] | |
| 284 | +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] | |
| 285 | +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] | |
| 286 | +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] | |
| 287 | +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] | |
| 288 | +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] | |
| 289 | +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] | |
| 290 | +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] | |
| 291 | +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] | |
| 292 | +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] | |
| 293 | +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] | |
| 294 | +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] | |
| 295 | +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] | |
| 296 | +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] | |
| 297 | +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] | |
| 298 | +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] | |
| 299 | +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] | |
| 300 | +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] | |
| 301 | +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] | |
| 302 | +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] | |
| 303 | +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] | |
| 304 | +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] | |
| 305 | +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] | |
| 306 | +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] | |
| 307 | +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] | |
| 308 | +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] | |
| 309 | +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] | |
| 310 | +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] | |
| 311 | +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] | |
| 312 | +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] | |
| 313 | +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] | |
| 314 | +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] | |
| 315 | +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] | |
| 316 | +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] | |
| 317 | +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] | |
| 318 | +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] | |
| 319 | +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] | |
| 320 | +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] | |
| 321 | +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] | |
| 322 | +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] | |
| 323 | +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] | |
| 324 | +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] | |
| 325 | +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] | |
| 326 | +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] | |
| 327 | +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] | |
| 328 | +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] | |
| 329 | +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] | |
| 330 | +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] | |
| 331 | +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] | |
| 332 | +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] | |
| 333 | +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] | |
| 334 | +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] | |
| 335 | +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] | |
| 336 | +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] | |
| 337 | +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] | |
| 338 | +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] | |
| 339 | +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] | |
| 340 | +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] | |
| 341 | +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] | |
| 342 | +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] | |
| 343 | +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] | |
| 344 | +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] | |
| 345 | +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] | |
| 346 | +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] | |
| 347 | +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] | |
| 348 | +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] | |
| 349 | +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] | |
| 350 | +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] | |
| 351 | +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] | |
| 352 | +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] | |
| 353 | +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] | |
| 354 | +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] | |
| 355 | +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] | |
| 356 | +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] | |
| 357 | +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] | |
| 358 | +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] | |
| 359 | +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] | |
| 360 | +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] | |
| 361 | +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] | |
| 362 | +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] | |
| 363 | +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] | |
| 364 | +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] | |
| 365 | +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] | |
| 366 | +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] | |
| 367 | +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] | |
| 368 | +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] | |
| 369 | +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] | |
| 370 | +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] | |
| 371 | +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] | |
| 372 | +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] | |
| 373 | +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] | |
| 374 | +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] | |
| 375 | +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] | |
| 376 | +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] | |
| 377 | +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] | |
| 378 | +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] | |
| 379 | +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] | |
| 380 | +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] | |
| 381 | +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] | |
| 382 | +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] | |
| 383 | +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] | |
| 384 | +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] | |
| 385 | +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] | |
| 386 | +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] | |
| 387 | +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] | |
| 388 | +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] | |
| 389 | +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] | |
| 390 | +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] | |
| 391 | +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] | |
| 392 | +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] | |
| 393 | +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] | |
| 394 | +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] | |
| 395 | +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] | |
| 396 | +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] | |
| 397 | +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] | |
| 398 | +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] | |
| 399 | +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] | |
| 400 | +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] | |
| 401 | +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] | |
| 402 | +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] | |
| 403 | +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] | |
| 404 | +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] | |
| 405 | +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] | |
| 406 | +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] | |
| 407 | +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] | |
| 408 | +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] | |
| 409 | +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] | |
| 410 | +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] | |
| 411 | +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] | |
| 412 | +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] | |
| 413 | +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] | |
| 414 | +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] | |
| 415 | +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] | |
| 416 | +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] | |
| 417 | +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] | |
| 418 | +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] | |
| 419 | +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] | |
| 420 | +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] | |
| 421 | +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] | |
| 422 | +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] | |
| 423 | +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] | |
| 424 | +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] | |
| 425 | +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] | |
| 426 | +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] | |
| 427 | +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] | |
| 428 | +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] | |
| 429 | +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] | |
| 430 | +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] | |
| 431 | +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] | |
| 432 | +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] | |
| 433 | +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] | |
| 434 | +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] | |
| 435 | +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] | |
| 436 | +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] | |
| 437 | +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] | |
| 438 | +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] | |
| 439 | +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] | |
| 440 | +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] | |
| 441 | +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] | |
| 442 | +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] | |
| 443 | +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] | |
| 444 | +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] | |
| 445 | +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] | |
| 446 | +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] | |
| 447 | +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] | |
| 448 | +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] | |
| 449 | +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] | |
| 450 | +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] | |
| 451 | +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] | |
| 452 | +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] | |
| 453 | +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] | |
| 454 | +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] | |
| 455 | +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] | |
| 456 | +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] | |
| 457 | +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] | |
| 458 | +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] | |
| 459 | +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] | |
| 460 | +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] | |
| 461 | +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] | |
| 462 | +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] | |
| 463 | +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] | |
| 464 | +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] | |
| 465 | +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] | |
| 466 | +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] | |
| 467 | +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] | |
| 468 | +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] | |
| 469 | +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] | |
| 470 | +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] | |
| 471 | +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] | |
| 472 | +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] | |
| 473 | +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] | |
| 474 | +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] | |
| 475 | +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] | |
| 476 | +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] | |
| 477 | +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] | |
| 478 | +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] | |
| 479 | +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] | |
| 480 | +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] | |
| 481 | +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] | |
| 482 | +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] | |
| 483 | +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] | |
| 484 | +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] | |
| 485 | +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] | |
| 486 | +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] | |
| 487 | +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] | |
| 488 | +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] | |
| 489 | +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] | |
| 490 | +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] | |
| 491 | +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] | |
| 492 | +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] | |
| 493 | +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] | |
| 494 | +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] | |
| 495 | +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] | |
| 496 | +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] | |
| 497 | +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] | |
| 498 | +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] | |
| 499 | +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] | |
| 500 | +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] | |
| 501 | +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] | |
| 502 | +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] | |
| 503 | +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] | |
| 504 | +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] | |
| 505 | +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] | |
| 506 | +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] | |
| 507 | +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] | |
| 508 | +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] | |
| 509 | +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] | |
| 510 | +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] | |
| 511 | +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] | |
| 512 | +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] | |
| 513 | +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] | |
| 514 | +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] | |
| 515 | +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] | |
| 516 | +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] | |
| 517 | +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] | |
| 518 | +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] | |
| 519 | +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] | |
| 520 | +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] | |
| 521 | +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] | |
| 522 | +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] | |
| 523 | +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] | |
| 524 | +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] | |
| 525 | +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] | |
| 526 | +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] | |
| 527 | +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] | |
| 528 | +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] | |
| 529 | +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] | |
| 530 | +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] | |
| 531 | +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] | |
| 532 | +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] | |
| 533 | +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] | |
| 534 | +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] | |
| 535 | +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] | |
| 536 | +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] | |
| 537 | +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] | |
| 538 | +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] | |
| 539 | +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] | |
| 540 | +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] | |
| 541 | +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] | |
| 542 | +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] | |
| 543 | +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] | |
| 544 | +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] | |
| 545 | +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] | |
| 546 | +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] | |
| 547 | +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] | |
| 548 | +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] | |
| 549 | +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] | |
| 550 | +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] | |
| 551 | +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] | |
| 552 | +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] | |
| 553 | +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] | |
| 554 | +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] | |
| 555 | +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] | |
| 556 | +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] | |
| 557 | +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] | |
| 558 | +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] | |
| 559 | +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] | |
| 560 | +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] | |
| 561 | +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] | |
| 562 | +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] | |
| 563 | +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] | |
| 564 | +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] | |
| 565 | +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] | |
| 566 | +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] | |
| 567 | +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] | |
| 568 | +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] | |
| 569 | +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] | |
| 570 | +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] | |
| 571 | +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] | |
| 572 | +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] | |
| 573 | +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] | |
| 574 | +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] | |
| 575 | +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] | |
| 576 | +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] | |
| 577 | +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] | |
| 578 | +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] | |
| 579 | +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] | |
| 580 | +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] | |
| 581 | +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] | |
| 582 | +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] | |
| 583 | +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] | |
| 584 | +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] | |
| 585 | +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] | |
| 586 | +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] | |
| 587 | +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] | |
| 588 | +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] | |
| 589 | +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] | |
| 590 | +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] | |
| 591 | +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] | |
| 592 | +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] | |
| 593 | +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] | |
| 594 | +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] | |
| 595 | +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] | |
| 596 | +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] | |
| 597 | +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] | |
| 598 | +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] | |
| 599 | +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] | |
| 600 | +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] | |
| 601 | +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] | |
| 602 | +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] | |
| 603 | +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] | |
| 604 | +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] | |
| 605 | +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] | |
| 606 | +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] | |
| 607 | +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] | |
| 608 | +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] | |
| 609 | +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] | |
| 610 | +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] | |
| 611 | +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] | |
| 612 | +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] | |
| 613 | +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] | |
| 614 | +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] | |
| 615 | +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] | |
| 616 | +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] | |
| 617 | +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] | |
| 618 | +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] | |
| 619 | +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] | |
| 620 | +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] | |
| 621 | +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] | |
| 622 | +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] | |
| 623 | +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] | |
| 624 | +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] | |
| 625 | +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] | |
| 626 | +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] | |
| 627 | +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] | |
| 628 | +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] | |
| 629 | +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] | |
| 630 | +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] | |
| 631 | +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] | |
| 632 | +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] | |
| 633 | +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] | |
| 634 | +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] | |
| 635 | +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] | |
| 636 | +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] | |
| 637 | +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] | |
| 638 | +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] | |
| 639 | +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] | |
| 640 | +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] | |
| 641 | +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] | |
| 642 | +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] | |
| 643 | +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] | |
| 644 | +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] | |
| 645 | +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] | |
| 646 | +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] | |
| 647 | +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] | |
| 648 | +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] | |
| 649 | +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] | |
| 650 | +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] | |
| 651 | +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] | |
| 652 | +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] | |
| 653 | +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] | |
| 654 | +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] | |
| 655 | +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] | |
| 656 | +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] | |
| 657 | +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] | |
| 658 | +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] | |
| 659 | +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] | |
| 660 | +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] | |
| 661 | +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] | |
| 662 | +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] | |
| 663 | +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] | |
| 664 | +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] | |
| 665 | +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] | |
| 666 | +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] | |
| 667 | +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] | |
| 668 | +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] | |
| 669 | +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] | |
| 670 | +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] | |
| 671 | +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] | |
| 672 | +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] | |
| 673 | +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] | |
| 674 | +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] | |
| 675 | +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] | |
| 676 | +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] | |
| 677 | +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] | |
| 678 | +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] | |
| 679 | +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] | |
| 680 | +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] | |
| 681 | +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] | |
| 682 | +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] | |
| 683 | +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] | |
| 684 | +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] | |
| 685 | +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] | |
| 686 | +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] | |
| 687 | +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] | |
| 688 | +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] | |
| 689 | +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] | |
| 690 | +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] | |
| 691 | +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] | |
| 692 | +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] | |
| 693 | +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] | |
| 694 | +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] | |
| 695 | +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] | |
| 696 | +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] | |
| 697 | +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] | |
| 698 | +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] | |
| 699 | +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] | |
| 700 | +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] | |
| 701 | +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] | |
| 702 | +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] | |
| 703 | +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] | |
| 704 | +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] | |
| 705 | +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] | |
| 706 | +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] | |
| 707 | +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] | |
| 708 | +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] | |
| 709 | +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] | |
| 710 | +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] | |
| 711 | +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] | |
| 712 | +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] | |
| 713 | +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] | |
| 714 | +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] | |
| 715 | +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] | |
| 716 | +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] | |
| 717 | +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] | |
| 718 | +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] | |
| 719 | +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] | |
| 720 | +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] | |
| 721 | +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] | |
| 722 | +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] | |
| 723 | +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] | |
| 724 | +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] | |
| 725 | +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] | |
| 726 | +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] | |
| 727 | +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] | |
| 728 | +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] | |
| 729 | +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] | |
| 730 | +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] | |
| 731 | +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] | |
| 732 | +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] | |
| 733 | +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] | |
| 734 | +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] | |
| 735 | +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] | |
| 736 | +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] | |
| 737 | +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] | |
| 738 | +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] | |
| 739 | +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] | |
| 740 | +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] | |
| 741 | +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] | |
| 742 | +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] | |
| 743 | +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] | |
| 744 | +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] | |
| 745 | +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] | |
| 746 | +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] | |
| 747 | +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] | |
| 748 | +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] | |
| 749 | +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] | |
| 750 | +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] | |
| 751 | +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] | |
| 752 | +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] | |
| 753 | +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] | |
| 754 | +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] | |
| 755 | +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] | |
| 756 | +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] | |
| 757 | +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] | |
| 758 | +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] | |
| 759 | +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] | |
| 760 | +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] | |
| 761 | +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] | |
| 762 | +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] | |
| 763 | +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] | |
| 764 | +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] | |
| 765 | +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] | |
| 766 | +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] | |
| 767 | +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] | |
| 768 | +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] | |
| 769 | +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] | |
| 770 | +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] | |
| 771 | +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] | |
| 772 | +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] | |
| 773 | +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] | |
| 774 | +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] | |
| 775 | +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] | |
| 776 | +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] | |
| 777 | +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] | |
| 778 | +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] | |
| 779 | +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] | |
| 780 | +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] | |
| 781 | +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] | |
| 782 | +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] | |
| 783 | +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] | |
| 784 | +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] | |
| 785 | +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] | |
| 786 | +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] | |
| 787 | +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] | |
| 788 | +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] | |
| 789 | +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] | |
| 790 | +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] | |
| 791 | +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] | |
| 792 | +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] | |
| 793 | +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] | |
| 794 | +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] | |
| 795 | +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] | |
| 796 | +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] | |
| 797 | +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] | |
| 798 | +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] | |
| 799 | +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] | |
| 800 | +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] | |
| 801 | +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] | |
| 802 | +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] | |
| 803 | +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] | |
| 804 | +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] | |
| 805 | +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] | |
| 806 | +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] | |
| 807 | +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] | |
| 808 | +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] | |
| 809 | +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] | |
| 810 | +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] | |
| 811 | +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] | |
| 812 | +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] | |
| 813 | +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] | |
| 814 | +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] | |
| 815 | +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] | |
| 816 | +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] | |
| 817 | +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] | |
| 818 | +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] | |
| 819 | +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] | |
| 820 | +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] | |
| 821 | +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] | |
| 822 | +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] | |
| 823 | +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] | |
| 824 | +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] | |
| 825 | +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] | |
| 826 | +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] | |
| 827 | +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] | |
| 828 | +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] | |
| 829 | +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] | |
| 830 | +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] | |
| 831 | +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] | |
| 832 | +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] | |
| 833 | +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] | |
| 834 | +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] | |
| 835 | +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] | |
| 836 | +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] | |
| 837 | +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] | |
| 838 | +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] | |
| 839 | +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] | |
| 840 | +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] | |
| 841 | +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] | |
| 842 | +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] | |
| 843 | +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] | |
| 844 | +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] | |
| 845 | +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] | |
| 846 | +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] | |
| 847 | +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] | |
| 848 | +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] | |
| 849 | +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] | |
| 850 | +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] | |
| 851 | +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] | |
| 852 | +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] | |
| 853 | +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] | |
| 854 | +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] | |
| 855 | +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] | |
| 856 | +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] | |
| 857 | +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] | |
| 858 | +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] | |
| 859 | +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] | |
| 860 | +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] | |
| 861 | +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] | |
| 862 | +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] | |
| 863 | +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] | |
| 864 | +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] | |
| 865 | +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] | |
| 866 | +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] | |
| 867 | +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] | |
| 868 | +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] | |
| 869 | +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] | |
| 870 | +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] | |
| 871 | +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] | |
| 872 | +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] | |
| 873 | +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] | |
| 874 | +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] | |
| 875 | +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] | |
| 876 | +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] | |
| 877 | +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] | |
| 878 | +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] | |
| 879 | +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] | |
| 880 | +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] | |
| 881 | +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] | |
| 882 | +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] | |
| 883 | +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] | |
| 884 | +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] | |
| 885 | +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] | |
| 886 | +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] | |
| 887 | +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] | |
| 888 | +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] | |
| 889 | +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] | |
| 890 | +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] | |
| 891 | +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] | |
| 892 | +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] | |
| 893 | +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] | |
| 894 | +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] | |
| 895 | +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] | |
| 896 | +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] | |
| 897 | +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] | |
| 898 | +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] | |
| 899 | +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] | |
| 900 | +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] | |
| 901 | +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] | |
| 902 | +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] | |
| 903 | +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] | |
| 904 | +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] | |
| 905 | +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] | |
| 906 | +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] | |
| 907 | +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] | |
| 908 | +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] | |
| 909 | +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] | |
| 910 | +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] | |
| 911 | +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] | |
| 912 | +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] | |
| 913 | +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] | |
| 914 | +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] | |
| 915 | +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] | |
| 916 | +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] | |
| 917 | +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] | |
| 918 | +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] | |
| 919 | +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] | |
| 920 | +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] | |
| 921 | +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] | |
| 922 | +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] | |
| 923 | +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] | |
| 924 | +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] | |
| 925 | +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] | |
| 926 | +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] | |
| 927 | +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] | |
| 928 | +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] | |
| 929 | +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] | |
| 930 | +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] | |
| 931 | +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] | |
| 932 | +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] | |
| 933 | +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] | |
| 934 | +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] | |
| 935 | +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] | |
| 936 | +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] | |
| 937 | +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] | |
| 938 | +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] | |
| 939 | +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] | |
| 940 | +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] | |
| 941 | +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] | |
| 942 | +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] | |
| 943 | +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] | |
| 944 | +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] | |
| 945 | +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] | |
| 946 | +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] | |
| 947 | +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] | |
| 948 | +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] | |
| 949 | +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] | |
| 950 | +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] | |
| 951 | +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] | |
| 952 | +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] | |
| 953 | +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] | |
| 954 | +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] | |
| 955 | +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] | |
| 956 | +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] | |
| 957 | +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] | |
| 958 | +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] | |
| 959 | +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] | |
| 960 | +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] | |
| 961 | +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] | |
| 962 | +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] | |
| 963 | +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] | |
| 964 | +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] | |
| 965 | +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] | |
| 966 | +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] | |
| 967 | +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] | |
| 968 | +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] | |
| 969 | +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] | |
| 970 | +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] | |
| 971 | +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] | |
| 972 | +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] | |
| 973 | +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] | |
| 974 | +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] | |
| 975 | +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] | |
| 976 | +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] | |
| 977 | +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] | |
| 978 | +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] | |
| 979 | +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] | |
| 980 | +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] | |
| 981 | +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] | |
| 982 | +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] | |
| 983 | +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] | |
| 984 | +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] | |
| 985 | +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] | |
| 986 | +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] | |
| 987 | +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] | |
| 988 | +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] | |
| 989 | +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] | |
| 990 | +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] | |
| 991 | +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] | |
| 992 | +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] | |
| 993 | +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] | |
| 994 | +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] | |
| 995 | +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] | |
| 996 | +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] | |
| 997 | +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] | |
| 998 | +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] | |
| 999 | +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] | |
| 1000 | +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] | |
| 1001 | +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] | |
| 1002 | +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] | |
| 1003 | +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] | |
| 1004 | +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] | |
| 1005 | +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] | |
| 1006 | +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] | |
| 1007 | +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] | |
| 1008 | +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] | |
| 1009 | +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] | |
| 1010 | +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] | |
| 1011 | +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] | |
| 1012 | +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] | |
| 1013 | +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] | |
| 1014 | +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] | |
| 1015 | +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] | |
| 1016 | +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] | |
| 1017 | +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] | |
| 1018 | +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] | |
| 1019 | +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] | |
| 1020 | +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] | |
| 1021 | +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] | |
| 1022 | +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] | |
| 1023 | +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] | |
| 1024 | +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] | |
| 1025 | +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] | |
| 1026 | +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] | |
| 1027 | +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] | |
| 1028 | +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] | |
| 1029 | +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] | |
| 1030 | +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] | |
| 1031 | +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] | |
| 1032 | +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] | |
| 1033 | +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] | |
| 1034 | +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] | |
| 1035 | +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] | |
| 1036 | +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] | |
| 1037 | +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] | |
| 1038 | +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] | |
| 1039 | +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] | |
| 1040 | +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] | |
| 1041 | +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] | |
| 1042 | +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] | |
| 1043 | +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] | |
| 1044 | +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] | |
| 1045 | +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] | |
| 1046 | +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] | |
| 1047 | +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] | |
| 1048 | +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] | |
| 1049 | +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] | |
| 1050 | +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] | |
| 1051 | +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] | |
| 1052 | +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] | |
| 1053 | +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] | |
| 1054 | +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] | |
| 1055 | +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] | |
| 1056 | +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] | |
| 1057 | +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] | |
| 1058 | +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] | |
| 1059 | +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] | |
| 1060 | +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] | |
| 1061 | +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] | |
| 1062 | +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] | |
| 1063 | +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] | |
| 1064 | +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] | |
| 1065 | +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] | |
| 1066 | +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] | |
| 1067 | +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] | |
| 1068 | +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] | |
| 1069 | +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] | |
| 1070 | +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] | |
| 1071 | +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] | |
| 1072 | +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] | |
| 1073 | +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] | |
| 1074 | +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] | |
| 1075 | +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] | |
| 1076 | +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] | |
| 1077 | +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] | |
| 1078 | +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] | |
| 1079 | +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] | |
| 1080 | +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] | |
| 1081 | +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] | |
| 1082 | +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] | |
| 1083 | +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] | |
| 1084 | +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] | |
| 1085 | +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] | |
| 1086 | +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] | |
| 1087 | +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] | |
| 1088 | +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] | |
| 1089 | +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] | |
| 1090 | +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] | |
| 1091 | +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] | |
| 1092 | +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] | |
| 1093 | +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] | |
| 1094 | +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] | |
| 1095 | +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] | |
| 1096 | +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] | |
| 1097 | +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] | |
| 1098 | +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] | |
| 1099 | +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] | |
| 1100 | +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] | |
| 1101 | +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] | |
| 1102 | +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] | |
| 1103 | +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] | |
| 1104 | +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] | |
| 1105 | +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] | |
| 1106 | +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] | |
| 1107 | +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] | |
| 1108 | +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] | |
| 1109 | +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] | |
| 1110 | +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] | |
| 1111 | +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] | |
| 1112 | +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] | |
| 1113 | +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] | |
| 1114 | +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] | |
| 1115 | +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] | |
| 1116 | +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] | |
| 1117 | +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] | |
| 1118 | +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] | |
| 1119 | +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] | |
| 1120 | +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] | |
| 1121 | +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] | |
| 1122 | +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] | |
| 1123 | +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] | |
| 1124 | +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] | |
| 1125 | +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] | |
| 1126 | +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] | |
| 1127 | +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] | |
| 1128 | +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] | |
| 1129 | +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] | |
| 1130 | +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] | |
| 1131 | +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] | |
| 1132 | +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] | |
| 1133 | +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] | |
| 1134 | +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] | |
| 1135 | +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] | |
| 1136 | +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] | |
| 1137 | +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] | |
| 1138 | +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] | |
| 1139 | +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] | |
| 1140 | +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] | |
| 1141 | +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] | |
| 1142 | +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] | |
| 1143 | +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] | |
| 1144 | +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] | |
| 1145 | +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] | |
| 1146 | +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] | |
| 1147 | +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] | |
| 1148 | +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] | |
| 1149 | +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] | |
| 1150 | +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] | |
| 1151 | +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] | |
| 1152 | +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] | |
| 1153 | +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] | |
| 1154 | +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] | |
| 1155 | +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] | |
| 1156 | +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] | |
| 1157 | +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] | |
| 1158 | +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] | |
| 1159 | +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] | |
| 1160 | +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] | |
| 1161 | +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] | |
| 1162 | +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] | |
| 1163 | +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] | |
| 1164 | +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] | |
| 1165 | +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] | |
| 1166 | +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] | |
| 1167 | +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] | |
| 1168 | +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] | |
| 1169 | +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] | |
| 1170 | +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] | |
| 1171 | +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] | |
| 1172 | +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] | |
| 1173 | +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] | |
| 1174 | +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] | |
| 1175 | +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] | |
| 1176 | +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] | |
| 1177 | +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] | |
| 1178 | +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] | |
| 1179 | +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] | |
| 1180 | +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] | |
| 1181 | +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] | |
| 1182 | +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] | |
| 1183 | +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] | |
| 1184 | +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] | |
| 1185 | +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] | |
| 1186 | +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] | |
| 1187 | +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] | |
| 1188 | +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] | |
| 1189 | +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] | |
| 1190 | +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] | |
| 1191 | +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] | |
| 1192 | +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] | |
| 1193 | +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] | |
| 1194 | +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] | |
| 1195 | +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] | ... | ... |
scripts/runAttribute.py
0 → 100644
| 1 | +import torque | |
| 2 | +import os | |
| 3 | + | |
| 4 | +def call(alg, name): | |
| 5 | + | |
| 6 | + name = 'Attribute_%s' % name | |
| 7 | + cmdList = [] | |
| 8 | + cmdList.append('cd /data2/pattrec/home/bklare/src/openbr/scripts') | |
| 9 | + cmdList.append('bash attributesTorque.sh %s %s %s' % (alg,name ,os.environ['DATA'])) | |
| 10 | + torque.createQsub(3,0,cmdList,name) | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | +sys.exit(0) | |
| 15 | + | |
| 16 | +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') | |
| 17 | +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') | |
| 18 | +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') | |
| 19 | +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') | |
| 20 | +call('"CvtFloat+PCA(0.95)"','BaselineNoCenter') | |
| 21 | +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') | |
| 22 | +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') | ... | ... |
share/openbr/openbr.bib
| ... | ... | @@ -405,3 +405,9 @@ |
| 405 | 405 | booktitle={IEEE Conf. on Computer Vision and Pattern Recognition, 2011}, |
| 406 | 406 | pages={513--520} |
| 407 | 407 | } |
| 408 | + | |
| 409 | +@misc{baba1472, | |
| 410 | + Author = {Babatunde Ogunfemi}, | |
| 411 | + Howpublished = {https://github.com/baba1472}, | |
| 412 | + Title = {ogunfemi.b at gmail.com}} | |
| 413 | + | ... | ... |