code stringlengths 1 2.01M | repo_name stringlengths 3 62 | path stringlengths 1 267 | language stringclasses 231 values | license stringclasses 13 values | size int64 1 2.01M |
|---|---|---|---|---|---|
/**********************************************************************
* File: quspline.h (Formerly qspline.h)
* Description: Code for the QSPLINE class.
* Author: Ray Smith
* Created: Tue Oct 08 17:16:12 BST 1991
*
* (C) Copyright 1991, Hewlett-Packard Ltd.
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
** http://www.apache.org/licenses/LICENSE-2.0
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*
**********************************************************************/
#ifndef QUSPLINE_H
#define QUSPLINE_H
#include "quadratc.h"
#include "serialis.h"
#include "memry.h"
#include "rect.h"
class ROW;
struct Pix;
class QSPLINE
{
friend void make_first_baseline(TBOX *,
int,
int *,
int *,
QSPLINE *,
QSPLINE *,
float);
friend void make_holed_baseline(TBOX *, int, QSPLINE *, QSPLINE *, float);
friend void tweak_row_baseline(ROW *, double, double);
public:
QSPLINE() { //empty constructor
segments = 0;
xcoords = NULL; //everything empty
quadratics = NULL;
}
QSPLINE( //copy constructor
const QSPLINE &src);
QSPLINE( //constructor
inT32 count, //number of segments
inT32 *xstarts, //segment starts
double *coeffs); //coefficients
~QSPLINE (); //destructor
QSPLINE ( //least squares fit
int xstarts[], //spline boundaries
int segcount, //no of segments
int xcoords[], //points to fit
int ycoords[], int blobcount,//no of coords
int degree); //function
double step( //step change
double x1, //between coords
double x2);
double y( //evaluate
double x) const; //at x
void move( // reposition spline
ICOORD vec); // by vector
BOOL8 overlap( //test overlap
QSPLINE *spline2, //2 cannot be smaller
double fraction); //by more than this
void extrapolate( //linear extrapolation
double gradient, //gradient to use
int left, //new left edge
int right); //new right edge
#ifndef GRAPHICS_DISABLED
void plot( //draw it
ScrollView* window, //in window
ScrollView::Color colour) const; //in colour
#endif
// Paint the baseline over pix. If pix has depth of 32, then the line will
// be painted in red. Otherwise it will be painted in black.
void plot(Pix* pix) const;
QSPLINE & operator= (
const QSPLINE & source); //from this
private:
inT32 spline_index( //binary search
double x) const; //for x
inT32 segments; //no of segments
inT32 *xcoords; //no of coords
QUAD_COEFFS *quadratics; //spline pieces
};
#endif
| 1080228-arabicocr11 | ccstruct/quspline.h | C++ | asf20 | 3,705 |
/////////////////////////////////////////////////////////////////////
// File: ocrpara.h
// Description: OCR Paragraph Output Type
// Author: David Eger
// Created: 2010-11-15
//
// (C) Copyright 2010, Google Inc.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
///////////////////////////////////////////////////////////////////////
#ifndef TESSERACT_CCSTRUCT_OCRPARA_H_
#define TESSERACT_CCSTRUCT_OCRPARA_H_
#include "publictypes.h"
#include "elst.h"
#include "strngs.h"
class ParagraphModel;
struct PARA : public ELIST_LINK {
public:
PARA() : model(NULL), is_list_item(false),
is_very_first_or_continuation(false), has_drop_cap(false) {}
// We do not own the model, we just reference it.
// model may be NULL if there is not a good model for this paragraph.
const ParagraphModel *model;
bool is_list_item;
// The first paragraph on a page often lacks a first line indent, but should
// still be modeled by the same model as other body text paragraphs on the
// page.
bool is_very_first_or_continuation;
// Does this paragraph begin with a drop cap?
bool has_drop_cap;
};
ELISTIZEH(PARA)
// A geometric model of paragraph indentation and alignment.
//
// Measurements are in pixels. The meaning of the integer arguments changes
// depending upon the value of justification. Distances less than or equal
// to tolerance apart we take as "equivalent" for the purpose of model
// matching, and in the examples below, we assume tolerance is zero.
//
// justification = LEFT:
// margin the "ignored" margin to the left block edge.
// first_indent indent from the left margin to a typical first text line.
// body_indent indent from the left margin of a typical body text line.
//
// justification = RIGHT:
// margin the "ignored" margin to the right block edge.
// first_indent indent from the right margin to a typical first text line.
// body_indent indent from the right margin of a typical body text line.
//
// justification = CENTER:
// margin ignored
// first_indent ignored
// body_indent ignored
//
// ====== Extended example, assuming each letter is ten pixels wide: =======
//
// +--------------------------------+
// | Awesome | ParagraphModel(CENTER, 0, 0, 0)
// | Centered Title |
// | Paragraph Detection |
// | OCR TEAM |
// | 10 November 2010 |
// | |
// | Look here, I have a paragraph.| ParagraphModel(LEFT, 0, 20, 0)
// |This paragraph starts at the top|
// |of the page and takes 3 lines. |
// | Here I have a second paragraph| ParagraphModel(LEFT, 0, 20, 0)
// |which indicates that the first |
// |paragraph is not a continuation |
// |from a previous page, as it is |
// |indented just like this second |
// |paragraph. |
// | Here is a block quote. It | ParagraphModel(LEFT, 30, 0, 0)
// | looks like the prior text |
// | but it is indented more |
// | and is fully justified. |
// | So how does one deal with | ParagraphModel(LEFT, 0, 20, 0)
// |centered text, block quotes, |
// |normal paragraphs, and lists |
// |like what follows? |
// |1. Make a plan. | ParagraphModel(LEFT, 0, 0, 30)
// |2. Use a heuristic, for example,| ParagraphModel(LEFT, 0, 0, 30)
// | looking for lines where the |
// | first word of the next line |
// | would fit on the previous |
// | line. |
// |8. Try to implement the plan in | ParagraphModel(LEFT, 0, 0, 30)
// | Python and try it out. |
// |4. Determine how to fix the | ParagraphModel(LEFT, 0, 0, 30)
// | mistakes. |
// |5. Repeat. | ParagraphModel(LEFT, 0, 0, 30)
// | For extra painful penalty work| ParagraphModel(LEFT, 0, 20, 0)
// |you can try to identify source |
// |code. Ouch! |
// +--------------------------------+
class ParagraphModel {
public:
ParagraphModel(tesseract::ParagraphJustification justification,
int margin,
int first_indent,
int body_indent,
int tolerance)
: justification_(justification),
margin_(margin),
first_indent_(first_indent),
body_indent_(body_indent),
tolerance_(tolerance) {
// Make one of {first_indent, body_indent} is 0.
int added_margin = first_indent;
if (body_indent < added_margin)
added_margin = body_indent;
margin_ += added_margin;
first_indent_ -= added_margin;
body_indent_ -= added_margin;
}
ParagraphModel()
: justification_(tesseract::JUSTIFICATION_UNKNOWN),
margin_(0),
first_indent_(0),
body_indent_(0),
tolerance_(0) { }
// ValidFirstLine() and ValidBodyLine() take arguments describing a text line
// in a block of text which we are trying to model:
// lmargin, lindent: these add up to the distance from the leftmost ink
// in the text line to the surrounding text block's left
// edge.
// rmargin, rindent: these add up to the distance from the rightmost ink
// in the text line to the surrounding text block's right
// edge.
// The caller determines the division between "margin" and "indent", which
// only actually affect whether we think the line may be centered.
//
// If the amount of whitespace matches the amount of whitespace expected on
// the relevant side of the line (within tolerance_) we say it matches.
// Return whether a given text line could be a first paragraph line according
// to this paragraph model.
bool ValidFirstLine(int lmargin, int lindent, int rindent, int rmargin) const;
// Return whether a given text line could be a first paragraph line according
// to this paragraph model.
bool ValidBodyLine(int lmargin, int lindent, int rindent, int rmargin) const;
tesseract::ParagraphJustification justification() const {
return justification_;
}
int margin() const { return margin_; }
int first_indent() const { return first_indent_; }
int body_indent() const { return body_indent_; }
int tolerance() const { return tolerance_; }
bool is_flush() const {
return (justification_ == tesseract::JUSTIFICATION_LEFT ||
justification_ == tesseract::JUSTIFICATION_RIGHT) &&
abs(first_indent_ - body_indent_) <= tolerance_;
}
// Return whether this model is likely to agree with the other model on most
// paragraphs they are marked.
bool Comparable(const ParagraphModel &other) const;
STRING ToString() const;
private:
tesseract::ParagraphJustification justification_;
int margin_;
int first_indent_;
int body_indent_;
int tolerance_;
};
#endif // TESSERACT_CCSTRUCT_OCRPARA_H_
| 1080228-arabicocr11 | ccstruct/ocrpara.h | C++ | asf20 | 7,424 |
/**********************************************************************
* File: quspline.cpp (Formerly qspline.c)
* Description: Code for the QSPLINE class.
* Author: Ray Smith
* Created: Tue Oct 08 17:16:12 BST 1991
*
* (C) Copyright 1991, Hewlett-Packard Ltd.
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
** http://www.apache.org/licenses/LICENSE-2.0
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*
**********************************************************************/
#include "allheaders.h"
#include "memry.h"
#include "quadlsq.h"
#include "quspline.h"
// Include automatically generated configuration file if running autoconf.
#ifdef HAVE_CONFIG_H
#include "config_auto.h"
#endif
#define QSPLINE_PRECISION 16 //no of steps to draw
/**********************************************************************
* QSPLINE::QSPLINE
*
* Constructor to build a QSPLINE given the components used in the old code.
**********************************************************************/
QSPLINE::QSPLINE( //constructor
inT32 count, //no of segments
inT32 *xstarts, //start coords
double *coeffs //coefficients
) {
inT32 index; //segment index
//get memory
xcoords = (inT32 *) alloc_mem ((count + 1) * sizeof (inT32));
quadratics = (QUAD_COEFFS *) alloc_mem (count * sizeof (QUAD_COEFFS));
segments = count;
for (index = 0; index < segments; index++) {
//copy them
xcoords[index] = xstarts[index];
quadratics[index] = QUAD_COEFFS (coeffs[index * 3],
coeffs[index * 3 + 1],
coeffs[index * 3 + 2]);
}
//right edge
xcoords[index] = xstarts[index];
}
/**********************************************************************
* QSPLINE::QSPLINE
*
* Constructor to build a QSPLINE by appproximation of points.
**********************************************************************/
QSPLINE::QSPLINE ( //constructor
int xstarts[], //spline boundaries
int segcount, //no of segments
int xpts[], //points to fit
int ypts[], int pointcount, //no of pts
int degree //fit required
) {
register int pointindex; /*no along text line */
register int segment; /*segment no */
inT32 *ptcounts; //no in each segment
QLSQ qlsq; /*accumulator */
segments = segcount;
xcoords = (inT32 *) alloc_mem ((segcount + 1) * sizeof (inT32));
ptcounts = (inT32 *) alloc_mem ((segcount + 1) * sizeof (inT32));
quadratics = (QUAD_COEFFS *) alloc_mem (segcount * sizeof (QUAD_COEFFS));
memmove (xcoords, xstarts, (segcount + 1) * sizeof (inT32));
ptcounts[0] = 0; /*none in any yet */
for (segment = 0, pointindex = 0; pointindex < pointcount; pointindex++) {
while (segment < segcount && xpts[pointindex] >= xstarts[segment]) {
segment++; /*try next segment */
/*cumulative counts */
ptcounts[segment] = ptcounts[segment - 1];
}
ptcounts[segment]++; /*no in previous partition */
}
while (segment < segcount) {
segment++;
/*zero the rest */
ptcounts[segment] = ptcounts[segment - 1];
}
for (segment = 0; segment < segcount; segment++) {
qlsq.clear ();
/*first blob */
pointindex = ptcounts[segment];
if (pointindex > 0
&& xpts[pointindex] != xpts[pointindex - 1]
&& xpts[pointindex] != xstarts[segment])
qlsq.add (xstarts[segment],
ypts[pointindex - 1]
+ (ypts[pointindex] - ypts[pointindex - 1])
* (xstarts[segment] - xpts[pointindex - 1])
/ (xpts[pointindex] - xpts[pointindex - 1]));
for (; pointindex < ptcounts[segment + 1]; pointindex++) {
qlsq.add (xpts[pointindex], ypts[pointindex]);
}
if (pointindex > 0 && pointindex < pointcount
&& xpts[pointindex] != xstarts[segment + 1])
qlsq.add (xstarts[segment + 1],
ypts[pointindex - 1]
+ (ypts[pointindex] - ypts[pointindex - 1])
* (xstarts[segment + 1] - xpts[pointindex - 1])
/ (xpts[pointindex] - xpts[pointindex - 1]));
qlsq.fit (degree);
quadratics[segment].a = qlsq.get_a ();
quadratics[segment].b = qlsq.get_b ();
quadratics[segment].c = qlsq.get_c ();
}
free_mem(ptcounts);
}
/**********************************************************************
* QSPLINE::QSPLINE
*
* Constructor to build a QSPLINE from another.
**********************************************************************/
QSPLINE::QSPLINE( //constructor
const QSPLINE &src) {
segments = 0;
xcoords = NULL;
quadratics = NULL;
*this = src;
}
/**********************************************************************
* QSPLINE::~QSPLINE
*
* Destroy a QSPLINE.
**********************************************************************/
QSPLINE::~QSPLINE ( //constructor
) {
if (xcoords != NULL) {
free_mem(xcoords);
xcoords = NULL;
}
if (quadratics != NULL) {
free_mem(quadratics);
quadratics = NULL;
}
}
/**********************************************************************
* QSPLINE::operator=
*
* Copy a QSPLINE
**********************************************************************/
QSPLINE & QSPLINE::operator= ( //assignment
const QSPLINE & source) {
if (xcoords != NULL)
free_mem(xcoords);
if (quadratics != NULL)
free_mem(quadratics);
segments = source.segments;
xcoords = (inT32 *) alloc_mem ((segments + 1) * sizeof (inT32));
quadratics = (QUAD_COEFFS *) alloc_mem (segments * sizeof (QUAD_COEFFS));
memmove (xcoords, source.xcoords, (segments + 1) * sizeof (inT32));
memmove (quadratics, source.quadratics, segments * sizeof (QUAD_COEFFS));
return *this;
}
/**********************************************************************
* QSPLINE::step
*
* Return the total of the step functions between the given coords.
**********************************************************************/
double QSPLINE::step( //find step functions
double x1, //between coords
double x2) {
int index1, index2; //indices of coords
double total; /*total steps */
index1 = spline_index (x1);
index2 = spline_index (x2);
total = 0;
while (index1 < index2) {
total +=
(double) quadratics[index1 + 1].y ((float) xcoords[index1 + 1]);
total -= (double) quadratics[index1].y ((float) xcoords[index1 + 1]);
index1++; /*next segment */
}
return total; /*total steps */
}
/**********************************************************************
* QSPLINE::y
*
* Return the y value at the given x value.
**********************************************************************/
double QSPLINE::y( //evaluate
double x //coord to evaluate at
) const {
inT32 index; //segment index
index = spline_index (x);
return quadratics[index].y (x);//in correct segment
}
/**********************************************************************
* QSPLINE::spline_index
*
* Return the index to the largest xcoord not greater than x.
**********************************************************************/
inT32 QSPLINE::spline_index( //evaluate
double x //coord to evaluate at
) const {
inT32 index; //segment index
inT32 bottom; //bottom of range
inT32 top; //top of range
bottom = 0;
top = segments;
while (top - bottom > 1) {
index = (top + bottom) / 2; //centre of range
if (x >= xcoords[index])
bottom = index; //new min
else
top = index; //new max
}
return bottom;
}
/**********************************************************************
* QSPLINE::move
*
* Reposition spline by vector
**********************************************************************/
void QSPLINE::move( // reposition spline
ICOORD vec // by vector
) {
inT32 segment; //index of segment
inT16 x_shift = vec.x ();
for (segment = 0; segment < segments; segment++) {
xcoords[segment] += x_shift;
quadratics[segment].move (vec);
}
xcoords[segment] += x_shift;
}
/**********************************************************************
* QSPLINE::overlap
*
* Return TRUE if spline2 overlaps this by no more than fraction less
* than the bounds of this.
**********************************************************************/
BOOL8 QSPLINE::overlap( //test overlap
QSPLINE *spline2, //2 cannot be smaller
double fraction //by more than this
) {
int leftlimit; /*common left limit */
int rightlimit; /*common right limit */
leftlimit = xcoords[1];
rightlimit = xcoords[segments - 1];
/*or too non-overlap */
if (spline2->segments < 3 || spline2->xcoords[1] > leftlimit + fraction * (rightlimit - leftlimit)
|| spline2->xcoords[spline2->segments - 1] < rightlimit
- fraction * (rightlimit - leftlimit))
return FALSE;
else
return TRUE;
}
/**********************************************************************
* extrapolate_spline
*
* Extrapolates the spline linearly using the same gradient as the
* quadratic has at either end.
**********************************************************************/
void QSPLINE::extrapolate( //linear extrapolation
double gradient, //gradient to use
int xmin, //new left edge
int xmax //new right edge
) {
register int segment; /*current segment of spline */
int dest_segment; //dest index
int *xstarts; //new boundaries
QUAD_COEFFS *quads; //new ones
int increment; //in size
increment = xmin < xcoords[0] ? 1 : 0;
if (xmax > xcoords[segments])
increment++;
if (increment == 0)
return;
xstarts = (int *) alloc_mem ((segments + 1 + increment) * sizeof (int));
quads =
(QUAD_COEFFS *) alloc_mem ((segments + increment) * sizeof (QUAD_COEFFS));
if (xmin < xcoords[0]) {
xstarts[0] = xmin;
quads[0].a = 0;
quads[0].b = gradient;
quads[0].c = y (xcoords[0]) - quads[0].b * xcoords[0];
dest_segment = 1;
}
else
dest_segment = 0;
for (segment = 0; segment < segments; segment++) {
xstarts[dest_segment] = xcoords[segment];
quads[dest_segment] = quadratics[segment];
dest_segment++;
}
xstarts[dest_segment] = xcoords[segment];
if (xmax > xcoords[segments]) {
quads[dest_segment].a = 0;
quads[dest_segment].b = gradient;
quads[dest_segment].c = y (xcoords[segments])
- quads[dest_segment].b * xcoords[segments];
dest_segment++;
xstarts[dest_segment] = xmax + 1;
}
segments = dest_segment;
free_mem(xcoords);
free_mem(quadratics);
xcoords = (inT32 *) xstarts;
quadratics = quads;
}
/**********************************************************************
* QSPLINE::plot
*
* Draw the QSPLINE in the given colour.
**********************************************************************/
#ifndef GRAPHICS_DISABLED
void QSPLINE::plot( //draw it
ScrollView* window, //window to draw in
ScrollView::Color colour //colour to draw in
) const {
inT32 segment; //index of segment
inT16 step; //index of poly piece
double increment; //x increment
double x; //x coord
window->Pen(colour);
for (segment = 0; segment < segments; segment++) {
increment =
(double) (xcoords[segment + 1] -
xcoords[segment]) / QSPLINE_PRECISION;
x = xcoords[segment];
for (step = 0; step <= QSPLINE_PRECISION; step++) {
if (segment == 0 && step == 0)
window->SetCursor(x, quadratics[segment].y (x));
else
window->DrawTo(x, quadratics[segment].y (x));
x += increment;
}
}
}
#endif
void QSPLINE::plot(Pix *pix) const {
if (pix == NULL) {
return;
}
inT32 segment; // Index of segment
inT16 step; // Index of poly piece
double increment; // x increment
double x; // x coord
double height = static_cast<double>(pixGetHeight(pix));
Pta* points = ptaCreate(QSPLINE_PRECISION * segments);
const int kLineWidth = 5;
for (segment = 0; segment < segments; segment++) {
increment = static_cast<double>((xcoords[segment + 1] -
xcoords[segment])) / QSPLINE_PRECISION;
x = xcoords[segment];
for (step = 0; step <= QSPLINE_PRECISION; step++) {
double y = height - quadratics[segment].y(x);
ptaAddPt(points, x, y);
x += increment;
}
}
switch (pixGetDepth(pix)) {
case 1:
pixRenderPolyline(pix, points, kLineWidth, L_SET_PIXELS, 1);
break;
case 32:
pixRenderPolylineArb(pix, points, kLineWidth, 255, 0, 0, 1);
break;
default:
pixRenderPolyline(pix, points, kLineWidth, L_CLEAR_PIXELS, 1);
break;
}
ptaDestroy(&points);
}
| 1080228-arabicocr11 | ccstruct/quspline.cpp | C++ | asf20 | 14,107 |
/* -*-C-*-
********************************************************************************
*
* File: vecfuncs.c (Formerly vecfuncs.c)
* Description: Blob definition
* Author: Mark Seaman, OCR Technology
* Created: Fri Oct 27 15:39:52 1989
* Modified: Tue Jul 9 17:44:12 1991 (Mark Seaman) marks@hpgrlt
* Language: C
* Package: N/A
* Status: Experimental (Do Not Distribute)
*
* (c) Copyright 1989, Hewlett-Packard Company.
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
** http://www.apache.org/licenses/LICENSE-2.0
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*
********************************************************************************
* Revision 5.1 89/07/27 11:47:50 11:47:50 ray ()
* Added ratings acces methods.
* This version ready for independent development.
*/
/*----------------------------------------------------------------------
I n c l u d e s
----------------------------------------------------------------------*/
#include "vecfuncs.h"
/*----------------------------------------------------------------------
F u n c t i o n s
----------------------------------------------------------------------*/
/**********************************************************************
* direction
*
* Show if the line is going in the positive or negative X direction.
**********************************************************************/
int direction(EDGEPT *point) {
int dir; /** direction to return **/
EDGEPT *prev; /** prev point **/
EDGEPT *next; /** next point **/
dir = 0;
prev = point->prev;
next = point->next;
if (((prev->pos.x <= point->pos.x) &&
(point->pos.x < next->pos.x)) ||
((prev->pos.x < point->pos.x) && (point->pos.x <= next->pos.x)))
dir = 1;
if (((prev->pos.x >= point->pos.x) &&
(point->pos.x > next->pos.x)) ||
((prev->pos.x > point->pos.x) && (point->pos.x >= next->pos.x)))
dir = -1;
return dir;
}
| 1080228-arabicocr11 | ccstruct/vecfuncs.cpp | C | asf20 | 2,456 |
/**********************************************************************
* File: boxread.cpp
* Description: Read data from a box file.
* Author: Ray Smith
* Created: Fri Aug 24 17:47:23 PDT 2007
*
* (C) Copyright 2007, Google Inc.
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
** http://www.apache.org/licenses/LICENSE-2.0
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*
**********************************************************************/
#include "boxread.h"
#include <string.h>
#include "fileerr.h"
#include "rect.h"
#include "strngs.h"
#include "tprintf.h"
#include "unichar.h"
// Special char code used to identify multi-blob labels.
static const char* kMultiBlobLabelCode = "WordStr";
// Open the boxfile based on the given image filename.
FILE* OpenBoxFile(const STRING& fname) {
STRING filename = BoxFileName(fname);
FILE* box_file = NULL;
if (!(box_file = fopen(filename.string(), "rb"))) {
CANTOPENFILE.error("read_next_box", TESSEXIT,
"Cant open box file %s",
filename.string());
}
return box_file;
}
// Reads all boxes from the given filename.
// Reads a specific target_page number if >= 0, or all pages otherwise.
// Skips blanks if skip_blanks is true.
// The UTF-8 label of the box is put in texts, and the full box definition as
// a string is put in box_texts, with the corresponding page number in pages.
// Each of the output vectors is optional (may be NULL).
// Returns false if no boxes are found.
bool ReadAllBoxes(int target_page, bool skip_blanks, const STRING& filename,
GenericVector<TBOX>* boxes,
GenericVector<STRING>* texts,
GenericVector<STRING>* box_texts,
GenericVector<int>* pages) {
GenericVector<char> box_data;
if (!tesseract::LoadDataFromFile(BoxFileName(filename), &box_data))
return false;
return ReadMemBoxes(target_page, skip_blanks, &box_data[0], boxes, texts,
box_texts, pages);
}
// Reads all boxes from the string. Otherwise, as ReadAllBoxes.
bool ReadMemBoxes(int target_page, bool skip_blanks, const char* box_data,
GenericVector<TBOX>* boxes,
GenericVector<STRING>* texts,
GenericVector<STRING>* box_texts,
GenericVector<int>* pages) {
STRING box_str(box_data);
GenericVector<STRING> lines;
box_str.split('\n', &lines);
if (lines.empty()) return false;
int num_boxes = 0;
for (int i = 0; i < lines.size(); ++i) {
int page = 0;
STRING utf8_str;
TBOX box;
if (!ParseBoxFileStr(lines[i].string(), &page, &utf8_str, &box)) {
continue;
}
if (skip_blanks && utf8_str == " ") continue;
if (target_page >= 0 && page != target_page) continue;
if (boxes != NULL) boxes->push_back(box);
if (texts != NULL) texts->push_back(utf8_str);
if (box_texts != NULL) {
STRING full_text;
MakeBoxFileStr(utf8_str.string(), box, target_page, &full_text);
box_texts->push_back(full_text);
}
if (pages != NULL) pages->push_back(page);
++num_boxes;
}
return num_boxes > 0;
}
// Returns the box file name corresponding to the given image_filename.
STRING BoxFileName(const STRING& image_filename) {
STRING box_filename = image_filename;
const char *lastdot = strrchr(box_filename.string(), '.');
if (lastdot != NULL)
box_filename.truncate_at(lastdot - box_filename.string());
box_filename += ".box";
return box_filename;
}
// TODO(rays) convert all uses of ReadNextBox to use the new ReadAllBoxes.
// Box files are used ONLY DURING TRAINING, but by both processes of
// creating tr files with tesseract, and unicharset_extractor.
// ReadNextBox factors out the code to interpret a line of a box
// file so that applybox and unicharset_extractor interpret the same way.
// This function returns the next valid box file utf8 string and coords
// and returns true, or false on eof (and closes the file).
// It ignores the utf8 file signature ByteOrderMark (U+FEFF=EF BB BF), checks
// for valid utf-8 and allows space or tab between fields.
// utf8_str is set with the unichar string, and bounding box with the box.
// If there are page numbers in the file, it reads them all.
bool ReadNextBox(int *line_number, FILE* box_file,
STRING* utf8_str, TBOX* bounding_box) {
return ReadNextBox(-1, line_number, box_file, utf8_str, bounding_box);
}
// As ReadNextBox above, but get a specific page number. (0-based)
// Use -1 to read any page number. Files without page number all
// read as if they are page 0.
bool ReadNextBox(int target_page, int *line_number, FILE* box_file,
STRING* utf8_str, TBOX* bounding_box) {
int page = 0;
char buff[kBoxReadBufSize]; // boxfile read buffer
char *buffptr = buff;
while (fgets(buff, sizeof(buff) - 1, box_file)) {
(*line_number)++;
buffptr = buff;
const unsigned char *ubuf = reinterpret_cast<const unsigned char*>(buffptr);
if (ubuf[0] == 0xef && ubuf[1] == 0xbb && ubuf[2] == 0xbf)
buffptr += 3; // Skip unicode file designation.
// Check for blank lines in box file
if (*buffptr == '\n' || *buffptr == '\0') continue;
// Skip blank boxes.
if (*buffptr == ' ' || *buffptr == '\t') continue;
if (*buffptr != '\0') {
if (!ParseBoxFileStr(buffptr, &page, utf8_str, bounding_box)) {
tprintf("Box file format error on line %i; ignored\n", *line_number);
continue;
}
if (target_page >= 0 && target_page != page)
continue; // Not on the appropriate page.
return true; // Successfully read a box.
}
}
fclose(box_file);
return false; // EOF
}
// Parses the given box file string into a page_number, utf8_str, and
// bounding_box. Returns true on a successful parse.
// The box file is assumed to contain box definitions, one per line, of the
// following format for blob-level boxes:
// <UTF8 str> <left> <bottom> <right> <top> <page id>
// and for word/line-level boxes:
// WordStr <left> <bottom> <right> <top> <page id> #<space-delimited word str>
// See applyybox.cpp for more information.
bool ParseBoxFileStr(const char* boxfile_str, int* page_number,
STRING* utf8_str, TBOX* bounding_box) {
*bounding_box = TBOX(); // Initialize it to empty.
*utf8_str = "";
char uch[kBoxReadBufSize];
const char *buffptr = boxfile_str;
// Read the unichar without messing up on Tibetan.
// According to issue 253 the utf-8 surrogates 85 and A0 are treated
// as whitespace by sscanf, so it is more reliable to just find
// ascii space and tab.
int uch_len = 0;
// Skip unicode file designation, if present.
const unsigned char *ubuf = reinterpret_cast<const unsigned char*>(buffptr);
if (ubuf[0] == 0xef && ubuf[1] == 0xbb && ubuf[2] == 0xbf)
buffptr += 3;
// Allow a single blank as the UTF-8 string. Check for empty string and
// then blindly eat the first character.
if (*buffptr == '\0') return false;
do {
uch[uch_len++] = *buffptr++;
} while (*buffptr != '\0' && *buffptr != ' ' && *buffptr != '\t' &&
uch_len < kBoxReadBufSize - 1);
uch[uch_len] = '\0';
if (*buffptr != '\0') ++buffptr;
int x_min, y_min, x_max, y_max;
*page_number = 0;
int count = sscanf(buffptr, "%d %d %d %d %d",
&x_min, &y_min, &x_max, &y_max, page_number);
if (count != 5 && count != 4) {
tprintf("Bad box coordinates in boxfile string! %s\n", ubuf);
return false;
}
// Test for long space-delimited string label.
if (strcmp(uch, kMultiBlobLabelCode) == 0 &&
(buffptr = strchr(buffptr, '#')) != NULL) {
strncpy(uch, buffptr + 1, kBoxReadBufSize - 1);
uch[kBoxReadBufSize - 1] = '\0'; // Prevent buffer overrun.
chomp_string(uch);
uch_len = strlen(uch);
}
// Validate UTF8 by making unichars with it.
int used = 0;
while (used < uch_len) {
UNICHAR ch(uch + used, uch_len - used);
int new_used = ch.utf8_len();
if (new_used == 0) {
tprintf("Bad UTF-8 str %s starts with 0x%02x at col %d\n",
uch + used, uch[used], used + 1);
return false;
}
used += new_used;
}
*utf8_str = uch;
if (x_min > x_max) Swap(&x_min, &x_max);
if (y_min > y_max) Swap(&y_min, &y_max);
bounding_box->set_to_given_coords(x_min, y_min, x_max, y_max);
return true; // Successfully read a box.
}
// Creates a box file string from a unichar string, TBOX and page number.
void MakeBoxFileStr(const char* unichar_str, const TBOX& box, int page_num,
STRING* box_str) {
*box_str = unichar_str;
box_str->add_str_int(" ", box.left());
box_str->add_str_int(" ", box.bottom());
box_str->add_str_int(" ", box.right());
box_str->add_str_int(" ", box.top());
box_str->add_str_int(" ", page_num);
}
| 1080228-arabicocr11 | ccstruct/boxread.cpp | C++ | asf20 | 9,271 |
///////////////////////////////////////////////////////////////////////
// File: imagedata.h
// Description: Class to hold information about a single multi-page tiff
// training file and its corresponding boxes or text file.
// Author: Ray Smith
// Created: Tue May 28 08:56:06 PST 2013
//
// (C) Copyright 2013, Google Inc.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
///////////////////////////////////////////////////////////////////////
#include "imagedata.h"
#include "allheaders.h"
#include "boxread.h"
#include "callcpp.h"
#include "helpers.h"
#include "tprintf.h"
namespace tesseract {
WordFeature::WordFeature() : x_(0), y_(0), dir_(0) {
}
WordFeature::WordFeature(const FCOORD& fcoord, uinT8 dir)
: x_(IntCastRounded(fcoord.x())),
y_(ClipToRange(IntCastRounded(fcoord.y()), 0, MAX_UINT8)),
dir_(dir) {
}
// Computes the maximum x and y value in the features.
void WordFeature::ComputeSize(const GenericVector<WordFeature>& features,
int* max_x, int* max_y) {
*max_x = 0;
*max_y = 0;
for (int f = 0; f < features.size(); ++f) {
if (features[f].x_ > *max_x) *max_x = features[f].x_;
if (features[f].y_ > *max_y) *max_y = features[f].y_;
}
}
// Draws the features in the given window.
void WordFeature::Draw(const GenericVector<WordFeature>& features,
ScrollView* window) {
for (int f = 0; f < features.size(); ++f) {
FCOORD pos(features[f].x_, features[f].y_);
FCOORD dir;
dir.from_direction(features[f].dir_);
dir *= 8.0f;
window->SetCursor(IntCastRounded(pos.x() - dir.x()),
IntCastRounded(pos.y() - dir.y()));
window->DrawTo(IntCastRounded(pos.x() + dir.x()),
IntCastRounded(pos.y() + dir.y()));
}
}
// Writes to the given file. Returns false in case of error.
bool WordFeature::Serialize(FILE* fp) const {
if (fwrite(&x_, sizeof(x_), 1, fp) != 1) return false;
if (fwrite(&y_, sizeof(y_), 1, fp) != 1) return false;
if (fwrite(&dir_, sizeof(dir_), 1, fp) != 1) return false;
return true;
}
// Reads from the given file. Returns false in case of error.
// If swap is true, assumes a big/little-endian swap is needed.
bool WordFeature::DeSerialize(bool swap, FILE* fp) {
if (fread(&x_, sizeof(x_), 1, fp) != 1) return false;
if (swap) ReverseN(&x_, sizeof(x_));
if (fread(&y_, sizeof(y_), 1, fp) != 1) return false;
if (fread(&dir_, sizeof(dir_), 1, fp) != 1) return false;
return true;
}
void FloatWordFeature::FromWordFeatures(
const GenericVector<WordFeature>& word_features,
GenericVector<FloatWordFeature>* float_features) {
for (int i = 0; i < word_features.size(); ++i) {
FloatWordFeature f;
f.x = word_features[i].x();
f.y = word_features[i].y();
f.dir = word_features[i].dir();
f.x_bucket = 0; // Will set it later.
float_features->push_back(f);
}
}
// Sort function to sort first by x-bucket, then by y.
/* static */
int FloatWordFeature::SortByXBucket(const void* v1, const void* v2) {
const FloatWordFeature* f1 = reinterpret_cast<const FloatWordFeature*>(v1);
const FloatWordFeature* f2 = reinterpret_cast<const FloatWordFeature*>(v2);
int x_diff = f1->x_bucket - f2->x_bucket;
if (x_diff == 0) return f1->y - f2->y;
return x_diff;
}
ImageData::ImageData() : page_number_(-1), vertical_text_(false) {
}
// Takes ownership of the pix and destroys it.
ImageData::ImageData(bool vertical, Pix* pix)
: page_number_(0), vertical_text_(vertical) {
SetPix(pix);
}
ImageData::~ImageData() {
}
// Builds and returns an ImageData from the basic data. Note that imagedata,
// truth_text, and box_text are all the actual file data, NOT filenames.
ImageData* ImageData::Build(const char* name, int page_number, const char* lang,
const char* imagedata, int imagedatasize,
const char* truth_text, const char* box_text) {
ImageData* image_data = new ImageData();
image_data->imagefilename_ = name;
image_data->page_number_ = page_number;
image_data->language_ = lang;
// Save the imagedata.
image_data->image_data_.init_to_size(imagedatasize, 0);
memcpy(&image_data->image_data_[0], imagedata, imagedatasize);
if (!image_data->AddBoxes(box_text)) {
if (truth_text == NULL || truth_text[0] == '\0') {
tprintf("Error: No text corresponding to page %d from image %s!\n",
page_number, name);
delete image_data;
return NULL;
}
image_data->transcription_ = truth_text;
// If we have no boxes, the transcription is in the 0th box_texts_.
image_data->box_texts_.push_back(truth_text);
// We will create a box for the whole image on PreScale, to save unpacking
// the image now.
} else if (truth_text != NULL && truth_text[0] != '\0' &&
image_data->transcription_ != truth_text) {
// Save the truth text as it is present and disagrees with the box text.
image_data->transcription_ = truth_text;
}
return image_data;
}
// Writes to the given file. Returns false in case of error.
bool ImageData::Serialize(TFile* fp) const {
if (!imagefilename_.Serialize(fp)) return false;
if (fp->FWrite(&page_number_, sizeof(page_number_), 1) != 1) return false;
if (!image_data_.Serialize(fp)) return false;
if (!transcription_.Serialize(fp)) return false;
// WARNING: Will not work across different endian machines.
if (!boxes_.Serialize(fp)) return false;
if (!box_texts_.SerializeClasses(fp)) return false;
inT8 vertical = vertical_text_;
if (fp->FWrite(&vertical, sizeof(vertical), 1) != 1) return false;
return true;
}
// Reads from the given file. Returns false in case of error.
// If swap is true, assumes a big/little-endian swap is needed.
bool ImageData::DeSerialize(bool swap, TFile* fp) {
if (!imagefilename_.DeSerialize(swap, fp)) return false;
if (fp->FRead(&page_number_, sizeof(page_number_), 1) != 1) return false;
if (swap) ReverseN(&page_number_, sizeof(page_number_));
if (!image_data_.DeSerialize(swap, fp)) return false;
if (!transcription_.DeSerialize(swap, fp)) return false;
// WARNING: Will not work across different endian machines.
if (!boxes_.DeSerialize(swap, fp)) return false;
if (!box_texts_.DeSerializeClasses(swap, fp)) return false;
inT8 vertical = 0;
if (fp->FRead(&vertical, sizeof(vertical), 1) != 1) return false;
vertical_text_ = vertical != 0;
return true;
}
// Saves the given Pix as a PNG-encoded string and destroys it.
void ImageData::SetPix(Pix* pix) {
SetPixInternal(pix, &image_data_);
}
// Returns the Pix image for *this. Must be pixDestroyed after use.
Pix* ImageData::GetPix() const {
return GetPixInternal(image_data_);
}
// Gets anything and everything with a non-NULL pointer, prescaled to a
// given target_height (if 0, then the original image height), and aligned.
// Also returns (if not NULL) the width and height of the scaled image.
// The return value is the scale factor that was applied to the image to
// achieve the target_height.
float ImageData::PreScale(int target_height, Pix** pix,
int* scaled_width, int* scaled_height,
GenericVector<TBOX>* boxes) const {
int input_width = 0;
int input_height = 0;
Pix* src_pix = GetPix();
ASSERT_HOST(src_pix != NULL);
input_width = pixGetWidth(src_pix);
input_height = pixGetHeight(src_pix);
if (target_height == 0)
target_height = input_height;
float im_factor = static_cast<float>(target_height) / input_height;
if (scaled_width != NULL)
*scaled_width = IntCastRounded(im_factor * input_width);
if (scaled_height != NULL)
*scaled_height = target_height;
if (pix != NULL) {
// Get the scaled image.
pixDestroy(pix);
*pix = pixScale(src_pix, im_factor, im_factor);
if (*pix == NULL) {
tprintf("Scaling pix of size %d, %d by factor %g made null pix!!\n",
input_width, input_height, im_factor);
}
if (scaled_width != NULL)
*scaled_width = pixGetWidth(*pix);
if (scaled_height != NULL)
*scaled_height = pixGetHeight(*pix);
}
pixDestroy(&src_pix);
if (boxes != NULL) {
// Get the boxes.
boxes->truncate(0);
for (int b = 0; b < boxes_.size(); ++b) {
TBOX box = boxes_[b];
box.scale(im_factor);
boxes->push_back(box);
}
if (boxes->empty()) {
// Make a single box for the whole image.
TBOX box(0, 0, im_factor * input_width, target_height);
boxes->push_back(box);
}
}
return im_factor;
}
int ImageData::MemoryUsed() const {
return image_data_.size();
}
// Draws the data in a new window.
void ImageData::Display() const {
const int kTextSize = 64;
// Draw the image.
Pix* pix = GetPix();
if (pix == NULL) return;
int width = pixGetWidth(pix);
int height = pixGetHeight(pix);
ScrollView* win = new ScrollView("Imagedata", 100, 100,
2 * (width + 2 * kTextSize),
2 * (height + 4 * kTextSize),
width + 10, height + 3 * kTextSize, true);
win->Image(pix, 0, height - 1);
pixDestroy(&pix);
// Draw the boxes.
win->Pen(ScrollView::RED);
win->Brush(ScrollView::NONE);
win->TextAttributes("Arial", kTextSize, false, false, false);
for (int b = 0; b < boxes_.size(); ++b) {
boxes_[b].plot(win);
win->Text(boxes_[b].left(), height + kTextSize, box_texts_[b].string());
TBOX scaled(boxes_[b]);
scaled.scale(256.0 / height);
scaled.plot(win);
}
// The full transcription.
win->Pen(ScrollView::CYAN);
win->Text(0, height + kTextSize * 2, transcription_.string());
// Add the features.
win->Pen(ScrollView::GREEN);
win->Update();
window_wait(win);
}
// Adds the supplied boxes and transcriptions that correspond to the correct
// page number.
void ImageData::AddBoxes(const GenericVector<TBOX>& boxes,
const GenericVector<STRING>& texts,
const GenericVector<int>& box_pages) {
// Copy the boxes and make the transcription.
for (int i = 0; i < box_pages.size(); ++i) {
if (page_number_ >= 0 && box_pages[i] != page_number_) continue;
transcription_ += texts[i];
boxes_.push_back(boxes[i]);
box_texts_.push_back(texts[i]);
}
}
// Saves the given Pix as a PNG-encoded string and destroys it.
void ImageData::SetPixInternal(Pix* pix, GenericVector<char>* image_data) {
l_uint8* data;
size_t size;
pixWriteMem(&data, &size, pix, IFF_PNG);
pixDestroy(&pix);
image_data->init_to_size(size, 0);
memcpy(&(*image_data)[0], data, size);
free(data);
}
// Returns the Pix image for the image_data. Must be pixDestroyed after use.
Pix* ImageData::GetPixInternal(const GenericVector<char>& image_data) {
Pix* pix = NULL;
if (!image_data.empty()) {
// Convert the array to an image.
const unsigned char* u_data =
reinterpret_cast<const unsigned char*>(&image_data[0]);
pix = pixReadMem(u_data, image_data.size());
}
return pix;
}
// Parses the text string as a box file and adds any discovered boxes that
// match the page number. Returns false on error.
bool ImageData::AddBoxes(const char* box_text) {
if (box_text != NULL && box_text[0] != '\0') {
GenericVector<TBOX> boxes;
GenericVector<STRING> texts;
GenericVector<int> box_pages;
if (ReadMemBoxes(page_number_, false, box_text, &boxes,
&texts, NULL, &box_pages)) {
AddBoxes(boxes, texts, box_pages);
return true;
} else {
tprintf("Error: No boxes for page %d from image %s!\n",
page_number_, imagefilename_.string());
}
}
return false;
}
DocumentData::DocumentData(const STRING& name)
: document_name_(name), pages_offset_(0), total_pages_(0),
memory_used_(0), max_memory_(0), reader_(NULL) {}
DocumentData::~DocumentData() {}
// Reads all the pages in the given lstmf filename to the cache. The reader
// is used to read the file.
bool DocumentData::LoadDocument(const char* filename, const char* lang,
int start_page, inT64 max_memory,
FileReader reader) {
document_name_ = filename;
lang_ = lang;
pages_offset_ = start_page;
max_memory_ = max_memory;
reader_ = reader;
return ReCachePages();
}
// Writes all the pages to the given filename. Returns false on error.
bool DocumentData::SaveDocument(const char* filename, FileWriter writer) {
TFile fp;
fp.OpenWrite(NULL);
if (!pages_.Serialize(&fp) || !fp.CloseWrite(filename, writer)) {
tprintf("Serialize failed: %s\n", filename);
return false;
}
return true;
}
bool DocumentData::SaveToBuffer(GenericVector<char>* buffer) {
TFile fp;
fp.OpenWrite(buffer);
return pages_.Serialize(&fp);
}
// Returns a pointer to the page with the given index, modulo the total
// number of pages, recaching if needed.
const ImageData* DocumentData::GetPage(int index) {
index = Modulo(index, total_pages_);
if (index < pages_offset_ || index >= pages_offset_ + pages_.size()) {
pages_offset_ = index;
if (!ReCachePages()) return NULL;
}
return pages_[index - pages_offset_];
}
// Loads as many pages can fit in max_memory_ starting at index pages_offset_.
bool DocumentData::ReCachePages() {
// Read the file.
TFile fp;
if (!fp.Open(document_name_, reader_)) return false;
memory_used_ = 0;
if (!pages_.DeSerialize(false, &fp)) {
tprintf("Deserialize failed: %s\n", document_name_.string());
pages_.truncate(0);
return false;
}
total_pages_ = pages_.size();
pages_offset_ %= total_pages_;
// Delete pages before the first one we want, and relocate the rest.
int page;
for (page = 0; page < pages_.size(); ++page) {
if (page < pages_offset_) {
delete pages_[page];
pages_[page] = NULL;
} else {
ImageData* image_data = pages_[page];
if (max_memory_ > 0 && page > pages_offset_ &&
memory_used_ + image_data->MemoryUsed() > max_memory_)
break; // Don't go over memory quota unless the first image.
if (image_data->imagefilename().length() == 0) {
image_data->set_imagefilename(document_name_);
image_data->set_page_number(page);
}
image_data->set_language(lang_);
memory_used_ += image_data->MemoryUsed();
if (pages_offset_ != 0) {
pages_[page - pages_offset_] = image_data;
pages_[page] = NULL;
}
}
}
pages_.truncate(page - pages_offset_);
tprintf("Loaded %d/%d pages (%d-%d) of document %s\n",
pages_.size(), total_pages_, pages_offset_,
pages_offset_ + pages_.size(), document_name_.string());
return !pages_.empty();
}
// Adds the given page data to this document, counting up memory.
void DocumentData::AddPageToDocument(ImageData* page) {
pages_.push_back(page);
memory_used_ += page->MemoryUsed();
}
// A collection of DocumentData that knows roughly how much memory it is using.
DocumentCache::DocumentCache(inT64 max_memory)
: total_pages_(0), memory_used_(0), max_memory_(max_memory) {}
DocumentCache::~DocumentCache() {}
// Adds all the documents in the list of filenames, counting memory.
// The reader is used to read the files.
bool DocumentCache::LoadDocuments(const GenericVector<STRING>& filenames,
const char* lang, FileReader reader) {
inT64 fair_share_memory = max_memory_ / filenames.size();
for (int arg = 0; arg < filenames.size(); ++arg) {
STRING filename = filenames[arg];
DocumentData* document = new DocumentData(filename);
if (document->LoadDocument(filename.string(), lang, 0,
fair_share_memory, reader)) {
AddToCache(document);
} else {
tprintf("Failed to load image %s!\n", filename.string());
delete document;
}
}
tprintf("Loaded %d pages, total %gMB\n",
total_pages_, memory_used_ / 1048576.0);
return total_pages_ > 0;
}
// Adds document to the cache, throwing out other documents if needed.
bool DocumentCache::AddToCache(DocumentData* data) {
inT64 new_memory = data->memory_used();
memory_used_ += new_memory;
documents_.push_back(data);
total_pages_ += data->NumPages();
// Delete the first item in the array, and other pages of the same name
// while memory is full.
while (memory_used_ >= max_memory_ && max_memory_ > 0) {
tprintf("Memory used=%lld vs max=%lld, discarding doc of size %lld\n",
memory_used_ , max_memory_, documents_[0]->memory_used());
memory_used_ -= documents_[0]->memory_used();
total_pages_ -= documents_[0]->NumPages();
documents_.remove(0);
}
return true;
}
// Finds and returns a document by name.
DocumentData* DocumentCache::FindDocument(const STRING& document_name) const {
for (int i = 0; i < documents_.size(); ++i) {
if (documents_[i]->document_name() == document_name)
return documents_[i];
}
return NULL;
}
// Returns a page by serial number, selecting them in a round-robin fashion
// from all the documents.
const ImageData* DocumentCache::GetPageBySerial(int serial) {
int document_index = serial % documents_.size();
return documents_[document_index]->GetPage(serial / documents_.size());
}
} // namespace tesseract.
| 1080228-arabicocr11 | ccstruct/imagedata.cpp | C++ | asf20 | 17,821 |
/**********************************************************************
* File: blobbox.cpp (Formerly blobnbox.c)
* Description: Code for the textord blob class.
* Author: Ray Smith
* Created: Thu Jul 30 09:08:51 BST 1992
*
* (C) Copyright 1992, Hewlett-Packard Ltd.
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
** http://www.apache.org/licenses/LICENSE-2.0
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*
**********************************************************************/
// Include automatically generated configuration file if running autoconf.
#ifdef HAVE_CONFIG_H
#include "config_auto.h"
#endif
#include "blobbox.h"
#include "allheaders.h"
#include "blobs.h"
#include "helpers.h"
#include "normalis.h"
#define PROJECTION_MARGIN 10 //arbitrary
#define EXTERN
ELISTIZE (BLOBNBOX) ELIST2IZE (TO_ROW) ELISTIZE (TO_BLOCK)
// Upto 30 degrees is allowed for rotations of diacritic blobs.
const double kCosSmallAngle = 0.866;
// Min aspect ratio for a joined word to indicate an obvious flow direction.
const double kDefiniteAspectRatio = 2.0;
// Multiple of short length in perimeter to make a joined word.
const double kComplexShapePerimeterRatio = 1.5;
// Min multiple of linesize for medium-sized blobs in ReFilterBlobs.
const double kMinMediumSizeRatio = 0.25;
// Max multiple of linesize for medium-sized blobs in ReFilterBlobs.
const double kMaxMediumSizeRatio = 4.0;
// Rotates the box and the underlying blob.
void BLOBNBOX::rotate(FCOORD rotation) {
cblob_ptr->rotate(rotation);
rotate_box(rotation);
compute_bounding_box();
}
// Reflect the box in the y-axis, leaving the underlying blob untouched.
void BLOBNBOX::reflect_box_in_y_axis() {
int left = -box.right();
box.set_right(-box.left());
box.set_left(left);
}
// Rotates the box by the angle given by rotation.
// If the blob is a diacritic, then only small rotations for skew
// correction can be applied.
void BLOBNBOX::rotate_box(FCOORD rotation) {
if (IsDiacritic()) {
ASSERT_HOST(rotation.x() >= kCosSmallAngle)
ICOORD top_pt((box.left() + box.right()) / 2, base_char_top_);
ICOORD bottom_pt(top_pt.x(), base_char_bottom_);
top_pt.rotate(rotation);
base_char_top_ = top_pt.y();
bottom_pt.rotate(rotation);
base_char_bottom_ = bottom_pt.y();
box.rotate(rotation);
} else {
box.rotate(rotation);
set_diacritic_box(box);
}
}
/**********************************************************************
* BLOBNBOX::merge
*
* Merge this blob with the given blob, which should be after this.
**********************************************************************/
void BLOBNBOX::merge( //merge blobs
BLOBNBOX *nextblob //blob to join with
) {
box += nextblob->box; //merge boxes
set_diacritic_box(box);
nextblob->joined = TRUE;
}
// Merge this with other, taking the outlines from other.
// Other is not deleted, but left for the caller to handle.
void BLOBNBOX::really_merge(BLOBNBOX* other) {
if (cblob_ptr != NULL && other->cblob_ptr != NULL) {
C_OUTLINE_IT ol_it(cblob_ptr->out_list());
ol_it.add_list_after(other->cblob_ptr->out_list());
}
compute_bounding_box();
}
/**********************************************************************
* BLOBNBOX::chop
*
* Chop this blob into equal sized pieces using the x height as a guide.
* The blob is not actually chopped. Instead, fake blobs are inserted
* with the relevant bounding boxes.
**********************************************************************/
void BLOBNBOX::chop( //chop blobs
BLOBNBOX_IT *start_it, //location of this
BLOBNBOX_IT *end_it, //iterator
FCOORD rotation, //for landscape
float xheight //of line
) {
inT16 blobcount; //no of blobs
BLOBNBOX *newblob; //fake blob
BLOBNBOX *blob; //current blob
inT16 blobindex; //number of chop
inT16 leftx; //left edge of blob
float blobwidth; //width of each
float rightx; //right edge to scan
float ymin, ymax; //limits of new blob
float test_ymin, test_ymax; //limits of part blob
ICOORD bl, tr; //corners of box
BLOBNBOX_IT blob_it; //blob iterator
//get no of chops
blobcount = (inT16) floor (box.width () / xheight);
if (blobcount > 1 && cblob_ptr != NULL) {
//width of each
blobwidth = (float) (box.width () + 1) / blobcount;
for (blobindex = blobcount - 1, rightx = box.right ();
blobindex >= 0; blobindex--, rightx -= blobwidth) {
ymin = (float) MAX_INT32;
ymax = (float) -MAX_INT32;
blob_it = *start_it;
do {
blob = blob_it.data ();
find_cblob_vlimits(blob->cblob_ptr, rightx - blobwidth,
rightx,
/*rotation, */ test_ymin, test_ymax);
blob_it.forward ();
UpdateRange(test_ymin, test_ymax, &ymin, &ymax);
}
while (blob != end_it->data ());
if (ymin < ymax) {
leftx = (inT16) floor (rightx - blobwidth);
if (leftx < box.left ())
leftx = box.left (); //clip to real box
bl = ICOORD (leftx, (inT16) floor (ymin));
tr = ICOORD ((inT16) ceil (rightx), (inT16) ceil (ymax));
if (blobindex == 0)
box = TBOX (bl, tr); //change box
else {
newblob = new BLOBNBOX;
//box is all it has
newblob->box = TBOX (bl, tr);
//stay on current
newblob->base_char_top_ = tr.y();
newblob->base_char_bottom_ = bl.y();
end_it->add_after_stay_put (newblob);
}
}
}
}
}
// Returns the box gaps between this and its neighbours_ in an array
// indexed by BlobNeighbourDir.
void BLOBNBOX::NeighbourGaps(int gaps[BND_COUNT]) const {
for (int dir = 0; dir < BND_COUNT; ++dir) {
gaps[dir] = MAX_INT16;
BLOBNBOX* neighbour = neighbours_[dir];
if (neighbour != NULL) {
TBOX n_box = neighbour->bounding_box();
if (dir == BND_LEFT || dir == BND_RIGHT) {
gaps[dir] = box.x_gap(n_box);
} else {
gaps[dir] = box.y_gap(n_box);
}
}
}
}
// Returns the min and max horizontal and vertical gaps (from NeighbourGaps)
// modified so that if the max exceeds the max dimension of the blob, and
// the min is less, the max is replaced with the min.
// The objective is to catch cases where there is only a single neighbour
// and avoid reporting the other gap as a ridiculously large number
void BLOBNBOX::MinMaxGapsClipped(int* h_min, int* h_max,
int* v_min, int* v_max) const {
int max_dimension = MAX(box.width(), box.height());
int gaps[BND_COUNT];
NeighbourGaps(gaps);
*h_min = MIN(gaps[BND_LEFT], gaps[BND_RIGHT]);
*h_max = MAX(gaps[BND_LEFT], gaps[BND_RIGHT]);
if (*h_max > max_dimension && *h_min < max_dimension) *h_max = *h_min;
*v_min = MIN(gaps[BND_ABOVE], gaps[BND_BELOW]);
*v_max = MAX(gaps[BND_ABOVE], gaps[BND_BELOW]);
if (*v_max > max_dimension && *v_min < max_dimension) *v_max = *v_min;
}
// NULLs out any neighbours that are DeletableNoise to remove references.
void BLOBNBOX::CleanNeighbours() {
for (int dir = 0; dir < BND_COUNT; ++dir) {
BLOBNBOX* neighbour = neighbours_[dir];
if (neighbour != NULL && neighbour->DeletableNoise()) {
neighbours_[dir] = NULL;
good_stroke_neighbours_[dir] = false;
}
}
}
// Returns positive if there is at least one side neighbour that has a similar
// stroke width and is not on the other side of a rule line.
int BLOBNBOX::GoodTextBlob() const {
int score = 0;
for (int dir = 0; dir < BND_COUNT; ++dir) {
BlobNeighbourDir bnd = static_cast<BlobNeighbourDir>(dir);
if (good_stroke_neighbour(bnd))
++score;
}
return score;
}
// Returns the number of side neighbours that are of type BRT_NOISE.
int BLOBNBOX::NoisyNeighbours() const {
int count = 0;
for (int dir = 0; dir < BND_COUNT; ++dir) {
BlobNeighbourDir bnd = static_cast<BlobNeighbourDir>(dir);
BLOBNBOX* blob = neighbour(bnd);
if (blob != NULL && blob->region_type() == BRT_NOISE)
++count;
}
return count;
}
// Returns true, and sets vert_possible/horz_possible if the blob has some
// feature that makes it individually appear to flow one way.
// eg if it has a high aspect ratio, yet has a complex shape, such as a
// joined word in Latin, Arabic, or Hindi, rather than being a -, I, l, 1 etc.
bool BLOBNBOX::DefiniteIndividualFlow() {
if (cblob() == NULL) return false;
int box_perimeter = 2 * (box.height() + box.width());
if (box.width() > box.height() * kDefiniteAspectRatio) {
// Attempt to distinguish a wide joined word from a dash.
// If it is a dash, then its perimeter is approximately
// 2 * (box width + stroke width), but more if the outline is noisy,
// so perimeter - 2*(box width + stroke width) should be close to zero.
// A complex shape such as a joined word should have a much larger value.
int perimeter = cblob()->perimeter();
if (vert_stroke_width() > 0 || perimeter <= 0)
perimeter -= 2 * vert_stroke_width();
else
perimeter -= 4 * cblob()->area() / perimeter;
perimeter -= 2 * box.width();
// Use a multiple of the box perimeter as a threshold.
if (perimeter > kComplexShapePerimeterRatio * box_perimeter) {
set_vert_possible(false);
set_horz_possible(true);
return true;
}
}
if (box.height() > box.width() * kDefiniteAspectRatio) {
// As above, but for a putative vertical word vs a I/1/l.
int perimeter = cblob()->perimeter();
if (horz_stroke_width() > 0 || perimeter <= 0)
perimeter -= 2 * horz_stroke_width();
else
perimeter -= 4 * cblob()->area() / perimeter;
perimeter -= 2 * box.height();
if (perimeter > kComplexShapePerimeterRatio * box_perimeter) {
set_vert_possible(true);
set_horz_possible(false);
return true;
}
}
return false;
}
// Returns true if there is no tabstop violation in merging this and other.
bool BLOBNBOX::ConfirmNoTabViolation(const BLOBNBOX& other) const {
if (box.left() < other.box.left() && box.left() < other.left_rule_)
return false;
if (other.box.left() < box.left() && other.box.left() < left_rule_)
return false;
if (box.right() > other.box.right() && box.right() > other.right_rule_)
return false;
if (other.box.right() > box.right() && other.box.right() > right_rule_)
return false;
return true;
}
// Returns true if other has a similar stroke width to this.
bool BLOBNBOX::MatchingStrokeWidth(const BLOBNBOX& other,
double fractional_tolerance,
double constant_tolerance) const {
// The perimeter-based width is used as a backup in case there is
// no information in the blob.
double p_width = area_stroke_width();
double n_p_width = other.area_stroke_width();
float h_tolerance = horz_stroke_width_ * fractional_tolerance
+ constant_tolerance;
float v_tolerance = vert_stroke_width_ * fractional_tolerance
+ constant_tolerance;
double p_tolerance = p_width * fractional_tolerance
+ constant_tolerance;
bool h_zero = horz_stroke_width_ == 0.0f || other.horz_stroke_width_ == 0.0f;
bool v_zero = vert_stroke_width_ == 0.0f || other.vert_stroke_width_ == 0.0f;
bool h_ok = !h_zero && NearlyEqual(horz_stroke_width_,
other.horz_stroke_width_, h_tolerance);
bool v_ok = !v_zero && NearlyEqual(vert_stroke_width_,
other.vert_stroke_width_, v_tolerance);
bool p_ok = h_zero && v_zero && NearlyEqual(p_width, n_p_width, p_tolerance);
// For a match, at least one of the horizontal and vertical widths
// must match, and the other one must either match or be zero.
// Only if both are zero will we look at the perimeter metric.
return p_ok || ((v_ok || h_ok) && (h_ok || h_zero) && (v_ok || v_zero));
}
// Returns a bounding box of the outline contained within the
// given horizontal range.
TBOX BLOBNBOX::BoundsWithinLimits(int left, int right) {
FCOORD no_rotation(1.0f, 0.0f);
float top = box.top();
float bottom = box.bottom();
if (cblob_ptr != NULL) {
find_cblob_limits(cblob_ptr, static_cast<float>(left),
static_cast<float>(right), no_rotation,
bottom, top);
}
if (top < bottom) {
top = box.top();
bottom = box.bottom();
}
FCOORD bot_left(left, bottom);
FCOORD top_right(right, top);
TBOX shrunken_box(bot_left);
TBOX shrunken_box2(top_right);
shrunken_box += shrunken_box2;
return shrunken_box;
}
// Estimates and stores the baseline position based on the shape of the
// outline.
void BLOBNBOX::EstimateBaselinePosition() {
baseline_y_ = box.bottom(); // The default.
if (cblob_ptr == NULL) return;
baseline_y_ = cblob_ptr->EstimateBaselinePosition();
}
// Helper to call CleanNeighbours on all blobs on the list.
void BLOBNBOX::CleanNeighbours(BLOBNBOX_LIST* blobs) {
BLOBNBOX_IT blob_it(blobs);
for (blob_it.mark_cycle_pt(); !blob_it.cycled_list(); blob_it.forward()) {
blob_it.data()->CleanNeighbours();
}
}
// Helper to delete all the deletable blobs on the list.
void BLOBNBOX::DeleteNoiseBlobs(BLOBNBOX_LIST* blobs) {
BLOBNBOX_IT blob_it(blobs);
for (blob_it.mark_cycle_pt(); !blob_it.cycled_list(); blob_it.forward()) {
BLOBNBOX* blob = blob_it.data();
if (blob->DeletableNoise()) {
delete blob->cblob();
delete blob_it.extract();
}
}
}
// Helper to compute edge offsets for all the blobs on the list.
// See coutln.h for an explanation of edge offsets.
void BLOBNBOX::ComputeEdgeOffsets(Pix* thresholds, Pix* grey,
BLOBNBOX_LIST* blobs) {
int grey_height = 0;
int thr_height = 0;
int scale_factor = 1;
if (thresholds != NULL && grey != NULL) {
grey_height = pixGetHeight(grey);
thr_height = pixGetHeight(thresholds);
scale_factor =
IntCastRounded(static_cast<double>(grey_height) / thr_height);
}
BLOBNBOX_IT blob_it(blobs);
for (blob_it.mark_cycle_pt(); !blob_it.cycled_list(); blob_it.forward()) {
BLOBNBOX* blob = blob_it.data();
if (blob->cblob() != NULL) {
// Get the threshold that applies to this blob.
l_uint32 threshold = 128;
if (thresholds != NULL && grey != NULL) {
const TBOX& box = blob->cblob()->bounding_box();
// Transform the coordinates if required.
TPOINT pt((box.left() + box.right()) / 2,
(box.top() + box.bottom()) / 2);
pixGetPixel(thresholds, pt.x / scale_factor,
thr_height - 1 - pt.y / scale_factor, &threshold);
}
blob->cblob()->ComputeEdgeOffsets(threshold, grey);
}
}
}
#ifndef GRAPHICS_DISABLED
// Helper to draw all the blobs on the list in the given body_colour,
// with child outlines in the child_colour.
void BLOBNBOX::PlotBlobs(BLOBNBOX_LIST* list,
ScrollView::Color body_colour,
ScrollView::Color child_colour,
ScrollView* win) {
BLOBNBOX_IT it(list);
for (it.mark_cycle_pt(); !it.cycled_list(); it.forward()) {
it.data()->plot(win, body_colour, child_colour);
}
}
// Helper to draw only DeletableNoise blobs (unowned, BRT_NOISE) on the
// given list in the given body_colour, with child outlines in the
// child_colour.
void BLOBNBOX::PlotNoiseBlobs(BLOBNBOX_LIST* list,
ScrollView::Color body_colour,
ScrollView::Color child_colour,
ScrollView* win) {
BLOBNBOX_IT it(list);
for (it.mark_cycle_pt(); !it.cycled_list(); it.forward()) {
BLOBNBOX* blob = it.data();
if (blob->DeletableNoise())
blob->plot(win, body_colour, child_colour);
}
}
ScrollView::Color BLOBNBOX::TextlineColor(BlobRegionType region_type,
BlobTextFlowType flow_type) {
switch (region_type) {
case BRT_HLINE:
return ScrollView::BROWN;
case BRT_VLINE:
return ScrollView::DARK_GREEN;
case BRT_RECTIMAGE:
return ScrollView::RED;
case BRT_POLYIMAGE:
return ScrollView::ORANGE;
case BRT_UNKNOWN:
return flow_type == BTFT_NONTEXT ? ScrollView::CYAN : ScrollView::WHITE;
case BRT_VERT_TEXT:
if (flow_type == BTFT_STRONG_CHAIN || flow_type == BTFT_TEXT_ON_IMAGE)
return ScrollView::GREEN;
if (flow_type == BTFT_CHAIN)
return ScrollView::LIME_GREEN;
return ScrollView::YELLOW;
case BRT_TEXT:
if (flow_type == BTFT_STRONG_CHAIN)
return ScrollView::BLUE;
if (flow_type == BTFT_TEXT_ON_IMAGE)
return ScrollView::LIGHT_BLUE;
if (flow_type == BTFT_CHAIN)
return ScrollView::MEDIUM_BLUE;
if (flow_type == BTFT_LEADER)
return ScrollView::WHEAT;
if (flow_type == BTFT_NONTEXT)
return ScrollView::PINK;
return ScrollView::MAGENTA;
default:
return ScrollView::GREY;
}
}
// Keep in sync with BlobRegionType.
ScrollView::Color BLOBNBOX::BoxColor() const {
return TextlineColor(region_type_, flow_);
}
void BLOBNBOX::plot(ScrollView* window, // window to draw in
ScrollView::Color blob_colour, // for outer bits
ScrollView::Color child_colour) { // for holes
if (cblob_ptr != NULL)
cblob_ptr->plot(window, blob_colour, child_colour);
}
#endif
/**********************************************************************
* find_cblob_limits
*
* Scan the outlines of the cblob to locate the y min and max
* between the given x limits.
**********************************************************************/
void find_cblob_limits( //get y limits
C_BLOB *blob, //blob to search
float leftx, //x limits
float rightx,
FCOORD rotation, //for landscape
float &ymin, //output y limits
float &ymax) {
inT16 stepindex; //current point
ICOORD pos; //current coords
ICOORD vec; //rotated step
C_OUTLINE *outline; //current outline
//outlines
C_OUTLINE_IT out_it = blob->out_list ();
ymin = (float) MAX_INT32;
ymax = (float) -MAX_INT32;
for (out_it.mark_cycle_pt (); !out_it.cycled_list (); out_it.forward ()) {
outline = out_it.data ();
pos = outline->start_pos (); //get coords
pos.rotate (rotation);
for (stepindex = 0; stepindex < outline->pathlength (); stepindex++) {
//inside
if (pos.x () >= leftx && pos.x () <= rightx) {
UpdateRange(pos.y(), &ymin, &ymax);
}
vec = outline->step (stepindex);
vec.rotate (rotation);
pos += vec; //move to next
}
}
}
/**********************************************************************
* find_cblob_vlimits
*
* Scan the outlines of the cblob to locate the y min and max
* between the given x limits.
**********************************************************************/
void find_cblob_vlimits( //get y limits
C_BLOB *blob, //blob to search
float leftx, //x limits
float rightx,
float &ymin, //output y limits
float &ymax) {
inT16 stepindex; //current point
ICOORD pos; //current coords
ICOORD vec; //rotated step
C_OUTLINE *outline; //current outline
//outlines
C_OUTLINE_IT out_it = blob->out_list ();
ymin = (float) MAX_INT32;
ymax = (float) -MAX_INT32;
for (out_it.mark_cycle_pt (); !out_it.cycled_list (); out_it.forward ()) {
outline = out_it.data ();
pos = outline->start_pos (); //get coords
for (stepindex = 0; stepindex < outline->pathlength (); stepindex++) {
//inside
if (pos.x () >= leftx && pos.x () <= rightx) {
UpdateRange(pos.y(), &ymin, &ymax);
}
vec = outline->step (stepindex);
pos += vec; //move to next
}
}
}
/**********************************************************************
* find_cblob_hlimits
*
* Scan the outlines of the cblob to locate the x min and max
* between the given y limits.
**********************************************************************/
void find_cblob_hlimits( //get x limits
C_BLOB *blob, //blob to search
float bottomy, //y limits
float topy,
float &xmin, //output x limits
float &xmax) {
inT16 stepindex; //current point
ICOORD pos; //current coords
ICOORD vec; //rotated step
C_OUTLINE *outline; //current outline
//outlines
C_OUTLINE_IT out_it = blob->out_list ();
xmin = (float) MAX_INT32;
xmax = (float) -MAX_INT32;
for (out_it.mark_cycle_pt (); !out_it.cycled_list (); out_it.forward ()) {
outline = out_it.data ();
pos = outline->start_pos (); //get coords
for (stepindex = 0; stepindex < outline->pathlength (); stepindex++) {
//inside
if (pos.y () >= bottomy && pos.y () <= topy) {
UpdateRange(pos.x(), &xmin, &xmax);
}
vec = outline->step (stepindex);
pos += vec; //move to next
}
}
}
/**********************************************************************
* crotate_cblob
*
* Rotate the copy by the given vector and return a C_BLOB.
**********************************************************************/
C_BLOB *crotate_cblob( //rotate it
C_BLOB *blob, //blob to search
FCOORD rotation //for landscape
) {
C_OUTLINE_LIST out_list; //output outlines
//input outlines
C_OUTLINE_IT in_it = blob->out_list ();
//output outlines
C_OUTLINE_IT out_it = &out_list;
for (in_it.mark_cycle_pt (); !in_it.cycled_list (); in_it.forward ()) {
out_it.add_after_then_move (new C_OUTLINE (in_it.data (), rotation));
}
return new C_BLOB (&out_list);
}
/**********************************************************************
* box_next
*
* Compute the bounding box of this blob with merging of x overlaps
* but no pre-chopping.
* Then move the iterator on to the start of the next blob.
**********************************************************************/
TBOX box_next( //get bounding box
BLOBNBOX_IT *it //iterator to blobds
) {
BLOBNBOX *blob; //current blob
TBOX result; //total box
blob = it->data ();
result = blob->bounding_box ();
do {
it->forward ();
blob = it->data ();
if (blob->cblob() == NULL)
//was pre-chopped
result += blob->bounding_box ();
}
//until next real blob
while ((blob->cblob() == NULL) || blob->joined_to_prev());
return result;
}
/**********************************************************************
* box_next_pre_chopped
*
* Compute the bounding box of this blob with merging of x overlaps
* but WITH pre-chopping.
* Then move the iterator on to the start of the next pre-chopped blob.
**********************************************************************/
TBOX box_next_pre_chopped( //get bounding box
BLOBNBOX_IT *it //iterator to blobds
) {
BLOBNBOX *blob; //current blob
TBOX result; //total box
blob = it->data ();
result = blob->bounding_box ();
do {
it->forward ();
blob = it->data ();
}
//until next real blob
while (blob->joined_to_prev ());
return result;
}
/**********************************************************************
* TO_ROW::TO_ROW
*
* Constructor to make a row from a blob.
**********************************************************************/
TO_ROW::TO_ROW ( //constructor
BLOBNBOX * blob, //first blob
float top, //corrected top
float bottom, //of row
float row_size //ideal
) {
clear();
y_min = bottom;
y_max = top;
initial_y_min = bottom;
float diff; //in size
BLOBNBOX_IT it = &blobs; //list of blobs
it.add_to_end (blob);
diff = top - bottom - row_size;
if (diff > 0) {
y_max -= diff / 2;
y_min += diff / 2;
}
//very small object
else if ((top - bottom) * 3 < row_size) {
diff = row_size / 3 + bottom - top;
y_max += diff / 2;
y_min -= diff / 2;
}
}
void TO_ROW::print() const {
tprintf("pitch=%d, fp=%g, fps=%g, fpns=%g, prs=%g, prns=%g,"
" spacing=%g xh=%g y_origin=%g xev=%d, asc=%g, desc=%g,"
" body=%g, minsp=%d maxnsp=%d, thr=%d kern=%g sp=%g\n",
pitch_decision, fixed_pitch, fp_space, fp_nonsp, pr_space, pr_nonsp,
spacing, xheight, y_origin, xheight_evidence, ascrise, descdrop,
body_size, min_space, max_nonspace, space_threshold, kern_size,
space_size);
}
/**********************************************************************
* TO_ROW:add_blob
*
* Add the blob to the end of the row.
**********************************************************************/
void TO_ROW::add_blob( //constructor
BLOBNBOX *blob, //first blob
float top, //corrected top
float bottom, //of row
float row_size //ideal
) {
float allowed; //allowed expansion
float available; //expansion
BLOBNBOX_IT it = &blobs; //list of blobs
it.add_to_end (blob);
allowed = row_size + y_min - y_max;
if (allowed > 0) {
available = top > y_max ? top - y_max : 0;
if (bottom < y_min)
//total available
available += y_min - bottom;
if (available > 0) {
available += available; //do it gradually
if (available < allowed)
available = allowed;
if (bottom < y_min)
y_min -= (y_min - bottom) * allowed / available;
if (top > y_max)
y_max += (top - y_max) * allowed / available;
}
}
}
/**********************************************************************
* TO_ROW:insert_blob
*
* Add the blob to the row in the correct position.
**********************************************************************/
void TO_ROW::insert_blob( //constructor
BLOBNBOX *blob //first blob
) {
BLOBNBOX_IT it = &blobs; //list of blobs
if (it.empty ())
it.add_before_then_move (blob);
else {
it.mark_cycle_pt ();
while (!it.cycled_list ()
&& it.data ()->bounding_box ().left () <=
blob->bounding_box ().left ())
it.forward ();
if (it.cycled_list ())
it.add_to_end (blob);
else
it.add_before_stay_put (blob);
}
}
/**********************************************************************
* TO_ROW::compute_vertical_projection
*
* Compute the vertical projection of a TO_ROW from its blobs.
**********************************************************************/
void TO_ROW::compute_vertical_projection() { //project whole row
TBOX row_box; //bound of row
BLOBNBOX *blob; //current blob
TBOX blob_box; //bounding box
BLOBNBOX_IT blob_it = blob_list ();
if (blob_it.empty ())
return;
row_box = blob_it.data ()->bounding_box ();
for (blob_it.mark_cycle_pt (); !blob_it.cycled_list (); blob_it.forward ())
row_box += blob_it.data ()->bounding_box ();
projection.set_range (row_box.left () - PROJECTION_MARGIN,
row_box.right () + PROJECTION_MARGIN);
projection_left = row_box.left () - PROJECTION_MARGIN;
projection_right = row_box.right () + PROJECTION_MARGIN;
for (blob_it.mark_cycle_pt (); !blob_it.cycled_list (); blob_it.forward ()) {
blob = blob_it.data();
if (blob->cblob() != NULL)
vertical_cblob_projection(blob->cblob(), &projection);
}
}
/**********************************************************************
* TO_ROW::clear
*
* Zero out all scalar members.
**********************************************************************/
void TO_ROW::clear() {
all_caps = 0;
used_dm_model = 0;
projection_left = 0;
projection_right = 0;
pitch_decision = PITCH_DUNNO;
fixed_pitch = 0.0;
fp_space = 0.0;
fp_nonsp = 0.0;
pr_space = 0.0;
pr_nonsp = 0.0;
spacing = 0.0;
xheight = 0.0;
xheight_evidence = 0;
body_size = 0.0;
ascrise = 0.0;
descdrop = 0.0;
min_space = 0;
max_nonspace = 0;
space_threshold = 0;
kern_size = 0.0;
space_size = 0.0;
y_min = 0.0;
y_max = 0.0;
initial_y_min = 0.0;
m = 0.0;
c = 0.0;
error = 0.0;
para_c = 0.0;
para_error = 0.0;
y_origin = 0.0;
credibility = 0.0;
num_repeated_sets_ = -1;
}
/**********************************************************************
* vertical_cblob_projection
*
* Compute the vertical projection of a cblob from its outlines
* and add to the given STATS.
**********************************************************************/
void vertical_cblob_projection( //project outlines
C_BLOB *blob, //blob to project
STATS *stats //output
) {
//outlines of blob
C_OUTLINE_IT out_it = blob->out_list ();
for (out_it.mark_cycle_pt (); !out_it.cycled_list (); out_it.forward ()) {
vertical_coutline_projection (out_it.data (), stats);
}
}
/**********************************************************************
* vertical_coutline_projection
*
* Compute the vertical projection of a outline from its outlines
* and add to the given STATS.
**********************************************************************/
void vertical_coutline_projection( //project outlines
C_OUTLINE *outline, //outline to project
STATS *stats //output
) {
ICOORD pos; //current point
ICOORD step; //edge step
inT32 length; //of outline
inT16 stepindex; //current step
C_OUTLINE_IT out_it = outline->child ();
pos = outline->start_pos ();
length = outline->pathlength ();
for (stepindex = 0; stepindex < length; stepindex++) {
step = outline->step (stepindex);
if (step.x () > 0) {
stats->add (pos.x (), -pos.y ());
} else if (step.x () < 0) {
stats->add (pos.x () - 1, pos.y ());
}
pos += step;
}
for (out_it.mark_cycle_pt (); !out_it.cycled_list (); out_it.forward ()) {
vertical_coutline_projection (out_it.data (), stats);
}
}
/**********************************************************************
* TO_BLOCK::TO_BLOCK
*
* Constructor to make a TO_BLOCK from a real block.
**********************************************************************/
TO_BLOCK::TO_BLOCK( //make a block
BLOCK *src_block //real block
) {
clear();
block = src_block;
}
static void clear_blobnboxes(BLOBNBOX_LIST* boxes) {
BLOBNBOX_IT it = boxes;
// A BLOBNBOX generally doesn't own its blobs, so if they do, you
// have to delete them explicitly.
for (it.mark_cycle_pt(); !it.cycled_list(); it.forward()) {
BLOBNBOX* box = it.data();
if (box->cblob() != NULL)
delete box->cblob();
}
}
/**********************************************************************
* TO_BLOCK::clear
*
* Zero out all scalar members.
**********************************************************************/
void TO_BLOCK::clear() {
block = NULL;
pitch_decision = PITCH_DUNNO;
line_spacing = 0.0;
line_size = 0.0;
max_blob_size = 0.0;
baseline_offset = 0.0;
xheight = 0.0;
fixed_pitch = 0.0;
kern_size = 0.0;
space_size = 0.0;
min_space = 0;
max_nonspace = 0;
fp_space = 0.0;
fp_nonsp = 0.0;
pr_space = 0.0;
pr_nonsp = 0.0;
key_row = NULL;
}
TO_BLOCK::~TO_BLOCK() {
// Any residual BLOBNBOXes at this stage own their blobs, so delete them.
clear_blobnboxes(&blobs);
clear_blobnboxes(&underlines);
clear_blobnboxes(&noise_blobs);
clear_blobnboxes(&small_blobs);
clear_blobnboxes(&large_blobs);
}
// Helper function to divide the input blobs over noise, small, medium
// and large lists. Blobs small in height and (small in width or large in width)
// go in the noise list. Dash (-) candidates go in the small list, and
// medium and large are by height.
// SIDE-EFFECT: reset all blobs to initial state by calling Init().
static void SizeFilterBlobs(int min_height, int max_height,
BLOBNBOX_LIST* src_list,
BLOBNBOX_LIST* noise_list,
BLOBNBOX_LIST* small_list,
BLOBNBOX_LIST* medium_list,
BLOBNBOX_LIST* large_list) {
BLOBNBOX_IT noise_it(noise_list);
BLOBNBOX_IT small_it(small_list);
BLOBNBOX_IT medium_it(medium_list);
BLOBNBOX_IT large_it(large_list);
for (BLOBNBOX_IT src_it(src_list); !src_it.empty(); src_it.forward()) {
BLOBNBOX* blob = src_it.extract();
blob->ReInit();
int width = blob->bounding_box().width();
int height = blob->bounding_box().height();
if (height < min_height &&
(width < min_height || width > max_height))
noise_it.add_after_then_move(blob);
else if (height > max_height)
large_it.add_after_then_move(blob);
else if (height < min_height)
small_it.add_after_then_move(blob);
else
medium_it.add_after_then_move(blob);
}
}
// Reorganize the blob lists with a different definition of small, medium
// and large, compared to the original definition.
// Height is still the primary filter key, but medium width blobs of small
// height become small, and very wide blobs of small height stay noise, along
// with small dot-shaped blobs.
void TO_BLOCK::ReSetAndReFilterBlobs() {
int min_height = IntCastRounded(kMinMediumSizeRatio * line_size);
int max_height = IntCastRounded(kMaxMediumSizeRatio * line_size);
BLOBNBOX_LIST noise_list;
BLOBNBOX_LIST small_list;
BLOBNBOX_LIST medium_list;
BLOBNBOX_LIST large_list;
SizeFilterBlobs(min_height, max_height, &blobs,
&noise_list, &small_list, &medium_list, &large_list);
SizeFilterBlobs(min_height, max_height, &large_blobs,
&noise_list, &small_list, &medium_list, &large_list);
SizeFilterBlobs(min_height, max_height, &small_blobs,
&noise_list, &small_list, &medium_list, &large_list);
SizeFilterBlobs(min_height, max_height, &noise_blobs,
&noise_list, &small_list, &medium_list, &large_list);
BLOBNBOX_IT blob_it(&blobs);
blob_it.add_list_after(&medium_list);
blob_it.set_to_list(&large_blobs);
blob_it.add_list_after(&large_list);
blob_it.set_to_list(&small_blobs);
blob_it.add_list_after(&small_list);
blob_it.set_to_list(&noise_blobs);
blob_it.add_list_after(&noise_list);
}
// Deletes noise blobs from all lists where not owned by a ColPartition.
void TO_BLOCK::DeleteUnownedNoise() {
BLOBNBOX::CleanNeighbours(&blobs);
BLOBNBOX::CleanNeighbours(&small_blobs);
BLOBNBOX::CleanNeighbours(&noise_blobs);
BLOBNBOX::CleanNeighbours(&large_blobs);
BLOBNBOX::DeleteNoiseBlobs(&blobs);
BLOBNBOX::DeleteNoiseBlobs(&small_blobs);
BLOBNBOX::DeleteNoiseBlobs(&noise_blobs);
BLOBNBOX::DeleteNoiseBlobs(&large_blobs);
}
// Computes and stores the edge offsets on each blob for use in feature
// extraction, using greyscale if the supplied grey and thresholds pixes
// are 8-bit or otherwise (if NULL or not 8 bit) the original binary
// edge step outlines.
// Thresholds must either be the same size as grey or an integer down-scale
// of grey.
// See coutln.h for an explanation of edge offsets.
void TO_BLOCK::ComputeEdgeOffsets(Pix* thresholds, Pix* grey) {
BLOBNBOX::ComputeEdgeOffsets(thresholds, grey, &blobs);
BLOBNBOX::ComputeEdgeOffsets(thresholds, grey, &small_blobs);
BLOBNBOX::ComputeEdgeOffsets(thresholds, grey, &noise_blobs);
}
#ifndef GRAPHICS_DISABLED
// Draw the noise blobs from all lists in red.
void TO_BLOCK::plot_noise_blobs(ScrollView* win) {
BLOBNBOX::PlotNoiseBlobs(&noise_blobs, ScrollView::RED, ScrollView::RED, win);
BLOBNBOX::PlotNoiseBlobs(&small_blobs, ScrollView::RED, ScrollView::RED, win);
BLOBNBOX::PlotNoiseBlobs(&large_blobs, ScrollView::RED, ScrollView::RED, win);
BLOBNBOX::PlotNoiseBlobs(&blobs, ScrollView::RED, ScrollView::RED, win);
}
// Draw the blobs on the various lists in the block in different colors.
void TO_BLOCK::plot_graded_blobs(ScrollView* win) {
BLOBNBOX::PlotBlobs(&noise_blobs, ScrollView::CORAL, ScrollView::BLUE, win);
BLOBNBOX::PlotBlobs(&small_blobs, ScrollView::GOLDENROD, ScrollView::YELLOW,
win);
BLOBNBOX::PlotBlobs(&large_blobs, ScrollView::DARK_GREEN, ScrollView::YELLOW,
win);
BLOBNBOX::PlotBlobs(&blobs, ScrollView::WHITE, ScrollView::BROWN, win);
}
/**********************************************************************
* plot_blob_list
*
* Draw a list of blobs.
**********************************************************************/
void plot_blob_list(ScrollView* win, // window to draw in
BLOBNBOX_LIST *list, // blob list
ScrollView::Color body_colour, // colour to draw
ScrollView::Color child_colour) { // colour of child
BLOBNBOX_IT it = list;
for (it.mark_cycle_pt(); !it.cycled_list(); it.forward()) {
it.data()->plot(win, body_colour, child_colour);
}
}
#endif // GRAPHICS_DISABLED
| 1080228-arabicocr11 | ccstruct/blobbox.cpp | C++ | asf20 | 39,376 |
///////////////////////////////////////////////////////////////////////
// File: blamer.h
// Description: Module allowing precise error causes to be allocated.
// Author: Rike Antonova
// Refactored: Ray Smith
// Created: Mon Feb 04 14:37:01 PST 2013
//
// (C) Copyright 2013, Google Inc.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
///////////////////////////////////////////////////////////////////////
#ifndef TESSERACT_CCSTRUCT_BLAMER_H_
#define TESSERACT_CCSTRUCT_BLAMER_H_
#include <stdio.h>
#include "boxword.h"
#include "genericvector.h"
#include "matrix.h"
#include "params_training_featdef.h"
#include "ratngs.h"
#include "strngs.h"
#include "tesscallback.h"
static const inT16 kBlamerBoxTolerance = 5;
// Enum for expressing the source of error.
// Note: Please update kIncorrectResultReasonNames when modifying this enum.
enum IncorrectResultReason {
// The text recorded in best choice == truth text
IRR_CORRECT,
// Either: Top choice is incorrect and is a dictionary word (language model
// is unlikely to help correct such errors, so blame the classifier).
// Or: the correct unichar was not included in shortlist produced by the
// classifier at all.
IRR_CLASSIFIER,
// Chopper have not found one or more splits that correspond to the correct
// character bounding boxes recorded in BlamerBundle::truth_word.
IRR_CHOPPER,
// Classifier did include correct unichars for each blob in the correct
// segmentation, however its rating could have been too bad to allow the
// language model to pull out the correct choice. On the other hand the
// strength of the language model might have been too weak to favor the
// correct answer, this we call this case a classifier-language model
// tradeoff error.
IRR_CLASS_LM_TRADEOFF,
// Page layout failed to produce the correct bounding box. Blame page layout
// if the truth was not found for the word, which implies that the bounding
// box of the word was incorrect (no truth word had a similar bounding box).
IRR_PAGE_LAYOUT,
// SegSearch heuristic prevented one or more blobs from the correct
// segmentation state to be classified (e.g. the blob was too wide).
IRR_SEGSEARCH_HEUR,
// The correct segmentaiton state was not explored because of poor SegSearch
// pain point prioritization. We blame SegSearch pain point prioritization
// if the best rating of a choice constructed from correct segmentation is
// better than that of the best choice (i.e. if we got to explore the correct
// segmentation state, language model would have picked the correct choice).
IRR_SEGSEARCH_PP,
// Same as IRR_CLASS_LM_TRADEOFF, but used when we only run chopper on a word,
// and thus use the old language model (permuters).
// TODO(antonova): integrate the new language mode with chopper
IRR_CLASS_OLD_LM_TRADEOFF,
// If there is an incorrect adaptive template match with a better score than
// a correct one (either pre-trained or adapted), mark this as adaption error.
IRR_ADAPTION,
// split_and_recog_word() failed to find a suitable split in truth.
IRR_NO_TRUTH_SPLIT,
// Truth is not available for this word (e.g. when words in corrected content
// file are turned into ~~~~ because an appropriate alignment was not found.
IRR_NO_TRUTH,
// The text recorded in best choice != truth text, but none of the above
// reasons are set.
IRR_UNKNOWN,
IRR_NUM_REASONS
};
// Blamer-related information to determine the source of errors.
struct BlamerBundle {
static const char *IncorrectReasonName(IncorrectResultReason irr);
BlamerBundle() : truth_has_char_boxes_(false),
incorrect_result_reason_(IRR_CORRECT),
lattice_data_(NULL) { ClearResults(); }
BlamerBundle(const BlamerBundle &other) {
this->CopyTruth(other);
this->CopyResults(other);
}
~BlamerBundle() { delete[] lattice_data_; }
// Accessors.
STRING TruthString() const {
STRING truth_str;
for (int i = 0; i < truth_text_.length(); ++i)
truth_str += truth_text_[i];
return truth_str;
}
IncorrectResultReason incorrect_result_reason() const {
return incorrect_result_reason_;
}
bool NoTruth() const {
return incorrect_result_reason_ == IRR_NO_TRUTH ||
incorrect_result_reason_ == IRR_PAGE_LAYOUT;
}
bool HasDebugInfo() const {
return debug_.length() > 0 || misadaption_debug_.length() > 0;
}
const STRING& debug() const {
return debug_;
}
const STRING& misadaption_debug() const {
return misadaption_debug_;
}
void UpdateBestRating(float rating) {
if (rating < best_correctly_segmented_rating_)
best_correctly_segmented_rating_ = rating;
}
int correct_segmentation_length() const {
return correct_segmentation_cols_.length();
}
// Returns true if the given ratings matrix col,row position is included
// in the correct segmentation path at the given index.
bool MatrixPositionCorrect(int index, const MATRIX_COORD& coord) {
return correct_segmentation_cols_[index] == coord.col &&
correct_segmentation_rows_[index] == coord.row;
}
void set_best_choice_is_dict_and_top_choice(bool value) {
best_choice_is_dict_and_top_choice_ = value;
}
const char* lattice_data() const {
return lattice_data_;
}
int lattice_size() const {
return lattice_size_; // size of lattice_data in bytes
}
void set_lattice_data(const char* data, int size) {
lattice_size_ = size;
delete [] lattice_data_;
lattice_data_ = new char[lattice_size_];
memcpy(lattice_data_, data, lattice_size_);
}
const tesseract::ParamsTrainingBundle& params_training_bundle() const {
return params_training_bundle_;
}
// Adds a new ParamsTrainingHypothesis to the current hypothesis list.
void AddHypothesis(const tesseract::ParamsTrainingHypothesis& hypo) {
params_training_bundle_.AddHypothesis(hypo);
}
// Functions to setup the blamer.
// Whole word string, whole word bounding box.
void SetWordTruth(const UNICHARSET& unicharset,
const char* truth_str, const TBOX& word_box);
// Single "character" string, "character" bounding box.
// May be called multiple times to indicate the characters in a word.
void SetSymbolTruth(const UNICHARSET& unicharset,
const char* char_str, const TBOX& char_box);
// Marks that there is something wrong with the truth text, like it contains
// reject characters.
void SetRejectedTruth();
// Returns true if the provided word_choice is correct.
bool ChoiceIsCorrect(const WERD_CHOICE* word_choice) const;
void ClearResults() {
norm_truth_word_.DeleteAllBoxes();
norm_box_tolerance_ = 0;
if (!NoTruth()) incorrect_result_reason_ = IRR_CORRECT;
debug_ = "";
segsearch_is_looking_for_blame_ = false;
best_correctly_segmented_rating_ = WERD_CHOICE::kBadRating;
correct_segmentation_cols_.clear();
correct_segmentation_rows_.clear();
best_choice_is_dict_and_top_choice_ = false;
delete[] lattice_data_;
lattice_data_ = NULL;
lattice_size_ = 0;
}
void CopyTruth(const BlamerBundle &other) {
truth_has_char_boxes_ = other.truth_has_char_boxes_;
truth_word_ = other.truth_word_;
truth_text_ = other.truth_text_;
incorrect_result_reason_ =
(other.NoTruth() ? other.incorrect_result_reason_ : IRR_CORRECT);
}
void CopyResults(const BlamerBundle &other) {
norm_truth_word_ = other.norm_truth_word_;
norm_box_tolerance_ = other.norm_box_tolerance_;
incorrect_result_reason_ = other.incorrect_result_reason_;
segsearch_is_looking_for_blame_ = other.segsearch_is_looking_for_blame_;
best_correctly_segmented_rating_ = other.best_correctly_segmented_rating_;
correct_segmentation_cols_ = other.correct_segmentation_cols_;
correct_segmentation_rows_ = other.correct_segmentation_rows_;
best_choice_is_dict_and_top_choice_ =
other.best_choice_is_dict_and_top_choice_;
if (other.lattice_data_ != NULL) {
lattice_data_ = new char[other.lattice_size_];
memcpy(lattice_data_, other.lattice_data_, other.lattice_size_);
lattice_size_ = other.lattice_size_;
} else {
lattice_data_ = NULL;
}
}
const char *IncorrectReason() const;
// Appends choice and truth details to the given debug string.
void FillDebugString(const STRING &msg, const WERD_CHOICE *choice,
STRING *debug);
// Sets up the norm_truth_word from truth_word using the given DENORM.
void SetupNormTruthWord(const DENORM& denorm);
// Splits *this into two pieces in bundle1 and bundle2 (preallocated, empty
// bundles) where the right edge/ of the left-hand word is word1_right,
// and the left edge of the right-hand word is word2_left.
void SplitBundle(int word1_right, int word2_left, bool debug,
BlamerBundle* bundle1, BlamerBundle* bundle2) const;
// "Joins" the blames from bundle1 and bundle2 into *this.
void JoinBlames(const BlamerBundle& bundle1, const BlamerBundle& bundle2,
bool debug);
// If a blob with the same bounding box as one of the truth character
// bounding boxes is not classified as the corresponding truth character
// blames character classifier for incorrect answer.
void BlameClassifier(const UNICHARSET& unicharset,
const TBOX& blob_box,
const BLOB_CHOICE_LIST& choices,
bool debug);
// Checks whether chops were made at all the character bounding box
// boundaries in word->truth_word. If not - blames the chopper for an
// incorrect answer.
void SetChopperBlame(const WERD_RES* word, bool debug);
// Blames the classifier or the language model if, after running only the
// chopper, best_choice is incorrect and no blame has been yet set.
// Blames the classifier if best_choice is classifier's top choice and is a
// dictionary word (i.e. language model could not have helped).
// Otherwise, blames the language model (formerly permuter word adjustment).
void BlameClassifierOrLangModel(
const WERD_RES* word,
const UNICHARSET& unicharset, bool valid_permuter, bool debug);
// Sets up the correct_segmentation_* to mark the correct bounding boxes.
void SetupCorrectSegmentation(const TWERD* word, bool debug);
// Returns true if a guided segmentation search is needed.
bool GuidedSegsearchNeeded(const WERD_CHOICE *best_choice) const;
// Setup ready to guide the segmentation search to the correct segmentation.
// The callback pp_cb is used to avoid a cyclic dependency.
// It calls into LMPainPoints::GenerateForBlamer by pre-binding the
// WERD_RES, and the LMPainPoints itself.
// pp_cb must be a permanent callback, and should be deleted by the caller.
void InitForSegSearch(const WERD_CHOICE *best_choice,
MATRIX* ratings, UNICHAR_ID wildcard_id,
bool debug, STRING *debug_str,
TessResultCallback2<bool, int, int>* pp_cb);
// Returns true if the guided segsearch is in progress.
bool GuidedSegsearchStillGoing() const;
// The segmentation search has ended. Sets the blame appropriately.
void FinishSegSearch(const WERD_CHOICE *best_choice,
bool debug, STRING *debug_str);
// If the bundle is null or still does not indicate the correct result,
// fix it and use some backup reason for the blame.
static void LastChanceBlame(bool debug, WERD_RES* word);
// Sets the misadaption debug if this word is incorrect, as this word is
// being adapted to.
void SetMisAdaptionDebug(const WERD_CHOICE *best_choice, bool debug);
private:
void SetBlame(IncorrectResultReason irr, const STRING &msg,
const WERD_CHOICE *choice, bool debug) {
incorrect_result_reason_ = irr;
debug_ = IncorrectReason();
debug_ += " to blame: ";
FillDebugString(msg, choice, &debug_);
if (debug) tprintf("SetBlame(): %s", debug_.string());
}
private:
// Set to true when bounding boxes for individual unichars are recorded.
bool truth_has_char_boxes_;
// The true_word (in the original image coordinate space) contains ground
// truth bounding boxes for this WERD_RES.
tesseract::BoxWord truth_word_;
// Same as above, but in normalized coordinates
// (filled in by WERD_RES::SetupForRecognition()).
tesseract::BoxWord norm_truth_word_;
// Tolerance for bounding box comparisons in normalized space.
int norm_box_tolerance_;
// Contains ground truth unichar for each of the bounding boxes in truth_word.
GenericVector<STRING> truth_text_;
// The reason for incorrect OCR result.
IncorrectResultReason incorrect_result_reason_;
// Debug text associated with the blame.
STRING debug_;
// Misadaption debug information (filled in if this word was misadapted to).
STRING misadaption_debug_;
// Variables used by the segmentation search when looking for the blame.
// Set to true while segmentation search is continued after the usual
// termination condition in order to look for the blame.
bool segsearch_is_looking_for_blame_;
// Best rating for correctly segmented path
// (set and used by SegSearch when looking for blame).
float best_correctly_segmented_rating_;
// Vectors populated by SegSearch to indicate column and row indices that
// correspond to blobs with correct bounding boxes.
GenericVector<int> correct_segmentation_cols_;
GenericVector<int> correct_segmentation_rows_;
// Set to true if best choice is a dictionary word and
// classifier's top choice.
bool best_choice_is_dict_and_top_choice_;
// Serialized segmentation search lattice.
char *lattice_data_;
int lattice_size_; // size of lattice_data in bytes
// Information about hypotheses (paths) explored by the segmentation search.
tesseract::ParamsTrainingBundle params_training_bundle_;
};
#endif // TESSERACT_CCSTRUCT_BLAMER_H_
| 1080228-arabicocr11 | ccstruct/blamer.h | C++ | asf20 | 14,455 |
/**********************************************************************
* File: elst2.h (Formerly elist2.h)
* Description: Double linked embedded list module include file.
* Author: Phil Cheatle
* Created: Wed Jan 23 11:04:47 GMT 1991
*
* (C) Copyright 1991, Hewlett-Packard Ltd.
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
** http://www.apache.org/licenses/LICENSE-2.0
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*
**********************************************************************/
#ifndef ELST2_H
#define ELST2_H
#include <stdio.h>
#include "host.h"
#include "serialis.h"
#include "lsterr.h"
class ELIST2_ITERATOR;
/**********************************************************************
DESIGN NOTE
===========
It would probably be possible to implement the ELIST2 classes as derived
classes from ELIST. I haven't done this because:
a) I think it would be harder to understand the code
(Though the problem with not inheriting is that changes to ELIST must be
reflected in ELIST2 and vice versa)
b) Most of the code is inline so:
i) The duplication in source does not affect the run time code size - the
code is copied inline anyway!
ii) The compiler should have a bit less work to do!
**********************************************************************/
/**********************************************************************
* CLASS - ELIST2_LINK
*
* Generic link class for doubly linked lists with embedded links
*
* Note: No destructor - elements are assumed to be destroyed EITHER after
* they have been extracted from a list OR by the ELIST2 destructor which
* walks the list.
**********************************************************************/
class DLLSYM ELIST2_LINK
{
friend class ELIST2_ITERATOR;
friend class ELIST2;
ELIST2_LINK *prev;
ELIST2_LINK *next;
public:
ELIST2_LINK() { //constructor
prev = next = NULL;
}
ELIST2_LINK( //copy constructor
const ELIST2_LINK &) { //dont copy link
prev = next = NULL;
}
void operator= ( //dont copy links
const ELIST2_LINK &) {
prev = next = NULL;
}
};
/**********************************************************************
* CLASS - ELIST2
*
* Generic list class for doubly linked lists with embedded links
**********************************************************************/
class DLLSYM ELIST2
{
friend class ELIST2_ITERATOR;
ELIST2_LINK *last; //End of list
//(Points to head)
ELIST2_LINK *First() { // return first
return last ? last->next : NULL;
}
public:
ELIST2() { //constructor
last = NULL;
}
void internal_clear ( //destroy all links
void (*zapper) (ELIST2_LINK *));
//ptr to zapper functn
bool empty() const { //is list empty?
return !last;
}
bool singleton() const {
return last ? (last == last->next) : false;
}
void shallow_copy( //dangerous!!
ELIST2 *from_list) { //beware destructors!!
last = from_list->last;
}
//ptr to copier functn
void internal_deep_copy (ELIST2_LINK * (*copier) (ELIST2_LINK *),
const ELIST2 * list); //list being copied
void assign_to_sublist( //to this list
ELIST2_ITERATOR *start_it, //from list start
ELIST2_ITERATOR *end_it); //from list end
inT32 length() const; // # elements in list
void sort ( //sort elements
int comparator ( //comparison routine
const void *, const void *));
// Assuming list has been sorted already, insert new_link to
// keep the list sorted according to the same comparison function.
// Comparision function is the same as used by sort, i.e. uses double
// indirection. Time is O(1) to add to beginning or end.
// Time is linear to add pre-sorted items to an empty list.
void add_sorted(int comparator(const void*, const void*),
ELIST2_LINK* new_link);
};
/***********************************************************************
* CLASS - ELIST2_ITERATOR
*
* Generic iterator class for doubly linked lists with embedded links
**********************************************************************/
class DLLSYM ELIST2_ITERATOR
{
friend void ELIST2::assign_to_sublist(ELIST2_ITERATOR *, ELIST2_ITERATOR *);
ELIST2 *list; //List being iterated
ELIST2_LINK *prev; //prev element
ELIST2_LINK *current; //current element
ELIST2_LINK *next; //next element
BOOL8 ex_current_was_last; //current extracted
//was end of list
BOOL8 ex_current_was_cycle_pt; //current extracted
//was cycle point
ELIST2_LINK *cycle_pt; //point we are cycling
//the list to.
BOOL8 started_cycling; //Have we moved off
//the start?
ELIST2_LINK *extract_sublist( //from this current...
ELIST2_ITERATOR *other_it); //to other current
public:
ELIST2_ITERATOR() { //constructor
list = NULL;
} //unassigned list
ELIST2_ITERATOR( //constructor
ELIST2 *list_to_iterate);
void set_to_list( //change list
ELIST2 *list_to_iterate);
void add_after_then_move( //add after current &
ELIST2_LINK *new_link); //move to new
void add_after_stay_put( //add after current &
ELIST2_LINK *new_link); //stay at current
void add_before_then_move( //add before current &
ELIST2_LINK *new_link); //move to new
void add_before_stay_put( //add before current &
ELIST2_LINK *new_link); //stay at current
void add_list_after( //add a list &
ELIST2 *list_to_add); //stay at current
void add_list_before( //add a list &
ELIST2 *list_to_add); //move to it 1st item
ELIST2_LINK *data() { //get current data
#ifndef NDEBUG
if (!current)
NULL_DATA.error ("ELIST2_ITERATOR::data", ABORT, NULL);
if (!list)
NO_LIST.error ("ELIST2_ITERATOR::data", ABORT, NULL);
#endif
return current;
}
ELIST2_LINK *data_relative( //get data + or - ...
inT8 offset); //offset from current
ELIST2_LINK *forward(); //move to next element
ELIST2_LINK *backward(); //move to prev element
ELIST2_LINK *extract(); //remove from list
//go to start of list
ELIST2_LINK *move_to_first();
ELIST2_LINK *move_to_last(); //go to end of list
void mark_cycle_pt(); //remember current
BOOL8 empty() { //is list empty?
#ifndef NDEBUG
if (!list)
NO_LIST.error ("ELIST2_ITERATOR::empty", ABORT, NULL);
#endif
return list->empty ();
}
BOOL8 current_extracted() { //current extracted?
return !current;
}
BOOL8 at_first(); //Current is first?
BOOL8 at_last(); //Current is last?
BOOL8 cycled_list(); //Completed a cycle?
void add_to_end( //add at end &
ELIST2_LINK *new_link); //dont move
void exchange( //positions of 2 links
ELIST2_ITERATOR *other_it); //other iterator
inT32 length(); //# elements in list
void sort ( //sort elements
int comparator ( //comparison routine
const void *, const void *));
};
/***********************************************************************
* ELIST2_ITERATOR::set_to_list
*
* (Re-)initialise the iterator to point to the start of the list_to_iterate
* over.
**********************************************************************/
inline void ELIST2_ITERATOR::set_to_list( //change list
ELIST2 *list_to_iterate) {
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("ELIST2_ITERATOR::set_to_list", ABORT, NULL);
if (!list_to_iterate)
BAD_PARAMETER.error ("ELIST2_ITERATOR::set_to_list", ABORT,
"list_to_iterate is NULL");
#endif
list = list_to_iterate;
prev = list->last;
current = list->First ();
next = current ? current->next : NULL;
cycle_pt = NULL; //await explicit set
started_cycling = FALSE;
ex_current_was_last = FALSE;
ex_current_was_cycle_pt = FALSE;
}
/***********************************************************************
* ELIST2_ITERATOR::ELIST2_ITERATOR
*
* CONSTRUCTOR - set iterator to specified list;
**********************************************************************/
inline ELIST2_ITERATOR::ELIST2_ITERATOR(ELIST2 *list_to_iterate) {
set_to_list(list_to_iterate);
}
/***********************************************************************
* ELIST2_ITERATOR::add_after_then_move
*
* Add a new element to the list after the current element and move the
* iterator to the new element.
**********************************************************************/
inline void ELIST2_ITERATOR::add_after_then_move( // element to add
ELIST2_LINK *new_element) {
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("ELIST2_ITERATOR::add_after_then_move", ABORT, NULL);
if (!list)
NO_LIST.error ("ELIST2_ITERATOR::add_after_then_move", ABORT, NULL);
if (!new_element)
BAD_PARAMETER.error ("ELIST2_ITERATOR::add_after_then_move", ABORT,
"new_element is NULL");
if (new_element->next)
STILL_LINKED.error ("ELIST2_ITERATOR::add_after_then_move", ABORT, NULL);
#endif
if (list->empty ()) {
new_element->next = new_element;
new_element->prev = new_element;
list->last = new_element;
prev = next = new_element;
}
else {
new_element->next = next;
next->prev = new_element;
if (current) { //not extracted
new_element->prev = current;
current->next = new_element;
prev = current;
if (current == list->last)
list->last = new_element;
}
else { //current extracted
new_element->prev = prev;
prev->next = new_element;
if (ex_current_was_last)
list->last = new_element;
if (ex_current_was_cycle_pt)
cycle_pt = new_element;
}
}
current = new_element;
}
/***********************************************************************
* ELIST2_ITERATOR::add_after_stay_put
*
* Add a new element to the list after the current element but do not move
* the iterator to the new element.
**********************************************************************/
inline void ELIST2_ITERATOR::add_after_stay_put( // element to add
ELIST2_LINK *new_element) {
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("ELIST2_ITERATOR::add_after_stay_put", ABORT, NULL);
if (!list)
NO_LIST.error ("ELIST2_ITERATOR::add_after_stay_put", ABORT, NULL);
if (!new_element)
BAD_PARAMETER.error ("ELIST2_ITERATOR::add_after_stay_put", ABORT,
"new_element is NULL");
if (new_element->next)
STILL_LINKED.error ("ELIST2_ITERATOR::add_after_stay_put", ABORT, NULL);
#endif
if (list->empty ()) {
new_element->next = new_element;
new_element->prev = new_element;
list->last = new_element;
prev = next = new_element;
ex_current_was_last = FALSE;
current = NULL;
}
else {
new_element->next = next;
next->prev = new_element;
if (current) { //not extracted
new_element->prev = current;
current->next = new_element;
if (prev == current)
prev = new_element;
if (current == list->last)
list->last = new_element;
}
else { //current extracted
new_element->prev = prev;
prev->next = new_element;
if (ex_current_was_last) {
list->last = new_element;
ex_current_was_last = FALSE;
}
}
next = new_element;
}
}
/***********************************************************************
* ELIST2_ITERATOR::add_before_then_move
*
* Add a new element to the list before the current element and move the
* iterator to the new element.
**********************************************************************/
inline void ELIST2_ITERATOR::add_before_then_move( // element to add
ELIST2_LINK *new_element) {
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("ELIST2_ITERATOR::add_before_then_move", ABORT, NULL);
if (!list)
NO_LIST.error ("ELIST2_ITERATOR::add_before_then_move", ABORT, NULL);
if (!new_element)
BAD_PARAMETER.error ("ELIST2_ITERATOR::add_before_then_move", ABORT,
"new_element is NULL");
if (new_element->next)
STILL_LINKED.error ("ELIST2_ITERATOR::add_before_then_move", ABORT, NULL);
#endif
if (list->empty ()) {
new_element->next = new_element;
new_element->prev = new_element;
list->last = new_element;
prev = next = new_element;
}
else {
prev->next = new_element;
new_element->prev = prev;
if (current) { //not extracted
new_element->next = current;
current->prev = new_element;
next = current;
}
else { //current extracted
new_element->next = next;
next->prev = new_element;
if (ex_current_was_last)
list->last = new_element;
if (ex_current_was_cycle_pt)
cycle_pt = new_element;
}
}
current = new_element;
}
/***********************************************************************
* ELIST2_ITERATOR::add_before_stay_put
*
* Add a new element to the list before the current element but dont move the
* iterator to the new element.
**********************************************************************/
inline void ELIST2_ITERATOR::add_before_stay_put( // element to add
ELIST2_LINK *new_element) {
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("ELIST2_ITERATOR::add_before_stay_put", ABORT, NULL);
if (!list)
NO_LIST.error ("ELIST2_ITERATOR::add_before_stay_put", ABORT, NULL);
if (!new_element)
BAD_PARAMETER.error ("ELIST2_ITERATOR::add_before_stay_put", ABORT,
"new_element is NULL");
if (new_element->next)
STILL_LINKED.error ("ELIST2_ITERATOR::add_before_stay_put", ABORT, NULL);
#endif
if (list->empty ()) {
new_element->next = new_element;
new_element->prev = new_element;
list->last = new_element;
prev = next = new_element;
ex_current_was_last = TRUE;
current = NULL;
}
else {
prev->next = new_element;
new_element->prev = prev;
if (current) { //not extracted
new_element->next = current;
current->prev = new_element;
if (next == current)
next = new_element;
}
else { //current extracted
new_element->next = next;
next->prev = new_element;
if (ex_current_was_last)
list->last = new_element;
}
prev = new_element;
}
}
/***********************************************************************
* ELIST2_ITERATOR::add_list_after
*
* Insert another list to this list after the current element but dont move the
* iterator.
**********************************************************************/
inline void ELIST2_ITERATOR::add_list_after(ELIST2 *list_to_add) {
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("ELIST2_ITERATOR::add_list_after", ABORT, NULL);
if (!list)
NO_LIST.error ("ELIST2_ITERATOR::add_list_after", ABORT, NULL);
if (!list_to_add)
BAD_PARAMETER.error ("ELIST2_ITERATOR::add_list_after", ABORT,
"list_to_add is NULL");
#endif
if (!list_to_add->empty ()) {
if (list->empty ()) {
list->last = list_to_add->last;
prev = list->last;
next = list->First ();
ex_current_was_last = TRUE;
current = NULL;
}
else {
if (current) { //not extracted
current->next = list_to_add->First ();
current->next->prev = current;
if (current == list->last)
list->last = list_to_add->last;
list_to_add->last->next = next;
next->prev = list_to_add->last;
next = current->next;
}
else { //current extracted
prev->next = list_to_add->First ();
prev->next->prev = prev;
if (ex_current_was_last) {
list->last = list_to_add->last;
ex_current_was_last = FALSE;
}
list_to_add->last->next = next;
next->prev = list_to_add->last;
next = prev->next;
}
}
list_to_add->last = NULL;
}
}
/***********************************************************************
* ELIST2_ITERATOR::add_list_before
*
* Insert another list to this list before the current element. Move the
* iterator to the start of the inserted elements
* iterator.
**********************************************************************/
inline void ELIST2_ITERATOR::add_list_before(ELIST2 *list_to_add) {
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("ELIST2_ITERATOR::add_list_before", ABORT, NULL);
if (!list)
NO_LIST.error ("ELIST2_ITERATOR::add_list_before", ABORT, NULL);
if (!list_to_add)
BAD_PARAMETER.error ("ELIST2_ITERATOR::add_list_before", ABORT,
"list_to_add is NULL");
#endif
if (!list_to_add->empty ()) {
if (list->empty ()) {
list->last = list_to_add->last;
prev = list->last;
current = list->First ();
next = current->next;
ex_current_was_last = FALSE;
}
else {
prev->next = list_to_add->First ();
prev->next->prev = prev;
if (current) { //not extracted
list_to_add->last->next = current;
current->prev = list_to_add->last;
}
else { //current extracted
list_to_add->last->next = next;
next->prev = list_to_add->last;
if (ex_current_was_last)
list->last = list_to_add->last;
if (ex_current_was_cycle_pt)
cycle_pt = prev->next;
}
current = prev->next;
next = current->next;
}
list_to_add->last = NULL;
}
}
/***********************************************************************
* ELIST2_ITERATOR::extract
*
* Do extraction by removing current from the list, returning it to the
* caller, but NOT updating the iterator. (So that any calling loop can do
* this.) The iterator's current points to NULL. If the extracted element
* is to be deleted, this is the callers responsibility.
**********************************************************************/
inline ELIST2_LINK *ELIST2_ITERATOR::extract() {
ELIST2_LINK *extracted_link;
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("ELIST2_ITERATOR::extract", ABORT, NULL);
if (!list)
NO_LIST.error ("ELIST2_ITERATOR::extract", ABORT, NULL);
if (!current) //list empty or
//element extracted
NULL_CURRENT.error ("ELIST2_ITERATOR::extract",
ABORT, NULL);
#endif
if (list->singleton()) {
// Special case where we do need to change the iterator.
prev = next = list->last = NULL;
} else {
prev->next = next; //remove from list
next->prev = prev;
if (current == list->last) {
list->last = prev;
ex_current_was_last = TRUE;
} else {
ex_current_was_last = FALSE;
}
}
// Always set ex_current_was_cycle_pt so an add/forward will work in a loop.
ex_current_was_cycle_pt = (current == cycle_pt) ? TRUE : FALSE;
extracted_link = current;
extracted_link->next = NULL; //for safety
extracted_link->prev = NULL; //for safety
current = NULL;
return extracted_link;
}
/***********************************************************************
* ELIST2_ITERATOR::move_to_first()
*
* Move current so that it is set to the start of the list.
* Return data just in case anyone wants it.
**********************************************************************/
inline ELIST2_LINK *ELIST2_ITERATOR::move_to_first() {
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("ELIST2_ITERATOR::move_to_first", ABORT, NULL);
if (!list)
NO_LIST.error ("ELIST2_ITERATOR::move_to_first", ABORT, NULL);
#endif
current = list->First ();
prev = list->last;
next = current ? current->next : NULL;
return current;
}
/***********************************************************************
* ELIST2_ITERATOR::move_to_last()
*
* Move current so that it is set to the end of the list.
* Return data just in case anyone wants it.
**********************************************************************/
inline ELIST2_LINK *ELIST2_ITERATOR::move_to_last() {
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("ELIST2_ITERATOR::move_to_last", ABORT, NULL);
if (!list)
NO_LIST.error ("ELIST2_ITERATOR::move_to_last", ABORT, NULL);
#endif
current = list->last;
prev = current ? current->prev : NULL;
next = current ? current->next : NULL;
return current;
}
/***********************************************************************
* ELIST2_ITERATOR::mark_cycle_pt()
*
* Remember the current location so that we can tell whether we've returned
* to this point later.
*
* If the current point is deleted either now, or in the future, the cycle
* point will be set to the next item which is set to current. This could be
* by a forward, add_after_then_move or add_after_then_move.
**********************************************************************/
inline void ELIST2_ITERATOR::mark_cycle_pt() {
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("ELIST2_ITERATOR::mark_cycle_pt", ABORT, NULL);
if (!list)
NO_LIST.error ("ELIST2_ITERATOR::mark_cycle_pt", ABORT, NULL);
#endif
if (current)
cycle_pt = current;
else
ex_current_was_cycle_pt = TRUE;
started_cycling = FALSE;
}
/***********************************************************************
* ELIST2_ITERATOR::at_first()
*
* Are we at the start of the list?
*
**********************************************************************/
inline BOOL8 ELIST2_ITERATOR::at_first() {
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("ELIST2_ITERATOR::at_first", ABORT, NULL);
if (!list)
NO_LIST.error ("ELIST2_ITERATOR::at_first", ABORT, NULL);
#endif
//we're at a deleted
return ((list->empty ()) || (current == list->First ()) || ((current == NULL) &&
(prev == list->last) && //NON-last pt between
!ex_current_was_last)); //first and last
}
/***********************************************************************
* ELIST2_ITERATOR::at_last()
*
* Are we at the end of the list?
*
**********************************************************************/
inline BOOL8 ELIST2_ITERATOR::at_last() {
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("ELIST2_ITERATOR::at_last", ABORT, NULL);
if (!list)
NO_LIST.error ("ELIST2_ITERATOR::at_last", ABORT, NULL);
#endif
//we're at a deleted
return ((list->empty ()) || (current == list->last) || ((current == NULL) &&
(prev == list->last) && //last point between
ex_current_was_last)); //first and last
}
/***********************************************************************
* ELIST2_ITERATOR::cycled_list()
*
* Have we returned to the cycle_pt since it was set?
*
**********************************************************************/
inline BOOL8 ELIST2_ITERATOR::cycled_list() {
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("ELIST2_ITERATOR::cycled_list", ABORT, NULL);
if (!list)
NO_LIST.error ("ELIST2_ITERATOR::cycled_list", ABORT, NULL);
#endif
return ((list->empty ()) || ((current == cycle_pt) && started_cycling));
}
/***********************************************************************
* ELIST2_ITERATOR::length()
*
* Return the length of the list
*
**********************************************************************/
inline inT32 ELIST2_ITERATOR::length() {
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("ELIST2_ITERATOR::length", ABORT, NULL);
if (!list)
NO_LIST.error ("ELIST2_ITERATOR::length", ABORT, NULL);
#endif
return list->length ();
}
/***********************************************************************
* ELIST2_ITERATOR::sort()
*
* Sort the elements of the list, then reposition at the start.
*
**********************************************************************/
inline void
ELIST2_ITERATOR::sort ( //sort elements
int comparator ( //comparison routine
const void *, const void *)) {
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("ELIST2_ITERATOR::sort", ABORT, NULL);
if (!list)
NO_LIST.error ("ELIST2_ITERATOR::sort", ABORT, NULL);
#endif
list->sort (comparator);
move_to_first();
}
/***********************************************************************
* ELIST2_ITERATOR::add_to_end
*
* Add a new element to the end of the list without moving the iterator.
* This is provided because a single linked list cannot move to the last as
* the iterator couldn't set its prev pointer. Adding to the end is
* essential for implementing
queues.
**********************************************************************/
inline void ELIST2_ITERATOR::add_to_end( // element to add
ELIST2_LINK *new_element) {
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("ELIST2_ITERATOR::add_to_end", ABORT, NULL);
if (!list)
NO_LIST.error ("ELIST2_ITERATOR::add_to_end", ABORT, NULL);
if (!new_element)
BAD_PARAMETER.error ("ELIST2_ITERATOR::add_to_end", ABORT,
"new_element is NULL");
if (new_element->next)
STILL_LINKED.error ("ELIST2_ITERATOR::add_to_end", ABORT, NULL);
#endif
if (this->at_last ()) {
this->add_after_stay_put (new_element);
}
else {
if (this->at_first ()) {
this->add_before_stay_put (new_element);
list->last = new_element;
}
else { //Iteratr is elsewhere
new_element->next = list->last->next;
new_element->prev = list->last;
list->last->next->prev = new_element;
list->last->next = new_element;
list->last = new_element;
}
}
}
/***********************************************************************
QUOTE_IT MACRO DEFINITION
===========================
Replace <parm> with "<parm>". <parm> may be an arbitrary number of tokens
***********************************************************************/
#define QUOTE_IT( parm ) #parm
/***********************************************************************
ELIST2IZE( CLASSNAME ) MACRO DEFINITION
======================================
CLASSNAME is assumed to be the name of a class which has a baseclass of
ELIST2_LINK.
NOTE: Because we dont use virtual functions in the list code, the list code
will NOT work correctly for classes derived from this.
The macro generates:
- An element deletion function: CLASSNAME##_zapper
- An E_LIST2 subclass: CLASSNAME##_LIST
- An E_LIST2_ITERATOR subclass:
CLASSNAME##_IT
NOTE: Generated names are DELIBERATELY designed to clash with those for
ELISTIZE but NOT with those for CLISTIZE and CLIST2IZE
Two macros are provided: ELIST2IZE and ELIST2IZEH
The ...IZEH macros just define the class names for use in .h files
The ...IZE macros define the code use in .c files
***********************************************************************/
/***********************************************************************
ELIST2IZEH( CLASSNAME ) MACRO
ELIST2IZEH is a concatenation of 3 fragments ELIST2IZEH_A, ELIST2IZEH_B and
ELIST2IZEH_C.
***********************************************************************/
#define ELIST2IZEH_A( CLASSNAME ) \
\
extern DLLSYM void CLASSNAME##_zapper( /*delete a link*/ \
ELIST2_LINK* link); /*link to delete*/
#define ELIST2IZEH_B( CLASSNAME ) \
\
/*********************************************************************** \
* CLASS - CLASSNAME##_LIST \
* \
* List class for class CLASSNAME \
* \
**********************************************************************/ \
\
class DLLSYM CLASSNAME##_LIST : public ELIST2 \
{ \
public: \
CLASSNAME##_LIST():ELIST2() {} \
/* constructor */ \
\
CLASSNAME##_LIST( /* dont construct */ \
const CLASSNAME##_LIST&) /*by initial assign*/\
{ DONT_CONSTRUCT_LIST_BY_COPY.error( QUOTE_IT( CLASSNAME##_LIST ), \
ABORT, NULL ); } \
\
void clear() /* delete elements */\
{ ELIST2::internal_clear( &CLASSNAME##_zapper ); } \
\
~CLASSNAME##_LIST() /* destructor */ \
{ clear(); } \
\
/* Become a deep copy of src_list*/ \
void deep_copy(const CLASSNAME##_LIST* src_list, \
CLASSNAME* (*copier)(const CLASSNAME*)); \
\
void operator=( /* prevent assign */ \
const CLASSNAME##_LIST&) \
{ DONT_ASSIGN_LISTS.error( QUOTE_IT( CLASSNAME##_LIST ), \
ABORT, NULL ); }
#define ELIST2IZEH_C( CLASSNAME ) \
}; \
\
\
\
/*********************************************************************** \
* CLASS - CLASSNAME##_IT \
* \
* Iterator class for class CLASSNAME##_LIST \
* \
* Note: We don't need to coerce pointers to member functions input \
* parameters as these are automatically converted to the type of the base \
* type. ("A ptr to a class may be converted to a pointer to a public base \
* class of that class") \
**********************************************************************/ \
\
class DLLSYM CLASSNAME##_IT : public ELIST2_ITERATOR \
{ \
public: \
CLASSNAME##_IT():ELIST2_ITERATOR(){} \
\
CLASSNAME##_IT( \
CLASSNAME##_LIST* list):ELIST2_ITERATOR(list){} \
\
CLASSNAME* data() \
{ return (CLASSNAME*) ELIST2_ITERATOR::data(); } \
\
CLASSNAME* data_relative( \
inT8 offset) \
{ return (CLASSNAME*) ELIST2_ITERATOR::data_relative( offset ); } \
\
CLASSNAME* forward() \
{ return (CLASSNAME*) ELIST2_ITERATOR::forward(); } \
\
CLASSNAME* backward() \
{ return (CLASSNAME*) ELIST2_ITERATOR::backward(); } \
\
CLASSNAME* extract() \
{ return (CLASSNAME*) ELIST2_ITERATOR::extract(); } \
\
CLASSNAME* move_to_first() \
{ return (CLASSNAME*) ELIST2_ITERATOR::move_to_first(); } \
\
CLASSNAME* move_to_last() \
{ return (CLASSNAME*) ELIST2_ITERATOR::move_to_last(); } \
};
#define ELIST2IZEH( CLASSNAME ) \
\
ELIST2IZEH_A( CLASSNAME ) \
\
ELIST2IZEH_B( CLASSNAME ) \
\
ELIST2IZEH_C( CLASSNAME )
/***********************************************************************
ELIST2IZE( CLASSNAME ) MACRO
***********************************************************************/
#define ELIST2IZE( CLASSNAME ) \
\
/*********************************************************************** \
* CLASSNAME##_zapper \
* \
* A function which can delete a CLASSNAME element. This is passed to the \
* generic clear list member function so that when a list is cleared the \
* elements on the list are properly destroyed from the base class, even \
* though we dont use a virtual destructor function. \
**********************************************************************/ \
\
DLLSYM void CLASSNAME##_zapper( /*delete a link*/ \
ELIST2_LINK* link) /*link to delete*/ \
{ \
delete (CLASSNAME *) link; \
} \
\
/* Become a deep copy of src_list*/ \
void CLASSNAME##_LIST::deep_copy(const CLASSNAME##_LIST* src_list, \
CLASSNAME* (*copier)(const CLASSNAME*)) { \
\
CLASSNAME##_IT from_it(const_cast<CLASSNAME##_LIST*>(src_list)); \
CLASSNAME##_IT to_it(this); \
\
for (from_it.mark_cycle_pt(); !from_it.cycled_list(); from_it.forward()) \
to_it.add_after_then_move((*copier)(from_it.data())); \
}
#endif
| 1080228-arabicocr11 | ccutil/elst2.h | C++ | asf20 | 34,335 |
// Copyright 2008 Google Inc. All Rights Reserved.
// Author: scharron@google.com (Samuel Charron)
#include "ccutil.h"
namespace tesseract {
CCUtil::CCUtil() :
params_(),
STRING_INIT_MEMBER(m_data_sub_dir,
"tessdata/", "Directory for data files", ¶ms_),
#ifdef _WIN32
STRING_INIT_MEMBER(tessedit_module_name, WINDLLNAME,
"Module colocated with tessdata dir", ¶ms_),
#endif
INT_INIT_MEMBER(ambigs_debug_level, 0, "Debug level for unichar ambiguities",
¶ms_),
BOOL_MEMBER(use_definite_ambigs_for_classifier, 0, "Use definite"
" ambiguities when running character classifier", ¶ms_),
BOOL_MEMBER(use_ambigs_for_adaption, 0, "Use ambigs for deciding"
" whether to adapt to a character", ¶ms_) {
}
CCUtil::~CCUtil() {
}
CCUtilMutex::CCUtilMutex() {
#ifdef _WIN32
mutex_ = CreateMutex(0, FALSE, 0);
#else
pthread_mutex_init(&mutex_, NULL);
#endif
}
void CCUtilMutex::Lock() {
#ifdef _WIN32
WaitForSingleObject(mutex_, INFINITE);
#else
pthread_mutex_lock(&mutex_);
#endif
}
void CCUtilMutex::Unlock() {
#ifdef _WIN32
ReleaseMutex(mutex_);
#else
pthread_mutex_unlock(&mutex_);
#endif
}
CCUtilMutex tprintfMutex; // should remain global
} // namespace tesseract
| 1080228-arabicocr11 | ccutil/ccutil.cpp | C++ | asf20 | 1,294 |
///////////////////////////////////////////////////////////////////////
// File: platform.h
// Description: Place holder
// Author:
// Created:
//
// (C) Copyright 2006, Google Inc.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
///////////////////////////////////////////////////////////////////////
#ifndef TESSERACT_CCUTIL_PLATFORM_H__
#define TESSERACT_CCUTIL_PLATFORM_H__
#include <string.h>
#define DLLSYM
#ifdef _WIN32
#ifdef __GNUC__
#define ultoa _ultoa
#endif /* __GNUC__ */
#define SIGNED
#define snprintf _snprintf
#if (_MSC_VER <= 1400)
#define vsnprintf _vsnprintf
#endif /* _WIN32 */
#else
#define __UNIX__
#include <limits.h>
#ifndef PATH_MAX
#define MAX_PATH 4096
#else
#define MAX_PATH PATH_MAX
#endif
#define SIGNED signed
#endif
#ifdef _WIN32
#ifndef M_PI
#define M_PI 3.14159265358979323846
#endif
#endif
#if defined(_WIN32) || defined(__CYGWIN__)
#if defined(TESS_EXPORTS)
#define TESS_API __declspec(dllexport)
#elif defined(TESS_IMPORTS)
#define TESS_API __declspec(dllimport)
#else
#define TESS_API
#endif
#define TESS_LOCAL
#else
#if __GNUC__ >= 4
#if defined(TESS_EXPORTS) || defined(TESS_IMPORTS)
#define TESS_API __attribute__ ((visibility ("default")))
#define TESS_LOCAL __attribute__ ((visibility ("hidden")))
#else
#define TESS_API
#define TESS_LOCAL
#endif
#else
#define TESS_API
#define TESS_LOCAL
#endif
#endif
#if defined(_WIN32) || defined(__CYGWIN__)
#define _TESS_FILE_BASENAME_ \
(strrchr(__FILE__, '\\') ? strrchr(__FILE__, '\\') + 1 : __FILE__)
#else // Unices
#define _TESS_FILE_BASENAME_ \
(strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
#endif
#endif // TESSERACT_CCUTIL_PLATFORM_H__
| 1080228-arabicocr11 | ccutil/platform.h | C | asf20 | 2,397 |
/**********************************************************************
* File: mainblk.c (Formerly main.c)
* Description: Function to call from main() to setup.
* Author: Ray Smith
* Created: Tue Oct 22 11:09:40 BST 1991
*
* (C) Copyright 1991, Hewlett-Packard Ltd.
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
** http://www.apache.org/licenses/LICENSE-2.0
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*
**********************************************************************/
#include "fileerr.h"
#ifdef __UNIX__
#include <unistd.h>
#include <signal.h>
#else
#include <io.h>
#endif
#include <stdlib.h>
#include "ccutil.h"
#define VARDIR "configs/" /**< variables files */
#define EXTERN
const ERRCODE NO_PATH =
"Warning:explicit path for executable will not be used for configs";
static const ERRCODE USAGE = "Usage";
namespace tesseract {
/**********************************************************************
* main_setup
*
* Main for mithras demo program. Read the arguments and set up globals.
**********************************************************************/
/**
* @brief CCUtil::main_setup - set location of tessdata and name of image
*
* @param argv0 - paths to the directory with language files and config files.
* An actual value of argv0 is used if not NULL, otherwise TESSDATA_PREFIX is
* used if not NULL, next try to use compiled in -DTESSDATA_PREFIX. If previous
* is not sucessul - use current directory.
* @param basename - name of image
*/
void CCUtil::main_setup(const char *argv0, const char *basename) {
imagebasename = basename; /**< name of image */
if (argv0 != NULL) {
datadir = argv0;
} else {
if (getenv("TESSDATA_PREFIX")) {
datadir = getenv("TESSDATA_PREFIX");
} else {
#ifdef TESSDATA_PREFIX
#define _STR(a) #a
#define _XSTR(a) _STR(a)
datadir = _XSTR(TESSDATA_PREFIX);
#undef _XSTR
#undef _STR
#endif
}
}
// datadir may still be empty:
if (datadir.length() == 0) {
datadir = "./";
} else {
// Remove tessdata from the end if present, as we will add it back!
int length = datadir.length();
if (length >= 8 && strcmp(&datadir[length - 8], "tessdata") == 0)
datadir.truncate_at(length - 8);
else if (length >= 9 && strcmp(&datadir[length - 9], "tessdata/") == 0)
datadir.truncate_at(length - 9);
}
// check for missing directory separator
const char *lastchar = datadir.string();
lastchar += datadir.length() - 1;
if ((strcmp(lastchar, "/") != 0) && (strcmp(lastchar, "\\") != 0))
datadir += "/";
datadir += m_data_sub_dir; /**< data directory */
}
} // namespace tesseract
| 1080228-arabicocr11 | ccutil/mainblk.cpp | C++ | asf20 | 3,131 |
// Copyright 2011 Google Inc. All Rights Reserved.
// Author: rays@google.com (Ray Smith)
///////////////////////////////////////////////////////////////////////
// File: bitvector.h
// Description: Class replacement for BITVECTOR.
// Author: Ray Smith
// Created: Mon Jan 10 17:44:01 PST 2011
//
// (C) Copyright 2011, Google Inc.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
///////////////////////////////////////////////////////////////////////
#ifndef TESSERACT_CCUTIL_BITVECTOR_H__
#define TESSERACT_CCUTIL_BITVECTOR_H__
#include <assert.h>
#include <stdio.h>
#include "host.h"
namespace tesseract {
// Trivial class to encapsulate a fixed-length array of bits, with
// Serialize/DeSerialize. Replaces the old macros.
class BitVector {
public:
// Fast lookup table to get the first least significant set bit in a byte.
// For zero, the table has 255, but since it is a special case, most code
// that uses this table will check for zero before looking up lsb_index_.
static const uinT8 lsb_index_[256];
// Fast lookup table to get the residual bits after zeroing the least
// significant set bit in a byte.
static const uinT8 lsb_eroded_[256];
// Fast lookup table to give the number of set bits in a byte.
static const int hamming_table_[256];
BitVector();
// Initializes the array to length * false.
explicit BitVector(int length);
BitVector(const BitVector& src);
BitVector& operator=(const BitVector& src);
~BitVector();
// Initializes the array to length * false.
void Init(int length);
// Returns the number of bits that are accessible in the vector.
int size() const {
return bit_size_;
}
// Writes to the given file. Returns false in case of error.
bool Serialize(FILE* fp) const;
// Reads from the given file. Returns false in case of error.
// If swap is true, assumes a big/little-endian swap is needed.
bool DeSerialize(bool swap, FILE* fp);
void SetAllFalse();
void SetAllTrue();
// Accessors to set/reset/get bits.
// The range of index is [0, size()-1].
// There is debug-only bounds checking.
void SetBit(int index) {
array_[WordIndex(index)] |= BitMask(index);
}
void ResetBit(int index) {
array_[WordIndex(index)] &= ~BitMask(index);
}
void SetValue(int index, bool value) {
if (value)
SetBit(index);
else
ResetBit(index);
}
bool At(int index) const {
return (array_[WordIndex(index)] & BitMask(index)) != 0;
}
bool operator[](int index) const {
return (array_[WordIndex(index)] & BitMask(index)) != 0;
}
// Returns the index of the next set bit after the given index.
// Useful for quickly iterating through the set bits in a sparse vector.
int NextSetBit(int prev_bit) const;
// Returns the number of set bits in the vector.
int NumSetBits() const;
// Logical in-place operations on whole bit vectors. Tries to do something
// sensible if they aren't the same size, but they should be really.
void operator|=(const BitVector& other);
void operator&=(const BitVector& other);
void operator^=(const BitVector& other);
// Set subtraction *this = v1 - v2.
void SetSubtract(const BitVector& v1, const BitVector& v2);
private:
// Allocates memory for a vector of the given length.
void Alloc(int length);
// Computes the index to array_ for the given index, with debug range
// checking.
int WordIndex(int index) const {
assert(0 <= index && index < bit_size_);
return index / kBitFactor;
}
// Returns a mask to select the appropriate bit for the given index.
uinT32 BitMask(int index) const {
return 1 << (index & (kBitFactor - 1));
}
// Returns the number of array elements needed to represent the current
// bit_size_.
int WordLength() const {
return (bit_size_ + kBitFactor - 1) / kBitFactor;
}
// Returns the number of bytes consumed by the array_.
int ByteLength() const {
return WordLength() * sizeof(*array_);
}
// Number of bits in this BitVector.
inT32 bit_size_;
// Array of words used to pack the bits.
// Bits are stored little-endian by uinT32 word, ie by word first and then
// starting with the least significant bit in each word.
uinT32* array_;
// Number of bits in an array_ element.
static const int kBitFactor = sizeof(uinT32) * 8;
};
} // namespace tesseract.
#endif // TESSERACT_CCUTIL_BITVECTOR_H__
| 1080228-arabicocr11 | ccutil/bitvector.h | C++ | asf20 | 4,897 |
///////////////////////////////////////////////////////////////////////
// File: unichar.h
// Description: Unicode character/ligature class.
// Author: Ray Smith
// Created: Wed Jun 28 17:05:01 PDT 2006
//
// (C) Copyright 2006, Google Inc.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
///////////////////////////////////////////////////////////////////////
#ifndef TESSERACT_CCUTIL_UNICHAR_H__
#define TESSERACT_CCUTIL_UNICHAR_H__
#include <memory.h>
#include <string.h>
template <typename T> class GenericVector;
// Maximum number of characters that can be stored in a UNICHAR. Must be
// at least 4. Must not exceed 31 without changing the coding of length.
#define UNICHAR_LEN 30
// A UNICHAR_ID is the unique id of a unichar.
typedef int UNICHAR_ID;
// A variable to indicate an invalid or uninitialized unichar id.
static const int INVALID_UNICHAR_ID = -1;
// A special unichar that corresponds to INVALID_UNICHAR_ID.
static const char INVALID_UNICHAR[] = "__INVALID_UNICHAR__";
enum StrongScriptDirection {
DIR_NEUTRAL = 0, // Text contains only neutral characters.
DIR_LEFT_TO_RIGHT = 1, // Text contains no Right-to-Left characters.
DIR_RIGHT_TO_LEFT = 2, // Text contains no Left-to-Right characters.
DIR_MIX = 3, // Text contains a mixture of left-to-right
// and right-to-left characters.
};
// The UNICHAR class holds a single classification result. This may be
// a single Unicode character (stored as between 1 and 4 utf8 bytes) or
// multple Unicode characters representing the NFKC expansion of a ligature
// such as fi, ffl etc. These are also stored as utf8.
class UNICHAR {
public:
UNICHAR() {
memset(chars, 0, UNICHAR_LEN);
}
// Construct from a utf8 string. If len<0 then the string is null terminated.
// If the string is too long to fit in the UNICHAR then it takes only what
// will fit.
UNICHAR(const char* utf8_str, int len);
// Construct from a single UCS4 character.
explicit UNICHAR(int unicode);
// Default copy constructor and operator= are OK.
// Get the first character as UCS-4.
int first_uni() const;
// Get the length of the UTF8 string.
int utf8_len() const {
int len = chars[UNICHAR_LEN - 1];
return len >=0 && len < UNICHAR_LEN ? len : UNICHAR_LEN;
}
// Get a UTF8 string, but NOT NULL terminated.
const char* utf8() const {
return chars;
}
// Get a terminated UTF8 string: Must delete[] it after use.
char* utf8_str() const;
// Get the number of bytes in the first character of the given utf8 string.
static int utf8_step(const char* utf8_str);
// A class to simplify iterating over and accessing elements of a UTF8
// string. Note that unlike the UNICHAR class, const_iterator does NOT COPY or
// take ownership of the underlying byte array. It also does not permit
// modification of the array (as the name suggests).
//
// Example:
// for (UNICHAR::const_iterator it = UNICHAR::begin(str, str_len);
// it != UNICHAR::end(str, len);
// ++it) {
// tprintf("UCS-4 symbol code = %d\n", *it);
// char buf[5];
// int char_len = it.get_utf8(buf); buf[char_len] = '\0';
// tprintf("Char = %s\n", buf);
// }
class const_iterator {
typedef const_iterator CI;
public:
// Step to the next UTF8 character.
// If the current position is at an illegal UTF8 character, then print an
// error message and step by one byte. If the current position is at a NULL
// value, don't step past it.
const_iterator& operator++();
// Return the UCS-4 value at the current position.
// If the current position is at an illegal UTF8 value, return a single
// space character.
int operator*() const;
// Store the UTF-8 encoding of the current codepoint into buf, which must be
// at least 4 bytes long. Return the number of bytes written.
// If the current position is at an illegal UTF8 value, writes a single
// space character and returns 1.
// Note that this method does not null-terminate the buffer.
int get_utf8(char* buf) const;
// Returns the number of bytes of the current codepoint. Returns 1 if the
// current position is at an illegal UTF8 value.
int utf8_len() const;
// Returns true if the UTF-8 encoding at the current position is legal.
bool is_legal() const;
// Return the pointer into the string at the current position.
const char* utf8_data() const { return it_; }
// Iterator equality operators.
friend bool operator==(const CI& lhs, const CI& rhs) {
return lhs.it_ == rhs.it_;
}
friend bool operator!=(const CI& lhs, const CI& rhs) {
return !(lhs == rhs);
}
private:
friend class UNICHAR;
explicit const_iterator(const char* it) : it_(it) {}
const char* it_; // Pointer into the string.
};
// Create a start/end iterator pointing to a string. Note that these methods
// are static and do NOT create a copy or take ownership of the underlying
// array.
static const_iterator begin(const char* utf8_str, const int byte_length);
static const_iterator end(const char* utf8_str, const int byte_length);
// Converts a utf-8 string to a vector of unicodes.
static void UTF8ToUnicode(const char* utf8_str, GenericVector<int>* unicodes);
private:
// A UTF-8 representation of 1 or more Unicode characters.
// The last element (chars[UNICHAR_LEN - 1]) is a length if
// its value < UNICHAR_LEN, otherwise it is a genuine character.
char chars[UNICHAR_LEN];
};
#endif // TESSERACT_CCUTIL_UNICHAR_H__
| 1080228-arabicocr11 | ccutil/unichar.h | C++ | asf20 | 6,118 |
/**********************************************************************
* File: fileerr.h (Formerly filerr.h)
* Description: Errors for file utilities.
* Author: Ray Smith
* Created: Tue Aug 14 15:45:16 BST 1990
*
* (C) Copyright 1990, Hewlett-Packard Ltd.
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
** http://www.apache.org/licenses/LICENSE-2.0
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*
**********************************************************************/
#ifndef FILEERR_H
#define FILEERR_H
#include "errcode.h"
const ERRCODE CANTOPENFILE = "Can't open file";
const ERRCODE CANTCREATEFILE = "Can't create file";
const ERRCODE CANTMAKEPIPE = "Can't create pipe";
const ERRCODE CANTCONNECTPIPE = "Can't reconnect pipes to stdin/stdout";
const ERRCODE READFAILED = "Read of file failed";
const ERRCODE WRITEFAILED = "Write of file failed";
const ERRCODE SELECTFAILED = "Select failed";
const ERRCODE EXECFAILED = "Could not exec new process";
#endif
| 1080228-arabicocr11 | ccutil/fileerr.h | C | asf20 | 1,435 |
///////////////////////////////////////////////////////////////////////
// File: unicharmap.cpp
// Description: Unicode character/ligature to integer id class.
// Author: Thomas Kielbus
// Created: Wed Jun 28 17:05:01 PDT 2006
//
// (C) Copyright 2006, Google Inc.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
///////////////////////////////////////////////////////////////////////
#include <assert.h>
#include "unichar.h"
#include "host.h"
#include "unicharmap.h"
UNICHARMAP::UNICHARMAP() :
nodes(0) {
}
UNICHARMAP::~UNICHARMAP() {
if (nodes != 0)
delete[] nodes;
}
// Search the given unichar representation in the tree. Each character in the
// string is interpreted as an index in an array of nodes.
UNICHAR_ID UNICHARMAP::unichar_to_id(const char* const unichar_repr) const {
const char* current_char = unichar_repr;
UNICHARMAP_NODE* current_nodes = nodes;
assert(*unichar_repr != '\0');
do {
if (*(current_char + 1) == '\0')
return current_nodes[static_cast<unsigned char>(*current_char)].id;
current_nodes =
current_nodes[static_cast<unsigned char>(*current_char)].children;
++current_char;
} while (true);
}
// Search the given unichar representation in the tree, using length characters
// from it maximum. Each character in the string is interpreted as an index in
// an array of nodes.
UNICHAR_ID UNICHARMAP::unichar_to_id(const char* const unichar_repr,
int length) const {
const char* current_char = unichar_repr;
UNICHARMAP_NODE* current_nodes = nodes;
assert(*unichar_repr != '\0');
assert(length > 0 && length <= UNICHAR_LEN);
do {
if (length == 1 || *(current_char + 1) == '\0')
return current_nodes[static_cast<unsigned char>(*current_char)].id;
current_nodes =
current_nodes[static_cast<unsigned char>(*current_char)].children;
++current_char;
--length;
} while (true);
}
// Search the given unichar representation in the tree, creating the possibly
// missing nodes. Once the right place has been found, insert the given id and
// update the inserted flag to keep track of the insert. Each character in the
// string is interpreted as an index in an array of nodes.
void UNICHARMAP::insert(const char* const unichar_repr, UNICHAR_ID id) {
const char* current_char = unichar_repr;
UNICHARMAP_NODE** current_nodes_pointer = &nodes;
assert(*unichar_repr != '\0');
assert(id >= 0);
do {
if (*current_nodes_pointer == 0)
*current_nodes_pointer = new UNICHARMAP_NODE[256];
if (*(current_char + 1) == '\0') {
(*current_nodes_pointer)
[static_cast<unsigned char>(*current_char)].id = id;
return;
}
current_nodes_pointer =
&((*current_nodes_pointer)
[static_cast<unsigned char>(*current_char)].children);
++current_char;
} while (true);
}
// Search the given unichar representation in the tree. Each character in the
// string is interpreted as an index in an array of nodes. Stop once the tree
// does not have anymore nodes or once we found the right unichar_repr.
bool UNICHARMAP::contains(const char* const unichar_repr) const {
if (unichar_repr == NULL || *unichar_repr == '\0') return false;
const char* current_char = unichar_repr;
UNICHARMAP_NODE* current_nodes = nodes;
while (current_nodes != 0 && *(current_char + 1) != '\0') {
current_nodes =
current_nodes[static_cast<unsigned char>(*current_char)].children;
++current_char;
}
return current_nodes != 0 && *(current_char + 1) == '\0' &&
current_nodes[static_cast<unsigned char>(*current_char)].id >= 0;
}
// Search the given unichar representation in the tree, using length characters
// from it maximum. Each character in the string is interpreted as an index in
// an array of nodes. Stop once the tree does not have anymore nodes or once we
// found the right unichar_repr.
bool UNICHARMAP::contains(const char* const unichar_repr,
int length) const {
if (unichar_repr == NULL || *unichar_repr == '\0') return false;
if (length <= 0 || length > UNICHAR_LEN) return false;
const char* current_char = unichar_repr;
UNICHARMAP_NODE* current_nodes = nodes;
while (current_nodes != 0 && (length > 1 && *(current_char + 1) != '\0')) {
current_nodes =
current_nodes[static_cast<unsigned char>(*current_char)].children;
--length;
++current_char;
}
return current_nodes != 0 && (length == 1 || *(current_char + 1) == '\0') &&
current_nodes[static_cast<unsigned char>(*current_char)].id >= 0;
}
// Return the minimum number of characters that must be used from this string
// to obtain a match in the UNICHARMAP.
int UNICHARMAP::minmatch(const char* const unichar_repr) const {
const char* current_char = unichar_repr;
UNICHARMAP_NODE* current_nodes = nodes;
while (current_nodes != NULL && *current_char != '\0') {
if (current_nodes[static_cast<unsigned char>(*current_char)].id >= 0)
return current_char + 1 - unichar_repr;
current_nodes =
current_nodes[static_cast<unsigned char>(*current_char)].children;
++current_char;
}
return 0;
}
void UNICHARMAP::clear() {
if (nodes != 0)
{
delete[] nodes;
nodes = 0;
}
}
UNICHARMAP::UNICHARMAP_NODE::UNICHARMAP_NODE() :
children(0),
id(-1) {
}
// Recursively delete the children
UNICHARMAP::UNICHARMAP_NODE::~UNICHARMAP_NODE() {
if (children != 0) {
delete[] children;
}
}
| 1080228-arabicocr11 | ccutil/unicharmap.cpp | C++ | asf20 | 5,983 |
/**********************************************************************
* File: hashfn.h (Formerly hash.h)
* Description: Portability hacks for hash_map, hash_set and unique_ptr.
* Author: Ray Smith
* Created: Wed Jan 08 14:08:25 PST 2014
*
* (C) Copyright 2014, Google Inc.
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
** http://www.apache.org/licenses/LICENSE-2.0
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*
**********************************************************************/
#ifndef HASHFN_H
#define HASHFN_H
#ifdef USE_STD_NAMESPACE
#if (__cplusplus >= 201103L) || defined(_MSC_VER) // Visual Studio
#include <unordered_map>
#include <unordered_set>
#define hash_map std::unordered_map
#if (_MSC_VER >= 1500 && _MSC_VER < 1600) // Visual Studio 2008
using namespace std::tr1;
#else // _MSC_VER
using std::unordered_map;
using std::unordered_set;
#include <memory>
#define SmartPtr std::unique_ptr
#define HAVE_UNIQUE_PTR
#endif // _MSC_VER
#elif (defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ > 0)) || \
__GNUC__ >= 4)) // gcc
// hash_set is deprecated in gcc
#include <ext/hash_map>
#include <ext/hash_set>
using __gnu_cxx::hash_map;
using __gnu_cxx::hash_set;
#define unordered_map hash_map
#define unordered_set hash_set
#else
#include <hash_map>
#include <hash_set>
#endif // gcc
#else // USE_STD_NAMESPACE
#include <hash_map>
#include <hash_set>
#define unordered_map hash_map
#define unordered_set hash_set
#endif // USE_STD_NAMESPACE
#ifndef HAVE_UNIQUE_PTR
// Trivial smart ptr. Expand to add features of std::unique_ptr as required.
template<class T> class SmartPtr {
public:
SmartPtr() : ptr_(NULL) {}
explicit SmartPtr(T* ptr) : ptr_(ptr) {}
~SmartPtr() {
delete ptr_;
}
T* get() const {
return ptr_;
}
void reset(T* ptr) {
if (ptr_ != NULL) delete ptr_;
ptr_ = ptr;
}
bool operator==(const T* ptr) const {
return ptr_ == ptr;
}
T* operator->() const {
return ptr_;
}
private:
T* ptr_;
};
#endif // HAVE_UNIQUE_PTR
#endif // HASHFN_H
| 1080228-arabicocr11 | ccutil/hashfn.h | C++ | asf20 | 2,500 |
/**********************************************************************
* File: strngs.h (Formerly strings.h)
* Description: STRING class definition.
* Author: Ray Smith
* Created: Fri Feb 15 09:15:01 GMT 1991
*
* (C) Copyright 1991, Hewlett-Packard Ltd.
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
** http://www.apache.org/licenses/LICENSE-2.0
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*
**********************************************************************/
#ifndef STRNGS_H
#define STRNGS_H
#include <stdio.h>
#include <string.h>
#include "platform.h"
#include "memry.h"
namespace tesseract {
class TFile;
} // namespace tesseract.
// STRING_IS_PROTECTED means that string[index] = X is invalid
// because you have to go through strings interface to modify it.
// This allows the string to ensure internal integrity and maintain
// its own string length. Unfortunately this is not possible because
// STRINGS are used as direct-manipulation data buffers for things
// like length arrays and many places cast away the const on string()
// to mutate the string. Turning this off means that internally we
// cannot assume we know the strlen.
#define STRING_IS_PROTECTED 0
template <typename T> class GenericVector;
class TESS_API STRING
{
public:
STRING();
STRING(const STRING &string);
STRING(const char *string);
STRING(const char *data, int length);
~STRING ();
// Writes to the given file. Returns false in case of error.
bool Serialize(FILE* fp) const;
// Reads from the given file. Returns false in case of error.
// If swap is true, assumes a big/little-endian swap is needed.
bool DeSerialize(bool swap, FILE* fp);
// Writes to the given file. Returns false in case of error.
bool Serialize(tesseract::TFile* fp) const;
// Reads from the given file. Returns false in case of error.
// If swap is true, assumes a big/little-endian swap is needed.
bool DeSerialize(bool swap, tesseract::TFile* fp);
BOOL8 contains(const char c) const;
inT32 length() const;
inT32 size() const { return length(); }
const char *string() const;
const char *c_str() const;
inline char* strdup() const {
inT32 len = length() + 1;
return strncpy(new char[len], GetCStr(), len);
}
#if STRING_IS_PROTECTED
const char &operator[] (inT32 index) const;
// len is number of chars in s to insert starting at index in this string
void insert_range(inT32 index, const char*s, int len);
void erase_range(inT32 index, int len);
#else
char &operator[] (inT32 index) const;
#endif
void split(const char c, GenericVector<STRING> *splited);
void truncate_at(inT32 index);
BOOL8 operator== (const STRING & string) const;
BOOL8 operator!= (const STRING & string) const;
BOOL8 operator!= (const char *string) const;
STRING & operator= (const char *string);
STRING & operator= (const STRING & string);
STRING operator+ (const STRING & string) const;
STRING operator+ (const char ch) const;
STRING & operator+= (const char *string);
STRING & operator+= (const STRING & string);
STRING & operator+= (const char ch);
// Assignment for strings which are not null-terminated.
void assign(const char *cstr, int len);
// Appends the given string and int (as a %d) to this.
// += cannot be used for ints as there as a char += operator that would
// be ambiguous, and ints usually need a string before or between them
// anyway.
void add_str_int(const char* str, int number);
// Appends the given string and double (as a %.8g) to this.
void add_str_double(const char* str, double number);
// ensure capacity but keep pointer encapsulated
inline void ensure(inT32 min_capacity) { ensure_cstr(min_capacity); }
private:
typedef struct STRING_HEADER {
// How much space was allocated in the string buffer for char data.
int capacity_;
// used_ is how much of the capacity is currently being used,
// including a '\0' terminator.
//
// If used_ is 0 then string is NULL (not even the '\0')
// else if used_ > 0 then it is strlen() + 1 (because it includes '\0')
// else strlen is >= 0 (not NULL) but needs to be computed.
// this condition is set when encapsulation is violated because
// an API returned a mutable string.
//
// capacity_ - used_ = excess capacity that the string can grow
// without reallocating
mutable int used_;
} STRING_HEADER;
// To preserve the behavior of the old serialization, we only have space
// for one pointer in this structure. So we are embedding a data structure
// at the start of the storage that will hold additional state variables,
// then storing the actual string contents immediately after.
STRING_HEADER* data_;
// returns the header part of the storage
inline STRING_HEADER* GetHeader() {
return data_;
}
inline const STRING_HEADER* GetHeader() const {
return data_;
}
// returns the string data part of storage
inline char* GetCStr() {
return ((char *)data_) + sizeof(STRING_HEADER);
};
inline const char* GetCStr() const {
return ((const char *)data_) + sizeof(STRING_HEADER);
};
inline bool InvariantOk() const {
#if STRING_IS_PROTECTED
return (GetHeader()->used_ == 0) ?
(string() == NULL) : (GetHeader()->used_ == (strlen(string()) + 1));
#else
return true;
#endif
}
// Ensure string has requested capacity as optimization
// to avoid unnecessary reallocations.
// The return value is a cstr buffer with at least requested capacity
char* ensure_cstr(inT32 min_capacity);
void FixHeader() const; // make used_ non-negative, even if const
char* AllocData(int used, int capacity);
void DiscardData();
};
#endif
| 1080228-arabicocr11 | ccutil/strngs.h | C++ | asf20 | 6,417 |
/**********************************************************************
* File: ndminx.h (Formerly ndminmax.h)
* Description: Extended ascii chars
* Author: Phil Cheatle
* Created: Mon Mar 29 14:46:01 BST 1993
*
* (C) Copyright 1991, Hewlett-Packard Ltd.
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
** http://www.apache.org/licenses/LICENSE-2.0
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*
**********************************************************************/
#ifndef NDMINX_H
#define NDMINX_H
#ifndef MAX
#define MAX(x,y) (((x) >= (y))?(x):(y))
#endif
#ifndef MIN
#define MIN(x,y) (((x) <= (y))?(x):(y))
#endif
#endif
| 1080228-arabicocr11 | ccutil/ndminx.h | C | asf20 | 1,097 |
///////////////////////////////////////////////////////////////////////
// File: tessdatamanager.cpp
// Description: Functions to handle loading/combining tesseract data files.
// Author: Daria Antonova
// Created: Wed Jun 03 11:26:43 PST 2009
//
// (C) Copyright 2009, Google Inc.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
///////////////////////////////////////////////////////////////////////
#ifdef _MSC_VER
#pragma warning(disable:4244) // Conversion warnings
#endif
#include "tessdatamanager.h"
#include <stdio.h>
#include "helpers.h"
#include "serialis.h"
#include "strngs.h"
#include "tprintf.h"
#include "params.h"
namespace tesseract {
bool TessdataManager::Init(const char *data_file_name, int debug_level) {
int i;
debug_level_ = debug_level;
data_file_name_ = data_file_name;
data_file_ = fopen(data_file_name, "rb");
if (data_file_ == NULL) {
tprintf("Error opening data file %s\n", data_file_name);
tprintf("Please make sure the TESSDATA_PREFIX environment variable is set "
"to the parent directory of your \"tessdata\" directory.\n");
return false;
}
fread(&actual_tessdata_num_entries_, sizeof(inT32), 1, data_file_);
swap_ = (actual_tessdata_num_entries_ > kMaxNumTessdataEntries);
if (swap_) {
ReverseN(&actual_tessdata_num_entries_,
sizeof(actual_tessdata_num_entries_));
}
ASSERT_HOST(actual_tessdata_num_entries_ <= TESSDATA_NUM_ENTRIES);
fread(offset_table_, sizeof(inT64),
actual_tessdata_num_entries_, data_file_);
if (swap_) {
for (i = 0 ; i < actual_tessdata_num_entries_; ++i) {
ReverseN(&offset_table_[i], sizeof(offset_table_[i]));
}
}
if (debug_level_) {
tprintf("TessdataManager loaded %d types of tesseract data files.\n",
actual_tessdata_num_entries_);
for (i = 0; i < actual_tessdata_num_entries_; ++i) {
tprintf("Offset for type %d is %lld\n", i, offset_table_[i]);
}
}
return true;
}
void TessdataManager::CopyFile(FILE *input_file, FILE *output_file,
bool newline_end, inT64 num_bytes_to_copy) {
if (num_bytes_to_copy == 0) return;
int buffer_size = 1024;
if (num_bytes_to_copy > 0 && buffer_size > num_bytes_to_copy) {
buffer_size = num_bytes_to_copy;
}
inT64 num_bytes_copied = 0;
char *chunk = new char[buffer_size];
int bytes_read;
char last_char = 0x0;
while ((bytes_read = fread(chunk, sizeof(char),
buffer_size, input_file))) {
fwrite(chunk, sizeof(char), bytes_read, output_file);
last_char = chunk[bytes_read-1];
if (num_bytes_to_copy > 0) {
num_bytes_copied += bytes_read;
if (num_bytes_copied == num_bytes_to_copy) break;
if (num_bytes_copied + buffer_size > num_bytes_to_copy) {
buffer_size = num_bytes_to_copy - num_bytes_copied;
}
}
}
if (newline_end) ASSERT_HOST(last_char == '\n');
delete[] chunk;
}
bool TessdataManager::WriteMetadata(inT64 *offset_table,
const char * language_data_path_prefix,
FILE *output_file) {
inT32 num_entries = TESSDATA_NUM_ENTRIES;
bool result = true;
if (fseek(output_file, 0, SEEK_SET) != 0 ||
fwrite(&num_entries, sizeof(inT32), 1, output_file) != 1 ||
fwrite(offset_table, sizeof(inT64), TESSDATA_NUM_ENTRIES,
output_file) != TESSDATA_NUM_ENTRIES) {
fclose(output_file);
result = false;
tprintf("WriteMetadata failed in TessdataManager!\n");
} else if (fclose(output_file)) {
result = false;
tprintf("WriteMetadata failed to close file!\n");
} else {
tprintf("TessdataManager combined tesseract data files.\n");
for (int i = 0; i < TESSDATA_NUM_ENTRIES; ++i) {
tprintf("Offset for type %2d (%s%-22s) is %lld\n", i,
language_data_path_prefix, kTessdataFileSuffixes[i],
offset_table[i]);
}
}
return result;
}
bool TessdataManager::CombineDataFiles(
const char *language_data_path_prefix,
const char *output_filename) {
int i;
inT64 offset_table[TESSDATA_NUM_ENTRIES];
for (i = 0; i < TESSDATA_NUM_ENTRIES; ++i) offset_table[i] = -1;
FILE *output_file = fopen(output_filename, "wb");
if (output_file == NULL) {
tprintf("Error opening %s for writing\n", output_filename);
return false;
}
// Leave some space for recording the offset_table.
if (fseek(output_file,
sizeof(inT32) + sizeof(inT64) * TESSDATA_NUM_ENTRIES, SEEK_SET)) {
tprintf("Error seeking %s\n", output_filename);
return false;
}
TessdataType type = TESSDATA_NUM_ENTRIES;
bool text_file = false;
FILE *file_ptr[TESSDATA_NUM_ENTRIES];
// Load individual tessdata components from files.
for (i = 0; i < TESSDATA_NUM_ENTRIES; ++i) {
ASSERT_HOST(TessdataTypeFromFileSuffix(
kTessdataFileSuffixes[i], &type, &text_file));
STRING filename = language_data_path_prefix;
filename += kTessdataFileSuffixes[i];
file_ptr[i] = fopen(filename.string(), "rb");
if (file_ptr[i] != NULL) {
offset_table[type] = ftell(output_file);
CopyFile(file_ptr[i], output_file, text_file, -1);
fclose(file_ptr[i]);
}
}
// Make sure that the required components are present.
if (file_ptr[TESSDATA_UNICHARSET] == NULL) {
tprintf("Error opening %sunicharset file\n", language_data_path_prefix);
fclose(output_file);
return false;
}
if (file_ptr[TESSDATA_INTTEMP] != NULL &&
(file_ptr[TESSDATA_PFFMTABLE] == NULL ||
file_ptr[TESSDATA_NORMPROTO] == NULL)) {
tprintf("Error opening %spffmtable and/or %snormproto files"
" while %sinttemp file was present\n", language_data_path_prefix,
language_data_path_prefix, language_data_path_prefix);
fclose(output_file);
return false;
}
return WriteMetadata(offset_table, language_data_path_prefix, output_file);
}
bool TessdataManager::OverwriteComponents(
const char *new_traineddata_filename,
char **component_filenames,
int num_new_components) {
int i;
inT64 offset_table[TESSDATA_NUM_ENTRIES];
TessdataType type = TESSDATA_NUM_ENTRIES;
bool text_file = false;
FILE *file_ptr[TESSDATA_NUM_ENTRIES];
for (i = 0; i < TESSDATA_NUM_ENTRIES; ++i) {
offset_table[i] = -1;
file_ptr[i] = NULL;
}
FILE *output_file = fopen(new_traineddata_filename, "wb");
if (output_file == NULL) {
tprintf("Error opening %s for writing\n", new_traineddata_filename);
return false;
}
// Leave some space for recording the offset_table.
if (fseek(output_file,
sizeof(inT32) + sizeof(inT64) * TESSDATA_NUM_ENTRIES, SEEK_SET)) {
fclose(output_file);
tprintf("Error seeking %s\n", new_traineddata_filename);
return false;
}
// Open the files with the new components.
for (i = 0; i < num_new_components; ++i) {
if (TessdataTypeFromFileName(component_filenames[i], &type, &text_file))
file_ptr[type] = fopen(component_filenames[i], "rb");
}
// Write updated data to the output traineddata file.
for (i = 0; i < TESSDATA_NUM_ENTRIES; ++i) {
if (file_ptr[i] != NULL) {
// Get the data from the opened component file.
offset_table[i] = ftell(output_file);
CopyFile(file_ptr[i], output_file, kTessdataFileIsText[i], -1);
fclose(file_ptr[i]);
} else {
// Get this data component from the loaded data file.
if (SeekToStart(static_cast<TessdataType>(i))) {
offset_table[i] = ftell(output_file);
CopyFile(data_file_, output_file, kTessdataFileIsText[i],
GetEndOffset(static_cast<TessdataType>(i)) -
ftell(data_file_) + 1);
}
}
}
const char *language_data_path_prefix = strchr(new_traineddata_filename, '.');
return WriteMetadata(offset_table, language_data_path_prefix, output_file);
}
bool TessdataManager::TessdataTypeFromFileSuffix(
const char *suffix, TessdataType *type, bool *text_file) {
for (int i = 0; i < TESSDATA_NUM_ENTRIES; ++i) {
if (strcmp(kTessdataFileSuffixes[i], suffix) == 0) {
*type = static_cast<TessdataType>(i);
*text_file = kTessdataFileIsText[i];
return true;
}
}
tprintf("TessdataManager can't determine which tessdata"
" component is represented by %s\n", suffix);
return false;
}
bool TessdataManager::TessdataTypeFromFileName(
const char *filename, TessdataType *type, bool *text_file) {
// Get the file suffix (extension)
const char *suffix = strrchr(filename, '.');
if (suffix == NULL || *(++suffix) == '\0') return false;
return TessdataTypeFromFileSuffix(suffix, type, text_file);
}
bool TessdataManager::ExtractToFile(const char *filename) {
TessdataType type = TESSDATA_NUM_ENTRIES;
bool text_file = false;
ASSERT_HOST(tesseract::TessdataManager::TessdataTypeFromFileName(
filename, &type, &text_file));
if (!SeekToStart(type)) return false;
FILE *output_file = fopen(filename, "wb");
if (output_file == NULL) {
tprintf("Error opening %s\n", filename);
exit(1);
}
inT64 begin_offset = ftell(GetDataFilePtr());
inT64 end_offset = GetEndOffset(type);
tesseract::TessdataManager::CopyFile(
GetDataFilePtr(), output_file, text_file,
end_offset - begin_offset + 1);
fclose(output_file);
return true;
}
} // namespace tesseract
| 1080228-arabicocr11 | ccutil/tessdatamanager.cpp | C++ | asf20 | 9,868 |
///////////////////////////////////////////////////////////////////////
// File: indexmapbidi.h
// Description: Bi-directional mapping between a sparse and compact space.
// Author: rays@google.com (Ray Smith)
// Created: Tue Apr 06 11:33:59 PDT 2010
//
// (C) Copyright 2010, Google Inc.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
///////////////////////////////////////////////////////////////////////
#ifndef TESSERACT_CCUTIL_INDEXMAPBIDI_H_
#define TESSERACT_CCUTIL_INDEXMAPBIDI_H_
#include <stdio.h>
#include "genericvector.h"
namespace tesseract {
class IndexMapBiDi;
// Bidirectional one-to-one mapping between a sparse and a compact discrete
// space. Many entries in the sparse space are unmapped, but those that are
// mapped have a 1-1 mapping to (and from) the compact space, where all
// values are used. This is useful for forming subsets of larger collections,
// such as subsets of character sets, or subsets of binary feature spaces.
//
// This base class provides basic functionality with binary search for the
// SparseToCompact mapping to save memory.
// For a faster inverse mapping, or to allow a many-to-one mapping, use
// IndexMapBiDi below.
// NOTE: there are currently no methods to setup an IndexMap on its own!
// It must be initialized by copying from an IndexMapBiDi or by DeSerialize.
class IndexMap {
public:
virtual ~IndexMap() {}
// SparseToCompact takes a sparse index to an index in the compact space.
// Uses a binary search to find the result. For faster speed use
// IndexMapBiDi, but that takes more memory.
virtual int SparseToCompact(int sparse_index) const;
// CompactToSparse takes a compact index to the corresponding index in the
// sparse space.
int CompactToSparse(int compact_index) const {
return compact_map_[compact_index];
}
// The size of the sparse space.
virtual int SparseSize() const {
return sparse_size_;
}
// The size of the compact space.
int CompactSize() const {
return compact_map_.size();
}
// Copy from the input.
void CopyFrom(const IndexMap& src);
void CopyFrom(const IndexMapBiDi& src);
// Writes to the given file. Returns false in case of error.
bool Serialize(FILE* fp) const;
// Reads from the given file. Returns false in case of error.
// If swap is true, assumes a big/little-endian swap is needed.
bool DeSerialize(bool swap, FILE* fp);
protected:
// The sparse space covers integers in the range [0, sparse_size_-1].
int sparse_size_;
// The compact space covers integers in the range [0, compact_map_.size()-1].
// Each element contains the corresponding sparse index.
GenericVector<inT32> compact_map_;
};
// Bidirectional many-to-one mapping between a sparse and a compact discrete
// space. As with IndexMap, many entries may be unmapped, but unlike IndexMap,
// of those that are, many may be mapped to the same compact index.
// If the map is many-to-one, it is not possible to directly obtain all the
// sparse indices that map to a single compact index.
// This map is time- rather than space-efficient. It stores the entire sparse
// space.
// IndexMapBiDi may be initialized in one of 3 ways:
// 1. Init(size, true);
// Setup();
// Sets a complete 1:1 mapping with no unmapped elements.
// 2. Init(size, false);
// for ... SetMap(index, true);
// Setup();
// Specifies precisely which sparse indices are mapped. The mapping is 1:1.
// 3. Either of the above, followed by:
// for ... Merge(index1, index2);
// CompleteMerges();
// Allows a many-to-one mapping by merging compact space indices.
class IndexMapBiDi : public IndexMap {
public:
virtual ~IndexMapBiDi() {}
// Top-level init function in a single call to initialize a map to select
// a single contiguous subrange [start, end) of the sparse space to be mapped
// 1 to 1 to the compact space, with all other elements of the sparse space
// left unmapped.
// No need to call Setup after this.
void InitAndSetupRange(int sparse_size, int start, int end);
// Initializes just the sparse_map_ to the given size with either all
// forward indices mapped (all_mapped = true) or none (all_mapped = false).
// Call Setup immediately after, or make calls to SetMap first to adjust the
// mapping and then call Setup before using the map.
void Init(int size, bool all_mapped);
// Sets a given index in the sparse_map_ to be mapped or not.
void SetMap(int sparse_index, bool mapped);
// Sets up the sparse_map_ and compact_map_ properly after Init and
// some calls to SetMap. Assumes an ordered 1-1 map from set indices
// in the sparse space to the compact space.
void Setup();
// Merges the two compact space indices. May be called many times, but
// the merges must be concluded by a call to CompleteMerges.
// Returns true if a merge was actually performed.
bool Merge(int compact_index1, int compact_index2);
// Returns true if the given compact index has been deleted.
bool IsCompactDeleted(int index) const {
return MasterCompactIndex(index) < 0;
}
// Completes one or more Merge operations by further compacting the
// compact space.
void CompleteMerges();
// SparseToCompact takes a sparse index to an index in the compact space.
virtual int SparseToCompact(int sparse_index) const {
return sparse_map_[sparse_index];
}
// The size of the sparse space.
virtual int SparseSize() const {
return sparse_map_.size();
}
// Copy from the input.
void CopyFrom(const IndexMapBiDi& src);
// Writes to the given file. Returns false in case of error.
bool Serialize(FILE* fp) const;
// Reads from the given file. Returns false in case of error.
// If swap is true, assumes a big/little-endian swap is needed.
bool DeSerialize(bool swap, FILE* fp);
// Bulk calls to SparseToCompact.
// Maps the given array of sparse indices to an array of compact indices.
// Assumes the input is sorted. The output indices are sorted and uniqued.
// Return value is the number of "missed" features, being features that
// don't map to the compact feature space.
int MapFeatures(const GenericVector<int>& sparse,
GenericVector<int>* compact) const;
private:
// Returns the master compact index for a given compact index.
// During a multiple merge operation, several compact indices may be
// combined, so we need to be able to find the master of all.
int MasterCompactIndex(int compact_index) const {
while (compact_index >= 0 &&
sparse_map_[compact_map_[compact_index]] != compact_index)
compact_index = sparse_map_[compact_map_[compact_index]];
return compact_index;
}
// Direct look-up of the compact index for each element in sparse space.
GenericVector<inT32> sparse_map_;
};
} // namespace tesseract.
#endif // TESSERACT_CCUTIL_INDEXMAPBIDI_H_
| 1080228-arabicocr11 | ccutil/indexmapbidi.h | C++ | asf20 | 7,374 |
/**********************************************************************
* File: basedir.h (Formerly getpath.h)
* Description: Header file for getpath.c. Provides relocatability of data.
* Author: Ray Smith
* Created: Mon Jul 09 09:13:03 BST 1990
*
* (C) Copyright 1990, Hewlett-Packard Ltd.
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
** http://www.apache.org/licenses/LICENSE-2.0
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*
**********************************************************************/
#ifndef BASEDIR_H
#define BASEDIR_H
#include "platform.h"
#include "strngs.h"
// Returns the given code_path truncated to the last slash.
// Useful for getting to the directory of argv[0], but does not search
// any paths.
TESS_API void truncate_path(const char *code_path, STRING* trunc_path);
#endif
| 1080228-arabicocr11 | ccutil/basedir.h | C | asf20 | 1,288 |
///////////////////////////////////////////////////////////////////////
// File: universalambigs.h
// Description: Data for a universal ambigs file that is useful for
// any language.
// Author: Ray Smith
// Created: Mon Mar 18 11:26:00 PDT 2013
//
// (C) Copyright 2013, Google Inc.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
///////////////////////////////////////////////////////////////////////
namespace tesseract {
extern const char kUniversalAmbigsFile[];
extern const int ksizeofUniversalAmbigsFile;
} // namespace tesseract
| 1080228-arabicocr11 | ccutil/universalambigs.h | C++ | asf20 | 1,071 |
/**********************************************************************
* File: tprintf.c
* Description: Trace version of printf - portable between UX and NT
* Author: Phil Cheatle
* Created: Wed Jun 28 15:01:15 BST 1995
*
* (C) Copyright 1995, Hewlett-Packard Ltd.
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
** http://www.apache.org/licenses/LICENSE-2.0
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*
**********************************************************************/
// Include automatically generated configuration file if running autoconf.
#ifdef HAVE_CONFIG_H
#include "config_auto.h"
#endif
#include <stdio.h>
#include <stdarg.h>
#include "ccutil.h"
#include "params.h"
#include "strngs.h"
#include "tprintf.h"
#define MAX_MSG_LEN 65536
#define EXTERN
// Since tprintf is protected by a mutex, these parameters can remain global.
DLLSYM STRING_VAR(debug_file, "", "File to send tprintf output to");
DLLSYM void
tprintf_internal( // Trace printf
const char *format, ... // Message
) {
tesseract::tprintfMutex.Lock();
va_list args; // variable args
static FILE *debugfp = NULL; // debug file
// debug window
inT32 offset = 0; // into message
static char msg[MAX_MSG_LEN + 1];
va_start(args, format); // variable list
// Format into msg
#ifdef _WIN32
offset += _vsnprintf(msg + offset, MAX_MSG_LEN - offset, format, args);
if (strcmp(debug_file.string(), "/dev/null") == 0)
debug_file.set_value("nul");
#else
offset += vsnprintf(msg + offset, MAX_MSG_LEN - offset, format, args);
#endif
va_end(args);
if (debugfp == NULL && strlen(debug_file.string()) > 0) {
debugfp = fopen(debug_file.string(), "wb");
} else if (debugfp != NULL && strlen(debug_file.string()) == 0) {
fclose(debugfp);
debugfp = NULL;
}
if (debugfp != NULL)
fprintf(debugfp, "%s", msg);
else
fprintf(stderr, "%s", msg);
tesseract::tprintfMutex.Unlock();
}
| 1080228-arabicocr11 | ccutil/tprintf.cpp | C++ | asf20 | 2,508 |
/**********************************************************************
* File: errcode.c (Formerly error.c)
* Description: Generic error handler function
* Author: Ray Smith
* Created: Tue May 1 16:28:39 BST 1990
*
* (C) Copyright 1989, Hewlett-Packard Ltd.
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
** http://www.apache.org/licenses/LICENSE-2.0
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*
**********************************************************************/
#include <signal.h>
#ifdef __linux__
#include <sys/syscall.h> // For SYS_gettid.
#include <unistd.h> // For syscall itself.
#endif
#include "allheaders.h"
#include "errcode.h"
#include "tprintf.h"
// Size of thread-id array of pixes to keep in case of crash.
const int kMaxNumThreadPixes = 32768;
Pix* global_crash_pixes[kMaxNumThreadPixes];
void SavePixForCrash(int resolution, Pix* pix) {
#ifdef __linux__
#ifndef ANDROID
int thread_id = syscall(SYS_gettid) % kMaxNumThreadPixes;
#else
int thread_id = gettid() % kMaxNumThreadPixes;
#endif
pixDestroy(&global_crash_pixes[thread_id]);
if (pix != NULL) {
Pix* clone = pixClone(pix);
pixSetXRes(clone, resolution);
pixSetYRes(clone, resolution);
global_crash_pixes[thread_id] = clone;
}
#endif
}
// CALL ONLY from a signal handler! Writes a crash image to stderr.
void signal_exit(int signal_code) {
tprintf("Received signal %d!\n", signal_code);
#ifdef __linux__
#ifndef ANDROID
int thread_id = syscall(SYS_gettid) % kMaxNumThreadPixes;
#else
int thread_id = gettid() % kMaxNumThreadPixes;
#endif
if (global_crash_pixes[thread_id] != NULL) {
fprintf(stderr, "Crash caused by image with resolution %d\n",
pixGetYRes(global_crash_pixes[thread_id]));
fprintf(stderr, "<Cut here>\n");
pixWriteStreamPng(stderr, global_crash_pixes[thread_id], 0.0);
fprintf(stderr, "\n<End cut>\n");
}
// Raise an uncaught signal, so as to get a useful stack trace.
raise(SIGILL);
#else
abort();
#endif
}
void err_exit() {
ASSERT_HOST("Fatal error encountered!" == NULL);
}
void set_global_loc_code(int loc_code) {
// global_loc_code = loc_code;
}
void set_global_subloc_code(int loc_code) {
// global_subloc_code = loc_code;
}
void set_global_subsubloc_code(int loc_code) {
// global_subsubloc_code = loc_code;
}
| 1080228-arabicocr11 | ccutil/globaloc.cpp | C++ | asf20 | 2,811 |
/**********************************************************************
* File: elst.c (Formerly elist.c)
* Description: Embedded list handling code which is not in the include file.
* Author: Phil Cheatle
* Created: Fri Jan 04 13:55:49 GMT 1991
*
* (C) Copyright 1991, Hewlett-Packard Ltd.
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
** http://www.apache.org/licenses/LICENSE-2.0
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*
**********************************************************************/
#include <stdlib.h>
#include "elst.h"
/***********************************************************************
* MEMBER FUNCTIONS OF CLASS: ELIST
* ================================
**********************************************************************/
/***********************************************************************
* ELIST::internal_clear
*
* Used by the destructor and the "clear" member function of derived list
* classes to destroy all the elements on the list.
* The calling function passes a "zapper" function which can be called to
* delete each element of the list, regardless of its derived type. This
* technique permits a generic clear function to destroy elements of
* different derived types correctly, without requiring virtual functions and
* the consequential memory overhead.
**********************************************************************/
void
ELIST::internal_clear ( //destroy all links
void (*zapper) (ELIST_LINK *)) {
//ptr to zapper functn
ELIST_LINK *ptr;
ELIST_LINK *next;
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("ELIST::internal_clear", ABORT, NULL);
#endif
if (!empty ()) {
ptr = last->next; //set to first
last->next = NULL; //break circle
last = NULL; //set list empty
while (ptr) {
next = ptr->next;
zapper(ptr);
ptr = next;
}
}
}
/***********************************************************************
* ELIST::assign_to_sublist
*
* The list is set to a sublist of another list. "This" list must be empty
* before this function is invoked. The two iterators passed must refer to
* the same list, different from "this" one. The sublist removed is the
* inclusive list from start_it's current position to end_it's current
* position. If this range passes over the end of the source list then the
* source list has its end set to the previous element of start_it. The
* extracted sublist is unaffected by the end point of the source list, its
* end point is always the end_it position.
**********************************************************************/
void ELIST::assign_to_sublist( //to this list
ELIST_ITERATOR *start_it, //from list start
ELIST_ITERATOR *end_it) { //from list end
const ERRCODE LIST_NOT_EMPTY =
"Destination list must be empty before extracting a sublist";
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("ELIST::assign_to_sublist", ABORT, NULL);
#endif
if (!empty ())
LIST_NOT_EMPTY.error ("ELIST.assign_to_sublist", ABORT, NULL);
last = start_it->extract_sublist (end_it);
}
/***********************************************************************
* ELIST::length
*
* Return count of elements on list
**********************************************************************/
inT32 ELIST::length() const { // count elements
ELIST_ITERATOR it(const_cast<ELIST*>(this));
inT32 count = 0;
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("ELIST::length", ABORT, NULL);
#endif
for (it.mark_cycle_pt (); !it.cycled_list (); it.forward ())
count++;
return count;
}
/***********************************************************************
* ELIST::sort
*
* Sort elements on list
* NB If you dont like the const declarations in the comparator, coerce yours:
* ( int (*)(const void *, const void *)
**********************************************************************/
void
ELIST::sort ( //sort elements
int comparator ( //comparison routine
const void *, const void *)) {
ELIST_ITERATOR it(this);
inT32 count;
ELIST_LINK **base; //ptr array to sort
ELIST_LINK **current;
inT32 i;
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("ELIST::sort", ABORT, NULL);
#endif
/* Allocate an array of pointers, one per list element */
count = length ();
base = (ELIST_LINK **) malloc (count * sizeof (ELIST_LINK *));
/* Extract all elements, putting the pointers in the array */
current = base;
for (it.mark_cycle_pt (); !it.cycled_list (); it.forward ()) {
*current = it.extract ();
current++;
}
/* Sort the pointer array */
qsort ((char *) base, count, sizeof (*base), comparator);
/* Rebuild the list from the sorted pointers */
current = base;
for (i = 0; i < count; i++) {
it.add_to_end (*current);
current++;
}
free(base);
}
// Assuming list has been sorted already, insert new_link to
// keep the list sorted according to the same comparison function.
// Comparision function is the same as used by sort, i.e. uses double
// indirection. Time is O(1) to add to beginning or end.
// Time is linear to add pre-sorted items to an empty list.
// If unique is set to true and comparator() returns 0 (an entry with the
// same information as the one contained in new_link is already in the
// list) - new_link is not added to the list and the function returns the
// pointer to the identical entry that already exists in the list
// (otherwise the function returns new_link).
ELIST_LINK *ELIST::add_sorted_and_find(
int comparator(const void*, const void*),
bool unique, ELIST_LINK* new_link) {
// Check for adding at the end.
if (last == NULL || comparator(&last, &new_link) < 0) {
if (last == NULL) {
new_link->next = new_link;
} else {
new_link->next = last->next;
last->next = new_link;
}
last = new_link;
} else {
// Need to use an iterator.
ELIST_ITERATOR it(this);
for (it.mark_cycle_pt(); !it.cycled_list(); it.forward()) {
ELIST_LINK* link = it.data();
int compare = comparator(&link, &new_link);
if (compare > 0) {
break;
} else if (unique && compare == 0) {
return link;
}
}
if (it.cycled_list())
it.add_to_end(new_link);
else
it.add_before_then_move(new_link);
}
return new_link;
}
/***********************************************************************
* MEMBER FUNCTIONS OF CLASS: ELIST_ITERATOR
* =========================================
**********************************************************************/
/***********************************************************************
* ELIST_ITERATOR::forward
*
* Move the iterator to the next element of the list.
* REMEMBER: ALL LISTS ARE CIRCULAR.
**********************************************************************/
ELIST_LINK *ELIST_ITERATOR::forward() {
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("ELIST_ITERATOR::forward", ABORT, NULL);
if (!list)
NO_LIST.error ("ELIST_ITERATOR::forward", ABORT, NULL);
#endif
if (list->empty ())
return NULL;
if (current) { //not removed so
//set previous
prev = current;
started_cycling = TRUE;
// In case next is deleted by another iterator, get next from current.
current = current->next;
} else {
if (ex_current_was_cycle_pt)
cycle_pt = next;
current = next;
}
next = current->next;
#ifndef NDEBUG
if (!current)
NULL_DATA.error ("ELIST_ITERATOR::forward", ABORT, NULL);
if (!next)
NULL_NEXT.error ("ELIST_ITERATOR::forward", ABORT,
"This is: %p Current is: %p", this, current);
#endif
return current;
}
/***********************************************************************
* ELIST_ITERATOR::data_relative
*
* Return the data pointer to the element "offset" elements from current.
* "offset" must not be less than -1.
* (This function can't be INLINEd because it contains a loop)
**********************************************************************/
ELIST_LINK *ELIST_ITERATOR::data_relative( //get data + or - ...
inT8 offset) { //offset from current
ELIST_LINK *ptr;
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("ELIST_ITERATOR::data_relative", ABORT, NULL);
if (!list)
NO_LIST.error ("ELIST_ITERATOR::data_relative", ABORT, NULL);
if (list->empty ())
EMPTY_LIST.error ("ELIST_ITERATOR::data_relative", ABORT, NULL);
if (offset < -1)
BAD_PARAMETER.error ("ELIST_ITERATOR::data_relative", ABORT,
"offset < -l");
#endif
if (offset == -1)
ptr = prev;
else
for (ptr = current ? current : prev; offset-- > 0; ptr = ptr->next);
#ifndef NDEBUG
if (!ptr)
NULL_DATA.error ("ELIST_ITERATOR::data_relative", ABORT, NULL);
#endif
return ptr;
}
/***********************************************************************
* ELIST_ITERATOR::move_to_last()
*
* Move current so that it is set to the end of the list.
* Return data just in case anyone wants it.
* (This function can't be INLINEd because it contains a loop)
**********************************************************************/
ELIST_LINK *ELIST_ITERATOR::move_to_last() {
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("ELIST_ITERATOR::move_to_last", ABORT, NULL);
if (!list)
NO_LIST.error ("ELIST_ITERATOR::move_to_last", ABORT, NULL);
#endif
while (current != list->last)
forward();
return current;
}
/***********************************************************************
* ELIST_ITERATOR::exchange()
*
* Given another iterator, whose current element is a different element on
* the same list list OR an element of another list, exchange the two current
* elements. On return, each iterator points to the element which was the
* other iterators current on entry.
* (This function hasn't been in-lined because its a bit big!)
**********************************************************************/
void ELIST_ITERATOR::exchange( //positions of 2 links
ELIST_ITERATOR *other_it) { //other iterator
const ERRCODE DONT_EXCHANGE_DELETED =
"Can't exchange deleted elements of lists";
ELIST_LINK *old_current;
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("ELIST_ITERATOR::exchange", ABORT, NULL);
if (!list)
NO_LIST.error ("ELIST_ITERATOR::exchange", ABORT, NULL);
if (!other_it)
BAD_PARAMETER.error ("ELIST_ITERATOR::exchange", ABORT, "other_it NULL");
if (!(other_it->list))
NO_LIST.error ("ELIST_ITERATOR::exchange", ABORT, "other_it");
#endif
/* Do nothing if either list is empty or if both iterators reference the same
link */
if ((list->empty ()) ||
(other_it->list->empty ()) || (current == other_it->current))
return;
/* Error if either current element is deleted */
if (!current || !other_it->current)
DONT_EXCHANGE_DELETED.error ("ELIST_ITERATOR.exchange", ABORT, NULL);
/* Now handle the 4 cases: doubleton list; non-doubleton adjacent elements
(other before this); non-doubleton adjacent elements (this before other);
non-adjacent elements. */
//adjacent links
if ((next == other_it->current) ||
(other_it->next == current)) {
//doubleton list
if ((next == other_it->current) &&
(other_it->next == current)) {
prev = next = current;
other_it->prev = other_it->next = other_it->current;
}
else { //non-doubleton with
//adjacent links
//other before this
if (other_it->next == current) {
other_it->prev->next = current;
other_it->current->next = next;
current->next = other_it->current;
other_it->next = other_it->current;
prev = current;
}
else { //this before other
prev->next = other_it->current;
current->next = other_it->next;
other_it->current->next = current;
next = current;
other_it->prev = other_it->current;
}
}
}
else { //no overlap
prev->next = other_it->current;
current->next = other_it->next;
other_it->prev->next = current;
other_it->current->next = next;
}
/* update end of list pointer when necessary (remember that the 2 iterators
may iterate over different lists!) */
if (list->last == current)
list->last = other_it->current;
if (other_it->list->last == other_it->current)
other_it->list->last = current;
if (current == cycle_pt)
cycle_pt = other_it->cycle_pt;
if (other_it->current == other_it->cycle_pt)
other_it->cycle_pt = cycle_pt;
/* The actual exchange - in all cases*/
old_current = current;
current = other_it->current;
other_it->current = old_current;
}
/***********************************************************************
* ELIST_ITERATOR::extract_sublist()
*
* This is a private member, used only by ELIST::assign_to_sublist.
* Given another iterator for the same list, extract the links from THIS to
* OTHER inclusive, link them into a new circular list, and return a
* pointer to the last element.
* (Can't inline this function because it contains a loop)
**********************************************************************/
ELIST_LINK *ELIST_ITERATOR::extract_sublist( //from this current
ELIST_ITERATOR *other_it) { //to other current
#ifndef NDEBUG
const ERRCODE BAD_EXTRACTION_PTS =
"Can't extract sublist from points on different lists";
const ERRCODE DONT_EXTRACT_DELETED =
"Can't extract a sublist marked by deleted points";
#endif
const ERRCODE BAD_SUBLIST = "Can't find sublist end point in original list";
ELIST_ITERATOR temp_it = *this;
ELIST_LINK *end_of_new_list;
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("ELIST_ITERATOR::extract_sublist", ABORT, NULL);
if (!other_it)
BAD_PARAMETER.error ("ELIST_ITERATOR::extract_sublist", ABORT,
"other_it NULL");
if (!list)
NO_LIST.error ("ELIST_ITERATOR::extract_sublist", ABORT, NULL);
if (list != other_it->list)
BAD_EXTRACTION_PTS.error ("ELIST_ITERATOR.extract_sublist", ABORT, NULL);
if (list->empty ())
EMPTY_LIST.error ("ELIST_ITERATOR::extract_sublist", ABORT, NULL);
if (!current || !other_it->current)
DONT_EXTRACT_DELETED.error ("ELIST_ITERATOR.extract_sublist", ABORT,
NULL);
#endif
ex_current_was_last = other_it->ex_current_was_last = FALSE;
ex_current_was_cycle_pt = FALSE;
other_it->ex_current_was_cycle_pt = FALSE;
temp_it.mark_cycle_pt ();
do { //walk sublist
if (temp_it.cycled_list ()) //cant find end pt
BAD_SUBLIST.error ("ELIST_ITERATOR.extract_sublist", ABORT, NULL);
if (temp_it.at_last ()) {
list->last = prev;
ex_current_was_last = other_it->ex_current_was_last = TRUE;
}
if (temp_it.current == cycle_pt)
ex_current_was_cycle_pt = TRUE;
if (temp_it.current == other_it->cycle_pt)
other_it->ex_current_was_cycle_pt = TRUE;
temp_it.forward ();
}
while (temp_it.prev != other_it->current);
//circularise sublist
other_it->current->next = current;
end_of_new_list = other_it->current;
//sublist = whole list
if (prev == other_it->current) {
list->last = NULL;
prev = current = next = NULL;
other_it->prev = other_it->current = other_it->next = NULL;
}
else {
prev->next = other_it->next;
current = other_it->current = NULL;
next = other_it->next;
other_it->prev = prev;
}
return end_of_new_list;
}
| 1080228-arabicocr11 | ccutil/elst.cpp | C++ | asf20 | 16,610 |
/**********************************************************************
* File: ocrclass.h
* Description: Class definitions and constants for the OCR API.
* Author: Hewlett-Packard Co
*
* (C) Copyright 1996, Hewlett-Packard Co.
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
** http://www.apache.org/licenses/LICENSE-2.0
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*
**********************************************************************/
/**********************************************************************
* This file contains typedefs for all the structures used by
* the HP OCR interface.
* The code is designed to be used with either a C or C++ compiler.
* The structures are designed to allow them to be used with any
* structure alignment upto 8.
**********************************************************************/
#ifndef CCUTIL_OCRCLASS_H_
#define CCUTIL_OCRCLASS_H_
#ifndef __GNUC__
#ifdef _WIN32
#include <windows.h>
#include "gettimeofday.h"
#endif
#else
#include <sys/time.h>
#endif
#include <time.h>
#include "host.h"
/*Maximum lengths of various strings*/
#define MAX_FONT_NAME 34 /*name of font */
#define MAX_OCR_NAME 32 /*name of engine */
#define MAX_OCR_VERSION 17 /*version code of engine */
/*pitch set definitions are identical to RTF*/
#define PITCH_DEF 0 /*default */
#define PITCH_FIXED 1 /*fixed pitch */
#define PITCH_VAR 2 /*variable pitch */
/**********************************************************************
* EANYCODE_CHAR
* Description of a single character. The character code is defined by
* the character set of the current font.
* Output text is sent as an array of these structures.
* Spaces and line endings in the output are represented in the
* structures of the surrounding characters. They are not directly
* represented as characters.
* The first character in a word has a positive value of blanks.
* Missing information should be set to the defaults in the comments.
* If word bounds are known, but not character bounds, then the top and
* bottom of each character should be those of the word. The left of the
* first and right of the last char in each word should be set. All other
* lefts and rights should be set to -1.
* If set, the values of right and bottom are left+width and top+height.
* Most of the members come directly from the parameters to ocr_append_char.
* The formatting member uses the enhancement parameter and combines the
* line direction stuff into the top 3 bits.
* The coding is 0=RL char, 1=LR char, 2=DR NL, 3=UL NL, 4=DR Para,
* 5=UL Para, 6=TB char, 7=BT char. API users do not need to know what
* the coding is, only that it is backwards compatible with the previous
* version.
**********************************************************************/
typedef struct { /*single character */
// It should be noted that the format for char_code for version 2.0 and beyond
// is UTF8 which means that ASCII characters will come out as one structure but
// other characters will be returned in two or more instances of this structure
// with a single byte of the UTF8 code in each, but each will have the same
// bounding box. Programs which want to handle languagues with different
// characters sets will need to handle extended characters appropriately, but
// *all* code needs to be prepared to receive UTF8 coded characters for
// characters such as bullet and fancy quotes.
uinT16 char_code; /*character itself */
inT16 left; /*of char (-1) */
inT16 right; /*of char (-1) */
inT16 top; /*of char (-1) */
inT16 bottom; /*of char (-1) */
inT16 font_index; /*what font (0) */
uinT8 confidence; /*0=perfect, 100=reject (0/100) */
uinT8 point_size; /*of char, 72=i inch, (10) */
inT8 blanks; /*no of spaces before this char (1) */
uinT8 formatting; /*char formatting (0) */
} EANYCODE_CHAR; /*single character */
/**********************************************************************
* ETEXT_DESC
* Description of the output of the OCR engine.
* This structure is used as both a progress monitor and the final
* output header, since it needs to be a valid progress monitor while
* the OCR engine is storing its output to shared memory.
* During progress, all the buffer info is -1.
* Progress starts at 0 and increases to 100 during OCR. No other constraint.
* Every progress callback, the OCR engine must set ocr_alive to 1.
* The HP side will set ocr_alive to 0. Repeated failure to reset
* to 1 indicates that the OCR engine is dead.
* If the cancel function is not null then it is called with the number of
* user words found. If it returns true then operation is cancelled.
**********************************************************************/
typedef bool (*CANCEL_FUNC)(void* cancel_this, int words);
class ETEXT_DESC { // output header
public:
inT16 count; // chars in this buffer(0)
inT16 progress; // percent complete increasing (0-100)
inT8 more_to_come; // true if not last
volatile inT8 ocr_alive; // ocr sets to 1, HP 0
inT8 err_code; // for errcode use
CANCEL_FUNC cancel; // returns true to cancel
void* cancel_this; // this or other data for cancel
struct timeval end_time; // time to stop. expected to be set only by call
// to set_deadline_msecs()
EANYCODE_CHAR text[1]; // character data
ETEXT_DESC() : count(0), progress(0), more_to_come(0), ocr_alive(0),
err_code(0), cancel(NULL), cancel_this(NULL) {
end_time.tv_sec = 0;
end_time.tv_usec = 0;
}
// Sets the end time to be deadline_msecs milliseconds from now.
void set_deadline_msecs(inT32 deadline_msecs) {
gettimeofday(&end_time, NULL);
inT32 deadline_secs = deadline_msecs / 1000;
end_time.tv_sec += deadline_secs;
end_time.tv_usec += (deadline_msecs - deadline_secs * 1000) * 1000;
if (end_time.tv_usec > 1000000) {
end_time.tv_usec -= 1000000;
++end_time.tv_sec;
}
}
// Returns false if we've not passed the end_time, or have not set a deadline.
bool deadline_exceeded() const {
if (end_time.tv_sec == 0 && end_time.tv_usec == 0) return false;
struct timeval now;
gettimeofday(&now, NULL);
return (now.tv_sec > end_time.tv_sec || (now.tv_sec == end_time.tv_sec &&
now.tv_usec > end_time.tv_usec));
}
};
#endif // CCUTIL_OCRCLASS_H_
| 1080228-arabicocr11 | ccutil/ocrclass.h | C++ | asf20 | 7,212 |
/**********************************************************************
* File: params.h
* Description: Class definitions of the *_VAR classes for tunable constants.
* Author: Ray Smith
* Created: Fri Feb 22 11:26:25 GMT 1991
*
* (C) Copyright 1991, Hewlett-Packard Ltd.
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
** http://www.apache.org/licenses/LICENSE-2.0
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*
**********************************************************************/
#ifndef PARAMS_H
#define PARAMS_H
#include <stdio.h>
#include "genericvector.h"
#include "strngs.h"
namespace tesseract {
class IntParam;
class BoolParam;
class StringParam;
class DoubleParam;
// Enum for constraints on what kind of params should be set by SetParam().
enum SetParamConstraint {
SET_PARAM_CONSTRAINT_NONE,
SET_PARAM_CONSTRAINT_DEBUG_ONLY,
SET_PARAM_CONSTRAINT_NON_DEBUG_ONLY,
SET_PARAM_CONSTRAINT_NON_INIT_ONLY,
};
struct ParamsVectors {
GenericVector<IntParam *> int_params;
GenericVector<BoolParam *> bool_params;
GenericVector<StringParam *> string_params;
GenericVector<DoubleParam *> double_params;
};
// Utility functions for working with Tesseract parameters.
class ParamUtils {
public:
// Reads a file of parameter definitions and set/modify the values therein.
// If the filename begins with a + or -, the BoolVariables will be
// ORed or ANDed with any current values.
// Blank lines and lines beginning # are ignored.
// Values may have any whitespace after the name and are the rest of line.
static bool ReadParamsFile(
const char *file, // filename to read
SetParamConstraint constraint,
ParamsVectors *member_params);
// Read parameters from the given file pointer (stop at end_offset).
static bool ReadParamsFromFp(FILE *fp, inT64 end_offset,
SetParamConstraint constraint,
ParamsVectors *member_params);
// Set a parameters to have the given value.
static bool SetParam(const char *name, const char* value,
SetParamConstraint constraint,
ParamsVectors *member_params);
// Returns the pointer to the parameter with the given name (of the
// appropriate type) if it was found in the vector obtained from
// GlobalParams() or in the given member_params.
template<class T>
static T *FindParam(const char *name,
const GenericVector<T *> &global_vec,
const GenericVector<T *> &member_vec) {
int i;
for (i = 0; i < global_vec.size(); ++i) {
if (strcmp(global_vec[i]->name_str(), name) == 0) return global_vec[i];
}
for (i = 0; i < member_vec.size(); ++i) {
if (strcmp(member_vec[i]->name_str(), name) == 0) return member_vec[i];
}
return NULL;
}
// Removes the given pointer to the param from the given vector.
template<class T>
static void RemoveParam(T *param_ptr, GenericVector<T *> *vec) {
for (int i = 0; i < vec->size(); ++i) {
if ((*vec)[i] == param_ptr) {
vec->remove(i);
return;
}
}
}
// Fetches the value of the named param as a STRING. Returns false if not
// found.
static bool GetParamAsString(const char *name,
const ParamsVectors* member_params,
STRING *value);
// Print parameters to the given file.
static void PrintParams(FILE *fp, const ParamsVectors *member_params);
// Resets all parameters back to default values;
static void ResetToDefaults(ParamsVectors* member_params);
};
// Definition of various parameter types.
class Param {
public:
~Param() {}
const char *name_str() const { return name_; }
const char *info_str() const { return info_; }
bool is_init() const { return init_; }
bool is_debug() const { return debug_; }
bool constraint_ok(SetParamConstraint constraint) const {
return (constraint == SET_PARAM_CONSTRAINT_NONE ||
(constraint == SET_PARAM_CONSTRAINT_DEBUG_ONLY &&
this->is_debug()) ||
(constraint == SET_PARAM_CONSTRAINT_NON_DEBUG_ONLY &&
!this->is_debug()) ||
(constraint == SET_PARAM_CONSTRAINT_NON_INIT_ONLY &&
!this->is_init()));
}
protected:
Param(const char *name, const char *comment, bool init) :
name_(name), info_(comment), init_(init) {
debug_ = (strstr(name, "debug") != NULL) || (strstr(name, "display"));
}
const char *name_; // name of this parameter
const char *info_; // for menus
bool init_; // needs to be set before init
bool debug_;
};
class IntParam : public Param {
public:
IntParam(inT32 value, const char *name, const char *comment, bool init,
ParamsVectors *vec) : Param(name, comment, init) {
value_ = value;
default_ = value;
params_vec_ = &(vec->int_params);
vec->int_params.push_back(this);
}
~IntParam() { ParamUtils::RemoveParam<IntParam>(this, params_vec_); }
operator inT32() const { return value_; }
void operator=(inT32 value) { value_ = value; }
void set_value(inT32 value) { value_ = value; }
void ResetToDefault() {
value_ = default_;
}
private:
inT32 value_;
inT32 default_;
// Pointer to the vector that contains this param (not owened by this class).
GenericVector<IntParam *> *params_vec_;
};
class BoolParam : public Param {
public:
BoolParam(bool value, const char *name, const char *comment, bool init,
ParamsVectors *vec) : Param(name, comment, init) {
value_ = value;
default_ = value;
params_vec_ = &(vec->bool_params);
vec->bool_params.push_back(this);
}
~BoolParam() { ParamUtils::RemoveParam<BoolParam>(this, params_vec_); }
operator BOOL8() const { return value_; }
void operator=(BOOL8 value) { value_ = value; }
void set_value(BOOL8 value) { value_ = value; }
void ResetToDefault() {
value_ = default_;
}
private:
BOOL8 value_;
BOOL8 default_;
// Pointer to the vector that contains this param (not owned by this class).
GenericVector<BoolParam *> *params_vec_;
};
class StringParam : public Param {
public:
StringParam(const char *value, const char *name,
const char *comment, bool init,
ParamsVectors *vec) : Param(name, comment, init) {
value_ = value;
default_ = value;
params_vec_ = &(vec->string_params);
vec->string_params.push_back(this);
}
~StringParam() { ParamUtils::RemoveParam<StringParam>(this, params_vec_); }
operator STRING &() { return value_; }
const char *string() const { return value_.string(); }
const char *c_str() const { return value_.string(); }
bool empty() { return value_.length() <= 0; }
bool operator==(const STRING& other) { return value_ == other; }
void operator=(const STRING& value) { value_ = value; }
void set_value(const STRING& value) { value_ = value; }
void ResetToDefault() {
value_ = default_;
}
private:
STRING value_;
STRING default_;
// Pointer to the vector that contains this param (not owened by this class).
GenericVector<StringParam *> *params_vec_;
};
class DoubleParam : public Param {
public:
DoubleParam(double value, const char *name, const char *comment,
bool init, ParamsVectors *vec) : Param(name, comment, init) {
value_ = value;
default_ = value;
params_vec_ = &(vec->double_params);
vec->double_params.push_back(this);
}
~DoubleParam() { ParamUtils::RemoveParam<DoubleParam>(this, params_vec_); }
operator double() const { return value_; }
void operator=(double value) { value_ = value; }
void set_value(double value) { value_ = value; }
void ResetToDefault() {
value_ = default_;
}
private:
double value_;
double default_;
// Pointer to the vector that contains this param (not owned by this class).
GenericVector<DoubleParam *> *params_vec_;
};
} // namespace tesseract
// Global parameter lists.
//
// To avoid the problem of undetermined order of static initialization
// global_params are accessed through the GlobalParams function that
// initializes the static pointer to global_params only on the first
// first time GlobalParams() is called.
//
// TODO(daria): remove GlobalParams() when all global Tesseract
// parameters are converted to members.
tesseract::ParamsVectors *GlobalParams();
/*************************************************************************
* Note on defining parameters.
*
* The values of the parameters defined with *_INIT_* macros are guaranteed
* to be loaded from config files before Tesseract initialization is done
* (there is no such guarantee for parameters defined with the other macros).
*************************************************************************/
#define INT_VAR_H(name,val,comment)\
tesseract::IntParam name
#define BOOL_VAR_H(name,val,comment)\
tesseract::BoolParam name
#define STRING_VAR_H(name,val,comment)\
tesseract::StringParam name
#define double_VAR_H(name,val,comment)\
tesseract::DoubleParam name
#define INT_VAR(name,val,comment)\
tesseract::IntParam name(val,#name,comment,false,GlobalParams())
#define BOOL_VAR(name,val,comment)\
tesseract::BoolParam name(val,#name,comment,false,GlobalParams())
#define STRING_VAR(name,val,comment)\
tesseract::StringParam name(val,#name,comment,false,GlobalParams())
#define double_VAR(name,val,comment)\
tesseract::DoubleParam name(val,#name,comment,false,GlobalParams())
#define INT_INIT_VAR(name,val,comment)\
tesseract::IntParam name(val,#name,comment,true,GlobalParams())
#define BOOL_INIT_VAR(name,val,comment)\
tesseract::BoolParam name(val,#name,comment,true,GlobalParams())
#define STRING_INIT_VAR(name,val,comment)\
tesseract::StringParam name(val,#name,comment,true,GlobalParams())
#define double_INIT_VAR(name,val,comment)\
tesseract::DoubleParam name(val,#name,comment,true,GlobalParams())
#define INT_MEMBER(name, val, comment, vec)\
name(val, #name, comment, false, vec)
#define BOOL_MEMBER(name, val, comment, vec)\
name(val, #name, comment, false, vec)
#define STRING_MEMBER(name, val, comment, vec)\
name(val, #name, comment, false, vec)
#define double_MEMBER(name, val, comment, vec)\
name(val, #name, comment, false, vec)
#define INT_INIT_MEMBER(name, val, comment, vec)\
name(val, #name, comment, true, vec)
#define BOOL_INIT_MEMBER(name, val, comment, vec)\
name(val, #name, comment, true, vec)
#define STRING_INIT_MEMBER(name, val, comment, vec)\
name(val, #name, comment, true, vec)
#define double_INIT_MEMBER(name, val, comment, vec)\
name(val, #name, comment, true, vec)
#endif
| 1080228-arabicocr11 | ccutil/params.h | C++ | asf20 | 11,193 |
/**********************************************************************
* File: unicodes.h
* Description: Unicode related machinery
* Author: David Eger
* Created: Wed Jun 15 16:37:50 PST 2011
*
* (C) Copyright 2011, Google, Inc.
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
** http://www.apache.org/licenses/LICENSE-2.0
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*
**********************************************************************/
#include "unicodes.h"
#include "host.h" // for NULL
namespace tesseract {
const char *kUTF8LineSeparator = "\u2028"; // "\xe2\x80\xa8";
const char *kUTF8ParagraphSeparator = "\u2029"; // "\xe2\x80\xa9";
const char *kLRM = "\u200E"; // Left-to-Right Mark
const char *kRLM = "\u200F"; // Right-to-Left Mark
const char *kRLE = "\u202A"; // Right-to-Left Embedding
const char *kPDF = "\u202C"; // Pop Directional Formatting
const char *kHyphenLikeUTF8[] = {
"-", // ASCII hyphen-minus
"\u05BE", // word hyphen in hybrew
"\u2010", // hyphen
"\u2011", // non-breaking hyphen
"\u2012", // a hyphen the same width as digits
"\u2013", // en dash
"\u2014", // em dash
"\u2015", // horizontal bar
"\u2212", // arithmetic minus sign
"\uFE58", // small em dash
"\uFE63", // small hyphen-minus
"\uFF0D", // fullwidth hyphen-minus
NULL, // end of our list
};
const char *kApostropheLikeUTF8[] = {
"'", // ASCII apostrophe
"`", // ASCII backtick
"\u2018", // opening single quote
"\u2019", // closing single quote
"\u2032", // mathematical prime mark
NULL, // end of our list.
};
} // namespace
| 1080228-arabicocr11 | ccutil/unicodes.cpp | C++ | asf20 | 2,055 |
// Copyright 2012 Google Inc. All Rights Reserved.
// Author: rays@google.com (Ray Smith)
///////////////////////////////////////////////////////////////////////
// File: doubleptr.h
// Description: Double-ended pointer that keeps pointing correctly even
// when reallocated or copied.
// Author: Ray Smith
// Created: Wed Mar 14 12:22:57 PDT 2012
//
// (C) Copyright 2012, Google Inc.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
///////////////////////////////////////////////////////////////////////
#ifndef TESSERACT_CCUTIL_DOUBLEPTR_H_
#define TESSERACT_CCUTIL_DOUBLEPTR_H_
#include "errcode.h"
namespace tesseract {
// A smart pointer class that implements a double-ended pointer. Each end
// points to the other end. The copy constructor and operator= have MOVE
// semantics, meaning that the relationship with the other end moves to the
// destination of the copy, leaving the source unattached.
// For this reason both the copy constructor and the operator= take a non-const
// reference argument, and the const reference versions cannot be used.
// DoublePtr is useful to incorporate into structures that are part of a
// collection such as GenericVector or STL containers, where reallocs can
// relocate the members. DoublePtr is also useful in a GenericHeap, where it
// can correctly maintain the pointer to an element of the heap despite it
// getting moved around on the heap.
class DoublePtr {
public:
DoublePtr() : other_end_(NULL) {}
// Copy constructor steals the partner off src and is therefore a non
// const reference arg.
// Copying a const DoublePtr generates a compiler error.
DoublePtr(DoublePtr& src) {
other_end_ = src.other_end_;
if (other_end_ != NULL) {
other_end_->other_end_ = this;
src.other_end_ = NULL;
}
}
// Operator= steals the partner off src, and therefore needs src to be a non-
// const reference.
// Assigning from a const DoublePtr generates a compiler error.
void operator=(DoublePtr& src) {
Disconnect();
other_end_ = src.other_end_;
if (other_end_ != NULL) {
other_end_->other_end_ = this;
src.other_end_ = NULL;
}
}
// Connects this and other, discarding any existing connections.
void Connect(DoublePtr* other) {
other->Disconnect();
Disconnect();
other->other_end_ = this;
other_end_ = other;
}
// Disconnects this and other, making OtherEnd() return NULL for both.
void Disconnect() {
if (other_end_ != NULL) {
other_end_->other_end_ = NULL;
other_end_ = NULL;
}
}
// Returns the pointer to the other end of the double pointer.
DoublePtr* OtherEnd() const {
return other_end_;
}
private:
// Pointer to the other end of the link. It is always true that either
// other_end_ == NULL or other_end_->other_end_ == this.
DoublePtr* other_end_;
};
} // namespace tesseract.
#endif // THIRD_PARTY_TESSERACT_CCUTIL_DOUBLEPTR_H_
| 1080228-arabicocr11 | ccutil/doubleptr.h | C++ | asf20 | 3,455 |
///////////////////////////////////////////////////////////////////////
// File: tesscallback.h
// Description: classes and functions to replace pointer-to-functions
// Author: Samuel Charron
//
// (C) Copyright 2006, Google Inc.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
///////////////////////////////////////////////////////////////////////
#ifndef _TESS_CALLBACK_SPECIALIZATIONS_H
#define _TESS_CALLBACK_SPECIALIZATIONS_H
#include "host.h" // For NULL.
struct TessCallbackUtils_ {
static void FailIsRepeatable(const char* name);
};
class TessClosure {
public:
virtual ~TessClosure() { }
virtual void Run() = 0;
};
template <class R>
class TessResultCallback {
public:
virtual ~TessResultCallback() { }
virtual R Run() = 0;
};
template <bool del, class R, class T>
class _ConstTessMemberResultCallback_0_0 : public TessResultCallback<R> {
public:
typedef TessResultCallback<R> base;
typedef R (T::*MemberSignature)() const;
private:
const T* object_;
MemberSignature member_;
public:
inline _ConstTessMemberResultCallback_0_0(
const T* object, MemberSignature member)
: object_(object),
member_(member) {
}
virtual R Run() {
if (!del) {
R result = (object_->*member_)();
return result;
} else {
R result = (object_->*member_)();
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T>
class _ConstTessMemberResultCallback_0_0<del, void, T>
: public TessClosure {
public:
typedef TessClosure base;
typedef void (T::*MemberSignature)() const;
private:
const T* object_;
MemberSignature member_;
public:
inline _ConstTessMemberResultCallback_0_0(
const T* object, MemberSignature member)
: object_(object),
member_(member) {
}
virtual void Run() {
if (!del) {
(object_->*member_)();
} else {
(object_->*member_)();
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R>
inline typename _ConstTessMemberResultCallback_0_0<true,R,T1>::base*
NewTessCallback(
const T1* obj, R (T2::*member)() const) {
return new _ConstTessMemberResultCallback_0_0<true,R,T1>(
obj, member);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R>
inline typename _ConstTessMemberResultCallback_0_0<false,R,T1>::base*
NewPermanentTessCallback(
const T1* obj, R (T2::*member)() const) {
return new _ConstTessMemberResultCallback_0_0<false,R,T1>(
obj, member);
}
#endif
template <bool del, class R, class T>
class _TessMemberResultCallback_0_0 : public TessResultCallback<R> {
public:
typedef TessResultCallback<R> base;
typedef R (T::*MemberSignature)() ;
private:
T* object_;
MemberSignature member_;
public:
inline _TessMemberResultCallback_0_0(
T* object, MemberSignature member)
: object_(object),
member_(member) {
}
virtual R Run() {
if (!del) {
R result = (object_->*member_)();
return result;
} else {
R result = (object_->*member_)();
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T>
class _TessMemberResultCallback_0_0<del, void, T>
: public TessClosure {
public:
typedef TessClosure base;
typedef void (T::*MemberSignature)() ;
private:
T* object_;
MemberSignature member_;
public:
inline _TessMemberResultCallback_0_0(
T* object, MemberSignature member)
: object_(object),
member_(member) {
}
virtual void Run() {
if (!del) {
(object_->*member_)();
} else {
(object_->*member_)();
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R>
inline typename _TessMemberResultCallback_0_0<true,R,T1>::base*
NewTessCallback(
T1* obj, R (T2::*member)() ) {
return new _TessMemberResultCallback_0_0<true,R,T1>(
obj, member);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R>
inline typename _TessMemberResultCallback_0_0<false,R,T1>::base*
NewPermanentTessCallback(
T1* obj, R (T2::*member)() ) {
return new _TessMemberResultCallback_0_0<false,R,T1>(
obj, member);
}
#endif
template <bool del, class R>
class _TessFunctionResultCallback_0_0 : public TessResultCallback<R> {
public:
typedef TessResultCallback<R> base;
typedef R (*FunctionSignature)();
private:
FunctionSignature function_;
public:
inline _TessFunctionResultCallback_0_0(
FunctionSignature function)
: function_(function) {
}
virtual R Run() {
if (!del) {
R result = (*function_)();
return result;
} else {
R result = (*function_)();
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
return result;
}
}
};
template <bool del>
class _TessFunctionResultCallback_0_0<del, void>
: public TessClosure {
public:
typedef TessClosure base;
typedef void (*FunctionSignature)();
private:
FunctionSignature function_;
public:
inline _TessFunctionResultCallback_0_0(
FunctionSignature function)
: function_(function) {
}
virtual void Run() {
if (!del) {
(*function_)();
} else {
(*function_)();
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
}
}
};
template <class R>
inline typename _TessFunctionResultCallback_0_0<true,R>::base*
NewTessCallback(R (*function)()) {
return new _TessFunctionResultCallback_0_0<true,R>(function);
}
template <class R>
inline typename _TessFunctionResultCallback_0_0<false,R>::base*
NewPermanentTessCallback(R (*function)()) {
return new _TessFunctionResultCallback_0_0<false,R>(function);
}
// Specified by TR1 [4.7.2] Reference modifications.
template <class T> struct remove_reference;
template<typename T> struct remove_reference { typedef T type; };
template<typename T> struct remove_reference<T&> { typedef T type; };
// Identity<T>::type is a typedef of T. Useful for preventing the
// compiler from inferring the type of an argument in templates.
template <typename T>
struct Identity {
typedef T type;
};
template <bool del, class R, class T, class P1>
class _ConstTessMemberResultCallback_1_0 : public TessResultCallback<R> {
public:
typedef TessResultCallback<R> base;
typedef R (T::*MemberSignature)(P1) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
public:
inline _ConstTessMemberResultCallback_1_0(const T* object, MemberSignature member, P1 p1)
: object_(object),
member_(member), p1_(p1) { }
virtual R Run() {
if (!del) {
R result = (object_->*member_)(p1_);
return result;
} else {
R result = (object_->*member_)(p1_);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1>
class _ConstTessMemberResultCallback_1_0<del, void, T, P1> : public TessClosure {
public:
typedef TessClosure base;
typedef void (T::*MemberSignature)(P1) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
public:
inline _ConstTessMemberResultCallback_1_0(const T* object, MemberSignature member, P1 p1)
: object_(object),
member_(member), p1_(p1) { }
virtual void Run() {
if (!del) {
(object_->*member_)(p1_);
} else {
(object_->*member_)(p1_);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1>
inline typename _ConstTessMemberResultCallback_1_0<true,R,T1,P1>::base*
NewTessCallback(const T1* obj, R (T2::*member)(P1) const, typename Identity<P1>::type p1) {
return new _ConstTessMemberResultCallback_1_0<true,R,T1,P1>(obj, member, p1);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1>
inline typename _ConstTessMemberResultCallback_1_0<false,R,T1,P1>::base*
NewPermanentTessCallback(const T1* obj, R (T2::*member)(P1) const, typename Identity<P1>::type p1) {
return new _ConstTessMemberResultCallback_1_0<false,R,T1,P1>(obj, member, p1);
}
#endif
template <bool del, class R, class T, class P1>
class _TessMemberResultCallback_1_0 : public TessResultCallback<R> {
public:
typedef TessResultCallback<R> base;
typedef R (T::*MemberSignature)(P1) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
public:
inline _TessMemberResultCallback_1_0( T* object, MemberSignature member, P1 p1)
: object_(object),
member_(member), p1_(p1) { }
virtual R Run() {
if (!del) {
R result = (object_->*member_)(p1_);
return result;
} else {
R result = (object_->*member_)(p1_);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1>
class _TessMemberResultCallback_1_0<del, void, T, P1> : public TessClosure {
public:
typedef TessClosure base;
typedef void (T::*MemberSignature)(P1) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
public:
inline _TessMemberResultCallback_1_0( T* object, MemberSignature member, P1 p1)
: object_(object),
member_(member), p1_(p1) { }
virtual void Run() {
if (!del) {
(object_->*member_)(p1_);
} else {
(object_->*member_)(p1_);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1>
inline typename _TessMemberResultCallback_1_0<true,R,T1,P1>::base*
NewTessCallback( T1* obj, R (T2::*member)(P1) , typename Identity<P1>::type p1) {
return new _TessMemberResultCallback_1_0<true,R,T1,P1>(obj, member, p1);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1>
inline typename _TessMemberResultCallback_1_0<false,R,T1,P1>::base*
NewPermanentTessCallback( T1* obj, R (T2::*member)(P1) , typename Identity<P1>::type p1) {
return new _TessMemberResultCallback_1_0<false,R,T1,P1>(obj, member, p1);
}
#endif
template <bool del, class R, class P1>
class _TessFunctionResultCallback_1_0 : public TessResultCallback<R> {
public:
typedef TessResultCallback<R> base;
typedef R (*FunctionSignature)(P1);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
public:
inline _TessFunctionResultCallback_1_0(FunctionSignature function, P1 p1)
: function_(function), p1_(p1) { }
virtual R Run() {
if (!del) {
R result = (*function_)(p1_);
return result;
} else {
R result = (*function_)(p1_);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class P1>
class _TessFunctionResultCallback_1_0<del, void, P1> : public TessClosure {
public:
typedef TessClosure base;
typedef void (*FunctionSignature)(P1);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
public:
inline _TessFunctionResultCallback_1_0(FunctionSignature function, P1 p1)
: function_(function), p1_(p1) { }
virtual void Run() {
if (!del) {
(*function_)(p1_);
} else {
(*function_)(p1_);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
}
}
};
template <class R, class P1>
inline typename _TessFunctionResultCallback_1_0<true,R,P1>::base*
NewTessCallback(R (*function)(P1), typename Identity<P1>::type p1) {
return new _TessFunctionResultCallback_1_0<true,R,P1>(function, p1);
}
template <class R, class P1>
inline typename _TessFunctionResultCallback_1_0<false,R,P1>::base*
NewPermanentTessCallback(R (*function)(P1), typename Identity<P1>::type p1) {
return new _TessFunctionResultCallback_1_0<false,R,P1>(function, p1);
}
template <bool del, class R, class T, class P1, class P2>
class _ConstTessMemberResultCallback_2_0 : public TessResultCallback<R> {
public:
typedef TessResultCallback<R> base;
typedef R (T::*MemberSignature)(P1,P2) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
public:
inline _ConstTessMemberResultCallback_2_0(const T* object, MemberSignature member, P1 p1, P2 p2)
: object_(object),
member_(member), p1_(p1), p2_(p2) { }
virtual R Run() {
if (!del) {
R result = (object_->*member_)(p1_,p2_);
return result;
} else {
R result = (object_->*member_)(p1_,p2_);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class P2>
class _ConstTessMemberResultCallback_2_0<del, void, T, P1, P2> : public TessClosure {
public:
typedef TessClosure base;
typedef void (T::*MemberSignature)(P1,P2) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
public:
inline _ConstTessMemberResultCallback_2_0(const T* object, MemberSignature member, P1 p1, P2 p2)
:
object_(object),
member_(member), p1_(p1), p2_(p2) { }
virtual void Run() {
if (!del) {
(object_->*member_)(p1_,p2_);
} else {
(object_->*member_)(p1_,p2_);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2>
inline typename _ConstTessMemberResultCallback_2_0<true,R,T1,P1,P2>::base*
NewTessCallback(const T1* obj, R (T2::*member)(P1,P2) const, typename Identity<P1>::type p1, typename Identity<P2>::type p2) {
return new _ConstTessMemberResultCallback_2_0<true,R,T1,P1,P2>(obj, member, p1, p2);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2>
inline typename _ConstTessMemberResultCallback_2_0<false,R,T1,P1,P2>::base*
NewPermanentTessCallback(const T1* obj, R (T2::*member)(P1,P2) const, typename Identity<P1>::type p1, typename Identity<P2>::type p2) {
return new _ConstTessMemberResultCallback_2_0<false,R,T1,P1,P2>(obj, member, p1, p2);
}
#endif
template <bool del, class R, class T, class P1, class P2>
class _TessMemberResultCallback_2_0 : public TessResultCallback<R> {
public:
typedef TessResultCallback<R> base;
typedef R (T::*MemberSignature)(P1,P2) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
public:
inline _TessMemberResultCallback_2_0( T* object, MemberSignature member, P1 p1, P2 p2)
: object_(object),
member_(member), p1_(p1), p2_(p2) { }
virtual R Run() {
if (!del) {
R result = (object_->*member_)(p1_,p2_);
return result;
} else {
R result = (object_->*member_)(p1_,p2_);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class P2>
class _TessMemberResultCallback_2_0<del, void, T, P1, P2> : public TessClosure {
public:
typedef TessClosure base;
typedef void (T::*MemberSignature)(P1,P2) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
public:
inline _TessMemberResultCallback_2_0( T* object, MemberSignature member, P1 p1, P2 p2)
:
object_(object),
member_(member), p1_(p1), p2_(p2) { }
virtual void Run() {
if (!del) {
(object_->*member_)(p1_,p2_);
} else {
(object_->*member_)(p1_,p2_);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2>
inline typename _TessMemberResultCallback_2_0<true,R,T1,P1,P2>::base*
NewTessCallback( T1* obj, R (T2::*member)(P1,P2) , typename Identity<P1>::type p1, typename Identity<P2>::type p2) {
return new _TessMemberResultCallback_2_0<true,R,T1,P1,P2>(obj, member, p1, p2);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2>
inline typename _TessMemberResultCallback_2_0<false,R,T1,P1,P2>::base*
NewPermanentTessCallback( T1* obj, R (T2::*member)(P1,P2) , typename Identity<P1>::type p1, typename Identity<P2>::type p2) {
return new _TessMemberResultCallback_2_0<false,R,T1,P1,P2>(obj, member, p1, p2);
}
#endif
template <bool del, class R, class P1, class P2>
class _TessFunctionResultCallback_2_0 : public TessResultCallback<R> {
public:
typedef TessResultCallback<R> base;
typedef R (*FunctionSignature)(P1,P2);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
public:
inline _TessFunctionResultCallback_2_0(FunctionSignature function, P1 p1, P2 p2)
: function_(function), p1_(p1), p2_(p2) { }
virtual R Run() {
if (!del) {
R result = (*function_)(p1_,p2_);
return result;
} else {
R result = (*function_)(p1_,p2_);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class P1, class P2>
class _TessFunctionResultCallback_2_0<del, void, P1, P2> : public TessClosure {
public:
typedef TessClosure base;
typedef void (*FunctionSignature)(P1,P2);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
public:
inline _TessFunctionResultCallback_2_0(FunctionSignature function, P1 p1, P2 p2)
:
function_(function), p1_(p1), p2_(p2) { }
virtual void Run() {
if (!del) {
(*function_)(p1_,p2_);
} else {
(*function_)(p1_,p2_);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
}
}
};
template <class R, class P1, class P2>
inline typename _TessFunctionResultCallback_2_0<true,R,P1,P2>::base*
NewTessCallback(R (*function)(P1,P2), typename Identity<P1>::type p1, typename Identity<P2>::type p2) {
return new _TessFunctionResultCallback_2_0<true,R,P1,P2>(function, p1, p2);
}
template <class R, class P1, class P2>
inline typename _TessFunctionResultCallback_2_0<false,R,P1,P2>::base*
NewPermanentTessCallback(R (*function)(P1,P2), typename Identity<P1>::type p1, typename Identity<P2>::type p2) {
return new _TessFunctionResultCallback_2_0<false,R,P1,P2>(function, p1, p2);
}
template <bool del, class R, class T, class P1, class P2, class P3>
class _ConstTessMemberResultCallback_3_0 : public TessResultCallback<R> {
public:
typedef TessResultCallback<R> base;
typedef R (T::*MemberSignature)(P1,P2,P3) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
public:
inline _ConstTessMemberResultCallback_3_0(const T* object, MemberSignature member, P1 p1, P2 p2, P3 p3)
:
object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3) { }
virtual R Run() {
if (!del) {
R result = (object_->*member_)(p1_,p2_,p3_);
return result;
} else {
R result = (object_->*member_)(p1_,p2_,p3_);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class P2, class P3>
class _ConstTessMemberResultCallback_3_0<del, void, T, P1, P2, P3> : public TessClosure {
public:
typedef TessClosure base;
typedef void (T::*MemberSignature)(P1,P2,P3) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
public:
inline _ConstTessMemberResultCallback_3_0(const T* object, MemberSignature member, P1 p1, P2 p2, P3 p3)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3) { }
virtual void Run() {
if (!del) {
(object_->*member_)(p1_,p2_,p3_);
} else {
(object_->*member_)(p1_,p2_,p3_);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3>
inline typename _ConstTessMemberResultCallback_3_0<true,R,T1,P1,P2,P3>::base*
NewTessCallback(const T1* obj, R (T2::*member)(P1,P2,P3) const, typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3) {
return new _ConstTessMemberResultCallback_3_0<true,R,T1,P1,P2,P3>(obj, member, p1, p2, p3);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3>
inline typename _ConstTessMemberResultCallback_3_0<false,R,T1,P1,P2,P3>::base*
NewPermanentTessCallback(const T1* obj, R (T2::*member)(P1,P2,P3) const, typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3) {
return new _ConstTessMemberResultCallback_3_0<false,R,T1,P1,P2,P3>(obj, member, p1, p2, p3);
}
#endif
template <bool del, class R, class T, class P1, class P2, class P3>
class _TessMemberResultCallback_3_0 : public TessResultCallback<R> {
public:
typedef TessResultCallback<R> base;
typedef R (T::*MemberSignature)(P1,P2,P3) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
public:
inline _TessMemberResultCallback_3_0( T* object, MemberSignature member, P1 p1, P2 p2, P3 p3)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3) { }
virtual R Run() {
if (!del) {
R result = (object_->*member_)(p1_,p2_,p3_);
return result;
} else {
R result = (object_->*member_)(p1_,p2_,p3_);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class P2, class P3>
class _TessMemberResultCallback_3_0<del, void, T, P1, P2, P3> : public TessClosure {
public:
typedef TessClosure base;
typedef void (T::*MemberSignature)(P1,P2,P3) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
public:
inline _TessMemberResultCallback_3_0( T* object, MemberSignature member, P1 p1, P2 p2, P3 p3)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3) { }
virtual void Run() {
if (!del) {
(object_->*member_)(p1_,p2_,p3_);
} else {
(object_->*member_)(p1_,p2_,p3_);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3>
inline typename _TessMemberResultCallback_3_0<true,R,T1,P1,P2,P3>::base*
NewTessCallback( T1* obj, R (T2::*member)(P1,P2,P3) , typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3) {
return new _TessMemberResultCallback_3_0<true,R,T1,P1,P2,P3>(obj, member, p1, p2, p3);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3>
inline typename _TessMemberResultCallback_3_0<false,R,T1,P1,P2,P3>::base*
NewPermanentTessCallback( T1* obj, R (T2::*member)(P1,P2,P3) , typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3) {
return new _TessMemberResultCallback_3_0<false,R,T1,P1,P2,P3>(obj, member, p1, p2, p3);
}
#endif
template <bool del, class R, class P1, class P2, class P3>
class _TessFunctionResultCallback_3_0 : public TessResultCallback<R> {
public:
typedef TessResultCallback<R> base;
typedef R (*FunctionSignature)(P1,P2,P3);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
public:
inline _TessFunctionResultCallback_3_0(FunctionSignature function, P1 p1, P2 p2, P3 p3)
: function_(function), p1_(p1), p2_(p2), p3_(p3) { }
virtual R Run() {
if (!del) {
R result = (*function_)(p1_,p2_,p3_);
return result;
} else {
R result = (*function_)(p1_,p2_,p3_);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class P1, class P2, class P3>
class _TessFunctionResultCallback_3_0<del, void, P1, P2, P3> : public TessClosure {
public:
typedef TessClosure base;
typedef void (*FunctionSignature)(P1,P2,P3);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
public:
inline _TessFunctionResultCallback_3_0(FunctionSignature function, P1 p1, P2 p2, P3 p3)
: function_(function), p1_(p1), p2_(p2), p3_(p3) { }
virtual void Run() {
if (!del) {
(*function_)(p1_,p2_,p3_);
} else {
(*function_)(p1_,p2_,p3_);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
}
}
};
template <class R, class P1, class P2, class P3>
inline typename _TessFunctionResultCallback_3_0<true,R,P1,P2,P3>::base*
NewTessCallback(R (*function)(P1,P2,P3), typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3) {
return new _TessFunctionResultCallback_3_0<true,R,P1,P2,P3>(function, p1, p2, p3);
}
template <class R, class P1, class P2, class P3>
inline typename _TessFunctionResultCallback_3_0<false,R,P1,P2,P3>::base*
NewPermanentTessCallback(R (*function)(P1,P2,P3), typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3) {
return new _TessFunctionResultCallback_3_0<false,R,P1,P2,P3>(function, p1, p2, p3);
}
template <bool del, class R, class T, class P1, class P2, class P3, class P4>
class _ConstTessMemberResultCallback_4_0 : public TessResultCallback<R> {
public:
typedef TessResultCallback<R> base;
typedef R (T::*MemberSignature)(P1,P2,P3,P4) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
public:
inline _ConstTessMemberResultCallback_4_0(const T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4) { }
virtual R Run() {
if (!del) {
R result = (object_->*member_)(p1_,p2_,p3_,p4_);
return result;
} else {
R result = (object_->*member_)(p1_,p2_,p3_,p4_);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class P2, class P3, class P4>
class _ConstTessMemberResultCallback_4_0<del, void, T, P1, P2, P3, P4> : public TessClosure {
public:
typedef TessClosure base;
typedef void (T::*MemberSignature)(P1,P2,P3,P4) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
public:
inline _ConstTessMemberResultCallback_4_0(const T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4) { }
virtual void Run() {
if (!del) {
(object_->*member_)(p1_,p2_,p3_,p4_);
} else {
(object_->*member_)(p1_,p2_,p3_,p4_);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4>
inline typename _ConstTessMemberResultCallback_4_0<true,R,T1,P1,P2,P3,P4>::base*
NewTessCallback(const T1* obj, R (T2::*member)(P1,P2,P3,P4) const, typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4) {
return new _ConstTessMemberResultCallback_4_0<true,R,T1,P1,P2,P3,P4>(obj, member, p1, p2, p3, p4);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4>
inline typename _ConstTessMemberResultCallback_4_0<false,R,T1,P1,P2,P3,P4>::base*
NewPermanentTessCallback(const T1* obj, R (T2::*member)(P1,P2,P3,P4) const, typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4) {
return new _ConstTessMemberResultCallback_4_0<false,R,T1,P1,P2,P3,P4>(obj, member, p1, p2, p3, p4);
}
#endif
template <bool del, class R, class T, class P1, class P2, class P3, class P4>
class _TessMemberResultCallback_4_0 : public TessResultCallback<R> {
public:
typedef TessResultCallback<R> base;
typedef R (T::*MemberSignature)(P1,P2,P3,P4) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
public:
inline _TessMemberResultCallback_4_0( T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4) { }
virtual R Run() {
if (!del) {
R result = (object_->*member_)(p1_,p2_,p3_,p4_);
return result;
} else {
R result = (object_->*member_)(p1_,p2_,p3_,p4_);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class P2, class P3, class P4>
class _TessMemberResultCallback_4_0<del, void, T, P1, P2, P3, P4> : public TessClosure {
public:
typedef TessClosure base;
typedef void (T::*MemberSignature)(P1,P2,P3,P4) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
public:
inline _TessMemberResultCallback_4_0( T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4) { }
virtual void Run() {
if (!del) {
(object_->*member_)(p1_,p2_,p3_,p4_);
} else {
(object_->*member_)(p1_,p2_,p3_,p4_);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4>
inline typename _TessMemberResultCallback_4_0<true,R,T1,P1,P2,P3,P4>::base*
NewTessCallback( T1* obj, R (T2::*member)(P1,P2,P3,P4) , typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4) {
return new _TessMemberResultCallback_4_0<true,R,T1,P1,P2,P3,P4>(obj, member, p1, p2, p3, p4);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4>
inline typename _TessMemberResultCallback_4_0<false,R,T1,P1,P2,P3,P4>::base*
NewPermanentTessCallback( T1* obj, R (T2::*member)(P1,P2,P3,P4) , typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4) {
return new _TessMemberResultCallback_4_0<false,R,T1,P1,P2,P3,P4>(obj, member, p1, p2, p3, p4);
}
#endif
template <bool del, class R, class P1, class P2, class P3, class P4>
class _TessFunctionResultCallback_4_0 : public TessResultCallback<R> {
public:
typedef TessResultCallback<R> base;
typedef R (*FunctionSignature)(P1,P2,P3,P4);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
public:
inline _TessFunctionResultCallback_4_0(FunctionSignature function, P1 p1, P2 p2, P3 p3, P4 p4)
: function_(function), p1_(p1), p2_(p2), p3_(p3), p4_(p4) { }
virtual R Run() {
if (!del) {
R result = (*function_)(p1_,p2_,p3_,p4_);
return result;
} else {
R result = (*function_)(p1_,p2_,p3_,p4_);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class P1, class P2, class P3, class P4>
class _TessFunctionResultCallback_4_0<del, void, P1, P2, P3, P4> : public TessClosure {
public:
typedef TessClosure base;
typedef void (*FunctionSignature)(P1,P2,P3,P4);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
public:
inline _TessFunctionResultCallback_4_0(FunctionSignature function, P1 p1, P2 p2, P3 p3, P4 p4)
: function_(function), p1_(p1), p2_(p2), p3_(p3), p4_(p4) { }
virtual void Run() {
if (!del) {
(*function_)(p1_,p2_,p3_,p4_);
} else {
(*function_)(p1_,p2_,p3_,p4_);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
}
}
};
template <class R, class P1, class P2, class P3, class P4>
inline typename _TessFunctionResultCallback_4_0<true,R,P1,P2,P3,P4>::base*
NewTessCallback(R (*function)(P1,P2,P3,P4), typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4) {
return new _TessFunctionResultCallback_4_0<true,R,P1,P2,P3,P4>(function, p1, p2, p3, p4);
}
template <class R, class P1, class P2, class P3, class P4>
inline typename _TessFunctionResultCallback_4_0<false,R,P1,P2,P3,P4>::base*
NewPermanentTessCallback(R (*function)(P1,P2,P3,P4), typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4) {
return new _TessFunctionResultCallback_4_0<false,R,P1,P2,P3,P4>(function, p1, p2, p3, p4);
}
template <bool del, class R, class T, class P1, class P2, class P3, class P4, class P5>
class _ConstTessMemberResultCallback_5_0 : public TessResultCallback<R> {
public:
typedef TessResultCallback<R> base;
typedef R (T::*MemberSignature)(P1,P2,P3,P4,P5) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
public:
inline _ConstTessMemberResultCallback_5_0(const T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5) { }
virtual R Run() {
if (!del) {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,p5_);
return result;
} else {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,p5_);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class P2, class P3, class P4, class P5>
class _ConstTessMemberResultCallback_5_0<del, void, T, P1, P2, P3, P4, P5> : public TessClosure {
public:
typedef TessClosure base;
typedef void (T::*MemberSignature)(P1,P2,P3,P4,P5) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
public:
inline _ConstTessMemberResultCallback_5_0(const T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5) { }
virtual void Run() {
if (!del) {
(object_->*member_)(p1_,p2_,p3_,p4_,p5_);
} else {
(object_->*member_)(p1_,p2_,p3_,p4_,p5_);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class P5>
inline typename _ConstTessMemberResultCallback_5_0<true,R,T1,P1,P2,P3,P4,P5>::base*
NewTessCallback(const T1* obj, R (T2::*member)(P1,P2,P3,P4,P5) const, typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5) {
return new _ConstTessMemberResultCallback_5_0<true,R,T1,P1,P2,P3,P4,P5>(obj, member, p1, p2, p3, p4, p5);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class P5>
inline typename _ConstTessMemberResultCallback_5_0<false,R,T1,P1,P2,P3,P4,P5>::base*
NewPermanentTessCallback(const T1* obj, R (T2::*member)(P1,P2,P3,P4,P5) const, typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5) {
return new _ConstTessMemberResultCallback_5_0<false,R,T1,P1,P2,P3,P4,P5>(obj, member, p1, p2, p3, p4, p5);
}
#endif
template <bool del, class R, class T, class P1, class P2, class P3, class P4, class P5>
class _TessMemberResultCallback_5_0 : public TessResultCallback<R> {
public:
typedef TessResultCallback<R> base;
typedef R (T::*MemberSignature)(P1,P2,P3,P4,P5) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
public:
inline _TessMemberResultCallback_5_0( T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5) { }
virtual R Run() {
if (!del) {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,p5_);
return result;
} else {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,p5_);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class P2, class P3, class P4, class P5>
class _TessMemberResultCallback_5_0<del, void, T, P1, P2, P3, P4, P5> : public TessClosure {
public:
typedef TessClosure base;
typedef void (T::*MemberSignature)(P1,P2,P3,P4,P5) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
public:
inline _TessMemberResultCallback_5_0( T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5) { }
virtual void Run() {
if (!del) {
(object_->*member_)(p1_,p2_,p3_,p4_,p5_);
} else {
(object_->*member_)(p1_,p2_,p3_,p4_,p5_);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class P5>
inline typename _TessMemberResultCallback_5_0<true,R,T1,P1,P2,P3,P4,P5>::base*
NewTessCallback( T1* obj, R (T2::*member)(P1,P2,P3,P4,P5) , typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5) {
return new _TessMemberResultCallback_5_0<true,R,T1,P1,P2,P3,P4,P5>(obj, member, p1, p2, p3, p4, p5);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class P5>
inline typename _TessMemberResultCallback_5_0<false,R,T1,P1,P2,P3,P4,P5>::base*
NewPermanentTessCallback( T1* obj, R (T2::*member)(P1,P2,P3,P4,P5) , typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5) {
return new _TessMemberResultCallback_5_0<false,R,T1,P1,P2,P3,P4,P5>(obj, member, p1, p2, p3, p4, p5);
}
#endif
template <bool del, class R, class P1, class P2, class P3, class P4, class P5>
class _TessFunctionResultCallback_5_0 : public TessResultCallback<R> {
public:
typedef TessResultCallback<R> base;
typedef R (*FunctionSignature)(P1,P2,P3,P4,P5);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
public:
inline _TessFunctionResultCallback_5_0(FunctionSignature function, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5)
: function_(function), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5) { }
virtual R Run() {
if (!del) {
R result = (*function_)(p1_,p2_,p3_,p4_,p5_);
return result;
} else {
R result = (*function_)(p1_,p2_,p3_,p4_,p5_);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class P1, class P2, class P3, class P4, class P5>
class _TessFunctionResultCallback_5_0<del, void, P1, P2, P3, P4, P5> : public TessClosure {
public:
typedef TessClosure base;
typedef void (*FunctionSignature)(P1,P2,P3,P4,P5);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
public:
inline _TessFunctionResultCallback_5_0(FunctionSignature function, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5)
: function_(function), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5) { }
virtual void Run() {
if (!del) {
(*function_)(p1_,p2_,p3_,p4_,p5_);
} else {
(*function_)(p1_,p2_,p3_,p4_,p5_);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
}
}
};
template <class R, class P1, class P2, class P3, class P4, class P5>
inline typename _TessFunctionResultCallback_5_0<true,R,P1,P2,P3,P4,P5>::base*
NewTessCallback(R (*function)(P1,P2,P3,P4,P5), typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5) {
return new _TessFunctionResultCallback_5_0<true,R,P1,P2,P3,P4,P5>(function, p1, p2, p3, p4, p5);
}
template <class R, class P1, class P2, class P3, class P4, class P5>
inline typename _TessFunctionResultCallback_5_0<false,R,P1,P2,P3,P4,P5>::base*
NewPermanentTessCallback(R (*function)(P1,P2,P3,P4,P5), typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5) {
return new _TessFunctionResultCallback_5_0<false,R,P1,P2,P3,P4,P5>(function, p1, p2, p3, p4, p5);
}
template <bool del, class R, class T, class P1, class P2, class P3, class P4, class P5, class P6>
class _ConstTessMemberResultCallback_6_0 : public TessResultCallback<R> {
public:
typedef TessResultCallback<R> base;
typedef R (T::*MemberSignature)(P1,P2,P3,P4,P5,P6) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
typename remove_reference<P6>::type p6_;
public:
inline _ConstTessMemberResultCallback_6_0(const T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5), p6_(p6) { }
virtual R Run() {
if (!del) {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,p5_,p6_);
return result;
} else {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,p5_,p6_);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class P2, class P3, class P4, class P5, class P6>
class _ConstTessMemberResultCallback_6_0<del, void, T, P1, P2, P3, P4, P5, P6> : public TessClosure {
public:
typedef TessClosure base;
typedef void (T::*MemberSignature)(P1,P2,P3,P4,P5,P6) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
typename remove_reference<P6>::type p6_;
public:
inline _ConstTessMemberResultCallback_6_0(const T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5), p6_(p6) { }
virtual void Run() {
if (!del) {
(object_->*member_)(p1_,p2_,p3_,p4_,p5_,p6_);
} else {
(object_->*member_)(p1_,p2_,p3_,p4_,p5_,p6_);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class P5, class P6>
inline typename _ConstTessMemberResultCallback_6_0<true,R,T1,P1,P2,P3,P4,P5,P6>::base*
NewTessCallback(const T1* obj, R (T2::*member)(P1,P2,P3,P4,P5,P6) const, typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5, typename Identity<P6>::type p6) {
return new _ConstTessMemberResultCallback_6_0<true,R,T1,P1,P2,P3,P4,P5,P6>(obj, member, p1, p2, p3, p4, p5, p6);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class P5, class P6>
inline typename _ConstTessMemberResultCallback_6_0<false,R,T1,P1,P2,P3,P4,P5,P6>::base*
NewPermanentTessCallback(const T1* obj, R (T2::*member)(P1,P2,P3,P4,P5,P6) const, typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5, typename Identity<P6>::type p6) {
return new _ConstTessMemberResultCallback_6_0<false,R,T1,P1,P2,P3,P4,P5,P6>(obj, member, p1, p2, p3, p4, p5, p6);
}
#endif
template <bool del, class R, class T, class P1, class P2, class P3, class P4, class P5, class P6>
class _TessMemberResultCallback_6_0 : public TessResultCallback<R> {
public:
typedef TessResultCallback<R> base;
typedef R (T::*MemberSignature)(P1,P2,P3,P4,P5,P6) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
typename remove_reference<P6>::type p6_;
public:
inline _TessMemberResultCallback_6_0( T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5), p6_(p6) { }
virtual R Run() {
if (!del) {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,p5_,p6_);
return result;
} else {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,p5_,p6_);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class P2, class P3, class P4, class P5, class P6>
class _TessMemberResultCallback_6_0<del, void, T, P1, P2, P3, P4, P5, P6> : public TessClosure {
public:
typedef TessClosure base;
typedef void (T::*MemberSignature)(P1,P2,P3,P4,P5,P6) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
typename remove_reference<P6>::type p6_;
public:
inline _TessMemberResultCallback_6_0( T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5), p6_(p6) { }
virtual void Run() {
if (!del) {
(object_->*member_)(p1_,p2_,p3_,p4_,p5_,p6_);
} else {
(object_->*member_)(p1_,p2_,p3_,p4_,p5_,p6_);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class P5, class P6>
inline typename _TessMemberResultCallback_6_0<true,R,T1,P1,P2,P3,P4,P5,P6>::base*
NewTessCallback( T1* obj, R (T2::*member)(P1,P2,P3,P4,P5,P6) , typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5, typename Identity<P6>::type p6) {
return new _TessMemberResultCallback_6_0<true,R,T1,P1,P2,P3,P4,P5,P6>(obj, member, p1, p2, p3, p4, p5, p6);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class P5, class P6>
inline typename _TessMemberResultCallback_6_0<false,R,T1,P1,P2,P3,P4,P5,P6>::base*
NewPermanentTessCallback( T1* obj, R (T2::*member)(P1,P2,P3,P4,P5,P6) , typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5, typename Identity<P6>::type p6) {
return new _TessMemberResultCallback_6_0<false,R,T1,P1,P2,P3,P4,P5,P6>(obj, member, p1, p2, p3, p4, p5, p6);
}
#endif
template <bool del, class R, class P1, class P2, class P3, class P4, class P5, class P6>
class _TessFunctionResultCallback_6_0 : public TessResultCallback<R> {
public:
typedef TessResultCallback<R> base;
typedef R (*FunctionSignature)(P1,P2,P3,P4,P5,P6);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
typename remove_reference<P6>::type p6_;
public:
inline _TessFunctionResultCallback_6_0(FunctionSignature function, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6)
: function_(function), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5), p6_(p6) { }
virtual R Run() {
if (!del) {
R result = (*function_)(p1_,p2_,p3_,p4_,p5_,p6_);
return result;
} else {
R result = (*function_)(p1_,p2_,p3_,p4_,p5_,p6_);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class P1, class P2, class P3, class P4, class P5, class P6>
class _TessFunctionResultCallback_6_0<del, void, P1, P2, P3, P4, P5, P6> : public TessClosure {
public:
typedef TessClosure base;
typedef void (*FunctionSignature)(P1,P2,P3,P4,P5,P6);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
typename remove_reference<P6>::type p6_;
public:
inline _TessFunctionResultCallback_6_0(FunctionSignature function, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6)
: function_(function), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5), p6_(p6) { }
virtual void Run() {
if (!del) {
(*function_)(p1_,p2_,p3_,p4_,p5_,p6_);
} else {
(*function_)(p1_,p2_,p3_,p4_,p5_,p6_);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
}
}
};
template <class R, class P1, class P2, class P3, class P4, class P5, class P6>
inline typename _TessFunctionResultCallback_6_0<true,R,P1,P2,P3,P4,P5,P6>::base*
NewTessCallback(R (*function)(P1,P2,P3,P4,P5,P6), typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5, typename Identity<P6>::type p6) {
return new _TessFunctionResultCallback_6_0<true,R,P1,P2,P3,P4,P5,P6>(function, p1, p2, p3, p4, p5, p6);
}
template <class R, class P1, class P2, class P3, class P4, class P5, class P6>
inline typename _TessFunctionResultCallback_6_0<false,R,P1,P2,P3,P4,P5,P6>::base*
NewPermanentTessCallback(R (*function)(P1,P2,P3,P4,P5,P6), typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5, typename Identity<P6>::type p6) {
return new _TessFunctionResultCallback_6_0<false,R,P1,P2,P3,P4,P5,P6>(function, p1, p2, p3, p4, p5, p6);
}
template <class A1>
class TessCallback1 {
public:
virtual ~TessCallback1() { }
virtual void Run(A1) = 0;
};
template <class R, class A1>
class TessResultCallback1 {
public:
virtual ~TessResultCallback1() { }
virtual R Run(A1) = 0;
};
template <class A1,class A2>
class TessCallback2 {
public:
virtual ~TessCallback2() { }
virtual void Run(A1,A2) = 0;
};
template <class R, class A1,class A2>
class TessResultCallback2 {
public:
virtual ~TessResultCallback2() { }
virtual R Run(A1,A2) = 0;
};
template <class A1,class A2,class A3>
class TessCallback3 {
public:
virtual ~TessCallback3() { }
virtual void Run(A1,A2,A3) = 0;
};
template <class R, class A1,class A2,class A3>
class TessResultCallback3 {
public:
virtual ~TessResultCallback3() { }
virtual R Run(A1,A2,A3) = 0;
};
template <class A1,class A2,class A3,class A4>
class TessCallback4 {
public:
virtual ~TessCallback4() { }
virtual void Run(A1,A2,A3,A4) = 0;
};
template <class R, class A1,class A2,class A3,class A4>
class TessResultCallback4 {
public:
virtual ~TessResultCallback4() { }
virtual R Run(A1,A2,A3,A4) = 0;
};
template <bool del, class R, class T, class A1>
class _ConstTessMemberResultCallback_0_1 : public TessResultCallback1<R,A1> {
public:
typedef TessResultCallback1<R,A1> base;
typedef R (T::*MemberSignature)(A1) const;
private:
const T* object_;
MemberSignature member_;
public:
inline _ConstTessMemberResultCallback_0_1(
const T* object, MemberSignature member)
: object_(object),
member_(member) {
}
virtual R Run(A1 a1) {
if (!del) {
R result = (object_->*member_)(a1);
return result;
} else {
R result = (object_->*member_)(a1);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class A1>
class _ConstTessMemberResultCallback_0_1<del, void, T, A1>
: public TessCallback1<A1> {
public:
typedef TessCallback1<A1> base;
typedef void (T::*MemberSignature)(A1) const;
private:
const T* object_;
MemberSignature member_;
public:
inline _ConstTessMemberResultCallback_0_1(
const T* object, MemberSignature member)
: object_(object),
member_(member) {
}
virtual void Run(A1 a1) {
if (!del) {
(object_->*member_)(a1);
} else {
(object_->*member_)(a1);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class A1>
inline typename _ConstTessMemberResultCallback_0_1<true,R,T1,A1>::base*
NewTessCallback(
const T1* obj, R (T2::*member)(A1) const) {
return new _ConstTessMemberResultCallback_0_1<true,R,T1,A1>(
obj, member);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class A1>
inline typename _ConstTessMemberResultCallback_0_1<false,R,T1,A1>::base*
NewPermanentTessCallback(
const T1* obj, R (T2::*member)(A1) const) {
return new _ConstTessMemberResultCallback_0_1<false,R,T1,A1>(
obj, member);
}
#endif
template <bool del, class R, class T, class A1>
class _TessMemberResultCallback_0_1 : public TessResultCallback1<R,A1> {
public:
typedef TessResultCallback1<R,A1> base;
typedef R (T::*MemberSignature)(A1) ;
private:
T* object_;
MemberSignature member_;
public:
inline _TessMemberResultCallback_0_1(
T* object, MemberSignature member)
: object_(object),
member_(member) {
}
virtual R Run(A1 a1) {
if (!del) {
R result = (object_->*member_)(a1);
return result;
} else {
R result = (object_->*member_)(a1);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class A1>
class _TessMemberResultCallback_0_1<del, void, T, A1>
: public TessCallback1<A1> {
public:
typedef TessCallback1<A1> base;
typedef void (T::*MemberSignature)(A1) ;
private:
T* object_;
MemberSignature member_;
public:
inline _TessMemberResultCallback_0_1(
T* object, MemberSignature member)
: object_(object),
member_(member) {
}
virtual void Run(A1 a1) {
if (!del) {
(object_->*member_)(a1);
} else {
(object_->*member_)(a1);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class A1>
inline typename _TessMemberResultCallback_0_1<true,R,T1,A1>::base*
NewTessCallback(
T1* obj, R (T2::*member)(A1) ) {
return new _TessMemberResultCallback_0_1<true,R,T1,A1>(
obj, member);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class A1>
inline typename _TessMemberResultCallback_0_1<false,R,T1,A1>::base*
NewPermanentTessCallback(
T1* obj, R (T2::*member)(A1) ) {
return new _TessMemberResultCallback_0_1<false,R,T1,A1>(
obj, member);
}
#endif
template <bool del, class R, class A1>
class _TessFunctionResultCallback_0_1 : public TessResultCallback1<R,A1> {
public:
typedef TessResultCallback1<R,A1> base;
typedef R (*FunctionSignature)(A1);
private:
FunctionSignature function_;
public:
inline _TessFunctionResultCallback_0_1(
FunctionSignature function)
: function_(function) {
}
virtual R Run(A1 a1) {
if (!del) {
R result = (*function_)(a1);
return result;
} else {
R result = (*function_)(a1);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class A1>
class _TessFunctionResultCallback_0_1<del, void, A1>
: public TessCallback1<A1> {
public:
typedef TessCallback1<A1> base;
typedef void (*FunctionSignature)(A1);
private:
FunctionSignature function_;
public:
inline _TessFunctionResultCallback_0_1(
FunctionSignature function)
: function_(function) {
}
virtual void Run(A1 a1) {
if (!del) {
(*function_)(a1);
} else {
(*function_)(a1);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
}
}
};
template <class R, class A1>
inline typename _TessFunctionResultCallback_0_1<true,R,A1>::base*
NewTessCallback(R (*function)(A1)) {
return new _TessFunctionResultCallback_0_1<true,R,A1>(function);
}
template <class R, class A1>
inline typename _TessFunctionResultCallback_0_1<false,R,A1>::base*
NewPermanentTessCallback(R (*function)(A1)) {
return new _TessFunctionResultCallback_0_1<false,R,A1>(function);
}
template <bool del, class R, class T, class P1, class A1>
class _ConstTessMemberResultCallback_1_1 : public TessResultCallback1<R,A1> {
public:
typedef TessResultCallback1<R,A1> base;
typedef R (T::*MemberSignature)(P1,A1) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
public:
inline _ConstTessMemberResultCallback_1_1(const T* object, MemberSignature member, P1 p1)
: object_(object),
member_(member), p1_(p1) { }
virtual R Run(A1 a1) {
if (!del) {
R result = (object_->*member_)(p1_,a1);
return result;
} else {
R result = (object_->*member_)(p1_,a1);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class A1>
class _ConstTessMemberResultCallback_1_1<del, void, T, P1, A1> : public TessCallback1<A1> {
public:
typedef TessCallback1<A1> base;
typedef void (T::*MemberSignature)(P1,A1) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
public:
inline _ConstTessMemberResultCallback_1_1(const T* object, MemberSignature member, P1 p1)
: object_(object),
member_(member), p1_(p1) { }
virtual void Run(A1 a1) {
if (!del) {
(object_->*member_)(p1_,a1);
} else {
(object_->*member_)(p1_,a1);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class A1>
inline typename _ConstTessMemberResultCallback_1_1<true,R,T1,P1,A1>::base*
NewTessCallback(const T1* obj, R (T2::*member)(P1,A1) const, typename Identity<P1>::type p1) {
return new _ConstTessMemberResultCallback_1_1<true,R,T1,P1,A1>(obj, member, p1);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class A1>
inline typename _ConstTessMemberResultCallback_1_1<false,R,T1,P1,A1>::base*
NewPermanentTessCallback(const T1* obj, R (T2::*member)(P1,A1) const, typename Identity<P1>::type p1) {
return new _ConstTessMemberResultCallback_1_1<false,R,T1,P1,A1>(obj, member, p1);
}
#endif
template <bool del, class R, class T, class P1, class A1>
class _TessMemberResultCallback_1_1 : public TessResultCallback1<R,A1> {
public:
typedef TessResultCallback1<R,A1> base;
typedef R (T::*MemberSignature)(P1,A1) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
public:
inline _TessMemberResultCallback_1_1( T* object, MemberSignature member, P1 p1)
: object_(object),
member_(member), p1_(p1) { }
virtual R Run(A1 a1) {
if (!del) {
R result = (object_->*member_)(p1_,a1);
return result;
} else {
R result = (object_->*member_)(p1_,a1);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class A1>
class _TessMemberResultCallback_1_1<del, void, T, P1, A1> : public TessCallback1<A1> {
public:
typedef TessCallback1<A1> base;
typedef void (T::*MemberSignature)(P1,A1) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
public:
inline _TessMemberResultCallback_1_1( T* object, MemberSignature member, P1 p1)
: object_(object),
member_(member), p1_(p1) { }
virtual void Run(A1 a1) {
if (!del) {
(object_->*member_)(p1_,a1);
} else {
(object_->*member_)(p1_,a1);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class A1>
inline typename _TessMemberResultCallback_1_1<true,R,T1,P1,A1>::base*
NewTessCallback( T1* obj, R (T2::*member)(P1,A1) , typename Identity<P1>::type p1) {
return new _TessMemberResultCallback_1_1<true,R,T1,P1,A1>(obj, member, p1);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class A1>
inline typename _TessMemberResultCallback_1_1<false,R,T1,P1,A1>::base*
NewPermanentTessCallback( T1* obj, R (T2::*member)(P1,A1) , typename Identity<P1>::type p1) {
return new _TessMemberResultCallback_1_1<false,R,T1,P1,A1>(obj, member, p1);
}
#endif
template <bool del, class R, class P1, class A1>
class _TessFunctionResultCallback_1_1 : public TessResultCallback1<R,A1> {
public:
typedef TessResultCallback1<R,A1> base;
typedef R (*FunctionSignature)(P1,A1);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
public:
inline _TessFunctionResultCallback_1_1(FunctionSignature function, P1 p1)
: function_(function), p1_(p1) { }
virtual R Run(A1 a1) {
if (!del) {
R result = (*function_)(p1_,a1);
return result;
} else {
R result = (*function_)(p1_,a1);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class P1, class A1>
class _TessFunctionResultCallback_1_1<del, void, P1, A1> : public TessCallback1<A1> {
public:
typedef TessCallback1<A1> base;
typedef void (*FunctionSignature)(P1,A1);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
public:
inline _TessFunctionResultCallback_1_1(FunctionSignature function, P1 p1)
: function_(function), p1_(p1) { }
virtual void Run(A1 a1) {
if (!del) {
(*function_)(p1_,a1);
} else {
(*function_)(p1_,a1);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
}
}
};
template <class R, class P1, class A1>
inline typename _TessFunctionResultCallback_1_1<true,R,P1,A1>::base*
NewTessCallback(R (*function)(P1,A1), typename Identity<P1>::type p1) {
return new _TessFunctionResultCallback_1_1<true,R,P1,A1>(function, p1);
}
template <class R, class P1, class A1>
inline typename _TessFunctionResultCallback_1_1<false,R,P1,A1>::base*
NewPermanentTessCallback(R (*function)(P1,A1), typename Identity<P1>::type p1) {
return new _TessFunctionResultCallback_1_1<false,R,P1,A1>(function, p1);
}
template <bool del, class R, class T, class P1, class P2, class A1>
class _ConstTessMemberResultCallback_2_1 : public TessResultCallback1<R,A1> {
public:
typedef TessResultCallback1<R,A1> base;
typedef R (T::*MemberSignature)(P1,P2,A1) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
public:
inline _ConstTessMemberResultCallback_2_1(const T* object, MemberSignature member, P1 p1, P2 p2)
: object_(object),
member_(member), p1_(p1), p2_(p2) { }
virtual R Run(A1 a1) {
if (!del) {
R result = (object_->*member_)(p1_,p2_,a1);
return result;
} else {
R result = (object_->*member_)(p1_,p2_,a1);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class P2, class A1>
class _ConstTessMemberResultCallback_2_1<del, void, T, P1, P2, A1> : public TessCallback1<A1> {
public:
typedef TessCallback1<A1> base;
typedef void (T::*MemberSignature)(P1,P2,A1) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
public:
inline _ConstTessMemberResultCallback_2_1(const T* object, MemberSignature member, P1 p1, P2 p2)
: object_(object),
member_(member), p1_(p1), p2_(p2) { }
virtual void Run(A1 a1) {
if (!del) {
(object_->*member_)(p1_,p2_,a1);
} else {
(object_->*member_)(p1_,p2_,a1);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class A1>
inline typename _ConstTessMemberResultCallback_2_1<true,R,T1,P1,P2,A1>::base*
NewTessCallback(const T1* obj, R (T2::*member)(P1,P2,A1) const, typename Identity<P1>::type p1, typename Identity<P2>::type p2) {
return new _ConstTessMemberResultCallback_2_1<true,R,T1,P1,P2,A1>(obj, member, p1, p2);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class A1>
inline typename _ConstTessMemberResultCallback_2_1<false,R,T1,P1,P2,A1>::base*
NewPermanentTessCallback(const T1* obj, R (T2::*member)(P1,P2,A1) const, typename Identity<P1>::type p1, typename Identity<P2>::type p2) {
return new _ConstTessMemberResultCallback_2_1<false,R,T1,P1,P2,A1>(obj, member, p1, p2);
}
#endif
template <bool del, class R, class T, class P1, class P2, class A1>
class _TessMemberResultCallback_2_1 : public TessResultCallback1<R,A1> {
public:
typedef TessResultCallback1<R,A1> base;
typedef R (T::*MemberSignature)(P1,P2,A1) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
public:
inline _TessMemberResultCallback_2_1( T* object, MemberSignature member, P1 p1, P2 p2)
: object_(object),
member_(member), p1_(p1), p2_(p2) { }
virtual R Run(A1 a1) {
if (!del) {
R result = (object_->*member_)(p1_,p2_,a1);
return result;
} else {
R result = (object_->*member_)(p1_,p2_,a1);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class P2, class A1>
class _TessMemberResultCallback_2_1<del, void, T, P1, P2, A1> : public TessCallback1<A1> {
public:
typedef TessCallback1<A1> base;
typedef void (T::*MemberSignature)(P1,P2,A1) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
public:
inline _TessMemberResultCallback_2_1( T* object, MemberSignature member, P1 p1, P2 p2)
: object_(object),
member_(member), p1_(p1), p2_(p2) { }
virtual void Run(A1 a1) {
if (!del) {
(object_->*member_)(p1_,p2_,a1);
} else {
(object_->*member_)(p1_,p2_,a1);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class A1>
inline typename _TessMemberResultCallback_2_1<true,R,T1,P1,P2,A1>::base*
NewTessCallback( T1* obj, R (T2::*member)(P1,P2,A1) , typename Identity<P1>::type p1, typename Identity<P2>::type p2) {
return new _TessMemberResultCallback_2_1<true,R,T1,P1,P2,A1>(obj, member, p1, p2);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class A1>
inline typename _TessMemberResultCallback_2_1<false,R,T1,P1,P2,A1>::base*
NewPermanentTessCallback( T1* obj, R (T2::*member)(P1,P2,A1) , typename Identity<P1>::type p1, typename Identity<P2>::type p2) {
return new _TessMemberResultCallback_2_1<false,R,T1,P1,P2,A1>(obj, member, p1, p2);
}
#endif
template <bool del, class R, class P1, class P2, class A1>
class _TessFunctionResultCallback_2_1 : public TessResultCallback1<R,A1> {
public:
typedef TessResultCallback1<R,A1> base;
typedef R (*FunctionSignature)(P1,P2,A1);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
public:
inline _TessFunctionResultCallback_2_1(FunctionSignature function, P1 p1, P2 p2)
: function_(function), p1_(p1), p2_(p2) { }
virtual R Run(A1 a1) {
if (!del) {
R result = (*function_)(p1_,p2_,a1);
return result;
} else {
R result = (*function_)(p1_,p2_,a1);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class P1, class P2, class A1>
class _TessFunctionResultCallback_2_1<del, void, P1, P2, A1> : public TessCallback1<A1> {
public:
typedef TessCallback1<A1> base;
typedef void (*FunctionSignature)(P1,P2,A1);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
public:
inline _TessFunctionResultCallback_2_1(FunctionSignature function, P1 p1, P2 p2)
: function_(function), p1_(p1), p2_(p2) { }
virtual void Run(A1 a1) {
if (!del) {
(*function_)(p1_,p2_,a1);
} else {
(*function_)(p1_,p2_,a1);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
}
}
};
template <class R, class P1, class P2, class A1>
inline typename _TessFunctionResultCallback_2_1<true,R,P1,P2,A1>::base*
NewTessCallback(R (*function)(P1,P2,A1), typename Identity<P1>::type p1, typename Identity<P2>::type p2) {
return new _TessFunctionResultCallback_2_1<true,R,P1,P2,A1>(function, p1, p2);
}
template <class R, class P1, class P2, class A1>
inline typename _TessFunctionResultCallback_2_1<false,R,P1,P2,A1>::base*
NewPermanentTessCallback(R (*function)(P1,P2,A1), typename Identity<P1>::type p1, typename Identity<P2>::type p2) {
return new _TessFunctionResultCallback_2_1<false,R,P1,P2,A1>(function, p1, p2);
}
template <bool del, class R, class T, class P1, class P2, class P3, class A1>
class _ConstTessMemberResultCallback_3_1 : public TessResultCallback1<R,A1> {
public:
typedef TessResultCallback1<R,A1> base;
typedef R (T::*MemberSignature)(P1,P2,P3,A1) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
public:
inline _ConstTessMemberResultCallback_3_1(const T* object, MemberSignature member, P1 p1, P2 p2, P3 p3)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3) { }
virtual R Run(A1 a1) {
if (!del) {
R result = (object_->*member_)(p1_,p2_,p3_,a1);
return result;
} else {
R result = (object_->*member_)(p1_,p2_,p3_,a1);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class P2, class P3, class A1>
class _ConstTessMemberResultCallback_3_1<del, void, T, P1, P2, P3, A1> : public TessCallback1<A1> {
public:
typedef TessCallback1<A1> base;
typedef void (T::*MemberSignature)(P1,P2,P3,A1) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
public:
inline _ConstTessMemberResultCallback_3_1(const T* object, MemberSignature member, P1 p1, P2 p2, P3 p3)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3) { }
virtual void Run(A1 a1) {
if (!del) {
(object_->*member_)(p1_,p2_,p3_,a1);
} else {
(object_->*member_)(p1_,p2_,p3_,a1);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class A1>
inline typename _ConstTessMemberResultCallback_3_1<true,R,T1,P1,P2,P3,A1>::base*
NewTessCallback(const T1* obj, R (T2::*member)(P1,P2,P3,A1) const, typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3) {
return new _ConstTessMemberResultCallback_3_1<true,R,T1,P1,P2,P3,A1>(obj, member, p1, p2, p3);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class A1>
inline typename _ConstTessMemberResultCallback_3_1<false,R,T1,P1,P2,P3,A1>::base*
NewPermanentTessCallback(const T1* obj, R (T2::*member)(P1,P2,P3,A1) const, typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3) {
return new _ConstTessMemberResultCallback_3_1<false,R,T1,P1,P2,P3,A1>(obj, member, p1, p2, p3);
}
#endif
template <bool del, class R, class T, class P1, class P2, class P3, class A1>
class _TessMemberResultCallback_3_1 : public TessResultCallback1<R,A1> {
public:
typedef TessResultCallback1<R,A1> base;
typedef R (T::*MemberSignature)(P1,P2,P3,A1) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
public:
inline _TessMemberResultCallback_3_1( T* object, MemberSignature member, P1 p1, P2 p2, P3 p3)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3) { }
virtual R Run(A1 a1) {
if (!del) {
R result = (object_->*member_)(p1_,p2_,p3_,a1);
return result;
} else {
R result = (object_->*member_)(p1_,p2_,p3_,a1);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class P2, class P3, class A1>
class _TessMemberResultCallback_3_1<del, void, T, P1, P2, P3, A1> : public TessCallback1<A1> {
public:
typedef TessCallback1<A1> base;
typedef void (T::*MemberSignature)(P1,P2,P3,A1) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
public:
inline _TessMemberResultCallback_3_1( T* object, MemberSignature member, P1 p1, P2 p2, P3 p3)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3) { }
virtual void Run(A1 a1) {
if (!del) {
(object_->*member_)(p1_,p2_,p3_,a1);
} else {
(object_->*member_)(p1_,p2_,p3_,a1);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class A1>
inline typename _TessMemberResultCallback_3_1<true,R,T1,P1,P2,P3,A1>::base*
NewTessCallback( T1* obj, R (T2::*member)(P1,P2,P3,A1) , typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3) {
return new _TessMemberResultCallback_3_1<true,R,T1,P1,P2,P3,A1>(obj, member, p1, p2, p3);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class A1>
inline typename _TessMemberResultCallback_3_1<false,R,T1,P1,P2,P3,A1>::base*
NewPermanentTessCallback( T1* obj, R (T2::*member)(P1,P2,P3,A1) , typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3) {
return new _TessMemberResultCallback_3_1<false,R,T1,P1,P2,P3,A1>(obj, member, p1, p2, p3);
}
#endif
template <bool del, class R, class P1, class P2, class P3, class A1>
class _TessFunctionResultCallback_3_1 : public TessResultCallback1<R,A1> {
public:
typedef TessResultCallback1<R,A1> base;
typedef R (*FunctionSignature)(P1,P2,P3,A1);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
public:
inline _TessFunctionResultCallback_3_1(FunctionSignature function, P1 p1, P2 p2, P3 p3)
: function_(function), p1_(p1), p2_(p2), p3_(p3) { }
virtual R Run(A1 a1) {
if (!del) {
R result = (*function_)(p1_,p2_,p3_,a1);
return result;
} else {
R result = (*function_)(p1_,p2_,p3_,a1);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class P1, class P2, class P3, class A1>
class _TessFunctionResultCallback_3_1<del, void, P1, P2, P3, A1> : public TessCallback1<A1> {
public:
typedef TessCallback1<A1> base;
typedef void (*FunctionSignature)(P1,P2,P3,A1);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
public:
inline _TessFunctionResultCallback_3_1(FunctionSignature function, P1 p1, P2 p2, P3 p3)
: function_(function), p1_(p1), p2_(p2), p3_(p3) { }
virtual void Run(A1 a1) {
if (!del) {
(*function_)(p1_,p2_,p3_,a1);
} else {
(*function_)(p1_,p2_,p3_,a1);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
}
}
};
template <class R, class P1, class P2, class P3, class A1>
inline typename _TessFunctionResultCallback_3_1<true,R,P1,P2,P3,A1>::base*
NewTessCallback(R (*function)(P1,P2,P3,A1), typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3) {
return new _TessFunctionResultCallback_3_1<true,R,P1,P2,P3,A1>(function, p1, p2, p3);
}
template <class R, class P1, class P2, class P3, class A1>
inline typename _TessFunctionResultCallback_3_1<false,R,P1,P2,P3,A1>::base*
NewPermanentTessCallback(R (*function)(P1,P2,P3,A1), typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3) {
return new _TessFunctionResultCallback_3_1<false,R,P1,P2,P3,A1>(function, p1, p2, p3);
}
template <bool del, class R, class T, class P1, class P2, class P3, class P4, class A1>
class _ConstTessMemberResultCallback_4_1 : public TessResultCallback1<R,A1> {
public:
typedef TessResultCallback1<R,A1> base;
typedef R (T::*MemberSignature)(P1,P2,P3,P4,A1) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
public:
inline _ConstTessMemberResultCallback_4_1(const T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4) { }
virtual R Run(A1 a1) {
if (!del) {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,a1);
return result;
} else {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,a1);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class P2, class P3, class P4, class A1>
class _ConstTessMemberResultCallback_4_1<del, void, T, P1, P2, P3, P4, A1> : public TessCallback1<A1> {
public:
typedef TessCallback1<A1> base;
typedef void (T::*MemberSignature)(P1,P2,P3,P4,A1) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
public:
inline _ConstTessMemberResultCallback_4_1(const T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4) { }
virtual void Run(A1 a1) {
if (!del) {
(object_->*member_)(p1_,p2_,p3_,p4_,a1);
} else {
(object_->*member_)(p1_,p2_,p3_,p4_,a1);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class A1>
inline typename _ConstTessMemberResultCallback_4_1<true,R,T1,P1,P2,P3,P4,A1>::base*
NewTessCallback(const T1* obj, R (T2::*member)(P1,P2,P3,P4,A1) const, typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4) {
return new _ConstTessMemberResultCallback_4_1<true,R,T1,P1,P2,P3,P4,A1>(obj, member, p1, p2, p3, p4);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class A1>
inline typename _ConstTessMemberResultCallback_4_1<false,R,T1,P1,P2,P3,P4,A1>::base*
NewPermanentTessCallback(const T1* obj, R (T2::*member)(P1,P2,P3,P4,A1) const, typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4) {
return new _ConstTessMemberResultCallback_4_1<false,R,T1,P1,P2,P3,P4,A1>(obj, member, p1, p2, p3, p4);
}
#endif
template <bool del, class R, class T, class P1, class P2, class P3, class P4, class A1>
class _TessMemberResultCallback_4_1 : public TessResultCallback1<R,A1> {
public:
typedef TessResultCallback1<R,A1> base;
typedef R (T::*MemberSignature)(P1,P2,P3,P4,A1) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
public:
inline _TessMemberResultCallback_4_1( T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4) { }
virtual R Run(A1 a1) {
if (!del) {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,a1);
return result;
} else {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,a1);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class P2, class P3, class P4, class A1>
class _TessMemberResultCallback_4_1<del, void, T, P1, P2, P3, P4, A1> : public TessCallback1<A1> {
public:
typedef TessCallback1<A1> base;
typedef void (T::*MemberSignature)(P1,P2,P3,P4,A1) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
public:
inline _TessMemberResultCallback_4_1( T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4) { }
virtual void Run(A1 a1) {
if (!del) {
(object_->*member_)(p1_,p2_,p3_,p4_,a1);
} else {
(object_->*member_)(p1_,p2_,p3_,p4_,a1);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class A1>
inline typename _TessMemberResultCallback_4_1<true,R,T1,P1,P2,P3,P4,A1>::base*
NewTessCallback( T1* obj, R (T2::*member)(P1,P2,P3,P4,A1) , typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4) {
return new _TessMemberResultCallback_4_1<true,R,T1,P1,P2,P3,P4,A1>(obj, member, p1, p2, p3, p4);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class A1>
inline typename _TessMemberResultCallback_4_1<false,R,T1,P1,P2,P3,P4,A1>::base*
NewPermanentTessCallback( T1* obj, R (T2::*member)(P1,P2,P3,P4,A1) , typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4) {
return new _TessMemberResultCallback_4_1<false,R,T1,P1,P2,P3,P4,A1>(obj, member, p1, p2, p3, p4);
}
#endif
template <bool del, class R, class P1, class P2, class P3, class P4, class A1>
class _TessFunctionResultCallback_4_1 : public TessResultCallback1<R,A1> {
public:
typedef TessResultCallback1<R,A1> base;
typedef R (*FunctionSignature)(P1,P2,P3,P4,A1);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
public:
inline _TessFunctionResultCallback_4_1(FunctionSignature function, P1 p1, P2 p2, P3 p3, P4 p4)
: function_(function), p1_(p1), p2_(p2), p3_(p3), p4_(p4) { }
virtual R Run(A1 a1) {
if (!del) {
R result = (*function_)(p1_,p2_,p3_,p4_,a1);
return result;
} else {
R result = (*function_)(p1_,p2_,p3_,p4_,a1);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class P1, class P2, class P3, class P4, class A1>
class _TessFunctionResultCallback_4_1<del, void, P1, P2, P3, P4, A1> : public TessCallback1<A1> {
public:
typedef TessCallback1<A1> base;
typedef void (*FunctionSignature)(P1,P2,P3,P4,A1);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
public:
inline _TessFunctionResultCallback_4_1(FunctionSignature function, P1 p1, P2 p2, P3 p3, P4 p4)
: function_(function), p1_(p1), p2_(p2), p3_(p3), p4_(p4) { }
virtual void Run(A1 a1) {
if (!del) {
(*function_)(p1_,p2_,p3_,p4_,a1);
} else {
(*function_)(p1_,p2_,p3_,p4_,a1);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
}
}
};
template <class R, class P1, class P2, class P3, class P4, class A1>
inline typename _TessFunctionResultCallback_4_1<true,R,P1,P2,P3,P4,A1>::base*
NewTessCallback(R (*function)(P1,P2,P3,P4,A1), typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4) {
return new _TessFunctionResultCallback_4_1<true,R,P1,P2,P3,P4,A1>(function, p1, p2, p3, p4);
}
template <class R, class P1, class P2, class P3, class P4, class A1>
inline typename _TessFunctionResultCallback_4_1<false,R,P1,P2,P3,P4,A1>::base*
NewPermanentTessCallback(R (*function)(P1,P2,P3,P4,A1), typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4) {
return new _TessFunctionResultCallback_4_1<false,R,P1,P2,P3,P4,A1>(function, p1, p2, p3, p4);
}
template <bool del, class R, class T, class P1, class P2, class P3, class P4, class P5, class A1>
class _ConstTessMemberResultCallback_5_1 : public TessResultCallback1<R,A1> {
public:
typedef TessResultCallback1<R,A1> base;
typedef R (T::*MemberSignature)(P1,P2,P3,P4,P5,A1) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
public:
inline _ConstTessMemberResultCallback_5_1(const T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5) { }
virtual R Run(A1 a1) {
if (!del) {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,p5_,a1);
return result;
} else {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,p5_,a1);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class P2, class P3, class P4, class P5, class A1>
class _ConstTessMemberResultCallback_5_1<del, void, T, P1, P2, P3, P4, P5, A1> : public TessCallback1<A1> {
public:
typedef TessCallback1<A1> base;
typedef void (T::*MemberSignature)(P1,P2,P3,P4,P5,A1) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
public:
inline _ConstTessMemberResultCallback_5_1(const T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5) { }
virtual void Run(A1 a1) {
if (!del) {
(object_->*member_)(p1_,p2_,p3_,p4_,p5_,a1);
} else {
(object_->*member_)(p1_,p2_,p3_,p4_,p5_,a1);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class P5, class A1>
inline typename _ConstTessMemberResultCallback_5_1<true,R,T1,P1,P2,P3,P4,P5,A1>::base*
NewTessCallback(const T1* obj, R (T2::*member)(P1,P2,P3,P4,P5,A1) const, typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5) {
return new _ConstTessMemberResultCallback_5_1<true,R,T1,P1,P2,P3,P4,P5,A1>(obj, member, p1, p2, p3, p4, p5);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class P5, class A1>
inline typename _ConstTessMemberResultCallback_5_1<false,R,T1,P1,P2,P3,P4,P5,A1>::base*
NewPermanentTessCallback(const T1* obj, R (T2::*member)(P1,P2,P3,P4,P5,A1) const, typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5) {
return new _ConstTessMemberResultCallback_5_1<false,R,T1,P1,P2,P3,P4,P5,A1>(obj, member, p1, p2, p3, p4, p5);
}
#endif
template <bool del, class R, class T, class P1, class P2, class P3, class P4, class P5, class A1>
class _TessMemberResultCallback_5_1 : public TessResultCallback1<R,A1> {
public:
typedef TessResultCallback1<R,A1> base;
typedef R (T::*MemberSignature)(P1,P2,P3,P4,P5,A1) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
public:
inline _TessMemberResultCallback_5_1( T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5) { }
virtual R Run(A1 a1) {
if (!del) {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,p5_,a1);
return result;
} else {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,p5_,a1);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class P2, class P3, class P4, class P5, class A1>
class _TessMemberResultCallback_5_1<del, void, T, P1, P2, P3, P4, P5, A1> : public TessCallback1<A1> {
public:
typedef TessCallback1<A1> base;
typedef void (T::*MemberSignature)(P1,P2,P3,P4,P5,A1) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
public:
inline _TessMemberResultCallback_5_1( T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5) { }
virtual void Run(A1 a1) {
if (!del) {
(object_->*member_)(p1_,p2_,p3_,p4_,p5_,a1);
} else {
(object_->*member_)(p1_,p2_,p3_,p4_,p5_,a1);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class P5, class A1>
inline typename _TessMemberResultCallback_5_1<true,R,T1,P1,P2,P3,P4,P5,A1>::base*
NewTessCallback( T1* obj, R (T2::*member)(P1,P2,P3,P4,P5,A1) , typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5) {
return new _TessMemberResultCallback_5_1<true,R,T1,P1,P2,P3,P4,P5,A1>(obj, member, p1, p2, p3, p4, p5);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class P5, class A1>
inline typename _TessMemberResultCallback_5_1<false,R,T1,P1,P2,P3,P4,P5,A1>::base*
NewPermanentTessCallback( T1* obj, R (T2::*member)(P1,P2,P3,P4,P5,A1) , typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5) {
return new _TessMemberResultCallback_5_1<false,R,T1,P1,P2,P3,P4,P5,A1>(obj, member, p1, p2, p3, p4, p5);
}
#endif
template <bool del, class R, class P1, class P2, class P3, class P4, class P5, class A1>
class _TessFunctionResultCallback_5_1 : public TessResultCallback1<R,A1> {
public:
typedef TessResultCallback1<R,A1> base;
typedef R (*FunctionSignature)(P1,P2,P3,P4,P5,A1);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
public:
inline _TessFunctionResultCallback_5_1(FunctionSignature function, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5)
: function_(function), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5) { }
virtual R Run(A1 a1) {
if (!del) {
R result = (*function_)(p1_,p2_,p3_,p4_,p5_,a1);
return result;
} else {
R result = (*function_)(p1_,p2_,p3_,p4_,p5_,a1);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class P1, class P2, class P3, class P4, class P5, class A1>
class _TessFunctionResultCallback_5_1<del, void, P1, P2, P3, P4, P5, A1> : public TessCallback1<A1> {
public:
typedef TessCallback1<A1> base;
typedef void (*FunctionSignature)(P1,P2,P3,P4,P5,A1);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
public:
inline _TessFunctionResultCallback_5_1(FunctionSignature function, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5)
: function_(function), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5) { }
virtual void Run(A1 a1) {
if (!del) {
(*function_)(p1_,p2_,p3_,p4_,p5_,a1);
} else {
(*function_)(p1_,p2_,p3_,p4_,p5_,a1);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
}
}
};
template <class R, class P1, class P2, class P3, class P4, class P5, class A1>
inline typename _TessFunctionResultCallback_5_1<true,R,P1,P2,P3,P4,P5,A1>::base*
NewTessCallback(R (*function)(P1,P2,P3,P4,P5,A1), typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5) {
return new _TessFunctionResultCallback_5_1<true,R,P1,P2,P3,P4,P5,A1>(function, p1, p2, p3, p4, p5);
}
template <class R, class P1, class P2, class P3, class P4, class P5, class A1>
inline typename _TessFunctionResultCallback_5_1<false,R,P1,P2,P3,P4,P5,A1>::base*
NewPermanentTessCallback(R (*function)(P1,P2,P3,P4,P5,A1), typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5) {
return new _TessFunctionResultCallback_5_1<false,R,P1,P2,P3,P4,P5,A1>(function, p1, p2, p3, p4, p5);
}
template <bool del, class R, class T, class P1, class P2, class P3, class P4, class P5, class P6, class A1>
class _ConstTessMemberResultCallback_6_1 : public TessResultCallback1<R,A1> {
public:
typedef TessResultCallback1<R,A1> base;
typedef R (T::*MemberSignature)(P1,P2,P3,P4,P5,P6,A1) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
typename remove_reference<P6>::type p6_;
public:
inline _ConstTessMemberResultCallback_6_1(const T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5), p6_(p6) { }
virtual R Run(A1 a1) {
if (!del) {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,p5_,p6_,a1);
return result;
} else {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,p5_,p6_,a1);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class P2, class P3, class P4, class P5, class P6, class A1>
class _ConstTessMemberResultCallback_6_1<del, void, T, P1, P2, P3, P4, P5, P6, A1> : public TessCallback1<A1> {
public:
typedef TessCallback1<A1> base;
typedef void (T::*MemberSignature)(P1,P2,P3,P4,P5,P6,A1) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
typename remove_reference<P6>::type p6_;
public:
inline _ConstTessMemberResultCallback_6_1(const T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5), p6_(p6) { }
virtual void Run(A1 a1) {
if (!del) {
(object_->*member_)(p1_,p2_,p3_,p4_,p5_,p6_,a1);
} else {
(object_->*member_)(p1_,p2_,p3_,p4_,p5_,p6_,a1);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class P5, class P6, class A1>
inline typename _ConstTessMemberResultCallback_6_1<true,R,T1,P1,P2,P3,P4,P5,P6,A1>::base*
NewTessCallback(const T1* obj, R (T2::*member)(P1,P2,P3,P4,P5,P6,A1) const, typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5, typename Identity<P6>::type p6) {
return new _ConstTessMemberResultCallback_6_1<true,R,T1,P1,P2,P3,P4,P5,P6,A1>(obj, member, p1, p2, p3, p4, p5, p6);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class P5, class P6, class A1>
inline typename _ConstTessMemberResultCallback_6_1<false,R,T1,P1,P2,P3,P4,P5,P6,A1>::base*
NewPermanentTessCallback(const T1* obj, R (T2::*member)(P1,P2,P3,P4,P5,P6,A1) const, typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5, typename Identity<P6>::type p6) {
return new _ConstTessMemberResultCallback_6_1<false,R,T1,P1,P2,P3,P4,P5,P6,A1>(obj, member, p1, p2, p3, p4, p5, p6);
}
#endif
template <bool del, class R, class T, class P1, class P2, class P3, class P4, class P5, class P6, class A1>
class _TessMemberResultCallback_6_1 : public TessResultCallback1<R,A1> {
public:
typedef TessResultCallback1<R,A1> base;
typedef R (T::*MemberSignature)(P1,P2,P3,P4,P5,P6,A1) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
typename remove_reference<P6>::type p6_;
public:
inline _TessMemberResultCallback_6_1( T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5), p6_(p6) { }
virtual R Run(A1 a1) {
if (!del) {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,p5_,p6_,a1);
return result;
} else {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,p5_,p6_,a1);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class P2, class P3, class P4, class P5, class P6, class A1>
class _TessMemberResultCallback_6_1<del, void, T, P1, P2, P3, P4, P5, P6, A1> : public TessCallback1<A1> {
public:
typedef TessCallback1<A1> base;
typedef void (T::*MemberSignature)(P1,P2,P3,P4,P5,P6,A1) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
typename remove_reference<P6>::type p6_;
public:
inline _TessMemberResultCallback_6_1( T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5), p6_(p6) { }
virtual void Run(A1 a1) {
if (!del) {
(object_->*member_)(p1_,p2_,p3_,p4_,p5_,p6_,a1);
} else {
(object_->*member_)(p1_,p2_,p3_,p4_,p5_,p6_,a1);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class P5, class P6, class A1>
inline typename _TessMemberResultCallback_6_1<true,R,T1,P1,P2,P3,P4,P5,P6,A1>::base*
NewTessCallback( T1* obj, R (T2::*member)(P1,P2,P3,P4,P5,P6,A1) , typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5, typename Identity<P6>::type p6) {
return new _TessMemberResultCallback_6_1<true,R,T1,P1,P2,P3,P4,P5,P6,A1>(obj, member, p1, p2, p3, p4, p5, p6);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class P5, class P6, class A1>
inline typename _TessMemberResultCallback_6_1<false,R,T1,P1,P2,P3,P4,P5,P6,A1>::base*
NewPermanentTessCallback( T1* obj, R (T2::*member)(P1,P2,P3,P4,P5,P6,A1) , typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5, typename Identity<P6>::type p6) {
return new _TessMemberResultCallback_6_1<false,R,T1,P1,P2,P3,P4,P5,P6,A1>(obj, member, p1, p2, p3, p4, p5, p6);
}
#endif
template <bool del, class R, class P1, class P2, class P3, class P4, class P5, class P6, class A1>
class _TessFunctionResultCallback_6_1 : public TessResultCallback1<R,A1> {
public:
typedef TessResultCallback1<R,A1> base;
typedef R (*FunctionSignature)(P1,P2,P3,P4,P5,P6,A1);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
typename remove_reference<P6>::type p6_;
public:
inline _TessFunctionResultCallback_6_1(FunctionSignature function, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6)
: function_(function), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5), p6_(p6) { }
virtual R Run(A1 a1) {
if (!del) {
R result = (*function_)(p1_,p2_,p3_,p4_,p5_,p6_,a1);
return result;
} else {
R result = (*function_)(p1_,p2_,p3_,p4_,p5_,p6_,a1);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class P1, class P2, class P3, class P4, class P5, class P6, class A1>
class _TessFunctionResultCallback_6_1<del, void, P1, P2, P3, P4, P5, P6, A1> : public TessCallback1<A1> {
public:
typedef TessCallback1<A1> base;
typedef void (*FunctionSignature)(P1,P2,P3,P4,P5,P6,A1);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
typename remove_reference<P6>::type p6_;
public:
inline _TessFunctionResultCallback_6_1(FunctionSignature function, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6)
: function_(function), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5), p6_(p6) { }
virtual void Run(A1 a1) {
if (!del) {
(*function_)(p1_,p2_,p3_,p4_,p5_,p6_,a1);
} else {
(*function_)(p1_,p2_,p3_,p4_,p5_,p6_,a1);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
}
}
};
template <class R, class P1, class P2, class P3, class P4, class P5, class P6, class A1>
inline typename _TessFunctionResultCallback_6_1<true,R,P1,P2,P3,P4,P5,P6,A1>::base*
NewTessCallback(R (*function)(P1,P2,P3,P4,P5,P6,A1), typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5, typename Identity<P6>::type p6) {
return new _TessFunctionResultCallback_6_1<true,R,P1,P2,P3,P4,P5,P6,A1>(function, p1, p2, p3, p4, p5, p6);
}
template <class R, class P1, class P2, class P3, class P4, class P5, class P6, class A1>
inline typename _TessFunctionResultCallback_6_1<false,R,P1,P2,P3,P4,P5,P6,A1>::base*
NewPermanentTessCallback(R (*function)(P1,P2,P3,P4,P5,P6,A1), typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5, typename Identity<P6>::type p6) {
return new _TessFunctionResultCallback_6_1<false,R,P1,P2,P3,P4,P5,P6,A1>(function, p1, p2, p3, p4, p5, p6);
}
template <bool del, class R, class T, class A1, class A2>
class _ConstTessMemberResultCallback_0_2 : public TessResultCallback2<R,A1,A2> {
public:
typedef TessResultCallback2<R,A1,A2> base;
typedef R (T::*MemberSignature)(A1,A2) const;
private:
const T* object_;
MemberSignature member_;
public:
inline _ConstTessMemberResultCallback_0_2(
const T* object, MemberSignature member)
: object_(object),
member_(member) {
}
virtual R Run(A1 a1,A2 a2) {
if (!del) {
R result = (object_->*member_)(a1,a2);
return result;
} else {
R result = (object_->*member_)(a1,a2);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class A1, class A2>
class _ConstTessMemberResultCallback_0_2<del, void, T, A1, A2>
: public TessCallback2<A1,A2> {
public:
typedef TessCallback2<A1,A2> base;
typedef void (T::*MemberSignature)(A1,A2) const;
private:
const T* object_;
MemberSignature member_;
public:
inline _ConstTessMemberResultCallback_0_2(
const T* object, MemberSignature member)
: object_(object),
member_(member) {
}
virtual void Run(A1 a1,A2 a2) {
if (!del) {
(object_->*member_)(a1,a2);
} else {
(object_->*member_)(a1,a2);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class A1, class A2>
inline typename _ConstTessMemberResultCallback_0_2<true,R,T1,A1,A2>::base*
NewTessCallback(
const T1* obj, R (T2::*member)(A1,A2) const) {
return new _ConstTessMemberResultCallback_0_2<true,R,T1,A1,A2>(
obj, member);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class A1, class A2>
inline typename _ConstTessMemberResultCallback_0_2<false,R,T1,A1,A2>::base*
NewPermanentTessCallback(
const T1* obj, R (T2::*member)(A1,A2) const) {
return new _ConstTessMemberResultCallback_0_2<false,R,T1,A1,A2>(
obj, member);
}
#endif
template <bool del, class R, class T, class A1, class A2>
class _TessMemberResultCallback_0_2 : public TessResultCallback2<R,A1,A2> {
public:
typedef TessResultCallback2<R,A1,A2> base;
typedef R (T::*MemberSignature)(A1,A2) ;
private:
T* object_;
MemberSignature member_;
public:
inline _TessMemberResultCallback_0_2(
T* object, MemberSignature member)
: object_(object),
member_(member) {
}
virtual R Run(A1 a1,A2 a2) {
if (!del) {
R result = (object_->*member_)(a1,a2);
return result;
} else {
R result = (object_->*member_)(a1,a2);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class A1, class A2>
class _TessMemberResultCallback_0_2<del, void, T, A1, A2>
: public TessCallback2<A1,A2> {
public:
typedef TessCallback2<A1,A2> base;
typedef void (T::*MemberSignature)(A1,A2) ;
private:
T* object_;
MemberSignature member_;
public:
inline _TessMemberResultCallback_0_2(
T* object, MemberSignature member)
: object_(object),
member_(member) {
}
virtual void Run(A1 a1,A2 a2) {
if (!del) {
(object_->*member_)(a1,a2);
} else {
(object_->*member_)(a1,a2);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class A1, class A2>
inline typename _TessMemberResultCallback_0_2<true,R,T1,A1,A2>::base*
NewTessCallback(
T1* obj, R (T2::*member)(A1,A2) ) {
return new _TessMemberResultCallback_0_2<true,R,T1,A1,A2>(
obj, member);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class A1, class A2>
inline typename _TessMemberResultCallback_0_2<false,R,T1,A1,A2>::base*
NewPermanentTessCallback(
T1* obj, R (T2::*member)(A1,A2) ) {
return new _TessMemberResultCallback_0_2<false,R,T1,A1,A2>(
obj, member);
}
#endif
template <bool del, class R, class A1, class A2>
class _TessFunctionResultCallback_0_2 : public TessResultCallback2<R,A1,A2> {
public:
typedef TessResultCallback2<R,A1,A2> base;
typedef R (*FunctionSignature)(A1,A2);
private:
FunctionSignature function_;
public:
inline _TessFunctionResultCallback_0_2(
FunctionSignature function)
: function_(function) {
}
virtual R Run(A1 a1,A2 a2) {
if (!del) {
R result = (*function_)(a1,a2);
return result;
} else {
R result = (*function_)(a1,a2);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class A1, class A2>
class _TessFunctionResultCallback_0_2<del, void, A1, A2>
: public TessCallback2<A1,A2> {
public:
typedef TessCallback2<A1,A2> base;
typedef void (*FunctionSignature)(A1,A2);
private:
FunctionSignature function_;
public:
inline _TessFunctionResultCallback_0_2(
FunctionSignature function)
: function_(function) {
}
virtual void Run(A1 a1,A2 a2) {
if (!del) {
(*function_)(a1,a2);
} else {
(*function_)(a1,a2);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
}
}
};
template <class R, class A1, class A2>
inline typename _TessFunctionResultCallback_0_2<true,R,A1,A2>::base*
NewTessCallback(R (*function)(A1,A2)) {
return new _TessFunctionResultCallback_0_2<true,R,A1,A2>(function);
}
template <class R, class A1, class A2>
inline typename _TessFunctionResultCallback_0_2<false,R,A1,A2>::base*
NewPermanentTessCallback(R (*function)(A1,A2)) {
return new _TessFunctionResultCallback_0_2<false,R,A1,A2>(function);
}
template <bool del, class R, class T, class P1, class A1, class A2>
class _ConstTessMemberResultCallback_1_2 : public TessResultCallback2<R,A1,A2> {
public:
typedef TessResultCallback2<R,A1,A2> base;
typedef R (T::*MemberSignature)(P1,A1,A2) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
public:
inline _ConstTessMemberResultCallback_1_2(const T* object, MemberSignature member, P1 p1)
: object_(object),
member_(member), p1_(p1) { }
virtual R Run(A1 a1,A2 a2) {
if (!del) {
R result = (object_->*member_)(p1_,a1,a2);
return result;
} else {
R result = (object_->*member_)(p1_,a1,a2);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class A1, class A2>
class _ConstTessMemberResultCallback_1_2<del, void, T, P1, A1, A2> : public TessCallback2<A1,A2> {
public:
typedef TessCallback2<A1,A2> base;
typedef void (T::*MemberSignature)(P1,A1,A2) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
public:
inline _ConstTessMemberResultCallback_1_2(const T* object, MemberSignature member, P1 p1)
: object_(object),
member_(member), p1_(p1) { }
virtual void Run(A1 a1,A2 a2) {
if (!del) {
(object_->*member_)(p1_,a1,a2);
} else {
(object_->*member_)(p1_,a1,a2);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class A1, class A2>
inline typename _ConstTessMemberResultCallback_1_2<true,R,T1,P1,A1,A2>::base*
NewTessCallback(const T1* obj, R (T2::*member)(P1,A1,A2) const, typename Identity<P1>::type p1) {
return new _ConstTessMemberResultCallback_1_2<true,R,T1,P1,A1,A2>(obj, member, p1);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class A1, class A2>
inline typename _ConstTessMemberResultCallback_1_2<false,R,T1,P1,A1,A2>::base*
NewPermanentTessCallback(const T1* obj, R (T2::*member)(P1,A1,A2) const, typename Identity<P1>::type p1) {
return new _ConstTessMemberResultCallback_1_2<false,R,T1,P1,A1,A2>(obj, member, p1);
}
#endif
template <bool del, class R, class T, class P1, class A1, class A2>
class _TessMemberResultCallback_1_2 : public TessResultCallback2<R,A1,A2> {
public:
typedef TessResultCallback2<R,A1,A2> base;
typedef R (T::*MemberSignature)(P1,A1,A2) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
public:
inline _TessMemberResultCallback_1_2( T* object, MemberSignature member, P1 p1)
: object_(object),
member_(member), p1_(p1) { }
virtual R Run(A1 a1,A2 a2) {
if (!del) {
R result = (object_->*member_)(p1_,a1,a2);
return result;
} else {
R result = (object_->*member_)(p1_,a1,a2);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class A1, class A2>
class _TessMemberResultCallback_1_2<del, void, T, P1, A1, A2> : public TessCallback2<A1,A2> {
public:
typedef TessCallback2<A1,A2> base;
typedef void (T::*MemberSignature)(P1,A1,A2) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
public:
inline _TessMemberResultCallback_1_2( T* object, MemberSignature member, P1 p1)
: object_(object),
member_(member), p1_(p1) { }
virtual void Run(A1 a1,A2 a2) {
if (!del) {
(object_->*member_)(p1_,a1,a2);
} else {
(object_->*member_)(p1_,a1,a2);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class A1, class A2>
inline typename _TessMemberResultCallback_1_2<true,R,T1,P1,A1,A2>::base*
NewTessCallback( T1* obj, R (T2::*member)(P1,A1,A2) , typename Identity<P1>::type p1) {
return new _TessMemberResultCallback_1_2<true,R,T1,P1,A1,A2>(obj, member, p1);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class A1, class A2>
inline typename _TessMemberResultCallback_1_2<false,R,T1,P1,A1,A2>::base*
NewPermanentTessCallback( T1* obj, R (T2::*member)(P1,A1,A2) , typename Identity<P1>::type p1) {
return new _TessMemberResultCallback_1_2<false,R,T1,P1,A1,A2>(obj, member, p1);
}
#endif
template <bool del, class R, class P1, class A1, class A2>
class _TessFunctionResultCallback_1_2 : public TessResultCallback2<R,A1,A2> {
public:
typedef TessResultCallback2<R,A1,A2> base;
typedef R (*FunctionSignature)(P1,A1,A2);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
public:
inline _TessFunctionResultCallback_1_2(FunctionSignature function, P1 p1)
: function_(function), p1_(p1) { }
virtual R Run(A1 a1,A2 a2) {
if (!del) {
R result = (*function_)(p1_,a1,a2);
return result;
} else {
R result = (*function_)(p1_,a1,a2);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class P1, class A1, class A2>
class _TessFunctionResultCallback_1_2<del, void, P1, A1, A2> : public TessCallback2<A1,A2> {
public:
typedef TessCallback2<A1,A2> base;
typedef void (*FunctionSignature)(P1,A1,A2);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
public:
inline _TessFunctionResultCallback_1_2(FunctionSignature function, P1 p1)
: function_(function), p1_(p1) { }
virtual void Run(A1 a1,A2 a2) {
if (!del) {
(*function_)(p1_,a1,a2);
} else {
(*function_)(p1_,a1,a2);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
}
}
};
template <class R, class P1, class A1, class A2>
inline typename _TessFunctionResultCallback_1_2<true,R,P1,A1,A2>::base*
NewTessCallback(R (*function)(P1,A1,A2), typename Identity<P1>::type p1) {
return new _TessFunctionResultCallback_1_2<true,R,P1,A1,A2>(function, p1);
}
template <class R, class P1, class A1, class A2>
inline typename _TessFunctionResultCallback_1_2<false,R,P1,A1,A2>::base*
NewPermanentTessCallback(R (*function)(P1,A1,A2), typename Identity<P1>::type p1) {
return new _TessFunctionResultCallback_1_2<false,R,P1,A1,A2>(function, p1);
}
template <bool del, class R, class T, class P1, class P2, class A1, class A2>
class _ConstTessMemberResultCallback_2_2 : public TessResultCallback2<R,A1,A2> {
public:
typedef TessResultCallback2<R,A1,A2> base;
typedef R (T::*MemberSignature)(P1,P2,A1,A2) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
public:
inline _ConstTessMemberResultCallback_2_2(const T* object, MemberSignature member, P1 p1, P2 p2)
: object_(object),
member_(member), p1_(p1), p2_(p2) { }
virtual R Run(A1 a1,A2 a2) {
if (!del) {
R result = (object_->*member_)(p1_,p2_,a1,a2);
return result;
} else {
R result = (object_->*member_)(p1_,p2_,a1,a2);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class P2, class A1, class A2>
class _ConstTessMemberResultCallback_2_2<del, void, T, P1, P2, A1, A2> : public TessCallback2<A1,A2> {
public:
typedef TessCallback2<A1,A2> base;
typedef void (T::*MemberSignature)(P1,P2,A1,A2) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
public:
inline _ConstTessMemberResultCallback_2_2(const T* object, MemberSignature member, P1 p1, P2 p2)
: object_(object),
member_(member), p1_(p1), p2_(p2) { }
virtual void Run(A1 a1,A2 a2) {
if (!del) {
(object_->*member_)(p1_,p2_,a1,a2);
} else {
(object_->*member_)(p1_,p2_,a1,a2);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class A1, class A2>
inline typename _ConstTessMemberResultCallback_2_2<true,R,T1,P1,P2,A1,A2>::base*
NewTessCallback(const T1* obj, R (T2::*member)(P1,P2,A1,A2) const, typename Identity<P1>::type p1, typename Identity<P2>::type p2) {
return new _ConstTessMemberResultCallback_2_2<true,R,T1,P1,P2,A1,A2>(obj, member, p1, p2);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class A1, class A2>
inline typename _ConstTessMemberResultCallback_2_2<false,R,T1,P1,P2,A1,A2>::base*
NewPermanentTessCallback(const T1* obj, R (T2::*member)(P1,P2,A1,A2) const, typename Identity<P1>::type p1, typename Identity<P2>::type p2) {
return new _ConstTessMemberResultCallback_2_2<false,R,T1,P1,P2,A1,A2>(obj, member, p1, p2);
}
#endif
template <bool del, class R, class T, class P1, class P2, class A1, class A2>
class _TessMemberResultCallback_2_2 : public TessResultCallback2<R,A1,A2> {
public:
typedef TessResultCallback2<R,A1,A2> base;
typedef R (T::*MemberSignature)(P1,P2,A1,A2) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
public:
inline _TessMemberResultCallback_2_2( T* object, MemberSignature member, P1 p1, P2 p2)
: object_(object),
member_(member), p1_(p1), p2_(p2) { }
virtual R Run(A1 a1,A2 a2) {
if (!del) {
R result = (object_->*member_)(p1_,p2_,a1,a2);
return result;
} else {
R result = (object_->*member_)(p1_,p2_,a1,a2);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class P2, class A1, class A2>
class _TessMemberResultCallback_2_2<del, void, T, P1, P2, A1, A2> : public TessCallback2<A1,A2> {
public:
typedef TessCallback2<A1,A2> base;
typedef void (T::*MemberSignature)(P1,P2,A1,A2) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
public:
inline _TessMemberResultCallback_2_2( T* object, MemberSignature member, P1 p1, P2 p2)
: object_(object),
member_(member), p1_(p1), p2_(p2) { }
virtual void Run(A1 a1,A2 a2) {
if (!del) {
(object_->*member_)(p1_,p2_,a1,a2);
} else {
(object_->*member_)(p1_,p2_,a1,a2);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class A1, class A2>
inline typename _TessMemberResultCallback_2_2<true,R,T1,P1,P2,A1,A2>::base*
NewTessCallback( T1* obj, R (T2::*member)(P1,P2,A1,A2) , typename Identity<P1>::type p1, typename Identity<P2>::type p2) {
return new _TessMemberResultCallback_2_2<true,R,T1,P1,P2,A1,A2>(obj, member, p1, p2);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class A1, class A2>
inline typename _TessMemberResultCallback_2_2<false,R,T1,P1,P2,A1,A2>::base*
NewPermanentTessCallback( T1* obj, R (T2::*member)(P1,P2,A1,A2) , typename Identity<P1>::type p1, typename Identity<P2>::type p2) {
return new _TessMemberResultCallback_2_2<false,R,T1,P1,P2,A1,A2>(obj, member, p1, p2);
}
#endif
template <bool del, class R, class P1, class P2, class A1, class A2>
class _TessFunctionResultCallback_2_2 : public TessResultCallback2<R,A1,A2> {
public:
typedef TessResultCallback2<R,A1,A2> base;
typedef R (*FunctionSignature)(P1,P2,A1,A2);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
public:
inline _TessFunctionResultCallback_2_2(FunctionSignature function, P1 p1, P2 p2)
: function_(function), p1_(p1), p2_(p2) { }
virtual R Run(A1 a1,A2 a2) {
if (!del) {
R result = (*function_)(p1_,p2_,a1,a2);
return result;
} else {
R result = (*function_)(p1_,p2_,a1,a2);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class P1, class P2, class A1, class A2>
class _TessFunctionResultCallback_2_2<del, void, P1, P2, A1, A2> : public TessCallback2<A1,A2> {
public:
typedef TessCallback2<A1,A2> base;
typedef void (*FunctionSignature)(P1,P2,A1,A2);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
public:
inline _TessFunctionResultCallback_2_2(FunctionSignature function, P1 p1, P2 p2)
: function_(function), p1_(p1), p2_(p2) { }
virtual void Run(A1 a1,A2 a2) {
if (!del) {
(*function_)(p1_,p2_,a1,a2);
} else {
(*function_)(p1_,p2_,a1,a2);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
}
}
};
template <class R, class P1, class P2, class A1, class A2>
inline typename _TessFunctionResultCallback_2_2<true,R,P1,P2,A1,A2>::base*
NewTessCallback(R (*function)(P1,P2,A1,A2), typename Identity<P1>::type p1, typename Identity<P2>::type p2) {
return new _TessFunctionResultCallback_2_2<true,R,P1,P2,A1,A2>(function, p1, p2);
}
template <class R, class P1, class P2, class A1, class A2>
inline typename _TessFunctionResultCallback_2_2<false,R,P1,P2,A1,A2>::base*
NewPermanentTessCallback(R (*function)(P1,P2,A1,A2), typename Identity<P1>::type p1, typename Identity<P2>::type p2) {
return new _TessFunctionResultCallback_2_2<false,R,P1,P2,A1,A2>(function, p1, p2);
}
template <bool del, class R, class T, class P1, class P2, class P3, class A1, class A2>
class _ConstTessMemberResultCallback_3_2 : public TessResultCallback2<R,A1,A2> {
public:
typedef TessResultCallback2<R,A1,A2> base;
typedef R (T::*MemberSignature)(P1,P2,P3,A1,A2) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
public:
inline _ConstTessMemberResultCallback_3_2(const T* object, MemberSignature member, P1 p1, P2 p2, P3 p3)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3) { }
virtual R Run(A1 a1,A2 a2) {
if (!del) {
R result = (object_->*member_)(p1_,p2_,p3_,a1,a2);
return result;
} else {
R result = (object_->*member_)(p1_,p2_,p3_,a1,a2);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class P2, class P3, class A1, class A2>
class _ConstTessMemberResultCallback_3_2<del, void, T, P1, P2, P3, A1, A2> : public TessCallback2<A1,A2> {
public:
typedef TessCallback2<A1,A2> base;
typedef void (T::*MemberSignature)(P1,P2,P3,A1,A2) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
public:
inline _ConstTessMemberResultCallback_3_2(const T* object, MemberSignature member, P1 p1, P2 p2, P3 p3)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3) { }
virtual void Run(A1 a1,A2 a2) {
if (!del) {
(object_->*member_)(p1_,p2_,p3_,a1,a2);
} else {
(object_->*member_)(p1_,p2_,p3_,a1,a2);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class A1, class A2>
inline typename _ConstTessMemberResultCallback_3_2<true,R,T1,P1,P2,P3,A1,A2>::base*
NewTessCallback(const T1* obj, R (T2::*member)(P1,P2,P3,A1,A2) const, typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3) {
return new _ConstTessMemberResultCallback_3_2<true,R,T1,P1,P2,P3,A1,A2>(obj, member, p1, p2, p3);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class A1, class A2>
inline typename _ConstTessMemberResultCallback_3_2<false,R,T1,P1,P2,P3,A1,A2>::base*
NewPermanentTessCallback(const T1* obj, R (T2::*member)(P1,P2,P3,A1,A2) const, typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3) {
return new _ConstTessMemberResultCallback_3_2<false,R,T1,P1,P2,P3,A1,A2>(obj, member, p1, p2, p3);
}
#endif
template <bool del, class R, class T, class P1, class P2, class P3, class A1, class A2>
class _TessMemberResultCallback_3_2 : public TessResultCallback2<R,A1,A2> {
public:
typedef TessResultCallback2<R,A1,A2> base;
typedef R (T::*MemberSignature)(P1,P2,P3,A1,A2) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
public:
inline _TessMemberResultCallback_3_2( T* object, MemberSignature member, P1 p1, P2 p2, P3 p3)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3) { }
virtual R Run(A1 a1,A2 a2) {
if (!del) {
R result = (object_->*member_)(p1_,p2_,p3_,a1,a2);
return result;
} else {
R result = (object_->*member_)(p1_,p2_,p3_,a1,a2);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class P2, class P3, class A1, class A2>
class _TessMemberResultCallback_3_2<del, void, T, P1, P2, P3, A1, A2> : public TessCallback2<A1,A2> {
public:
typedef TessCallback2<A1,A2> base;
typedef void (T::*MemberSignature)(P1,P2,P3,A1,A2) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
public:
inline _TessMemberResultCallback_3_2( T* object, MemberSignature member, P1 p1, P2 p2, P3 p3)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3) { }
virtual void Run(A1 a1,A2 a2) {
if (!del) {
(object_->*member_)(p1_,p2_,p3_,a1,a2);
} else {
(object_->*member_)(p1_,p2_,p3_,a1,a2);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class A1, class A2>
inline typename _TessMemberResultCallback_3_2<true,R,T1,P1,P2,P3,A1,A2>::base*
NewTessCallback( T1* obj, R (T2::*member)(P1,P2,P3,A1,A2) , typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3) {
return new _TessMemberResultCallback_3_2<true,R,T1,P1,P2,P3,A1,A2>(obj, member, p1, p2, p3);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class A1, class A2>
inline typename _TessMemberResultCallback_3_2<false,R,T1,P1,P2,P3,A1,A2>::base*
NewPermanentTessCallback( T1* obj, R (T2::*member)(P1,P2,P3,A1,A2) , typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3) {
return new _TessMemberResultCallback_3_2<false,R,T1,P1,P2,P3,A1,A2>(obj, member, p1, p2, p3);
}
#endif
template <bool del, class R, class P1, class P2, class P3, class A1, class A2>
class _TessFunctionResultCallback_3_2 : public TessResultCallback2<R,A1,A2> {
public:
typedef TessResultCallback2<R,A1,A2> base;
typedef R (*FunctionSignature)(P1,P2,P3,A1,A2);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
public:
inline _TessFunctionResultCallback_3_2(FunctionSignature function, P1 p1, P2 p2, P3 p3)
: function_(function), p1_(p1), p2_(p2), p3_(p3) { }
virtual R Run(A1 a1,A2 a2) {
if (!del) {
R result = (*function_)(p1_,p2_,p3_,a1,a2);
return result;
} else {
R result = (*function_)(p1_,p2_,p3_,a1,a2);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class P1, class P2, class P3, class A1, class A2>
class _TessFunctionResultCallback_3_2<del, void, P1, P2, P3, A1, A2> : public TessCallback2<A1,A2> {
public:
typedef TessCallback2<A1,A2> base;
typedef void (*FunctionSignature)(P1,P2,P3,A1,A2);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
public:
inline _TessFunctionResultCallback_3_2(FunctionSignature function, P1 p1, P2 p2, P3 p3)
: function_(function), p1_(p1), p2_(p2), p3_(p3) { }
virtual void Run(A1 a1,A2 a2) {
if (!del) {
(*function_)(p1_,p2_,p3_,a1,a2);
} else {
(*function_)(p1_,p2_,p3_,a1,a2);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
}
}
};
template <class R, class P1, class P2, class P3, class A1, class A2>
inline typename _TessFunctionResultCallback_3_2<true,R,P1,P2,P3,A1,A2>::base*
NewTessCallback(R (*function)(P1,P2,P3,A1,A2), typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3) {
return new _TessFunctionResultCallback_3_2<true,R,P1,P2,P3,A1,A2>(function, p1, p2, p3);
}
template <class R, class P1, class P2, class P3, class A1, class A2>
inline typename _TessFunctionResultCallback_3_2<false,R,P1,P2,P3,A1,A2>::base*
NewPermanentTessCallback(R (*function)(P1,P2,P3,A1,A2), typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3) {
return new _TessFunctionResultCallback_3_2<false,R,P1,P2,P3,A1,A2>(function, p1, p2, p3);
}
template <bool del, class R, class T, class P1, class P2, class P3, class P4, class A1, class A2>
class _ConstTessMemberResultCallback_4_2 : public TessResultCallback2<R,A1,A2> {
public:
typedef TessResultCallback2<R,A1,A2> base;
typedef R (T::*MemberSignature)(P1,P2,P3,P4,A1,A2) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
public:
inline _ConstTessMemberResultCallback_4_2(const T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4) { }
virtual R Run(A1 a1,A2 a2) {
if (!del) {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,a1,a2);
return result;
} else {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,a1,a2);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class P2, class P3, class P4, class A1, class A2>
class _ConstTessMemberResultCallback_4_2<del, void, T, P1, P2, P3, P4, A1, A2> : public TessCallback2<A1,A2> {
public:
typedef TessCallback2<A1,A2> base;
typedef void (T::*MemberSignature)(P1,P2,P3,P4,A1,A2) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
public:
inline _ConstTessMemberResultCallback_4_2(const T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4) { }
virtual void Run(A1 a1,A2 a2) {
if (!del) {
(object_->*member_)(p1_,p2_,p3_,p4_,a1,a2);
} else {
(object_->*member_)(p1_,p2_,p3_,p4_,a1,a2);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class A1, class A2>
inline typename _ConstTessMemberResultCallback_4_2<true,R,T1,P1,P2,P3,P4,A1,A2>::base*
NewTessCallback(const T1* obj, R (T2::*member)(P1,P2,P3,P4,A1,A2) const, typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4) {
return new _ConstTessMemberResultCallback_4_2<true,R,T1,P1,P2,P3,P4,A1,A2>(obj, member, p1, p2, p3, p4);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class A1, class A2>
inline typename _ConstTessMemberResultCallback_4_2<false,R,T1,P1,P2,P3,P4,A1,A2>::base*
NewPermanentTessCallback(const T1* obj, R (T2::*member)(P1,P2,P3,P4,A1,A2) const, typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4) {
return new _ConstTessMemberResultCallback_4_2<false,R,T1,P1,P2,P3,P4,A1,A2>(obj, member, p1, p2, p3, p4);
}
#endif
template <bool del, class R, class T, class P1, class P2, class P3, class P4, class A1, class A2>
class _TessMemberResultCallback_4_2 : public TessResultCallback2<R,A1,A2> {
public:
typedef TessResultCallback2<R,A1,A2> base;
typedef R (T::*MemberSignature)(P1,P2,P3,P4,A1,A2) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
public:
inline _TessMemberResultCallback_4_2( T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4) { }
virtual R Run(A1 a1,A2 a2) {
if (!del) {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,a1,a2);
return result;
} else {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,a1,a2);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class P2, class P3, class P4, class A1, class A2>
class _TessMemberResultCallback_4_2<del, void, T, P1, P2, P3, P4, A1, A2> : public TessCallback2<A1,A2> {
public:
typedef TessCallback2<A1,A2> base;
typedef void (T::*MemberSignature)(P1,P2,P3,P4,A1,A2) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
public:
inline _TessMemberResultCallback_4_2( T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4) { }
virtual void Run(A1 a1,A2 a2) {
if (!del) {
(object_->*member_)(p1_,p2_,p3_,p4_,a1,a2);
} else {
(object_->*member_)(p1_,p2_,p3_,p4_,a1,a2);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class A1, class A2>
inline typename _TessMemberResultCallback_4_2<true,R,T1,P1,P2,P3,P4,A1,A2>::base*
NewTessCallback( T1* obj, R (T2::*member)(P1,P2,P3,P4,A1,A2) , typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4) {
return new _TessMemberResultCallback_4_2<true,R,T1,P1,P2,P3,P4,A1,A2>(obj, member, p1, p2, p3, p4);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class A1, class A2>
inline typename _TessMemberResultCallback_4_2<false,R,T1,P1,P2,P3,P4,A1,A2>::base*
NewPermanentTessCallback( T1* obj, R (T2::*member)(P1,P2,P3,P4,A1,A2) , typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4) {
return new _TessMemberResultCallback_4_2<false,R,T1,P1,P2,P3,P4,A1,A2>(obj, member, p1, p2, p3, p4);
}
#endif
template <bool del, class R, class P1, class P2, class P3, class P4, class A1, class A2>
class _TessFunctionResultCallback_4_2 : public TessResultCallback2<R,A1,A2> {
public:
typedef TessResultCallback2<R,A1,A2> base;
typedef R (*FunctionSignature)(P1,P2,P3,P4,A1,A2);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
public:
inline _TessFunctionResultCallback_4_2(FunctionSignature function, P1 p1, P2 p2, P3 p3, P4 p4)
: function_(function), p1_(p1), p2_(p2), p3_(p3), p4_(p4) { }
virtual R Run(A1 a1,A2 a2) {
if (!del) {
R result = (*function_)(p1_,p2_,p3_,p4_,a1,a2);
return result;
} else {
R result = (*function_)(p1_,p2_,p3_,p4_,a1,a2);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class P1, class P2, class P3, class P4, class A1, class A2>
class _TessFunctionResultCallback_4_2<del, void, P1, P2, P3, P4, A1, A2> : public TessCallback2<A1,A2> {
public:
typedef TessCallback2<A1,A2> base;
typedef void (*FunctionSignature)(P1,P2,P3,P4,A1,A2);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
public:
inline _TessFunctionResultCallback_4_2(FunctionSignature function, P1 p1, P2 p2, P3 p3, P4 p4)
: function_(function), p1_(p1), p2_(p2), p3_(p3), p4_(p4) { }
virtual void Run(A1 a1,A2 a2) {
if (!del) {
(*function_)(p1_,p2_,p3_,p4_,a1,a2);
} else {
(*function_)(p1_,p2_,p3_,p4_,a1,a2);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
}
}
};
template <class R, class P1, class P2, class P3, class P4, class A1, class A2>
inline typename _TessFunctionResultCallback_4_2<true,R,P1,P2,P3,P4,A1,A2>::base*
NewTessCallback(R (*function)(P1,P2,P3,P4,A1,A2), typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4) {
return new _TessFunctionResultCallback_4_2<true,R,P1,P2,P3,P4,A1,A2>(function, p1, p2, p3, p4);
}
template <class R, class P1, class P2, class P3, class P4, class A1, class A2>
inline typename _TessFunctionResultCallback_4_2<false,R,P1,P2,P3,P4,A1,A2>::base*
NewPermanentTessCallback(R (*function)(P1,P2,P3,P4,A1,A2), typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4) {
return new _TessFunctionResultCallback_4_2<false,R,P1,P2,P3,P4,A1,A2>(function, p1, p2, p3, p4);
}
template <bool del, class R, class T, class P1, class P2, class P3, class P4, class P5, class A1, class A2>
class _ConstTessMemberResultCallback_5_2 : public TessResultCallback2<R,A1,A2> {
public:
typedef TessResultCallback2<R,A1,A2> base;
typedef R (T::*MemberSignature)(P1,P2,P3,P4,P5,A1,A2) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
public:
inline _ConstTessMemberResultCallback_5_2(const T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5) { }
virtual R Run(A1 a1,A2 a2) {
if (!del) {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,p5_,a1,a2);
return result;
} else {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,p5_,a1,a2);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class P2, class P3, class P4, class P5, class A1, class A2>
class _ConstTessMemberResultCallback_5_2<del, void, T, P1, P2, P3, P4, P5, A1, A2> : public TessCallback2<A1,A2> {
public:
typedef TessCallback2<A1,A2> base;
typedef void (T::*MemberSignature)(P1,P2,P3,P4,P5,A1,A2) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
public:
inline _ConstTessMemberResultCallback_5_2(const T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5) { }
virtual void Run(A1 a1,A2 a2) {
if (!del) {
(object_->*member_)(p1_,p2_,p3_,p4_,p5_,a1,a2);
} else {
(object_->*member_)(p1_,p2_,p3_,p4_,p5_,a1,a2);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class P5, class A1, class A2>
inline typename _ConstTessMemberResultCallback_5_2<true,R,T1,P1,P2,P3,P4,P5,A1,A2>::base*
NewTessCallback(const T1* obj, R (T2::*member)(P1,P2,P3,P4,P5,A1,A2) const, typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5) {
return new _ConstTessMemberResultCallback_5_2<true,R,T1,P1,P2,P3,P4,P5,A1,A2>(obj, member, p1, p2, p3, p4, p5);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class P5, class A1, class A2>
inline typename _ConstTessMemberResultCallback_5_2<false,R,T1,P1,P2,P3,P4,P5,A1,A2>::base*
NewPermanentTessCallback(const T1* obj, R (T2::*member)(P1,P2,P3,P4,P5,A1,A2) const, typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5) {
return new _ConstTessMemberResultCallback_5_2<false,R,T1,P1,P2,P3,P4,P5,A1,A2>(obj, member, p1, p2, p3, p4, p5);
}
#endif
template <bool del, class R, class T, class P1, class P2, class P3, class P4, class P5, class A1, class A2>
class _TessMemberResultCallback_5_2 : public TessResultCallback2<R,A1,A2> {
public:
typedef TessResultCallback2<R,A1,A2> base;
typedef R (T::*MemberSignature)(P1,P2,P3,P4,P5,A1,A2) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
public:
inline _TessMemberResultCallback_5_2( T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5) { }
virtual R Run(A1 a1,A2 a2) {
if (!del) {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,p5_,a1,a2);
return result;
} else {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,p5_,a1,a2);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class P2, class P3, class P4, class P5, class A1, class A2>
class _TessMemberResultCallback_5_2<del, void, T, P1, P2, P3, P4, P5, A1, A2> : public TessCallback2<A1,A2> {
public:
typedef TessCallback2<A1,A2> base;
typedef void (T::*MemberSignature)(P1,P2,P3,P4,P5,A1,A2) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
public:
inline _TessMemberResultCallback_5_2( T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5) { }
virtual void Run(A1 a1,A2 a2) {
if (!del) {
(object_->*member_)(p1_,p2_,p3_,p4_,p5_,a1,a2);
} else {
(object_->*member_)(p1_,p2_,p3_,p4_,p5_,a1,a2);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class P5, class A1, class A2>
inline typename _TessMemberResultCallback_5_2<true,R,T1,P1,P2,P3,P4,P5,A1,A2>::base*
NewTessCallback( T1* obj, R (T2::*member)(P1,P2,P3,P4,P5,A1,A2) , typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5) {
return new _TessMemberResultCallback_5_2<true,R,T1,P1,P2,P3,P4,P5,A1,A2>(obj, member, p1, p2, p3, p4, p5);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class P5, class A1, class A2>
inline typename _TessMemberResultCallback_5_2<false,R,T1,P1,P2,P3,P4,P5,A1,A2>::base*
NewPermanentTessCallback( T1* obj, R (T2::*member)(P1,P2,P3,P4,P5,A1,A2) , typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5) {
return new _TessMemberResultCallback_5_2<false,R,T1,P1,P2,P3,P4,P5,A1,A2>(obj, member, p1, p2, p3, p4, p5);
}
#endif
template <bool del, class R, class P1, class P2, class P3, class P4, class P5, class A1, class A2>
class _TessFunctionResultCallback_5_2 : public TessResultCallback2<R,A1,A2> {
public:
typedef TessResultCallback2<R,A1,A2> base;
typedef R (*FunctionSignature)(P1,P2,P3,P4,P5,A1,A2);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
public:
inline _TessFunctionResultCallback_5_2(FunctionSignature function, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5)
: function_(function), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5) { }
virtual R Run(A1 a1,A2 a2) {
if (!del) {
R result = (*function_)(p1_,p2_,p3_,p4_,p5_,a1,a2);
return result;
} else {
R result = (*function_)(p1_,p2_,p3_,p4_,p5_,a1,a2);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class P1, class P2, class P3, class P4, class P5, class A1, class A2>
class _TessFunctionResultCallback_5_2<del, void, P1, P2, P3, P4, P5, A1, A2> : public TessCallback2<A1,A2> {
public:
typedef TessCallback2<A1,A2> base;
typedef void (*FunctionSignature)(P1,P2,P3,P4,P5,A1,A2);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
public:
inline _TessFunctionResultCallback_5_2(FunctionSignature function, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5)
: function_(function), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5) { }
virtual void Run(A1 a1,A2 a2) {
if (!del) {
(*function_)(p1_,p2_,p3_,p4_,p5_,a1,a2);
} else {
(*function_)(p1_,p2_,p3_,p4_,p5_,a1,a2);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
}
}
};
template <class R, class P1, class P2, class P3, class P4, class P5, class A1, class A2>
inline typename _TessFunctionResultCallback_5_2<true,R,P1,P2,P3,P4,P5,A1,A2>::base*
NewTessCallback(R (*function)(P1,P2,P3,P4,P5,A1,A2), typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5) {
return new _TessFunctionResultCallback_5_2<true,R,P1,P2,P3,P4,P5,A1,A2>(function, p1, p2, p3, p4, p5);
}
template <class R, class P1, class P2, class P3, class P4, class P5, class A1, class A2>
inline typename _TessFunctionResultCallback_5_2<false,R,P1,P2,P3,P4,P5,A1,A2>::base*
NewPermanentTessCallback(R (*function)(P1,P2,P3,P4,P5,A1,A2), typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5) {
return new _TessFunctionResultCallback_5_2<false,R,P1,P2,P3,P4,P5,A1,A2>(function, p1, p2, p3, p4, p5);
}
template <bool del, class R, class T, class P1, class P2, class P3, class P4, class P5, class P6, class A1, class A2>
class _ConstTessMemberResultCallback_6_2 : public TessResultCallback2<R,A1,A2> {
public:
typedef TessResultCallback2<R,A1,A2> base;
typedef R (T::*MemberSignature)(P1,P2,P3,P4,P5,P6,A1,A2) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
typename remove_reference<P6>::type p6_;
public:
inline _ConstTessMemberResultCallback_6_2(const T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5), p6_(p6) { }
virtual R Run(A1 a1,A2 a2) {
if (!del) {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,p5_,p6_,a1,a2);
return result;
} else {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,p5_,p6_,a1,a2);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class P2, class P3, class P4, class P5, class P6, class A1, class A2>
class _ConstTessMemberResultCallback_6_2<del, void, T, P1, P2, P3, P4, P5, P6, A1, A2> : public TessCallback2<A1,A2> {
public:
typedef TessCallback2<A1,A2> base;
typedef void (T::*MemberSignature)(P1,P2,P3,P4,P5,P6,A1,A2) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
typename remove_reference<P6>::type p6_;
public:
inline _ConstTessMemberResultCallback_6_2(const T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5), p6_(p6) { }
virtual void Run(A1 a1,A2 a2) {
if (!del) {
(object_->*member_)(p1_,p2_,p3_,p4_,p5_,p6_,a1,a2);
} else {
(object_->*member_)(p1_,p2_,p3_,p4_,p5_,p6_,a1,a2);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class P5, class P6, class A1, class A2>
inline typename _ConstTessMemberResultCallback_6_2<true,R,T1,P1,P2,P3,P4,P5,P6,A1,A2>::base*
NewTessCallback(const T1* obj, R (T2::*member)(P1,P2,P3,P4,P5,P6,A1,A2) const, typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5, typename Identity<P6>::type p6) {
return new _ConstTessMemberResultCallback_6_2<true,R,T1,P1,P2,P3,P4,P5,P6,A1,A2>(obj, member, p1, p2, p3, p4, p5, p6);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class P5, class P6, class A1, class A2>
inline typename _ConstTessMemberResultCallback_6_2<false,R,T1,P1,P2,P3,P4,P5,P6,A1,A2>::base*
NewPermanentTessCallback(const T1* obj, R (T2::*member)(P1,P2,P3,P4,P5,P6,A1,A2) const, typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5, typename Identity<P6>::type p6) {
return new _ConstTessMemberResultCallback_6_2<false,R,T1,P1,P2,P3,P4,P5,P6,A1,A2>(obj, member, p1, p2, p3, p4, p5, p6);
}
#endif
template <bool del, class R, class T, class P1, class P2, class P3, class P4, class P5, class P6, class A1, class A2>
class _TessMemberResultCallback_6_2 : public TessResultCallback2<R,A1,A2> {
public:
typedef TessResultCallback2<R,A1,A2> base;
typedef R (T::*MemberSignature)(P1,P2,P3,P4,P5,P6,A1,A2) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
typename remove_reference<P6>::type p6_;
public:
inline _TessMemberResultCallback_6_2( T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5), p6_(p6) { }
virtual R Run(A1 a1,A2 a2) {
if (!del) {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,p5_,p6_,a1,a2);
return result;
} else {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,p5_,p6_,a1,a2);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class P2, class P3, class P4, class P5, class P6, class A1, class A2>
class _TessMemberResultCallback_6_2<del, void, T, P1, P2, P3, P4, P5, P6, A1, A2> : public TessCallback2<A1,A2> {
public:
typedef TessCallback2<A1,A2> base;
typedef void (T::*MemberSignature)(P1,P2,P3,P4,P5,P6,A1,A2) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
typename remove_reference<P6>::type p6_;
public:
inline _TessMemberResultCallback_6_2( T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5), p6_(p6) { }
virtual void Run(A1 a1,A2 a2) {
if (!del) {
(object_->*member_)(p1_,p2_,p3_,p4_,p5_,p6_,a1,a2);
} else {
(object_->*member_)(p1_,p2_,p3_,p4_,p5_,p6_,a1,a2);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class P5, class P6, class A1, class A2>
inline typename _TessMemberResultCallback_6_2<true,R,T1,P1,P2,P3,P4,P5,P6,A1,A2>::base*
NewTessCallback( T1* obj, R (T2::*member)(P1,P2,P3,P4,P5,P6,A1,A2) , typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5, typename Identity<P6>::type p6) {
return new _TessMemberResultCallback_6_2<true,R,T1,P1,P2,P3,P4,P5,P6,A1,A2>(obj, member, p1, p2, p3, p4, p5, p6);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class P5, class P6, class A1, class A2>
inline typename _TessMemberResultCallback_6_2<false,R,T1,P1,P2,P3,P4,P5,P6,A1,A2>::base*
NewPermanentTessCallback( T1* obj, R (T2::*member)(P1,P2,P3,P4,P5,P6,A1,A2) , typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5, typename Identity<P6>::type p6) {
return new _TessMemberResultCallback_6_2<false,R,T1,P1,P2,P3,P4,P5,P6,A1,A2>(obj, member, p1, p2, p3, p4, p5, p6);
}
#endif
template <bool del, class R, class P1, class P2, class P3, class P4, class P5, class P6, class A1, class A2>
class _TessFunctionResultCallback_6_2 : public TessResultCallback2<R,A1,A2> {
public:
typedef TessResultCallback2<R,A1,A2> base;
typedef R (*FunctionSignature)(P1,P2,P3,P4,P5,P6,A1,A2);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
typename remove_reference<P6>::type p6_;
public:
inline _TessFunctionResultCallback_6_2(FunctionSignature function, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6)
: function_(function), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5), p6_(p6) { }
virtual R Run(A1 a1,A2 a2) {
if (!del) {
R result = (*function_)(p1_,p2_,p3_,p4_,p5_,p6_,a1,a2);
return result;
} else {
R result = (*function_)(p1_,p2_,p3_,p4_,p5_,p6_,a1,a2);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class P1, class P2, class P3, class P4, class P5, class P6, class A1, class A2>
class _TessFunctionResultCallback_6_2<del, void, P1, P2, P3, P4, P5, P6, A1, A2> : public TessCallback2<A1,A2> {
public:
typedef TessCallback2<A1,A2> base;
typedef void (*FunctionSignature)(P1,P2,P3,P4,P5,P6,A1,A2);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
typename remove_reference<P6>::type p6_;
public:
inline _TessFunctionResultCallback_6_2(FunctionSignature function, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6)
: function_(function), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5), p6_(p6) { }
virtual void Run(A1 a1,A2 a2) {
if (!del) {
(*function_)(p1_,p2_,p3_,p4_,p5_,p6_,a1,a2);
} else {
(*function_)(p1_,p2_,p3_,p4_,p5_,p6_,a1,a2);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
}
}
};
template <class R, class P1, class P2, class P3, class P4, class P5, class P6, class A1, class A2>
inline typename _TessFunctionResultCallback_6_2<true,R,P1,P2,P3,P4,P5,P6,A1,A2>::base*
NewTessCallback(R (*function)(P1,P2,P3,P4,P5,P6,A1,A2), typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5, typename Identity<P6>::type p6) {
return new _TessFunctionResultCallback_6_2<true,R,P1,P2,P3,P4,P5,P6,A1,A2>(function, p1, p2, p3, p4, p5, p6);
}
template <class R, class P1, class P2, class P3, class P4, class P5, class P6, class A1, class A2>
inline typename _TessFunctionResultCallback_6_2<false,R,P1,P2,P3,P4,P5,P6,A1,A2>::base*
NewPermanentTessCallback(R (*function)(P1,P2,P3,P4,P5,P6,A1,A2), typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5, typename Identity<P6>::type p6) {
return new _TessFunctionResultCallback_6_2<false,R,P1,P2,P3,P4,P5,P6,A1,A2>(function, p1, p2, p3, p4, p5, p6);
}
template <bool del, class R, class T, class A1, class A2, class A3>
class _ConstTessMemberResultCallback_0_3 : public TessResultCallback3<R,A1,A2,A3> {
public:
typedef TessResultCallback3<R,A1,A2,A3> base;
typedef R (T::*MemberSignature)(A1,A2,A3) const;
private:
const T* object_;
MemberSignature member_;
public:
inline _ConstTessMemberResultCallback_0_3(
const T* object, MemberSignature member)
: object_(object),
member_(member) {
}
virtual R Run(A1 a1,A2 a2,A3 a3) {
if (!del) {
R result = (object_->*member_)(a1,a2,a3);
return result;
} else {
R result = (object_->*member_)(a1,a2,a3);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class A1, class A2, class A3>
class _ConstTessMemberResultCallback_0_3<del, void, T, A1, A2, A3>
: public TessCallback3<A1,A2,A3> {
public:
typedef TessCallback3<A1,A2,A3> base;
typedef void (T::*MemberSignature)(A1,A2,A3) const;
private:
const T* object_;
MemberSignature member_;
public:
inline _ConstTessMemberResultCallback_0_3(
const T* object, MemberSignature member)
: object_(object),
member_(member) {
}
virtual void Run(A1 a1,A2 a2,A3 a3) {
if (!del) {
(object_->*member_)(a1,a2,a3);
} else {
(object_->*member_)(a1,a2,a3);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class A1, class A2, class A3>
inline typename _ConstTessMemberResultCallback_0_3<true,R,T1,A1,A2,A3>::base*
NewTessCallback(
const T1* obj, R (T2::*member)(A1,A2,A3) const) {
return new _ConstTessMemberResultCallback_0_3<true,R,T1,A1,A2,A3>(
obj, member);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class A1, class A2, class A3>
inline typename _ConstTessMemberResultCallback_0_3<false,R,T1,A1,A2,A3>::base*
NewPermanentTessCallback(
const T1* obj, R (T2::*member)(A1,A2,A3) const) {
return new _ConstTessMemberResultCallback_0_3<false,R,T1,A1,A2,A3>(
obj, member);
}
#endif
template <bool del, class R, class T, class A1, class A2, class A3>
class _TessMemberResultCallback_0_3 : public TessResultCallback3<R,A1,A2,A3> {
public:
typedef TessResultCallback3<R,A1,A2,A3> base;
typedef R (T::*MemberSignature)(A1,A2,A3) ;
private:
T* object_;
MemberSignature member_;
public:
inline _TessMemberResultCallback_0_3(
T* object, MemberSignature member)
: object_(object),
member_(member) {
}
virtual R Run(A1 a1,A2 a2,A3 a3) {
if (!del) {
R result = (object_->*member_)(a1,a2,a3);
return result;
} else {
R result = (object_->*member_)(a1,a2,a3);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class A1, class A2, class A3>
class _TessMemberResultCallback_0_3<del, void, T, A1, A2, A3>
: public TessCallback3<A1,A2,A3> {
public:
typedef TessCallback3<A1,A2,A3> base;
typedef void (T::*MemberSignature)(A1,A2,A3) ;
private:
T* object_;
MemberSignature member_;
public:
inline _TessMemberResultCallback_0_3(
T* object, MemberSignature member)
: object_(object),
member_(member) {
}
virtual void Run(A1 a1,A2 a2,A3 a3) {
if (!del) {
(object_->*member_)(a1,a2,a3);
} else {
(object_->*member_)(a1,a2,a3);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class A1, class A2, class A3>
inline typename _TessMemberResultCallback_0_3<true,R,T1,A1,A2,A3>::base*
NewTessCallback(
T1* obj, R (T2::*member)(A1,A2,A3) ) {
return new _TessMemberResultCallback_0_3<true,R,T1,A1,A2,A3>(
obj, member);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class A1, class A2, class A3>
inline typename _TessMemberResultCallback_0_3<false,R,T1,A1,A2,A3>::base*
NewPermanentTessCallback(
T1* obj, R (T2::*member)(A1,A2,A3) ) {
return new _TessMemberResultCallback_0_3<false,R,T1,A1,A2,A3>(
obj, member);
}
#endif
template <bool del, class R, class A1, class A2, class A3>
class _TessFunctionResultCallback_0_3 : public TessResultCallback3<R,A1,A2,A3> {
public:
typedef TessResultCallback3<R,A1,A2,A3> base;
typedef R (*FunctionSignature)(A1,A2,A3);
private:
FunctionSignature function_;
public:
inline _TessFunctionResultCallback_0_3(
FunctionSignature function)
: function_(function) {
}
virtual R Run(A1 a1,A2 a2,A3 a3) {
if (!del) {
R result = (*function_)(a1,a2,a3);
return result;
} else {
R result = (*function_)(a1,a2,a3);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class A1, class A2, class A3>
class _TessFunctionResultCallback_0_3<del, void, A1, A2, A3>
: public TessCallback3<A1,A2,A3> {
public:
typedef TessCallback3<A1,A2,A3> base;
typedef void (*FunctionSignature)(A1,A2,A3);
private:
FunctionSignature function_;
public:
inline _TessFunctionResultCallback_0_3(
FunctionSignature function)
: function_(function) {
}
virtual void Run(A1 a1,A2 a2,A3 a3) {
if (!del) {
(*function_)(a1,a2,a3);
} else {
(*function_)(a1,a2,a3);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
}
}
};
template <class R, class A1, class A2, class A3>
inline typename _TessFunctionResultCallback_0_3<true,R,A1,A2,A3>::base*
NewTessCallback(R (*function)(A1,A2,A3)) {
return new _TessFunctionResultCallback_0_3<true,R,A1,A2,A3>(function);
}
template <class R, class A1, class A2, class A3>
inline typename _TessFunctionResultCallback_0_3<false,R,A1,A2,A3>::base*
NewPermanentTessCallback(R (*function)(A1,A2,A3)) {
return new _TessFunctionResultCallback_0_3<false,R,A1,A2,A3>(function);
}
template <bool del, class R, class T, class P1, class A1, class A2, class A3>
class _ConstTessMemberResultCallback_1_3
: public TessResultCallback3<R,A1,A2,A3> {
public:
typedef TessResultCallback3<R,A1,A2,A3> base;
typedef R (T::*MemberSignature)(P1,A1,A2,A3) const;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
public:
inline _ConstTessMemberResultCallback_1_3(T* object,
MemberSignature member, P1 p1)
: object_(object), member_(member), p1_(p1) { }
virtual R Run(A1 a1, A2 a2, A3 a3) {
if (!del) {
R result = (object_->*member_)(p1_,a1,a2,a3);
return result;
} else {
R result = (object_->*member_)(p1_,a1,a2,a3);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class A1, class A2, class A3>
class _ConstTessMemberResultCallback_1_3<del, void, T, P1, A1, A2, A3>
: public TessCallback3<A1,A2,A3> {
public:
typedef TessCallback3<A1,A2,A3> base;
typedef void (T::*MemberSignature)(P1,A1,A2,A3) const;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
public:
inline _ConstTessMemberResultCallback_1_3(T* object,
MemberSignature member, P1 p1)
: object_(object), member_(member), p1_(p1) { }
virtual void Run(A1 a1, A2 a2, A3 a3) {
if (!del) {
(object_->*member_)(p1_,a1,a2,a3);
} else {
(object_->*member_)(p1_,a1,a2,a3);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class A1, class A2, class A3>
inline typename _ConstTessMemberResultCallback_1_3<true,R,T1,P1,A1,A2,A3>::base*
NewTessCallback( T1* obj, R (T2::*member)(P1,A1,A2,A3) , typename Identity<P1>::type p1) {
return new _ConstTessMemberResultCallback_1_3<true,R,T1,P1,A1,A2,A3>(obj, member, p1);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class A1, class A2, class A3>
inline typename _ConstTessMemberResultCallback_1_3<false,R,T1,P1,A1,A2,A3>::base*
NewPermanentTessCallback( T1* obj, R (T2::*member)(P1,A1,A2,A3) , typename Identity<P1>::type p1) {
return new _ConstTessMemberResultCallback_1_3<false,R,T1,P1,A1,A2,A3>(obj, member, p1);
}
#endif
template <bool del, class R, class T, class P1, class A1, class A2, class A3>
class _TessMemberResultCallback_1_3 : public TessResultCallback3<R,A1,A2,A3> {
public:
typedef TessResultCallback3<R,A1,A2,A3> base;
typedef R (T::*MemberSignature)(P1,A1,A2,A3) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
public:
inline _TessMemberResultCallback_1_3(T* object,
MemberSignature member, P1 p1)
: object_(object), member_(member), p1_(p1) { }
virtual R Run(A1 a1, A2 a2, A3 a3) {
if (!del) {
R result = (object_->*member_)(p1_,a1,a2,a3);
return result;
} else {
R result = (object_->*member_)(p1_,a1,a2,a3);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class A1, class A2, class A3>
class _TessMemberResultCallback_1_3<del, void, T, P1, A1, A2, A3>
: public TessCallback3<A1,A2,A3> {
public:
typedef TessCallback3<A1,A2,A3> base;
typedef void (T::*MemberSignature)(P1,A1,A2,A3) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
public:
inline _TessMemberResultCallback_1_3(T* object,
MemberSignature member, P1 p1)
: object_(object), member_(member), p1_(p1) { }
virtual void Run(A1 a1, A2 a2, A3 a3) {
if (!del) {
(object_->*member_)(p1_,a1,a2,a3);
} else {
(object_->*member_)(p1_,a1,a2,a3);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class A1, class A2, class A3>
inline typename _TessMemberResultCallback_1_3<true,R,T1,P1,A1,A2,A3>::base*
NewTessCallback( T1* obj, R (T2::*member)(P1,A1,A2,A3) , typename Identity<P1>::type p1) {
return new _TessMemberResultCallback_1_3<true,R,T1,P1,A1,A2,A3>(obj, member, p1);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class A1, class A2, class A3>
inline typename _TessMemberResultCallback_1_3<false,R,T1,P1,A1,A2,A3>::base*
NewPermanentTessCallback( T1* obj, R (T2::*member)(P1,A1,A2,A3) , typename Identity<P1>::type p1) {
return new _TessMemberResultCallback_1_3<false,R,T1,P1,A1,A2,A3>(obj, member, p1);
}
#endif
template <bool del, class R, class P1, class A1, class A2, class A3>
class _TessFunctionResultCallback_1_3 : public TessCallback3<A1,A2,A3> {
public:
typedef TessCallback3<A1,A2,A3> base;
typedef R (*FunctionSignature)(P1,A1,A2,A3);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
public:
inline _TessFunctionResultCallback_1_3(FunctionSignature function, P1 p1)
: function_(function), p1_(p1) { }
virtual R Run(A1 a1, A2 a2, A3 a3) {
if (!del) {
R result = (*function_)(p1_,a1,a2,a3);
return result;
} else {
R result = (*function_)(p1_,a1,a2,a3);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class P1, class A1, class A2, class A3>
class _TessFunctionResultCallback_1_3<del, void, P1, A1, A2, A3>
: public TessCallback3<A1,A2,A3> {
public:
typedef TessCallback3<A1,A2,A3> base;
typedef void (*FunctionSignature)(P1,A1,A2,A3);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
public:
inline _TessFunctionResultCallback_1_3(FunctionSignature function, P1 p1)
: function_(function), p1_(p1) { }
virtual void Run(A1 a1, A2 a2, A3 a3) {
if (!del) {
(*function_)(p1_,a1,a2,a3);
} else {
(*function_)(p1_,a1,a2,a3);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
}
}
};
template <class R, class P1, class A1, class A2, class A3>
inline typename _TessFunctionResultCallback_1_3<true,R,P1,A1,A2,A3>::base*
NewTessCallback(R (*function)(P1,A1,A2,A3), typename Identity<P1>::type p1) {
return new _TessFunctionResultCallback_1_3<true,R,P1,A1,A2,A3>(function, p1);
}
template <class R, class P1, class A1, class A2, class A3>
inline typename _TessFunctionResultCallback_1_3<false,R,P1,A1,A2,A3>::base*
NewPermanentTessCallback(R (*function)(P1,A1,A2,A3), typename Identity<P1>::type p1) {
return new _TessFunctionResultCallback_1_3<false,R,P1,A1,A2,A3>(function, p1);
}
template <bool del, class R, class T, class P1, class P2, class A1, class A2, class A3>
class _ConstTessMemberResultCallback_2_3 : public TessResultCallback3<R,A1,A2,A3> {
public:
typedef TessResultCallback3<R,A1,A2,A3> base;
typedef R (T::*MemberSignature)(P1,P2,A1,A2,A3) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
public:
inline _ConstTessMemberResultCallback_2_3(const T* object, MemberSignature member, P1 p1, P2 p2)
: object_(object),
member_(member), p1_(p1), p2_(p2) { }
virtual R Run(A1 a1,A2 a2,A3 a3) {
if (!del) {
R result = (object_->*member_)(p1_,p2_,a1,a2,a3);
return result;
} else {
R result = (object_->*member_)(p1_,p2_,a1,a2,a3);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class P2, class A1, class A2, class A3>
class _ConstTessMemberResultCallback_2_3<del, void, T, P1, P2, A1, A2, A3> : public TessCallback3<A1,A2,A3> {
public:
typedef TessCallback3<A1,A2,A3> base;
typedef void (T::*MemberSignature)(P1,P2,A1,A2,A3) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
public:
inline _ConstTessMemberResultCallback_2_3(const T* object, MemberSignature member, P1 p1, P2 p2)
: object_(object),
member_(member), p1_(p1), p2_(p2) { }
virtual void Run(A1 a1,A2 a2,A3 a3) {
if (!del) {
(object_->*member_)(p1_,p2_,a1,a2,a3);
} else {
(object_->*member_)(p1_,p2_,a1,a2,a3);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class A1, class A2, class A3>
inline typename _ConstTessMemberResultCallback_2_3<true,R,T1,P1,P2,A1,A2,A3>::base*
NewTessCallback(const T1* obj, R (T2::*member)(P1,P2,A1,A2,A3) const, typename Identity<P1>::type p1, typename Identity<P2>::type p2) {
return new _ConstTessMemberResultCallback_2_3<true,R,T1,P1,P2,A1,A2,A3>(obj, member, p1, p2);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class A1, class A2, class A3>
inline typename _ConstTessMemberResultCallback_2_3<false,R,T1,P1,P2,A1,A2,A3>::base*
NewPermanentTessCallback(const T1* obj, R (T2::*member)(P1,P2,A1,A2,A3) const, typename Identity<P1>::type p1, typename Identity<P2>::type p2) {
return new _ConstTessMemberResultCallback_2_3<false,R,T1,P1,P2,A1,A2,A3>(obj, member, p1, p2);
}
#endif
template <bool del, class R, class T, class P1, class P2, class A1, class A2, class A3>
class _TessMemberResultCallback_2_3 : public TessResultCallback3<R,A1,A2,A3> {
public:
typedef TessResultCallback3<R,A1,A2,A3> base;
typedef R (T::*MemberSignature)(P1,P2,A1,A2,A3) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
public:
inline _TessMemberResultCallback_2_3( T* object, MemberSignature member, P1 p1, P2 p2)
: object_(object),
member_(member), p1_(p1), p2_(p2) { }
virtual R Run(A1 a1,A2 a2,A3 a3) {
if (!del) {
R result = (object_->*member_)(p1_,p2_,a1,a2,a3);
return result;
} else {
R result = (object_->*member_)(p1_,p2_,a1,a2,a3);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class P2, class A1, class A2, class A3>
class _TessMemberResultCallback_2_3<del, void, T, P1, P2, A1, A2, A3> : public TessCallback3<A1,A2,A3> {
public:
typedef TessCallback3<A1,A2,A3> base;
typedef void (T::*MemberSignature)(P1,P2,A1,A2,A3) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
public:
inline _TessMemberResultCallback_2_3( T* object, MemberSignature member, P1 p1, P2 p2)
: object_(object),
member_(member), p1_(p1), p2_(p2) { }
virtual void Run(A1 a1,A2 a2,A3 a3) {
if (!del) {
(object_->*member_)(p1_,p2_,a1,a2,a3);
} else {
(object_->*member_)(p1_,p2_,a1,a2,a3);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class A1, class A2, class A3>
inline typename _TessMemberResultCallback_2_3<true,R,T1,P1,P2,A1,A2,A3>::base*
NewTessCallback( T1* obj, R (T2::*member)(P1,P2,A1,A2,A3) , typename Identity<P1>::type p1, typename Identity<P2>::type p2) {
return new _TessMemberResultCallback_2_3<true,R,T1,P1,P2,A1,A2,A3>(obj, member, p1, p2);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class A1, class A2, class A3>
inline typename _TessMemberResultCallback_2_3<false,R,T1,P1,P2,A1,A2,A3>::base*
NewPermanentTessCallback( T1* obj, R (T2::*member)(P1,P2,A1,A2,A3) , typename Identity<P1>::type p1, typename Identity<P2>::type p2) {
return new _TessMemberResultCallback_2_3<false,R,T1,P1,P2,A1,A2,A3>(obj, member, p1, p2);
}
#endif
template <bool del, class R, class P1, class P2, class A1, class A2, class A3>
class _TessFunctionResultCallback_2_3 : public TessResultCallback3<R,A1,A2,A3> {
public:
typedef TessResultCallback3<R,A1,A2,A3> base;
typedef R (*FunctionSignature)(P1,P2,A1,A2,A3);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
public:
inline _TessFunctionResultCallback_2_3(FunctionSignature function, P1 p1, P2 p2)
: function_(function), p1_(p1), p2_(p2) { }
virtual R Run(A1 a1,A2 a2,A3 a3) {
if (!del) {
R result = (*function_)(p1_,p2_,a1,a2,a3);
return result;
} else {
R result = (*function_)(p1_,p2_,a1,a2,a3);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class P1, class P2, class A1, class A2, class A3>
class _TessFunctionResultCallback_2_3<del, void, P1, P2, A1, A2, A3> : public TessCallback3<A1,A2,A3> {
public:
typedef TessCallback3<A1,A2,A3> base;
typedef void (*FunctionSignature)(P1,P2,A1,A2,A3);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
public:
inline _TessFunctionResultCallback_2_3(FunctionSignature function, P1 p1, P2 p2)
: function_(function), p1_(p1), p2_(p2) { }
virtual void Run(A1 a1,A2 a2,A3 a3) {
if (!del) {
(*function_)(p1_,p2_,a1,a2,a3);
} else {
(*function_)(p1_,p2_,a1,a2,a3);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
}
}
};
template <class R, class P1, class P2, class A1, class A2, class A3>
inline typename _TessFunctionResultCallback_2_3<true,R,P1,P2,A1,A2,A3>::base*
NewTessCallback(R (*function)(P1,P2,A1,A2,A3), typename Identity<P1>::type p1, typename Identity<P2>::type p2) {
return new _TessFunctionResultCallback_2_3<true,R,P1,P2,A1,A2,A3>(function, p1, p2);
}
template <class R, class P1, class P2, class A1, class A2, class A3>
inline typename _TessFunctionResultCallback_2_3<false,R,P1,P2,A1,A2,A3>::base*
NewPermanentTessCallback(R (*function)(P1,P2,A1,A2,A3), typename Identity<P1>::type p1, typename Identity<P2>::type p2) {
return new _TessFunctionResultCallback_2_3<false,R,P1,P2,A1,A2,A3>(function, p1, p2);
}
template <bool del, class R, class T, class P1, class P2, class P3, class A1, class A2, class A3>
class _ConstTessMemberResultCallback_3_3 : public TessResultCallback3<R,A1,A2,A3> {
public:
typedef TessResultCallback3<R,A1,A2,A3> base;
typedef R (T::*MemberSignature)(P1,P2,P3,A1,A2,A3) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
public:
inline _ConstTessMemberResultCallback_3_3(const T* object, MemberSignature member, P1 p1, P2 p2, P3 p3)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3) { }
virtual R Run(A1 a1,A2 a2,A3 a3) {
if (!del) {
R result = (object_->*member_)(p1_,p2_,p3_,a1,a2,a3);
return result;
} else {
R result = (object_->*member_)(p1_,p2_,p3_,a1,a2,a3);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class P2, class P3, class A1, class A2, class A3>
class _ConstTessMemberResultCallback_3_3<del, void, T, P1, P2, P3, A1, A2, A3> : public TessCallback3<A1,A2,A3> {
public:
typedef TessCallback3<A1,A2,A3> base;
typedef void (T::*MemberSignature)(P1,P2,P3,A1,A2,A3) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
public:
inline _ConstTessMemberResultCallback_3_3(const T* object, MemberSignature member, P1 p1, P2 p2, P3 p3)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3) { }
virtual void Run(A1 a1,A2 a2,A3 a3) {
if (!del) {
(object_->*member_)(p1_,p2_,p3_,a1,a2,a3);
} else {
(object_->*member_)(p1_,p2_,p3_,a1,a2,a3);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class A1, class A2, class A3>
inline typename _ConstTessMemberResultCallback_3_3<true,R,T1,P1,P2,P3,A1,A2,A3>::base*
NewTessCallback(const T1* obj, R (T2::*member)(P1,P2,P3,A1,A2,A3) const, typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3) {
return new _ConstTessMemberResultCallback_3_3<true,R,T1,P1,P2,P3,A1,A2,A3>(obj, member, p1, p2, p3);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class A1, class A2, class A3>
inline typename _ConstTessMemberResultCallback_3_3<false,R,T1,P1,P2,P3,A1,A2,A3>::base*
NewPermanentTessCallback(const T1* obj, R (T2::*member)(P1,P2,P3,A1,A2,A3) const, typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3) {
return new _ConstTessMemberResultCallback_3_3<false,R,T1,P1,P2,P3,A1,A2,A3>(obj, member, p1, p2, p3);
}
#endif
template <bool del, class R, class T, class P1, class P2, class P3, class A1, class A2, class A3>
class _TessMemberResultCallback_3_3 : public TessResultCallback3<R,A1,A2,A3> {
public:
typedef TessResultCallback3<R,A1,A2,A3> base;
typedef R (T::*MemberSignature)(P1,P2,P3,A1,A2,A3) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
public:
inline _TessMemberResultCallback_3_3( T* object, MemberSignature member, P1 p1, P2 p2, P3 p3)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3) { }
virtual R Run(A1 a1,A2 a2,A3 a3) {
if (!del) {
R result = (object_->*member_)(p1_,p2_,p3_,a1,a2,a3);
return result;
} else {
R result = (object_->*member_)(p1_,p2_,p3_,a1,a2,a3);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class P2, class P3, class A1, class A2, class A3>
class _TessMemberResultCallback_3_3<del, void, T, P1, P2, P3, A1, A2, A3> : public TessCallback3<A1,A2,A3> {
public:
typedef TessCallback3<A1,A2,A3> base;
typedef void (T::*MemberSignature)(P1,P2,P3,A1,A2,A3) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
public:
inline _TessMemberResultCallback_3_3( T* object, MemberSignature member, P1 p1, P2 p2, P3 p3)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3) { }
virtual void Run(A1 a1,A2 a2,A3 a3) {
if (!del) {
(object_->*member_)(p1_,p2_,p3_,a1,a2,a3);
} else {
(object_->*member_)(p1_,p2_,p3_,a1,a2,a3);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class A1, class A2, class A3>
inline typename _TessMemberResultCallback_3_3<true,R,T1,P1,P2,P3,A1,A2,A3>::base*
NewTessCallback( T1* obj, R (T2::*member)(P1,P2,P3,A1,A2,A3) , typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3) {
return new _TessMemberResultCallback_3_3<true,R,T1,P1,P2,P3,A1,A2,A3>(obj, member, p1, p2, p3);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class A1, class A2, class A3>
inline typename _TessMemberResultCallback_3_3<false,R,T1,P1,P2,P3,A1,A2,A3>::base*
NewPermanentTessCallback( T1* obj, R (T2::*member)(P1,P2,P3,A1,A2,A3) , typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3) {
return new _TessMemberResultCallback_3_3<false,R,T1,P1,P2,P3,A1,A2,A3>(obj, member, p1, p2, p3);
}
#endif
template <bool del, class R, class P1, class P2, class P3, class A1, class A2, class A3>
class _TessFunctionResultCallback_3_3 : public TessResultCallback3<R,A1,A2,A3> {
public:
typedef TessResultCallback3<R,A1,A2,A3> base;
typedef R (*FunctionSignature)(P1,P2,P3,A1,A2,A3);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
public:
inline _TessFunctionResultCallback_3_3(FunctionSignature function, P1 p1, P2 p2, P3 p3)
: function_(function), p1_(p1), p2_(p2), p3_(p3) { }
virtual R Run(A1 a1,A2 a2,A3 a3) {
if (!del) {
R result = (*function_)(p1_,p2_,p3_,a1,a2,a3);
return result;
} else {
R result = (*function_)(p1_,p2_,p3_,a1,a2,a3);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class P1, class P2, class P3, class A1, class A2, class A3>
class _TessFunctionResultCallback_3_3<del, void, P1, P2, P3, A1, A2, A3> : public TessCallback3<A1,A2,A3> {
public:
typedef TessCallback3<A1,A2,A3> base;
typedef void (*FunctionSignature)(P1,P2,P3,A1,A2,A3);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
public:
inline _TessFunctionResultCallback_3_3(FunctionSignature function, P1 p1, P2 p2, P3 p3)
: function_(function), p1_(p1), p2_(p2), p3_(p3) { }
virtual void Run(A1 a1,A2 a2,A3 a3) {
if (!del) {
(*function_)(p1_,p2_,p3_,a1,a2,a3);
} else {
(*function_)(p1_,p2_,p3_,a1,a2,a3);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
}
}
};
template <class R, class P1, class P2, class P3, class A1, class A2, class A3>
inline typename _TessFunctionResultCallback_3_3<true,R,P1,P2,P3,A1,A2,A3>::base*
NewTessCallback(R (*function)(P1,P2,P3,A1,A2,A3), typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3) {
return new _TessFunctionResultCallback_3_3<true,R,P1,P2,P3,A1,A2,A3>(function, p1, p2, p3);
}
template <class R, class P1, class P2, class P3, class A1, class A2, class A3>
inline typename _TessFunctionResultCallback_3_3<false,R,P1,P2,P3,A1,A2,A3>::base*
NewPermanentTessCallback(R (*function)(P1,P2,P3,A1,A2,A3), typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3) {
return new _TessFunctionResultCallback_3_3<false,R,P1,P2,P3,A1,A2,A3>(function, p1, p2, p3);
}
template <bool del, class R, class T, class P1, class P2, class P3, class P4, class A1, class A2, class A3>
class _ConstTessMemberResultCallback_4_3 : public TessResultCallback3<R,A1,A2,A3> {
public:
typedef TessResultCallback3<R,A1,A2,A3> base;
typedef R (T::*MemberSignature)(P1,P2,P3,P4,A1,A2,A3) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
public:
inline _ConstTessMemberResultCallback_4_3(const T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4) { }
virtual R Run(A1 a1,A2 a2,A3 a3) {
if (!del) {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,a1,a2,a3);
return result;
} else {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,a1,a2,a3);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class P2, class P3, class P4, class A1, class A2, class A3>
class _ConstTessMemberResultCallback_4_3<del, void, T, P1, P2, P3, P4, A1, A2, A3> : public TessCallback3<A1,A2,A3> {
public:
typedef TessCallback3<A1,A2,A3> base;
typedef void (T::*MemberSignature)(P1,P2,P3,P4,A1,A2,A3) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
public:
inline _ConstTessMemberResultCallback_4_3(const T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4) { }
virtual void Run(A1 a1,A2 a2,A3 a3) {
if (!del) {
(object_->*member_)(p1_,p2_,p3_,p4_,a1,a2,a3);
} else {
(object_->*member_)(p1_,p2_,p3_,p4_,a1,a2,a3);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class A1, class A2, class A3>
inline typename _ConstTessMemberResultCallback_4_3<true,R,T1,P1,P2,P3,P4,A1,A2,A3>::base*
NewTessCallback(const T1* obj, R (T2::*member)(P1,P2,P3,P4,A1,A2,A3) const, typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4) {
return new _ConstTessMemberResultCallback_4_3<true,R,T1,P1,P2,P3,P4,A1,A2,A3>(obj, member, p1, p2, p3, p4);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class A1, class A2, class A3>
inline typename _ConstTessMemberResultCallback_4_3<false,R,T1,P1,P2,P3,P4,A1,A2,A3>::base*
NewPermanentTessCallback(const T1* obj, R (T2::*member)(P1,P2,P3,P4,A1,A2,A3) const, typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4) {
return new _ConstTessMemberResultCallback_4_3<false,R,T1,P1,P2,P3,P4,A1,A2,A3>(obj, member, p1, p2, p3, p4);
}
#endif
template <bool del, class R, class T, class P1, class P2, class P3, class P4, class A1, class A2, class A3>
class _TessMemberResultCallback_4_3 : public TessResultCallback3<R,A1,A2,A3> {
public:
typedef TessResultCallback3<R,A1,A2,A3> base;
typedef R (T::*MemberSignature)(P1,P2,P3,P4,A1,A2,A3) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
public:
inline _TessMemberResultCallback_4_3( T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4) { }
virtual R Run(A1 a1,A2 a2,A3 a3) {
if (!del) {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,a1,a2,a3);
return result;
} else {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,a1,a2,a3);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class P2, class P3, class P4, class A1, class A2, class A3>
class _TessMemberResultCallback_4_3<del, void, T, P1, P2, P3, P4, A1, A2, A3> : public TessCallback3<A1,A2,A3> {
public:
typedef TessCallback3<A1,A2,A3> base;
typedef void (T::*MemberSignature)(P1,P2,P3,P4,A1,A2,A3) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
public:
inline _TessMemberResultCallback_4_3( T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4) { }
virtual void Run(A1 a1,A2 a2,A3 a3) {
if (!del) {
(object_->*member_)(p1_,p2_,p3_,p4_,a1,a2,a3);
} else {
(object_->*member_)(p1_,p2_,p3_,p4_,a1,a2,a3);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class A1, class A2, class A3>
inline typename _TessMemberResultCallback_4_3<true,R,T1,P1,P2,P3,P4,A1,A2,A3>::base*
NewTessCallback( T1* obj, R (T2::*member)(P1,P2,P3,P4,A1,A2,A3) , typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4) {
return new _TessMemberResultCallback_4_3<true,R,T1,P1,P2,P3,P4,A1,A2,A3>(obj, member, p1, p2, p3, p4);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class A1, class A2, class A3>
inline typename _TessMemberResultCallback_4_3<false,R,T1,P1,P2,P3,P4,A1,A2,A3>::base*
NewPermanentTessCallback( T1* obj, R (T2::*member)(P1,P2,P3,P4,A1,A2,A3) , typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4) {
return new _TessMemberResultCallback_4_3<false,R,T1,P1,P2,P3,P4,A1,A2,A3>(obj, member, p1, p2, p3, p4);
}
#endif
template <bool del, class R, class P1, class P2, class P3, class P4, class A1, class A2, class A3>
class _TessFunctionResultCallback_4_3 : public TessResultCallback3<R,A1,A2,A3> {
public:
typedef TessResultCallback3<R,A1,A2,A3> base;
typedef R (*FunctionSignature)(P1,P2,P3,P4,A1,A2,A3);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
public:
inline _TessFunctionResultCallback_4_3(FunctionSignature function, P1 p1, P2 p2, P3 p3, P4 p4)
: function_(function), p1_(p1), p2_(p2), p3_(p3), p4_(p4) { }
virtual R Run(A1 a1,A2 a2,A3 a3) {
if (!del) {
R result = (*function_)(p1_,p2_,p3_,p4_,a1,a2,a3);
return result;
} else {
R result = (*function_)(p1_,p2_,p3_,p4_,a1,a2,a3);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class P1, class P2, class P3, class P4, class A1, class A2, class A3>
class _TessFunctionResultCallback_4_3<del, void, P1, P2, P3, P4, A1, A2, A3> : public TessCallback3<A1,A2,A3> {
public:
typedef TessCallback3<A1,A2,A3> base;
typedef void (*FunctionSignature)(P1,P2,P3,P4,A1,A2,A3);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
public:
inline _TessFunctionResultCallback_4_3(FunctionSignature function, P1 p1, P2 p2, P3 p3, P4 p4)
: function_(function), p1_(p1), p2_(p2), p3_(p3), p4_(p4) { }
virtual void Run(A1 a1,A2 a2,A3 a3) {
if (!del) {
(*function_)(p1_,p2_,p3_,p4_,a1,a2,a3);
} else {
(*function_)(p1_,p2_,p3_,p4_,a1,a2,a3);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
}
}
};
template <class R, class P1, class P2, class P3, class P4, class A1, class A2, class A3>
inline typename _TessFunctionResultCallback_4_3<true,R,P1,P2,P3,P4,A1,A2,A3>::base*
NewTessCallback(R (*function)(P1,P2,P3,P4,A1,A2,A3), typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4) {
return new _TessFunctionResultCallback_4_3<true,R,P1,P2,P3,P4,A1,A2,A3>(function, p1, p2, p3, p4);
}
template <class R, class P1, class P2, class P3, class P4, class A1, class A2, class A3>
inline typename _TessFunctionResultCallback_4_3<false,R,P1,P2,P3,P4,A1,A2,A3>::base*
NewPermanentTessCallback(R (*function)(P1,P2,P3,P4,A1,A2,A3), typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4) {
return new _TessFunctionResultCallback_4_3<false,R,P1,P2,P3,P4,A1,A2,A3>(function, p1, p2, p3, p4);
}
template <bool del, class R, class T, class P1, class P2, class P3, class P4, class P5, class A1, class A2, class A3>
class _ConstTessMemberResultCallback_5_3 : public TessResultCallback3<R,A1,A2,A3> {
public:
typedef TessResultCallback3<R,A1,A2,A3> base;
typedef R (T::*MemberSignature)(P1,P2,P3,P4,P5,A1,A2,A3) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
public:
inline _ConstTessMemberResultCallback_5_3(const T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5) { }
virtual R Run(A1 a1,A2 a2,A3 a3) {
if (!del) {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,p5_,a1,a2,a3);
return result;
} else {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,p5_,a1,a2,a3);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class P2, class P3, class P4, class P5, class A1, class A2, class A3>
class _ConstTessMemberResultCallback_5_3<del, void, T, P1, P2, P3, P4, P5, A1, A2, A3> : public TessCallback3<A1,A2,A3> {
public:
typedef TessCallback3<A1,A2,A3> base;
typedef void (T::*MemberSignature)(P1,P2,P3,P4,P5,A1,A2,A3) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
public:
inline _ConstTessMemberResultCallback_5_3(const T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5) { }
virtual void Run(A1 a1,A2 a2,A3 a3) {
if (!del) {
(object_->*member_)(p1_,p2_,p3_,p4_,p5_,a1,a2,a3);
} else {
(object_->*member_)(p1_,p2_,p3_,p4_,p5_,a1,a2,a3);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class P5, class A1, class A2, class A3>
inline typename _ConstTessMemberResultCallback_5_3<true,R,T1,P1,P2,P3,P4,P5,A1,A2,A3>::base*
NewTessCallback(const T1* obj, R (T2::*member)(P1,P2,P3,P4,P5,A1,A2,A3) const, typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5) {
return new _ConstTessMemberResultCallback_5_3<true,R,T1,P1,P2,P3,P4,P5,A1,A2,A3>(obj, member, p1, p2, p3, p4, p5);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class P5, class A1, class A2, class A3>
inline typename _ConstTessMemberResultCallback_5_3<false,R,T1,P1,P2,P3,P4,P5,A1,A2,A3>::base*
NewPermanentTessCallback(const T1* obj, R (T2::*member)(P1,P2,P3,P4,P5,A1,A2,A3) const, typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5) {
return new _ConstTessMemberResultCallback_5_3<false,R,T1,P1,P2,P3,P4,P5,A1,A2,A3>(obj, member, p1, p2, p3, p4, p5);
}
#endif
template <bool del, class R, class T, class P1, class P2, class P3, class P4, class P5, class A1, class A2, class A3>
class _TessMemberResultCallback_5_3 : public TessResultCallback3<R,A1,A2,A3> {
public:
typedef TessResultCallback3<R,A1,A2,A3> base;
typedef R (T::*MemberSignature)(P1,P2,P3,P4,P5,A1,A2,A3) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
public:
inline _TessMemberResultCallback_5_3( T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5) { }
virtual R Run(A1 a1,A2 a2,A3 a3) {
if (!del) {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,p5_,a1,a2,a3);
return result;
} else {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,p5_,a1,a2,a3);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class P2, class P3, class P4, class P5, class A1, class A2, class A3>
class _TessMemberResultCallback_5_3<del, void, T, P1, P2, P3, P4, P5, A1, A2, A3> : public TessCallback3<A1,A2,A3> {
public:
typedef TessCallback3<A1,A2,A3> base;
typedef void (T::*MemberSignature)(P1,P2,P3,P4,P5,A1,A2,A3) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
public:
inline _TessMemberResultCallback_5_3( T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5) { }
virtual void Run(A1 a1,A2 a2,A3 a3) {
if (!del) {
(object_->*member_)(p1_,p2_,p3_,p4_,p5_,a1,a2,a3);
} else {
(object_->*member_)(p1_,p2_,p3_,p4_,p5_,a1,a2,a3);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class P5, class A1, class A2, class A3>
inline typename _TessMemberResultCallback_5_3<true,R,T1,P1,P2,P3,P4,P5,A1,A2,A3>::base*
NewTessCallback( T1* obj, R (T2::*member)(P1,P2,P3,P4,P5,A1,A2,A3) , typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5) {
return new _TessMemberResultCallback_5_3<true,R,T1,P1,P2,P3,P4,P5,A1,A2,A3>(obj, member, p1, p2, p3, p4, p5);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class P5, class A1, class A2, class A3>
inline typename _TessMemberResultCallback_5_3<false,R,T1,P1,P2,P3,P4,P5,A1,A2,A3>::base*
NewPermanentTessCallback( T1* obj, R (T2::*member)(P1,P2,P3,P4,P5,A1,A2,A3) , typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5) {
return new _TessMemberResultCallback_5_3<false,R,T1,P1,P2,P3,P4,P5,A1,A2,A3>(obj, member, p1, p2, p3, p4, p5);
}
#endif
template <bool del, class R, class P1, class P2, class P3, class P4, class P5, class A1, class A2, class A3>
class _TessFunctionResultCallback_5_3 : public TessResultCallback3<R,A1,A2,A3> {
public:
typedef TessResultCallback3<R,A1,A2,A3> base;
typedef R (*FunctionSignature)(P1,P2,P3,P4,P5,A1,A2,A3);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
public:
inline _TessFunctionResultCallback_5_3(FunctionSignature function, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5)
: function_(function), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5) { }
virtual R Run(A1 a1,A2 a2,A3 a3) {
if (!del) {
R result = (*function_)(p1_,p2_,p3_,p4_,p5_,a1,a2,a3);
return result;
} else {
R result = (*function_)(p1_,p2_,p3_,p4_,p5_,a1,a2,a3);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class P1, class P2, class P3, class P4, class P5, class A1, class A2, class A3>
class _TessFunctionResultCallback_5_3<del, void, P1, P2, P3, P4, P5, A1, A2, A3> : public TessCallback3<A1,A2,A3> {
public:
typedef TessCallback3<A1,A2,A3> base;
typedef void (*FunctionSignature)(P1,P2,P3,P4,P5,A1,A2,A3);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
public:
inline _TessFunctionResultCallback_5_3(FunctionSignature function, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5)
: function_(function), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5) { }
virtual void Run(A1 a1,A2 a2,A3 a3) {
if (!del) {
(*function_)(p1_,p2_,p3_,p4_,p5_,a1,a2,a3);
} else {
(*function_)(p1_,p2_,p3_,p4_,p5_,a1,a2,a3);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
}
}
};
template <class R, class P1, class P2, class P3, class P4, class P5, class A1, class A2, class A3>
inline typename _TessFunctionResultCallback_5_3<true,R,P1,P2,P3,P4,P5,A1,A2,A3>::base*
NewTessCallback(R (*function)(P1,P2,P3,P4,P5,A1,A2,A3), typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5) {
return new _TessFunctionResultCallback_5_3<true,R,P1,P2,P3,P4,P5,A1,A2,A3>(function, p1, p2, p3, p4, p5);
}
template <class R, class P1, class P2, class P3, class P4, class P5, class A1, class A2, class A3>
inline typename _TessFunctionResultCallback_5_3<false,R,P1,P2,P3,P4,P5,A1,A2,A3>::base*
NewPermanentTessCallback(R (*function)(P1,P2,P3,P4,P5,A1,A2,A3), typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5) {
return new _TessFunctionResultCallback_5_3<false,R,P1,P2,P3,P4,P5,A1,A2,A3>(function, p1, p2, p3, p4, p5);
}
template <bool del, class R, class T, class P1, class P2, class P3, class P4, class P5, class P6, class A1, class A2, class A3>
class _ConstTessMemberResultCallback_6_3 : public TessResultCallback3<R,A1,A2,A3> {
public:
typedef TessResultCallback3<R,A1,A2,A3> base;
typedef R (T::*MemberSignature)(P1,P2,P3,P4,P5,P6,A1,A2,A3) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
typename remove_reference<P6>::type p6_;
public:
inline _ConstTessMemberResultCallback_6_3(const T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5), p6_(p6) { }
virtual R Run(A1 a1,A2 a2,A3 a3) {
if (!del) {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,p5_,p6_,a1,a2,a3);
return result;
} else {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,p5_,p6_,a1,a2,a3);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class P2, class P3, class P4, class P5, class P6, class A1, class A2, class A3>
class _ConstTessMemberResultCallback_6_3<del, void, T, P1, P2, P3, P4, P5, P6, A1, A2, A3> : public TessCallback3<A1,A2,A3> {
public:
typedef TessCallback3<A1,A2,A3> base;
typedef void (T::*MemberSignature)(P1,P2,P3,P4,P5,P6,A1,A2,A3) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
typename remove_reference<P6>::type p6_;
public:
inline _ConstTessMemberResultCallback_6_3(const T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5), p6_(p6) { }
virtual void Run(A1 a1,A2 a2,A3 a3) {
if (!del) {
(object_->*member_)(p1_,p2_,p3_,p4_,p5_,p6_,a1,a2,a3);
} else {
(object_->*member_)(p1_,p2_,p3_,p4_,p5_,p6_,a1,a2,a3);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class P5, class P6, class A1, class A2, class A3>
inline typename _ConstTessMemberResultCallback_6_3<true,R,T1,P1,P2,P3,P4,P5,P6,A1,A2,A3>::base*
NewTessCallback(const T1* obj, R (T2::*member)(P1,P2,P3,P4,P5,P6,A1,A2,A3) const, typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5, typename Identity<P6>::type p6) {
return new _ConstTessMemberResultCallback_6_3<true,R,T1,P1,P2,P3,P4,P5,P6,A1,A2,A3>(obj, member, p1, p2, p3, p4, p5, p6);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class P5, class P6, class A1, class A2, class A3>
inline typename _ConstTessMemberResultCallback_6_3<false,R,T1,P1,P2,P3,P4,P5,P6,A1,A2,A3>::base*
NewPermanentTessCallback(const T1* obj, R (T2::*member)(P1,P2,P3,P4,P5,P6,A1,A2,A3) const, typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5, typename Identity<P6>::type p6) {
return new _ConstTessMemberResultCallback_6_3<false,R,T1,P1,P2,P3,P4,P5,P6,A1,A2,A3>(obj, member, p1, p2, p3, p4, p5, p6);
}
#endif
template <bool del, class R, class T, class P1, class P2, class P3, class P4, class P5, class P6, class A1, class A2, class A3>
class _TessMemberResultCallback_6_3 : public TessResultCallback3<R,A1,A2,A3> {
public:
typedef TessResultCallback3<R,A1,A2,A3> base;
typedef R (T::*MemberSignature)(P1,P2,P3,P4,P5,P6,A1,A2,A3) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
typename remove_reference<P6>::type p6_;
public:
inline _TessMemberResultCallback_6_3( T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5), p6_(p6) { }
virtual R Run(A1 a1,A2 a2,A3 a3) {
if (!del) {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,p5_,p6_,a1,a2,a3);
return result;
} else {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,p5_,p6_,a1,a2,a3);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class P2, class P3, class P4, class P5, class P6, class A1, class A2, class A3>
class _TessMemberResultCallback_6_3<del, void, T, P1, P2, P3, P4, P5, P6, A1, A2, A3> : public TessCallback3<A1,A2,A3> {
public:
typedef TessCallback3<A1,A2,A3> base;
typedef void (T::*MemberSignature)(P1,P2,P3,P4,P5,P6,A1,A2,A3) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
typename remove_reference<P6>::type p6_;
public:
inline _TessMemberResultCallback_6_3( T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5), p6_(p6) { }
virtual void Run(A1 a1,A2 a2,A3 a3) {
if (!del) {
(object_->*member_)(p1_,p2_,p3_,p4_,p5_,p6_,a1,a2,a3);
} else {
(object_->*member_)(p1_,p2_,p3_,p4_,p5_,p6_,a1,a2,a3);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class P5, class P6, class A1, class A2, class A3>
inline typename _TessMemberResultCallback_6_3<true,R,T1,P1,P2,P3,P4,P5,P6,A1,A2,A3>::base*
NewTessCallback( T1* obj, R (T2::*member)(P1,P2,P3,P4,P5,P6,A1,A2,A3) , typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5, typename Identity<P6>::type p6) {
return new _TessMemberResultCallback_6_3<true,R,T1,P1,P2,P3,P4,P5,P6,A1,A2,A3>(obj, member, p1, p2, p3, p4, p5, p6);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class P5, class P6, class A1, class A2, class A3>
inline typename _TessMemberResultCallback_6_3<false,R,T1,P1,P2,P3,P4,P5,P6,A1,A2,A3>::base*
NewPermanentTessCallback( T1* obj, R (T2::*member)(P1,P2,P3,P4,P5,P6,A1,A2,A3) , typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5, typename Identity<P6>::type p6) {
return new _TessMemberResultCallback_6_3<false,R,T1,P1,P2,P3,P4,P5,P6,A1,A2,A3>(obj, member, p1, p2, p3, p4, p5, p6);
}
#endif
template <bool del, class R, class P1, class P2, class P3, class P4, class P5, class P6, class A1, class A2, class A3>
class _TessFunctionResultCallback_6_3 : public TessResultCallback3<R,A1,A2,A3> {
public:
typedef TessResultCallback3<R,A1,A2,A3> base;
typedef R (*FunctionSignature)(P1,P2,P3,P4,P5,P6,A1,A2,A3);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
typename remove_reference<P6>::type p6_;
public:
inline _TessFunctionResultCallback_6_3(FunctionSignature function, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6)
: function_(function), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5), p6_(p6) { }
virtual R Run(A1 a1,A2 a2,A3 a3) {
if (!del) {
R result = (*function_)(p1_,p2_,p3_,p4_,p5_,p6_,a1,a2,a3);
return result;
} else {
R result = (*function_)(p1_,p2_,p3_,p4_,p5_,p6_,a1,a2,a3);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class P1, class P2, class P3, class P4, class P5, class P6, class A1, class A2, class A3>
class _TessFunctionResultCallback_6_3<del, void, P1, P2, P3, P4, P5, P6, A1, A2, A3> : public TessCallback3<A1,A2,A3> {
public:
typedef TessCallback3<A1,A2,A3> base;
typedef void (*FunctionSignature)(P1,P2,P3,P4,P5,P6,A1,A2,A3);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
typename remove_reference<P6>::type p6_;
public:
inline _TessFunctionResultCallback_6_3(FunctionSignature function, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6)
: function_(function), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5), p6_(p6) { }
virtual void Run(A1 a1,A2 a2,A3 a3) {
if (!del) {
(*function_)(p1_,p2_,p3_,p4_,p5_,p6_,a1,a2,a3);
} else {
(*function_)(p1_,p2_,p3_,p4_,p5_,p6_,a1,a2,a3);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
}
}
};
template <class R, class P1, class P2, class P3, class P4, class P5, class P6, class A1, class A2, class A3>
inline typename _TessFunctionResultCallback_6_3<true,R,P1,P2,P3,P4,P5,P6,A1,A2,A3>::base*
NewTessCallback(R (*function)(P1,P2,P3,P4,P5,P6,A1,A2,A3), typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5, typename Identity<P6>::type p6) {
return new _TessFunctionResultCallback_6_3<true,R,P1,P2,P3,P4,P5,P6,A1,A2,A3>(function, p1, p2, p3, p4, p5, p6);
}
template <class R, class P1, class P2, class P3, class P4, class P5, class P6, class A1, class A2, class A3>
inline typename _TessFunctionResultCallback_6_3<false,R,P1,P2,P3,P4,P5,P6,A1,A2,A3>::base*
NewPermanentTessCallback(R (*function)(P1,P2,P3,P4,P5,P6,A1,A2,A3), typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5, typename Identity<P6>::type p6) {
return new _TessFunctionResultCallback_6_3<false,R,P1,P2,P3,P4,P5,P6,A1,A2,A3>(function, p1, p2, p3, p4, p5, p6);
}
template <bool del, class R, class T, class A1, class A2, class A3, class A4>
class _ConstTessMemberResultCallback_0_4 : public TessResultCallback4<R,A1,A2,A3,A4> {
public:
typedef TessResultCallback4<R,A1,A2,A3,A4> base;
typedef R (T::*MemberSignature)(A1,A2,A3,A4) const;
private:
const T* object_;
MemberSignature member_;
public:
inline _ConstTessMemberResultCallback_0_4(const T* object, MemberSignature member)
: object_(object),
member_(member) { }
virtual R Run(A1 a1,A2 a2,A3 a3,A4 a4) {
if (!del) {
R result = (object_->*member_)(a1,a2,a3,a4);
return result;
} else {
R result = (object_->*member_)(a1,a2,a3,a4);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class A1, class A2, class A3, class A4>
class _ConstTessMemberResultCallback_0_4<del, void, T, A1, A2, A3, A4> : public TessCallback4<A1,A2,A3,A4> {
public:
typedef TessCallback4<A1,A2,A3,A4> base;
typedef void (T::*MemberSignature)(A1,A2,A3,A4) const;
private:
const T* object_;
MemberSignature member_;
public:
inline _ConstTessMemberResultCallback_0_4(const T* object, MemberSignature member)
: object_(object),
member_(member) { }
virtual void Run(A1 a1,A2 a2,A3 a3,A4 a4) {
if (!del) {
(object_->*member_)(a1,a2,a3,a4);
} else {
(object_->*member_)(a1,a2,a3,a4);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class A1, class A2, class A3, class A4>
inline typename _ConstTessMemberResultCallback_0_4<true,R,T1,A1,A2,A3,A4>::base*
NewTessCallback(const T1* obj, R (T2::*member)(A1,A2,A3,A4) const) {
return new _ConstTessMemberResultCallback_0_4<true,R,T1,A1,A2,A3,A4>(obj, member);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class A1, class A2, class A3, class A4>
inline typename _ConstTessMemberResultCallback_0_4<false,R,T1,A1,A2,A3,A4>::base*
NewPermanentTessCallback(const T1* obj, R (T2::*member)(A1,A2,A3,A4) const) {
return new _ConstTessMemberResultCallback_0_4<false,R,T1,A1,A2,A3,A4>(obj, member);
}
#endif
template <bool del, class R, class T, class A1, class A2, class A3, class A4>
class _TessMemberResultCallback_0_4 : public TessResultCallback4<R,A1,A2,A3,A4> {
public:
typedef TessResultCallback4<R,A1,A2,A3,A4> base;
typedef R (T::*MemberSignature)(A1,A2,A3,A4) ;
private:
T* object_;
MemberSignature member_;
public:
inline _TessMemberResultCallback_0_4( T* object, MemberSignature member)
: object_(object),
member_(member) { }
virtual R Run(A1 a1,A2 a2,A3 a3,A4 a4) {
if (!del) {
R result = (object_->*member_)(a1,a2,a3,a4);
return result;
} else {
R result = (object_->*member_)(a1,a2,a3,a4);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class A1, class A2, class A3, class A4>
class _TessMemberResultCallback_0_4<del, void, T, A1, A2, A3, A4> : public TessCallback4<A1,A2,A3,A4> {
public:
typedef TessCallback4<A1,A2,A3,A4> base;
typedef void (T::*MemberSignature)(A1,A2,A3,A4) ;
private:
T* object_;
MemberSignature member_;
public:
inline _TessMemberResultCallback_0_4( T* object, MemberSignature member)
: object_(object),
member_(member) { }
virtual void Run(A1 a1,A2 a2,A3 a3,A4 a4) {
if (!del) {
(object_->*member_)(a1,a2,a3,a4);
} else {
(object_->*member_)(a1,a2,a3,a4);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class A1, class A2, class A3, class A4>
inline typename _TessMemberResultCallback_0_4<true,R,T1,A1,A2,A3,A4>::base*
NewTessCallback( T1* obj, R (T2::*member)(A1,A2,A3,A4) ) {
return new _TessMemberResultCallback_0_4<true,R,T1,A1,A2,A3,A4>(obj, member);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class A1, class A2, class A3, class A4>
inline typename _TessMemberResultCallback_0_4<false,R,T1,A1,A2,A3,A4>::base*
NewPermanentTessCallback( T1* obj, R (T2::*member)(A1,A2,A3,A4) ) {
return new _TessMemberResultCallback_0_4<false,R,T1,A1,A2,A3,A4>(obj, member);
}
#endif
template <bool del, class R, class A1, class A2, class A3, class A4>
class _TessFunctionResultCallback_0_4 : public TessResultCallback4<R,A1,A2,A3,A4> {
public:
typedef TessResultCallback4<R,A1,A2,A3,A4> base;
typedef R (*FunctionSignature)(A1,A2,A3,A4);
private:
FunctionSignature function_;
public:
inline _TessFunctionResultCallback_0_4(FunctionSignature function)
: function_(function) { }
virtual R Run(A1 a1,A2 a2,A3 a3,A4 a4) {
if (!del) {
R result = (*function_)(a1,a2,a3,a4);
return result;
} else {
R result = (*function_)(a1,a2,a3,a4);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class A1, class A2, class A3, class A4>
class _TessFunctionResultCallback_0_4<del, void, A1, A2, A3, A4> : public TessCallback4<A1,A2,A3,A4> {
public:
typedef TessCallback4<A1,A2,A3,A4> base;
typedef void (*FunctionSignature)(A1,A2,A3,A4);
private:
FunctionSignature function_;
public:
inline _TessFunctionResultCallback_0_4(FunctionSignature function)
: function_(function) { }
virtual void Run(A1 a1,A2 a2,A3 a3,A4 a4) {
if (!del) {
(*function_)(a1,a2,a3,a4);
} else {
(*function_)(a1,a2,a3,a4);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
}
}
};
template <class R, class A1, class A2, class A3, class A4>
inline typename _TessFunctionResultCallback_0_4<true,R,A1,A2,A3,A4>::base*
NewTessCallback(R (*function)(A1,A2,A3,A4)) {
return new _TessFunctionResultCallback_0_4<true,R,A1,A2,A3,A4>(function);
}
template <class R, class A1, class A2, class A3, class A4>
inline typename _TessFunctionResultCallback_0_4<false,R,A1,A2,A3,A4>::base*
NewPermanentTessCallback(R (*function)(A1,A2,A3,A4)) {
return new _TessFunctionResultCallback_0_4<false,R,A1,A2,A3,A4>(function);
}
template <bool del, class R, class T, class P1, class A1, class A2, class A3, class A4>
class _ConstTessMemberResultCallback_1_4 : public TessResultCallback4<R,A1,A2,A3,A4> {
public:
typedef TessResultCallback4<R,A1,A2,A3,A4> base;
typedef R (T::*MemberSignature)(P1,A1,A2,A3,A4) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
public:
inline _ConstTessMemberResultCallback_1_4(const T* object, MemberSignature member, P1 p1)
: object_(object),
member_(member), p1_(p1) { }
virtual R Run(A1 a1,A2 a2,A3 a3,A4 a4) {
if (!del) {
R result = (object_->*member_)(p1_,a1,a2,a3,a4);
return result;
} else {
R result = (object_->*member_)(p1_,a1,a2,a3,a4);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class A1, class A2, class A3, class A4>
class _ConstTessMemberResultCallback_1_4<del, void, T, P1, A1, A2, A3, A4> : public TessCallback4<A1,A2,A3,A4> {
public:
typedef TessCallback4<A1,A2,A3,A4> base;
typedef void (T::*MemberSignature)(P1,A1,A2,A3,A4) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
public:
inline _ConstTessMemberResultCallback_1_4(const T* object, MemberSignature member, P1 p1)
: object_(object),
member_(member), p1_(p1) { }
virtual void Run(A1 a1,A2 a2,A3 a3,A4 a4) {
if (!del) {
(object_->*member_)(p1_,a1,a2,a3,a4);
} else {
(object_->*member_)(p1_,a1,a2,a3,a4);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class A1, class A2, class A3, class A4>
inline typename _ConstTessMemberResultCallback_1_4<true,R,T1,P1,A1,A2,A3,A4>::base*
NewTessCallback(const T1* obj, R (T2::*member)(P1,A1,A2,A3,A4) const, typename Identity<P1>::type p1) {
return new _ConstTessMemberResultCallback_1_4<true,R,T1,P1,A1,A2,A3,A4>(obj, member, p1);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class A1, class A2, class A3, class A4>
inline typename _ConstTessMemberResultCallback_1_4<false,R,T1,P1,A1,A2,A3,A4>::base*
NewPermanentTessCallback(const T1* obj, R (T2::*member)(P1,A1,A2,A3,A4) const, typename Identity<P1>::type p1) {
return new _ConstTessMemberResultCallback_1_4<false,R,T1,P1,A1,A2,A3,A4>(obj, member, p1);
}
#endif
template <bool del, class R, class T, class P1, class A1, class A2, class A3, class A4>
class _TessMemberResultCallback_1_4 : public TessResultCallback4<R,A1,A2,A3,A4> {
public:
typedef TessResultCallback4<R,A1,A2,A3,A4> base;
typedef R (T::*MemberSignature)(P1,A1,A2,A3,A4) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
public:
inline _TessMemberResultCallback_1_4( T* object, MemberSignature member, P1 p1)
: object_(object),
member_(member), p1_(p1) { }
virtual R Run(A1 a1,A2 a2,A3 a3,A4 a4) {
if (!del) {
R result = (object_->*member_)(p1_,a1,a2,a3,a4);
return result;
} else {
R result = (object_->*member_)(p1_,a1,a2,a3,a4);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class A1, class A2, class A3, class A4>
class _TessMemberResultCallback_1_4<del, void, T, P1, A1, A2, A3, A4> : public TessCallback4<A1,A2,A3,A4> {
public:
typedef TessCallback4<A1,A2,A3,A4> base;
typedef void (T::*MemberSignature)(P1,A1,A2,A3,A4) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
public:
inline _TessMemberResultCallback_1_4( T* object, MemberSignature member, P1 p1)
: object_(object),
member_(member), p1_(p1) { }
virtual void Run(A1 a1,A2 a2,A3 a3,A4 a4) {
if (!del) {
(object_->*member_)(p1_,a1,a2,a3,a4);
} else {
(object_->*member_)(p1_,a1,a2,a3,a4);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class A1, class A2, class A3, class A4>
inline typename _TessMemberResultCallback_1_4<true,R,T1,P1,A1,A2,A3,A4>::base*
NewTessCallback( T1* obj, R (T2::*member)(P1,A1,A2,A3,A4) , typename Identity<P1>::type p1) {
return new _TessMemberResultCallback_1_4<true,R,T1,P1,A1,A2,A3,A4>(obj, member, p1);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class A1, class A2, class A3, class A4>
inline typename _TessMemberResultCallback_1_4<false,R,T1,P1,A1,A2,A3,A4>::base*
NewPermanentTessCallback( T1* obj, R (T2::*member)(P1,A1,A2,A3,A4) , typename Identity<P1>::type p1) {
return new _TessMemberResultCallback_1_4<false,R,T1,P1,A1,A2,A3,A4>(obj, member, p1);
}
#endif
template <bool del, class R, class P1, class A1, class A2, class A3, class A4>
class _TessFunctionResultCallback_1_4 : public TessResultCallback4<R,A1,A2,A3,A4> {
public:
typedef TessResultCallback4<R,A1,A2,A3,A4> base;
typedef R (*FunctionSignature)(P1,A1,A2,A3,A4);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
public:
inline _TessFunctionResultCallback_1_4(FunctionSignature function, P1 p1)
: function_(function), p1_(p1) { }
virtual R Run(A1 a1,A2 a2,A3 a3,A4 a4) {
if (!del) {
R result = (*function_)(p1_,a1,a2,a3,a4);
return result;
} else {
R result = (*function_)(p1_,a1,a2,a3,a4);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class P1, class A1, class A2, class A3, class A4>
class _TessFunctionResultCallback_1_4<del, void, P1, A1, A2, A3, A4> : public TessCallback4<A1,A2,A3,A4> {
public:
typedef TessCallback4<A1,A2,A3,A4> base;
typedef void (*FunctionSignature)(P1,A1,A2,A3,A4);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
public:
inline _TessFunctionResultCallback_1_4(FunctionSignature function, P1 p1)
: function_(function), p1_(p1) { }
virtual void Run(A1 a1,A2 a2,A3 a3,A4 a4) {
if (!del) {
(*function_)(p1_,a1,a2,a3,a4);
} else {
(*function_)(p1_,a1,a2,a3,a4);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
}
}
};
template <class R, class P1, class A1, class A2, class A3, class A4>
inline typename _TessFunctionResultCallback_1_4<true,R,P1,A1,A2,A3,A4>::base*
NewTessCallback(R (*function)(P1,A1,A2,A3,A4), typename Identity<P1>::type p1) {
return new _TessFunctionResultCallback_1_4<true,R,P1,A1,A2,A3,A4>(function, p1);
}
template <class R, class P1, class A1, class A2, class A3, class A4>
inline typename _TessFunctionResultCallback_1_4<false,R,P1,A1,A2,A3,A4>::base*
NewPermanentTessCallback(R (*function)(P1,A1,A2,A3,A4), typename Identity<P1>::type p1) {
return new _TessFunctionResultCallback_1_4<false,R,P1,A1,A2,A3,A4>(function, p1);
}
template <bool del, class R, class T, class P1, class P2, class A1, class A2, class A3, class A4>
class _ConstTessMemberResultCallback_2_4 : public TessResultCallback4<R,A1,A2,A3,A4> {
public:
typedef TessResultCallback4<R,A1,A2,A3,A4> base;
typedef R (T::*MemberSignature)(P1,P2,A1,A2,A3,A4) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
public:
inline _ConstTessMemberResultCallback_2_4(const T* object, MemberSignature member, P1 p1, P2 p2)
: object_(object),
member_(member), p1_(p1), p2_(p2) { }
virtual R Run(A1 a1,A2 a2,A3 a3,A4 a4) {
if (!del) {
R result = (object_->*member_)(p1_,p2_,a1,a2,a3,a4);
return result;
} else {
R result = (object_->*member_)(p1_,p2_,a1,a2,a3,a4);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class P2, class A1, class A2, class A3, class A4>
class _ConstTessMemberResultCallback_2_4<del, void, T, P1, P2, A1, A2, A3, A4> : public TessCallback4<A1,A2,A3,A4> {
public:
typedef TessCallback4<A1,A2,A3,A4> base;
typedef void (T::*MemberSignature)(P1,P2,A1,A2,A3,A4) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
public:
inline _ConstTessMemberResultCallback_2_4(const T* object, MemberSignature member, P1 p1, P2 p2)
: object_(object),
member_(member), p1_(p1), p2_(p2) { }
virtual void Run(A1 a1,A2 a2,A3 a3,A4 a4) {
if (!del) {
(object_->*member_)(p1_,p2_,a1,a2,a3,a4);
} else {
(object_->*member_)(p1_,p2_,a1,a2,a3,a4);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class A1, class A2, class A3, class A4>
inline typename _ConstTessMemberResultCallback_2_4<true,R,T1,P1,P2,A1,A2,A3,A4>::base*
NewTessCallback(const T1* obj, R (T2::*member)(P1,P2,A1,A2,A3,A4) const, typename Identity<P1>::type p1, typename Identity<P2>::type p2) {
return new _ConstTessMemberResultCallback_2_4<true,R,T1,P1,P2,A1,A2,A3,A4>(obj, member, p1, p2);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class A1, class A2, class A3, class A4>
inline typename _ConstTessMemberResultCallback_2_4<false,R,T1,P1,P2,A1,A2,A3,A4>::base*
NewPermanentTessCallback(const T1* obj, R (T2::*member)(P1,P2,A1,A2,A3,A4) const, typename Identity<P1>::type p1, typename Identity<P2>::type p2) {
return new _ConstTessMemberResultCallback_2_4<false,R,T1,P1,P2,A1,A2,A3,A4>(obj, member, p1, p2);
}
#endif
template <bool del, class R, class T, class P1, class P2, class A1, class A2, class A3, class A4>
class _TessMemberResultCallback_2_4 : public TessResultCallback4<R,A1,A2,A3,A4> {
public:
typedef TessResultCallback4<R,A1,A2,A3,A4> base;
typedef R (T::*MemberSignature)(P1,P2,A1,A2,A3,A4) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
public:
inline _TessMemberResultCallback_2_4( T* object, MemberSignature member, P1 p1, P2 p2)
: object_(object),
member_(member), p1_(p1), p2_(p2) { }
virtual R Run(A1 a1,A2 a2,A3 a3,A4 a4) {
if (!del) {
R result = (object_->*member_)(p1_,p2_,a1,a2,a3,a4);
return result;
} else {
R result = (object_->*member_)(p1_,p2_,a1,a2,a3,a4);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class P2, class A1, class A2, class A3, class A4>
class _TessMemberResultCallback_2_4<del, void, T, P1, P2, A1, A2, A3, A4> : public TessCallback4<A1,A2,A3,A4> {
public:
typedef TessCallback4<A1,A2,A3,A4> base;
typedef void (T::*MemberSignature)(P1,P2,A1,A2,A3,A4) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
public:
inline _TessMemberResultCallback_2_4( T* object, MemberSignature member, P1 p1, P2 p2)
: object_(object),
member_(member), p1_(p1), p2_(p2) { }
virtual void Run(A1 a1,A2 a2,A3 a3,A4 a4) {
if (!del) {
(object_->*member_)(p1_,p2_,a1,a2,a3,a4);
} else {
(object_->*member_)(p1_,p2_,a1,a2,a3,a4);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class A1, class A2, class A3, class A4>
inline typename _TessMemberResultCallback_2_4<true,R,T1,P1,P2,A1,A2,A3,A4>::base*
NewTessCallback( T1* obj, R (T2::*member)(P1,P2,A1,A2,A3,A4) , typename Identity<P1>::type p1, typename Identity<P2>::type p2) {
return new _TessMemberResultCallback_2_4<true,R,T1,P1,P2,A1,A2,A3,A4>(obj, member, p1, p2);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class A1, class A2, class A3, class A4>
inline typename _TessMemberResultCallback_2_4<false,R,T1,P1,P2,A1,A2,A3,A4>::base*
NewPermanentTessCallback( T1* obj, R (T2::*member)(P1,P2,A1,A2,A3,A4) , typename Identity<P1>::type p1, typename Identity<P2>::type p2) {
return new _TessMemberResultCallback_2_4<false,R,T1,P1,P2,A1,A2,A3,A4>(obj, member, p1, p2);
}
#endif
template <bool del, class R, class P1, class P2, class A1, class A2, class A3, class A4>
class _TessFunctionResultCallback_2_4 : public TessResultCallback4<R,A1,A2,A3,A4> {
public:
typedef TessResultCallback4<R,A1,A2,A3,A4> base;
typedef R (*FunctionSignature)(P1,P2,A1,A2,A3,A4);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
public:
inline _TessFunctionResultCallback_2_4(FunctionSignature function, P1 p1, P2 p2)
: function_(function), p1_(p1), p2_(p2) { }
virtual R Run(A1 a1,A2 a2,A3 a3,A4 a4) {
if (!del) {
R result = (*function_)(p1_,p2_,a1,a2,a3,a4);
return result;
} else {
R result = (*function_)(p1_,p2_,a1,a2,a3,a4);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class P1, class P2, class A1, class A2, class A3, class A4>
class _TessFunctionResultCallback_2_4<del, void, P1, P2, A1, A2, A3, A4> : public TessCallback4<A1,A2,A3,A4> {
public:
typedef TessCallback4<A1,A2,A3,A4> base;
typedef void (*FunctionSignature)(P1,P2,A1,A2,A3,A4);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
public:
inline _TessFunctionResultCallback_2_4(FunctionSignature function, P1 p1, P2 p2)
: function_(function), p1_(p1), p2_(p2) { }
virtual void Run(A1 a1,A2 a2,A3 a3,A4 a4) {
if (!del) {
(*function_)(p1_,p2_,a1,a2,a3,a4);
} else {
(*function_)(p1_,p2_,a1,a2,a3,a4);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
}
}
};
template <class R, class P1, class P2, class A1, class A2, class A3, class A4>
inline typename _TessFunctionResultCallback_2_4<true,R,P1,P2,A1,A2,A3,A4>::base*
NewTessCallback(R (*function)(P1,P2,A1,A2,A3,A4), typename Identity<P1>::type p1, typename Identity<P2>::type p2) {
return new _TessFunctionResultCallback_2_4<true,R,P1,P2,A1,A2,A3,A4>(function, p1, p2);
}
template <class R, class P1, class P2, class A1, class A2, class A3, class A4>
inline typename _TessFunctionResultCallback_2_4<false,R,P1,P2,A1,A2,A3,A4>::base*
NewPermanentTessCallback(R (*function)(P1,P2,A1,A2,A3,A4), typename Identity<P1>::type p1, typename Identity<P2>::type p2) {
return new _TessFunctionResultCallback_2_4<false,R,P1,P2,A1,A2,A3,A4>(function, p1, p2);
}
template <bool del, class R, class T, class P1, class P2, class P3, class A1, class A2, class A3, class A4>
class _ConstTessMemberResultCallback_3_4 : public TessResultCallback4<R,A1,A2,A3,A4> {
public:
typedef TessResultCallback4<R,A1,A2,A3,A4> base;
typedef R (T::*MemberSignature)(P1,P2,P3,A1,A2,A3,A4) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
public:
inline _ConstTessMemberResultCallback_3_4(const T* object, MemberSignature member, P1 p1, P2 p2, P3 p3)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3) { }
virtual R Run(A1 a1,A2 a2,A3 a3,A4 a4) {
if (!del) {
R result = (object_->*member_)(p1_,p2_,p3_,a1,a2,a3,a4);
return result;
} else {
R result = (object_->*member_)(p1_,p2_,p3_,a1,a2,a3,a4);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class P2, class P3, class A1, class A2, class A3, class A4>
class _ConstTessMemberResultCallback_3_4<del, void, T, P1, P2, P3, A1, A2, A3, A4> : public TessCallback4<A1,A2,A3,A4> {
public:
typedef TessCallback4<A1,A2,A3,A4> base;
typedef void (T::*MemberSignature)(P1,P2,P3,A1,A2,A3,A4) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
public:
inline _ConstTessMemberResultCallback_3_4(const T* object, MemberSignature member, P1 p1, P2 p2, P3 p3)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3) { }
virtual void Run(A1 a1,A2 a2,A3 a3,A4 a4) {
if (!del) {
(object_->*member_)(p1_,p2_,p3_,a1,a2,a3,a4);
} else {
(object_->*member_)(p1_,p2_,p3_,a1,a2,a3,a4);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class A1, class A2, class A3, class A4>
inline typename _ConstTessMemberResultCallback_3_4<true,R,T1,P1,P2,P3,A1,A2,A3,A4>::base*
NewTessCallback(const T1* obj, R (T2::*member)(P1,P2,P3,A1,A2,A3,A4) const, typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3) {
return new _ConstTessMemberResultCallback_3_4<true,R,T1,P1,P2,P3,A1,A2,A3,A4>(obj, member, p1, p2, p3);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class A1, class A2, class A3, class A4>
inline typename _ConstTessMemberResultCallback_3_4<false,R,T1,P1,P2,P3,A1,A2,A3,A4>::base*
NewPermanentTessCallback(const T1* obj, R (T2::*member)(P1,P2,P3,A1,A2,A3,A4) const, typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3) {
return new _ConstTessMemberResultCallback_3_4<false,R,T1,P1,P2,P3,A1,A2,A3,A4>(obj, member, p1, p2, p3);
}
#endif
template <bool del, class R, class T, class P1, class P2, class P3, class A1, class A2, class A3, class A4>
class _TessMemberResultCallback_3_4 : public TessResultCallback4<R,A1,A2,A3,A4> {
public:
typedef TessResultCallback4<R,A1,A2,A3,A4> base;
typedef R (T::*MemberSignature)(P1,P2,P3,A1,A2,A3,A4) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
public:
inline _TessMemberResultCallback_3_4( T* object, MemberSignature member, P1 p1, P2 p2, P3 p3)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3) { }
virtual R Run(A1 a1,A2 a2,A3 a3,A4 a4) {
if (!del) {
R result = (object_->*member_)(p1_,p2_,p3_,a1,a2,a3,a4);
return result;
} else {
R result = (object_->*member_)(p1_,p2_,p3_,a1,a2,a3,a4);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class P2, class P3, class A1, class A2, class A3, class A4>
class _TessMemberResultCallback_3_4<del, void, T, P1, P2, P3, A1, A2, A3, A4> : public TessCallback4<A1,A2,A3,A4> {
public:
typedef TessCallback4<A1,A2,A3,A4> base;
typedef void (T::*MemberSignature)(P1,P2,P3,A1,A2,A3,A4) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
public:
inline _TessMemberResultCallback_3_4( T* object, MemberSignature member, P1 p1, P2 p2, P3 p3)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3) { }
virtual void Run(A1 a1,A2 a2,A3 a3,A4 a4) {
if (!del) {
(object_->*member_)(p1_,p2_,p3_,a1,a2,a3,a4);
} else {
(object_->*member_)(p1_,p2_,p3_,a1,a2,a3,a4);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class A1, class A2, class A3, class A4>
inline typename _TessMemberResultCallback_3_4<true,R,T1,P1,P2,P3,A1,A2,A3,A4>::base*
NewTessCallback( T1* obj, R (T2::*member)(P1,P2,P3,A1,A2,A3,A4) , typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3) {
return new _TessMemberResultCallback_3_4<true,R,T1,P1,P2,P3,A1,A2,A3,A4>(obj, member, p1, p2, p3);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class A1, class A2, class A3, class A4>
inline typename _TessMemberResultCallback_3_4<false,R,T1,P1,P2,P3,A1,A2,A3,A4>::base*
NewPermanentTessCallback( T1* obj, R (T2::*member)(P1,P2,P3,A1,A2,A3,A4) , typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3) {
return new _TessMemberResultCallback_3_4<false,R,T1,P1,P2,P3,A1,A2,A3,A4>(obj, member, p1, p2, p3);
}
#endif
template <bool del, class R, class P1, class P2, class P3, class A1, class A2, class A3, class A4>
class _TessFunctionResultCallback_3_4 : public TessResultCallback4<R,A1,A2,A3,A4> {
public:
typedef TessResultCallback4<R,A1,A2,A3,A4> base;
typedef R (*FunctionSignature)(P1,P2,P3,A1,A2,A3,A4);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
public:
inline _TessFunctionResultCallback_3_4(FunctionSignature function, P1 p1, P2 p2, P3 p3)
: function_(function), p1_(p1), p2_(p2), p3_(p3) { }
virtual R Run(A1 a1,A2 a2,A3 a3,A4 a4) {
if (!del) {
R result = (*function_)(p1_,p2_,p3_,a1,a2,a3,a4);
return result;
} else {
R result = (*function_)(p1_,p2_,p3_,a1,a2,a3,a4);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class P1, class P2, class P3, class A1, class A2, class A3, class A4>
class _TessFunctionResultCallback_3_4<del, void, P1, P2, P3, A1, A2, A3, A4> : public TessCallback4<A1,A2,A3,A4> {
public:
typedef TessCallback4<A1,A2,A3,A4> base;
typedef void (*FunctionSignature)(P1,P2,P3,A1,A2,A3,A4);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
public:
inline _TessFunctionResultCallback_3_4(FunctionSignature function, P1 p1, P2 p2, P3 p3)
: function_(function), p1_(p1), p2_(p2), p3_(p3) { }
virtual void Run(A1 a1,A2 a2,A3 a3,A4 a4) {
if (!del) {
(*function_)(p1_,p2_,p3_,a1,a2,a3,a4);
} else {
(*function_)(p1_,p2_,p3_,a1,a2,a3,a4);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
}
}
};
template <class R, class P1, class P2, class P3, class A1, class A2, class A3, class A4>
inline typename _TessFunctionResultCallback_3_4<true,R,P1,P2,P3,A1,A2,A3,A4>::base*
NewTessCallback(R (*function)(P1,P2,P3,A1,A2,A3,A4), typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3) {
return new _TessFunctionResultCallback_3_4<true,R,P1,P2,P3,A1,A2,A3,A4>(function, p1, p2, p3);
}
template <class R, class P1, class P2, class P3, class A1, class A2, class A3, class A4>
inline typename _TessFunctionResultCallback_3_4<false,R,P1,P2,P3,A1,A2,A3,A4>::base*
NewPermanentTessCallback(R (*function)(P1,P2,P3,A1,A2,A3,A4), typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3) {
return new _TessFunctionResultCallback_3_4<false,R,P1,P2,P3,A1,A2,A3,A4>(function, p1, p2, p3);
}
template <bool del, class R, class T, class P1, class P2, class P3, class P4, class A1, class A2, class A3, class A4>
class _ConstTessMemberResultCallback_4_4 : public TessResultCallback4<R,A1,A2,A3,A4> {
public:
typedef TessResultCallback4<R,A1,A2,A3,A4> base;
typedef R (T::*MemberSignature)(P1,P2,P3,P4,A1,A2,A3,A4) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
public:
inline _ConstTessMemberResultCallback_4_4(const T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4) { }
virtual R Run(A1 a1,A2 a2,A3 a3,A4 a4) {
if (!del) {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,a1,a2,a3,a4);
return result;
} else {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,a1,a2,a3,a4);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class P2, class P3, class P4, class A1, class A2, class A3, class A4>
class _ConstTessMemberResultCallback_4_4<del, void, T, P1, P2, P3, P4, A1, A2, A3, A4> : public TessCallback4<A1,A2,A3,A4> {
public:
typedef TessCallback4<A1,A2,A3,A4> base;
typedef void (T::*MemberSignature)(P1,P2,P3,P4,A1,A2,A3,A4) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
public:
inline _ConstTessMemberResultCallback_4_4(const T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4) { }
virtual void Run(A1 a1,A2 a2,A3 a3,A4 a4) {
if (!del) {
(object_->*member_)(p1_,p2_,p3_,p4_,a1,a2,a3,a4);
} else {
(object_->*member_)(p1_,p2_,p3_,p4_,a1,a2,a3,a4);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class A1, class A2, class A3, class A4>
inline typename _ConstTessMemberResultCallback_4_4<true,R,T1,P1,P2,P3,P4,A1,A2,A3,A4>::base*
NewTessCallback(const T1* obj, R (T2::*member)(P1,P2,P3,P4,A1,A2,A3,A4) const, typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4) {
return new _ConstTessMemberResultCallback_4_4<true,R,T1,P1,P2,P3,P4,A1,A2,A3,A4>(obj, member, p1, p2, p3, p4);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class A1, class A2, class A3, class A4>
inline typename _ConstTessMemberResultCallback_4_4<false,R,T1,P1,P2,P3,P4,A1,A2,A3,A4>::base*
NewPermanentTessCallback(const T1* obj, R (T2::*member)(P1,P2,P3,P4,A1,A2,A3,A4) const, typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4) {
return new _ConstTessMemberResultCallback_4_4<false,R,T1,P1,P2,P3,P4,A1,A2,A3,A4>(obj, member, p1, p2, p3, p4);
}
#endif
template <bool del, class R, class T, class P1, class P2, class P3, class P4, class A1, class A2, class A3, class A4>
class _TessMemberResultCallback_4_4 : public TessResultCallback4<R,A1,A2,A3,A4> {
public:
typedef TessResultCallback4<R,A1,A2,A3,A4> base;
typedef R (T::*MemberSignature)(P1,P2,P3,P4,A1,A2,A3,A4) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
public:
inline _TessMemberResultCallback_4_4( T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4) { }
virtual R Run(A1 a1,A2 a2,A3 a3,A4 a4) {
if (!del) {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,a1,a2,a3,a4);
return result;
} else {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,a1,a2,a3,a4);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class P2, class P3, class P4, class A1, class A2, class A3, class A4>
class _TessMemberResultCallback_4_4<del, void, T, P1, P2, P3, P4, A1, A2, A3, A4> : public TessCallback4<A1,A2,A3,A4> {
public:
typedef TessCallback4<A1,A2,A3,A4> base;
typedef void (T::*MemberSignature)(P1,P2,P3,P4,A1,A2,A3,A4) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
public:
inline _TessMemberResultCallback_4_4( T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4) { }
virtual void Run(A1 a1,A2 a2,A3 a3,A4 a4) {
if (!del) {
(object_->*member_)(p1_,p2_,p3_,p4_,a1,a2,a3,a4);
} else {
(object_->*member_)(p1_,p2_,p3_,p4_,a1,a2,a3,a4);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class A1, class A2, class A3, class A4>
inline typename _TessMemberResultCallback_4_4<true,R,T1,P1,P2,P3,P4,A1,A2,A3,A4>::base*
NewTessCallback( T1* obj, R (T2::*member)(P1,P2,P3,P4,A1,A2,A3,A4) , typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4) {
return new _TessMemberResultCallback_4_4<true,R,T1,P1,P2,P3,P4,A1,A2,A3,A4>(obj, member, p1, p2, p3, p4);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class A1, class A2, class A3, class A4>
inline typename _TessMemberResultCallback_4_4<false,R,T1,P1,P2,P3,P4,A1,A2,A3,A4>::base*
NewPermanentTessCallback( T1* obj, R (T2::*member)(P1,P2,P3,P4,A1,A2,A3,A4) , typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4) {
return new _TessMemberResultCallback_4_4<false,R,T1,P1,P2,P3,P4,A1,A2,A3,A4>(obj, member, p1, p2, p3, p4);
}
#endif
template <bool del, class R, class P1, class P2, class P3, class P4, class A1, class A2, class A3, class A4>
class _TessFunctionResultCallback_4_4 : public TessResultCallback4<R,A1,A2,A3,A4> {
public:
typedef TessResultCallback4<R,A1,A2,A3,A4> base;
typedef R (*FunctionSignature)(P1,P2,P3,P4,A1,A2,A3,A4);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
public:
inline _TessFunctionResultCallback_4_4(FunctionSignature function, P1 p1, P2 p2, P3 p3, P4 p4)
: function_(function), p1_(p1), p2_(p2), p3_(p3), p4_(p4) { }
virtual R Run(A1 a1,A2 a2,A3 a3,A4 a4) {
if (!del) {
R result = (*function_)(p1_,p2_,p3_,p4_,a1,a2,a3,a4);
return result;
} else {
R result = (*function_)(p1_,p2_,p3_,p4_,a1,a2,a3,a4);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class P1, class P2, class P3, class P4, class A1, class A2, class A3, class A4>
class _TessFunctionResultCallback_4_4<del, void, P1, P2, P3, P4, A1, A2, A3, A4> : public TessCallback4<A1,A2,A3,A4> {
public:
typedef TessCallback4<A1,A2,A3,A4> base;
typedef void (*FunctionSignature)(P1,P2,P3,P4,A1,A2,A3,A4);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
public:
inline _TessFunctionResultCallback_4_4(FunctionSignature function, P1 p1, P2 p2, P3 p3, P4 p4)
: function_(function), p1_(p1), p2_(p2), p3_(p3), p4_(p4) { }
virtual void Run(A1 a1,A2 a2,A3 a3,A4 a4) {
if (!del) {
(*function_)(p1_,p2_,p3_,p4_,a1,a2,a3,a4);
} else {
(*function_)(p1_,p2_,p3_,p4_,a1,a2,a3,a4);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
}
}
};
template <class R, class P1, class P2, class P3, class P4, class A1, class A2, class A3, class A4>
inline typename _TessFunctionResultCallback_4_4<true,R,P1,P2,P3,P4,A1,A2,A3,A4>::base*
NewTessCallback(R (*function)(P1,P2,P3,P4,A1,A2,A3,A4), typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4) {
return new _TessFunctionResultCallback_4_4<true,R,P1,P2,P3,P4,A1,A2,A3,A4>(function, p1, p2, p3, p4);
}
template <class R, class P1, class P2, class P3, class P4, class A1, class A2, class A3, class A4>
inline typename _TessFunctionResultCallback_4_4<false,R,P1,P2,P3,P4,A1,A2,A3,A4>::base*
NewPermanentTessCallback(R (*function)(P1,P2,P3,P4,A1,A2,A3,A4), typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4) {
return new _TessFunctionResultCallback_4_4<false,R,P1,P2,P3,P4,A1,A2,A3,A4>(function, p1, p2, p3, p4);
}
template <bool del, class R, class T, class P1, class P2, class P3, class P4, class P5, class A1, class A2, class A3, class A4>
class _ConstTessMemberResultCallback_5_4 : public TessResultCallback4<R,A1,A2,A3,A4> {
public:
typedef TessResultCallback4<R,A1,A2,A3,A4> base;
typedef R (T::*MemberSignature)(P1,P2,P3,P4,P5,A1,A2,A3,A4) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
public:
inline _ConstTessMemberResultCallback_5_4(const T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5) { }
virtual R Run(A1 a1,A2 a2,A3 a3,A4 a4) {
if (!del) {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,p5_,a1,a2,a3,a4);
return result;
} else {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,p5_,a1,a2,a3,a4);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class P2, class P3, class P4, class P5, class A1, class A2, class A3, class A4>
class _ConstTessMemberResultCallback_5_4<del, void, T, P1, P2, P3, P4, P5, A1, A2, A3, A4> : public TessCallback4<A1,A2,A3,A4> {
public:
typedef TessCallback4<A1,A2,A3,A4> base;
typedef void (T::*MemberSignature)(P1,P2,P3,P4,P5,A1,A2,A3,A4) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
public:
inline _ConstTessMemberResultCallback_5_4(const T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5) { }
virtual void Run(A1 a1,A2 a2,A3 a3,A4 a4) {
if (!del) {
(object_->*member_)(p1_,p2_,p3_,p4_,p5_,a1,a2,a3,a4);
} else {
(object_->*member_)(p1_,p2_,p3_,p4_,p5_,a1,a2,a3,a4);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class P5, class A1, class A2, class A3, class A4>
inline typename _ConstTessMemberResultCallback_5_4<true,R,T1,P1,P2,P3,P4,P5,A1,A2,A3,A4>::base*
NewTessCallback(const T1* obj, R (T2::*member)(P1,P2,P3,P4,P5,A1,A2,A3,A4) const, typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5) {
return new _ConstTessMemberResultCallback_5_4<true,R,T1,P1,P2,P3,P4,P5,A1,A2,A3,A4>(obj, member, p1, p2, p3, p4, p5);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class P5, class A1, class A2, class A3, class A4>
inline typename _ConstTessMemberResultCallback_5_4<false,R,T1,P1,P2,P3,P4,P5,A1,A2,A3,A4>::base*
NewPermanentTessCallback(const T1* obj, R (T2::*member)(P1,P2,P3,P4,P5,A1,A2,A3,A4) const, typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5) {
return new _ConstTessMemberResultCallback_5_4<false,R,T1,P1,P2,P3,P4,P5,A1,A2,A3,A4>(obj, member, p1, p2, p3, p4, p5);
}
#endif
template <bool del, class R, class T, class P1, class P2, class P3, class P4, class P5, class A1, class A2, class A3, class A4>
class _TessMemberResultCallback_5_4 : public TessResultCallback4<R,A1,A2,A3,A4> {
public:
typedef TessResultCallback4<R,A1,A2,A3,A4> base;
typedef R (T::*MemberSignature)(P1,P2,P3,P4,P5,A1,A2,A3,A4) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
public:
inline _TessMemberResultCallback_5_4( T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5) { }
virtual R Run(A1 a1,A2 a2,A3 a3,A4 a4) {
if (!del) {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,p5_,a1,a2,a3,a4);
return result;
} else {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,p5_,a1,a2,a3,a4);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class P2, class P3, class P4, class P5, class A1, class A2, class A3, class A4>
class _TessMemberResultCallback_5_4<del, void, T, P1, P2, P3, P4, P5, A1, A2, A3, A4> : public TessCallback4<A1,A2,A3,A4> {
public:
typedef TessCallback4<A1,A2,A3,A4> base;
typedef void (T::*MemberSignature)(P1,P2,P3,P4,P5,A1,A2,A3,A4) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
public:
inline _TessMemberResultCallback_5_4( T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5) { }
virtual void Run(A1 a1,A2 a2,A3 a3,A4 a4) {
if (!del) {
(object_->*member_)(p1_,p2_,p3_,p4_,p5_,a1,a2,a3,a4);
} else {
(object_->*member_)(p1_,p2_,p3_,p4_,p5_,a1,a2,a3,a4);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class P5, class A1, class A2, class A3, class A4>
inline typename _TessMemberResultCallback_5_4<true,R,T1,P1,P2,P3,P4,P5,A1,A2,A3,A4>::base*
NewTessCallback( T1* obj, R (T2::*member)(P1,P2,P3,P4,P5,A1,A2,A3,A4) , typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5) {
return new _TessMemberResultCallback_5_4<true,R,T1,P1,P2,P3,P4,P5,A1,A2,A3,A4>(obj, member, p1, p2, p3, p4, p5);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class P5, class A1, class A2, class A3, class A4>
inline typename _TessMemberResultCallback_5_4<false,R,T1,P1,P2,P3,P4,P5,A1,A2,A3,A4>::base*
NewPermanentTessCallback( T1* obj, R (T2::*member)(P1,P2,P3,P4,P5,A1,A2,A3,A4) , typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5) {
return new _TessMemberResultCallback_5_4<false,R,T1,P1,P2,P3,P4,P5,A1,A2,A3,A4>(obj, member, p1, p2, p3, p4, p5);
}
#endif
template <bool del, class R, class P1, class P2, class P3, class P4, class P5, class A1, class A2, class A3, class A4>
class _TessFunctionResultCallback_5_4 : public TessResultCallback4<R,A1,A2,A3,A4> {
public:
typedef TessResultCallback4<R,A1,A2,A3,A4> base;
typedef R (*FunctionSignature)(P1,P2,P3,P4,P5,A1,A2,A3,A4);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
public:
inline _TessFunctionResultCallback_5_4(FunctionSignature function, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5)
: function_(function), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5) { }
virtual R Run(A1 a1,A2 a2,A3 a3,A4 a4) {
if (!del) {
R result = (*function_)(p1_,p2_,p3_,p4_,p5_,a1,a2,a3,a4);
return result;
} else {
R result = (*function_)(p1_,p2_,p3_,p4_,p5_,a1,a2,a3,a4);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class P1, class P2, class P3, class P4, class P5, class A1, class A2, class A3, class A4>
class _TessFunctionResultCallback_5_4<del, void, P1, P2, P3, P4, P5, A1, A2, A3, A4> : public TessCallback4<A1,A2,A3,A4> {
public:
typedef TessCallback4<A1,A2,A3,A4> base;
typedef void (*FunctionSignature)(P1,P2,P3,P4,P5,A1,A2,A3,A4);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
public:
inline _TessFunctionResultCallback_5_4(FunctionSignature function, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5)
: function_(function), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5) { }
virtual void Run(A1 a1,A2 a2,A3 a3,A4 a4) {
if (!del) {
(*function_)(p1_,p2_,p3_,p4_,p5_,a1,a2,a3,a4);
} else {
(*function_)(p1_,p2_,p3_,p4_,p5_,a1,a2,a3,a4);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
}
}
};
template <class R, class P1, class P2, class P3, class P4, class P5, class A1, class A2, class A3, class A4>
inline typename _TessFunctionResultCallback_5_4<true,R,P1,P2,P3,P4,P5,A1,A2,A3,A4>::base*
NewTessCallback(R (*function)(P1,P2,P3,P4,P5,A1,A2,A3,A4), typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5) {
return new _TessFunctionResultCallback_5_4<true,R,P1,P2,P3,P4,P5,A1,A2,A3,A4>(function, p1, p2, p3, p4, p5);
}
template <class R, class P1, class P2, class P3, class P4, class P5, class A1, class A2, class A3, class A4>
inline typename _TessFunctionResultCallback_5_4<false,R,P1,P2,P3,P4,P5,A1,A2,A3,A4>::base*
NewPermanentTessCallback(R (*function)(P1,P2,P3,P4,P5,A1,A2,A3,A4), typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5) {
return new _TessFunctionResultCallback_5_4<false,R,P1,P2,P3,P4,P5,A1,A2,A3,A4>(function, p1, p2, p3, p4, p5);
}
template <bool del, class R, class T, class P1, class P2, class P3, class P4, class P5, class P6, class A1, class A2, class A3, class A4>
class _ConstTessMemberResultCallback_6_4 : public TessResultCallback4<R,A1,A2,A3,A4> {
public:
typedef TessResultCallback4<R,A1,A2,A3,A4> base;
typedef R (T::*MemberSignature)(P1,P2,P3,P4,P5,P6,A1,A2,A3,A4) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
typename remove_reference<P6>::type p6_;
public:
inline _ConstTessMemberResultCallback_6_4(const T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5), p6_(p6) { }
virtual R Run(A1 a1,A2 a2,A3 a3,A4 a4) {
if (!del) {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,p5_,p6_,a1,a2,a3,a4);
return result;
} else {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,p5_,p6_,a1,a2,a3,a4);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class P2, class P3, class P4, class P5, class P6, class A1, class A2, class A3, class A4>
class _ConstTessMemberResultCallback_6_4<del, void, T, P1, P2, P3, P4, P5, P6, A1, A2, A3, A4> : public TessCallback4<A1,A2,A3,A4> {
public:
typedef TessCallback4<A1,A2,A3,A4> base;
typedef void (T::*MemberSignature)(P1,P2,P3,P4,P5,P6,A1,A2,A3,A4) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
typename remove_reference<P6>::type p6_;
public:
inline _ConstTessMemberResultCallback_6_4(const T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5), p6_(p6) { }
virtual void Run(A1 a1,A2 a2,A3 a3,A4 a4) {
if (!del) {
(object_->*member_)(p1_,p2_,p3_,p4_,p5_,p6_,a1,a2,a3,a4);
} else {
(object_->*member_)(p1_,p2_,p3_,p4_,p5_,p6_,a1,a2,a3,a4);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class P5, class P6, class A1, class A2, class A3, class A4>
inline typename _ConstTessMemberResultCallback_6_4<true,R,T1,P1,P2,P3,P4,P5,P6,A1,A2,A3,A4>::base*
NewTessCallback(const T1* obj, R (T2::*member)(P1,P2,P3,P4,P5,P6,A1,A2,A3,A4) const, typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5, typename Identity<P6>::type p6) {
return new _ConstTessMemberResultCallback_6_4<true,R,T1,P1,P2,P3,P4,P5,P6,A1,A2,A3,A4>(obj, member, p1, p2, p3, p4, p5, p6);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class P5, class P6, class A1, class A2, class A3, class A4>
inline typename _ConstTessMemberResultCallback_6_4<false,R,T1,P1,P2,P3,P4,P5,P6,A1,A2,A3,A4>::base*
NewPermanentTessCallback(const T1* obj, R (T2::*member)(P1,P2,P3,P4,P5,P6,A1,A2,A3,A4) const, typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5, typename Identity<P6>::type p6) {
return new _ConstTessMemberResultCallback_6_4<false,R,T1,P1,P2,P3,P4,P5,P6,A1,A2,A3,A4>(obj, member, p1, p2, p3, p4, p5, p6);
}
#endif
template <bool del, class R, class T, class P1, class P2, class P3, class P4, class P5, class P6, class A1, class A2, class A3, class A4>
class _TessMemberResultCallback_6_4 : public TessResultCallback4<R,A1,A2,A3,A4> {
public:
typedef TessResultCallback4<R,A1,A2,A3,A4> base;
typedef R (T::*MemberSignature)(P1,P2,P3,P4,P5,P6,A1,A2,A3,A4) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
typename remove_reference<P6>::type p6_;
public:
inline _TessMemberResultCallback_6_4( T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5), p6_(p6) { }
virtual R Run(A1 a1,A2 a2,A3 a3,A4 a4) {
if (!del) {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,p5_,p6_,a1,a2,a3,a4);
return result;
} else {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,p5_,p6_,a1,a2,a3,a4);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class P2, class P3, class P4, class P5, class P6, class A1, class A2, class A3, class A4>
class _TessMemberResultCallback_6_4<del, void, T, P1, P2, P3, P4, P5, P6, A1, A2, A3, A4> : public TessCallback4<A1,A2,A3,A4> {
public:
typedef TessCallback4<A1,A2,A3,A4> base;
typedef void (T::*MemberSignature)(P1,P2,P3,P4,P5,P6,A1,A2,A3,A4) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
typename remove_reference<P6>::type p6_;
public:
inline _TessMemberResultCallback_6_4( T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5), p6_(p6) { }
virtual void Run(A1 a1,A2 a2,A3 a3,A4 a4) {
if (!del) {
(object_->*member_)(p1_,p2_,p3_,p4_,p5_,p6_,a1,a2,a3,a4);
} else {
(object_->*member_)(p1_,p2_,p3_,p4_,p5_,p6_,a1,a2,a3,a4);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class P5, class P6, class A1, class A2, class A3, class A4>
inline typename _TessMemberResultCallback_6_4<true,R,T1,P1,P2,P3,P4,P5,P6,A1,A2,A3,A4>::base*
NewTessCallback( T1* obj, R (T2::*member)(P1,P2,P3,P4,P5,P6,A1,A2,A3,A4) , typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5, typename Identity<P6>::type p6) {
return new _TessMemberResultCallback_6_4<true,R,T1,P1,P2,P3,P4,P5,P6,A1,A2,A3,A4>(obj, member, p1, p2, p3, p4, p5, p6);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class P5, class P6, class A1, class A2, class A3, class A4>
inline typename _TessMemberResultCallback_6_4<false,R,T1,P1,P2,P3,P4,P5,P6,A1,A2,A3,A4>::base*
NewPermanentTessCallback( T1* obj, R (T2::*member)(P1,P2,P3,P4,P5,P6,A1,A2,A3,A4) , typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5, typename Identity<P6>::type p6) {
return new _TessMemberResultCallback_6_4<false,R,T1,P1,P2,P3,P4,P5,P6,A1,A2,A3,A4>(obj, member, p1, p2, p3, p4, p5, p6);
}
#endif
template <bool del, class R, class P1, class P2, class P3, class P4, class P5, class P6, class A1, class A2, class A3, class A4>
class _TessFunctionResultCallback_6_4 : public TessResultCallback4<R,A1,A2,A3,A4> {
public:
typedef TessResultCallback4<R,A1,A2,A3,A4> base;
typedef R (*FunctionSignature)(P1,P2,P3,P4,P5,P6,A1,A2,A3,A4);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
typename remove_reference<P6>::type p6_;
public:
inline _TessFunctionResultCallback_6_4(FunctionSignature function, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6)
: function_(function), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5), p6_(p6) { }
virtual R Run(A1 a1,A2 a2,A3 a3,A4 a4) {
if (!del) {
R result = (*function_)(p1_,p2_,p3_,p4_,p5_,p6_,a1,a2,a3,a4);
return result;
} else {
R result = (*function_)(p1_,p2_,p3_,p4_,p5_,p6_,a1,a2,a3,a4);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class P1, class P2, class P3, class P4, class P5, class P6, class A1, class A2, class A3, class A4>
class _TessFunctionResultCallback_6_4<del, void, P1, P2, P3, P4, P5, P6, A1, A2, A3, A4> : public TessCallback4<A1,A2,A3,A4> {
public:
typedef TessCallback4<A1,A2,A3,A4> base;
typedef void (*FunctionSignature)(P1,P2,P3,P4,P5,P6,A1,A2,A3,A4);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
typename remove_reference<P6>::type p6_;
public:
inline _TessFunctionResultCallback_6_4(FunctionSignature function, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6)
: function_(function), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5), p6_(p6) { }
virtual void Run(A1 a1,A2 a2,A3 a3,A4 a4) {
if (!del) {
(*function_)(p1_,p2_,p3_,p4_,p5_,p6_,a1,a2,a3,a4);
} else {
(*function_)(p1_,p2_,p3_,p4_,p5_,p6_,a1,a2,a3,a4);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
}
}
};
template <class R, class P1, class P2, class P3, class P4, class P5, class P6, class A1, class A2, class A3, class A4>
inline typename _TessFunctionResultCallback_6_4<true,R,P1,P2,P3,P4,P5,P6,A1,A2,A3,A4>::base*
NewTessCallback(R (*function)(P1,P2,P3,P4,P5,P6,A1,A2,A3,A4), typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5, typename Identity<P6>::type p6) {
return new _TessFunctionResultCallback_6_4<true,R,P1,P2,P3,P4,P5,P6,A1,A2,A3,A4>(function, p1, p2, p3, p4, p5, p6);
}
template <class R, class P1, class P2, class P3, class P4, class P5, class P6, class A1, class A2, class A3, class A4>
inline typename _TessFunctionResultCallback_6_4<false,R,P1,P2,P3,P4,P5,P6,A1,A2,A3,A4>::base*
NewPermanentTessCallback(R (*function)(P1,P2,P3,P4,P5,P6,A1,A2,A3,A4), typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5, typename Identity<P6>::type p6) {
return new _TessFunctionResultCallback_6_4<false,R,P1,P2,P3,P4,P5,P6,A1,A2,A3,A4>(function, p1, p2, p3, p4, p5, p6);
}
template <class A1,class A2,class A3,class A4,class A5>
class TessCallback5 {
public:
virtual ~TessCallback5() { }
virtual void Run(A1,A2,A3,A4,A5) = 0;
};
template <class R, class A1,class A2,class A3,class A4,class A5>
class TessResultCallback5 {
public:
virtual ~TessResultCallback5() { }
virtual R Run(A1,A2,A3,A4,A5) = 0;
};
template <bool del, class R, class T, class A1, class A2, class A3, class A4, class A5>
class _ConstTessMemberResultCallback_0_5 : public TessResultCallback5<R,A1,A2,A3,A4,A5> {
public:
typedef TessResultCallback5<R,A1,A2,A3,A4,A5> base;
typedef R (T::*MemberSignature)(A1,A2,A3,A4,A5) const;
private:
const T* object_;
MemberSignature member_;
public:
inline _ConstTessMemberResultCallback_0_5(const T* object, MemberSignature member)
: object_(object),
member_(member) { }
virtual R Run(A1 a1,A2 a2,A3 a3,A4 a4,A5 a5) {
if (!del) {
R result = (object_->*member_)(a1,a2,a3,a4,a5);
return result;
} else {
R result = (object_->*member_)(a1,a2,a3,a4,a5);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class A1, class A2, class A3, class A4, class A5>
class _ConstTessMemberResultCallback_0_5<del, void, T, A1, A2, A3, A4, A5> : public TessCallback5<A1,A2,A3,A4,A5> {
public:
typedef TessCallback5<A1,A2,A3,A4,A5> base;
typedef void (T::*MemberSignature)(A1,A2,A3,A4,A5) const;
private:
const T* object_;
MemberSignature member_;
public:
inline _ConstTessMemberResultCallback_0_5(const T* object, MemberSignature member)
: object_(object),
member_(member) { }
virtual void Run(A1 a1,A2 a2,A3 a3,A4 a4,A5 a5) {
if (!del) {
(object_->*member_)(a1,a2,a3,a4,a5);
} else {
(object_->*member_)(a1,a2,a3,a4,a5);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class A1, class A2, class A3, class A4, class A5>
inline typename _ConstTessMemberResultCallback_0_5<true,R,T1,A1,A2,A3,A4,A5>::base*
NewTessCallback(const T1* obj, R (T2::*member)(A1,A2,A3,A4,A5) const) {
return new _ConstTessMemberResultCallback_0_5<true,R,T1,A1,A2,A3,A4,A5>(obj, member);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class A1, class A2, class A3, class A4, class A5>
inline typename _ConstTessMemberResultCallback_0_5<false,R,T1,A1,A2,A3,A4,A5>::base*
NewPermanentTessCallback(const T1* obj, R (T2::*member)(A1,A2,A3,A4,A5) const) {
return new _ConstTessMemberResultCallback_0_5<false,R,T1,A1,A2,A3,A4,A5>(obj, member);
}
#endif
template <bool del, class R, class T, class A1, class A2, class A3, class A4, class A5>
class _TessMemberResultCallback_0_5 : public TessResultCallback5<R,A1,A2,A3,A4,A5> {
public:
typedef TessResultCallback5<R,A1,A2,A3,A4,A5> base;
typedef R (T::*MemberSignature)(A1,A2,A3,A4,A5) ;
private:
T* object_;
MemberSignature member_;
public:
inline _TessMemberResultCallback_0_5( T* object, MemberSignature member)
: object_(object),
member_(member) { }
virtual R Run(A1 a1,A2 a2,A3 a3,A4 a4,A5 a5) {
if (!del) {
R result = (object_->*member_)(a1,a2,a3,a4,a5);
return result;
} else {
R result = (object_->*member_)(a1,a2,a3,a4,a5);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class A1, class A2, class A3, class A4, class A5>
class _TessMemberResultCallback_0_5<del, void, T, A1, A2, A3, A4, A5> : public TessCallback5<A1,A2,A3,A4,A5> {
public:
typedef TessCallback5<A1,A2,A3,A4,A5> base;
typedef void (T::*MemberSignature)(A1,A2,A3,A4,A5) ;
private:
T* object_;
MemberSignature member_;
public:
inline _TessMemberResultCallback_0_5( T* object, MemberSignature member)
: object_(object),
member_(member) { }
virtual void Run(A1 a1,A2 a2,A3 a3,A4 a4,A5 a5) {
if (!del) {
(object_->*member_)(a1,a2,a3,a4,a5);
} else {
(object_->*member_)(a1,a2,a3,a4,a5);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class A1, class A2, class A3, class A4, class A5>
inline typename _TessMemberResultCallback_0_5<true,R,T1,A1,A2,A3,A4,A5>::base*
NewTessCallback( T1* obj, R (T2::*member)(A1,A2,A3,A4,A5) ) {
return new _TessMemberResultCallback_0_5<true,R,T1,A1,A2,A3,A4,A5>(obj, member);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class A1, class A2, class A3, class A4, class A5>
inline typename _TessMemberResultCallback_0_5<false,R,T1,A1,A2,A3,A4,A5>::base*
NewPermanentTessCallback( T1* obj, R (T2::*member)(A1,A2,A3,A4,A5) ) {
return new _TessMemberResultCallback_0_5<false,R,T1,A1,A2,A3,A4,A5>(obj, member);
}
#endif
template <bool del, class R, class A1, class A2, class A3, class A4, class A5>
class _TessFunctionResultCallback_0_5 : public TessResultCallback5<R,A1,A2,A3,A4,A5> {
public:
typedef TessResultCallback5<R,A1,A2,A3,A4,A5> base;
typedef R (*FunctionSignature)(A1,A2,A3,A4,A5);
private:
FunctionSignature function_;
public:
inline _TessFunctionResultCallback_0_5(FunctionSignature function)
: function_(function) { }
virtual R Run(A1 a1,A2 a2,A3 a3,A4 a4,A5 a5) {
if (!del) {
R result = (*function_)(a1,a2,a3,a4,a5);
return result;
} else {
R result = (*function_)(a1,a2,a3,a4,a5);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class A1, class A2, class A3, class A4, class A5>
class _TessFunctionResultCallback_0_5<del, void, A1, A2, A3, A4, A5> : public TessCallback5<A1,A2,A3,A4,A5> {
public:
typedef TessCallback5<A1,A2,A3,A4,A5> base;
typedef void (*FunctionSignature)(A1,A2,A3,A4,A5);
private:
FunctionSignature function_;
public:
inline _TessFunctionResultCallback_0_5(FunctionSignature function)
: function_(function) { }
virtual void Run(A1 a1,A2 a2,A3 a3,A4 a4,A5 a5) {
if (!del) {
(*function_)(a1,a2,a3,a4,a5);
} else {
(*function_)(a1,a2,a3,a4,a5);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
}
}
};
template <class R, class A1, class A2, class A3, class A4, class A5>
inline typename _TessFunctionResultCallback_0_5<true,R,A1,A2,A3,A4,A5>::base*
NewTessCallback(R (*function)(A1,A2,A3,A4,A5)) {
return new _TessFunctionResultCallback_0_5<true,R,A1,A2,A3,A4,A5>(function);
}
template <class R, class A1, class A2, class A3, class A4, class A5>
inline typename _TessFunctionResultCallback_0_5<false,R,A1,A2,A3,A4,A5>::base*
NewPermanentTessCallback(R (*function)(A1,A2,A3,A4,A5)) {
return new _TessFunctionResultCallback_0_5<false,R,A1,A2,A3,A4,A5>(function);
}
template <bool del, class R, class T, class P1, class A1, class A2, class A3, class A4, class A5>
class _ConstTessMemberResultCallback_1_5 : public TessResultCallback5<R,A1,A2,A3,A4,A5> {
public:
typedef TessResultCallback5<R,A1,A2,A3,A4,A5> base;
typedef R (T::*MemberSignature)(P1,A1,A2,A3,A4,A5) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
public:
inline _ConstTessMemberResultCallback_1_5(const T* object, MemberSignature member, P1 p1)
: object_(object),
member_(member), p1_(p1) { }
virtual R Run(A1 a1,A2 a2,A3 a3,A4 a4,A5 a5) {
if (!del) {
R result = (object_->*member_)(p1_,a1,a2,a3,a4,a5);
return result;
} else {
R result = (object_->*member_)(p1_,a1,a2,a3,a4,a5);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class A1, class A2, class A3, class A4, class A5>
class _ConstTessMemberResultCallback_1_5<del, void, T, P1, A1, A2, A3, A4, A5> : public TessCallback5<A1,A2,A3,A4,A5> {
public:
typedef TessCallback5<A1,A2,A3,A4,A5> base;
typedef void (T::*MemberSignature)(P1,A1,A2,A3,A4,A5) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
public:
inline _ConstTessMemberResultCallback_1_5(const T* object, MemberSignature member, P1 p1)
: object_(object),
member_(member), p1_(p1) { }
virtual void Run(A1 a1,A2 a2,A3 a3,A4 a4,A5 a5) {
if (!del) {
(object_->*member_)(p1_,a1,a2,a3,a4,a5);
} else {
(object_->*member_)(p1_,a1,a2,a3,a4,a5);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class A1, class A2, class A3, class A4, class A5>
inline typename _ConstTessMemberResultCallback_1_5<true,R,T1,P1,A1,A2,A3,A4,A5>::base*
NewTessCallback(const T1* obj, R (T2::*member)(P1,A1,A2,A3,A4,A5) const, typename Identity<P1>::type p1) {
return new _ConstTessMemberResultCallback_1_5<true,R,T1,P1,A1,A2,A3,A4,A5>(obj, member, p1);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class A1, class A2, class A3, class A4, class A5>
inline typename _ConstTessMemberResultCallback_1_5<false,R,T1,P1,A1,A2,A3,A4,A5>::base*
NewPermanentTessCallback(const T1* obj, R (T2::*member)(P1,A1,A2,A3,A4,A5) const, typename Identity<P1>::type p1) {
return new _ConstTessMemberResultCallback_1_5<false,R,T1,P1,A1,A2,A3,A4,A5>(obj, member, p1);
}
#endif
template <bool del, class R, class T, class P1, class A1, class A2, class A3, class A4, class A5>
class _TessMemberResultCallback_1_5 : public TessResultCallback5<R,A1,A2,A3,A4,A5> {
public:
typedef TessResultCallback5<R,A1,A2,A3,A4,A5> base;
typedef R (T::*MemberSignature)(P1,A1,A2,A3,A4,A5) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
public:
inline _TessMemberResultCallback_1_5( T* object, MemberSignature member, P1 p1)
: object_(object),
member_(member), p1_(p1) { }
virtual R Run(A1 a1,A2 a2,A3 a3,A4 a4,A5 a5) {
if (!del) {
R result = (object_->*member_)(p1_,a1,a2,a3,a4,a5);
return result;
} else {
R result = (object_->*member_)(p1_,a1,a2,a3,a4,a5);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class A1, class A2, class A3, class A4, class A5>
class _TessMemberResultCallback_1_5<del, void, T, P1, A1, A2, A3, A4, A5> : public TessCallback5<A1,A2,A3,A4,A5> {
public:
typedef TessCallback5<A1,A2,A3,A4,A5> base;
typedef void (T::*MemberSignature)(P1,A1,A2,A3,A4,A5) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
public:
inline _TessMemberResultCallback_1_5( T* object, MemberSignature member, P1 p1)
: object_(object),
member_(member), p1_(p1) { }
virtual void Run(A1 a1,A2 a2,A3 a3,A4 a4,A5 a5) {
if (!del) {
(object_->*member_)(p1_,a1,a2,a3,a4,a5);
} else {
(object_->*member_)(p1_,a1,a2,a3,a4,a5);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class A1, class A2, class A3, class A4, class A5>
inline typename _TessMemberResultCallback_1_5<true,R,T1,P1,A1,A2,A3,A4,A5>::base*
NewTessCallback( T1* obj, R (T2::*member)(P1,A1,A2,A3,A4,A5) , typename Identity<P1>::type p1) {
return new _TessMemberResultCallback_1_5<true,R,T1,P1,A1,A2,A3,A4,A5>(obj, member, p1);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class A1, class A2, class A3, class A4, class A5>
inline typename _TessMemberResultCallback_1_5<false,R,T1,P1,A1,A2,A3,A4,A5>::base*
NewPermanentTessCallback( T1* obj, R (T2::*member)(P1,A1,A2,A3,A4,A5) , typename Identity<P1>::type p1) {
return new _TessMemberResultCallback_1_5<false,R,T1,P1,A1,A2,A3,A4,A5>(obj, member, p1);
}
#endif
template <bool del, class R, class P1, class A1, class A2, class A3, class A4, class A5>
class _TessFunctionResultCallback_1_5 : public TessResultCallback5<R,A1,A2,A3,A4,A5> {
public:
typedef TessResultCallback5<R,A1,A2,A3,A4,A5> base;
typedef R (*FunctionSignature)(P1,A1,A2,A3,A4,A5);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
public:
inline _TessFunctionResultCallback_1_5(FunctionSignature function, P1 p1)
: function_(function), p1_(p1) { }
virtual R Run(A1 a1,A2 a2,A3 a3,A4 a4,A5 a5) {
if (!del) {
R result = (*function_)(p1_,a1,a2,a3,a4,a5);
return result;
} else {
R result = (*function_)(p1_,a1,a2,a3,a4,a5);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class P1, class A1, class A2, class A3, class A4, class A5>
class _TessFunctionResultCallback_1_5<del, void, P1, A1, A2, A3, A4, A5> : public TessCallback5<A1,A2,A3,A4,A5> {
public:
typedef TessCallback5<A1,A2,A3,A4,A5> base;
typedef void (*FunctionSignature)(P1,A1,A2,A3,A4,A5);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
public:
inline _TessFunctionResultCallback_1_5(FunctionSignature function, P1 p1)
: function_(function), p1_(p1) { }
virtual void Run(A1 a1,A2 a2,A3 a3,A4 a4,A5 a5) {
if (!del) {
(*function_)(p1_,a1,a2,a3,a4,a5);
} else {
(*function_)(p1_,a1,a2,a3,a4,a5);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
}
}
};
template <class R, class P1, class A1, class A2, class A3, class A4, class A5>
inline typename _TessFunctionResultCallback_1_5<true,R,P1,A1,A2,A3,A4,A5>::base*
NewTessCallback(R (*function)(P1,A1,A2,A3,A4,A5), typename Identity<P1>::type p1) {
return new _TessFunctionResultCallback_1_5<true,R,P1,A1,A2,A3,A4,A5>(function, p1);
}
template <class R, class P1, class A1, class A2, class A3, class A4, class A5>
inline typename _TessFunctionResultCallback_1_5<false,R,P1,A1,A2,A3,A4,A5>::base*
NewPermanentTessCallback(R (*function)(P1,A1,A2,A3,A4,A5), typename Identity<P1>::type p1) {
return new _TessFunctionResultCallback_1_5<false,R,P1,A1,A2,A3,A4,A5>(function, p1);
}
template <bool del, class R, class T, class P1, class P2, class A1, class A2, class A3, class A4, class A5>
class _ConstTessMemberResultCallback_2_5 : public TessResultCallback5<R,A1,A2,A3,A4,A5> {
public:
typedef TessResultCallback5<R,A1,A2,A3,A4,A5> base;
typedef R (T::*MemberSignature)(P1,P2,A1,A2,A3,A4,A5) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
public:
inline _ConstTessMemberResultCallback_2_5(const T* object, MemberSignature member, P1 p1, P2 p2)
: object_(object),
member_(member), p1_(p1), p2_(p2) { }
virtual R Run(A1 a1,A2 a2,A3 a3,A4 a4,A5 a5) {
if (!del) {
R result = (object_->*member_)(p1_,p2_,a1,a2,a3,a4,a5);
return result;
} else {
R result = (object_->*member_)(p1_,p2_,a1,a2,a3,a4,a5);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class P2, class A1, class A2, class A3, class A4, class A5>
class _ConstTessMemberResultCallback_2_5<del, void, T, P1, P2, A1, A2, A3, A4, A5> : public TessCallback5<A1,A2,A3,A4,A5> {
public:
typedef TessCallback5<A1,A2,A3,A4,A5> base;
typedef void (T::*MemberSignature)(P1,P2,A1,A2,A3,A4,A5) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
public:
inline _ConstTessMemberResultCallback_2_5(const T* object, MemberSignature member, P1 p1, P2 p2)
: object_(object),
member_(member), p1_(p1), p2_(p2) { }
virtual void Run(A1 a1,A2 a2,A3 a3,A4 a4,A5 a5) {
if (!del) {
(object_->*member_)(p1_,p2_,a1,a2,a3,a4,a5);
} else {
(object_->*member_)(p1_,p2_,a1,a2,a3,a4,a5);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class A1, class A2, class A3, class A4, class A5>
inline typename _ConstTessMemberResultCallback_2_5<true,R,T1,P1,P2,A1,A2,A3,A4,A5>::base*
NewTessCallback(const T1* obj, R (T2::*member)(P1,P2,A1,A2,A3,A4,A5) const, typename Identity<P1>::type p1, typename Identity<P2>::type p2) {
return new _ConstTessMemberResultCallback_2_5<true,R,T1,P1,P2,A1,A2,A3,A4,A5>(obj, member, p1, p2);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class A1, class A2, class A3, class A4, class A5>
inline typename _ConstTessMemberResultCallback_2_5<false,R,T1,P1,P2,A1,A2,A3,A4,A5>::base*
NewPermanentTessCallback(const T1* obj, R (T2::*member)(P1,P2,A1,A2,A3,A4,A5) const, typename Identity<P1>::type p1, typename Identity<P2>::type p2) {
return new _ConstTessMemberResultCallback_2_5<false,R,T1,P1,P2,A1,A2,A3,A4,A5>(obj, member, p1, p2);
}
#endif
template <bool del, class R, class T, class P1, class P2, class A1, class A2, class A3, class A4, class A5>
class _TessMemberResultCallback_2_5 : public TessResultCallback5<R,A1,A2,A3,A4,A5> {
public:
typedef TessResultCallback5<R,A1,A2,A3,A4,A5> base;
typedef R (T::*MemberSignature)(P1,P2,A1,A2,A3,A4,A5) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
public:
inline _TessMemberResultCallback_2_5( T* object, MemberSignature member, P1 p1, P2 p2)
: object_(object),
member_(member), p1_(p1), p2_(p2) { }
virtual R Run(A1 a1,A2 a2,A3 a3,A4 a4,A5 a5) {
if (!del) {
R result = (object_->*member_)(p1_,p2_,a1,a2,a3,a4,a5);
return result;
} else {
R result = (object_->*member_)(p1_,p2_,a1,a2,a3,a4,a5);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class P2, class A1, class A2, class A3, class A4, class A5>
class _TessMemberResultCallback_2_5<del, void, T, P1, P2, A1, A2, A3, A4, A5> : public TessCallback5<A1,A2,A3,A4,A5> {
public:
typedef TessCallback5<A1,A2,A3,A4,A5> base;
typedef void (T::*MemberSignature)(P1,P2,A1,A2,A3,A4,A5) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
public:
inline _TessMemberResultCallback_2_5( T* object, MemberSignature member, P1 p1, P2 p2)
: object_(object),
member_(member), p1_(p1), p2_(p2) { }
virtual void Run(A1 a1,A2 a2,A3 a3,A4 a4,A5 a5) {
if (!del) {
(object_->*member_)(p1_,p2_,a1,a2,a3,a4,a5);
} else {
(object_->*member_)(p1_,p2_,a1,a2,a3,a4,a5);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class A1, class A2, class A3, class A4, class A5>
inline typename _TessMemberResultCallback_2_5<true,R,T1,P1,P2,A1,A2,A3,A4,A5>::base*
NewTessCallback( T1* obj, R (T2::*member)(P1,P2,A1,A2,A3,A4,A5) , typename Identity<P1>::type p1, typename Identity<P2>::type p2) {
return new _TessMemberResultCallback_2_5<true,R,T1,P1,P2,A1,A2,A3,A4,A5>(obj, member, p1, p2);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class A1, class A2, class A3, class A4, class A5>
inline typename _TessMemberResultCallback_2_5<false,R,T1,P1,P2,A1,A2,A3,A4,A5>::base*
NewPermanentTessCallback( T1* obj, R (T2::*member)(P1,P2,A1,A2,A3,A4,A5) , typename Identity<P1>::type p1, typename Identity<P2>::type p2) {
return new _TessMemberResultCallback_2_5<false,R,T1,P1,P2,A1,A2,A3,A4,A5>(obj, member, p1, p2);
}
#endif
template <bool del, class R, class P1, class P2, class A1, class A2, class A3, class A4, class A5>
class _TessFunctionResultCallback_2_5 : public TessResultCallback5<R,A1,A2,A3,A4,A5> {
public:
typedef TessResultCallback5<R,A1,A2,A3,A4,A5> base;
typedef R (*FunctionSignature)(P1,P2,A1,A2,A3,A4,A5);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
public:
inline _TessFunctionResultCallback_2_5(FunctionSignature function, P1 p1, P2 p2)
: function_(function), p1_(p1), p2_(p2) { }
virtual R Run(A1 a1,A2 a2,A3 a3,A4 a4,A5 a5) {
if (!del) {
R result = (*function_)(p1_,p2_,a1,a2,a3,a4,a5);
return result;
} else {
R result = (*function_)(p1_,p2_,a1,a2,a3,a4,a5);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class P1, class P2, class A1, class A2, class A3, class A4, class A5>
class _TessFunctionResultCallback_2_5<del, void, P1, P2, A1, A2, A3, A4, A5> : public TessCallback5<A1,A2,A3,A4,A5> {
public:
typedef TessCallback5<A1,A2,A3,A4,A5> base;
typedef void (*FunctionSignature)(P1,P2,A1,A2,A3,A4,A5);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
public:
inline _TessFunctionResultCallback_2_5(FunctionSignature function, P1 p1, P2 p2)
: function_(function), p1_(p1), p2_(p2) { }
virtual void Run(A1 a1,A2 a2,A3 a3,A4 a4,A5 a5) {
if (!del) {
(*function_)(p1_,p2_,a1,a2,a3,a4,a5);
} else {
(*function_)(p1_,p2_,a1,a2,a3,a4,a5);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
}
}
};
template <class R, class P1, class P2, class A1, class A2, class A3, class A4, class A5>
inline typename _TessFunctionResultCallback_2_5<true,R,P1,P2,A1,A2,A3,A4,A5>::base*
NewTessCallback(R (*function)(P1,P2,A1,A2,A3,A4,A5), typename Identity<P1>::type p1, typename Identity<P2>::type p2) {
return new _TessFunctionResultCallback_2_5<true,R,P1,P2,A1,A2,A3,A4,A5>(function, p1, p2);
}
template <class R, class P1, class P2, class A1, class A2, class A3, class A4, class A5>
inline typename _TessFunctionResultCallback_2_5<false,R,P1,P2,A1,A2,A3,A4,A5>::base*
NewPermanentTessCallback(R (*function)(P1,P2,A1,A2,A3,A4,A5), typename Identity<P1>::type p1, typename Identity<P2>::type p2) {
return new _TessFunctionResultCallback_2_5<false,R,P1,P2,A1,A2,A3,A4,A5>(function, p1, p2);
}
template <bool del, class R, class T, class P1, class P2, class P3, class A1, class A2, class A3, class A4, class A5>
class _ConstTessMemberResultCallback_3_5 : public TessResultCallback5<R,A1,A2,A3,A4,A5> {
public:
typedef TessResultCallback5<R,A1,A2,A3,A4,A5> base;
typedef R (T::*MemberSignature)(P1,P2,P3,A1,A2,A3,A4,A5) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
public:
inline _ConstTessMemberResultCallback_3_5(const T* object, MemberSignature member, P1 p1, P2 p2, P3 p3)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3) { }
virtual R Run(A1 a1,A2 a2,A3 a3,A4 a4,A5 a5) {
if (!del) {
R result = (object_->*member_)(p1_,p2_,p3_,a1,a2,a3,a4,a5);
return result;
} else {
R result = (object_->*member_)(p1_,p2_,p3_,a1,a2,a3,a4,a5);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class P2, class P3, class A1, class A2, class A3, class A4, class A5>
class _ConstTessMemberResultCallback_3_5<del, void, T, P1, P2, P3, A1, A2, A3, A4, A5> : public TessCallback5<A1,A2,A3,A4,A5> {
public:
typedef TessCallback5<A1,A2,A3,A4,A5> base;
typedef void (T::*MemberSignature)(P1,P2,P3,A1,A2,A3,A4,A5) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
public:
inline _ConstTessMemberResultCallback_3_5(const T* object, MemberSignature member, P1 p1, P2 p2, P3 p3)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3) { }
virtual void Run(A1 a1,A2 a2,A3 a3,A4 a4,A5 a5) {
if (!del) {
(object_->*member_)(p1_,p2_,p3_,a1,a2,a3,a4,a5);
} else {
(object_->*member_)(p1_,p2_,p3_,a1,a2,a3,a4,a5);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class A1, class A2, class A3, class A4, class A5>
inline typename _ConstTessMemberResultCallback_3_5<true,R,T1,P1,P2,P3,A1,A2,A3,A4,A5>::base*
NewTessCallback(const T1* obj, R (T2::*member)(P1,P2,P3,A1,A2,A3,A4,A5) const, typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3) {
return new _ConstTessMemberResultCallback_3_5<true,R,T1,P1,P2,P3,A1,A2,A3,A4,A5>(obj, member, p1, p2, p3);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class A1, class A2, class A3, class A4, class A5>
inline typename _ConstTessMemberResultCallback_3_5<false,R,T1,P1,P2,P3,A1,A2,A3,A4,A5>::base*
NewPermanentTessCallback(const T1* obj, R (T2::*member)(P1,P2,P3,A1,A2,A3,A4,A5) const, typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3) {
return new _ConstTessMemberResultCallback_3_5<false,R,T1,P1,P2,P3,A1,A2,A3,A4,A5>(obj, member, p1, p2, p3);
}
#endif
template <bool del, class R, class T, class P1, class P2, class P3, class A1, class A2, class A3, class A4, class A5>
class _TessMemberResultCallback_3_5 : public TessResultCallback5<R,A1,A2,A3,A4,A5> {
public:
typedef TessResultCallback5<R,A1,A2,A3,A4,A5> base;
typedef R (T::*MemberSignature)(P1,P2,P3,A1,A2,A3,A4,A5) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
public:
inline _TessMemberResultCallback_3_5( T* object, MemberSignature member, P1 p1, P2 p2, P3 p3)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3) { }
virtual R Run(A1 a1,A2 a2,A3 a3,A4 a4,A5 a5) {
if (!del) {
R result = (object_->*member_)(p1_,p2_,p3_,a1,a2,a3,a4,a5);
return result;
} else {
R result = (object_->*member_)(p1_,p2_,p3_,a1,a2,a3,a4,a5);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class P2, class P3, class A1, class A2, class A3, class A4, class A5>
class _TessMemberResultCallback_3_5<del, void, T, P1, P2, P3, A1, A2, A3, A4, A5> : public TessCallback5<A1,A2,A3,A4,A5> {
public:
typedef TessCallback5<A1,A2,A3,A4,A5> base;
typedef void (T::*MemberSignature)(P1,P2,P3,A1,A2,A3,A4,A5) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
public:
inline _TessMemberResultCallback_3_5( T* object, MemberSignature member, P1 p1, P2 p2, P3 p3)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3) { }
virtual void Run(A1 a1,A2 a2,A3 a3,A4 a4,A5 a5) {
if (!del) {
(object_->*member_)(p1_,p2_,p3_,a1,a2,a3,a4,a5);
} else {
(object_->*member_)(p1_,p2_,p3_,a1,a2,a3,a4,a5);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class A1, class A2, class A3, class A4, class A5>
inline typename _TessMemberResultCallback_3_5<true,R,T1,P1,P2,P3,A1,A2,A3,A4,A5>::base*
NewTessCallback( T1* obj, R (T2::*member)(P1,P2,P3,A1,A2,A3,A4,A5) , typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3) {
return new _TessMemberResultCallback_3_5<true,R,T1,P1,P2,P3,A1,A2,A3,A4,A5>(obj, member, p1, p2, p3);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class A1, class A2, class A3, class A4, class A5>
inline typename _TessMemberResultCallback_3_5<false,R,T1,P1,P2,P3,A1,A2,A3,A4,A5>::base*
NewPermanentTessCallback( T1* obj, R (T2::*member)(P1,P2,P3,A1,A2,A3,A4,A5) , typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3) {
return new _TessMemberResultCallback_3_5<false,R,T1,P1,P2,P3,A1,A2,A3,A4,A5>(obj, member, p1, p2, p3);
}
#endif
template <bool del, class R, class P1, class P2, class P3, class A1, class A2, class A3, class A4, class A5>
class _TessFunctionResultCallback_3_5 : public TessResultCallback5<R,A1,A2,A3,A4,A5> {
public:
typedef TessResultCallback5<R,A1,A2,A3,A4,A5> base;
typedef R (*FunctionSignature)(P1,P2,P3,A1,A2,A3,A4,A5);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
public:
inline _TessFunctionResultCallback_3_5(FunctionSignature function, P1 p1, P2 p2, P3 p3)
: function_(function), p1_(p1), p2_(p2), p3_(p3) { }
virtual R Run(A1 a1,A2 a2,A3 a3,A4 a4,A5 a5) {
if (!del) {
R result = (*function_)(p1_,p2_,p3_,a1,a2,a3,a4,a5);
return result;
} else {
R result = (*function_)(p1_,p2_,p3_,a1,a2,a3,a4,a5);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class P1, class P2, class P3, class A1, class A2, class A3, class A4, class A5>
class _TessFunctionResultCallback_3_5<del, void, P1, P2, P3, A1, A2, A3, A4, A5> : public TessCallback5<A1,A2,A3,A4,A5> {
public:
typedef TessCallback5<A1,A2,A3,A4,A5> base;
typedef void (*FunctionSignature)(P1,P2,P3,A1,A2,A3,A4,A5);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
public:
inline _TessFunctionResultCallback_3_5(FunctionSignature function, P1 p1, P2 p2, P3 p3)
: function_(function), p1_(p1), p2_(p2), p3_(p3) { }
virtual void Run(A1 a1,A2 a2,A3 a3,A4 a4,A5 a5) {
if (!del) {
(*function_)(p1_,p2_,p3_,a1,a2,a3,a4,a5);
} else {
(*function_)(p1_,p2_,p3_,a1,a2,a3,a4,a5);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
}
}
};
template <class R, class P1, class P2, class P3, class A1, class A2, class A3, class A4, class A5>
inline typename _TessFunctionResultCallback_3_5<true,R,P1,P2,P3,A1,A2,A3,A4,A5>::base*
NewTessCallback(R (*function)(P1,P2,P3,A1,A2,A3,A4,A5), typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3) {
return new _TessFunctionResultCallback_3_5<true,R,P1,P2,P3,A1,A2,A3,A4,A5>(function, p1, p2, p3);
}
template <class R, class P1, class P2, class P3, class A1, class A2, class A3, class A4, class A5>
inline typename _TessFunctionResultCallback_3_5<false,R,P1,P2,P3,A1,A2,A3,A4,A5>::base*
NewPermanentTessCallback(R (*function)(P1,P2,P3,A1,A2,A3,A4,A5), typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3) {
return new _TessFunctionResultCallback_3_5<false,R,P1,P2,P3,A1,A2,A3,A4,A5>(function, p1, p2, p3);
}
template <bool del, class R, class T, class P1, class P2, class P3, class P4, class A1, class A2, class A3, class A4, class A5>
class _ConstTessMemberResultCallback_4_5 : public TessResultCallback5<R,A1,A2,A3,A4,A5> {
public:
typedef TessResultCallback5<R,A1,A2,A3,A4,A5> base;
typedef R (T::*MemberSignature)(P1,P2,P3,P4,A1,A2,A3,A4,A5) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
public:
inline _ConstTessMemberResultCallback_4_5(const T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4) { }
virtual R Run(A1 a1,A2 a2,A3 a3,A4 a4,A5 a5) {
if (!del) {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,a1,a2,a3,a4,a5);
return result;
} else {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,a1,a2,a3,a4,a5);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class P2, class P3, class P4, class A1, class A2, class A3, class A4, class A5>
class _ConstTessMemberResultCallback_4_5<del, void, T, P1, P2, P3, P4, A1, A2, A3, A4, A5> : public TessCallback5<A1,A2,A3,A4,A5> {
public:
typedef TessCallback5<A1,A2,A3,A4,A5> base;
typedef void (T::*MemberSignature)(P1,P2,P3,P4,A1,A2,A3,A4,A5) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
public:
inline _ConstTessMemberResultCallback_4_5(const T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4) { }
virtual void Run(A1 a1,A2 a2,A3 a3,A4 a4,A5 a5) {
if (!del) {
(object_->*member_)(p1_,p2_,p3_,p4_,a1,a2,a3,a4,a5);
} else {
(object_->*member_)(p1_,p2_,p3_,p4_,a1,a2,a3,a4,a5);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class A1, class A2, class A3, class A4, class A5>
inline typename _ConstTessMemberResultCallback_4_5<true,R,T1,P1,P2,P3,P4,A1,A2,A3,A4,A5>::base*
NewTessCallback(const T1* obj, R (T2::*member)(P1,P2,P3,P4,A1,A2,A3,A4,A5) const, typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4) {
return new _ConstTessMemberResultCallback_4_5<true,R,T1,P1,P2,P3,P4,A1,A2,A3,A4,A5>(obj, member, p1, p2, p3, p4);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class A1, class A2, class A3, class A4, class A5>
inline typename _ConstTessMemberResultCallback_4_5<false,R,T1,P1,P2,P3,P4,A1,A2,A3,A4,A5>::base*
NewPermanentTessCallback(const T1* obj, R (T2::*member)(P1,P2,P3,P4,A1,A2,A3,A4,A5) const, typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4) {
return new _ConstTessMemberResultCallback_4_5<false,R,T1,P1,P2,P3,P4,A1,A2,A3,A4,A5>(obj, member, p1, p2, p3, p4);
}
#endif
template <bool del, class R, class T, class P1, class P2, class P3, class P4, class A1, class A2, class A3, class A4, class A5>
class _TessMemberResultCallback_4_5 : public TessResultCallback5<R,A1,A2,A3,A4,A5> {
public:
typedef TessResultCallback5<R,A1,A2,A3,A4,A5> base;
typedef R (T::*MemberSignature)(P1,P2,P3,P4,A1,A2,A3,A4,A5) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
public:
inline _TessMemberResultCallback_4_5( T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4) { }
virtual R Run(A1 a1,A2 a2,A3 a3,A4 a4,A5 a5) {
if (!del) {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,a1,a2,a3,a4,a5);
return result;
} else {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,a1,a2,a3,a4,a5);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class P2, class P3, class P4, class A1, class A2, class A3, class A4, class A5>
class _TessMemberResultCallback_4_5<del, void, T, P1, P2, P3, P4, A1, A2, A3, A4, A5> : public TessCallback5<A1,A2,A3,A4,A5> {
public:
typedef TessCallback5<A1,A2,A3,A4,A5> base;
typedef void (T::*MemberSignature)(P1,P2,P3,P4,A1,A2,A3,A4,A5) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
public:
inline _TessMemberResultCallback_4_5( T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4) { }
virtual void Run(A1 a1,A2 a2,A3 a3,A4 a4,A5 a5) {
if (!del) {
(object_->*member_)(p1_,p2_,p3_,p4_,a1,a2,a3,a4,a5);
} else {
(object_->*member_)(p1_,p2_,p3_,p4_,a1,a2,a3,a4,a5);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class A1, class A2, class A3, class A4, class A5>
inline typename _TessMemberResultCallback_4_5<true,R,T1,P1,P2,P3,P4,A1,A2,A3,A4,A5>::base*
NewTessCallback( T1* obj, R (T2::*member)(P1,P2,P3,P4,A1,A2,A3,A4,A5) , typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4) {
return new _TessMemberResultCallback_4_5<true,R,T1,P1,P2,P3,P4,A1,A2,A3,A4,A5>(obj, member, p1, p2, p3, p4);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class A1, class A2, class A3, class A4, class A5>
inline typename _TessMemberResultCallback_4_5<false,R,T1,P1,P2,P3,P4,A1,A2,A3,A4,A5>::base*
NewPermanentTessCallback( T1* obj, R (T2::*member)(P1,P2,P3,P4,A1,A2,A3,A4,A5) , typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4) {
return new _TessMemberResultCallback_4_5<false,R,T1,P1,P2,P3,P4,A1,A2,A3,A4,A5>(obj, member, p1, p2, p3, p4);
}
#endif
template <bool del, class R, class P1, class P2, class P3, class P4, class A1, class A2, class A3, class A4, class A5>
class _TessFunctionResultCallback_4_5 : public TessResultCallback5<R,A1,A2,A3,A4,A5> {
public:
typedef TessResultCallback5<R,A1,A2,A3,A4,A5> base;
typedef R (*FunctionSignature)(P1,P2,P3,P4,A1,A2,A3,A4,A5);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
public:
inline _TessFunctionResultCallback_4_5(FunctionSignature function, P1 p1, P2 p2, P3 p3, P4 p4)
: function_(function), p1_(p1), p2_(p2), p3_(p3), p4_(p4) { }
virtual R Run(A1 a1,A2 a2,A3 a3,A4 a4,A5 a5) {
if (!del) {
R result = (*function_)(p1_,p2_,p3_,p4_,a1,a2,a3,a4,a5);
return result;
} else {
R result = (*function_)(p1_,p2_,p3_,p4_,a1,a2,a3,a4,a5);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class P1, class P2, class P3, class P4, class A1, class A2, class A3, class A4, class A5>
class _TessFunctionResultCallback_4_5<del, void, P1, P2, P3, P4, A1, A2, A3, A4, A5> : public TessCallback5<A1,A2,A3,A4,A5> {
public:
typedef TessCallback5<A1,A2,A3,A4,A5> base;
typedef void (*FunctionSignature)(P1,P2,P3,P4,A1,A2,A3,A4,A5);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
public:
inline _TessFunctionResultCallback_4_5(FunctionSignature function, P1 p1, P2 p2, P3 p3, P4 p4)
: function_(function), p1_(p1), p2_(p2), p3_(p3), p4_(p4) { }
virtual void Run(A1 a1,A2 a2,A3 a3,A4 a4,A5 a5) {
if (!del) {
(*function_)(p1_,p2_,p3_,p4_,a1,a2,a3,a4,a5);
} else {
(*function_)(p1_,p2_,p3_,p4_,a1,a2,a3,a4,a5);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
}
}
};
template <class R, class P1, class P2, class P3, class P4, class A1, class A2, class A3, class A4, class A5>
inline typename _TessFunctionResultCallback_4_5<true,R,P1,P2,P3,P4,A1,A2,A3,A4,A5>::base*
NewTessCallback(R (*function)(P1,P2,P3,P4,A1,A2,A3,A4,A5), typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4) {
return new _TessFunctionResultCallback_4_5<true,R,P1,P2,P3,P4,A1,A2,A3,A4,A5>(function, p1, p2, p3, p4);
}
template <class R, class P1, class P2, class P3, class P4, class A1, class A2, class A3, class A4, class A5>
inline typename _TessFunctionResultCallback_4_5<false,R,P1,P2,P3,P4,A1,A2,A3,A4,A5>::base*
NewPermanentTessCallback(R (*function)(P1,P2,P3,P4,A1,A2,A3,A4,A5), typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4) {
return new _TessFunctionResultCallback_4_5<false,R,P1,P2,P3,P4,A1,A2,A3,A4,A5>(function, p1, p2, p3, p4);
}
template <bool del, class R, class T, class P1, class P2, class P3, class P4, class P5, class A1, class A2, class A3, class A4, class A5>
class _ConstTessMemberResultCallback_5_5 : public TessResultCallback5<R,A1,A2,A3,A4,A5> {
public:
typedef TessResultCallback5<R,A1,A2,A3,A4,A5> base;
typedef R (T::*MemberSignature)(P1,P2,P3,P4,P5,A1,A2,A3,A4,A5) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
public:
inline _ConstTessMemberResultCallback_5_5(const T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5) { }
virtual R Run(A1 a1,A2 a2,A3 a3,A4 a4,A5 a5) {
if (!del) {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,p5_,a1,a2,a3,a4,a5);
return result;
} else {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,p5_,a1,a2,a3,a4,a5);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class P2, class P3, class P4, class P5, class A1, class A2, class A3, class A4, class A5>
class _ConstTessMemberResultCallback_5_5<del, void, T, P1, P2, P3, P4, P5, A1, A2, A3, A4, A5> : public TessCallback5<A1,A2,A3,A4,A5> {
public:
typedef TessCallback5<A1,A2,A3,A4,A5> base;
typedef void (T::*MemberSignature)(P1,P2,P3,P4,P5,A1,A2,A3,A4,A5) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
public:
inline _ConstTessMemberResultCallback_5_5(const T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5) { }
virtual void Run(A1 a1,A2 a2,A3 a3,A4 a4,A5 a5) {
if (!del) {
(object_->*member_)(p1_,p2_,p3_,p4_,p5_,a1,a2,a3,a4,a5);
} else {
(object_->*member_)(p1_,p2_,p3_,p4_,p5_,a1,a2,a3,a4,a5);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class P5, class A1, class A2, class A3, class A4, class A5>
inline typename _ConstTessMemberResultCallback_5_5<true,R,T1,P1,P2,P3,P4,P5,A1,A2,A3,A4,A5>::base*
NewTessCallback(const T1* obj, R (T2::*member)(P1,P2,P3,P4,P5,A1,A2,A3,A4,A5) const, typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5) {
return new _ConstTessMemberResultCallback_5_5<true,R,T1,P1,P2,P3,P4,P5,A1,A2,A3,A4,A5>(obj, member, p1, p2, p3, p4, p5);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class P5, class A1, class A2, class A3, class A4, class A5>
inline typename _ConstTessMemberResultCallback_5_5<false,R,T1,P1,P2,P3,P4,P5,A1,A2,A3,A4,A5>::base*
NewPermanentTessCallback(const T1* obj, R (T2::*member)(P1,P2,P3,P4,P5,A1,A2,A3,A4,A5) const, typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5) {
return new _ConstTessMemberResultCallback_5_5<false,R,T1,P1,P2,P3,P4,P5,A1,A2,A3,A4,A5>(obj, member, p1, p2, p3, p4, p5);
}
#endif
template <bool del, class R, class T, class P1, class P2, class P3, class P4, class P5, class A1, class A2, class A3, class A4, class A5>
class _TessMemberResultCallback_5_5 : public TessResultCallback5<R,A1,A2,A3,A4,A5> {
public:
typedef TessResultCallback5<R,A1,A2,A3,A4,A5> base;
typedef R (T::*MemberSignature)(P1,P2,P3,P4,P5,A1,A2,A3,A4,A5) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
public:
inline _TessMemberResultCallback_5_5( T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5) { }
virtual R Run(A1 a1,A2 a2,A3 a3,A4 a4,A5 a5) {
if (!del) {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,p5_,a1,a2,a3,a4,a5);
return result;
} else {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,p5_,a1,a2,a3,a4,a5);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class P2, class P3, class P4, class P5, class A1, class A2, class A3, class A4, class A5>
class _TessMemberResultCallback_5_5<del, void, T, P1, P2, P3, P4, P5, A1, A2, A3, A4, A5> : public TessCallback5<A1,A2,A3,A4,A5> {
public:
typedef TessCallback5<A1,A2,A3,A4,A5> base;
typedef void (T::*MemberSignature)(P1,P2,P3,P4,P5,A1,A2,A3,A4,A5) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
public:
inline _TessMemberResultCallback_5_5( T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5) { }
virtual void Run(A1 a1,A2 a2,A3 a3,A4 a4,A5 a5) {
if (!del) {
(object_->*member_)(p1_,p2_,p3_,p4_,p5_,a1,a2,a3,a4,a5);
} else {
(object_->*member_)(p1_,p2_,p3_,p4_,p5_,a1,a2,a3,a4,a5);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class P5, class A1, class A2, class A3, class A4, class A5>
inline typename _TessMemberResultCallback_5_5<true,R,T1,P1,P2,P3,P4,P5,A1,A2,A3,A4,A5>::base*
NewTessCallback( T1* obj, R (T2::*member)(P1,P2,P3,P4,P5,A1,A2,A3,A4,A5) , typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5) {
return new _TessMemberResultCallback_5_5<true,R,T1,P1,P2,P3,P4,P5,A1,A2,A3,A4,A5>(obj, member, p1, p2, p3, p4, p5);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class P5, class A1, class A2, class A3, class A4, class A5>
inline typename _TessMemberResultCallback_5_5<false,R,T1,P1,P2,P3,P4,P5,A1,A2,A3,A4,A5>::base*
NewPermanentTessCallback( T1* obj, R (T2::*member)(P1,P2,P3,P4,P5,A1,A2,A3,A4,A5) , typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5) {
return new _TessMemberResultCallback_5_5<false,R,T1,P1,P2,P3,P4,P5,A1,A2,A3,A4,A5>(obj, member, p1, p2, p3, p4, p5);
}
#endif
template <bool del, class R, class P1, class P2, class P3, class P4, class P5, class A1, class A2, class A3, class A4, class A5>
class _TessFunctionResultCallback_5_5 : public TessResultCallback5<R,A1,A2,A3,A4,A5> {
public:
typedef TessResultCallback5<R,A1,A2,A3,A4,A5> base;
typedef R (*FunctionSignature)(P1,P2,P3,P4,P5,A1,A2,A3,A4,A5);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
public:
inline _TessFunctionResultCallback_5_5(FunctionSignature function, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5)
: function_(function), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5) { }
virtual R Run(A1 a1,A2 a2,A3 a3,A4 a4,A5 a5) {
if (!del) {
R result = (*function_)(p1_,p2_,p3_,p4_,p5_,a1,a2,a3,a4,a5);
return result;
} else {
R result = (*function_)(p1_,p2_,p3_,p4_,p5_,a1,a2,a3,a4,a5);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class P1, class P2, class P3, class P4, class P5, class A1, class A2, class A3, class A4, class A5>
class _TessFunctionResultCallback_5_5<del, void, P1, P2, P3, P4, P5, A1, A2, A3, A4, A5> : public TessCallback5<A1,A2,A3,A4,A5> {
public:
typedef TessCallback5<A1,A2,A3,A4,A5> base;
typedef void (*FunctionSignature)(P1,P2,P3,P4,P5,A1,A2,A3,A4,A5);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
public:
inline _TessFunctionResultCallback_5_5(FunctionSignature function, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5)
: function_(function), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5) { }
virtual void Run(A1 a1,A2 a2,A3 a3,A4 a4,A5 a5) {
if (!del) {
(*function_)(p1_,p2_,p3_,p4_,p5_,a1,a2,a3,a4,a5);
} else {
(*function_)(p1_,p2_,p3_,p4_,p5_,a1,a2,a3,a4,a5);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
}
}
};
template <class R, class P1, class P2, class P3, class P4, class P5, class A1, class A2, class A3, class A4, class A5>
inline typename _TessFunctionResultCallback_5_5<true,R,P1,P2,P3,P4,P5,A1,A2,A3,A4,A5>::base*
NewTessCallback(R (*function)(P1,P2,P3,P4,P5,A1,A2,A3,A4,A5), typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5) {
return new _TessFunctionResultCallback_5_5<true,R,P1,P2,P3,P4,P5,A1,A2,A3,A4,A5>(function, p1, p2, p3, p4, p5);
}
template <class R, class P1, class P2, class P3, class P4, class P5, class A1, class A2, class A3, class A4, class A5>
inline typename _TessFunctionResultCallback_5_5<false,R,P1,P2,P3,P4,P5,A1,A2,A3,A4,A5>::base*
NewPermanentTessCallback(R (*function)(P1,P2,P3,P4,P5,A1,A2,A3,A4,A5), typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5) {
return new _TessFunctionResultCallback_5_5<false,R,P1,P2,P3,P4,P5,A1,A2,A3,A4,A5>(function, p1, p2, p3, p4, p5);
}
template <bool del, class R, class T, class P1, class P2, class P3, class P4, class P5, class P6, class A1, class A2, class A3, class A4, class A5>
class _ConstTessMemberResultCallback_6_5 : public TessResultCallback5<R,A1,A2,A3,A4,A5> {
public:
typedef TessResultCallback5<R,A1,A2,A3,A4,A5> base;
typedef R (T::*MemberSignature)(P1,P2,P3,P4,P5,P6,A1,A2,A3,A4,A5) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
typename remove_reference<P6>::type p6_;
public:
inline _ConstTessMemberResultCallback_6_5(const T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5), p6_(p6) { }
virtual R Run(A1 a1,A2 a2,A3 a3,A4 a4,A5 a5) {
if (!del) {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,p5_,p6_,a1,a2,a3,a4,a5);
return result;
} else {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,p5_,p6_,a1,a2,a3,a4,a5);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class P2, class P3, class P4, class P5, class P6, class A1, class A2, class A3, class A4, class A5>
class _ConstTessMemberResultCallback_6_5<del, void, T, P1, P2, P3, P4, P5, P6, A1, A2, A3, A4, A5> : public TessCallback5<A1,A2,A3,A4,A5> {
public:
typedef TessCallback5<A1,A2,A3,A4,A5> base;
typedef void (T::*MemberSignature)(P1,P2,P3,P4,P5,P6,A1,A2,A3,A4,A5) const;
private:
const T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
typename remove_reference<P6>::type p6_;
public:
inline _ConstTessMemberResultCallback_6_5(const T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5), p6_(p6) { }
virtual void Run(A1 a1,A2 a2,A3 a3,A4 a4,A5 a5) {
if (!del) {
(object_->*member_)(p1_,p2_,p3_,p4_,p5_,p6_,a1,a2,a3,a4,a5);
} else {
(object_->*member_)(p1_,p2_,p3_,p4_,p5_,p6_,a1,a2,a3,a4,a5);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class P5, class P6, class A1, class A2, class A3, class A4, class A5>
inline typename _ConstTessMemberResultCallback_6_5<true,R,T1,P1,P2,P3,P4,P5,P6,A1,A2,A3,A4,A5>::base*
NewTessCallback(const T1* obj, R (T2::*member)(P1,P2,P3,P4,P5,P6,A1,A2,A3,A4,A5) const, typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5, typename Identity<P6>::type p6) {
return new _ConstTessMemberResultCallback_6_5<true,R,T1,P1,P2,P3,P4,P5,P6,A1,A2,A3,A4,A5>(obj, member, p1, p2, p3, p4, p5, p6);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class P5, class P6, class A1, class A2, class A3, class A4, class A5>
inline typename _ConstTessMemberResultCallback_6_5<false,R,T1,P1,P2,P3,P4,P5,P6,A1,A2,A3,A4,A5>::base*
NewPermanentTessCallback(const T1* obj, R (T2::*member)(P1,P2,P3,P4,P5,P6,A1,A2,A3,A4,A5) const, typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5, typename Identity<P6>::type p6) {
return new _ConstTessMemberResultCallback_6_5<false,R,T1,P1,P2,P3,P4,P5,P6,A1,A2,A3,A4,A5>(obj, member, p1, p2, p3, p4, p5, p6);
}
#endif
template <bool del, class R, class T, class P1, class P2, class P3, class P4, class P5, class P6, class A1, class A2, class A3, class A4, class A5>
class _TessMemberResultCallback_6_5 : public TessResultCallback5<R,A1,A2,A3,A4,A5> {
public:
typedef TessResultCallback5<R,A1,A2,A3,A4,A5> base;
typedef R (T::*MemberSignature)(P1,P2,P3,P4,P5,P6,A1,A2,A3,A4,A5) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
typename remove_reference<P6>::type p6_;
public:
inline _TessMemberResultCallback_6_5( T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5), p6_(p6) { }
virtual R Run(A1 a1,A2 a2,A3 a3,A4 a4,A5 a5) {
if (!del) {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,p5_,p6_,a1,a2,a3,a4,a5);
return result;
} else {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,p5_,p6_,a1,a2,a3,a4,a5);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class T, class P1, class P2, class P3, class P4, class P5, class P6, class A1, class A2, class A3, class A4, class A5>
class _TessMemberResultCallback_6_5<del, void, T, P1, P2, P3, P4, P5, P6, A1, A2, A3, A4, A5> : public TessCallback5<A1,A2,A3,A4,A5> {
public:
typedef TessCallback5<A1,A2,A3,A4,A5> base;
typedef void (T::*MemberSignature)(P1,P2,P3,P4,P5,P6,A1,A2,A3,A4,A5) ;
private:
T* object_;
MemberSignature member_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
typename remove_reference<P6>::type p6_;
public:
inline _TessMemberResultCallback_6_5( T* object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6)
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5), p6_(p6) { }
virtual void Run(A1 a1,A2 a2,A3 a3,A4 a4,A5 a5) {
if (!del) {
(object_->*member_)(p1_,p2_,p3_,p4_,p5_,p6_,a1,a2,a3,a4,a5);
} else {
(object_->*member_)(p1_,p2_,p3_,p4_,p5_,p6_,a1,a2,a3,a4,a5);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
}
}
};
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class P5, class P6, class A1, class A2, class A3, class A4, class A5>
inline typename _TessMemberResultCallback_6_5<true,R,T1,P1,P2,P3,P4,P5,P6,A1,A2,A3,A4,A5>::base*
NewTessCallback( T1* obj, R (T2::*member)(P1,P2,P3,P4,P5,P6,A1,A2,A3,A4,A5) , typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5, typename Identity<P6>::type p6) {
return new _TessMemberResultCallback_6_5<true,R,T1,P1,P2,P3,P4,P5,P6,A1,A2,A3,A4,A5>(obj, member, p1, p2, p3, p4, p5, p6);
}
#endif
#ifndef SWIG
template <class T1, class T2, class R, class P1, class P2, class P3, class P4, class P5, class P6, class A1, class A2, class A3, class A4, class A5>
inline typename _TessMemberResultCallback_6_5<false,R,T1,P1,P2,P3,P4,P5,P6,A1,A2,A3,A4,A5>::base*
NewPermanentTessCallback( T1* obj, R (T2::*member)(P1,P2,P3,P4,P5,P6,A1,A2,A3,A4,A5) , typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5, typename Identity<P6>::type p6) {
return new _TessMemberResultCallback_6_5<false,R,T1,P1,P2,P3,P4,P5,P6,A1,A2,A3,A4,A5>(obj, member, p1, p2, p3, p4, p5, p6);
}
#endif
template <bool del, class R, class P1, class P2, class P3, class P4, class P5, class P6, class A1, class A2, class A3, class A4, class A5>
class _TessFunctionResultCallback_6_5 : public TessResultCallback5<R,A1,A2,A3,A4,A5> {
public:
typedef TessResultCallback5<R,A1,A2,A3,A4,A5> base;
typedef R (*FunctionSignature)(P1,P2,P3,P4,P5,P6,A1,A2,A3,A4,A5);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
typename remove_reference<P6>::type p6_;
public:
inline _TessFunctionResultCallback_6_5(FunctionSignature function, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6)
: function_(function), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5), p6_(p6) { }
virtual R Run(A1 a1,A2 a2,A3 a3,A4 a4,A5 a5) {
if (!del) {
R result = (*function_)(p1_,p2_,p3_,p4_,p5_,p6_,a1,a2,a3,a4,a5);
return result;
} else {
R result = (*function_)(p1_,p2_,p3_,p4_,p5_,p6_,a1,a2,a3,a4,a5);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
return result;
}
}
};
template <bool del, class P1, class P2, class P3, class P4, class P5, class P6, class A1, class A2, class A3, class A4, class A5>
class _TessFunctionResultCallback_6_5<del, void, P1, P2, P3, P4, P5, P6, A1, A2, A3, A4, A5> : public TessCallback5<A1,A2,A3,A4,A5> {
public:
typedef TessCallback5<A1,A2,A3,A4,A5> base;
typedef void (*FunctionSignature)(P1,P2,P3,P4,P5,P6,A1,A2,A3,A4,A5);
private:
FunctionSignature function_;
typename remove_reference<P1>::type p1_;
typename remove_reference<P2>::type p2_;
typename remove_reference<P3>::type p3_;
typename remove_reference<P4>::type p4_;
typename remove_reference<P5>::type p5_;
typename remove_reference<P6>::type p6_;
public:
inline _TessFunctionResultCallback_6_5(FunctionSignature function, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6)
: function_(function), p1_(p1), p2_(p2), p3_(p3), p4_(p4), p5_(p5), p6_(p6) { }
virtual void Run(A1 a1,A2 a2,A3 a3,A4 a4,A5 a5) {
if (!del) {
(*function_)(p1_,p2_,p3_,p4_,p5_,p6_,a1,a2,a3,a4,a5);
} else {
(*function_)(p1_,p2_,p3_,p4_,p5_,p6_,a1,a2,a3,a4,a5);
// zero out the pointer to ensure segfault if used again
function_ = NULL;
delete this;
}
}
};
template <class R, class P1, class P2, class P3, class P4, class P5, class P6, class A1, class A2, class A3, class A4, class A5>
inline typename _TessFunctionResultCallback_6_5<true,R,P1,P2,P3,P4,P5,P6,A1,A2,A3,A4,A5>::base*
NewTessCallback(R (*function)(P1,P2,P3,P4,P5,P6,A1,A2,A3,A4,A5), typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5, typename Identity<P6>::type p6) {
return new _TessFunctionResultCallback_6_5<true,R,P1,P2,P3,P4,P5,P6,A1,A2,A3,A4,A5>(function, p1, p2, p3, p4, p5, p6);
}
template <class R, class P1, class P2, class P3, class P4, class P5, class P6, class A1, class A2, class A3, class A4, class A5>
inline typename _TessFunctionResultCallback_6_5<false,R,P1,P2,P3,P4,P5,P6,A1,A2,A3,A4,A5>::base*
NewPermanentTessCallback(R (*function)(P1,P2,P3,P4,P5,P6,A1,A2,A3,A4,A5), typename Identity<P1>::type p1, typename Identity<P2>::type p2, typename Identity<P3>::type p3, typename Identity<P4>::type p4, typename Identity<P5>::type p5, typename Identity<P6>::type p6) {
return new _TessFunctionResultCallback_6_5<false,R,P1,P2,P3,P4,P5,P6,A1,A2,A3,A4,A5>(function, p1, p2, p3, p4, p5, p6);
}
#endif /* _TESS_CALLBACK_SPECIALIZATIONS_H */
| 1080228-arabicocr11 | ccutil/tesscallback.h | C++ | asf20 | 359,499 |
// Copyright 2012 Google Inc. All Rights Reserved.
// Author: rays@google.com (Ray Smith)
///////////////////////////////////////////////////////////////////////
// File: genericheap.h
// Description: Template heap class.
// Author: Ray Smith, based on Dan Johnson's original code.
// Created: Wed Mar 14 08:13:00 PDT 2012
//
// (C) Copyright 2012, Google Inc.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
///////////////////////////////////////////////////////////////////////
#include "errcode.h"
#include "genericvector.h"
#ifndef TESSERACT_CCUTIL_GENERICHEAP_H_
#define TESSERACT_CCUTIL_GENERICHEAP_H_
namespace tesseract {
// GenericHeap requires 1 template argument:
// Pair will normally be either KDPairInc<Key, Data> or KDPairDec<Key, Data>
// for some arbitrary Key and scalar, smart pointer, or non-ownership pointer
// Data type, according to whether a MIN heap or a MAX heap is desired,
// respectively. Using KDPtrPairInc<Key, Data> or KDPtrPairDec<Key, Data>,
// GenericHeap can also handle simple Data pointers and own them.
// If no additional data is required, Pair can also be a scalar, since
// GenericHeap doesn't look inside it except for operator<.
//
// The heap is stored as a packed binary tree in an array hosted by a
// GenericVector<Pair>, with the invariant that the children of each node are
// both NOT Pair::operator< the parent node. KDPairInc defines Pair::operator<
// to use Key::operator< to generate a MIN heap and KDPairDec defines
// Pair::operator< to use Key::operator> to generate a MAX heap by reversing
// all the comparisons.
// See http://en.wikipedia.org/wiki/Heap_(data_structure) for more detail on
// the basic heap implementation.
//
// Insertion and removal are both O(log n) and, unlike the STL heap, an
// explicit Reshuffle function allows a node to be repositioned in time O(log n)
// after changing its value.
//
// Accessing the element for revaluation is a more complex matter, since the
// index and pointer can be changed arbitrarily by heap operations.
// Revaluation can be done by making the Data type in the Pair derived from or
// contain a DoublePtr as its first data element, making it possible to convert
// the pointer to a Pair using KDPairInc::RecastDataPointer.
template <typename Pair>
class GenericHeap {
public:
GenericHeap() {}
// The initial size is only a GenericVector::reserve. It is not enforced as
// the size limit of the heap. Caller must implement their own enforcement.
explicit GenericHeap(int initial_size) {
heap_.reserve(initial_size);
}
// Simple accessors.
bool empty() const {
return heap_.empty();
}
int size() const {
return heap_.size();
}
int size_reserved() const {
return heap_.size_reserved();
}
void clear() {
// Clear truncates to 0 to keep the number reserved in tact.
heap_.truncate(0);
}
// Provides access to the underlying vector.
// Caution! any changes that modify the keys will invalidate the heap!
GenericVector<Pair>* heap() {
return &heap_;
}
// Provides read-only access to an element of the underlying vector.
const Pair& get(int index) const {
return heap_[index];
}
// Add entry to the heap, keeping the smallest item at the top, by operator<.
// Note that *entry is used as the source of operator=, but it is non-const
// to allow for a smart pointer to be contained within.
// Time = O(log n).
void Push(Pair* entry) {
int hole_index = heap_.size();
// Make a hole in the end of heap_ and sift it up to be the correct
// location for the new *entry. To avoid needing a default constructor
// for primitive types, and to allow for use of DoublePtr in the Pair
// somewhere, we have to incur a double copy here.
heap_.push_back(*entry);
*entry = heap_.back();
hole_index = SiftUp(hole_index, *entry);
heap_[hole_index] = *entry;
}
// Get the value of the top (smallest, defined by operator< ) element.
const Pair& PeekTop() const {
return heap_[0];
}
// Removes the top element of the heap. If entry is not NULL, the element
// is copied into *entry, otherwise it is discarded.
// Returns false if the heap was already empty.
// Time = O(log n).
bool Pop(Pair* entry) {
int new_size = heap_.size() - 1;
if (new_size < 0)
return false; // Already empty.
if (entry != NULL)
*entry = heap_[0];
if (new_size > 0) {
// Sift the hole at the start of the heap_ downwards to match the last
// element.
Pair hole_pair = heap_[new_size];
heap_.truncate(new_size);
int hole_index = SiftDown(0, hole_pair);
heap_[hole_index] = hole_pair;
} else {
heap_.truncate(new_size);
}
return true;
}
// Removes the MAXIMUM element of the heap. (MIN from a MAX heap.) If entry is
// not NULL, the element is copied into *entry, otherwise it is discarded.
// Time = O(n). Returns false if the heap was already empty.
bool PopWorst(Pair* entry) {
int heap_size = heap_.size();
if (heap_size == 0) return false; // It cannot be empty!
// Find the maximum element. Its index is guaranteed to be greater than
// the index of the parent of the last element, since by the heap invariant
// the parent must be less than or equal to the children.
int worst_index = heap_size - 1;
int end_parent = ParentNode(worst_index);
for (int i = worst_index - 1; i > end_parent; --i) {
if (heap_[worst_index] < heap_[i])
worst_index = i;
}
// Extract the worst element from the heap, leaving a hole at worst_index.
if (entry != NULL)
*entry = heap_[worst_index];
--heap_size;
if (heap_size > 0) {
// Sift the hole upwards to match the last element of the heap_
Pair hole_pair = heap_[heap_size];
int hole_index = SiftUp(worst_index, hole_pair);
heap_[hole_index] = hole_pair;
}
heap_.truncate(heap_size);
return true;
}
// The pointed-to Pair has changed its key value, so the location of pair
// is reshuffled to maintain the heap invariant.
// Must be a valid pointer to an element of the heap_!
// Caution! Since GenericHeap is based on GenericVector, reallocs may occur
// whenever the vector is extended and elements may get shuffled by any
// Push or Pop operation. Therefore use this function only if Data in Pair is
// of type DoublePtr, derived (first) from DoublePtr, or has a DoublePtr as
// its first element. Reshuffles the heap to maintain the invariant.
// Time = O(log n).
void Reshuffle(Pair* pair) {
int index = pair - &heap_[0];
Pair hole_pair = heap_[index];
index = SiftDown(index, hole_pair);
index = SiftUp(index, hole_pair);
heap_[index] = hole_pair;
}
private:
// A hole in the heap exists at hole_index, and we want to fill it with the
// given pair. SiftUp sifts the hole upward to the correct position and
// returns the destination index without actually putting pair there.
int SiftUp(int hole_index, const Pair& pair) {
int parent;
while (hole_index > 0 && pair < heap_[parent = ParentNode(hole_index)]) {
heap_[hole_index] = heap_[parent];
hole_index = parent;
}
return hole_index;
}
// A hole in the heap exists at hole_index, and we want to fill it with the
// given pair. SiftDown sifts the hole downward to the correct position and
// returns the destination index without actually putting pair there.
int SiftDown(int hole_index, const Pair& pair) {
int heap_size = heap_.size();
int child;
while ((child = LeftChild(hole_index)) < heap_size) {
if (child + 1 < heap_size && heap_[child + 1] < heap_[child])
++child;
if (heap_[child] < pair) {
heap_[hole_index] = heap_[child];
hole_index = child;
} else {
break;
}
}
return hole_index;
}
// Functions to navigate the tree. Unlike the original implementation, we
// store the root at index 0.
int ParentNode(int index) const {
return (index + 1) / 2 - 1;
}
int LeftChild(int index) const {
return index * 2 + 1;
}
private:
GenericVector<Pair> heap_;
};
} // namespace tesseract
#endif // TESSERACT_CCUTIL_GENERICHEAP_H_
| 1080228-arabicocr11 | ccutil/genericheap.h | C++ | asf20 | 8,758 |
///////////////////////////////////////////////////////////////////////
// File: indexmapbidi.cpp
// Description: Bi-directional mapping between a sparse and compact space.
// Author: rays@google.com (Ray Smith)
// Created: Tue Apr 06 11:33:59 PDT 2010
//
// (C) Copyright 2010, Google Inc.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
///////////////////////////////////////////////////////////////////////
#include "indexmapbidi.h"
namespace tesseract {
// SparseToCompact takes a sparse index to an index in the compact space.
// Uses a binary search to find the result. For faster speed use
// IndexMapBiDi, but that takes more memory.
int IndexMap::SparseToCompact(int sparse_index) const {
int result = compact_map_.binary_search(sparse_index);
return compact_map_[result] == sparse_index ? result : -1;
}
// Copy from the input.
void IndexMap::CopyFrom(const IndexMap& src) {
sparse_size_ = src.sparse_size_;
compact_map_ = src.compact_map_;
}
void IndexMap::CopyFrom(const IndexMapBiDi& src) {
sparse_size_ = src.SparseSize();
compact_map_ = src.compact_map_;
}
// Writes to the given file. Returns false in case of error.
bool IndexMap::Serialize(FILE* fp) const {
inT32 sparse_size = sparse_size_;
if (fwrite(&sparse_size, sizeof(sparse_size), 1, fp) != 1) return false;
if (!compact_map_.Serialize(fp)) return false;
return true;
}
// Reads from the given file. Returns false in case of error.
// If swap is true, assumes a big/little-endian swap is needed.
bool IndexMap::DeSerialize(bool swap, FILE* fp) {
inT32 sparse_size;
if (fread(&sparse_size, sizeof(sparse_size), 1, fp) != 1) return false;
if (swap)
ReverseN(&sparse_size, sizeof(sparse_size));
sparse_size_ = sparse_size;
if (!compact_map_.DeSerialize(swap, fp)) return false;
return true;
}
// Top-level init function in a single call to initialize a map to select
// a single contiguous subrange [start, end) of the sparse space to be mapped
// 1 to 1 to the compact space, with all other elements of the sparse space
// left unmapped.
// No need to call Setup after this.
void IndexMapBiDi::InitAndSetupRange(int sparse_size, int start, int end) {
Init(sparse_size, false);
for (int i = start; i < end; ++i)
SetMap(i, true);
Setup();
}
// Initializes just the sparse_map_ to the given size with either all
// forward indices mapped (all_mapped = true) or none (all_mapped = false).
// Call Setup immediately after, or make calls to SetMap first to adjust the
// mapping and then call Setup before using the map.
void IndexMapBiDi::Init(int size, bool all_mapped) {
sparse_map_.init_to_size(size, -1);
if (all_mapped) {
for (int i = 0; i < size; ++i)
sparse_map_[i] = i;
}
}
// Sets a given index in the sparse_map_ to be mapped or not.
void IndexMapBiDi::SetMap(int sparse_index, bool mapped) {
sparse_map_[sparse_index] = mapped ? 0 : -1;
}
// Sets up the sparse_map_ and compact_map_ properly after Init and
// some calls to SetMap. Assumes an ordered 1-1 map from set indices
// in the forward map to the compact space.
void IndexMapBiDi::Setup() {
int compact_size = 0;
for (int i = 0; i < sparse_map_.size(); ++i) {
if (sparse_map_[i] >= 0) {
sparse_map_[i] = compact_size++;
}
}
compact_map_.init_to_size(compact_size, -1);
for (int i = 0; i < sparse_map_.size(); ++i) {
if (sparse_map_[i] >= 0) {
compact_map_[sparse_map_[i]] = i;
}
}
sparse_size_ = sparse_map_.size();
}
// Copy from the input.
void IndexMapBiDi::CopyFrom(const IndexMapBiDi& src) {
sparse_map_ = src.sparse_map_;
compact_map_ = src.compact_map_;
sparse_size_ = sparse_map_.size();
}
// Merges the two compact space indices. May be called many times, but
// the merges must be concluded by a call to CompleteMerges.
// Returns true if a merge was actually performed.
bool IndexMapBiDi::Merge(int compact_index1, int compact_index2) {
// Find the current master index for index1 and index2.
compact_index1 = MasterCompactIndex(compact_index1);
compact_index2 = MasterCompactIndex(compact_index2);
// Be sure that index1 < index2.
if (compact_index1 > compact_index2) {
int tmp = compact_index1;
compact_index1 = compact_index2;
compact_index2 = tmp;
} else if (compact_index1 == compact_index2) {
return false;
}
// To save iterating over all sparse_map_ entries, simply make the master
// entry for index2 point to index1.
// This leaves behind a potential chain of parents that needs to be chased,
// as above.
sparse_map_[compact_map_[compact_index2]] = compact_index1;
if (compact_index1 >= 0)
compact_map_[compact_index2] = compact_map_[compact_index1];
return true;
}
// Completes one or more Merge operations by further compacting the
// compact space. Unused compact space indices are removed, and the used
// ones above shuffled down to fill the gaps.
// Example:
// Input sparse_map_: (x indicates -1)
// x x 0 x 2 x x 4 x 0 x 2 x
// Output sparse_map_:
// x x 0 x 1 x x 2 x 0 x 1 x
// Output compact_map_:
// 2 4 7.
void IndexMapBiDi::CompleteMerges() {
// Ensure each sparse_map_entry contains a master compact_map_ index.
int compact_size = 0;
for (int i = 0; i < sparse_map_.size(); ++i) {
int compact_index = MasterCompactIndex(sparse_map_[i]);
sparse_map_[i] = compact_index;
if (compact_index >= compact_size)
compact_size = compact_index + 1;
}
// Re-generate the compact_map leaving holes for unused indices.
compact_map_.init_to_size(compact_size, -1);
for (int i = 0; i < sparse_map_.size(); ++i) {
if (sparse_map_[i] >= 0) {
if (compact_map_[sparse_map_[i]] == -1)
compact_map_[sparse_map_[i]] = i;
}
}
// Compact the compact_map, leaving tmp_compact_map saying where each
// index went to in the compacted map.
GenericVector<inT32> tmp_compact_map;
tmp_compact_map.init_to_size(compact_size, -1);
compact_size = 0;
for (int i = 0; i < compact_map_.size(); ++i) {
if (compact_map_[i] >= 0) {
tmp_compact_map[i] = compact_size;
compact_map_[compact_size++] = compact_map_[i];
}
}
compact_map_.truncate(compact_size);
// Now modify the entries in the sparse map to point to the new locations.
for (int i = 0; i < sparse_map_.size(); ++i) {
if (sparse_map_[i] >= 0) {
sparse_map_[i] = tmp_compact_map[sparse_map_[i]];
}
}
}
// Writes to the given file. Returns false in case of error.
bool IndexMapBiDi::Serialize(FILE* fp) const {
if (!IndexMap::Serialize(fp)) return false;
// Make a vector containing the rest of the map. If the map is many-to-one
// then each additional sparse entry needs to be stored.
// Normally we store only the compact map to save space.
GenericVector<inT32> remaining_pairs;
for (int i = 0; i < sparse_map_.size(); ++i) {
if (sparse_map_[i] >= 0 && compact_map_[sparse_map_[i]] != i) {
remaining_pairs.push_back(i);
remaining_pairs.push_back(sparse_map_[i]);
}
}
if (!remaining_pairs.Serialize(fp)) return false;
return true;
}
// Reads from the given file. Returns false in case of error.
// If swap is true, assumes a big/little-endian swap is needed.
bool IndexMapBiDi::DeSerialize(bool swap, FILE* fp) {
if (!IndexMap::DeSerialize(swap, fp)) return false;
GenericVector<inT32> remaining_pairs;
if (!remaining_pairs.DeSerialize(swap, fp)) return false;
sparse_map_.init_to_size(sparse_size_, -1);
for (int i = 0; i < compact_map_.size(); ++i) {
sparse_map_[compact_map_[i]] = i;
}
for (int i = 0; i < remaining_pairs.size(); ++i) {
int sparse_index = remaining_pairs[i++];
sparse_map_[sparse_index] = remaining_pairs[i];
}
return true;
}
// Bulk calls to SparseToCompact.
// Maps the given array of sparse indices to an array of compact indices.
// Assumes the input is sorted. The output indices are sorted and uniqued.
// Return value is the number of "missed" features, being features that
// don't map to the compact feature space.
int IndexMapBiDi::MapFeatures(const GenericVector<int>& sparse,
GenericVector<int>* compact) const {
compact->truncate(0);
int num_features = sparse.size();
int missed_features = 0;
int prev_good_feature = -1;
for (int f = 0; f < num_features; ++f) {
int feature = sparse_map_[sparse[f]];
if (feature >= 0) {
if (feature != prev_good_feature) {
compact->push_back(feature);
prev_good_feature = feature;
}
} else {
++missed_features;
}
}
return missed_features;
}
} // namespace tesseract.
| 1080228-arabicocr11 | ccutil/indexmapbidi.cpp | C++ | asf20 | 9,096 |
/**********************************************************************
* File: errcode.c (Formerly error.c)
* Description: Generic error handler function
* Author: Ray Smith
* Created: Tue May 1 16:28:39 BST 1990
*
* (C) Copyright 1989, Hewlett-Packard Ltd.
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
** http://www.apache.org/licenses/LICENSE-2.0
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*
**********************************************************************/
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <string.h>
#ifdef __UNIX__
#include <signal.h>
#endif
#include "tprintf.h"
#include "errcode.h"
const ERRCODE BADERRACTION = "Illegal error action";
#define MAX_MSG 1024
/**********************************************************************
* error
*
* Print an error message and continue, exit or abort according to action.
* Makes use of error messages and numbers in a common place.
*
**********************************************************************/
void ERRCODE::error( // handle error
const char *caller, // name of caller
TessErrorLogCode action, // action to take
const char *format, ... // special message
) const {
va_list args; // variable args
char msg[MAX_MSG];
char *msgptr = msg;
if (caller != NULL)
//name of caller
msgptr += sprintf (msgptr, "%s:", caller);
//actual message
msgptr += sprintf (msgptr, "Error:%s", message);
if (format != NULL) {
msgptr += sprintf (msgptr, ":");
va_start(args, format); //variable list
#ifdef _WIN32
//print remainder
msgptr += _vsnprintf (msgptr, MAX_MSG - 2 - (msgptr - msg), format, args);
msg[MAX_MSG - 2] = '\0'; //ensure termination
strcat (msg, "\n");
#else
//print remainder
msgptr += vsprintf (msgptr, format, args);
//no specific
msgptr += sprintf (msgptr, "\n");
#endif
va_end(args);
}
else
//no specific
msgptr += sprintf (msgptr, "\n");
// %s is needed here so msg is printed correctly!
fprintf(stderr, "%s", msg);
int* p = NULL;
switch (action) {
case DBG:
case TESSLOG:
return; //report only
case TESSEXIT:
//err_exit();
case ABORT:
// Create a deliberate segv as the stack trace is more useful that way.
if (!*p)
abort();
default:
BADERRACTION.error ("error", ABORT, NULL);
}
}
| 1080228-arabicocr11 | ccutil/errcode.cpp | C++ | asf20 | 3,130 |
/**********************************************************************
* File: params.cpp
* Description: Initialization and setting of Tesseract parameters.
* Author: Ray Smith
* Created: Fri Feb 22 16:22:34 GMT 1991
*
* (C) Copyright 1991, Hewlett-Packard Ltd.
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
** http://www.apache.org/licenses/LICENSE-2.0
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*
**********************************************************************/
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include "genericvector.h"
#include "scanutils.h"
#include "tprintf.h"
#include "params.h"
#define PLUS '+' //flag states
#define MINUS '-'
#define EQUAL '='
tesseract::ParamsVectors *GlobalParams() {
static tesseract::ParamsVectors *global_params =
new tesseract::ParamsVectors();
return global_params;
}
namespace tesseract {
bool ParamUtils::ReadParamsFile(const char *file,
SetParamConstraint constraint,
ParamsVectors *member_params) {
inT16 nameoffset; // offset for real name
FILE *fp; // file pointer
// iterators
if (*file == PLUS) {
nameoffset = 1;
} else if (*file == MINUS) {
nameoffset = 1;
} else {
nameoffset = 0;
}
fp = fopen(file + nameoffset, "rb");
if (fp == NULL) {
tprintf("read_params_file: Can't open %s\n", file + nameoffset);
return true;
}
const bool anyerr = ReadParamsFromFp(fp, -1, constraint, member_params);
fclose(fp);
return anyerr;
}
bool ParamUtils::ReadParamsFromFp(FILE *fp, inT64 end_offset,
SetParamConstraint constraint,
ParamsVectors *member_params) {
char line[MAX_PATH]; // input line
bool anyerr = false; // true if any error
bool foundit; // found parameter
char *valptr; // value field
while ((end_offset < 0 || ftell(fp) < end_offset) &&
fgets(line, MAX_PATH, fp)) {
if (line[0] != '\n' && line[0] != '#') {
chomp_string(line); // remove newline
for (valptr = line; *valptr && *valptr != ' ' && *valptr != '\t';
valptr++);
if (*valptr) { // found blank
*valptr = '\0'; // make name a string
do
valptr++; // find end of blanks
while (*valptr == ' ' || *valptr == '\t');
}
foundit = SetParam(line, valptr, constraint, member_params);
if (!foundit) {
anyerr = true; // had an error
tprintf("read_params_file: parameter not found: %s\n", line);
exit(1);
}
}
}
return anyerr;
}
bool ParamUtils::SetParam(const char *name, const char* value,
SetParamConstraint constraint,
ParamsVectors *member_params) {
// Look for the parameter among string parameters.
StringParam *sp = FindParam<StringParam>(name, GlobalParams()->string_params,
member_params->string_params);
if (sp != NULL && sp->constraint_ok(constraint)) sp->set_value(value);
if (*value == '\0') return (sp != NULL);
// Look for the parameter among int parameters.
int intval;
IntParam *ip = FindParam<IntParam>(name, GlobalParams()->int_params,
member_params->int_params);
if (ip && ip->constraint_ok(constraint) &&
sscanf(value, INT32FORMAT, &intval) == 1) ip->set_value(intval);
// Look for the parameter among bool parameters.
BoolParam *bp = FindParam<BoolParam>(name, GlobalParams()->bool_params,
member_params->bool_params);
if (bp != NULL && bp->constraint_ok(constraint)) {
if (*value == 'T' || *value == 't' ||
*value == 'Y' || *value == 'y' || *value == '1') {
bp->set_value(true);
} else if (*value == 'F' || *value == 'f' ||
*value == 'N' || *value == 'n' || *value == '0') {
bp->set_value(false);
}
}
// Look for the parameter among double parameters.
double doubleval;
DoubleParam *dp = FindParam<DoubleParam>(name, GlobalParams()->double_params,
member_params->double_params);
if (dp != NULL && dp->constraint_ok(constraint)) {
#ifdef EMBEDDED
doubleval = strtofloat(value);
#else
if (sscanf(value, "%lf", &doubleval) == 1)
#endif
dp->set_value(doubleval);
}
return (sp || ip || bp || dp);
}
bool ParamUtils::GetParamAsString(const char *name,
const ParamsVectors* member_params,
STRING *value) {
// Look for the parameter among string parameters.
StringParam *sp = FindParam<StringParam>(name, GlobalParams()->string_params,
member_params->string_params);
if (sp) {
*value = sp->string();
return true;
}
// Look for the parameter among int parameters.
IntParam *ip = FindParam<IntParam>(name, GlobalParams()->int_params,
member_params->int_params);
if (ip) {
char buf[128];
snprintf(buf, sizeof(buf), "%d", inT32(*ip));
*value = buf;
return true;
}
// Look for the parameter among bool parameters.
BoolParam *bp = FindParam<BoolParam>(name, GlobalParams()->bool_params,
member_params->bool_params);
if (bp != NULL) {
*value = BOOL8(*bp) ? "1": "0";
return true;
}
// Look for the parameter among double parameters.
DoubleParam *dp = FindParam<DoubleParam>(name, GlobalParams()->double_params,
member_params->double_params);
if (dp != NULL) {
char buf[128];
snprintf(buf, sizeof(buf), "%g", double(*dp));
*value = buf;
return true;
}
return false;
}
void ParamUtils::PrintParams(FILE *fp, const ParamsVectors *member_params) {
int v, i;
int num_iterations = (member_params == NULL) ? 1 : 2;
for (v = 0; v < num_iterations; ++v) {
const ParamsVectors *vec = (v == 0) ? GlobalParams() : member_params;
for (i = 0; i < vec->int_params.size(); ++i) {
fprintf(fp, "%s\t%d\t%s\n", vec->int_params[i]->name_str(),
(inT32)(*vec->int_params[i]), vec->int_params[i]->info_str());
}
for (i = 0; i < vec->bool_params.size(); ++i) {
fprintf(fp, "%s\t%d\t%s\n", vec->bool_params[i]->name_str(),
(BOOL8)(*vec->bool_params[i]), vec->bool_params[i]->info_str());
}
for (int i = 0; i < vec->string_params.size(); ++i) {
fprintf(fp, "%s\t%s\t%s\n", vec->string_params[i]->name_str(),
vec->string_params[i]->string(), vec->string_params[i]->info_str());
}
for (int i = 0; i < vec->double_params.size(); ++i) {
fprintf(fp, "%s\t%g\t%s\n", vec->double_params[i]->name_str(),
(double)(*vec->double_params[i]), vec->double_params[i]->info_str());
}
}
}
// Resets all parameters back to default values;
void ParamUtils::ResetToDefaults(ParamsVectors* member_params) {
int v, i;
int num_iterations = (member_params == NULL) ? 1 : 2;
for (v = 0; v < num_iterations; ++v) {
ParamsVectors *vec = (v == 0) ? GlobalParams() : member_params;
for (i = 0; i < vec->int_params.size(); ++i) {
vec->int_params[i]->ResetToDefault();
}
for (i = 0; i < vec->bool_params.size(); ++i) {
vec->bool_params[i]->ResetToDefault();
}
for (int i = 0; i < vec->string_params.size(); ++i) {
vec->string_params[i]->ResetToDefault();
}
for (int i = 0; i < vec->double_params.size(); ++i) {
vec->double_params[i]->ResetToDefault();
}
}
}
} // namespace tesseract
| 1080228-arabicocr11 | ccutil/params.cpp | C++ | asf20 | 8,328 |
///////////////////////////////////////////////////////////////////////
// File: ccutil.h
// Description: ccutil class.
// Author: Samuel Charron
//
// (C) Copyright 2006, Google Inc.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
///////////////////////////////////////////////////////////////////////
#ifndef TESSERACT_CCUTIL_CCUTIL_H__
#define TESSERACT_CCUTIL_CCUTIL_H__
#include "ambigs.h"
#include "errcode.h"
#include "strngs.h"
#include "tessdatamanager.h"
#include "params.h"
#include "unicharset.h"
#ifdef _WIN32
#include <windows.h>
#else
#include <pthread.h>
#include <semaphore.h>
#endif
namespace tesseract {
class CCUtilMutex {
public:
CCUtilMutex();
void Lock();
void Unlock();
private:
#ifdef _WIN32
HANDLE mutex_;
#else
pthread_mutex_t mutex_;
#endif
};
class CCUtil {
public:
CCUtil();
virtual ~CCUtil();
public:
// Read the arguments and set up the data path.
void main_setup(
const char *argv0, // program name
const char *basename // name of image
);
ParamsVectors *params() { return ¶ms_; }
STRING datadir; // dir for data files
STRING imagebasename; // name of image
STRING lang;
STRING language_data_path_prefix;
TessdataManager tessdata_manager;
UNICHARSET unicharset;
UnicharAmbigs unichar_ambigs;
STRING imagefile; // image file name
STRING directory; // main directory
private:
ParamsVectors params_;
public:
// Member parameters.
// These have to be declared and initialized after params_ member, since
// params_ should be initialized before parameters are added to it.
STRING_VAR_H(m_data_sub_dir, "tessdata/", "Directory for data files");
#ifdef _WIN32
STRING_VAR_H(tessedit_module_name, WINDLLNAME,
"Module colocated with tessdata dir");
#endif
INT_VAR_H(ambigs_debug_level, 0, "Debug level for unichar ambiguities");
BOOL_VAR_H(use_definite_ambigs_for_classifier, 0,
"Use definite ambiguities when running character classifier");
BOOL_VAR_H(use_ambigs_for_adaption, 0,
"Use ambigs for deciding whether to adapt to a character");
};
extern CCUtilMutex tprintfMutex; // should remain global
} // namespace tesseract
#endif // TESSERACT_CCUTIL_CCUTIL_H__
| 1080228-arabicocr11 | ccutil/ccutil.h | C++ | asf20 | 2,804 |
///////////////////////////////////////////////////////////////////////
// File: object_cache.h
// Description: A string indexed object cache.
// Author: David Eger
// Created: Fri Jan 27 12:08:00 PST 2012
//
// (C) Copyright 2012, Google Inc.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
///////////////////////////////////////////////////////////////////////
#ifndef TESSERACT_CCUTIL_OBJECT_CACHE_H_
#define TESSERACT_CCUTIL_OBJECT_CACHE_H_
#include "ccutil.h"
#include "errcode.h"
#include "genericvector.h"
#include "tesscallback.h"
namespace tesseract {
// A simple object cache which maps a string to an object of type T.
// Usually, these are expensive objects that are loaded from disk.
// Reference counting is performed, so every Get() needs to be followed later
// by a Free(). Actual deletion is accomplished by DeleteUnusedObjects().
template<typename T>
class ObjectCache {
public:
ObjectCache() {}
~ObjectCache() {
mu_.Lock();
for (int i = 0; i < cache_.size(); i++) {
if (cache_[i].count > 0) {
tprintf("ObjectCache(%p)::~ObjectCache(): WARNING! LEAK! object %p "
"still has count %d (id %s)\n",
this, cache_[i].object, cache_[i].count,
cache_[i].id.string());
} else {
delete cache_[i].object;
cache_[i].object = NULL;
}
}
mu_.Unlock();
}
// Return a pointer to the object identified by id.
// If we haven't yet loaded the object, use loader to load it.
// If loader fails to load it, record a NULL entry in the cache
// and return NULL -- further attempts to load will fail (even
// with a different loader) until DeleteUnusedObjects() is called.
// We delete the given loader.
T *Get(STRING id,
TessResultCallback<T *> *loader) {
T *retval = NULL;
mu_.Lock();
for (int i = 0; i < cache_.size(); i++) {
if (id == cache_[i].id) {
retval = cache_[i].object;
if (cache_[i].object != NULL) {
cache_[i].count++;
}
mu_.Unlock();
delete loader;
return retval;
}
}
cache_.push_back(ReferenceCount());
ReferenceCount &rc = cache_.back();
rc.id = id;
retval = rc.object = loader->Run();
rc.count = (retval != NULL) ? 1 : 0;
mu_.Unlock();
return retval;
}
// Decrement the count for t.
// Return whether we knew about the given pointer.
bool Free(T *t) {
if (t == NULL) return false;
mu_.Lock();
for (int i = 0; i < cache_.size(); i++) {
if (cache_[i].object == t) {
--cache_[i].count;
mu_.Unlock();
return true;
}
}
mu_.Unlock();
return false;
}
void DeleteUnusedObjects() {
mu_.Lock();
for (int i = cache_.size() - 1; i >= 0; i--) {
if (cache_[i].count <= 0) {
delete cache_[i].object;
cache_.remove(i);
}
}
mu_.Unlock();
}
private:
struct ReferenceCount {
STRING id; // A unique ID to identify the object (think path on disk)
T *object; // A copy of the object in memory. Can be delete'd.
int count; // A count of the number of active users of this object.
};
CCUtilMutex mu_;
GenericVector<ReferenceCount> cache_;
};
} // namespace tesseract
#endif // TESSERACT_CCUTIL_OBJECT_CACHE_H_
| 1080228-arabicocr11 | ccutil/object_cache.h | C++ | asf20 | 3,823 |
///////////////////////////////////////////////////////////////////////
// File: tessdatamanager.h
// Description: Functions to handle loading/combining tesseract data files.
// Author: Daria Antonova
// Created: Wed Jun 03 11:26:43 PST 2009
//
// (C) Copyright 2009, Google Inc.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
///////////////////////////////////////////////////////////////////////
#ifndef TESSERACT_CCUTIL_TESSDATAMANAGER_H_
#define TESSERACT_CCUTIL_TESSDATAMANAGER_H_
#include <stdio.h>
#include "host.h"
#include "strngs.h"
#include "tprintf.h"
static const char kTrainedDataSuffix[] = "traineddata";
// When adding new tessdata types and file suffixes, please make sure to
// update TessdataType enum, kTessdataFileSuffixes and kTessdataFileIsText.
static const char kLangConfigFileSuffix[] = "config";
static const char kUnicharsetFileSuffix[] = "unicharset";
static const char kAmbigsFileSuffix[] = "unicharambigs";
static const char kBuiltInTemplatesFileSuffix[] = "inttemp";
static const char kBuiltInCutoffsFileSuffix[] = "pffmtable";
static const char kNormProtoFileSuffix[] = "normproto";
static const char kPuncDawgFileSuffix[] = "punc-dawg";
static const char kSystemDawgFileSuffix[] = "word-dawg";
static const char kNumberDawgFileSuffix[] = "number-dawg";
static const char kFreqDawgFileSuffix[] = "freq-dawg";
static const char kFixedLengthDawgsFileSuffix[] = "fixed-length-dawgs";
static const char kCubeUnicharsetFileSuffix[] = "cube-unicharset";
static const char kCubeSystemDawgFileSuffix[] = "cube-word-dawg";
static const char kShapeTableFileSuffix[] = "shapetable";
static const char kBigramDawgFileSuffix[] = "bigram-dawg";
static const char kUnambigDawgFileSuffix[] = "unambig-dawg";
static const char kParamsModelFileSuffix[] = "params-model";
namespace tesseract {
enum TessdataType {
TESSDATA_LANG_CONFIG, // 0
TESSDATA_UNICHARSET, // 1
TESSDATA_AMBIGS, // 2
TESSDATA_INTTEMP, // 3
TESSDATA_PFFMTABLE, // 4
TESSDATA_NORMPROTO, // 5
TESSDATA_PUNC_DAWG, // 6
TESSDATA_SYSTEM_DAWG, // 7
TESSDATA_NUMBER_DAWG, // 8
TESSDATA_FREQ_DAWG, // 9
TESSDATA_FIXED_LENGTH_DAWGS, // 10 // deprecated
TESSDATA_CUBE_UNICHARSET, // 11
TESSDATA_CUBE_SYSTEM_DAWG, // 12
TESSDATA_SHAPE_TABLE, // 13
TESSDATA_BIGRAM_DAWG, // 14
TESSDATA_UNAMBIG_DAWG, // 15
TESSDATA_PARAMS_MODEL, // 16
TESSDATA_NUM_ENTRIES
};
/**
* kTessdataFileSuffixes[i] indicates the file suffix for
* tessdata of type i (from TessdataType enum).
*/
static const char * const kTessdataFileSuffixes[] = {
kLangConfigFileSuffix, // 0
kUnicharsetFileSuffix, // 1
kAmbigsFileSuffix, // 2
kBuiltInTemplatesFileSuffix, // 3
kBuiltInCutoffsFileSuffix, // 4
kNormProtoFileSuffix, // 5
kPuncDawgFileSuffix, // 6
kSystemDawgFileSuffix, // 7
kNumberDawgFileSuffix, // 8
kFreqDawgFileSuffix, // 9
kFixedLengthDawgsFileSuffix, // 10 // deprecated
kCubeUnicharsetFileSuffix, // 11
kCubeSystemDawgFileSuffix, // 12
kShapeTableFileSuffix, // 13
kBigramDawgFileSuffix, // 14
kUnambigDawgFileSuffix, // 15
kParamsModelFileSuffix, // 16
};
/**
* If kTessdataFileIsText[i] is true - the tessdata component
* of type i (from TessdataType enum) is text, and is binary otherwise.
*/
static const bool kTessdataFileIsText[] = {
true, // 0
true, // 1
true, // 2
false, // 3
true, // 4
true, // 5
false, // 6
false, // 7
false, // 8
false, // 9
false, // 10 // deprecated
true, // 11
false, // 12
false, // 13
false, // 14
false, // 15
true, // 16
};
/**
* TessdataType could be updated to contain more entries, however
* we do not expect that number to be astronomically high.
* In order to automatically detect endianness TessdataManager will
* flip the bits if actual_tessdata_num_entries_ is larger than
* kMaxNumTessdataEntries.
*/
static const int kMaxNumTessdataEntries = 1000;
class TessdataManager {
public:
TessdataManager() {
data_file_ = NULL;
actual_tessdata_num_entries_ = 0;
for (int i = 0; i < TESSDATA_NUM_ENTRIES; ++i) {
offset_table_[i] = -1;
}
}
~TessdataManager() {}
int DebugLevel() { return debug_level_; }
/**
* Opens the given data file and reads the offset table.
* Returns true on success.
*/
bool Init(const char *data_file_name, int debug_level);
// Return the name of the underlying data file.
const STRING &GetDataFileName() const { return data_file_name_; }
/** Returns data file pointer. */
inline FILE *GetDataFilePtr() const { return data_file_; }
/**
* Returns false if there is no data of the given type.
* Otherwise does a seek on the data_file_ to position the pointer
* at the start of the data of the given type.
*/
inline bool SeekToStart(TessdataType tessdata_type) {
if (debug_level_) {
tprintf("TessdataManager: seek to offset %lld - start of tessdata"
"type %d (%s))\n", offset_table_[tessdata_type],
tessdata_type, kTessdataFileSuffixes[tessdata_type]);
}
if (offset_table_[tessdata_type] < 0) {
return false;
} else {
ASSERT_HOST(fseek(data_file_,
static_cast<size_t>(offset_table_[tessdata_type]),
SEEK_SET) == 0);
return true;
}
}
/** Returns the end offset for the given tesseract data file type. */
inline inT64 GetEndOffset(TessdataType tessdata_type) const {
int index = tessdata_type + 1;
while (index < actual_tessdata_num_entries_ && offset_table_[index] == -1) {
++index; // skip tessdata types not present in the combined file
}
if (debug_level_) {
tprintf("TessdataManager: end offset for type %d is %lld\n",
tessdata_type,
(index == actual_tessdata_num_entries_) ? -1
: offset_table_[index]);
}
return (index == actual_tessdata_num_entries_) ? -1 : offset_table_[index] - 1;
}
/** Closes data_file_ (if it was opened by Init()). */
inline void End() {
if (data_file_ != NULL) {
fclose(data_file_);
data_file_ = NULL;
}
}
bool swap() const {
return swap_;
}
/** Writes the number of entries and the given offset table to output_file.
* Returns false on error.
*/
static bool WriteMetadata(inT64 *offset_table,
const char *language_data_path_prefix,
FILE *output_file);
/**
* Reads all the standard tesseract config and data files for a language
* at the given path and bundles them up into one binary data file.
* Returns true if the combined traineddata file was successfully written.
*/
static bool CombineDataFiles(const char *language_data_path_prefix,
const char *output_filename);
/**
* Gets the individual components from the data_file_ with which the class was
* initialized. Overwrites the components specified by component_filenames.
* Writes the updated traineddata file to new_traineddata_filename.
*/
bool OverwriteComponents(const char *new_traineddata_filename,
char **component_filenames,
int num_new_components);
/**
* Extracts tessdata component implied by the name of the input file from
* the combined traineddata loaded into TessdataManager.
* Writes the extracted component to the file indicated by the file name.
* E.g. if the filename given is somepath/somelang.unicharset, unicharset
* will be extracted from the data loaded into the TessdataManager and will
* be written to somepath/somelang.unicharset.
* @return true if the component was successfully extracted, false if the
* component was not present in the traineddata loaded into TessdataManager.
*/
bool ExtractToFile(const char *filename);
/**
* Copies data from the given input file to the output_file provided.
* If num_bytes_to_copy is >= 0, only num_bytes_to_copy is copied from
* the input file, otherwise all the data in the input file is copied.
*/
static void CopyFile(FILE *input_file, FILE *output_file,
bool newline_end, inT64 num_bytes_to_copy);
/**
* Fills type with TessdataType of the tessdata component represented by the
* given file name. E.g. tessdata/eng.unicharset -> TESSDATA_UNICHARSET.
* Sets *text_file to true if the component is in text format (e.g.
* unicharset, unichar ambigs, config, etc).
* @return true if the tessdata component type could be determined
* from the given file name.
*/
static bool TessdataTypeFromFileSuffix(const char *suffix,
TessdataType *type,
bool *text_file);
/**
* Tries to determine tessdata component file suffix from filename,
* returns true on success.
*/
static bool TessdataTypeFromFileName(const char *filename,
TessdataType *type,
bool *text_file);
private:
/**
* Opens the file whose name is a concatenation of language_data_path_prefix
* and file_suffix. Returns a file pointer to the opened file.
*/
static FILE *GetFilePtr(const char *language_data_path_prefix,
const char *file_suffix, bool text_file);
/**
* Each offset_table_[i] contains a file offset in the combined data file
* where the data of TessdataFileType i is stored.
*/
inT64 offset_table_[TESSDATA_NUM_ENTRIES];
/**
* Actual number of entries in the tessdata table. This value can only be
* same or smaller than TESSDATA_NUM_ENTRIES, but can never be larger,
* since then it would be impossible to interpret the type of tessdata at
* indices same and higher than TESSDATA_NUM_ENTRIES.
* This parameter is used to allow for backward compatiblity
* when new tessdata types are introduced.
*/
inT32 actual_tessdata_num_entries_;
STRING data_file_name_; // name of the data file.
FILE *data_file_; ///< pointer to the data file.
int debug_level_;
// True if the bytes need swapping.
bool swap_;
};
} // namespace tesseract
#endif // TESSERACT_CCUTIL_TESSDATAMANAGER_H_
| 1080228-arabicocr11 | ccutil/tessdatamanager.h | C++ | asf20 | 11,366 |
/**********************************************************************
* File: serialis.h (Formerly serialmac.h)
* Description: Inline routines and macros for serialisation functions
* Author: Phil Cheatle
* Created: Tue Oct 08 08:33:12 BST 1991
*
* (C) Copyright 1990, Hewlett-Packard Ltd.
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
** http://www.apache.org/licenses/LICENSE-2.0
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*
**********************************************************************/
#include "serialis.h"
#include <stdio.h>
#include "genericvector.h"
namespace tesseract {
TFile::TFile()
: offset_(0), data_(NULL), data_is_owned_(false), is_writing_(false) {
}
TFile::~TFile() {
if (data_is_owned_)
delete data_;
}
bool TFile::Open(const STRING& filename, FileReader reader) {
if (!data_is_owned_) {
data_ = new GenericVector<char>;
data_is_owned_ = true;
}
offset_ = 0;
is_writing_ = false;
if (reader == NULL)
return LoadDataFromFile(filename, data_);
else
return (*reader)(filename, data_);
}
bool TFile::Open(const char* data, int size) {
offset_ = 0;
if (!data_is_owned_) {
data_ = new GenericVector<char>;
data_is_owned_ = true;
}
is_writing_ = false;
data_->init_to_size(size, 0);
memcpy(&(*data_)[0], data, size);
return true;
}
bool TFile::Open(FILE* fp, inT64 end_offset) {
offset_ = 0;
inT64 current_pos = ftell(fp);
if (end_offset < 0) {
if (fseek(fp, 0, SEEK_END))
return false;
end_offset = ftell(fp);
if (fseek(fp, current_pos, SEEK_SET))
return false;
}
int size = end_offset - current_pos;
is_writing_ = false;
if (!data_is_owned_) {
data_ = new GenericVector<char>;
data_is_owned_ = true;
}
data_->init_to_size(size, 0);
return static_cast<int>(fread(&(*data_)[0], 1, size, fp)) == size;
}
char* TFile::FGets(char* buffer, int buffer_size) {
ASSERT_HOST(!is_writing_);
int size = 0;
while (size + 1 < buffer_size && offset_ < data_->size()) {
buffer[size++] = (*data_)[offset_++];
if ((*data_)[offset_ - 1] == '\n') break;
}
if (size < buffer_size) buffer[size] = '\0';
return size > 0 ? buffer : NULL;
}
int TFile::FRead(void* buffer, int size, int count) {
ASSERT_HOST(!is_writing_);
int required_size = size * count;
if (required_size <= 0) return 0;
char* char_buffer = reinterpret_cast<char*>(buffer);
if (data_->size() - offset_ < required_size)
required_size = data_->size() - offset_;
if (required_size > 0)
memcpy(char_buffer, &(*data_)[offset_], required_size);
offset_ += required_size;
return required_size / size;
}
void TFile::Rewind() {
ASSERT_HOST(!is_writing_);
offset_ = 0;
}
void TFile::OpenWrite(GenericVector<char>* data) {
offset_ = 0;
if (data != NULL) {
if (data_is_owned_) delete data_;
data_ = data;
data_is_owned_ = false;
} else if (!data_is_owned_) {
data_ = new GenericVector<char>;
data_is_owned_ = true;
}
is_writing_ = true;
data_->truncate(0);
}
bool TFile::CloseWrite(const STRING& filename, FileWriter writer) {
ASSERT_HOST(is_writing_);
if (writer == NULL)
return SaveDataToFile(*data_, filename);
else
return (*writer)(*data_, filename);
}
int TFile::FWrite(const void* buffer, int size, int count) {
ASSERT_HOST(is_writing_);
int total = size * count;
if (total <= 0) return 0;
const char* buf = reinterpret_cast<const char*>(buffer);
// This isn't very efficient, but memory is so fast compared to disk
// that it is relatively unimportant, and very simple.
for (int i = 0; i < total; ++i)
data_->push_back(buf[i]);
return count;
}
} // namespace tesseract.
| 1080228-arabicocr11 | ccutil/serialis.cpp | C++ | asf20 | 4,121 |
/**********************************************************************
* File: errcode.h (Formerly error.h)
* Description: Header file for generic error handler class
* Author: Ray Smith
* Created: Tue May 1 16:23:36 BST 1990
*
* (C) Copyright 1990, Hewlett-Packard Ltd.
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
** http://www.apache.org/licenses/LICENSE-2.0
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*
**********************************************************************/
#ifndef ERRCODE_H
#define ERRCODE_H
#include "host.h"
/*Control parameters for error()*/
enum TessErrorLogCode {
DBG = -1, /*log without alert */
TESSLOG = 0, /*alert user */
TESSEXIT = 1, /*exit after erro */
ABORT = 2 /*abort after error */
};
/* Explicit Error Abort codes */
#define NO_ABORT_CODE 0
#define LIST_ABORT 1
#define MEMORY_ABORT 2
#define FILE_ABORT 3
/* Location of code at error codes Reserve 0..2 (status codes 0..23 for UNLV)*/
#define LOC_UNUSED0 0
#define LOC_UNUSED1 1
#define LOC_UNUSED2 2
#define LOC_INIT 3
#define LOC_EDGE_PROG 4
#define LOC_TEXT_ORD_ROWS 5
#define LOC_TEXT_ORD_WORDS 6
#define LOC_PASS1 7
#define LOC_PASS2 8
/* Reserve up to 8..13 for adding subloc 0/3 plus subsubloc 0/1/2 */
#define LOC_FUZZY_SPACE 14
/* Reserve up to 14..20 for adding subloc 0/3 plus subsubloc 0/1/2 */
#define LOC_MM_ADAPT 21
#define LOC_DOC_BLK_REJ 22
#define LOC_WRITE_RESULTS 23
#define LOC_ADAPTIVE 24
/* DONT DEFINE ANY LOCATION > 31 !!! */
/* Sub locatation determines whether pass2 was in normal mode or fix xht mode*/
#define SUBLOC_NORM 0
#define SUBLOC_FIX_XHT 3
/* Sub Sub locatation determines whether match_word_pass2 was in Tess
matcher, NN matcher or somewhere else */
#define SUBSUBLOC_OTHER 0
#define SUBSUBLOC_TESS 1
#define SUBSUBLOC_NN 2
class TESS_API ERRCODE { // error handler class
const char *message; // error message
public:
void error( // error print function
const char *caller, // function location
TessErrorLogCode action, // action to take
const char *format, ... // fprintf format
) const;
ERRCODE(const char *string) {
message = string;
} // initialize with string
};
const ERRCODE ASSERT_FAILED = "Assert failed";
#define ASSERT_HOST(x) if (!(x)) \
{ \
ASSERT_FAILED.error(#x, ABORT, "in file %s, line %d", \
__FILE__, __LINE__); \
}
#ifdef _MSC_VER
#define ASSERT_HOST_MSG(x, msg, ...) if (!(x)) \
{ \
tprintf(msg); \
ASSERT_FAILED.error(#x, ABORT, "in file %s, line %d", \
__FILE__, __LINE__); \
}
#else
#define ASSERT_HOST_MSG(x, msg...) if (!(x)) \
{ \
tprintf(msg); \
ASSERT_FAILED.error(#x, ABORT, "in file %s, line %d", \
__FILE__, __LINE__); \
}
#endif
void signal_exit(int signal_code);
void set_global_loc_code(int loc_code);
void set_global_subloc_code(int loc_code);
void set_global_subsubloc_code(int loc_code);
#endif
| 1080228-arabicocr11 | ccutil/errcode.h | C++ | asf20 | 4,132 |
///////////////////////////////////////////////////////////////////////
// File: universalambigs.cpp
// Description: Data for a universal ambigs file that is useful for
// any language.
// Author: Ray Smith
// Created: Mon Mar 18 11:26:00 PDT 2013
//
// (C) Copyright 2013, Google Inc.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
///////////////////////////////////////////////////////////////////////
namespace tesseract {
extern const char kUniversalAmbigsFile[] = {
'\166', '\062', '\012', '\047', '\047', '\040', '\042', '\040',
'\061', '\012', '\140', '\047', '\040', '\042', '\040', '\061',
'\012', '\047', '\140', '\040', '\042', '\040', '\061', '\012',
'\342', '\200', '\230', '\047', '\040', '\042', '\040', '\061',
'\012', '\047', '\342', '\200', '\230', '\040', '\042', '\040',
'\061', '\012', '\342', '\200', '\231', '\047', '\040', '\042',
'\040', '\061', '\012', '\047', '\342', '\200', '\231', '\040',
'\042', '\040', '\061', '\012', '\140', '\140', '\040', '\042',
'\040', '\061', '\012', '\140', '\342', '\200', '\230', '\040',
'\042', '\040', '\061', '\012', '\342', '\200', '\230', '\140',
'\040', '\042', '\040', '\061', '\012', '\140', '\342', '\200',
'\231', '\040', '\042', '\040', '\061', '\012', '\342', '\200',
'\231', '\140', '\040', '\042', '\040', '\061', '\012', '\342',
'\200', '\230', '\342', '\200', '\230', '\040', '\342', '\200',
'\234', '\040', '\061', '\012', '\342', '\200', '\230', '\342',
'\200', '\231', '\040', '\042', '\040', '\061', '\012', '\342',
'\200', '\231', '\342', '\200', '\230', '\040', '\042', '\040',
'\061', '\012', '\342', '\200', '\231', '\342', '\200', '\231',
'\040', '\342', '\200', '\235', '\040', '\061', '\012', '\054',
'\054', '\040', '\342', '\200', '\236', '\040', '\061', '\012',
'\155', '\040', '\162', '\156', '\040', '\060', '\012', '\162',
'\156', '\040', '\155', '\040', '\060', '\012', '\155', '\040',
'\151', '\156', '\040', '\060', '\012', '\151', '\156', '\040',
'\155', '\040', '\060', '\012', '\144', '\040', '\143', '\154',
'\040', '\060', '\012', '\143', '\154', '\040', '\144', '\040',
'\060', '\012', '\156', '\156', '\040', '\162', '\155', '\040',
'\060', '\012', '\162', '\155', '\040', '\156', '\156', '\040',
'\060', '\012', '\156', '\040', '\162', '\151', '\040', '\060',
'\012', '\162', '\151', '\040', '\156', '\040', '\060', '\012',
'\154', '\151', '\040', '\150', '\040', '\060', '\012', '\154',
'\162', '\040', '\150', '\040', '\060', '\012', '\151', '\151',
'\040', '\165', '\040', '\060', '\012', '\151', '\151', '\040',
'\156', '\040', '\060', '\012', '\156', '\151', '\040', '\155',
'\040', '\060', '\012', '\151', '\151', '\151', '\040', '\155',
'\040', '\060', '\012', '\154', '\154', '\040', '\110', '\040',
'\060', '\012', '\111', '\055', '\111', '\040', '\110', '\040',
'\060', '\012', '\166', '\166', '\040', '\167', '\040', '\060',
'\012', '\126', '\126', '\040', '\127', '\040', '\060', '\012',
'\164', '\040', '\146', '\040', '\060', '\012', '\146', '\040',
'\164', '\040', '\060', '\012', '\141', '\040', '\157', '\040',
'\060', '\012', '\157', '\040', '\141', '\040', '\060', '\012',
'\145', '\040', '\143', '\040', '\060', '\012', '\143', '\040',
'\145', '\040', '\060', '\012', '\162', '\162', '\040', '\156',
'\040', '\060', '\012', '\105', '\040', '\146', '\151', '\040',
'\060', '\012', '\154', '\074', '\040', '\153', '\040', '\060',
'\012', '\154', '\144', '\040', '\153', '\151', '\040', '\060',
'\012', '\154', '\170', '\040', '\150', '\040', '\060', '\012',
'\170', '\156', '\040', '\155', '\040', '\060', '\012', '\165',
'\170', '\040', '\151', '\156', '\040', '\060', '\012', '\162',
'\040', '\164', '\040', '\060', '\012', '\144', '\040', '\164',
'\154', '\040', '\060', '\012', '\144', '\151', '\040', '\164',
'\150', '\040', '\060', '\012', '\165', '\162', '\040', '\151',
'\156', '\040', '\060', '\012', '\165', '\156', '\040', '\151',
'\155', '\040', '\060', '\012', '\165', '\040', '\141', '\040',
'\060', '\012', '\157', '\040', '\303', '\263', '\040', '\060',
'\012', '\303', '\263', '\040', '\157', '\040', '\060', '\012',
'\151', '\040', '\303', '\255', '\040', '\060', '\012', '\303',
'\255', '\040', '\151', '\040', '\060', '\012', '\141', '\040',
'\303', '\241', '\040', '\060', '\012', '\303', '\241', '\040',
'\141', '\040', '\060', '\012', '\145', '\040', '\303', '\251',
'\040', '\060', '\012', '\303', '\251', '\040', '\145', '\040',
'\060', '\012', '\165', '\040', '\303', '\272', '\040', '\060',
'\012', '\303', '\272', '\040', '\165', '\040', '\060', '\012',
'\156', '\040', '\303', '\261', '\040', '\060', '\012', '\303',
'\261', '\040', '\156', '\040', '\060', '\012', '\060', '\040',
'\157', '\040', '\060', '\012', '\144', '\040', '\164', '\162',
'\040', '\060', '\012', '\156', '\040', '\164', '\162', '\040',
'\060', '\012', '\303', '\261', '\040', '\146', '\151', '\040',
'\060', '\012', '\165', '\040', '\164', '\151', '\040', '\060',
'\012', '\303', '\261', '\040', '\164', '\151', '\040', '\060',
'\012', '\144', '\040', '\164', '\151', '\040', '\060', '\012',
'\144', '\040', '\164', '\303', '\255', '\040', '\060', '\012',
'\144', '\040', '\162', '\303', '\255', '\040', '\060', '\012',
'\141', '\040', '\303', '\240', '\040', '\060', '\012', '\145',
'\040', '\303', '\250', '\040', '\060', '\012', '\156', '\040',
'\151', '\152', '\040', '\060', '\012', '\147', '\040', '\151',
'\152', '\040', '\060', '\012', '\157', '\040', '\303', '\262',
'\040', '\060', '\012', '\105', '\040', '\303', '\211', '\040',
'\060', '\012', '\105', '\040', '\303', '\210', '\040', '\060',
'\012', '\165', '\040', '\303', '\274', '\040', '\060', '\012',
'\170', '\156', '\105', '\040', '\141', '\156', '\040', '\061',
'\012', '\155', '\131', '\170', '\040', '\155', '\145', '\040',
'\061', '\012', '\161', '\164', '\105', '\040', '\156', '\164',
'\040', '\061', '\012', '\124', '\154', '\142', '\040', '\154',
'\145', '\040', '\061', '\012', '\166', '\170', '\116', '\040',
'\166', '\141', '\040', '\061', '\012', '\147', '\152', '\121',
'\040', '\156', '\147', '\040', '\061', '\012', '\152', '\160',
'\106', '\040', '\151', '\152', '\040', '\061', '\012', '\131',
'\162', '\154', '\040', '\154', '\145', '\040', '\061', '\012',
'\141', '\161', '\131', '\040', '\141', '\156', '\040', '\061',
'\012', '\172', '\166', '\112', '\040', '\166', '\141', '\040',
'\061', '\012', '\146', '\142', '\114', '\040', '\142', '\145',
'\040', '\061', '\012', '\116', '\166', '\153', '\040', '\166',
'\141', '\040', '\061', '\012', '\146', '\112', '\160', '\040',
'\160', '\162', '\040', '\061', '\012', '\167', '\170', '\103',
'\040', '\167', '\141', '\040', '\061', '\012', '\143', '\165',
'\112', '\040', '\161', '\165', '\040', '\061', '\012', '\121',
'\172', '\164', '\040', '\164', '\141', '\040', '\061', '\012',
'\161', '\113', '\167', '\040', '\167', '\141', '\040', '\061',
'\012', '\163', '\143', '\112', '\040', '\163', '\164', '\040',
'\061', '\012', '\160', '\130', '\160', '\040', '\160', '\157',
'\040', '\061', '\012', '\126', '\161', '\151', '\040', '\164',
'\151', '\040', '\061', '\012', '\125', '\170', '\153', '\040',
'\153', '\141', '\040', '\061', '\012', '\153', '\112', '\166',
'\040', '\153', '\141', '\040', '\061', '\012', '\131', '\153',
'\144', '\040', '\153', '\141', '\040', '\061', '\012', '\166',
'\160', '\130', '\040', '\166', '\141', '\040', '\061', '\012',
'\151', '\102', '\166', '\040', '\164', '\151', '\040', '\061',
'\012', '\172', '\122', '\142', '\040', '\163', '\172', '\040',
'\061', '\012', '\171', '\124', '\155', '\040', '\155', '\151',
'\040', '\061', '\012', '\155', '\113', '\160', '\040', '\160',
'\162', '\040', '\061', '\012', '\126', '\172', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\130', '\164', '\160',
'\040', '\164', '\151', '\040', '\061', '\012', '\155', '\166',
'\104', '\040', '\166', '\141', '\040', '\061', '\012', '\155',
'\104', '\161', '\040', '\155', '\145', '\040', '\061', '\012',
'\152', '\170', '\120', '\040', '\151', '\152', '\040', '\061',
'\012', '\102', '\170', '\166', '\040', '\166', '\141', '\040',
'\061', '\012', '\157', '\111', '\165', '\040', '\161', '\165',
'\040', '\061', '\012', '\122', '\166', '\143', '\040', '\166',
'\141', '\040', '\061', '\012', '\165', '\103', '\152', '\040',
'\161', '\165', '\040', '\061', '\012', '\157', '\101', '\157',
'\040', '\166', '\157', '\040', '\061', '\012', '\161', '\165',
'\102', '\040', '\164', '\165', '\040', '\061', '\012', '\142',
'\164', '\126', '\040', '\164', '\151', '\040', '\061', '\012',
'\114', '\155', '\143', '\040', '\155', '\145', '\040', '\061',
'\012', '\164', '\126', '\167', '\040', '\164', '\151', '\040',
'\061', '\012', '\131', '\170', '\166', '\040', '\166', '\141',
'\040', '\061', '\012', '\110', '\170', '\155', '\040', '\155',
'\145', '\040', '\061', '\012', '\144', '\126', '\150', '\040',
'\164', '\150', '\040', '\061', '\012', '\170', '\131', '\143',
'\040', '\143', '\150', '\040', '\061', '\012', '\165', '\120',
'\152', '\040', '\164', '\165', '\040', '\061', '\012', '\146',
'\124', '\146', '\040', '\146', '\157', '\040', '\061', '\012',
'\122', '\152', '\167', '\040', '\151', '\152', '\040', '\061',
'\012', '\170', '\144', '\101', '\040', '\144', '\151', '\040',
'\061', '\012', '\152', '\172', '\116', '\040', '\151', '\152',
'\040', '\061', '\012', '\155', '\170', '\114', '\040', '\155',
'\145', '\040', '\061', '\012', '\171', '\147', '\112', '\040',
'\156', '\147', '\040', '\061', '\012', '\126', '\166', '\147',
'\040', '\166', '\141', '\040', '\061', '\012', '\162', '\152',
'\113', '\040', '\151', '\152', '\040', '\061', '\012', '\171',
'\165', '\126', '\040', '\164', '\165', '\040', '\061', '\012',
'\163', '\127', '\153', '\040', '\153', '\165', '\040', '\061',
'\012', '\120', '\147', '\172', '\040', '\163', '\172', '\040',
'\061', '\012', '\152', '\110', '\155', '\040', '\155', '\145',
'\040', '\061', '\012', '\172', '\153', '\125', '\040', '\153',
'\165', '\040', '\061', '\012', '\147', '\166', '\107', '\040',
'\166', '\141', '\040', '\061', '\012', '\150', '\144', '\120',
'\040', '\164', '\150', '\040', '\061', '\012', '\155', '\126',
'\142', '\040', '\155', '\145', '\040', '\061', '\012', '\121',
'\147', '\144', '\040', '\144', '\151', '\040', '\061', '\012',
'\172', '\143', '\132', '\040', '\143', '\150', '\040', '\061',
'\012', '\172', '\161', '\152', '\040', '\151', '\152', '\040',
'\061', '\012', '\172', '\163', '\112', '\040', '\163', '\172',
'\040', '\061', '\012', '\144', '\146', '\116', '\040', '\144',
'\151', '\040', '\061', '\012', '\144', '\147', '\127', '\040',
'\144', '\151', '\040', '\061', '\012', '\167', '\116', '\162',
'\040', '\162', '\151', '\040', '\061', '\012', '\172', '\166',
'\103', '\040', '\166', '\141', '\040', '\061', '\012', '\161',
'\131', '\167', '\040', '\161', '\165', '\040', '\061', '\012',
'\165', '\110', '\171', '\040', '\164', '\165', '\040', '\061',
'\012', '\164', '\116', '\161', '\040', '\164', '\150', '\040',
'\061', '\012', '\154', '\170', '\112', '\040', '\154', '\151',
'\040', '\061', '\012', '\110', '\142', '\153', '\040', '\153',
'\165', '\040', '\061', '\012', '\170', '\163', '\107', '\040',
'\163', '\164', '\040', '\061', '\012', '\166', '\123', '\142',
'\040', '\166', '\141', '\040', '\061', '\012', '\170', '\106',
'\142', '\040', '\142', '\165', '\040', '\061', '\012', '\116',
'\164', '\147', '\040', '\164', '\150', '\040', '\061', '\012',
'\157', '\102', '\152', '\040', '\151', '\152', '\040', '\061',
'\012', '\161', '\153', '\166', '\040', '\161', '\165', '\040',
'\061', '\012', '\142', '\126', '\152', '\040', '\151', '\152',
'\040', '\061', '\012', '\172', '\152', '\124', '\040', '\151',
'\152', '\040', '\061', '\012', '\142', '\166', '\130', '\040',
'\166', '\141', '\040', '\061', '\012', '\157', '\132', '\146',
'\040', '\164', '\157', '\040', '\061', '\012', '\153', '\143',
'\125', '\040', '\153', '\157', '\040', '\061', '\012', '\146',
'\106', '\155', '\040', '\155', '\145', '\040', '\061', '\012',
'\130', '\142', '\152', '\040', '\151', '\152', '\040', '\061',
'\012', '\113', '\161', '\166', '\040', '\166', '\141', '\040',
'\061', '\012', '\122', '\167', '\152', '\040', '\151', '\152',
'\040', '\061', '\012', '\144', '\166', '\112', '\040', '\166',
'\141', '\040', '\061', '\012', '\172', '\156', '\112', '\040',
'\163', '\172', '\040', '\061', '\012', '\161', '\161', '\126',
'\040', '\161', '\165', '\040', '\061', '\012', '\160', '\170',
'\115', '\040', '\160', '\157', '\040', '\061', '\012', '\145',
'\102', '\152', '\040', '\151', '\152', '\040', '\061', '\012',
'\155', '\112', '\170', '\040', '\155', '\145', '\040', '\061',
'\012', '\170', '\156', '\115', '\040', '\156', '\147', '\040',
'\061', '\012', '\141', '\103', '\161', '\040', '\166', '\141',
'\040', '\061', '\012', '\160', '\110', '\152', '\040', '\151',
'\152', '\040', '\061', '\012', '\164', '\146', '\121', '\040',
'\164', '\150', '\040', '\061', '\012', '\167', '\161', '\156',
'\040', '\161', '\165', '\040', '\061', '\012', '\155', '\123',
'\163', '\040', '\151', '\163', '\040', '\061', '\012', '\163',
'\102', '\167', '\040', '\163', '\164', '\040', '\061', '\012',
'\106', '\150', '\156', '\040', '\164', '\150', '\040', '\061',
'\012', '\172', '\116', '\142', '\040', '\163', '\172', '\040',
'\061', '\012', '\115', '\166', '\142', '\040', '\166', '\141',
'\040', '\061', '\012', '\142', '\126', '\164', '\040', '\164',
'\150', '\040', '\061', '\012', '\161', '\110', '\164', '\040',
'\164', '\150', '\040', '\061', '\012', '\161', '\114', '\166',
'\040', '\161', '\165', '\040', '\061', '\012', '\153', '\147',
'\106', '\040', '\156', '\147', '\040', '\061', '\012', '\166',
'\170', '\127', '\040', '\166', '\141', '\040', '\061', '\012',
'\143', '\144', '\131', '\040', '\143', '\150', '\040', '\061',
'\012', '\130', '\162', '\172', '\040', '\163', '\172', '\040',
'\061', '\012', '\105', '\146', '\150', '\040', '\164', '\150',
'\040', '\061', '\012', '\154', '\161', '\111', '\040', '\161',
'\165', '\040', '\061', '\012', '\114', '\172', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\172', '\150', '\130',
'\040', '\164', '\150', '\040', '\061', '\012', '\147', '\150',
'\132', '\040', '\164', '\150', '\040', '\061', '\012', '\154',
'\106', '\147', '\040', '\156', '\147', '\040', '\061', '\012',
'\166', '\126', '\143', '\040', '\166', '\141', '\040', '\061',
'\012', '\154', '\115', '\162', '\040', '\145', '\162', '\040',
'\061', '\012', '\124', '\161', '\152', '\040', '\161', '\165',
'\040', '\061', '\012', '\152', '\101', '\170', '\040', '\151',
'\152', '\040', '\061', '\012', '\151', '\115', '\164', '\040',
'\164', '\150', '\040', '\061', '\012', '\116', '\154', '\166',
'\040', '\166', '\141', '\040', '\061', '\012', '\172', '\142',
'\120', '\040', '\163', '\172', '\040', '\061', '\012', '\153',
'\126', '\170', '\040', '\153', '\141', '\040', '\061', '\012',
'\145', '\121', '\154', '\040', '\164', '\145', '\040', '\061',
'\012', '\163', '\127', '\142', '\040', '\163', '\164', '\040',
'\061', '\012', '\102', '\161', '\171', '\040', '\161', '\165',
'\040', '\061', '\012', '\144', '\130', '\153', '\040', '\153',
'\141', '\040', '\061', '\012', '\166', '\125', '\143', '\040',
'\166', '\141', '\040', '\061', '\012', '\166', '\117', '\142',
'\040', '\166', '\141', '\040', '\061', '\012', '\165', '\110',
'\146', '\040', '\161', '\165', '\040', '\061', '\012', '\161',
'\116', '\162', '\040', '\161', '\165', '\040', '\061', '\012',
'\165', '\106', '\172', '\040', '\161', '\165', '\040', '\061',
'\012', '\115', '\154', '\162', '\040', '\145', '\162', '\040',
'\061', '\012', '\153', '\155', '\132', '\040', '\153', '\141',
'\040', '\061', '\012', '\163', '\122', '\164', '\040', '\164',
'\150', '\040', '\061', '\012', '\127', '\161', '\166', '\040',
'\161', '\165', '\040', '\061', '\012', '\150', '\146', '\113',
'\040', '\164', '\150', '\040', '\061', '\012', '\166', '\170',
'\121', '\040', '\166', '\141', '\040', '\061', '\012', '\154',
'\103', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\146', '\131', '\167', '\040', '\167', '\141', '\040', '\061',
'\012', '\164', '\146', '\123', '\040', '\164', '\150', '\040',
'\061', '\012', '\161', '\144', '\117', '\040', '\161', '\165',
'\040', '\061', '\012', '\144', '\121', '\144', '\040', '\144',
'\145', '\040', '\061', '\012', '\170', '\144', '\130', '\040',
'\144', '\145', '\040', '\061', '\012', '\155', '\116', '\170',
'\040', '\155', '\145', '\040', '\061', '\012', '\153', '\106',
'\172', '\040', '\163', '\172', '\040', '\061', '\012', '\167',
'\152', '\123', '\040', '\151', '\152', '\040', '\061', '\012',
'\171', '\120', '\160', '\040', '\160', '\162', '\040', '\061',
'\012', '\167', '\143', '\127', '\040', '\143', '\150', '\040',
'\061', '\012', '\116', '\152', '\172', '\040', '\163', '\172',
'\040', '\061', '\012', '\144', '\126', '\160', '\040', '\144',
'\145', '\040', '\061', '\012', '\144', '\161', '\104', '\040',
'\161', '\165', '\040', '\061', '\012', '\162', '\112', '\163',
'\040', '\163', '\172', '\040', '\061', '\012', '\170', '\160',
'\110', '\040', '\160', '\157', '\040', '\061', '\012', '\170',
'\161', '\122', '\040', '\161', '\165', '\040', '\061', '\012',
'\147', '\126', '\162', '\040', '\145', '\162', '\040', '\061',
'\012', '\102', '\164', '\161', '\040', '\164', '\150', '\040',
'\061', '\012', '\156', '\155', '\102', '\040', '\156', '\164',
'\040', '\061', '\012', '\172', '\143', '\115', '\040', '\163',
'\172', '\040', '\061', '\012', '\143', '\146', '\107', '\040',
'\143', '\150', '\040', '\061', '\012', '\155', '\146', '\117',
'\040', '\155', '\145', '\040', '\061', '\012', '\131', '\150',
'\143', '\040', '\164', '\150', '\040', '\061', '\012', '\142',
'\132', '\155', '\040', '\155', '\145', '\040', '\061', '\012',
'\155', '\172', '\102', '\040', '\163', '\172', '\040', '\061',
'\012', '\166', '\122', '\167', '\040', '\166', '\141', '\040',
'\061', '\012', '\171', '\104', '\150', '\040', '\164', '\150',
'\040', '\061', '\012', '\132', '\147', '\146', '\040', '\156',
'\147', '\040', '\061', '\012', '\153', '\161', '\124', '\040',
'\161', '\165', '\040', '\061', '\012', '\111', '\165', '\172',
'\040', '\161', '\165', '\040', '\061', '\012', '\162', '\142',
'\127', '\040', '\145', '\162', '\040', '\061', '\012', '\112',
'\155', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\113', '\166', '\152', '\040', '\166', '\141', '\040', '\061',
'\012', '\172', '\143', '\104', '\040', '\143', '\150', '\040',
'\061', '\012', '\170', '\147', '\103', '\040', '\156', '\147',
'\040', '\061', '\012', '\152', '\103', '\170', '\040', '\151',
'\152', '\040', '\061', '\012', '\142', '\127', '\147', '\040',
'\156', '\147', '\040', '\061', '\012', '\171', '\167', '\127',
'\040', '\167', '\141', '\040', '\061', '\012', '\112', '\153',
'\143', '\040', '\143', '\150', '\040', '\061', '\012', '\170',
'\107', '\163', '\040', '\163', '\172', '\040', '\061', '\012',
'\166', '\142', '\110', '\040', '\166', '\141', '\040', '\061',
'\012', '\154', '\124', '\172', '\040', '\163', '\172', '\040',
'\061', '\012', '\145', '\103', '\142', '\040', '\145', '\162',
'\040', '\061', '\012', '\152', '\126', '\166', '\040', '\166',
'\141', '\040', '\061', '\012', '\152', '\104', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\152', '\157', '\121',
'\040', '\160', '\157', '\040', '\061', '\012', '\161', '\164',
'\115', '\040', '\164', '\150', '\040', '\061', '\012', '\122',
'\161', '\153', '\040', '\161', '\165', '\040', '\061', '\012',
'\110', '\166', '\147', '\040', '\166', '\141', '\040', '\061',
'\012', '\165', '\101', '\172', '\040', '\161', '\165', '\040',
'\061', '\012', '\155', '\146', '\127', '\040', '\155', '\145',
'\040', '\061', '\012', '\164', '\147', '\123', '\040', '\164',
'\150', '\040', '\061', '\012', '\143', '\161', '\104', '\040',
'\161', '\165', '\040', '\061', '\012', '\163', '\146', '\131',
'\040', '\163', '\172', '\040', '\061', '\012', '\131', '\150',
'\166', '\040', '\164', '\150', '\040', '\061', '\012', '\165',
'\161', '\115', '\040', '\161', '\165', '\040', '\061', '\012',
'\170', '\160', '\113', '\040', '\160', '\162', '\040', '\061',
'\012', '\112', '\172', '\150', '\040', '\164', '\150', '\040',
'\061', '\012', '\143', '\121', '\153', '\040', '\143', '\150',
'\040', '\061', '\012', '\164', '\152', '\117', '\040', '\164',
'\150', '\040', '\061', '\012', '\161', '\170', '\132', '\040',
'\161', '\165', '\040', '\061', '\012', '\172', '\120', '\166',
'\040', '\163', '\172', '\040', '\061', '\012', '\161', '\116',
'\153', '\040', '\161', '\165', '\040', '\061', '\012', '\154',
'\166', '\121', '\040', '\166', '\141', '\040', '\061', '\012',
'\153', '\107', '\167', '\040', '\153', '\141', '\040', '\061',
'\012', '\170', '\165', '\104', '\040', '\161', '\165', '\040',
'\061', '\012', '\112', '\166', '\171', '\040', '\166', '\141',
'\040', '\061', '\012', '\152', '\131', '\145', '\040', '\164',
'\145', '\040', '\061', '\012', '\146', '\132', '\165', '\040',
'\161', '\165', '\040', '\061', '\012', '\161', '\131', '\157',
'\040', '\161', '\165', '\040', '\061', '\012', '\166', '\150',
'\111', '\040', '\164', '\150', '\040', '\061', '\012', '\146',
'\170', '\131', '\040', '\146', '\157', '\040', '\061', '\012',
'\171', '\120', '\146', '\040', '\146', '\157', '\040', '\061',
'\012', '\146', '\107', '\152', '\040', '\151', '\152', '\040',
'\061', '\012', '\144', '\155', '\124', '\040', '\155', '\145',
'\040', '\061', '\012', '\166', '\146', '\130', '\040', '\166',
'\141', '\040', '\061', '\012', '\170', '\121', '\164', '\040',
'\164', '\150', '\040', '\061', '\012', '\143', '\170', '\123',
'\040', '\143', '\150', '\040', '\061', '\012', '\166', '\172',
'\101', '\040', '\166', '\141', '\040', '\061', '\012', '\161',
'\141', '\101', '\040', '\161', '\165', '\040', '\061', '\012',
'\112', '\142', '\170', '\040', '\142', '\145', '\040', '\061',
'\012', '\153', '\126', '\144', '\040', '\153', '\141', '\040',
'\061', '\012', '\130', '\152', '\166', '\040', '\166', '\141',
'\040', '\061', '\012', '\150', '\153', '\111', '\040', '\164',
'\150', '\040', '\061', '\012', '\166', '\121', '\165', '\040',
'\161', '\165', '\040', '\061', '\012', '\166', '\150', '\113',
'\040', '\164', '\150', '\040', '\061', '\012', '\104', '\166',
'\152', '\040', '\166', '\141', '\040', '\061', '\012', '\126',
'\142', '\155', '\040', '\155', '\145', '\040', '\061', '\012',
'\146', '\160', '\116', '\040', '\160', '\162', '\040', '\061',
'\012', '\160', '\153', '\107', '\040', '\153', '\141', '\040',
'\061', '\012', '\142', '\114', '\143', '\040', '\143', '\150',
'\040', '\061', '\012', '\164', '\112', '\143', '\040', '\164',
'\150', '\040', '\061', '\012', '\167', '\167', '\112', '\040',
'\167', '\141', '\040', '\061', '\012', '\132', '\162', '\167',
'\040', '\145', '\162', '\040', '\061', '\012', '\167', '\144',
'\127', '\040', '\144', '\145', '\040', '\061', '\012', '\127',
'\147', '\146', '\040', '\156', '\147', '\040', '\061', '\012',
'\120', '\161', '\172', '\040', '\161', '\165', '\040', '\061',
'\012', '\167', '\147', '\116', '\040', '\156', '\147', '\040',
'\061', '\012', '\172', '\110', '\164', '\040', '\164', '\150',
'\040', '\061', '\012', '\170', '\124', '\154', '\040', '\154',
'\145', '\040', '\061', '\012', '\104', '\166', '\164', '\040',
'\164', '\150', '\040', '\061', '\012', '\167', '\155', '\125',
'\040', '\155', '\145', '\040', '\061', '\012', '\170', '\150',
'\155', '\040', '\164', '\150', '\040', '\061', '\012', '\150',
'\103', '\170', '\040', '\164', '\150', '\040', '\061', '\012',
'\166', '\167', '\126', '\040', '\166', '\141', '\040', '\061',
'\012', '\172', '\166', '\114', '\040', '\166', '\141', '\040',
'\061', '\012', '\156', '\107', '\146', '\040', '\156', '\164',
'\040', '\061', '\012', '\152', '\152', '\103', '\040', '\151',
'\152', '\040', '\061', '\012', '\125', '\143', '\147', '\040',
'\143', '\150', '\040', '\061', '\012', '\160', '\127', '\146',
'\040', '\160', '\162', '\040', '\061', '\012', '\152', '\170',
'\107', '\040', '\151', '\152', '\040', '\061', '\012', '\115',
'\161', '\156', '\040', '\161', '\165', '\040', '\061', '\012',
'\171', '\166', '\127', '\040', '\166', '\141', '\040', '\061',
'\012', '\154', '\127', '\153', '\040', '\153', '\141', '\040',
'\061', '\012', '\155', '\144', '\117', '\040', '\155', '\145',
'\040', '\061', '\012', '\161', '\116', '\155', '\040', '\161',
'\165', '\040', '\061', '\012', '\122', '\167', '\147', '\040',
'\156', '\147', '\040', '\061', '\012', '\170', '\146', '\166',
'\040', '\166', '\141', '\040', '\061', '\012', '\165', '\117',
'\167', '\040', '\161', '\165', '\040', '\061', '\012', '\170',
'\150', '\132', '\040', '\164', '\150', '\040', '\061', '\012',
'\152', '\114', '\162', '\040', '\145', '\162', '\040', '\061',
'\012', '\146', '\102', '\171', '\040', '\146', '\157', '\040',
'\061', '\012', '\156', '\125', '\152', '\040', '\156', '\164',
'\040', '\061', '\012', '\154', '\124', '\147', '\040', '\156',
'\147', '\040', '\061', '\012', '\152', '\154', '\120', '\040',
'\151', '\152', '\040', '\061', '\012', '\167', '\162', '\122',
'\040', '\145', '\162', '\040', '\061', '\012', '\162', '\130',
'\167', '\040', '\145', '\162', '\040', '\061', '\012', '\145',
'\126', '\167', '\040', '\166', '\145', '\040', '\061', '\012',
'\172', '\127', '\156', '\040', '\156', '\147', '\040', '\061',
'\012', '\155', '\112', '\163', '\040', '\163', '\172', '\040',
'\061', '\012', '\115', '\147', '\171', '\040', '\156', '\147',
'\040', '\061', '\012', '\165', '\132', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\124', '\144', '\147', '\040',
'\156', '\147', '\040', '\061', '\012', '\155', '\161', '\111',
'\040', '\161', '\165', '\040', '\061', '\012', '\104', '\150',
'\160', '\040', '\164', '\150', '\040', '\061', '\012', '\160',
'\155', '\113', '\040', '\155', '\145', '\040', '\061', '\012',
'\123', '\163', '\146', '\040', '\163', '\172', '\040', '\061',
'\012', '\163', '\127', '\154', '\040', '\163', '\172', '\040',
'\061', '\012', '\151', '\161', '\113', '\040', '\161', '\165',
'\040', '\061', '\012', '\147', '\152', '\107', '\040', '\156',
'\147', '\040', '\061', '\012', '\144', '\152', '\102', '\040',
'\151', '\152', '\040', '\061', '\012', '\167', '\113', '\166',
'\040', '\166', '\141', '\040', '\061', '\012', '\167', '\166',
'\111', '\040', '\166', '\141', '\040', '\061', '\012', '\164',
'\143', '\125', '\040', '\164', '\150', '\040', '\061', '\012',
'\164', '\153', '\107', '\040', '\164', '\150', '\040', '\061',
'\012', '\172', '\125', '\145', '\040', '\164', '\145', '\040',
'\061', '\012', '\154', '\125', '\150', '\040', '\164', '\150',
'\040', '\061', '\012', '\156', '\102', '\147', '\040', '\156',
'\164', '\040', '\061', '\012', '\144', '\110', '\170', '\040',
'\144', '\145', '\040', '\061', '\012', '\127', '\142', '\172',
'\040', '\163', '\172', '\040', '\061', '\012', '\166', '\165',
'\121', '\040', '\161', '\165', '\040', '\061', '\012', '\110',
'\160', '\154', '\040', '\154', '\145', '\040', '\061', '\012',
'\157', '\126', '\152', '\040', '\151', '\152', '\040', '\061',
'\012', '\166', '\102', '\142', '\040', '\166', '\141', '\040',
'\061', '\012', '\124', '\144', '\172', '\040', '\163', '\172',
'\040', '\061', '\012', '\160', '\146', '\126', '\040', '\160',
'\162', '\040', '\061', '\012', '\161', '\147', '\116', '\040',
'\161', '\165', '\040', '\061', '\012', '\160', '\143', '\125',
'\040', '\143', '\150', '\040', '\061', '\012', '\147', '\143',
'\116', '\040', '\143', '\150', '\040', '\061', '\012', '\166',
'\153', '\101', '\040', '\166', '\141', '\040', '\061', '\012',
'\143', '\121', '\146', '\040', '\143', '\150', '\040', '\061',
'\012', '\131', '\172', '\170', '\040', '\163', '\172', '\040',
'\061', '\012', '\171', '\160', '\106', '\040', '\160', '\162',
'\040', '\061', '\012', '\166', '\102', '\167', '\040', '\166',
'\141', '\040', '\061', '\012', '\160', '\120', '\144', '\040',
'\144', '\145', '\040', '\061', '\012', '\161', '\155', '\125',
'\040', '\161', '\165', '\040', '\061', '\012', '\145', '\127',
'\146', '\040', '\166', '\145', '\040', '\061', '\012', '\152',
'\132', '\162', '\040', '\145', '\162', '\040', '\061', '\012',
'\110', '\167', '\154', '\040', '\154', '\145', '\040', '\061',
'\012', '\171', '\171', '\111', '\040', '\156', '\171', '\040',
'\061', '\012', '\132', '\146', '\150', '\040', '\164', '\150',
'\040', '\061', '\012', '\114', '\147', '\167', '\040', '\156',
'\147', '\040', '\061', '\012', '\165', '\161', '\160', '\040',
'\161', '\165', '\040', '\061', '\012', '\170', '\117', '\152',
'\040', '\151', '\152', '\040', '\061', '\012', '\144', '\153',
'\112', '\040', '\153', '\157', '\040', '\061', '\012', '\144',
'\161', '\115', '\040', '\161', '\165', '\040', '\061', '\012',
'\163', '\142', '\127', '\040', '\151', '\163', '\040', '\061',
'\012', '\172', '\115', '\160', '\040', '\163', '\172', '\040',
'\061', '\012', '\156', '\112', '\172', '\040', '\156', '\147',
'\040', '\061', '\012', '\153', '\115', '\143', '\040', '\153',
'\157', '\040', '\061', '\012', '\172', '\161', '\127', '\040',
'\161', '\165', '\040', '\061', '\012', '\166', '\121', '\153',
'\040', '\166', '\141', '\040', '\061', '\012', '\145', '\161',
'\104', '\040', '\161', '\165', '\040', '\061', '\012', '\150',
'\106', '\156', '\040', '\164', '\150', '\040', '\061', '\012',
'\166', '\143', '\132', '\040', '\143', '\150', '\040', '\061',
'\012', '\170', '\107', '\153', '\040', '\153', '\141', '\040',
'\061', '\012', '\153', '\172', '\146', '\040', '\163', '\172',
'\040', '\061', '\012', '\170', '\132', '\170', '\040', '\170',
'\145', '\040', '\061', '\012', '\161', '\166', '\116', '\040',
'\161', '\165', '\040', '\061', '\012', '\171', '\153', '\131',
'\040', '\153', '\141', '\040', '\061', '\012', '\142', '\162',
'\110', '\040', '\145', '\162', '\040', '\061', '\012', '\127',
'\162', '\150', '\040', '\164', '\150', '\040', '\061', '\012',
'\167', '\152', '\105', '\040', '\151', '\152', '\040', '\061',
'\012', '\153', '\152', '\121', '\040', '\153', '\141', '\040',
'\061', '\012', '\146', '\114', '\152', '\040', '\151', '\152',
'\040', '\061', '\012', '\155', '\147', '\105', '\040', '\156',
'\147', '\040', '\061', '\012', '\170', '\167', '\111', '\040',
'\167', '\141', '\040', '\061', '\012', '\151', '\104', '\167',
'\040', '\164', '\151', '\040', '\061', '\012', '\102', '\164',
'\170', '\040', '\164', '\150', '\040', '\061', '\012', '\166',
'\120', '\172', '\040', '\166', '\141', '\040', '\061', '\012',
'\171', '\161', '\110', '\040', '\161', '\165', '\040', '\061',
'\012', '\167', '\106', '\145', '\040', '\145', '\162', '\040',
'\061', '\012', '\154', '\121', '\171', '\040', '\154', '\145',
'\040', '\061', '\012', '\147', '\102', '\160', '\040', '\156',
'\147', '\040', '\061', '\012', '\152', '\144', '\131', '\040',
'\144', '\145', '\040', '\061', '\012', '\164', '\166', '\121',
'\040', '\164', '\150', '\040', '\061', '\012', '\154', '\152',
'\117', '\040', '\154', '\145', '\040', '\061', '\012', '\116',
'\163', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\170', '\144', '\117', '\040', '\144', '\145', '\040', '\061',
'\012', '\147', '\172', '\127', '\040', '\156', '\147', '\040',
'\061', '\012', '\167', '\164', '\115', '\040', '\164', '\150',
'\040', '\061', '\012', '\161', '\146', '\122', '\040', '\161',
'\165', '\040', '\061', '\012', '\152', '\132', '\150', '\040',
'\164', '\150', '\040', '\061', '\012', '\127', '\143', '\142',
'\040', '\143', '\150', '\040', '\061', '\012', '\144', '\166',
'\121', '\040', '\166', '\141', '\040', '\061', '\012', '\152',
'\110', '\142', '\040', '\151', '\152', '\040', '\061', '\012',
'\170', '\142', '\115', '\040', '\142', '\145', '\040', '\061',
'\012', '\156', '\127', '\147', '\040', '\156', '\164', '\040',
'\061', '\012', '\131', '\167', '\152', '\040', '\151', '\152',
'\040', '\061', '\012', '\130', '\167', '\152', '\040', '\151',
'\152', '\040', '\061', '\012', '\160', '\170', '\113', '\040',
'\160', '\162', '\040', '\061', '\012', '\171', '\142', '\121',
'\040', '\142', '\145', '\040', '\061', '\012', '\127', '\166',
'\155', '\040', '\166', '\141', '\040', '\061', '\012', '\114',
'\147', '\172', '\040', '\156', '\147', '\040', '\061', '\012',
'\142', '\164', '\123', '\040', '\164', '\150', '\040', '\061',
'\012', '\152', '\122', '\154', '\040', '\154', '\145', '\040',
'\061', '\012', '\161', '\161', '\112', '\040', '\161', '\165',
'\040', '\061', '\012', '\103', '\156', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\106', '\155', '\167', '\040',
'\155', '\145', '\040', '\061', '\012', '\144', '\166', '\120',
'\040', '\166', '\141', '\040', '\061', '\012', '\166', '\161',
'\102', '\040', '\161', '\165', '\040', '\061', '\012', '\144',
'\152', '\111', '\040', '\144', '\145', '\040', '\061', '\012',
'\152', '\126', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\146', '\166', '\132', '\040', '\166', '\141', '\040',
'\061', '\012', '\103', '\167', '\164', '\040', '\164', '\150',
'\040', '\061', '\012', '\125', '\171', '\142', '\040', '\142',
'\145', '\040', '\061', '\012', '\106', '\146', '\143', '\040',
'\143', '\150', '\040', '\061', '\012', '\163', '\157', '\130',
'\040', '\163', '\172', '\040', '\061', '\012', '\161', '\150',
'\122', '\040', '\164', '\150', '\040', '\061', '\012', '\146',
'\127', '\172', '\040', '\163', '\172', '\040', '\061', '\012',
'\166', '\162', '\130', '\040', '\166', '\141', '\040', '\061',
'\012', '\145', '\117', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\142', '\167', '\132', '\040', '\142', '\145',
'\040', '\061', '\012', '\144', '\156', '\126', '\040', '\156',
'\147', '\040', '\061', '\012', '\107', '\142', '\167', '\040',
'\142', '\145', '\040', '\061', '\012', '\170', '\107', '\144',
'\040', '\144', '\145', '\040', '\061', '\012', '\155', '\156',
'\132', '\040', '\156', '\147', '\040', '\061', '\012', '\142',
'\160', '\116', '\040', '\160', '\162', '\040', '\061', '\012',
'\144', '\172', '\130', '\040', '\144', '\145', '\040', '\061',
'\012', '\102', '\170', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\172', '\160', '\170', '\040', '\163', '\172',
'\040', '\061', '\012', '\144', '\161', '\132', '\040', '\161',
'\165', '\040', '\061', '\012', '\170', '\124', '\146', '\040',
'\146', '\157', '\040', '\061', '\012', '\167', '\120', '\166',
'\040', '\166', '\141', '\040', '\061', '\012', '\143', '\170',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\150',
'\144', '\124', '\040', '\164', '\150', '\040', '\061', '\012',
'\171', '\167', '\130', '\040', '\167', '\141', '\040', '\061',
'\012', '\125', '\166', '\166', '\040', '\166', '\141', '\040',
'\061', '\012', '\162', '\113', '\160', '\040', '\145', '\162',
'\040', '\061', '\012', '\163', '\144', '\106', '\040', '\144',
'\145', '\040', '\061', '\012', '\112', '\143', '\147', '\040',
'\143', '\150', '\040', '\061', '\012', '\170', '\172', '\117',
'\040', '\163', '\172', '\040', '\061', '\012', '\170', '\124',
'\164', '\040', '\164', '\150', '\040', '\061', '\012', '\144',
'\152', '\120', '\040', '\144', '\145', '\040', '\061', '\012',
'\147', '\124', '\156', '\040', '\156', '\147', '\040', '\061',
'\012', '\107', '\164', '\160', '\040', '\164', '\150', '\040',
'\061', '\012', '\170', '\147', '\101', '\040', '\156', '\147',
'\040', '\061', '\012', '\142', '\144', '\114', '\040', '\144',
'\145', '\040', '\061', '\012', '\167', '\172', '\117', '\040',
'\163', '\172', '\040', '\061', '\012', '\146', '\150', '\111',
'\040', '\164', '\150', '\040', '\061', '\012', '\127', '\155',
'\160', '\040', '\155', '\145', '\040', '\061', '\012', '\121',
'\144', '\164', '\040', '\164', '\150', '\040', '\061', '\012',
'\165', '\131', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\160', '\142', '\112', '\040', '\160', '\162', '\040',
'\061', '\012', '\152', '\122', '\144', '\040', '\144', '\145',
'\040', '\061', '\012', '\130', '\163', '\170', '\040', '\163',
'\172', '\040', '\061', '\012', '\172', '\147', '\111', '\040',
'\156', '\147', '\040', '\061', '\012', '\161', '\150', '\131',
'\040', '\164', '\150', '\040', '\061', '\012', '\107', '\147',
'\152', '\040', '\156', '\147', '\040', '\061', '\012', '\106',
'\152', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\121', '\167', '\153', '\040', '\153', '\141', '\040', '\061',
'\012', '\172', '\170', '\127', '\040', '\163', '\172', '\040',
'\061', '\012', '\166', '\103', '\143', '\040', '\143', '\150',
'\040', '\061', '\012', '\143', '\143', '\114', '\040', '\143',
'\150', '\040', '\061', '\012', '\113', '\170', '\163', '\040',
'\163', '\172', '\040', '\061', '\012', '\155', '\131', '\162',
'\040', '\145', '\162', '\040', '\061', '\012', '\162', '\121',
'\164', '\040', '\145', '\162', '\040', '\061', '\012', '\132',
'\170', '\163', '\040', '\163', '\172', '\040', '\061', '\012',
'\150', '\144', '\121', '\040', '\164', '\150', '\040', '\061',
'\012', '\144', '\167', '\110', '\040', '\144', '\145', '\040',
'\061', '\012', '\131', '\155', '\154', '\040', '\154', '\145',
'\040', '\061', '\012', '\161', '\126', '\172', '\040', '\161',
'\165', '\040', '\061', '\012', '\122', '\166', '\154', '\040',
'\166', '\141', '\040', '\061', '\012', '\171', '\110', '\153',
'\040', '\153', '\141', '\040', '\061', '\012', '\127', '\152',
'\164', '\040', '\164', '\150', '\040', '\061', '\012', '\150',
'\115', '\167', '\040', '\164', '\150', '\040', '\061', '\012',
'\160', '\172', '\125', '\040', '\163', '\172', '\040', '\061',
'\012', '\147', '\143', '\114', '\040', '\143', '\150', '\040',
'\061', '\012', '\161', '\117', '\141', '\040', '\161', '\165',
'\040', '\061', '\012', '\145', '\161', '\111', '\040', '\161',
'\165', '\040', '\061', '\012', '\151', '\131', '\160', '\040',
'\164', '\151', '\040', '\061', '\012', '\166', '\103', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\165', '\157',
'\126', '\040', '\162', '\157', '\040', '\061', '\012', '\146',
'\132', '\170', '\040', '\146', '\157', '\040', '\061', '\012',
'\161', '\121', '\144', '\040', '\161', '\165', '\040', '\061',
'\012', '\161', '\144', '\105', '\040', '\161', '\165', '\040',
'\061', '\012', '\161', '\127', '\170', '\040', '\161', '\165',
'\040', '\061', '\012', '\131', '\153', '\152', '\040', '\151',
'\152', '\040', '\061', '\012', '\106', '\160', '\152', '\040',
'\151', '\152', '\040', '\061', '\012', '\172', '\107', '\166',
'\040', '\166', '\141', '\040', '\061', '\012', '\162', '\167',
'\117', '\040', '\145', '\162', '\040', '\061', '\012', '\121',
'\172', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\113', '\161', '\142', '\040', '\161', '\165', '\040', '\061',
'\012', '\172', '\147', '\124', '\040', '\156', '\147', '\040',
'\061', '\012', '\152', '\163', '\132', '\040', '\163', '\172',
'\040', '\061', '\012', '\141', '\110', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\171', '\152', '\114', '\040',
'\151', '\152', '\040', '\061', '\012', '\131', '\143', '\167',
'\040', '\143', '\150', '\040', '\061', '\012', '\142', '\156',
'\120', '\040', '\141', '\156', '\040', '\061', '\012', '\166',
'\127', '\156', '\040', '\141', '\156', '\040', '\061', '\012',
'\172', '\171', '\131', '\040', '\163', '\172', '\040', '\061',
'\012', '\172', '\122', '\163', '\040', '\163', '\164', '\040',
'\061', '\012', '\167', '\165', '\120', '\040', '\161', '\165',
'\040', '\061', '\012', '\166', '\152', '\102', '\040', '\166',
'\141', '\040', '\061', '\012', '\152', '\162', '\124', '\040',
'\145', '\162', '\040', '\061', '\012', '\166', '\167', '\112',
'\040', '\166', '\141', '\040', '\061', '\012', '\144', '\126',
'\152', '\040', '\144', '\145', '\040', '\061', '\012', '\172',
'\166', '\127', '\040', '\166', '\141', '\040', '\061', '\012',
'\144', '\132', '\153', '\040', '\144', '\145', '\040', '\061',
'\012', '\156', '\162', '\107', '\040', '\141', '\156', '\040',
'\061', '\012', '\161', '\163', '\125', '\040', '\161', '\165',
'\040', '\061', '\012', '\120', '\166', '\163', '\040', '\166',
'\141', '\040', '\061', '\012', '\154', '\114', '\150', '\040',
'\164', '\150', '\040', '\061', '\012', '\161', '\103', '\172',
'\040', '\161', '\165', '\040', '\061', '\012', '\144', '\166',
'\126', '\040', '\144', '\145', '\040', '\061', '\012', '\120',
'\152', '\167', '\040', '\151', '\152', '\040', '\061', '\012',
'\113', '\155', '\152', '\040', '\151', '\152', '\040', '\061',
'\012', '\112', '\146', '\150', '\040', '\164', '\150', '\040',
'\061', '\012', '\156', '\167', '\131', '\040', '\141', '\156',
'\040', '\061', '\012', '\147', '\167', '\103', '\040', '\156',
'\147', '\040', '\061', '\012', '\166', '\107', '\142', '\040',
'\166', '\141', '\040', '\061', '\012', '\161', '\127', '\162',
'\040', '\161', '\165', '\040', '\061', '\012', '\161', '\160',
'\127', '\040', '\161', '\165', '\040', '\061', '\012', '\144',
'\113', '\153', '\040', '\144', '\145', '\040', '\061', '\012',
'\171', '\127', '\142', '\040', '\142', '\145', '\040', '\061',
'\012', '\152', '\155', '\116', '\040', '\151', '\152', '\040',
'\061', '\012', '\147', '\160', '\126', '\040', '\156', '\147',
'\040', '\061', '\012', '\161', '\172', '\123', '\040', '\161',
'\165', '\040', '\061', '\012', '\157', '\132', '\150', '\040',
'\164', '\150', '\040', '\061', '\012', '\121', '\155', '\164',
'\040', '\164', '\150', '\040', '\061', '\012', '\155', '\116',
'\153', '\040', '\155', '\145', '\040', '\061', '\012', '\171',
'\160', '\115', '\040', '\160', '\162', '\040', '\061', '\012',
'\154', '\167', '\110', '\040', '\154', '\145', '\040', '\061',
'\012', '\172', '\110', '\163', '\040', '\163', '\172', '\040',
'\061', '\012', '\152', '\172', '\103', '\040', '\152', '\157',
'\040', '\061', '\012', '\157', '\112', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\114', '\161', '\150', '\040',
'\164', '\150', '\040', '\061', '\012', '\150', '\130', '\147',
'\040', '\164', '\150', '\040', '\061', '\012', '\170', '\105',
'\146', '\040', '\146', '\157', '\040', '\061', '\012', '\165',
'\127', '\170', '\040', '\161', '\165', '\040', '\061', '\012',
'\153', '\166', '\124', '\040', '\166', '\141', '\040', '\061',
'\012', '\172', '\163', '\107', '\040', '\163', '\172', '\040',
'\061', '\012', '\154', '\123', '\170', '\040', '\154', '\145',
'\040', '\061', '\012', '\161', '\113', '\142', '\040', '\161',
'\165', '\040', '\061', '\012', '\121', '\171', '\145', '\040',
'\144', '\145', '\040', '\061', '\012', '\170', '\110', '\153',
'\040', '\153', '\141', '\040', '\061', '\012', '\103', '\167',
'\160', '\040', '\160', '\162', '\040', '\061', '\012', '\172',
'\155', '\112', '\040', '\163', '\172', '\040', '\061', '\012',
'\170', '\165', '\114', '\040', '\161', '\165', '\040', '\061',
'\012', '\142', '\144', '\110', '\040', '\144', '\145', '\040',
'\061', '\012', '\120', '\142', '\167', '\040', '\167', '\141',
'\040', '\061', '\012', '\161', '\144', '\130', '\040', '\161',
'\165', '\040', '\061', '\012', '\154', '\126', '\143', '\040',
'\143', '\150', '\040', '\061', '\012', '\142', '\161', '\114',
'\040', '\161', '\165', '\040', '\061', '\012', '\167', '\116',
'\163', '\040', '\163', '\172', '\040', '\061', '\012', '\166',
'\172', '\116', '\040', '\166', '\141', '\040', '\061', '\012',
'\161', '\152', '\101', '\040', '\161', '\165', '\040', '\061',
'\012', '\132', '\150', '\146', '\040', '\164', '\150', '\040',
'\061', '\012', '\171', '\160', '\112', '\040', '\160', '\162',
'\040', '\061', '\012', '\170', '\115', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\142', '\124', '\153', '\040',
'\153', '\141', '\040', '\061', '\012', '\164', '\114', '\146',
'\040', '\164', '\150', '\040', '\061', '\012', '\170', '\147',
'\122', '\040', '\156', '\147', '\040', '\061', '\012', '\153',
'\121', '\172', '\040', '\163', '\172', '\040', '\061', '\012',
'\122', '\152', '\160', '\040', '\151', '\152', '\040', '\061',
'\012', '\170', '\150', '\107', '\040', '\164', '\150', '\040',
'\061', '\012', '\142', '\103', '\143', '\040', '\143', '\150',
'\040', '\061', '\012', '\150', '\142', '\106', '\040', '\164',
'\150', '\040', '\061', '\012', '\162', '\170', '\121', '\040',
'\145', '\162', '\040', '\061', '\012', '\161', '\126', '\160',
'\040', '\161', '\165', '\040', '\061', '\012', '\142', '\153',
'\131', '\040', '\153', '\141', '\040', '\061', '\012', '\161',
'\120', '\154', '\040', '\161', '\165', '\040', '\061', '\012',
'\152', '\121', '\153', '\040', '\151', '\152', '\040', '\061',
'\012', '\117', '\166', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\163', '\126', '\166', '\040', '\166', '\141',
'\040', '\061', '\012', '\160', '\155', '\125', '\040', '\155',
'\145', '\040', '\061', '\012', '\165', '\106', '\166', '\040',
'\161', '\165', '\040', '\061', '\012', '\170', '\141', '\132',
'\040', '\166', '\141', '\040', '\061', '\012', '\147', '\107',
'\156', '\040', '\141', '\156', '\040', '\061', '\012', '\160',
'\147', '\111', '\040', '\156', '\147', '\040', '\061', '\012',
'\172', '\124', '\152', '\040', '\163', '\172', '\040', '\061',
'\012', '\154', '\166', '\103', '\040', '\166', '\141', '\040',
'\061', '\012', '\167', '\107', '\166', '\040', '\166', '\141',
'\040', '\061', '\012', '\162', '\116', '\166', '\040', '\166',
'\141', '\040', '\061', '\012', '\121', '\164', '\161', '\040',
'\164', '\150', '\040', '\061', '\012', '\166', '\116', '\150',
'\040', '\164', '\150', '\040', '\061', '\012', '\154', '\120',
'\166', '\040', '\166', '\141', '\040', '\061', '\012', '\112',
'\144', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\130', '\144', '\152', '\040', '\144', '\145', '\040', '\061',
'\012', '\171', '\161', '\153', '\040', '\161', '\165', '\040',
'\061', '\012', '\151', '\167', '\131', '\040', '\164', '\151',
'\040', '\061', '\012', '\116', '\155', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\146', '\124', '\160', '\040',
'\160', '\162', '\040', '\061', '\012', '\161', '\172', '\121',
'\040', '\161', '\165', '\040', '\061', '\012', '\160', '\152',
'\101', '\040', '\151', '\152', '\040', '\061', '\012', '\160',
'\166', '\110', '\040', '\166', '\141', '\040', '\061', '\012',
'\170', '\114', '\152', '\040', '\151', '\152', '\040', '\061',
'\012', '\161', '\127', '\150', '\040', '\164', '\150', '\040',
'\061', '\012', '\166', '\126', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\147', '\121', '\144', '\040', '\144',
'\145', '\040', '\061', '\012', '\163', '\166', '\131', '\040',
'\166', '\141', '\040', '\061', '\012', '\146', '\114', '\146',
'\040', '\146', '\157', '\040', '\061', '\012', '\161', '\172',
'\102', '\040', '\161', '\165', '\040', '\061', '\012', '\104',
'\170', '\147', '\040', '\156', '\147', '\040', '\061', '\012',
'\165', '\172', '\131', '\040', '\161', '\165', '\040', '\061',
'\012', '\147', '\126', '\172', '\040', '\163', '\172', '\040',
'\061', '\012', '\150', '\132', '\142', '\040', '\164', '\150',
'\040', '\061', '\012', '\107', '\160', '\170', '\040', '\160',
'\162', '\040', '\061', '\012', '\170', '\161', '\150', '\040',
'\164', '\150', '\040', '\061', '\012', '\147', '\143', '\130',
'\040', '\143', '\150', '\040', '\061', '\012', '\110', '\170',
'\144', '\040', '\144', '\145', '\040', '\061', '\012', '\164',
'\125', '\161', '\040', '\164', '\150', '\040', '\061', '\012',
'\142', '\113', '\160', '\040', '\160', '\162', '\040', '\061',
'\012', '\151', '\107', '\170', '\040', '\164', '\151', '\040',
'\061', '\012', '\170', '\166', '\121', '\040', '\166', '\141',
'\040', '\061', '\012', '\154', '\170', '\101', '\040', '\154',
'\145', '\040', '\061', '\012', '\163', '\152', '\110', '\040',
'\163', '\164', '\040', '\061', '\012', '\107', '\161', '\157',
'\040', '\161', '\165', '\040', '\061', '\012', '\144', '\147',
'\121', '\040', '\144', '\145', '\040', '\061', '\012', '\171',
'\104', '\153', '\040', '\153', '\141', '\040', '\061', '\012',
'\132', '\156', '\166', '\040', '\166', '\141', '\040', '\061',
'\012', '\166', '\146', '\125', '\040', '\166', '\141', '\040',
'\061', '\012', '\166', '\165', '\104', '\040', '\161', '\165',
'\040', '\061', '\012', '\157', '\121', '\152', '\040', '\151',
'\152', '\040', '\061', '\012', '\142', '\150', '\104', '\040',
'\164', '\150', '\040', '\061', '\012', '\161', '\114', '\152',
'\040', '\161', '\165', '\040', '\061', '\012', '\155', '\144',
'\131', '\040', '\144', '\145', '\040', '\061', '\012', '\162',
'\132', '\142', '\040', '\145', '\162', '\040', '\061', '\012',
'\153', '\104', '\166', '\040', '\166', '\141', '\040', '\061',
'\012', '\146', '\163', '\113', '\040', '\163', '\172', '\040',
'\061', '\012', '\113', '\161', '\146', '\040', '\161', '\165',
'\040', '\061', '\012', '\171', '\127', '\154', '\040', '\154',
'\145', '\040', '\061', '\012', '\155', '\126', '\167', '\040',
'\155', '\145', '\040', '\061', '\012', '\155', '\143', '\126',
'\040', '\143', '\150', '\040', '\061', '\012', '\164', '\104',
'\146', '\040', '\164', '\150', '\040', '\061', '\012', '\154',
'\101', '\157', '\040', '\154', '\145', '\040', '\061', '\012',
'\146', '\172', '\122', '\040', '\163', '\172', '\040', '\061',
'\012', '\130', '\162', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\152', '\162', '\132', '\040', '\145', '\162',
'\040', '\061', '\012', '\161', '\155', '\116', '\040', '\161',
'\165', '\040', '\061', '\012', '\112', '\156', '\160', '\040',
'\141', '\156', '\040', '\061', '\012', '\152', '\150', '\103',
'\040', '\164', '\150', '\040', '\061', '\012', '\153', '\161',
'\122', '\040', '\161', '\165', '\040', '\061', '\012', '\144',
'\127', '\156', '\040', '\144', '\145', '\040', '\061', '\012',
'\127', '\155', '\167', '\040', '\155', '\145', '\040', '\061',
'\012', '\122', '\147', '\171', '\040', '\156', '\147', '\040',
'\061', '\012', '\165', '\166', '\116', '\040', '\161', '\165',
'\040', '\061', '\012', '\152', '\151', '\131', '\040', '\164',
'\151', '\040', '\061', '\012', '\170', '\127', '\143', '\040',
'\143', '\150', '\040', '\061', '\012', '\171', '\112', '\162',
'\040', '\145', '\162', '\040', '\061', '\012', '\157', '\110',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\171',
'\166', '\167', '\040', '\166', '\141', '\040', '\061', '\012',
'\131', '\144', '\156', '\040', '\144', '\145', '\040', '\061',
'\012', '\116', '\166', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\107', '\155', '\166', '\040', '\166', '\141',
'\040', '\061', '\012', '\170', '\170', '\132', '\040', '\170',
'\145', '\040', '\061', '\012', '\130', '\144', '\146', '\040',
'\144', '\145', '\040', '\061', '\012', '\170', '\131', '\150',
'\040', '\164', '\150', '\040', '\061', '\012', '\126', '\156',
'\166', '\040', '\141', '\156', '\040', '\061', '\012', '\152',
'\116', '\172', '\040', '\163', '\172', '\040', '\061', '\012',
'\127', '\156', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\130', '\167', '\153', '\040', '\153', '\141', '\040',
'\061', '\012', '\161', '\127', '\172', '\040', '\161', '\165',
'\040', '\061', '\012', '\155', '\121', '\163', '\040', '\163',
'\172', '\040', '\061', '\012', '\126', '\170', '\142', '\040',
'\142', '\145', '\040', '\061', '\012', '\170', '\167', '\107',
'\040', '\167', '\141', '\040', '\061', '\012', '\167', '\166',
'\160', '\040', '\166', '\141', '\040', '\061', '\012', '\147',
'\155', '\126', '\040', '\156', '\147', '\040', '\061', '\012',
'\122', '\172', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\103', '\160', '\167', '\040', '\160', '\162', '\040',
'\061', '\012', '\107', '\171', '\171', '\040', '\156', '\171',
'\040', '\061', '\012', '\170', '\172', '\101', '\040', '\163',
'\172', '\040', '\061', '\012', '\167', '\107', '\170', '\040',
'\167', '\141', '\040', '\061', '\012', '\142', '\161', '\123',
'\040', '\161', '\165', '\040', '\061', '\012', '\167', '\150',
'\122', '\040', '\164', '\150', '\040', '\061', '\012', '\152',
'\120', '\143', '\040', '\143', '\150', '\040', '\061', '\012',
'\151', '\161', '\107', '\040', '\161', '\165', '\040', '\061',
'\012', '\144', '\152', '\113', '\040', '\144', '\145', '\040',
'\061', '\012', '\143', '\126', '\153', '\040', '\143', '\150',
'\040', '\061', '\012', '\162', '\167', '\124', '\040', '\145',
'\162', '\040', '\061', '\012', '\126', '\150', '\156', '\040',
'\164', '\150', '\040', '\061', '\012', '\110', '\146', '\167',
'\040', '\167', '\141', '\040', '\061', '\012', '\142', '\156',
'\112', '\040', '\141', '\156', '\040', '\061', '\012', '\103',
'\160', '\144', '\040', '\144', '\145', '\040', '\061', '\012',
'\116', '\155', '\144', '\040', '\144', '\145', '\040', '\061',
'\012', '\144', '\156', '\117', '\040', '\141', '\156', '\040',
'\061', '\012', '\161', '\127', '\143', '\040', '\161', '\165',
'\040', '\061', '\012', '\141', '\126', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\161', '\117', '\156', '\040',
'\161', '\165', '\040', '\061', '\012', '\121', '\154', '\162',
'\040', '\145', '\162', '\040', '\061', '\012', '\161', '\156',
'\116', '\040', '\161', '\165', '\040', '\061', '\012', '\162',
'\114', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\167', '\164', '\105', '\040', '\164', '\150', '\040', '\061',
'\012', '\152', '\147', '\122', '\040', '\156', '\147', '\040',
'\061', '\012', '\131', '\161', '\160', '\040', '\161', '\165',
'\040', '\061', '\012', '\110', '\167', '\147', '\040', '\156',
'\147', '\040', '\061', '\012', '\156', '\127', '\153', '\040',
'\141', '\156', '\040', '\061', '\012', '\167', '\161', '\102',
'\040', '\161', '\165', '\040', '\061', '\012', '\146', '\101',
'\160', '\040', '\160', '\162', '\040', '\061', '\012', '\150',
'\132', '\166', '\040', '\164', '\150', '\040', '\061', '\012',
'\113', '\172', '\160', '\040', '\163', '\172', '\040', '\061',
'\012', '\146', '\116', '\153', '\040', '\153', '\141', '\040',
'\061', '\012', '\124', '\153', '\144', '\040', '\144', '\145',
'\040', '\061', '\012', '\165', '\131', '\155', '\040', '\161',
'\165', '\040', '\061', '\012', '\153', '\143', '\122', '\040',
'\143', '\150', '\040', '\061', '\012', '\170', '\116', '\154',
'\040', '\154', '\145', '\040', '\061', '\012', '\153', '\110',
'\153', '\040', '\153', '\141', '\040', '\061', '\012', '\142',
'\112', '\153', '\040', '\153', '\141', '\040', '\061', '\012',
'\152', '\152', '\104', '\040', '\151', '\152', '\040', '\061',
'\012', '\116', '\154', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\144', '\150', '\102', '\040', '\164', '\150',
'\040', '\061', '\012', '\152', '\130', '\154', '\040', '\154',
'\145', '\040', '\061', '\012', '\156', '\167', '\102', '\040',
'\141', '\156', '\040', '\061', '\012', '\110', '\172', '\142',
'\040', '\163', '\172', '\040', '\061', '\012', '\161', '\121',
'\172', '\040', '\161', '\165', '\040', '\061', '\012', '\146',
'\113', '\143', '\040', '\143', '\150', '\040', '\061', '\012',
'\152', '\126', '\167', '\040', '\151', '\152', '\040', '\061',
'\012', '\171', '\154', '\125', '\040', '\154', '\145', '\040',
'\061', '\012', '\114', '\172', '\152', '\040', '\163', '\172',
'\040', '\061', '\012', '\163', '\130', '\165', '\040', '\161',
'\165', '\040', '\061', '\012', '\167', '\102', '\167', '\040',
'\167', '\141', '\040', '\061', '\012', '\111', '\161', '\147',
'\040', '\161', '\165', '\040', '\061', '\012', '\167', '\152',
'\126', '\040', '\151', '\152', '\040', '\061', '\012', '\167',
'\170', '\164', '\040', '\164', '\150', '\040', '\061', '\012',
'\152', '\172', '\113', '\040', '\163', '\172', '\040', '\061',
'\012', '\162', '\104', '\144', '\040', '\144', '\145', '\040',
'\061', '\012', '\165', '\121', '\171', '\040', '\161', '\165',
'\040', '\061', '\012', '\161', '\107', '\167', '\040', '\161',
'\165', '\040', '\061', '\012', '\164', '\142', '\125', '\040',
'\164', '\150', '\040', '\061', '\012', '\153', '\125', '\157',
'\040', '\153', '\141', '\040', '\061', '\012', '\144', '\126',
'\155', '\040', '\144', '\145', '\040', '\061', '\012', '\104',
'\144', '\156', '\040', '\141', '\156', '\040', '\061', '\012',
'\166', '\161', '\103', '\040', '\166', '\157', '\040', '\061',
'\012', '\152', '\153', '\132', '\040', '\151', '\152', '\040',
'\061', '\012', '\114', '\166', '\172', '\040', '\166', '\141',
'\040', '\061', '\012', '\164', '\120', '\171', '\040', '\164',
'\150', '\040', '\061', '\012', '\126', '\146', '\152', '\040',
'\151', '\152', '\040', '\061', '\012', '\121', '\150', '\142',
'\040', '\164', '\150', '\040', '\061', '\012', '\167', '\150',
'\102', '\040', '\164', '\150', '\040', '\061', '\012', '\106',
'\161', '\146', '\040', '\161', '\165', '\040', '\061', '\012',
'\150', '\103', '\166', '\040', '\164', '\150', '\040', '\061',
'\012', '\106', '\152', '\146', '\040', '\151', '\152', '\040',
'\061', '\012', '\121', '\146', '\162', '\040', '\145', '\162',
'\040', '\061', '\012', '\172', '\167', '\106', '\040', '\163',
'\172', '\040', '\061', '\012', '\106', '\167', '\146', '\040',
'\167', '\141', '\040', '\061', '\012', '\160', '\166', '\125',
'\040', '\166', '\141', '\040', '\061', '\012', '\167', '\150',
'\103', '\040', '\164', '\150', '\040', '\061', '\012', '\150',
'\124', '\153', '\040', '\164', '\150', '\040', '\061', '\012',
'\144', '\154', '\121', '\040', '\144', '\145', '\040', '\061',
'\012', '\167', '\172', '\114', '\040', '\163', '\172', '\040',
'\061', '\012', '\172', '\161', '\123', '\040', '\161', '\165',
'\040', '\061', '\012', '\161', '\164', '\120', '\040', '\164',
'\150', '\040', '\061', '\012', '\171', '\150', '\103', '\040',
'\164', '\150', '\040', '\061', '\012', '\171', '\152', '\102',
'\040', '\151', '\152', '\040', '\061', '\012', '\151', '\124',
'\144', '\040', '\144', '\145', '\040', '\061', '\012', '\153',
'\114', '\170', '\040', '\153', '\141', '\040', '\061', '\012',
'\122', '\161', '\151', '\040', '\161', '\165', '\040', '\061',
'\012', '\161', '\152', '\123', '\040', '\161', '\165', '\040',
'\061', '\012', '\166', '\152', '\111', '\040', '\166', '\141',
'\040', '\061', '\012', '\160', '\107', '\172', '\040', '\163',
'\172', '\040', '\061', '\012', '\167', '\156', '\126', '\040',
'\141', '\156', '\040', '\061', '\012', '\154', '\121', '\170',
'\040', '\154', '\145', '\040', '\061', '\012', '\165', '\166',
'\123', '\040', '\161', '\165', '\040', '\061', '\012', '\132',
'\147', '\145', '\040', '\144', '\145', '\040', '\061', '\012',
'\147', '\112', '\166', '\040', '\156', '\147', '\040', '\061',
'\012', '\131', '\144', '\142', '\040', '\144', '\145', '\040',
'\061', '\012', '\167', '\104', '\150', '\040', '\164', '\150',
'\040', '\061', '\012', '\172', '\167', '\126', '\040', '\163',
'\172', '\040', '\061', '\012', '\150', '\116', '\155', '\040',
'\164', '\150', '\040', '\061', '\012', '\172', '\167', '\121',
'\040', '\163', '\172', '\040', '\061', '\012', '\146', '\122',
'\162', '\040', '\145', '\162', '\040', '\061', '\012', '\167',
'\126', '\162', '\040', '\145', '\162', '\040', '\061', '\012',
'\156', '\113', '\147', '\040', '\141', '\156', '\040', '\061',
'\012', '\124', '\147', '\147', '\040', '\156', '\147', '\040',
'\061', '\012', '\142', '\131', '\160', '\040', '\160', '\162',
'\040', '\061', '\012', '\154', '\102', '\156', '\040', '\141',
'\156', '\040', '\061', '\012', '\172', '\152', '\160', '\040',
'\163', '\172', '\040', '\061', '\012', '\161', '\101', '\146',
'\040', '\161', '\165', '\040', '\061', '\012', '\172', '\155',
'\113', '\040', '\155', '\145', '\040', '\061', '\012', '\167',
'\161', '\113', '\040', '\161', '\165', '\040', '\061', '\012',
'\166', '\152', '\124', '\040', '\166', '\141', '\040', '\061',
'\012', '\114', '\161', '\154', '\040', '\161', '\165', '\040',
'\061', '\012', '\163', '\156', '\103', '\040', '\141', '\156',
'\040', '\061', '\012', '\146', '\172', '\131', '\040', '\163',
'\172', '\040', '\061', '\012', '\166', '\161', '\125', '\040',
'\161', '\165', '\040', '\061', '\012', '\155', '\107', '\142',
'\040', '\155', '\145', '\040', '\061', '\012', '\146', '\153',
'\120', '\040', '\153', '\141', '\040', '\061', '\012', '\167',
'\121', '\147', '\040', '\156', '\147', '\040', '\061', '\012',
'\106', '\161', '\164', '\040', '\164', '\150', '\040', '\061',
'\012', '\142', '\126', '\155', '\040', '\155', '\145', '\040',
'\061', '\012', '\127', '\143', '\170', '\040', '\143', '\150',
'\040', '\061', '\012', '\167', '\160', '\131', '\040', '\167',
'\141', '\040', '\061', '\012', '\154', '\106', '\166', '\040',
'\166', '\141', '\040', '\061', '\012', '\147', '\167', '\104',
'\040', '\156', '\147', '\040', '\061', '\012', '\147', '\127',
'\160', '\040', '\156', '\147', '\040', '\061', '\012', '\146',
'\152', '\124', '\040', '\151', '\152', '\040', '\061', '\012',
'\160', '\106', '\164', '\040', '\164', '\150', '\040', '\061',
'\012', '\151', '\111', '\160', '\040', '\151', '\156', '\040',
'\061', '\012', '\164', '\142', '\104', '\040', '\164', '\150',
'\040', '\061', '\012', '\130', '\161', '\143', '\040', '\161',
'\165', '\040', '\061', '\012', '\121', '\153', '\143', '\040',
'\143', '\150', '\040', '\061', '\012', '\161', '\145', '\132',
'\040', '\161', '\165', '\040', '\061', '\012', '\161', '\120',
'\142', '\040', '\161', '\165', '\040', '\061', '\012', '\147',
'\167', '\114', '\040', '\156', '\147', '\040', '\061', '\012',
'\146', '\110', '\151', '\040', '\151', '\156', '\040', '\061',
'\012', '\170', '\167', '\120', '\040', '\167', '\141', '\040',
'\061', '\012', '\170', '\166', '\102', '\040', '\166', '\141',
'\040', '\061', '\012', '\152', '\123', '\167', '\040', '\151',
'\152', '\040', '\061', '\012', '\160', '\172', '\106', '\040',
'\163', '\172', '\040', '\061', '\012', '\167', '\131', '\160',
'\040', '\167', '\141', '\040', '\061', '\012', '\144', '\104',
'\170', '\040', '\144', '\145', '\040', '\061', '\012', '\156',
'\102', '\170', '\040', '\141', '\156', '\040', '\061', '\012',
'\143', '\116', '\166', '\040', '\143', '\150', '\040', '\061',
'\012', '\125', '\142', '\155', '\040', '\155', '\145', '\040',
'\061', '\012', '\170', '\130', '\165', '\040', '\161', '\165',
'\040', '\061', '\012', '\144', '\122', '\154', '\040', '\144',
'\145', '\040', '\061', '\012', '\144', '\102', '\172', '\040',
'\144', '\145', '\040', '\061', '\012', '\130', '\166', '\150',
'\040', '\164', '\150', '\040', '\061', '\012', '\130', '\154',
'\144', '\040', '\144', '\145', '\040', '\061', '\012', '\155',
'\167', '\131', '\040', '\155', '\145', '\040', '\061', '\012',
'\167', '\150', '\121', '\040', '\164', '\150', '\040', '\061',
'\012', '\115', '\172', '\154', '\040', '\154', '\145', '\040',
'\061', '\012', '\101', '\161', '\152', '\040', '\161', '\165',
'\040', '\061', '\012', '\165', '\104', '\160', '\040', '\161',
'\165', '\040', '\061', '\012', '\143', '\152', '\132', '\040',
'\143', '\150', '\040', '\061', '\012', '\126', '\153', '\146',
'\040', '\153', '\141', '\040', '\061', '\012', '\165', '\107',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\150',
'\102', '\163', '\040', '\164', '\150', '\040', '\061', '\012',
'\161', '\114', '\150', '\040', '\164', '\150', '\040', '\061',
'\012', '\164', '\146', '\127', '\040', '\164', '\150', '\040',
'\061', '\012', '\143', '\120', '\156', '\040', '\141', '\156',
'\040', '\061', '\012', '\170', '\157', '\116', '\040', '\157',
'\156', '\040', '\061', '\012', '\131', '\144', '\170', '\040',
'\144', '\145', '\040', '\061', '\012', '\114', '\170', '\153',
'\040', '\153', '\141', '\040', '\061', '\012', '\143', '\143',
'\132', '\040', '\143', '\150', '\040', '\061', '\012', '\165',
'\112', '\150', '\040', '\164', '\150', '\040', '\061', '\012',
'\163', '\126', '\160', '\040', '\163', '\172', '\040', '\061',
'\012', '\167', '\162', '\105', '\040', '\145', '\162', '\040',
'\061', '\012', '\170', '\147', '\120', '\040', '\156', '\147',
'\040', '\061', '\012', '\150', '\120', '\160', '\040', '\164',
'\150', '\040', '\061', '\012', '\145', '\165', '\125', '\040',
'\161', '\165', '\040', '\061', '\012', '\163', '\132', '\150',
'\040', '\164', '\150', '\040', '\061', '\012', '\161', '\156',
'\113', '\040', '\161', '\165', '\040', '\061', '\012', '\102',
'\147', '\150', '\040', '\164', '\150', '\040', '\061', '\012',
'\163', '\154', '\121', '\040', '\154', '\145', '\040', '\061',
'\012', '\147', '\170', '\101', '\040', '\156', '\147', '\040',
'\061', '\012', '\152', '\114', '\144', '\040', '\144', '\145',
'\040', '\061', '\012', '\172', '\156', '\104', '\040', '\141',
'\156', '\040', '\061', '\012', '\153', '\130', '\153', '\040',
'\153', '\141', '\040', '\061', '\012', '\164', '\146', '\126',
'\040', '\164', '\150', '\040', '\061', '\012', '\126', '\167',
'\154', '\040', '\154', '\145', '\040', '\061', '\012', '\170',
'\127', '\144', '\040', '\144', '\157', '\040', '\061', '\012',
'\170', '\156', '\110', '\040', '\141', '\156', '\040', '\061',
'\012', '\143', '\117', '\161', '\040', '\143', '\150', '\040',
'\061', '\012', '\114', '\153', '\153', '\040', '\153', '\141',
'\040', '\061', '\012', '\116', '\166', '\171', '\040', '\166',
'\141', '\040', '\061', '\012', '\170', '\111', '\150', '\040',
'\164', '\150', '\040', '\061', '\012', '\170', '\153', '\113',
'\040', '\153', '\141', '\040', '\061', '\012', '\162', '\115',
'\162', '\040', '\145', '\162', '\040', '\061', '\012', '\162',
'\155', '\121', '\040', '\145', '\162', '\040', '\061', '\012',
'\142', '\120', '\156', '\040', '\141', '\156', '\040', '\061',
'\012', '\146', '\101', '\141', '\040', '\141', '\156', '\040',
'\061', '\012', '\166', '\121', '\166', '\040', '\166', '\141',
'\040', '\061', '\012', '\146', '\110', '\162', '\040', '\145',
'\162', '\040', '\061', '\012', '\120', '\155', '\166', '\040',
'\166', '\141', '\040', '\061', '\012', '\166', '\172', '\112',
'\040', '\163', '\172', '\040', '\061', '\012', '\167', '\124',
'\147', '\040', '\156', '\147', '\040', '\061', '\012', '\142',
'\127', '\143', '\040', '\143', '\150', '\040', '\061', '\012',
'\132', '\167', '\147', '\040', '\156', '\147', '\040', '\061',
'\012', '\147', '\113', '\170', '\040', '\156', '\147', '\040',
'\061', '\012', '\107', '\142', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\167', '\115', '\153', '\040', '\153',
'\141', '\040', '\061', '\012', '\116', '\146', '\170', '\040',
'\146', '\157', '\040', '\061', '\012', '\146', '\101', '\157',
'\040', '\157', '\156', '\040', '\061', '\012', '\144', '\110',
'\142', '\040', '\144', '\145', '\040', '\061', '\012', '\154',
'\170', '\110', '\040', '\154', '\145', '\040', '\061', '\012',
'\144', '\161', '\117', '\040', '\161', '\165', '\040', '\061',
'\012', '\124', '\154', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\131', '\152', '\152', '\040', '\151', '\152',
'\040', '\061', '\012', '\111', '\171', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\165', '\157', '\131', '\040',
'\161', '\165', '\040', '\061', '\012', '\155', '\150', '\110',
'\040', '\164', '\150', '\040', '\061', '\012', '\154', '\115',
'\152', '\040', '\154', '\145', '\040', '\061', '\012', '\146',
'\172', '\106', '\040', '\163', '\172', '\040', '\061', '\012',
'\146', '\162', '\122', '\040', '\145', '\162', '\040', '\061',
'\012', '\171', '\116', '\154', '\040', '\154', '\145', '\040',
'\061', '\012', '\141', '\120', '\166', '\040', '\141', '\156',
'\040', '\061', '\012', '\171', '\167', '\107', '\040', '\167',
'\141', '\040', '\061', '\012', '\103', '\155', '\167', '\040',
'\155', '\145', '\040', '\061', '\012', '\163', '\166', '\113',
'\040', '\166', '\141', '\040', '\061', '\012', '\163', '\162',
'\117', '\040', '\145', '\162', '\040', '\061', '\012', '\125',
'\150', '\172', '\040', '\164', '\150', '\040', '\061', '\012',
'\166', '\120', '\156', '\040', '\141', '\156', '\040', '\061',
'\012', '\172', '\124', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\153', '\172', '\110', '\040', '\163', '\172',
'\040', '\061', '\012', '\111', '\157', '\170', '\040', '\157',
'\156', '\040', '\061', '\012', '\146', '\121', '\141', '\040',
'\141', '\156', '\040', '\061', '\012', '\167', '\132', '\162',
'\040', '\145', '\162', '\040', '\061', '\012', '\156', '\161',
'\125', '\040', '\141', '\156', '\040', '\061', '\012', '\167',
'\120', '\142', '\040', '\167', '\141', '\040', '\061', '\012',
'\124', '\172', '\147', '\040', '\156', '\147', '\040', '\061',
'\012', '\160', '\156', '\122', '\040', '\141', '\156', '\040',
'\061', '\012', '\166', '\146', '\112', '\040', '\166', '\141',
'\040', '\061', '\012', '\166', '\171', '\130', '\040', '\166',
'\141', '\040', '\061', '\012', '\146', '\114', '\172', '\040',
'\163', '\172', '\040', '\061', '\012', '\172', '\152', '\120',
'\040', '\163', '\172', '\040', '\061', '\012', '\160', '\155',
'\122', '\040', '\155', '\145', '\040', '\061', '\012', '\145',
'\120', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\152', '\171', '\124', '\040', '\151', '\152', '\040', '\061',
'\012', '\155', '\152', '\120', '\040', '\151', '\152', '\040',
'\061', '\012', '\146', '\163', '\110', '\040', '\163', '\172',
'\040', '\061', '\012', '\166', '\167', '\102', '\040', '\166',
'\141', '\040', '\061', '\012', '\131', '\156', '\162', '\040',
'\141', '\156', '\040', '\061', '\012', '\124', '\161', '\150',
'\040', '\164', '\150', '\040', '\061', '\012', '\114', '\166',
'\166', '\040', '\166', '\141', '\040', '\061', '\012', '\164',
'\103', '\146', '\040', '\164', '\150', '\040', '\061', '\012',
'\167', '\160', '\102', '\040', '\167', '\141', '\040', '\061',
'\012', '\167', '\130', '\150', '\040', '\164', '\150', '\040',
'\061', '\012', '\155', '\150', '\130', '\040', '\164', '\150',
'\040', '\061', '\012', '\153', '\131', '\144', '\040', '\144',
'\145', '\040', '\061', '\012', '\104', '\160', '\147', '\040',
'\156', '\147', '\040', '\061', '\012', '\171', '\147', '\122',
'\040', '\156', '\147', '\040', '\061', '\012', '\122', '\146',
'\160', '\040', '\160', '\162', '\040', '\061', '\012', '\112',
'\171', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\171', '\170', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\160', '\120', '\143', '\040', '\143', '\150', '\040',
'\061', '\012', '\141', '\117', '\152', '\040', '\141', '\156',
'\040', '\061', '\012', '\132', '\167', '\167', '\040', '\167',
'\141', '\040', '\061', '\012', '\146', '\106', '\170', '\040',
'\146', '\157', '\040', '\061', '\012', '\142', '\104', '\150',
'\040', '\164', '\150', '\040', '\061', '\012', '\161', '\113',
'\170', '\040', '\161', '\165', '\040', '\061', '\012', '\167',
'\110', '\170', '\040', '\167', '\141', '\040', '\061', '\012',
'\150', '\162', '\130', '\040', '\164', '\150', '\040', '\061',
'\012', '\162', '\106', '\150', '\040', '\164', '\150', '\040',
'\061', '\012', '\154', '\114', '\170', '\040', '\154', '\145',
'\040', '\061', '\012', '\141', '\131', '\152', '\040', '\141',
'\156', '\040', '\061', '\012', '\153', '\103', '\163', '\040',
'\163', '\172', '\040', '\061', '\012', '\154', '\127', '\164',
'\040', '\164', '\150', '\040', '\061', '\012', '\160', '\144',
'\131', '\040', '\144', '\145', '\040', '\061', '\012', '\163',
'\167', '\111', '\040', '\163', '\172', '\040', '\061', '\012',
'\142', '\114', '\167', '\040', '\167', '\141', '\040', '\061',
'\012', '\115', '\172', '\170', '\040', '\163', '\172', '\040',
'\061', '\012', '\143', '\113', '\153', '\040', '\143', '\150',
'\040', '\061', '\012', '\150', '\115', '\172', '\040', '\164',
'\150', '\040', '\061', '\012', '\112', '\143', '\165', '\040',
'\161', '\165', '\040', '\061', '\012', '\167', '\152', '\102',
'\040', '\151', '\152', '\040', '\061', '\012', '\115', '\161',
'\145', '\040', '\161', '\165', '\040', '\061', '\012', '\162',
'\170', '\127', '\040', '\145', '\162', '\040', '\061', '\012',
'\147', '\132', '\166', '\040', '\156', '\147', '\040', '\061',
'\012', '\122', '\146', '\156', '\040', '\141', '\156', '\040',
'\061', '\012', '\160', '\167', '\104', '\040', '\167', '\141',
'\040', '\061', '\012', '\154', '\150', '\130', '\040', '\164',
'\150', '\040', '\061', '\012', '\146', '\126', '\147', '\040',
'\156', '\147', '\040', '\061', '\012', '\166', '\146', '\127',
'\040', '\166', '\141', '\040', '\061', '\012', '\154', '\170',
'\120', '\040', '\154', '\145', '\040', '\061', '\012', '\131',
'\171', '\152', '\040', '\151', '\152', '\040', '\061', '\012',
'\150', '\120', '\147', '\040', '\164', '\150', '\040', '\061',
'\012', '\125', '\170', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\142', '\144', '\117', '\040', '\144', '\145',
'\040', '\061', '\012', '\142', '\122', '\172', '\040', '\163',
'\172', '\040', '\061', '\012', '\144', '\130', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\122', '\152', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\146', '\147',
'\126', '\040', '\156', '\147', '\040', '\061', '\012', '\170',
'\101', '\146', '\040', '\146', '\157', '\040', '\061', '\012',
'\167', '\130', '\156', '\040', '\141', '\156', '\040', '\061',
'\012', '\113', '\166', '\166', '\040', '\166', '\141', '\040',
'\061', '\012', '\163', '\166', '\114', '\040', '\166', '\141',
'\040', '\061', '\012', '\146', '\127', '\166', '\040', '\166',
'\141', '\040', '\061', '\012', '\144', '\162', '\121', '\040',
'\145', '\162', '\040', '\061', '\012', '\114', '\160', '\166',
'\040', '\166', '\141', '\040', '\061', '\012', '\161', '\113',
'\160', '\040', '\161', '\165', '\040', '\061', '\012', '\145',
'\103', '\166', '\040', '\145', '\162', '\040', '\061', '\012',
'\170', '\167', '\110', '\040', '\167', '\141', '\040', '\061',
'\012', '\143', '\166', '\103', '\040', '\143', '\150', '\040',
'\061', '\012', '\153', '\125', '\146', '\040', '\153', '\141',
'\040', '\061', '\012', '\157', '\120', '\170', '\040', '\157',
'\156', '\040', '\061', '\012', '\164', '\152', '\112', '\040',
'\164', '\150', '\040', '\061', '\012', '\142', '\102', '\153',
'\040', '\153', '\141', '\040', '\061', '\012', '\166', '\160',
'\111', '\040', '\166', '\141', '\040', '\061', '\012', '\147',
'\172', '\131', '\040', '\156', '\147', '\040', '\061', '\012',
'\157', '\132', '\163', '\040', '\157', '\156', '\040', '\061',
'\012', '\160', '\113', '\143', '\040', '\143', '\150', '\040',
'\061', '\012', '\170', '\113', '\163', '\040', '\163', '\172',
'\040', '\061', '\012', '\161', '\143', '\110', '\040', '\161',
'\165', '\040', '\061', '\012', '\126', '\146', '\155', '\040',
'\155', '\145', '\040', '\061', '\012', '\163', '\166', '\115',
'\040', '\166', '\141', '\040', '\061', '\012', '\126', '\152',
'\170', '\040', '\151', '\152', '\040', '\061', '\012', '\154',
'\126', '\167', '\040', '\154', '\145', '\040', '\061', '\012',
'\167', '\127', '\146', '\040', '\167', '\141', '\040', '\061',
'\012', '\130', '\160', '\170', '\040', '\160', '\162', '\040',
'\061', '\012', '\154', '\143', '\101', '\040', '\143', '\150',
'\040', '\061', '\012', '\164', '\114', '\143', '\040', '\164',
'\150', '\040', '\061', '\012', '\154', '\104', '\147', '\040',
'\156', '\147', '\040', '\061', '\012', '\130', '\152', '\150',
'\040', '\164', '\150', '\040', '\061', '\012', '\130', '\144',
'\150', '\040', '\164', '\150', '\040', '\061', '\012', '\162',
'\113', '\155', '\040', '\145', '\162', '\040', '\061', '\012',
'\146', '\156', '\127', '\040', '\141', '\156', '\040', '\061',
'\012', '\124', '\143', '\142', '\040', '\143', '\150', '\040',
'\061', '\012', '\161', '\147', '\130', '\040', '\161', '\165',
'\040', '\061', '\012', '\161', '\132', '\157', '\040', '\161',
'\165', '\040', '\061', '\012', '\145', '\112', '\166', '\040',
'\145', '\162', '\040', '\061', '\012', '\131', '\170', '\171',
'\040', '\156', '\171', '\040', '\061', '\012', '\153', '\146',
'\115', '\040', '\153', '\141', '\040', '\061', '\012', '\161',
'\113', '\145', '\040', '\161', '\165', '\040', '\061', '\012',
'\166', '\115', '\146', '\040', '\166', '\141', '\040', '\061',
'\012', '\144', '\147', '\131', '\040', '\144', '\145', '\040',
'\061', '\012', '\147', '\107', '\144', '\040', '\156', '\147',
'\040', '\061', '\012', '\126', '\143', '\152', '\040', '\143',
'\150', '\040', '\061', '\012', '\123', '\146', '\167', '\040',
'\167', '\141', '\040', '\061', '\012', '\170', '\104', '\153',
'\040', '\153', '\141', '\040', '\061', '\012', '\146', '\124',
'\143', '\040', '\143', '\150', '\040', '\061', '\012', '\161',
'\122', '\167', '\040', '\161', '\165', '\040', '\061', '\012',
'\164', '\117', '\141', '\040', '\164', '\150', '\040', '\061',
'\012', '\147', '\165', '\121', '\040', '\161', '\165', '\040',
'\061', '\012', '\155', '\147', '\112', '\040', '\156', '\147',
'\040', '\061', '\012', '\142', '\122', '\144', '\040', '\144',
'\145', '\040', '\061', '\012', '\153', '\131', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\170', '\167', '\104',
'\040', '\167', '\141', '\040', '\061', '\012', '\166', '\130',
'\163', '\040', '\166', '\141', '\040', '\061', '\012', '\172',
'\154', '\103', '\040', '\154', '\145', '\040', '\061', '\012',
'\153', '\155', '\110', '\040', '\153', '\141', '\040', '\061',
'\012', '\152', '\150', '\132', '\040', '\164', '\150', '\040',
'\061', '\012', '\127', '\170', '\157', '\040', '\157', '\156',
'\040', '\061', '\012', '\166', '\164', '\130', '\040', '\164',
'\150', '\040', '\061', '\012', '\151', '\127', '\155', '\040',
'\151', '\156', '\040', '\061', '\012', '\161', '\126', '\170',
'\040', '\161', '\165', '\040', '\061', '\012', '\110', '\152',
'\166', '\040', '\166', '\141', '\040', '\061', '\012', '\120',
'\170', '\163', '\040', '\163', '\172', '\040', '\061', '\012',
'\142', '\131', '\151', '\040', '\151', '\156', '\040', '\061',
'\012', '\167', '\147', '\107', '\040', '\156', '\147', '\040',
'\061', '\012', '\112', '\166', '\163', '\040', '\166', '\141',
'\040', '\061', '\012', '\147', '\110', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\113', '\172', '\171', '\040',
'\163', '\172', '\040', '\061', '\012', '\170', '\152', '\111',
'\040', '\151', '\152', '\040', '\061', '\012', '\165', '\126',
'\142', '\040', '\161', '\165', '\040', '\061', '\012', '\120',
'\172', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\150', '\170', '\103', '\040', '\164', '\150', '\040', '\061',
'\012', '\167', '\120', '\171', '\040', '\167', '\141', '\040',
'\061', '\012', '\142', '\130', '\150', '\040', '\164', '\150',
'\040', '\061', '\012', '\152', '\172', '\131', '\040', '\163',
'\172', '\040', '\061', '\012', '\146', '\161', '\112', '\040',
'\161', '\165', '\040', '\061', '\012', '\161', '\170', '\130',
'\040', '\161', '\165', '\040', '\061', '\012', '\166', '\146',
'\102', '\040', '\166', '\141', '\040', '\061', '\012', '\160',
'\120', '\155', '\040', '\155', '\145', '\040', '\061', '\012',
'\142', '\160', '\103', '\040', '\160', '\162', '\040', '\061',
'\012', '\150', '\106', '\166', '\040', '\164', '\150', '\040',
'\061', '\012', '\103', '\161', '\154', '\040', '\161', '\165',
'\040', '\061', '\012', '\144', '\167', '\111', '\040', '\144',
'\145', '\040', '\061', '\012', '\124', '\143', '\161', '\040',
'\143', '\150', '\040', '\061', '\012', '\132', '\152', '\170',
'\040', '\151', '\152', '\040', '\061', '\012', '\167', '\117',
'\172', '\040', '\163', '\172', '\040', '\061', '\012', '\112',
'\146', '\152', '\040', '\151', '\152', '\040', '\061', '\012',
'\151', '\132', '\162', '\040', '\151', '\156', '\040', '\061',
'\012', '\126', '\170', '\146', '\040', '\146', '\157', '\040',
'\061', '\012', '\114', '\160', '\170', '\040', '\160', '\162',
'\040', '\061', '\012', '\146', '\110', '\164', '\040', '\164',
'\150', '\040', '\061', '\012', '\150', '\106', '\171', '\040',
'\164', '\150', '\040', '\061', '\012', '\154', '\143', '\104',
'\040', '\143', '\150', '\040', '\061', '\012', '\166', '\115',
'\143', '\040', '\143', '\150', '\040', '\061', '\012', '\170',
'\171', '\125', '\040', '\156', '\171', '\040', '\061', '\012',
'\155', '\107', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\167', '\112', '\166', '\040', '\166', '\141', '\040',
'\061', '\012', '\172', '\113', '\163', '\040', '\163', '\172',
'\040', '\061', '\012', '\154', '\115', '\155', '\040', '\154',
'\145', '\040', '\061', '\012', '\155', '\161', '\125', '\040',
'\161', '\165', '\040', '\061', '\012', '\166', '\110', '\147',
'\040', '\156', '\147', '\040', '\061', '\012', '\154', '\107',
'\143', '\040', '\143', '\150', '\040', '\061', '\012', '\145',
'\111', '\152', '\040', '\164', '\145', '\040', '\061', '\012',
'\126', '\144', '\150', '\040', '\164', '\150', '\040', '\061',
'\012', '\162', '\103', '\153', '\040', '\145', '\162', '\040',
'\061', '\012', '\167', '\121', '\150', '\040', '\164', '\150',
'\040', '\061', '\012', '\131', '\167', '\146', '\040', '\167',
'\141', '\040', '\061', '\012', '\172', '\125', '\146', '\040',
'\163', '\172', '\040', '\061', '\012', '\161', '\132', '\163',
'\040', '\161', '\165', '\040', '\061', '\012', '\166', '\116',
'\164', '\040', '\164', '\150', '\040', '\061', '\012', '\104',
'\170', '\152', '\040', '\151', '\152', '\040', '\061', '\012',
'\143', '\131', '\162', '\040', '\143', '\150', '\040', '\061',
'\012', '\144', '\113', '\164', '\040', '\164', '\150', '\040',
'\061', '\012', '\166', '\104', '\160', '\040', '\166', '\141',
'\040', '\061', '\012', '\161', '\156', '\106', '\040', '\141',
'\156', '\040', '\061', '\012', '\114', '\163', '\152', '\040',
'\163', '\172', '\040', '\061', '\012', '\170', '\110', '\166',
'\040', '\166', '\141', '\040', '\061', '\012', '\152', '\103',
'\164', '\040', '\164', '\150', '\040', '\061', '\012', '\142',
'\156', '\130', '\040', '\141', '\156', '\040', '\061', '\012',
'\146', '\102', '\170', '\040', '\146', '\157', '\040', '\061',
'\012', '\152', '\126', '\164', '\040', '\164', '\150', '\040',
'\061', '\012', '\161', '\117', '\171', '\040', '\161', '\165',
'\040', '\061', '\012', '\165', '\161', '\104', '\040', '\161',
'\165', '\040', '\061', '\012', '\122', '\146', '\167', '\040',
'\167', '\141', '\040', '\061', '\012', '\143', '\152', '\123',
'\040', '\143', '\150', '\040', '\061', '\012', '\165', '\146',
'\130', '\040', '\161', '\165', '\040', '\061', '\012', '\146',
'\166', '\111', '\040', '\166', '\141', '\040', '\061', '\012',
'\117', '\167', '\170', '\040', '\167', '\141', '\040', '\061',
'\012', '\147', '\130', '\167', '\040', '\156', '\147', '\040',
'\061', '\012', '\157', '\103', '\166', '\040', '\166', '\141',
'\040', '\061', '\012', '\115', '\162', '\170', '\040', '\145',
'\162', '\040', '\061', '\012', '\143', '\111', '\142', '\040',
'\143', '\150', '\040', '\061', '\012', '\146', '\112', '\152',
'\040', '\151', '\152', '\040', '\061', '\012', '\153', '\161',
'\115', '\040', '\161', '\165', '\040', '\061', '\012', '\172',
'\161', '\114', '\040', '\161', '\165', '\040', '\061', '\012',
'\162', '\120', '\172', '\040', '\145', '\162', '\040', '\061',
'\012', '\151', '\167', '\127', '\040', '\151', '\156', '\040',
'\061', '\012', '\143', '\115', '\160', '\040', '\143', '\150',
'\040', '\061', '\012', '\154', '\126', '\164', '\040', '\164',
'\150', '\040', '\061', '\012', '\166', '\124', '\142', '\040',
'\166', '\141', '\040', '\061', '\012', '\111', '\167', '\146',
'\040', '\167', '\141', '\040', '\061', '\012', '\170', '\154',
'\132', '\040', '\154', '\145', '\040', '\061', '\012', '\166',
'\152', '\121', '\040', '\166', '\141', '\040', '\061', '\012',
'\151', '\120', '\142', '\040', '\151', '\156', '\040', '\061',
'\012', '\127', '\150', '\153', '\040', '\164', '\150', '\040',
'\061', '\012', '\127', '\166', '\150', '\040', '\164', '\150',
'\040', '\061', '\012', '\155', '\172', '\104', '\040', '\163',
'\172', '\040', '\061', '\012', '\110', '\161', '\153', '\040',
'\161', '\165', '\040', '\061', '\012', '\152', '\161', '\102',
'\040', '\161', '\165', '\040', '\061', '\012', '\161', '\150',
'\115', '\040', '\164', '\150', '\040', '\061', '\012', '\160',
'\162', '\122', '\040', '\145', '\162', '\040', '\061', '\012',
'\156', '\154', '\126', '\040', '\141', '\156', '\040', '\061',
'\012', '\161', '\131', '\153', '\040', '\161', '\165', '\040',
'\061', '\012', '\172', '\126', '\160', '\040', '\163', '\172',
'\040', '\061', '\012', '\166', '\160', '\117', '\040', '\166',
'\141', '\040', '\061', '\012', '\122', '\166', '\162', '\040',
'\145', '\162', '\040', '\061', '\012', '\163', '\143', '\131',
'\040', '\143', '\150', '\040', '\061', '\012', '\161', '\144',
'\101', '\040', '\161', '\165', '\040', '\061', '\012', '\166',
'\114', '\153', '\040', '\166', '\141', '\040', '\061', '\012',
'\163', '\166', '\111', '\040', '\166', '\141', '\040', '\061',
'\012', '\155', '\144', '\105', '\040', '\144', '\145', '\040',
'\061', '\012', '\150', '\102', '\170', '\040', '\164', '\150',
'\040', '\061', '\012', '\132', '\162', '\166', '\040', '\145',
'\162', '\040', '\061', '\012', '\152', '\127', '\164', '\040',
'\164', '\150', '\040', '\061', '\012', '\146', '\124', '\170',
'\040', '\146', '\157', '\040', '\061', '\012', '\131', '\160',
'\143', '\040', '\143', '\150', '\040', '\061', '\012', '\155',
'\115', '\153', '\040', '\153', '\141', '\040', '\061', '\012',
'\146', '\144', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\150', '\143', '\113', '\040', '\164', '\150', '\040',
'\061', '\012', '\170', '\103', '\171', '\040', '\156', '\171',
'\040', '\061', '\012', '\146', '\126', '\162', '\040', '\145',
'\162', '\040', '\061', '\012', '\141', '\120', '\170', '\040',
'\141', '\156', '\040', '\061', '\012', '\146', '\160', '\125',
'\040', '\160', '\162', '\040', '\061', '\012', '\126', '\153',
'\142', '\040', '\153', '\141', '\040', '\061', '\012', '\164',
'\142', '\115', '\040', '\164', '\150', '\040', '\061', '\012',
'\172', '\121', '\164', '\040', '\164', '\150', '\040', '\061',
'\012', '\147', '\170', '\126', '\040', '\156', '\147', '\040',
'\061', '\012', '\123', '\146', '\147', '\040', '\156', '\147',
'\040', '\061', '\012', '\160', '\131', '\154', '\040', '\154',
'\145', '\040', '\061', '\012', '\147', '\127', '\164', '\040',
'\164', '\150', '\040', '\061', '\012', '\170', '\105', '\142',
'\040', '\142', '\145', '\040', '\061', '\012', '\155', '\130',
'\171', '\040', '\155', '\145', '\040', '\061', '\012', '\154',
'\156', '\121', '\040', '\141', '\156', '\040', '\061', '\012',
'\161', '\155', '\114', '\040', '\161', '\165', '\040', '\061',
'\012', '\126', '\153', '\171', '\040', '\153', '\141', '\040',
'\061', '\012', '\167', '\167', '\130', '\040', '\167', '\141',
'\040', '\061', '\012', '\125', '\167', '\170', '\040', '\167',
'\141', '\040', '\061', '\012', '\143', '\146', '\102', '\040',
'\143', '\150', '\040', '\061', '\012', '\107', '\170', '\160',
'\040', '\160', '\162', '\040', '\061', '\012', '\146', '\160',
'\114', '\040', '\160', '\162', '\040', '\061', '\012', '\152',
'\124', '\170', '\040', '\151', '\152', '\040', '\061', '\012',
'\143', '\132', '\166', '\040', '\143', '\150', '\040', '\061',
'\012', '\172', '\154', '\113', '\040', '\154', '\145', '\040',
'\061', '\012', '\150', '\102', '\143', '\040', '\164', '\150',
'\040', '\061', '\012', '\127', '\161', '\151', '\040', '\161',
'\165', '\040', '\061', '\012', '\154', '\107', '\163', '\040',
'\154', '\145', '\040', '\061', '\012', '\104', '\161', '\172',
'\040', '\161', '\165', '\040', '\061', '\012', '\112', '\147',
'\167', '\040', '\156', '\147', '\040', '\061', '\012', '\147',
'\103', '\170', '\040', '\156', '\147', '\040', '\061', '\012',
'\143', '\116', '\152', '\040', '\143', '\150', '\040', '\061',
'\012', '\143', '\161', '\112', '\040', '\143', '\150', '\040',
'\061', '\012', '\142', '\154', '\104', '\040', '\154', '\145',
'\040', '\061', '\012', '\161', '\130', '\162', '\040', '\161',
'\165', '\040', '\061', '\012', '\153', '\130', '\162', '\040',
'\145', '\162', '\040', '\061', '\012', '\153', '\150', '\113',
'\040', '\164', '\150', '\040', '\061', '\012', '\170', '\132',
'\150', '\040', '\164', '\150', '\040', '\061', '\012', '\152',
'\123', '\163', '\040', '\163', '\172', '\040', '\061', '\012',
'\171', '\152', '\170', '\040', '\151', '\152', '\040', '\061',
'\012', '\110', '\167', '\146', '\040', '\167', '\141', '\040',
'\061', '\012', '\146', '\130', '\163', '\040', '\163', '\172',
'\040', '\061', '\012', '\161', '\147', '\172', '\040', '\161',
'\165', '\040', '\061', '\012', '\130', '\144', '\167', '\040',
'\144', '\145', '\040', '\061', '\012', '\150', '\143', '\116',
'\040', '\164', '\150', '\040', '\061', '\012', '\152', '\112',
'\144', '\040', '\144', '\145', '\040', '\061', '\012', '\143',
'\155', '\121', '\040', '\143', '\150', '\040', '\061', '\012',
'\155', '\166', '\126', '\040', '\166', '\141', '\040', '\061',
'\012', '\116', '\161', '\145', '\040', '\161', '\165', '\040',
'\061', '\012', '\172', '\170', '\123', '\040', '\163', '\172',
'\040', '\061', '\012', '\153', '\107', '\164', '\040', '\164',
'\150', '\040', '\061', '\012', '\164', '\106', '\147', '\040',
'\164', '\150', '\040', '\061', '\012', '\146', '\172', '\115',
'\040', '\163', '\172', '\040', '\061', '\012', '\130', '\162',
'\162', '\040', '\145', '\162', '\040', '\061', '\012', '\144',
'\143', '\112', '\040', '\143', '\150', '\040', '\061', '\012',
'\144', '\121', '\141', '\040', '\141', '\156', '\040', '\061',
'\012', '\161', '\116', '\171', '\040', '\161', '\165', '\040',
'\061', '\012', '\150', '\170', '\124', '\040', '\164', '\150',
'\040', '\061', '\012', '\164', '\167', '\102', '\040', '\164',
'\150', '\040', '\061', '\012', '\102', '\161', '\152', '\040',
'\161', '\165', '\040', '\061', '\012', '\160', '\162', '\113',
'\040', '\145', '\162', '\040', '\061', '\012', '\172', '\144',
'\103', '\040', '\144', '\145', '\040', '\061', '\012', '\171',
'\101', '\157', '\040', '\157', '\156', '\040', '\061', '\012',
'\144', '\114', '\164', '\040', '\163', '\164', '\040', '\061',
'\012', '\160', '\147', '\106', '\040', '\156', '\147', '\040',
'\061', '\012', '\166', '\147', '\127', '\040', '\156', '\147',
'\040', '\061', '\012', '\166', '\160', '\116', '\040', '\166',
'\141', '\040', '\061', '\012', '\111', '\166', '\170', '\040',
'\166', '\141', '\040', '\061', '\012', '\166', '\131', '\154',
'\040', '\154', '\145', '\040', '\061', '\012', '\170', '\122',
'\147', '\040', '\156', '\147', '\040', '\061', '\012', '\152',
'\120', '\165', '\040', '\161', '\165', '\040', '\061', '\012',
'\117', '\161', '\162', '\040', '\161', '\165', '\040', '\061',
'\012', '\166', '\152', '\147', '\040', '\156', '\147', '\040',
'\061', '\012', '\144', '\160', '\110', '\040', '\144', '\145',
'\040', '\061', '\012', '\171', '\104', '\160', '\040', '\160',
'\162', '\040', '\061', '\012', '\170', '\146', '\112', '\040',
'\146', '\157', '\040', '\061', '\012', '\146', '\161', '\126',
'\040', '\161', '\165', '\040', '\061', '\012', '\145', '\102',
'\146', '\040', '\145', '\162', '\040', '\061', '\012', '\132',
'\153', '\167', '\040', '\153', '\141', '\040', '\061', '\012',
'\161', '\110', '\160', '\040', '\161', '\165', '\040', '\061',
'\012', '\101', '\161', '\172', '\040', '\161', '\165', '\040',
'\061', '\012', '\142', '\116', '\167', '\040', '\167', '\141',
'\040', '\061', '\012', '\146', '\152', '\130', '\040', '\151',
'\152', '\040', '\061', '\012', '\146', '\161', '\123', '\040',
'\161', '\165', '\040', '\061', '\012', '\154', '\152', '\113',
'\040', '\154', '\145', '\040', '\061', '\012', '\107', '\153',
'\146', '\040', '\153', '\141', '\040', '\061', '\012', '\142',
'\123', '\146', '\040', '\142', '\145', '\040', '\061', '\012',
'\115', '\170', '\147', '\040', '\156', '\147', '\040', '\061',
'\012', '\104', '\161', '\155', '\040', '\161', '\165', '\040',
'\061', '\012', '\150', '\113', '\160', '\040', '\164', '\150',
'\040', '\061', '\012', '\167', '\106', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\167', '\155', '\112', '\040',
'\155', '\145', '\040', '\061', '\012', '\166', '\172', '\124',
'\040', '\166', '\141', '\040', '\061', '\012', '\162', '\150',
'\112', '\040', '\164', '\150', '\040', '\061', '\012', '\156',
'\110', '\146', '\040', '\141', '\156', '\040', '\061', '\012',
'\152', '\112', '\157', '\040', '\157', '\156', '\040', '\061',
'\012', '\161', '\127', '\171', '\040', '\161', '\165', '\040',
'\061', '\012', '\127', '\166', '\153', '\040', '\166', '\141',
'\040', '\061', '\012', '\147', '\153', '\102', '\040', '\156',
'\147', '\040', '\061', '\012', '\155', '\105', '\167', '\040',
'\155', '\145', '\040', '\061', '\012', '\125', '\147', '\170',
'\040', '\156', '\147', '\040', '\061', '\012', '\121', '\155',
'\171', '\040', '\155', '\145', '\040', '\061', '\012', '\114',
'\152', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\142', '\107', '\160', '\040', '\160', '\162', '\040', '\061',
'\012', '\154', '\110', '\147', '\040', '\156', '\147', '\040',
'\061', '\012', '\143', '\107', '\147', '\040', '\143', '\150',
'\040', '\061', '\012', '\147', '\106', '\153', '\040', '\156',
'\147', '\040', '\061', '\012', '\170', '\156', '\126', '\040',
'\141', '\156', '\040', '\061', '\012', '\145', '\106', '\171',
'\040', '\145', '\162', '\040', '\061', '\012', '\116', '\146',
'\155', '\040', '\155', '\145', '\040', '\061', '\012', '\150',
'\123', '\146', '\040', '\164', '\150', '\040', '\061', '\012',
'\147', '\130', '\152', '\040', '\156', '\147', '\040', '\061',
'\012', '\170', '\110', '\146', '\040', '\146', '\157', '\040',
'\061', '\012', '\165', '\161', '\152', '\040', '\161', '\165',
'\040', '\061', '\012', '\167', '\130', '\141', '\040', '\141',
'\156', '\040', '\061', '\012', '\166', '\143', '\124', '\040',
'\143', '\150', '\040', '\061', '\012', '\165', '\112', '\167',
'\040', '\161', '\165', '\040', '\061', '\012', '\160', '\127',
'\170', '\040', '\160', '\162', '\040', '\061', '\012', '\161',
'\160', '\121', '\040', '\161', '\165', '\040', '\061', '\012',
'\150', '\161', '\105', '\040', '\164', '\150', '\040', '\061',
'\012', '\131', '\146', '\156', '\040', '\141', '\156', '\040',
'\061', '\012', '\152', '\162', '\111', '\040', '\145', '\162',
'\040', '\061', '\012', '\143', '\147', '\113', '\040', '\143',
'\150', '\040', '\061', '\012', '\171', '\171', '\120', '\040',
'\156', '\171', '\040', '\061', '\012', '\132', '\155', '\147',
'\040', '\156', '\147', '\040', '\061', '\012', '\114', '\153',
'\143', '\040', '\143', '\150', '\040', '\061', '\012', '\145',
'\125', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\152', '\162', '\131', '\040', '\145', '\162', '\040', '\061',
'\012', '\153', '\106', '\163', '\040', '\163', '\172', '\040',
'\061', '\012', '\163', '\125', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\152', '\154', '\132', '\040', '\154',
'\145', '\040', '\061', '\012', '\143', '\156', '\126', '\040',
'\143', '\150', '\040', '\061', '\012', '\141', '\120', '\152',
'\040', '\141', '\156', '\040', '\061', '\012', '\155', '\152',
'\105', '\040', '\151', '\152', '\040', '\061', '\012', '\160',
'\132', '\154', '\040', '\154', '\145', '\040', '\061', '\012',
'\165', '\106', '\163', '\040', '\161', '\165', '\040', '\061',
'\012', '\113', '\156', '\146', '\040', '\141', '\156', '\040',
'\061', '\012', '\106', '\160', '\143', '\040', '\143', '\150',
'\040', '\061', '\012', '\150', '\146', '\122', '\040', '\164',
'\150', '\040', '\061', '\012', '\161', '\156', '\103', '\040',
'\141', '\156', '\040', '\061', '\012', '\104', '\154', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\146', '\162',
'\115', '\040', '\145', '\162', '\040', '\061', '\012', '\163',
'\146', '\102', '\040', '\163', '\172', '\040', '\061', '\012',
'\107', '\170', '\153', '\040', '\153', '\141', '\040', '\061',
'\012', '\106', '\153', '\152', '\040', '\151', '\152', '\040',
'\061', '\012', '\166', '\107', '\153', '\040', '\166', '\141',
'\040', '\061', '\012', '\147', '\122', '\155', '\040', '\156',
'\147', '\040', '\061', '\012', '\162', '\127', '\146', '\040',
'\145', '\162', '\040', '\061', '\012', '\162', '\131', '\166',
'\040', '\145', '\162', '\040', '\061', '\012', '\161', '\105',
'\144', '\040', '\161', '\165', '\040', '\061', '\012', '\161',
'\110', '\162', '\040', '\161', '\165', '\040', '\061', '\012',
'\123', '\155', '\166', '\040', '\166', '\141', '\040', '\061',
'\012', '\154', '\106', '\160', '\040', '\154', '\145', '\040',
'\061', '\012', '\153', '\104', '\163', '\040', '\163', '\172',
'\040', '\061', '\012', '\144', '\123', '\144', '\040', '\144',
'\145', '\040', '\061', '\012', '\162', '\114', '\167', '\040',
'\145', '\162', '\040', '\061', '\012', '\143', '\156', '\132',
'\040', '\141', '\156', '\040', '\061', '\012', '\127', '\152',
'\160', '\040', '\151', '\152', '\040', '\061', '\012', '\160',
'\124', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\113', '\143', '\170', '\040', '\143', '\150', '\040', '\061',
'\012', '\166', '\113', '\163', '\040', '\166', '\141', '\040',
'\061', '\012', '\142', '\143', '\113', '\040', '\143', '\150',
'\040', '\061', '\012', '\166', '\167', '\171', '\040', '\166',
'\141', '\040', '\061', '\012', '\125', '\152', '\170', '\040',
'\151', '\152', '\040', '\061', '\012', '\121', '\166', '\162',
'\040', '\145', '\162', '\040', '\061', '\012', '\144', '\143',
'\126', '\040', '\143', '\150', '\040', '\061', '\012', '\170',
'\126', '\146', '\040', '\146', '\157', '\040', '\061', '\012',
'\165', '\111', '\153', '\040', '\161', '\165', '\040', '\061',
'\012', '\152', '\154', '\116', '\040', '\154', '\145', '\040',
'\061', '\012', '\166', '\167', '\114', '\040', '\166', '\141',
'\040', '\061', '\012', '\146', '\127', '\160', '\040', '\160',
'\162', '\040', '\061', '\012', '\120', '\170', '\162', '\040',
'\145', '\162', '\040', '\061', '\012', '\162', '\122', '\142',
'\040', '\145', '\162', '\040', '\061', '\012', '\142', '\146',
'\104', '\040', '\142', '\145', '\040', '\061', '\012', '\171',
'\103', '\170', '\040', '\156', '\171', '\040', '\061', '\012',
'\156', '\112', '\163', '\040', '\141', '\156', '\040', '\061',
'\012', '\144', '\103', '\155', '\040', '\144', '\145', '\040',
'\061', '\012', '\143', '\142', '\107', '\040', '\143', '\150',
'\040', '\061', '\012', '\147', '\103', '\146', '\040', '\156',
'\147', '\040', '\061', '\012', '\164', '\155', '\126', '\040',
'\164', '\150', '\040', '\061', '\012', '\161', '\145', '\103',
'\040', '\161', '\165', '\040', '\061', '\012', '\153', '\156',
'\123', '\040', '\141', '\156', '\040', '\061', '\012', '\147',
'\167', '\131', '\040', '\156', '\147', '\040', '\061', '\012',
'\127', '\152', '\154', '\040', '\154', '\145', '\040', '\061',
'\012', '\155', '\111', '\167', '\040', '\155', '\145', '\040',
'\061', '\012', '\161', '\152', '\127', '\040', '\161', '\165',
'\040', '\061', '\012', '\147', '\167', '\166', '\040', '\156',
'\147', '\040', '\061', '\012', '\161', '\112', '\167', '\040',
'\167', '\141', '\040', '\061', '\012', '\143', '\156', '\101',
'\040', '\141', '\156', '\040', '\061', '\012', '\142', '\102',
'\155', '\040', '\155', '\145', '\040', '\061', '\012', '\147',
'\106', '\167', '\040', '\156', '\147', '\040', '\061', '\012',
'\167', '\104', '\156', '\040', '\141', '\156', '\040', '\061',
'\012', '\161', '\147', '\114', '\040', '\161', '\165', '\040',
'\061', '\012', '\154', '\125', '\141', '\040', '\141', '\156',
'\040', '\061', '\012', '\150', '\104', '\156', '\040', '\164',
'\150', '\040', '\061', '\012', '\153', '\110', '\170', '\040',
'\153', '\141', '\040', '\061', '\012', '\167', '\130', '\155',
'\040', '\155', '\145', '\040', '\061', '\012', '\161', '\171',
'\131', '\040', '\161', '\165', '\040', '\061', '\012', '\160',
'\153', '\104', '\040', '\153', '\141', '\040', '\061', '\012',
'\163', '\114', '\172', '\040', '\163', '\164', '\040', '\061',
'\012', '\172', '\170', '\106', '\040', '\163', '\172', '\040',
'\061', '\012', '\166', '\115', '\170', '\040', '\166', '\141',
'\040', '\061', '\012', '\160', '\154', '\122', '\040', '\154',
'\145', '\040', '\061', '\012', '\160', '\167', '\132', '\040',
'\160', '\162', '\040', '\061', '\012', '\160', '\131', '\144',
'\040', '\144', '\145', '\040', '\061', '\012', '\172', '\146',
'\114', '\040', '\163', '\172', '\040', '\061', '\012', '\172',
'\164', '\113', '\040', '\164', '\150', '\040', '\061', '\012',
'\155', '\124', '\155', '\040', '\155', '\145', '\040', '\061',
'\012', '\144', '\103', '\160', '\040', '\144', '\145', '\040',
'\061', '\012', '\142', '\167', '\170', '\040', '\167', '\141',
'\040', '\061', '\012', '\170', '\103', '\163', '\040', '\163',
'\172', '\040', '\061', '\012', '\164', '\146', '\106', '\040',
'\164', '\150', '\040', '\061', '\012', '\114', '\156', '\161',
'\040', '\141', '\156', '\040', '\061', '\012', '\144', '\131',
'\151', '\040', '\151', '\156', '\040', '\061', '\012', '\160',
'\127', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\157', '\111', '\170', '\040', '\157', '\156', '\040', '\061',
'\012', '\171', '\167', '\105', '\040', '\167', '\141', '\040',
'\061', '\012', '\167', '\116', '\153', '\040', '\153', '\141',
'\040', '\061', '\012', '\152', '\167', '\117', '\040', '\151',
'\152', '\040', '\061', '\012', '\170', '\132', '\172', '\040',
'\163', '\172', '\040', '\061', '\012', '\167', '\107', '\155',
'\040', '\155', '\145', '\040', '\061', '\012', '\143', '\126',
'\167', '\040', '\143', '\150', '\040', '\061', '\012', '\142',
'\152', '\113', '\040', '\151', '\152', '\040', '\061', '\012',
'\107', '\172', '\147', '\040', '\156', '\147', '\040', '\061',
'\012', '\153', '\167', '\172', '\040', '\163', '\172', '\040',
'\061', '\012', '\160', '\102', '\156', '\040', '\141', '\156',
'\040', '\061', '\012', '\143', '\124', '\170', '\040', '\143',
'\150', '\040', '\061', '\012', '\162', '\110', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\127', '\163', '\147',
'\040', '\156', '\147', '\040', '\061', '\012', '\170', '\105',
'\150', '\040', '\164', '\150', '\040', '\061', '\012', '\171',
'\162', '\113', '\040', '\145', '\162', '\040', '\061', '\012',
'\155', '\115', '\142', '\040', '\155', '\145', '\040', '\061',
'\012', '\160', '\110', '\167', '\040', '\160', '\162', '\040',
'\061', '\012', '\143', '\152', '\116', '\040', '\143', '\150',
'\040', '\061', '\012', '\156', '\130', '\156', '\040', '\141',
'\156', '\040', '\061', '\012', '\142', '\167', '\117', '\040',
'\167', '\141', '\040', '\061', '\012', '\146', '\154', '\102',
'\040', '\154', '\145', '\040', '\061', '\012', '\121', '\161',
'\152', '\040', '\161', '\165', '\040', '\061', '\012', '\155',
'\113', '\166', '\040', '\166', '\141', '\040', '\061', '\012',
'\146', '\106', '\156', '\040', '\141', '\156', '\040', '\061',
'\012', '\167', '\146', '\107', '\040', '\167', '\141', '\040',
'\061', '\012', '\167', '\146', '\102', '\040', '\167', '\141',
'\040', '\061', '\012', '\112', '\161', '\153', '\040', '\161',
'\165', '\040', '\061', '\012', '\142', '\167', '\113', '\040',
'\167', '\141', '\040', '\061', '\012', '\150', '\150', '\111',
'\040', '\164', '\150', '\040', '\061', '\012', '\154', '\125',
'\145', '\040', '\145', '\162', '\040', '\061', '\012', '\167',
'\106', '\144', '\040', '\144', '\145', '\040', '\061', '\012',
'\166', '\153', '\124', '\040', '\166', '\141', '\040', '\061',
'\012', '\170', '\114', '\147', '\040', '\156', '\147', '\040',
'\061', '\012', '\146', '\150', '\102', '\040', '\164', '\150',
'\040', '\061', '\012', '\167', '\155', '\126', '\040', '\155',
'\145', '\040', '\061', '\012', '\164', '\155', '\106', '\040',
'\164', '\150', '\040', '\061', '\012', '\122', '\164', '\143',
'\040', '\164', '\150', '\040', '\061', '\012', '\144', '\171',
'\131', '\040', '\144', '\145', '\040', '\061', '\012', '\152',
'\171', '\167', '\040', '\151', '\152', '\040', '\061', '\012',
'\153', '\122', '\146', '\040', '\153', '\141', '\040', '\061',
'\012', '\146', '\130', '\172', '\040', '\163', '\172', '\040',
'\061', '\012', '\132', '\156', '\172', '\040', '\141', '\156',
'\040', '\061', '\012', '\167', '\161', '\130', '\040', '\161',
'\165', '\040', '\061', '\012', '\165', '\115', '\170', '\040',
'\161', '\165', '\040', '\061', '\012', '\147', '\167', '\126',
'\040', '\156', '\147', '\040', '\061', '\012', '\120', '\142',
'\150', '\040', '\164', '\150', '\040', '\061', '\012', '\144',
'\143', '\115', '\040', '\143', '\150', '\040', '\061', '\012',
'\156', '\120', '\172', '\040', '\141', '\156', '\040', '\061',
'\012', '\143', '\167', '\125', '\040', '\143', '\150', '\040',
'\061', '\012', '\166', '\112', '\164', '\040', '\164', '\150',
'\040', '\061', '\012', '\147', '\171', '\121', '\040', '\156',
'\147', '\040', '\061', '\012', '\146', '\130', '\151', '\040',
'\151', '\156', '\040', '\061', '\012', '\142', '\163', '\132',
'\040', '\163', '\172', '\040', '\061', '\012', '\102', '\161',
'\151', '\040', '\161', '\165', '\040', '\061', '\012', '\166',
'\107', '\156', '\040', '\141', '\156', '\040', '\061', '\012',
'\153', '\156', '\116', '\040', '\141', '\156', '\040', '\061',
'\012', '\167', '\131', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\164', '\124', '\142', '\040', '\164', '\150',
'\040', '\061', '\012', '\142', '\155', '\120', '\040', '\155',
'\145', '\040', '\061', '\012', '\152', '\160', '\132', '\040',
'\151', '\152', '\040', '\061', '\012', '\115', '\161', '\167',
'\040', '\161', '\165', '\040', '\061', '\012', '\166', '\152',
'\115', '\040', '\166', '\141', '\040', '\061', '\012', '\161',
'\126', '\150', '\040', '\164', '\150', '\040', '\061', '\012',
'\152', '\165', '\131', '\040', '\161', '\165', '\040', '\061',
'\012', '\162', '\102', '\153', '\040', '\145', '\162', '\040',
'\061', '\012', '\152', '\165', '\111', '\040', '\161', '\165',
'\040', '\061', '\012', '\172', '\105', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\172', '\127', '\147', '\040',
'\156', '\147', '\040', '\061', '\012', '\146', '\172', '\110',
'\040', '\163', '\172', '\040', '\061', '\012', '\164', '\114',
'\170', '\040', '\164', '\150', '\040', '\061', '\012', '\116',
'\143', '\146', '\040', '\143', '\150', '\040', '\061', '\012',
'\153', '\146', '\116', '\040', '\153', '\141', '\040', '\061',
'\012', '\165', '\125', '\157', '\040', '\161', '\165', '\040',
'\061', '\012', '\146', '\103', '\163', '\040', '\163', '\172',
'\040', '\061', '\012', '\164', '\103', '\166', '\040', '\164',
'\150', '\040', '\061', '\012', '\163', '\125', '\171', '\040',
'\163', '\172', '\040', '\061', '\012', '\160', '\102', '\146',
'\040', '\160', '\162', '\040', '\061', '\012', '\152', '\102',
'\172', '\040', '\163', '\172', '\040', '\061', '\012', '\166',
'\104', '\143', '\040', '\143', '\150', '\040', '\061', '\012',
'\161', '\155', '\170', '\040', '\161', '\165', '\040', '\061',
'\012', '\161', '\164', '\113', '\040', '\164', '\150', '\040',
'\061', '\012', '\161', '\143', '\123', '\040', '\143', '\150',
'\040', '\061', '\012', '\166', '\120', '\164', '\040', '\164',
'\150', '\040', '\061', '\012', '\147', '\121', '\155', '\040',
'\156', '\147', '\040', '\061', '\012', '\150', '\172', '\122',
'\040', '\164', '\150', '\040', '\061', '\012', '\144', '\143',
'\114', '\040', '\143', '\150', '\040', '\061', '\012', '\170',
'\162', '\111', '\040', '\145', '\162', '\040', '\061', '\012',
'\144', '\166', '\116', '\040', '\166', '\141', '\040', '\061',
'\012', '\103', '\167', '\166', '\040', '\166', '\141', '\040',
'\061', '\012', '\170', '\150', '\121', '\040', '\164', '\150',
'\040', '\061', '\012', '\107', '\172', '\165', '\040', '\161',
'\165', '\040', '\061', '\012', '\160', '\144', '\117', '\040',
'\144', '\145', '\040', '\061', '\012', '\102', '\161', '\162',
'\040', '\161', '\165', '\040', '\061', '\012', '\166', '\114',
'\156', '\040', '\141', '\156', '\040', '\061', '\012', '\154',
'\170', '\146', '\040', '\154', '\145', '\040', '\061', '\012',
'\166', '\131', '\153', '\040', '\166', '\141', '\040', '\061',
'\012', '\167', '\123', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\160', '\153', '\123', '\040', '\153', '\141',
'\040', '\061', '\012', '\172', '\113', '\147', '\040', '\156',
'\147', '\040', '\061', '\012', '\164', '\120', '\155', '\040',
'\164', '\150', '\040', '\061', '\012', '\120', '\155', '\152',
'\040', '\151', '\152', '\040', '\061', '\012', '\154', '\127',
'\165', '\040', '\161', '\165', '\040', '\061', '\012', '\130',
'\165', '\165', '\040', '\161', '\165', '\040', '\061', '\012',
'\152', '\143', '\130', '\040', '\143', '\150', '\040', '\061',
'\012', '\170', '\172', '\121', '\040', '\163', '\172', '\040',
'\061', '\012', '\107', '\172', '\167', '\040', '\163', '\172',
'\040', '\061', '\012', '\145', '\120', '\155', '\040', '\145',
'\162', '\040', '\061', '\012', '\146', '\167', '\127', '\040',
'\167', '\141', '\040', '\061', '\012', '\161', '\167', '\101',
'\040', '\161', '\165', '\040', '\061', '\012', '\166', '\121',
'\164', '\040', '\164', '\150', '\040', '\061', '\012', '\142',
'\170', '\120', '\040', '\142', '\145', '\040', '\061', '\012',
'\144', '\155', '\104', '\040', '\144', '\145', '\040', '\061',
'\012', '\141', '\167', '\121', '\040', '\141', '\156', '\040',
'\061', '\012', '\146', '\126', '\146', '\040', '\146', '\157',
'\040', '\061', '\012', '\142', '\167', '\131', '\040', '\167',
'\141', '\040', '\061', '\012', '\132', '\170', '\164', '\040',
'\164', '\150', '\040', '\061', '\012', '\130', '\150', '\153',
'\040', '\164', '\150', '\040', '\061', '\012', '\147', '\131',
'\153', '\040', '\156', '\147', '\040', '\061', '\012', '\172',
'\103', '\146', '\040', '\163', '\172', '\040', '\061', '\012',
'\171', '\146', '\121', '\040', '\156', '\171', '\040', '\061',
'\012', '\172', '\107', '\167', '\040', '\163', '\172', '\040',
'\061', '\012', '\147', '\166', '\105', '\040', '\156', '\147',
'\040', '\061', '\012', '\147', '\103', '\166', '\040', '\156',
'\147', '\040', '\061', '\012', '\157', '\120', '\146', '\040',
'\157', '\156', '\040', '\061', '\012', '\172', '\130', '\151',
'\040', '\151', '\156', '\040', '\061', '\012', '\150', '\166',
'\111', '\040', '\164', '\150', '\040', '\061', '\012', '\150',
'\172', '\123', '\040', '\164', '\150', '\040', '\061', '\012',
'\155', '\146', '\130', '\040', '\155', '\145', '\040', '\061',
'\012', '\144', '\120', '\144', '\040', '\144', '\145', '\040',
'\061', '\012', '\114', '\162', '\146', '\040', '\145', '\162',
'\040', '\061', '\012', '\154', '\162', '\107', '\040', '\145',
'\162', '\040', '\061', '\012', '\155', '\131', '\146', '\040',
'\155', '\145', '\040', '\061', '\012', '\150', '\116', '\152',
'\040', '\164', '\150', '\040', '\061', '\012', '\161', '\101',
'\152', '\040', '\161', '\165', '\040', '\061', '\012', '\163',
'\170', '\121', '\040', '\163', '\164', '\040', '\061', '\012',
'\153', '\124', '\154', '\040', '\154', '\145', '\040', '\061',
'\012', '\161', '\117', '\146', '\040', '\161', '\165', '\040',
'\061', '\012', '\112', '\144', '\170', '\040', '\144', '\145',
'\040', '\061', '\012', '\163', '\167', '\113', '\040', '\163',
'\172', '\040', '\061', '\012', '\152', '\121', '\142', '\040',
'\151', '\152', '\040', '\061', '\012', '\104', '\161', '\160',
'\040', '\161', '\165', '\040', '\061', '\012', '\143', '\127',
'\166', '\040', '\143', '\150', '\040', '\061', '\012', '\144',
'\170', '\105', '\040', '\144', '\145', '\040', '\061', '\012',
'\163', '\130', '\152', '\040', '\163', '\172', '\040', '\061',
'\012', '\156', '\166', '\102', '\040', '\141', '\156', '\040',
'\061', '\012', '\167', '\130', '\146', '\040', '\167', '\141',
'\040', '\061', '\012', '\103', '\161', '\151', '\040', '\161',
'\165', '\040', '\061', '\012', '\142', '\172', '\127', '\040',
'\163', '\172', '\040', '\061', '\012', '\162', '\122', '\146',
'\040', '\145', '\162', '\040', '\061', '\012', '\155', '\132',
'\152', '\040', '\151', '\152', '\040', '\061', '\012', '\142',
'\156', '\106', '\040', '\141', '\156', '\040', '\061', '\012',
'\161', '\141', '\107', '\040', '\141', '\156', '\040', '\061',
'\012', '\102', '\161', '\163', '\040', '\161', '\165', '\040',
'\061', '\012', '\154', '\115', '\156', '\040', '\141', '\156',
'\040', '\061', '\012', '\167', '\110', '\160', '\040', '\160',
'\162', '\040', '\061', '\012', '\114', '\152', '\143', '\040',
'\143', '\150', '\040', '\061', '\012', '\115', '\167', '\146',
'\040', '\167', '\141', '\040', '\061', '\012', '\160', '\172',
'\113', '\040', '\163', '\172', '\040', '\061', '\012', '\155',
'\120', '\142', '\040', '\155', '\145', '\040', '\061', '\012',
'\161', '\152', '\105', '\040', '\161', '\165', '\040', '\061',
'\012', '\167', '\122', '\162', '\040', '\145', '\162', '\040',
'\061', '\012', '\170', '\132', '\146', '\040', '\146', '\157',
'\040', '\061', '\012', '\156', '\161', '\107', '\040', '\141',
'\156', '\040', '\061', '\012', '\166', '\126', '\142', '\040',
'\166', '\141', '\040', '\061', '\012', '\160', '\152', '\103',
'\040', '\151', '\152', '\040', '\061', '\012', '\165', '\110',
'\154', '\040', '\161', '\165', '\040', '\061', '\012', '\152',
'\104', '\156', '\040', '\141', '\156', '\040', '\061', '\012',
'\160', '\161', '\130', '\040', '\161', '\165', '\040', '\061',
'\012', '\160', '\161', '\153', '\040', '\161', '\165', '\040',
'\061', '\012', '\170', '\147', '\125', '\040', '\156', '\147',
'\040', '\061', '\012', '\167', '\112', '\170', '\040', '\167',
'\141', '\040', '\061', '\012', '\172', '\156', '\113', '\040',
'\141', '\156', '\040', '\061', '\012', '\162', '\150', '\102',
'\040', '\164', '\150', '\040', '\061', '\012', '\166', '\104',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\163',
'\112', '\143', '\040', '\143', '\150', '\040', '\061', '\012',
'\130', '\153', '\150', '\040', '\164', '\150', '\040', '\061',
'\012', '\154', '\156', '\112', '\040', '\141', '\156', '\040',
'\061', '\012', '\142', '\122', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\146', '\172', '\101', '\040', '\163',
'\172', '\040', '\061', '\012', '\142', '\121', '\145', '\040',
'\145', '\162', '\040', '\061', '\012', '\124', '\170', '\167',
'\040', '\167', '\141', '\040', '\061', '\012', '\142', '\153',
'\107', '\040', '\153', '\141', '\040', '\061', '\012', '\171',
'\167', '\132', '\040', '\167', '\141', '\040', '\061', '\012',
'\172', '\127', '\143', '\040', '\143', '\150', '\040', '\061',
'\012', '\154', '\150', '\114', '\040', '\164', '\150', '\040',
'\061', '\012', '\147', '\155', '\106', '\040', '\156', '\147',
'\040', '\061', '\012', '\163', '\146', '\121', '\040', '\163',
'\172', '\040', '\061', '\012', '\172', '\155', '\107', '\040',
'\163', '\172', '\040', '\061', '\012', '\117', '\147', '\172',
'\040', '\156', '\147', '\040', '\061', '\012', '\170', '\165',
'\101', '\040', '\161', '\165', '\040', '\061', '\012', '\161',
'\101', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\172', '\104', '\167', '\040', '\163', '\172', '\040', '\061',
'\012', '\154', '\126', '\165', '\040', '\161', '\165', '\040',
'\061', '\012', '\170', '\122', '\167', '\040', '\167', '\141',
'\040', '\061', '\012', '\170', '\155', '\115', '\040', '\155',
'\145', '\040', '\061', '\012', '\160', '\170', '\102', '\040',
'\160', '\162', '\040', '\061', '\012', '\172', '\164', '\124',
'\040', '\164', '\150', '\040', '\061', '\012', '\153', '\172',
'\112', '\040', '\163', '\172', '\040', '\061', '\012', '\156',
'\106', '\172', '\040', '\141', '\156', '\040', '\061', '\012',
'\165', '\126', '\172', '\040', '\161', '\165', '\040', '\061',
'\012', '\160', '\156', '\121', '\040', '\141', '\156', '\040',
'\061', '\012', '\160', '\107', '\164', '\040', '\164', '\150',
'\040', '\061', '\012', '\130', '\144', '\156', '\040', '\141',
'\156', '\040', '\061', '\012', '\146', '\126', '\172', '\040',
'\163', '\172', '\040', '\061', '\012', '\115', '\150', '\147',
'\040', '\164', '\150', '\040', '\061', '\012', '\130', '\161',
'\157', '\040', '\161', '\165', '\040', '\061', '\012', '\163',
'\110', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\152', '\167', '\103', '\040', '\151', '\152', '\040', '\061',
'\012', '\166', '\153', '\107', '\040', '\166', '\141', '\040',
'\061', '\012', '\130', '\153', '\170', '\040', '\153', '\141',
'\040', '\061', '\012', '\164', '\122', '\147', '\040', '\164',
'\150', '\040', '\061', '\012', '\156', '\166', '\126', '\040',
'\141', '\156', '\040', '\061', '\012', '\161', '\167', '\107',
'\040', '\161', '\165', '\040', '\061', '\012', '\126', '\150',
'\150', '\040', '\164', '\150', '\040', '\061', '\012', '\172',
'\167', '\117', '\040', '\163', '\172', '\040', '\061', '\012',
'\161', '\121', '\142', '\040', '\161', '\165', '\040', '\061',
'\012', '\143', '\162', '\122', '\040', '\143', '\150', '\040',
'\061', '\012', '\115', '\162', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\157', '\121', '\145', '\040', '\145',
'\162', '\040', '\061', '\012', '\155', '\102', '\164', '\040',
'\164', '\150', '\040', '\061', '\012', '\166', '\125', '\171',
'\040', '\166', '\141', '\040', '\061', '\012', '\164', '\167',
'\127', '\040', '\164', '\150', '\040', '\061', '\012', '\121',
'\147', '\156', '\040', '\141', '\156', '\040', '\061', '\012',
'\116', '\170', '\165', '\040', '\161', '\165', '\040', '\061',
'\012', '\161', '\150', '\106', '\040', '\164', '\150', '\040',
'\061', '\012', '\170', '\160', '\130', '\040', '\160', '\162',
'\040', '\061', '\012', '\146', '\166', '\104', '\040', '\166',
'\141', '\040', '\061', '\012', '\103', '\166', '\171', '\040',
'\166', '\141', '\040', '\061', '\012', '\157', '\110', '\152',
'\040', '\157', '\156', '\040', '\061', '\012', '\121', '\161',
'\157', '\040', '\161', '\165', '\040', '\061', '\012', '\166',
'\131', '\144', '\040', '\144', '\145', '\040', '\061', '\012',
'\170', '\150', '\126', '\040', '\164', '\150', '\040', '\061',
'\012', '\146', '\132', '\146', '\040', '\146', '\157', '\040',
'\061', '\012', '\171', '\113', '\155', '\040', '\155', '\145',
'\040', '\061', '\012', '\170', '\131', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\146', '\143', '\125', '\040',
'\143', '\150', '\040', '\061', '\012', '\161', '\105', '\160',
'\040', '\161', '\165', '\040', '\061', '\012', '\152', '\130',
'\144', '\040', '\144', '\145', '\040', '\061', '\012', '\155',
'\154', '\121', '\040', '\154', '\145', '\040', '\061', '\012',
'\107', '\147', '\172', '\040', '\156', '\147', '\040', '\061',
'\012', '\143', '\114', '\160', '\040', '\143', '\150', '\040',
'\061', '\012', '\171', '\170', '\125', '\040', '\156', '\171',
'\040', '\061', '\012', '\147', '\166', '\112', '\040', '\156',
'\147', '\040', '\061', '\012', '\167', '\161', '\104', '\040',
'\161', '\165', '\040', '\061', '\012', '\166', '\163', '\116',
'\040', '\163', '\172', '\040', '\061', '\012', '\111', '\152',
'\146', '\040', '\151', '\152', '\040', '\061', '\012', '\152',
'\142', '\112', '\040', '\151', '\152', '\040', '\061', '\012',
'\142', '\115', '\170', '\040', '\142', '\145', '\040', '\061',
'\012', '\153', '\130', '\163', '\040', '\163', '\172', '\040',
'\061', '\012', '\147', '\162', '\124', '\040', '\156', '\147',
'\040', '\061', '\012', '\167', '\117', '\144', '\040', '\144',
'\145', '\040', '\061', '\012', '\160', '\107', '\167', '\040',
'\160', '\162', '\040', '\061', '\012', '\107', '\153', '\144',
'\040', '\144', '\145', '\040', '\061', '\012', '\161', '\103',
'\152', '\040', '\161', '\165', '\040', '\061', '\012', '\150',
'\161', '\131', '\040', '\164', '\150', '\040', '\061', '\012',
'\162', '\104', '\160', '\040', '\145', '\162', '\040', '\061',
'\012', '\156', '\121', '\164', '\040', '\164', '\150', '\040',
'\061', '\012', '\153', '\144', '\126', '\040', '\144', '\145',
'\040', '\061', '\012', '\142', '\147', '\123', '\040', '\156',
'\147', '\040', '\061', '\012', '\124', '\161', '\157', '\040',
'\161', '\165', '\040', '\061', '\012', '\146', '\105', '\152',
'\040', '\151', '\152', '\040', '\061', '\012', '\150', '\132',
'\163', '\040', '\164', '\150', '\040', '\061', '\012', '\152',
'\131', '\156', '\040', '\141', '\156', '\040', '\061', '\012',
'\142', '\120', '\170', '\040', '\142', '\145', '\040', '\061',
'\012', '\150', '\147', '\131', '\040', '\164', '\150', '\040',
'\061', '\012', '\120', '\166', '\171', '\040', '\166', '\141',
'\040', '\061', '\012', '\146', '\170', '\113', '\040', '\146',
'\157', '\040', '\061', '\012', '\110', '\167', '\167', '\040',
'\167', '\141', '\040', '\061', '\012', '\170', '\122', '\153',
'\040', '\153', '\141', '\040', '\061', '\012', '\144', '\155',
'\120', '\040', '\144', '\145', '\040', '\061', '\012', '\155',
'\143', '\131', '\040', '\143', '\150', '\040', '\061', '\012',
'\142', '\170', '\122', '\040', '\142', '\145', '\040', '\061',
'\012', '\114', '\163', '\154', '\040', '\154', '\145', '\040',
'\061', '\012', '\150', '\122', '\154', '\040', '\164', '\150',
'\040', '\061', '\012', '\151', '\167', '\121', '\040', '\151',
'\156', '\040', '\061', '\012', '\127', '\161', '\170', '\040',
'\161', '\165', '\040', '\061', '\012', '\153', '\146', '\126',
'\040', '\153', '\141', '\040', '\061', '\012', '\161', '\167',
'\116', '\040', '\161', '\165', '\040', '\061', '\012', '\121',
'\160', '\166', '\040', '\166', '\141', '\040', '\061', '\012',
'\155', '\162', '\117', '\040', '\145', '\162', '\040', '\061',
'\012', '\151', '\106', '\143', '\040', '\164', '\151', '\040',
'\061', '\012', '\167', '\172', '\104', '\040', '\163', '\172',
'\040', '\061', '\012', '\161', '\142', '\106', '\040', '\161',
'\165', '\040', '\061', '\012', '\170', '\146', '\123', '\040',
'\146', '\157', '\040', '\061', '\012', '\120', '\161', '\150',
'\040', '\164', '\150', '\040', '\061', '\012', '\170', '\131',
'\142', '\040', '\142', '\145', '\040', '\061', '\012', '\154',
'\104', '\150', '\040', '\164', '\150', '\040', '\061', '\012',
'\166', '\164', '\107', '\040', '\164', '\150', '\040', '\061',
'\012', '\130', '\172', '\165', '\040', '\161', '\165', '\040',
'\061', '\012', '\170', '\152', '\113', '\040', '\151', '\152',
'\040', '\061', '\012', '\152', '\104', '\170', '\040', '\151',
'\152', '\040', '\061', '\012', '\156', '\103', '\152', '\040',
'\141', '\156', '\040', '\061', '\012', '\155', '\103', '\153',
'\040', '\153', '\141', '\040', '\061', '\012', '\161', '\170',
'\120', '\040', '\161', '\165', '\040', '\061', '\012', '\157',
'\115', '\166', '\040', '\157', '\156', '\040', '\061', '\012',
'\143', '\147', '\131', '\040', '\143', '\150', '\040', '\061',
'\012', '\127', '\161', '\164', '\040', '\164', '\150', '\040',
'\061', '\012', '\153', '\153', '\121', '\040', '\153', '\141',
'\040', '\061', '\012', '\164', '\161', '\117', '\040', '\164',
'\150', '\040', '\061', '\012', '\152', '\156', '\103', '\040',
'\141', '\156', '\040', '\061', '\012', '\146', '\107', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\102', '\146',
'\166', '\040', '\166', '\141', '\040', '\061', '\012', '\166',
'\131', '\151', '\040', '\151', '\156', '\040', '\061', '\012',
'\160', '\143', '\114', '\040', '\143', '\150', '\040', '\061',
'\012', '\106', '\147', '\160', '\040', '\156', '\147', '\040',
'\061', '\012', '\152', '\164', '\122', '\040', '\164', '\150',
'\040', '\061', '\012', '\166', '\150', '\106', '\040', '\164',
'\150', '\040', '\061', '\012', '\167', '\125', '\151', '\040',
'\151', '\156', '\040', '\061', '\012', '\156', '\116', '\152',
'\040', '\141', '\156', '\040', '\061', '\012', '\152', '\124',
'\167', '\040', '\151', '\152', '\040', '\061', '\012', '\161',
'\163', '\115', '\040', '\161', '\165', '\040', '\061', '\012',
'\141', '\112', '\147', '\040', '\141', '\156', '\040', '\061',
'\012', '\152', '\121', '\145', '\040', '\145', '\162', '\040',
'\061', '\012', '\107', '\156', '\152', '\040', '\141', '\156',
'\040', '\061', '\012', '\146', '\155', '\115', '\040', '\155',
'\145', '\040', '\061', '\012', '\172', '\161', '\115', '\040',
'\161', '\165', '\040', '\061', '\012', '\147', '\152', '\132',
'\040', '\156', '\147', '\040', '\061', '\012', '\156', '\170',
'\110', '\040', '\141', '\156', '\040', '\061', '\012', '\143',
'\144', '\117', '\040', '\143', '\150', '\040', '\061', '\012',
'\141', '\101', '\170', '\040', '\141', '\156', '\040', '\061',
'\012', '\164', '\125', '\166', '\040', '\164', '\150', '\040',
'\061', '\012', '\150', '\130', '\153', '\040', '\164', '\150',
'\040', '\061', '\012', '\161', '\102', '\170', '\040', '\161',
'\165', '\040', '\061', '\012', '\164', '\147', '\113', '\040',
'\164', '\150', '\040', '\061', '\012', '\146', '\132', '\171',
'\040', '\156', '\171', '\040', '\061', '\012', '\112', '\153',
'\170', '\040', '\153', '\141', '\040', '\061', '\012', '\160',
'\166', '\104', '\040', '\166', '\141', '\040', '\061', '\012',
'\142', '\155', '\124', '\040', '\155', '\145', '\040', '\061',
'\012', '\157', '\131', '\170', '\040', '\157', '\156', '\040',
'\061', '\012', '\150', '\167', '\126', '\040', '\164', '\150',
'\040', '\061', '\012', '\155', '\152', '\102', '\040', '\151',
'\152', '\040', '\061', '\012', '\142', '\131', '\156', '\040',
'\141', '\156', '\040', '\061', '\012', '\151', '\110', '\170',
'\040', '\151', '\156', '\040', '\061', '\012', '\154', '\131',
'\150', '\040', '\164', '\150', '\040', '\061', '\012', '\161',
'\103', '\151', '\040', '\151', '\156', '\040', '\061', '\012',
'\146', '\150', '\122', '\040', '\164', '\150', '\040', '\061',
'\012', '\156', '\104', '\146', '\040', '\141', '\156', '\040',
'\061', '\012', '\150', '\103', '\144', '\040', '\164', '\150',
'\040', '\061', '\012', '\154', '\170', '\102', '\040', '\154',
'\145', '\040', '\061', '\012', '\145', '\130', '\152', '\040',
'\145', '\162', '\040', '\061', '\012', '\146', '\166', '\127',
'\040', '\166', '\141', '\040', '\061', '\012', '\143', '\143',
'\127', '\040', '\143', '\150', '\040', '\061', '\012', '\144',
'\124', '\143', '\040', '\143', '\150', '\040', '\061', '\012',
'\163', '\161', '\101', '\040', '\161', '\165', '\040', '\061',
'\012', '\146', '\116', '\164', '\040', '\164', '\150', '\040',
'\061', '\012', '\172', '\153', '\115', '\040', '\163', '\172',
'\040', '\061', '\012', '\154', '\122', '\166', '\040', '\154',
'\145', '\040', '\061', '\012', '\161', '\156', '\111', '\040',
'\141', '\156', '\040', '\061', '\012', '\170', '\167', '\103',
'\040', '\167', '\141', '\040', '\061', '\012', '\172', '\161',
'\131', '\040', '\161', '\165', '\040', '\061', '\012', '\171',
'\121', '\142', '\040', '\142', '\145', '\040', '\061', '\012',
'\170', '\162', '\103', '\040', '\145', '\162', '\040', '\061',
'\012', '\170', '\106', '\155', '\040', '\155', '\145', '\040',
'\061', '\012', '\157', '\145', '\121', '\040', '\145', '\162',
'\040', '\061', '\012', '\155', '\114', '\154', '\040', '\154',
'\145', '\040', '\061', '\012', '\152', '\167', '\124', '\040',
'\151', '\152', '\040', '\061', '\012', '\146', '\167', '\104',
'\040', '\167', '\141', '\040', '\061', '\012', '\166', '\160',
'\105', '\040', '\166', '\141', '\040', '\061', '\012', '\146',
'\154', '\131', '\040', '\154', '\145', '\040', '\061', '\012',
'\163', '\122', '\147', '\040', '\156', '\147', '\040', '\061',
'\012', '\166', '\123', '\144', '\040', '\144', '\145', '\040',
'\061', '\012', '\167', '\165', '\122', '\040', '\161', '\165',
'\040', '\061', '\012', '\167', '\162', '\111', '\040', '\145',
'\162', '\040', '\061', '\012', '\131', '\163', '\156', '\040',
'\163', '\164', '\040', '\061', '\012', '\126', '\150', '\152',
'\040', '\164', '\150', '\040', '\061', '\012', '\103', '\161',
'\150', '\040', '\164', '\150', '\040', '\061', '\012', '\131',
'\147', '\142', '\040', '\156', '\147', '\040', '\061', '\012',
'\150', '\120', '\161', '\040', '\164', '\150', '\040', '\061',
'\012', '\155', '\153', '\102', '\040', '\153', '\141', '\040',
'\061', '\012', '\164', '\122', '\161', '\040', '\164', '\150',
'\040', '\061', '\012', '\141', '\152', '\121', '\040', '\141',
'\156', '\040', '\061', '\012', '\150', '\143', '\122', '\040',
'\164', '\150', '\040', '\061', '\012', '\166', '\104', '\167',
'\040', '\166', '\141', '\040', '\061', '\012', '\160', '\121',
'\156', '\040', '\141', '\156', '\040', '\061', '\012', '\170',
'\145', '\125', '\040', '\145', '\162', '\040', '\061', '\012',
'\166', '\143', '\115', '\040', '\143', '\150', '\040', '\061',
'\012', '\172', '\126', '\143', '\040', '\143', '\150', '\040',
'\061', '\012', '\142', '\122', '\150', '\040', '\164', '\150',
'\040', '\061', '\012', '\165', '\106', '\170', '\040', '\161',
'\165', '\040', '\061', '\012', '\146', '\142', '\127', '\040',
'\142', '\145', '\040', '\061', '\012', '\165', '\125', '\166',
'\040', '\161', '\165', '\040', '\061', '\012', '\116', '\150',
'\166', '\040', '\164', '\150', '\040', '\061', '\012', '\131',
'\153', '\170', '\040', '\153', '\141', '\040', '\061', '\012',
'\127', '\164', '\160', '\040', '\164', '\150', '\040', '\061',
'\012', '\115', '\172', '\152', '\040', '\163', '\172', '\040',
'\061', '\012', '\156', '\160', '\124', '\040', '\151', '\156',
'\040', '\061', '\012', '\130', '\161', '\153', '\040', '\161',
'\165', '\040', '\061', '\012', '\170', '\167', '\116', '\040',
'\167', '\141', '\040', '\061', '\012', '\150', '\130', '\167',
'\040', '\164', '\150', '\040', '\061', '\012', '\172', '\114',
'\142', '\040', '\163', '\172', '\040', '\061', '\012', '\107',
'\170', '\171', '\040', '\156', '\171', '\040', '\061', '\012',
'\144', '\104', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\102', '\146', '\171', '\040', '\156', '\171', '\040',
'\061', '\012', '\146', '\153', '\170', '\040', '\153', '\141',
'\040', '\061', '\012', '\152', '\117', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\104', '\144', '\153', '\040',
'\144', '\145', '\040', '\061', '\012', '\116', '\152', '\160',
'\040', '\151', '\152', '\040', '\061', '\012', '\170', '\152',
'\112', '\040', '\151', '\152', '\040', '\061', '\012', '\161',
'\150', '\123', '\040', '\164', '\150', '\040', '\061', '\012',
'\121', '\167', '\155', '\040', '\155', '\145', '\040', '\061',
'\012', '\171', '\127', '\152', '\040', '\151', '\152', '\040',
'\061', '\012', '\156', '\106', '\166', '\040', '\141', '\156',
'\040', '\061', '\012', '\160', '\114', '\142', '\040', '\160',
'\162', '\040', '\061', '\012', '\161', '\142', '\102', '\040',
'\161', '\165', '\040', '\061', '\012', '\163', '\155', '\130',
'\040', '\163', '\172', '\040', '\061', '\012', '\164', '\156',
'\132', '\040', '\164', '\150', '\040', '\061', '\012', '\172',
'\121', '\150', '\040', '\164', '\150', '\040', '\061', '\012',
'\106', '\172', '\142', '\040', '\163', '\172', '\040', '\061',
'\012', '\143', '\116', '\142', '\040', '\143', '\150', '\040',
'\061', '\012', '\150', '\160', '\126', '\040', '\164', '\150',
'\040', '\061', '\012', '\102', '\170', '\172', '\040', '\163',
'\172', '\040', '\061', '\012', '\170', '\147', '\107', '\040',
'\156', '\147', '\040', '\061', '\012', '\122', '\154', '\152',
'\040', '\154', '\145', '\040', '\061', '\012', '\151', '\110',
'\161', '\040', '\151', '\156', '\040', '\061', '\012', '\163',
'\167', '\116', '\040', '\163', '\172', '\040', '\061', '\012',
'\116', '\152', '\166', '\040', '\166', '\141', '\040', '\061',
'\012', '\167', '\120', '\153', '\040', '\153', '\141', '\040',
'\061', '\012', '\157', '\122', '\166', '\040', '\157', '\156',
'\040', '\061', '\012', '\160', '\112', '\163', '\040', '\163',
'\172', '\040', '\061', '\012', '\153', '\132', '\167', '\040',
'\153', '\141', '\040', '\061', '\012', '\166', '\126', '\163',
'\040', '\163', '\164', '\040', '\061', '\012', '\126', '\142',
'\167', '\040', '\167', '\141', '\040', '\061', '\012', '\106',
'\146', '\150', '\040', '\164', '\150', '\040', '\061', '\012',
'\155', '\172', '\121', '\040', '\163', '\172', '\040', '\061',
'\012', '\107', '\166', '\154', '\040', '\154', '\145', '\040',
'\061', '\012', '\120', '\147', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\154', '\120', '\160', '\040', '\154',
'\145', '\040', '\061', '\012', '\166', '\103', '\166', '\040',
'\166', '\141', '\040', '\061', '\012', '\153', '\116', '\146',
'\040', '\153', '\141', '\040', '\061', '\012', '\142', '\155',
'\104', '\040', '\155', '\145', '\040', '\061', '\012', '\155',
'\127', '\164', '\040', '\164', '\150', '\040', '\061', '\012',
'\163', '\154', '\106', '\040', '\154', '\145', '\040', '\061',
'\012', '\161', '\151', '\130', '\040', '\151', '\156', '\040',
'\061', '\012', '\171', '\122', '\164', '\040', '\164', '\150',
'\040', '\061', '\012', '\154', '\161', '\170', '\040', '\161',
'\165', '\040', '\061', '\012', '\161', '\154', '\152', '\040',
'\161', '\165', '\040', '\061', '\012', '\163', '\146', '\132',
'\040', '\163', '\172', '\040', '\061', '\012', '\127', '\146',
'\171', '\040', '\156', '\171', '\040', '\061', '\012', '\166',
'\162', '\117', '\040', '\145', '\162', '\040', '\061', '\012',
'\147', '\170', '\124', '\040', '\156', '\147', '\040', '\061',
'\012', '\154', '\167', '\105', '\040', '\154', '\145', '\040',
'\061', '\012', '\161', '\144', '\112', '\040', '\161', '\165',
'\040', '\061', '\012', '\131', '\160', '\153', '\040', '\153',
'\141', '\040', '\061', '\012', '\121', '\160', '\146', '\040',
'\160', '\162', '\040', '\061', '\012', '\132', '\156', '\167',
'\040', '\141', '\156', '\040', '\061', '\012', '\142', '\146',
'\112', '\040', '\142', '\145', '\040', '\061', '\012', '\161',
'\121', '\171', '\040', '\161', '\165', '\040', '\061', '\012',
'\161', '\101', '\171', '\040', '\161', '\165', '\040', '\061',
'\012', '\141', '\161', '\127', '\040', '\141', '\156', '\040',
'\061', '\012', '\161', '\161', '\111', '\040', '\161', '\165',
'\040', '\061', '\012', '\114', '\167', '\147', '\040', '\156',
'\147', '\040', '\061', '\012', '\116', '\156', '\167', '\040',
'\141', '\156', '\040', '\061', '\012', '\143', '\114', '\166',
'\040', '\143', '\150', '\040', '\061', '\012', '\127', '\164',
'\170', '\040', '\164', '\150', '\040', '\061', '\012', '\161',
'\143', '\161', '\040', '\143', '\150', '\040', '\061', '\012',
'\163', '\152', '\122', '\040', '\163', '\172', '\040', '\061',
'\012', '\154', '\127', '\156', '\040', '\141', '\156', '\040',
'\061', '\012', '\132', '\155', '\170', '\040', '\155', '\145',
'\040', '\061', '\012', '\161', '\132', '\147', '\040', '\161',
'\165', '\040', '\061', '\012', '\164', '\131', '\172', '\040',
'\164', '\150', '\040', '\061', '\012', '\147', '\126', '\170',
'\040', '\156', '\147', '\040', '\061', '\012', '\155', '\130',
'\164', '\040', '\164', '\150', '\040', '\061', '\012', '\156',
'\167', '\112', '\040', '\141', '\156', '\040', '\061', '\012',
'\152', '\167', '\132', '\040', '\151', '\152', '\040', '\061',
'\012', '\154', '\167', '\114', '\040', '\154', '\145', '\040',
'\061', '\012', '\145', '\107', '\170', '\040', '\145', '\162',
'\040', '\061', '\012', '\123', '\161', '\153', '\040', '\161',
'\165', '\040', '\061', '\012', '\147', '\102', '\147', '\040',
'\156', '\147', '\040', '\061', '\012', '\172', '\163', '\123',
'\040', '\163', '\172', '\040', '\061', '\012', '\153', '\156',
'\121', '\040', '\141', '\156', '\040', '\061', '\012', '\116',
'\156', '\146', '\040', '\141', '\156', '\040', '\061', '\012',
'\161', '\155', '\124', '\040', '\161', '\165', '\040', '\061',
'\012', '\123', '\161', '\160', '\040', '\161', '\165', '\040',
'\061', '\012', '\146', '\146', '\121', '\040', '\146', '\157',
'\040', '\061', '\012', '\126', '\143', '\166', '\040', '\143',
'\150', '\040', '\061', '\012', '\146', '\155', '\104', '\040',
'\155', '\145', '\040', '\061', '\012', '\172', '\131', '\147',
'\040', '\156', '\147', '\040', '\061', '\012', '\142', '\101',
'\170', '\040', '\142', '\145', '\040', '\061', '\012', '\156',
'\142', '\127', '\040', '\141', '\156', '\040', '\061', '\012',
'\147', '\112', '\155', '\040', '\156', '\147', '\040', '\061',
'\012', '\112', '\167', '\156', '\040', '\141', '\156', '\040',
'\061', '\012', '\155', '\170', '\112', '\040', '\155', '\145',
'\040', '\061', '\012', '\170', '\142', '\103', '\040', '\142',
'\145', '\040', '\061', '\012', '\122', '\142', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\170', '\132', '\143',
'\040', '\143', '\150', '\040', '\061', '\012', '\142', '\112',
'\171', '\040', '\142', '\145', '\040', '\061', '\012', '\130',
'\171', '\153', '\040', '\153', '\141', '\040', '\061', '\012',
'\172', '\153', '\126', '\040', '\163', '\172', '\040', '\061',
'\012', '\165', '\157', '\106', '\040', '\161', '\165', '\040',
'\061', '\012', '\142', '\143', '\125', '\040', '\143', '\150',
'\040', '\061', '\012', '\143', '\132', '\161', '\040', '\143',
'\150', '\040', '\061', '\012', '\162', '\120', '\155', '\040',
'\145', '\162', '\040', '\061', '\012', '\162', '\107', '\156',
'\040', '\141', '\156', '\040', '\061', '\012', '\154', '\143',
'\114', '\040', '\143', '\150', '\040', '\061', '\012', '\162',
'\126', '\164', '\040', '\164', '\150', '\040', '\061', '\012',
'\103', '\147', '\167', '\040', '\156', '\147', '\040', '\061',
'\012', '\103', '\164', '\161', '\040', '\164', '\150', '\040',
'\061', '\012', '\145', '\107', '\166', '\040', '\145', '\162',
'\040', '\061', '\012', '\122', '\172', '\163', '\040', '\163',
'\164', '\040', '\061', '\012', '\121', '\150', '\172', '\040',
'\164', '\150', '\040', '\061', '\012', '\163', '\114', '\166',
'\040', '\166', '\141', '\040', '\061', '\012', '\126', '\161',
'\155', '\040', '\161', '\165', '\040', '\061', '\012', '\171',
'\144', '\112', '\040', '\144', '\145', '\040', '\061', '\012',
'\170', '\126', '\162', '\040', '\145', '\162', '\040', '\061',
'\012', '\164', '\114', '\153', '\040', '\164', '\150', '\040',
'\061', '\012', '\161', '\146', '\171', '\040', '\161', '\165',
'\040', '\061', '\012', '\167', '\170', '\126', '\040', '\167',
'\141', '\040', '\061', '\012', '\171', '\122', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\126', '\170', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\161', '\131',
'\172', '\040', '\161', '\165', '\040', '\061', '\012', '\172',
'\150', '\115', '\040', '\164', '\150', '\040', '\061', '\012',
'\155', '\114', '\156', '\040', '\141', '\156', '\040', '\061',
'\012', '\132', '\166', '\164', '\040', '\164', '\150', '\040',
'\061', '\012', '\106', '\166', '\155', '\040', '\166', '\141',
'\040', '\061', '\012', '\150', '\143', '\115', '\040', '\164',
'\150', '\040', '\061', '\012', '\115', '\167', '\160', '\040',
'\167', '\141', '\040', '\061', '\012', '\143', '\124', '\147',
'\040', '\143', '\150', '\040', '\061', '\012', '\154', '\130',
'\162', '\040', '\145', '\162', '\040', '\061', '\012', '\146',
'\121', '\145', '\040', '\145', '\162', '\040', '\061', '\012',
'\112', '\142', '\167', '\040', '\167', '\141', '\040', '\061',
'\012', '\171', '\146', '\107', '\040', '\156', '\171', '\040',
'\061', '\012', '\160', '\150', '\113', '\040', '\164', '\150',
'\040', '\061', '\012', '\147', '\152', '\110', '\040', '\156',
'\147', '\040', '\061', '\012', '\127', '\144', '\147', '\040',
'\144', '\145', '\040', '\061', '\012', '\160', '\120', '\156',
'\040', '\141', '\156', '\040', '\061', '\012', '\102', '\167',
'\147', '\040', '\156', '\147', '\040', '\061', '\012', '\172',
'\156', '\102', '\040', '\141', '\156', '\040', '\061', '\012',
'\146', '\167', '\112', '\040', '\167', '\141', '\040', '\061',
'\012', '\165', '\164', '\121', '\040', '\164', '\150', '\040',
'\061', '\012', '\143', '\152', '\103', '\040', '\143', '\150',
'\040', '\061', '\012', '\146', '\126', '\144', '\040', '\144',
'\145', '\040', '\061', '\012', '\143', '\124', '\155', '\040',
'\143', '\150', '\040', '\061', '\012', '\167', '\115', '\166',
'\040', '\166', '\141', '\040', '\061', '\012', '\113', '\147',
'\153', '\040', '\156', '\147', '\040', '\061', '\012', '\156',
'\122', '\144', '\040', '\141', '\156', '\040', '\061', '\012',
'\155', '\115', '\164', '\040', '\164', '\150', '\040', '\061',
'\012', '\170', '\152', '\121', '\040', '\151', '\152', '\040',
'\061', '\012', '\161', '\131', '\164', '\040', '\164', '\150',
'\040', '\061', '\012', '\163', '\131', '\152', '\040', '\163',
'\164', '\040', '\061', '\012', '\152', '\116', '\143', '\040',
'\143', '\150', '\040', '\061', '\012', '\161', '\130', '\164',
'\040', '\164', '\150', '\040', '\061', '\012', '\167', '\172',
'\102', '\040', '\163', '\172', '\040', '\061', '\012', '\123',
'\152', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\161', '\164', '\106', '\040', '\164', '\150', '\040', '\061',
'\012', '\167', '\131', '\151', '\040', '\151', '\156', '\040',
'\061', '\012', '\147', '\154', '\124', '\040', '\156', '\147',
'\040', '\061', '\012', '\125', '\165', '\147', '\040', '\156',
'\147', '\040', '\061', '\012', '\165', '\117', '\160', '\040',
'\161', '\165', '\040', '\061', '\012', '\151', '\102', '\170',
'\040', '\151', '\156', '\040', '\061', '\012', '\122', '\161',
'\164', '\040', '\164', '\150', '\040', '\061', '\012', '\172',
'\127', '\152', '\040', '\163', '\172', '\040', '\061', '\012',
'\110', '\143', '\170', '\040', '\143', '\150', '\040', '\061',
'\012', '\152', '\116', '\144', '\040', '\144', '\145', '\040',
'\061', '\012', '\172', '\121', '\162', '\040', '\145', '\162',
'\040', '\061', '\012', '\151', '\110', '\144', '\040', '\151',
'\156', '\040', '\061', '\012', '\127', '\160', '\170', '\040',
'\160', '\162', '\040', '\061', '\012', '\156', '\146', '\131',
'\040', '\141', '\156', '\040', '\061', '\012', '\122', '\153',
'\172', '\040', '\163', '\172', '\040', '\061', '\012', '\113',
'\161', '\147', '\040', '\161', '\165', '\040', '\061', '\012',
'\107', '\146', '\166', '\040', '\166', '\141', '\040', '\061',
'\012', '\153', '\162', '\103', '\040', '\145', '\162', '\040',
'\061', '\012', '\127', '\150', '\143', '\040', '\164', '\150',
'\040', '\061', '\012', '\154', '\152', '\115', '\040', '\154',
'\145', '\040', '\061', '\012', '\171', '\170', '\107', '\040',
'\156', '\171', '\040', '\061', '\012', '\146', '\160', '\127',
'\040', '\160', '\162', '\040', '\061', '\012', '\142', '\143',
'\106', '\040', '\143', '\150', '\040', '\061', '\012', '\153',
'\162', '\170', '\040', '\145', '\162', '\040', '\061', '\012',
'\165', '\104', '\164', '\040', '\164', '\150', '\040', '\061',
'\012', '\106', '\172', '\157', '\040', '\157', '\156', '\040',
'\061', '\012', '\167', '\120', '\156', '\040', '\141', '\156',
'\040', '\061', '\012', '\114', '\146', '\152', '\040', '\151',
'\152', '\040', '\061', '\012', '\102', '\153', '\160', '\040',
'\153', '\141', '\040', '\061', '\012', '\130', '\153', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\152', '\170',
'\110', '\040', '\151', '\152', '\040', '\061', '\012', '\166',
'\111', '\152', '\040', '\166', '\141', '\040', '\061', '\012',
'\147', '\124', '\143', '\040', '\143', '\150', '\040', '\061',
'\012', '\150', '\105', '\152', '\040', '\164', '\150', '\040',
'\061', '\012', '\146', '\161', '\102', '\040', '\161', '\165',
'\040', '\061', '\012', '\152', '\154', '\104', '\040', '\154',
'\145', '\040', '\061', '\012', '\164', '\106', '\146', '\040',
'\164', '\150', '\040', '\061', '\012', '\116', '\146', '\167',
'\040', '\167', '\141', '\040', '\061', '\012', '\106', '\161',
'\145', '\040', '\161', '\165', '\040', '\061', '\012', '\124',
'\172', '\160', '\040', '\163', '\172', '\040', '\061', '\012',
'\163', '\112', '\162', '\040', '\145', '\162', '\040', '\061',
'\012', '\161', '\111', '\164', '\040', '\164', '\150', '\040',
'\061', '\012', '\144', '\106', '\142', '\040', '\144', '\145',
'\040', '\061', '\012', '\161', '\172', '\105', '\040', '\161',
'\165', '\040', '\061', '\012', '\155', '\126', '\166', '\040',
'\166', '\141', '\040', '\061', '\012', '\126', '\161', '\141',
'\040', '\141', '\156', '\040', '\061', '\012', '\142', '\161',
'\115', '\040', '\161', '\165', '\040', '\061', '\012', '\155',
'\144', '\112', '\040', '\144', '\145', '\040', '\061', '\012',
'\144', '\111', '\160', '\040', '\144', '\145', '\040', '\061',
'\012', '\132', '\156', '\170', '\040', '\141', '\156', '\040',
'\061', '\012', '\152', '\153', '\113', '\040', '\151', '\152',
'\040', '\061', '\012', '\162', '\146', '\121', '\040', '\145',
'\162', '\040', '\061', '\012', '\170', '\153', '\111', '\040',
'\153', '\165', '\040', '\061', '\012', '\146', '\111', '\157',
'\040', '\162', '\157', '\040', '\061', '\012', '\154', '\161',
'\126', '\040', '\161', '\165', '\040', '\061', '\012', '\121',
'\160', '\144', '\040', '\144', '\145', '\040', '\061', '\012',
'\160', '\101', '\170', '\040', '\160', '\162', '\040', '\061',
'\012', '\162', '\162', '\121', '\040', '\145', '\162', '\040',
'\061', '\012', '\142', '\111', '\165', '\040', '\161', '\165',
'\040', '\061', '\012', '\170', '\104', '\167', '\040', '\167',
'\141', '\040', '\061', '\012', '\157', '\110', '\170', '\040',
'\157', '\156', '\040', '\061', '\012', '\167', '\112', '\167',
'\040', '\167', '\141', '\040', '\061', '\012', '\103', '\161',
'\166', '\040', '\161', '\165', '\040', '\061', '\012', '\171',
'\166', '\102', '\040', '\166', '\141', '\040', '\061', '\012',
'\171', '\161', '\125', '\040', '\161', '\165', '\040', '\061',
'\012', '\162', '\114', '\170', '\040', '\145', '\162', '\040',
'\061', '\012', '\106', '\172', '\170', '\040', '\163', '\172',
'\040', '\061', '\012', '\144', '\132', '\146', '\040', '\144',
'\145', '\040', '\061', '\012', '\116', '\161', '\150', '\040',
'\164', '\150', '\040', '\061', '\012', '\122', '\156', '\172',
'\040', '\141', '\156', '\040', '\061', '\012', '\150', '\124',
'\143', '\040', '\164', '\150', '\040', '\061', '\012', '\142',
'\126', '\142', '\040', '\142', '\145', '\040', '\061', '\012',
'\106', '\144', '\155', '\040', '\144', '\145', '\040', '\061',
'\012', '\166', '\146', '\166', '\040', '\166', '\141', '\040',
'\061', '\012', '\150', '\167', '\123', '\040', '\164', '\150',
'\040', '\061', '\012', '\172', '\120', '\164', '\040', '\164',
'\150', '\040', '\061', '\012', '\107', '\170', '\166', '\040',
'\166', '\141', '\040', '\061', '\012', '\106', '\166', '\164',
'\040', '\164', '\150', '\040', '\061', '\012', '\155', '\132',
'\162', '\040', '\145', '\162', '\040', '\061', '\012', '\172',
'\126', '\162', '\040', '\145', '\162', '\040', '\061', '\012',
'\155', '\102', '\143', '\040', '\143', '\150', '\040', '\061',
'\012', '\146', '\130', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\120', '\154', '\167', '\040', '\154', '\145',
'\040', '\061', '\012', '\116', '\154', '\170', '\040', '\154',
'\145', '\040', '\061', '\012', '\152', '\103', '\144', '\040',
'\144', '\145', '\040', '\061', '\012', '\113', '\167', '\166',
'\040', '\166', '\141', '\040', '\061', '\012', '\112', '\161',
'\141', '\040', '\141', '\156', '\040', '\061', '\012', '\172',
'\107', '\163', '\040', '\163', '\164', '\040', '\061', '\012',
'\146', '\165', '\126', '\040', '\161', '\165', '\040', '\061',
'\012', '\160', '\172', '\114', '\040', '\163', '\172', '\040',
'\061', '\012', '\151', '\106', '\170', '\040', '\151', '\156',
'\040', '\061', '\012', '\146', '\124', '\155', '\040', '\155',
'\145', '\040', '\061', '\012', '\171', '\127', '\144', '\040',
'\144', '\145', '\040', '\061', '\012', '\143', '\110', '\166',
'\040', '\143', '\150', '\040', '\061', '\012', '\146', '\106',
'\153', '\040', '\153', '\141', '\040', '\061', '\012', '\155',
'\161', '\144', '\040', '\161', '\165', '\040', '\061', '\012',
'\141', '\121', '\153', '\040', '\141', '\156', '\040', '\061',
'\012', '\165', '\104', '\146', '\040', '\161', '\165', '\040',
'\061', '\012', '\126', '\142', '\146', '\040', '\142', '\145',
'\040', '\061', '\012', '\160', '\147', '\112', '\040', '\156',
'\147', '\040', '\061', '\012', '\146', '\153', '\116', '\040',
'\153', '\141', '\040', '\061', '\012', '\160', '\102', '\155',
'\040', '\155', '\145', '\040', '\061', '\012', '\102', '\144',
'\166', '\040', '\144', '\145', '\040', '\061', '\012', '\152',
'\155', '\127', '\040', '\151', '\152', '\040', '\061', '\012',
'\112', '\166', '\166', '\040', '\166', '\141', '\040', '\061',
'\012', '\130', '\160', '\153', '\040', '\153', '\141', '\040',
'\061', '\012', '\161', '\121', '\143', '\040', '\143', '\150',
'\040', '\061', '\012', '\153', '\144', '\107', '\040', '\144',
'\145', '\040', '\061', '\012', '\161', '\153', '\120', '\040',
'\161', '\165', '\040', '\061', '\012', '\143', '\123', '\144',
'\040', '\143', '\150', '\040', '\061', '\012', '\106', '\144',
'\143', '\040', '\143', '\150', '\040', '\061', '\012', '\161',
'\147', '\113', '\040', '\161', '\165', '\040', '\061', '\012',
'\161', '\144', '\110', '\040', '\161', '\165', '\040', '\061',
'\012', '\165', '\116', '\166', '\040', '\161', '\165', '\040',
'\061', '\012', '\145', '\126', '\164', '\040', '\164', '\150',
'\040', '\061', '\012', '\144', '\146', '\101', '\040', '\144',
'\145', '\040', '\061', '\012', '\110', '\172', '\171', '\040',
'\163', '\172', '\040', '\061', '\012', '\154', '\127', '\143',
'\040', '\143', '\150', '\040', '\061', '\012', '\166', '\170',
'\110', '\040', '\166', '\141', '\040', '\061', '\012', '\150',
'\170', '\127', '\040', '\164', '\150', '\040', '\061', '\012',
'\113', '\150', '\160', '\040', '\164', '\150', '\040', '\061',
'\012', '\170', '\121', '\142', '\040', '\142', '\145', '\040',
'\061', '\012', '\160', '\167', '\124', '\040', '\160', '\162',
'\040', '\061', '\012', '\114', '\167', '\146', '\040', '\167',
'\141', '\040', '\061', '\012', '\172', '\104', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\153', '\170', '\113',
'\040', '\153', '\141', '\040', '\061', '\012', '\155', '\164',
'\131', '\040', '\164', '\150', '\040', '\061', '\012', '\142',
'\150', '\124', '\040', '\164', '\150', '\040', '\061', '\012',
'\171', '\167', '\122', '\040', '\167', '\141', '\040', '\061',
'\012', '\152', '\111', '\141', '\040', '\141', '\156', '\040',
'\061', '\012', '\127', '\172', '\145', '\040', '\145', '\162',
'\040', '\061', '\012', '\150', '\161', '\113', '\040', '\164',
'\150', '\040', '\061', '\012', '\146', '\154', '\132', '\040',
'\154', '\145', '\040', '\061', '\012', '\161', '\115', '\151',
'\040', '\151', '\156', '\040', '\061', '\012', '\167', '\160',
'\122', '\040', '\167', '\141', '\040', '\061', '\012', '\161',
'\110', '\150', '\040', '\164', '\150', '\040', '\061', '\012',
'\141', '\117', '\167', '\040', '\141', '\156', '\040', '\061',
'\012', '\144', '\153', '\125', '\040', '\144', '\145', '\040',
'\061', '\012', '\166', '\122', '\162', '\040', '\145', '\162',
'\040', '\061', '\012', '\166', '\152', '\130', '\040', '\166',
'\141', '\040', '\061', '\012', '\143', '\165', '\121', '\040',
'\143', '\150', '\040', '\061', '\012', '\161', '\155', '\112',
'\040', '\161', '\165', '\040', '\061', '\012', '\165', '\165',
'\112', '\040', '\157', '\165', '\040', '\061', '\012', '\171',
'\127', '\170', '\040', '\156', '\171', '\040', '\061', '\012',
'\150', '\125', '\146', '\040', '\164', '\150', '\040', '\061',
'\012', '\166', '\172', '\120', '\040', '\166', '\141', '\040',
'\061', '\012', '\162', '\123', '\170', '\040', '\145', '\162',
'\040', '\061', '\012', '\161', '\147', '\171', '\040', '\161',
'\165', '\040', '\061', '\012', '\122', '\172', '\146', '\040',
'\163', '\172', '\040', '\061', '\012', '\172', '\152', '\102',
'\040', '\163', '\172', '\040', '\061', '\012', '\123', '\152',
'\170', '\040', '\151', '\152', '\040', '\061', '\012', '\170',
'\146', '\101', '\040', '\146', '\157', '\040', '\061', '\012',
'\146', '\110', '\152', '\040', '\151', '\152', '\040', '\061',
'\012', '\161', '\153', '\102', '\040', '\161', '\165', '\040',
'\061', '\012', '\143', '\144', '\106', '\040', '\143', '\150',
'\040', '\061', '\012', '\146', '\127', '\152', '\040', '\151',
'\152', '\040', '\061', '\012', '\152', '\142', '\101', '\040',
'\151', '\152', '\040', '\061', '\012', '\102', '\155', '\142',
'\040', '\155', '\145', '\040', '\061', '\012', '\171', '\152',
'\147', '\040', '\156', '\147', '\040', '\061', '\012', '\162',
'\170', '\132', '\040', '\145', '\162', '\040', '\061', '\012',
'\126', '\155', '\162', '\040', '\145', '\162', '\040', '\061',
'\012', '\151', '\111', '\161', '\040', '\151', '\156', '\040',
'\061', '\012', '\127', '\147', '\154', '\040', '\156', '\147',
'\040', '\061', '\012', '\155', '\122', '\160', '\040', '\155',
'\145', '\040', '\061', '\012', '\167', '\166', '\123', '\040',
'\166', '\141', '\040', '\061', '\012', '\125', '\166', '\171',
'\040', '\166', '\141', '\040', '\061', '\012', '\171', '\160',
'\121', '\040', '\160', '\162', '\040', '\061', '\012', '\166',
'\106', '\167', '\040', '\166', '\157', '\040', '\061', '\012',
'\146', '\161', '\105', '\040', '\161', '\165', '\040', '\061',
'\012', '\163', '\167', '\112', '\040', '\163', '\164', '\040',
'\061', '\012', '\112', '\162', '\170', '\040', '\145', '\162',
'\040', '\061', '\012', '\143', '\170', '\105', '\040', '\143',
'\150', '\040', '\061', '\012', '\154', '\132', '\153', '\040',
'\154', '\145', '\040', '\061', '\012', '\146', '\126', '\156',
'\040', '\141', '\156', '\040', '\061', '\012', '\142', '\150',
'\132', '\040', '\164', '\150', '\040', '\061', '\012', '\152',
'\150', '\122', '\040', '\164', '\150', '\040', '\061', '\012',
'\166', '\123', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\171', '\121', '\172', '\040', '\163', '\172', '\040',
'\061', '\012', '\146', '\110', '\166', '\040', '\166', '\141',
'\040', '\061', '\012', '\166', '\165', '\116', '\040', '\161',
'\165', '\040', '\061', '\012', '\152', '\160', '\107', '\040',
'\151', '\152', '\040', '\061', '\012', '\120', '\153', '\172',
'\040', '\163', '\172', '\040', '\061', '\012', '\147', '\121',
'\142', '\040', '\156', '\147', '\040', '\061', '\012', '\160',
'\106', '\163', '\040', '\163', '\164', '\040', '\061', '\012',
'\107', '\152', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\150', '\163', '\113', '\040', '\164', '\150', '\040',
'\061', '\012', '\164', '\167', '\170', '\040', '\164', '\150',
'\040', '\061', '\012', '\171', '\171', '\121', '\040', '\156',
'\171', '\040', '\061', '\012', '\144', '\161', '\106', '\040',
'\161', '\165', '\040', '\061', '\012', '\142', '\110', '\150',
'\040', '\164', '\150', '\040', '\061', '\012', '\161', '\115',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\161',
'\113', '\166', '\040', '\161', '\165', '\040', '\061', '\012',
'\172', '\114', '\147', '\040', '\156', '\147', '\040', '\061',
'\012', '\152', '\155', '\117', '\040', '\151', '\152', '\040',
'\061', '\012', '\167', '\102', '\153', '\040', '\153', '\141',
'\040', '\061', '\012', '\160', '\152', '\121', '\040', '\151',
'\152', '\040', '\061', '\012', '\170', '\132', '\166', '\040',
'\166', '\141', '\040', '\061', '\012', '\161', '\111', '\165',
'\040', '\165', '\156', '\040', '\061', '\012', '\171', '\143',
'\131', '\040', '\143', '\150', '\040', '\061', '\012', '\155',
'\104', '\146', '\040', '\155', '\145', '\040', '\061', '\012',
'\171', '\112', '\163', '\040', '\163', '\164', '\040', '\061',
'\012', '\111', '\163', '\170', '\040', '\163', '\164', '\040',
'\061', '\012', '\121', '\161', '\162', '\040', '\161', '\165',
'\040', '\061', '\012', '\106', '\153', '\167', '\040', '\153',
'\141', '\040', '\061', '\012', '\103', '\160', '\152', '\040',
'\151', '\152', '\040', '\061', '\012', '\131', '\166', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\172', '\152',
'\107', '\040', '\163', '\172', '\040', '\061', '\012', '\147',
'\107', '\143', '\040', '\143', '\150', '\040', '\061', '\012',
'\130', '\144', '\155', '\040', '\144', '\145', '\040', '\061',
'\012', '\150', '\102', '\166', '\040', '\164', '\150', '\040',
'\061', '\012', '\127', '\170', '\152', '\040', '\151', '\152',
'\040', '\061', '\012', '\131', '\167', '\142', '\040', '\157',
'\167', '\040', '\061', '\012', '\126', '\164', '\161', '\040',
'\164', '\150', '\040', '\061', '\012', '\164', '\152', '\131',
'\040', '\164', '\150', '\040', '\061', '\012', '\152', '\104',
'\152', '\040', '\151', '\152', '\040', '\061', '\012', '\165',
'\107', '\144', '\040', '\161', '\165', '\040', '\061', '\012',
'\167', '\166', '\106', '\040', '\166', '\141', '\040', '\061',
'\012', '\165', '\161', '\147', '\040', '\161', '\165', '\040',
'\061', '\012', '\122', '\167', '\160', '\040', '\160', '\162',
'\040', '\061', '\012', '\102', '\147', '\142', '\040', '\156',
'\147', '\040', '\061', '\012', '\155', '\156', '\125', '\040',
'\141', '\156', '\040', '\061', '\012', '\144', '\160', '\111',
'\040', '\144', '\145', '\040', '\061', '\012', '\167', '\113',
'\144', '\040', '\144', '\145', '\040', '\061', '\012', '\171',
'\130', '\172', '\040', '\163', '\172', '\040', '\061', '\012',
'\153', '\114', '\144', '\040', '\144', '\145', '\040', '\061',
'\012', '\147', '\131', '\170', '\040', '\156', '\147', '\040',
'\061', '\012', '\161', '\170', '\153', '\040', '\161', '\165',
'\040', '\061', '\012', '\110', '\150', '\171', '\040', '\164',
'\150', '\040', '\061', '\012', '\146', '\160', '\112', '\040',
'\160', '\162', '\040', '\061', '\012', '\143', '\126', '\143',
'\040', '\143', '\150', '\040', '\061', '\012', '\153', '\126',
'\166', '\040', '\166', '\141', '\040', '\061', '\012', '\112',
'\172', '\163', '\040', '\163', '\164', '\040', '\061', '\012',
'\156', '\104', '\167', '\040', '\141', '\156', '\040', '\061',
'\012', '\164', '\152', '\106', '\040', '\164', '\150', '\040',
'\061', '\012', '\142', '\132', '\152', '\040', '\151', '\152',
'\040', '\061', '\012', '\155', '\161', '\114', '\040', '\161',
'\165', '\040', '\061', '\012', '\150', '\106', '\164', '\040',
'\164', '\150', '\040', '\061', '\012', '\156', '\116', '\167',
'\040', '\141', '\156', '\040', '\061', '\012', '\167', '\106',
'\166', '\040', '\166', '\141', '\040', '\061', '\012', '\147',
'\110', '\143', '\040', '\143', '\150', '\040', '\061', '\012',
'\161', '\122', '\170', '\040', '\161', '\165', '\040', '\061',
'\012', '\112', '\170', '\150', '\040', '\164', '\150', '\040',
'\061', '\012', '\126', '\160', '\166', '\040', '\166', '\141',
'\040', '\061', '\012', '\156', '\115', '\153', '\040', '\141',
'\156', '\040', '\061', '\012', '\164', '\152', '\116', '\040',
'\164', '\150', '\040', '\061', '\012', '\146', '\150', '\121',
'\040', '\164', '\150', '\040', '\061', '\012', '\142', '\160',
'\104', '\040', '\160', '\162', '\040', '\061', '\012', '\104',
'\146', '\147', '\040', '\156', '\147', '\040', '\061', '\012',
'\152', '\171', '\117', '\040', '\151', '\152', '\040', '\061',
'\012', '\152', '\150', '\126', '\040', '\164', '\150', '\040',
'\061', '\012', '\153', '\126', '\153', '\040', '\153', '\141',
'\040', '\061', '\012', '\156', '\113', '\143', '\040', '\141',
'\156', '\040', '\061', '\012', '\152', '\153', '\112', '\040',
'\151', '\152', '\040', '\061', '\012', '\143', '\167', '\123',
'\040', '\143', '\150', '\040', '\061', '\012', '\157', '\104',
'\146', '\040', '\157', '\156', '\040', '\061', '\012', '\155',
'\153', '\131', '\040', '\153', '\141', '\040', '\061', '\012',
'\147', '\144', '\126', '\040', '\156', '\147', '\040', '\061',
'\012', '\130', '\150', '\142', '\040', '\164', '\150', '\040',
'\061', '\012', '\152', '\125', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\141', '\112', '\146', '\040', '\141',
'\156', '\040', '\061', '\012', '\121', '\170', '\147', '\040',
'\156', '\147', '\040', '\061', '\012', '\170', '\172', '\123',
'\040', '\163', '\172', '\040', '\061', '\012', '\166', '\125',
'\167', '\040', '\166', '\141', '\040', '\061', '\012', '\150',
'\124', '\152', '\040', '\164', '\150', '\040', '\061', '\012',
'\157', '\126', '\164', '\040', '\164', '\150', '\040', '\061',
'\012', '\172', '\144', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\146', '\110', '\163', '\040', '\163', '\164',
'\040', '\061', '\012', '\170', '\113', '\153', '\040', '\153',
'\141', '\040', '\061', '\012', '\142', '\106', '\143', '\040',
'\143', '\150', '\040', '\061', '\012', '\147', '\127', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\131', '\161',
'\141', '\040', '\141', '\156', '\040', '\061', '\012', '\144',
'\155', '\110', '\040', '\144', '\145', '\040', '\061', '\012',
'\124', '\164', '\161', '\040', '\164', '\150', '\040', '\061',
'\012', '\151', '\121', '\143', '\040', '\143', '\150', '\040',
'\061', '\012', '\152', '\106', '\150', '\040', '\151', '\152',
'\040', '\061', '\012', '\146', '\143', '\131', '\040', '\143',
'\150', '\040', '\061', '\012', '\146', '\163', '\122', '\040',
'\163', '\164', '\040', '\061', '\012', '\151', '\127', '\147',
'\040', '\151', '\156', '\040', '\061', '\012', '\130', '\171',
'\152', '\040', '\151', '\152', '\040', '\061', '\012', '\130',
'\152', '\163', '\040', '\163', '\164', '\040', '\061', '\012',
'\170', '\160', '\142', '\040', '\160', '\162', '\040', '\061',
'\012', '\154', '\172', '\131', '\040', '\154', '\145', '\040',
'\061', '\012', '\160', '\172', '\147', '\040', '\156', '\147',
'\040', '\061', '\012', '\144', '\126', '\167', '\040', '\144',
'\145', '\040', '\061', '\012', '\111', '\152', '\143', '\040',
'\143', '\150', '\040', '\061', '\012', '\146', '\166', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\126', '\156',
'\142', '\040', '\141', '\156', '\040', '\061', '\012', '\172',
'\144', '\110', '\040', '\144', '\145', '\040', '\061', '\012',
'\143', '\104', '\144', '\040', '\143', '\150', '\040', '\061',
'\012', '\167', '\161', '\111', '\040', '\161', '\165', '\040',
'\061', '\012', '\171', '\146', '\125', '\040', '\156', '\171',
'\040', '\061', '\012', '\161', '\157', '\110', '\040', '\161',
'\165', '\040', '\061', '\012', '\170', '\153', '\167', '\040',
'\153', '\141', '\040', '\061', '\012', '\113', '\143', '\153',
'\040', '\143', '\150', '\040', '\061', '\012', '\155', '\125',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\172',
'\127', '\155', '\040', '\163', '\172', '\040', '\061', '\012',
'\102', '\146', '\152', '\040', '\151', '\152', '\040', '\061',
'\012', '\162', '\121', '\152', '\040', '\145', '\162', '\040',
'\061', '\012', '\161', '\145', '\127', '\040', '\161', '\165',
'\040', '\061', '\012', '\161', '\160', '\103', '\040', '\161',
'\165', '\040', '\061', '\012', '\157', '\161', '\115', '\040',
'\161', '\165', '\040', '\061', '\012', '\160', '\172', '\117',
'\040', '\163', '\172', '\040', '\061', '\012', '\143', '\152',
'\121', '\040', '\143', '\150', '\040', '\061', '\012', '\172',
'\124', '\170', '\040', '\163', '\172', '\040', '\061', '\012',
'\147', '\122', '\167', '\040', '\156', '\147', '\040', '\061',
'\012', '\153', '\144', '\121', '\040', '\144', '\145', '\040',
'\061', '\012', '\167', '\142', '\121', '\040', '\167', '\141',
'\040', '\061', '\012', '\121', '\160', '\152', '\040', '\151',
'\152', '\040', '\061', '\012', '\172', '\111', '\143', '\040',
'\143', '\150', '\040', '\061', '\012', '\171', '\170', '\116',
'\040', '\156', '\171', '\040', '\061', '\012', '\156', '\103',
'\153', '\040', '\141', '\156', '\040', '\061', '\012', '\112',
'\161', '\172', '\040', '\161', '\165', '\040', '\061', '\012',
'\144', '\105', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\147', '\144', '\105', '\040', '\156', '\147', '\040',
'\061', '\012', '\167', '\103', '\147', '\040', '\156', '\147',
'\040', '\061', '\012', '\160', '\121', '\164', '\040', '\164',
'\150', '\040', '\061', '\012', '\166', '\113', '\145', '\040',
'\145', '\162', '\040', '\061', '\012', '\124', '\152', '\155',
'\040', '\151', '\152', '\040', '\061', '\012', '\132', '\143',
'\171', '\040', '\143', '\150', '\040', '\061', '\012', '\153',
'\155', '\122', '\040', '\153', '\141', '\040', '\061', '\012',
'\143', '\124', '\160', '\040', '\143', '\150', '\040', '\061',
'\012', '\142', '\161', '\105', '\040', '\161', '\165', '\040',
'\061', '\012', '\166', '\166', '\132', '\040', '\166', '\141',
'\040', '\061', '\012', '\143', '\114', '\167', '\040', '\143',
'\150', '\040', '\061', '\012', '\157', '\111', '\167', '\040',
'\157', '\156', '\040', '\061', '\012', '\170', '\152', '\107',
'\040', '\151', '\152', '\040', '\061', '\012', '\166', '\164',
'\125', '\040', '\164', '\150', '\040', '\061', '\012', '\150',
'\143', '\110', '\040', '\164', '\150', '\040', '\061', '\012',
'\170', '\147', '\124', '\040', '\156', '\147', '\040', '\061',
'\012', '\166', '\161', '\122', '\040', '\161', '\165', '\040',
'\061', '\012', '\167', '\165', '\115', '\040', '\161', '\165',
'\040', '\061', '\012', '\170', '\163', '\131', '\040', '\163',
'\164', '\040', '\061', '\012', '\152', '\103', '\165', '\040',
'\161', '\165', '\040', '\061', '\012', '\106', '\142', '\156',
'\040', '\141', '\156', '\040', '\061', '\012', '\143', '\161',
'\110', '\040', '\143', '\150', '\040', '\061', '\012', '\130',
'\152', '\172', '\040', '\151', '\152', '\040', '\061', '\012',
'\146', '\147', '\122', '\040', '\156', '\147', '\040', '\061',
'\012', '\171', '\151', '\130', '\040', '\151', '\156', '\040',
'\061', '\012', '\161', '\156', '\117', '\040', '\141', '\156',
'\040', '\061', '\012', '\167', '\155', '\116', '\040', '\155',
'\145', '\040', '\061', '\012', '\167', '\147', '\110', '\040',
'\156', '\147', '\040', '\061', '\012', '\164', '\142', '\132',
'\040', '\164', '\150', '\040', '\061', '\012', '\130', '\153',
'\163', '\040', '\163', '\164', '\040', '\061', '\012', '\160',
'\172', '\103', '\040', '\160', '\157', '\040', '\061', '\012',
'\154', '\146', '\130', '\040', '\154', '\145', '\040', '\061',
'\012', '\161', '\102', '\165', '\040', '\165', '\156', '\040',
'\061', '\012', '\155', '\114', '\167', '\040', '\155', '\145',
'\040', '\061', '\012', '\160', '\155', '\131', '\040', '\155',
'\145', '\040', '\061', '\012', '\170', '\161', '\105', '\040',
'\161', '\165', '\040', '\061', '\012', '\162', '\152', '\131',
'\040', '\145', '\162', '\040', '\061', '\012', '\166', '\162',
'\110', '\040', '\145', '\162', '\040', '\061', '\012', '\111',
'\165', '\146', '\040', '\161', '\165', '\040', '\061', '\012',
'\171', '\146', '\104', '\040', '\156', '\171', '\040', '\061',
'\012', '\143', '\154', '\107', '\040', '\143', '\150', '\040',
'\061', '\012', '\143', '\144', '\132', '\040', '\143', '\150',
'\040', '\061', '\012', '\145', '\124', '\144', '\040', '\145',
'\162', '\040', '\061', '\012', '\154', '\130', '\166', '\040',
'\154', '\145', '\040', '\061', '\012', '\153', '\160', '\126',
'\040', '\153', '\141', '\040', '\061', '\012', '\163', '\132',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\127',
'\170', '\143', '\040', '\143', '\150', '\040', '\061', '\012',
'\166', '\155', '\112', '\040', '\166', '\141', '\040', '\061',
'\012', '\150', '\153', '\105', '\040', '\164', '\150', '\040',
'\061', '\012', '\160', '\125', '\167', '\040', '\160', '\162',
'\040', '\061', '\012', '\103', '\161', '\144', '\040', '\161',
'\165', '\040', '\061', '\012', '\167', '\103', '\156', '\040',
'\141', '\156', '\040', '\061', '\012', '\160', '\170', '\121',
'\040', '\160', '\162', '\040', '\061', '\012', '\131', '\167',
'\160', '\040', '\160', '\162', '\040', '\061', '\012', '\170',
'\167', '\142', '\040', '\167', '\141', '\040', '\061', '\012',
'\127', '\152', '\155', '\040', '\151', '\152', '\040', '\061',
'\012', '\172', '\161', '\121', '\040', '\161', '\165', '\040',
'\061', '\012', '\147', '\124', '\160', '\040', '\156', '\147',
'\040', '\061', '\012', '\165', '\132', '\166', '\040', '\161',
'\165', '\040', '\061', '\012', '\155', '\144', '\110', '\040',
'\144', '\145', '\040', '\061', '\012', '\152', '\165', '\121',
'\040', '\161', '\165', '\040', '\061', '\012', '\147', '\126',
'\155', '\040', '\156', '\147', '\040', '\061', '\012', '\172',
'\152', '\131', '\040', '\151', '\152', '\040', '\061', '\012',
'\146', '\150', '\116', '\040', '\164', '\150', '\040', '\061',
'\012', '\167', '\146', '\104', '\040', '\167', '\141', '\040',
'\061', '\012', '\132', '\152', '\143', '\040', '\143', '\150',
'\040', '\061', '\012', '\151', '\120', '\166', '\040', '\151',
'\156', '\040', '\061', '\012', '\155', '\172', '\127', '\040',
'\163', '\172', '\040', '\061', '\012', '\166', '\130', '\155',
'\040', '\166', '\141', '\040', '\061', '\012', '\146', '\105',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\117',
'\172', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\147', '\105', '\160', '\040', '\156', '\147', '\040', '\061',
'\012', '\153', '\104', '\152', '\040', '\151', '\152', '\040',
'\061', '\012', '\132', '\154', '\167', '\040', '\154', '\145',
'\040', '\061', '\012', '\172', '\142', '\122', '\040', '\163',
'\172', '\040', '\061', '\012', '\172', '\103', '\164', '\040',
'\164', '\150', '\040', '\061', '\012', '\167', '\157', '\131',
'\040', '\157', '\156', '\040', '\061', '\012', '\160', '\153',
'\124', '\040', '\153', '\141', '\040', '\061', '\012', '\153',
'\142', '\111', '\040', '\153', '\141', '\040', '\061', '\012',
'\150', '\144', '\127', '\040', '\144', '\145', '\040', '\061',
'\012', '\110', '\163', '\170', '\040', '\163', '\164', '\040',
'\061', '\012', '\172', '\160', '\130', '\040', '\163', '\172',
'\040', '\061', '\012', '\172', '\146', '\126', '\040', '\163',
'\172', '\040', '\061', '\012', '\104', '\150', '\153', '\040',
'\164', '\150', '\040', '\061', '\012', '\167', '\115', '\160',
'\040', '\160', '\162', '\040', '\061', '\012', '\150', '\172',
'\112', '\040', '\164', '\150', '\040', '\061', '\012', '\114',
'\167', '\160', '\040', '\160', '\162', '\040', '\061', '\012',
'\172', '\155', '\116', '\040', '\163', '\172', '\040', '\061',
'\012', '\170', '\146', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\163', '\152', '\121', '\040', '\163', '\172',
'\040', '\061', '\012', '\172', '\153', '\113', '\040', '\163',
'\172', '\040', '\061', '\012', '\142', '\102', '\166', '\040',
'\166', '\141', '\040', '\061', '\012', '\142', '\144', '\105',
'\040', '\144', '\145', '\040', '\061', '\012', '\121', '\170',
'\156', '\040', '\141', '\156', '\040', '\061', '\012', '\152',
'\161', '\164', '\040', '\164', '\150', '\040', '\061', '\012',
'\152', '\150', '\107', '\040', '\164', '\150', '\040', '\061',
'\012', '\146', '\131', '\166', '\040', '\166', '\141', '\040',
'\061', '\012', '\170', '\150', '\105', '\040', '\164', '\150',
'\040', '\061', '\012', '\143', '\142', '\106', '\040', '\143',
'\150', '\040', '\061', '\012', '\112', '\156', '\142', '\040',
'\141', '\156', '\040', '\061', '\012', '\152', '\170', '\116',
'\040', '\151', '\152', '\040', '\061', '\012', '\146', '\131',
'\170', '\040', '\146', '\157', '\040', '\061', '\012', '\150',
'\112', '\160', '\040', '\164', '\150', '\040', '\061', '\012',
'\143', '\122', '\164', '\040', '\164', '\150', '\040', '\061',
'\012', '\161', '\156', '\123', '\040', '\141', '\156', '\040',
'\061', '\012', '\166', '\114', '\160', '\040', '\166', '\141',
'\040', '\061', '\012', '\143', '\102', '\144', '\040', '\143',
'\150', '\040', '\061', '\012', '\161', '\161', '\125', '\040',
'\161', '\165', '\040', '\061', '\012', '\123', '\144', '\144',
'\040', '\144', '\145', '\040', '\061', '\012', '\170', '\145',
'\132', '\040', '\145', '\162', '\040', '\061', '\012', '\112',
'\167', '\157', '\040', '\157', '\156', '\040', '\061', '\012',
'\144', '\120', '\146', '\040', '\144', '\145', '\040', '\061',
'\012', '\146', '\116', '\154', '\040', '\154', '\145', '\040',
'\061', '\012', '\153', '\111', '\142', '\040', '\153', '\141',
'\040', '\061', '\012', '\143', '\142', '\114', '\040', '\143',
'\150', '\040', '\061', '\012', '\121', '\144', '\162', '\040',
'\145', '\162', '\040', '\061', '\012', '\115', '\146', '\142',
'\040', '\142', '\145', '\040', '\061', '\012', '\152', '\112',
'\154', '\040', '\154', '\145', '\040', '\061', '\012', '\155',
'\170', '\131', '\040', '\155', '\145', '\040', '\061', '\012',
'\154', '\106', '\144', '\040', '\154', '\145', '\040', '\061',
'\012', '\164', '\167', '\124', '\040', '\164', '\150', '\040',
'\061', '\012', '\153', '\106', '\153', '\040', '\153', '\141',
'\040', '\061', '\012', '\143', '\162', '\102', '\040', '\143',
'\150', '\040', '\061', '\012', '\152', '\122', '\162', '\040',
'\145', '\162', '\040', '\061', '\012', '\110', '\164', '\172',
'\040', '\164', '\150', '\040', '\061', '\012', '\160', '\131',
'\146', '\040', '\160', '\162', '\040', '\061', '\012', '\162',
'\126', '\143', '\040', '\145', '\162', '\040', '\061', '\012',
'\166', '\122', '\146', '\040', '\166', '\141', '\040', '\061',
'\012', '\167', '\126', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\172', '\160', '\101', '\040', '\163', '\172',
'\040', '\061', '\012', '\147', '\154', '\131', '\040', '\154',
'\145', '\040', '\061', '\012', '\163', '\116', '\152', '\040',
'\151', '\152', '\040', '\061', '\012', '\166', '\113', '\170',
'\040', '\166', '\141', '\040', '\061', '\012', '\164', '\166',
'\102', '\040', '\164', '\150', '\040', '\061', '\012', '\131',
'\152', '\146', '\040', '\151', '\152', '\040', '\061', '\012',
'\155', '\167', '\120', '\040', '\155', '\145', '\040', '\061',
'\012', '\112', '\171', '\142', '\040', '\142', '\145', '\040',
'\061', '\012', '\164', '\102', '\143', '\040', '\164', '\150',
'\040', '\061', '\012', '\147', '\123', '\142', '\040', '\156',
'\147', '\040', '\061', '\012', '\143', '\115', '\154', '\040',
'\143', '\150', '\040', '\061', '\012', '\147', '\152', '\112',
'\040', '\156', '\147', '\040', '\061', '\012', '\144', '\131',
'\172', '\040', '\144', '\145', '\040', '\061', '\012', '\172',
'\120', '\147', '\040', '\156', '\147', '\040', '\061', '\012',
'\153', '\161', '\102', '\040', '\161', '\165', '\040', '\061',
'\012', '\163', '\106', '\166', '\040', '\163', '\164', '\040',
'\061', '\012', '\170', '\153', '\110', '\040', '\153', '\141',
'\040', '\061', '\012', '\146', '\132', '\164', '\040', '\164',
'\150', '\040', '\061', '\012', '\171', '\150', '\122', '\040',
'\164', '\150', '\040', '\061', '\012', '\142', '\167', '\116',
'\040', '\167', '\141', '\040', '\061', '\012', '\161', '\152',
'\107', '\040', '\161', '\165', '\040', '\061', '\012', '\156',
'\121', '\155', '\040', '\141', '\156', '\040', '\061', '\012',
'\161', '\115', '\162', '\040', '\161', '\165', '\040', '\061',
'\012', '\152', '\143', '\127', '\040', '\143', '\150', '\040',
'\061', '\012', '\161', '\112', '\166', '\040', '\161', '\165',
'\040', '\061', '\012', '\147', '\124', '\155', '\040', '\156',
'\147', '\040', '\061', '\012', '\153', '\155', '\121', '\040',
'\153', '\141', '\040', '\061', '\012', '\127', '\154', '\143',
'\040', '\143', '\150', '\040', '\061', '\012', '\153', '\131',
'\146', '\040', '\153', '\141', '\040', '\061', '\012', '\145',
'\112', '\160', '\040', '\145', '\162', '\040', '\061', '\012',
'\124', '\153', '\142', '\040', '\153', '\141', '\040', '\061',
'\012', '\150', '\146', '\115', '\040', '\164', '\150', '\040',
'\061', '\012', '\156', '\170', '\131', '\040', '\141', '\156',
'\040', '\061', '\012', '\160', '\104', '\154', '\040', '\154',
'\145', '\040', '\061', '\012', '\167', '\143', '\116', '\040',
'\143', '\150', '\040', '\061', '\012', '\160', '\121', '\141',
'\040', '\141', '\156', '\040', '\061', '\012', '\157', '\150',
'\132', '\040', '\164', '\150', '\040', '\061', '\012', '\170',
'\122', '\172', '\040', '\163', '\172', '\040', '\061', '\012',
'\154', '\142', '\126', '\040', '\154', '\145', '\040', '\061',
'\012', '\154', '\113', '\143', '\040', '\143', '\150', '\040',
'\061', '\012', '\167', '\170', '\102', '\040', '\167', '\141',
'\040', '\061', '\012', '\114', '\167', '\167', '\040', '\167',
'\141', '\040', '\061', '\012', '\146', '\161', '\121', '\040',
'\161', '\165', '\040', '\061', '\012', '\153', '\153', '\132',
'\040', '\153', '\141', '\040', '\061', '\012', '\151', '\167',
'\117', '\040', '\151', '\156', '\040', '\061', '\012', '\144',
'\147', '\125', '\040', '\156', '\147', '\040', '\061', '\012',
'\144', '\166', '\117', '\040', '\144', '\145', '\040', '\061',
'\012', '\160', '\104', '\164', '\040', '\164', '\150', '\040',
'\061', '\012', '\153', '\166', '\113', '\040', '\153', '\141',
'\040', '\061', '\012', '\152', '\154', '\126', '\040', '\154',
'\145', '\040', '\061', '\012', '\170', '\130', '\144', '\040',
'\144', '\145', '\040', '\061', '\012', '\171', '\153', '\106',
'\040', '\153', '\165', '\040', '\061', '\012', '\151', '\171',
'\124', '\040', '\151', '\156', '\040', '\061', '\012', '\125',
'\146', '\170', '\040', '\146', '\157', '\040', '\061', '\012',
'\156', '\172', '\125', '\040', '\141', '\156', '\040', '\061',
'\012', '\170', '\142', '\110', '\040', '\142', '\165', '\040',
'\061', '\012', '\154', '\123', '\142', '\040', '\154', '\145',
'\040', '\061', '\012', '\130', '\160', '\146', '\040', '\160',
'\162', '\040', '\061', '\012', '\125', '\166', '\146', '\040',
'\166', '\141', '\040', '\061', '\012', '\171', '\171', '\106',
'\040', '\156', '\171', '\040', '\061', '\012', '\146', '\170',
'\120', '\040', '\146', '\157', '\040', '\061', '\012', '\152',
'\131', '\165', '\040', '\161', '\165', '\040', '\061', '\012',
'\161', '\152', '\142', '\040', '\161', '\165', '\040', '\061',
'\012', '\147', '\170', '\114', '\040', '\156', '\147', '\040',
'\061', '\012', '\160', '\167', '\111', '\040', '\160', '\162',
'\040', '\061', '\012', '\152', '\125', '\145', '\040', '\145',
'\162', '\040', '\061', '\012', '\162', '\106', '\143', '\040',
'\143', '\150', '\040', '\061', '\012', '\146', '\163', '\106',
'\040', '\163', '\164', '\040', '\061', '\012', '\143', '\144',
'\127', '\040', '\143', '\150', '\040', '\061', '\012', '\130',
'\167', '\160', '\040', '\160', '\162', '\040', '\061', '\012',
'\170', '\144', '\110', '\040', '\144', '\145', '\040', '\061',
'\012', '\152', '\131', '\163', '\040', '\151', '\152', '\040',
'\061', '\012', '\142', '\106', '\144', '\040', '\144', '\145',
'\040', '\061', '\012', '\161', '\111', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\171', '\111', '\147', '\040',
'\156', '\147', '\040', '\061', '\012', '\166', '\124', '\144',
'\040', '\144', '\145', '\040', '\061', '\012', '\167', '\146',
'\105', '\040', '\167', '\141', '\040', '\061', '\012', '\161',
'\122', '\142', '\040', '\161', '\165', '\040', '\061', '\012',
'\171', '\150', '\113', '\040', '\164', '\150', '\040', '\061',
'\012', '\153', '\115', '\156', '\040', '\141', '\156', '\040',
'\061', '\012', '\143', '\160', '\102', '\040', '\143', '\150',
'\040', '\061', '\012', '\164', '\170', '\116', '\040', '\164',
'\150', '\040', '\061', '\012', '\153', '\120', '\144', '\040',
'\144', '\145', '\040', '\061', '\012', '\156', '\142', '\102',
'\040', '\141', '\156', '\040', '\061', '\012', '\163', '\153',
'\121', '\040', '\163', '\164', '\040', '\061', '\012', '\165',
'\113', '\167', '\040', '\161', '\165', '\040', '\061', '\012',
'\167', '\121', '\146', '\040', '\167', '\141', '\040', '\061',
'\012', '\153', '\127', '\146', '\040', '\153', '\141', '\040',
'\061', '\012', '\167', '\161', '\101', '\040', '\161', '\165',
'\040', '\061', '\012', '\143', '\167', '\101', '\040', '\143',
'\150', '\040', '\061', '\012', '\166', '\112', '\153', '\040',
'\153', '\141', '\040', '\061', '\012', '\150', '\143', '\104',
'\040', '\164', '\150', '\040', '\061', '\012', '\156', '\146',
'\113', '\040', '\141', '\156', '\040', '\061', '\012', '\165',
'\130', '\146', '\040', '\161', '\165', '\040', '\061', '\012',
'\143', '\147', '\101', '\040', '\143', '\150', '\040', '\061',
'\012', '\120', '\152', '\144', '\040', '\144', '\145', '\040',
'\061', '\012', '\114', '\161', '\163', '\040', '\161', '\165',
'\040', '\061', '\012', '\172', '\167', '\103', '\040', '\163',
'\172', '\040', '\061', '\012', '\154', '\152', '\116', '\040',
'\154', '\145', '\040', '\061', '\012', '\166', '\153', '\120',
'\040', '\153', '\141', '\040', '\061', '\012', '\122', '\161',
'\160', '\040', '\161', '\165', '\040', '\061', '\012', '\172',
'\107', '\170', '\040', '\163', '\172', '\040', '\061', '\012',
'\152', '\120', '\147', '\040', '\156', '\147', '\040', '\061',
'\012', '\153', '\142', '\124', '\040', '\153', '\141', '\040',
'\061', '\012', '\153', '\160', '\121', '\040', '\153', '\141',
'\040', '\061', '\012', '\115', '\172', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\107', '\152', '\163', '\040',
'\163', '\164', '\040', '\061', '\012', '\153', '\104', '\154',
'\040', '\154', '\145', '\040', '\061', '\012', '\152', '\167',
'\122', '\040', '\151', '\152', '\040', '\061', '\012', '\127',
'\171', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\161', '\170', '\123', '\040', '\161', '\165', '\040', '\061',
'\012', '\161', '\107', '\164', '\040', '\164', '\150', '\040',
'\061', '\012', '\127', '\166', '\162', '\040', '\145', '\162',
'\040', '\061', '\012', '\172', '\116', '\170', '\040', '\163',
'\172', '\040', '\061', '\012', '\166', '\103', '\155', '\040',
'\166', '\141', '\040', '\061', '\012', '\150', '\154', '\104',
'\040', '\164', '\150', '\040', '\061', '\012', '\166', '\102',
'\160', '\040', '\166', '\141', '\040', '\061', '\012', '\155',
'\112', '\143', '\040', '\143', '\150', '\040', '\061', '\012',
'\150', '\106', '\142', '\040', '\164', '\150', '\040', '\061',
'\012', '\166', '\104', '\155', '\040', '\166', '\141', '\040',
'\061', '\012', '\160', '\146', '\103', '\040', '\160', '\162',
'\040', '\061', '\012', '\114', '\160', '\171', '\040', '\160',
'\162', '\040', '\061', '\012', '\106', '\150', '\144', '\040',
'\164', '\150', '\040', '\061', '\012', '\144', '\170', '\123',
'\040', '\144', '\145', '\040', '\061', '\012', '\167', '\127',
'\147', '\040', '\156', '\147', '\040', '\061', '\012', '\106',
'\147', '\156', '\040', '\141', '\156', '\040', '\061', '\012',
'\156', '\106', '\146', '\040', '\141', '\156', '\040', '\061',
'\012', '\143', '\170', '\106', '\040', '\143', '\150', '\040',
'\061', '\012', '\141', '\126', '\150', '\040', '\164', '\150',
'\040', '\061', '\012', '\123', '\161', '\170', '\040', '\161',
'\165', '\040', '\061', '\012', '\126', '\152', '\172', '\040',
'\151', '\152', '\040', '\061', '\012', '\172', '\156', '\103',
'\040', '\141', '\156', '\040', '\061', '\012', '\161', '\161',
'\166', '\040', '\161', '\165', '\040', '\061', '\012', '\172',
'\162', '\132', '\040', '\145', '\162', '\040', '\061', '\012',
'\142', '\116', '\154', '\040', '\154', '\145', '\040', '\061',
'\012', '\156', '\166', '\127', '\040', '\141', '\156', '\040',
'\061', '\012', '\121', '\171', '\142', '\040', '\142', '\145',
'\040', '\061', '\012', '\106', '\150', '\164', '\040', '\164',
'\150', '\040', '\061', '\012', '\152', '\107', '\166', '\040',
'\151', '\152', '\040', '\061', '\012', '\147', '\114', '\160',
'\040', '\156', '\147', '\040', '\061', '\012', '\147', '\114',
'\142', '\040', '\156', '\147', '\040', '\061', '\012', '\161',
'\113', '\152', '\040', '\161', '\165', '\040', '\061', '\012',
'\150', '\112', '\144', '\040', '\164', '\150', '\040', '\061',
'\012', '\132', '\152', '\147', '\040', '\156', '\147', '\040',
'\061', '\012', '\156', '\121', '\161', '\040', '\141', '\156',
'\040', '\061', '\012', '\156', '\160', '\130', '\040', '\141',
'\156', '\040', '\061', '\012', '\161', '\151', '\117', '\040',
'\151', '\156', '\040', '\061', '\012', '\166', '\166', '\107',
'\040', '\166', '\141', '\040', '\061', '\012', '\152', '\117',
'\170', '\040', '\151', '\152', '\040', '\061', '\012', '\150',
'\150', '\105', '\040', '\164', '\150', '\040', '\061', '\012',
'\166', '\144', '\116', '\040', '\144', '\145', '\040', '\061',
'\012', '\103', '\172', '\172', '\040', '\163', '\172', '\040',
'\061', '\012', '\147', '\152', '\125', '\040', '\156', '\147',
'\040', '\061', '\012', '\150', '\126', '\142', '\040', '\164',
'\150', '\040', '\061', '\012', '\113', '\143', '\147', '\040',
'\143', '\150', '\040', '\061', '\012', '\144', '\166', '\110',
'\040', '\144', '\145', '\040', '\061', '\012', '\167', '\164',
'\104', '\040', '\164', '\150', '\040', '\061', '\012', '\152',
'\111', '\157', '\040', '\157', '\156', '\040', '\061', '\012',
'\152', '\121', '\141', '\040', '\141', '\156', '\040', '\061',
'\012', '\106', '\171', '\152', '\040', '\151', '\152', '\040',
'\061', '\012', '\143', '\160', '\125', '\040', '\143', '\150',
'\040', '\061', '\012', '\150', '\170', '\131', '\040', '\164',
'\150', '\040', '\061', '\012', '\161', '\142', '\104', '\040',
'\161', '\165', '\040', '\061', '\012', '\163', '\166', '\112',
'\040', '\163', '\164', '\040', '\061', '\012', '\166', '\152',
'\127', '\040', '\151', '\152', '\040', '\061', '\012', '\147',
'\160', '\131', '\040', '\156', '\147', '\040', '\061', '\012',
'\161', '\156', '\122', '\040', '\141', '\156', '\040', '\061',
'\012', '\147', '\121', '\156', '\040', '\141', '\156', '\040',
'\061', '\012', '\103', '\166', '\150', '\040', '\164', '\150',
'\040', '\061', '\012', '\171', '\153', '\102', '\040', '\153',
'\141', '\040', '\061', '\012', '\170', '\147', '\102', '\040',
'\156', '\147', '\040', '\061', '\012', '\172', '\146', '\104',
'\040', '\163', '\172', '\040', '\061', '\012', '\171', '\110',
'\167', '\040', '\167', '\141', '\040', '\061', '\012', '\161',
'\144', '\107', '\040', '\161', '\165', '\040', '\061', '\012',
'\161', '\124', '\156', '\040', '\141', '\156', '\040', '\061',
'\012', '\154', '\124', '\155', '\040', '\154', '\145', '\040',
'\061', '\012', '\152', '\147', '\102', '\040', '\156', '\147',
'\040', '\061', '\012', '\147', '\170', '\123', '\040', '\156',
'\147', '\040', '\061', '\012', '\161', '\120', '\145', '\040',
'\161', '\165', '\040', '\061', '\012', '\160', '\160', '\121',
'\040', '\160', '\162', '\040', '\061', '\012', '\171', '\170',
'\127', '\040', '\156', '\171', '\040', '\061', '\012', '\110',
'\152', '\153', '\040', '\151', '\152', '\040', '\061', '\012',
'\153', '\116', '\153', '\040', '\153', '\141', '\040', '\061',
'\012', '\143', '\156', '\112', '\040', '\141', '\156', '\040',
'\061', '\012', '\165', '\110', '\144', '\040', '\161', '\165',
'\040', '\061', '\012', '\152', '\166', '\110', '\040', '\151',
'\152', '\040', '\061', '\012', '\107', '\147', '\156', '\040',
'\156', '\147', '\040', '\061', '\012', '\154', '\142', '\123',
'\040', '\154', '\145', '\040', '\061', '\012', '\121', '\143',
'\170', '\040', '\143', '\150', '\040', '\061', '\012', '\143',
'\161', '\122', '\040', '\143', '\150', '\040', '\061', '\012',
'\112', '\171', '\143', '\040', '\143', '\150', '\040', '\061',
'\012', '\167', '\122', '\160', '\040', '\160', '\162', '\040',
'\061', '\012', '\156', '\146', '\101', '\040', '\141', '\156',
'\040', '\061', '\012', '\154', '\130', '\167', '\040', '\154',
'\145', '\040', '\061', '\012', '\143', '\155', '\112', '\040',
'\143', '\150', '\040', '\061', '\012', '\131', '\163', '\167',
'\040', '\163', '\164', '\040', '\061', '\012', '\161', '\121',
'\163', '\040', '\161', '\165', '\040', '\061', '\012', '\147',
'\163', '\130', '\040', '\156', '\147', '\040', '\061', '\012',
'\143', '\111', '\161', '\040', '\143', '\150', '\040', '\061',
'\012', '\152', '\152', '\132', '\040', '\151', '\152', '\040',
'\061', '\012', '\114', '\154', '\142', '\040', '\154', '\145',
'\040', '\061', '\012', '\155', '\115', '\166', '\040', '\166',
'\141', '\040', '\061', '\012', '\154', '\126', '\150', '\040',
'\164', '\150', '\040', '\061', '\012', '\106', '\160', '\150',
'\040', '\164', '\150', '\040', '\061', '\012', '\132', '\155',
'\155', '\040', '\155', '\145', '\040', '\061', '\012', '\170',
'\115', '\144', '\040', '\144', '\145', '\040', '\061', '\012',
'\107', '\167', '\142', '\040', '\167', '\141', '\040', '\061',
'\012', '\121', '\152', '\166', '\040', '\151', '\152', '\040',
'\061', '\012', '\154', '\161', '\132', '\040', '\161', '\165',
'\040', '\061', '\012', '\172', '\112', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\127', '\153', '\171', '\040',
'\153', '\141', '\040', '\061', '\012', '\150', '\104', '\153',
'\040', '\164', '\150', '\040', '\061', '\012', '\171', '\114',
'\147', '\040', '\156', '\147', '\040', '\061', '\012', '\144',
'\131', '\167', '\040', '\144', '\145', '\040', '\061', '\012',
'\144', '\103', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\107', '\155', '\152', '\040', '\151', '\152', '\040',
'\061', '\012', '\170', '\124', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\167', '\153', '\106', '\040', '\153',
'\141', '\040', '\061', '\012', '\150', '\106', '\160', '\040',
'\164', '\150', '\040', '\061', '\012', '\161', '\156', '\102',
'\040', '\141', '\156', '\040', '\061', '\012', '\170', '\171',
'\112', '\040', '\156', '\171', '\040', '\061', '\012', '\156',
'\111', '\152', '\040', '\141', '\156', '\040', '\061', '\012',
'\170', '\131', '\144', '\040', '\144', '\145', '\040', '\061',
'\012', '\127', '\161', '\162', '\040', '\161', '\165', '\040',
'\061', '\012', '\170', '\161', '\126', '\040', '\161', '\165',
'\040', '\061', '\012', '\167', '\131', '\153', '\040', '\153',
'\141', '\040', '\061', '\012', '\121', '\144', '\172', '\040',
'\144', '\145', '\040', '\061', '\012', '\146', '\142', '\116',
'\040', '\142', '\145', '\040', '\061', '\012', '\161', '\167',
'\131', '\040', '\161', '\165', '\040', '\061', '\012', '\125',
'\142', '\170', '\040', '\142', '\145', '\040', '\061', '\012',
'\167', '\164', '\114', '\040', '\164', '\150', '\040', '\061',
'\012', '\156', '\121', '\167', '\040', '\141', '\156', '\040',
'\061', '\012', '\152', '\112', '\153', '\040', '\151', '\152',
'\040', '\061', '\012', '\116', '\172', '\163', '\040', '\163',
'\164', '\040', '\061', '\012', '\144', '\103', '\156', '\040',
'\141', '\156', '\040', '\061', '\012', '\116', '\146', '\166',
'\040', '\166', '\141', '\040', '\061', '\012', '\110', '\147',
'\150', '\040', '\164', '\150', '\040', '\061', '\012', '\110',
'\143', '\161', '\040', '\143', '\150', '\040', '\061', '\012',
'\130', '\166', '\142', '\040', '\166', '\141', '\040', '\061',
'\012', '\163', '\170', '\112', '\040', '\163', '\164', '\040',
'\061', '\012', '\167', '\115', '\170', '\040', '\167', '\141',
'\040', '\061', '\012', '\161', '\106', '\156', '\040', '\141',
'\156', '\040', '\061', '\012', '\107', '\172', '\146', '\040',
'\163', '\172', '\040', '\061', '\012', '\161', '\146', '\112',
'\040', '\161', '\165', '\040', '\061', '\012', '\172', '\144',
'\121', '\040', '\144', '\145', '\040', '\061', '\012', '\130',
'\147', '\172', '\040', '\156', '\147', '\040', '\061', '\012',
'\146', '\153', '\111', '\040', '\153', '\141', '\040', '\061',
'\012', '\160', '\166', '\113', '\040', '\166', '\141', '\040',
'\061', '\012', '\103', '\161', '\162', '\040', '\161', '\165',
'\040', '\061', '\012', '\172', '\106', '\144', '\040', '\144',
'\145', '\040', '\061', '\012', '\157', '\110', '\155', '\040',
'\157', '\156', '\040', '\061', '\012', '\141', '\112', '\152',
'\040', '\141', '\156', '\040', '\061', '\012', '\106', '\172',
'\144', '\040', '\144', '\145', '\040', '\061', '\012', '\144',
'\127', '\153', '\040', '\144', '\145', '\040', '\061', '\012',
'\167', '\155', '\105', '\040', '\155', '\145', '\040', '\061',
'\012', '\163', '\115', '\154', '\040', '\154', '\145', '\040',
'\061', '\012', '\164', '\102', '\160', '\040', '\164', '\150',
'\040', '\061', '\012', '\166', '\116', '\167', '\040', '\166',
'\141', '\040', '\061', '\012', '\121', '\144', '\150', '\040',
'\164', '\150', '\040', '\061', '\012', '\167', '\150', '\107',
'\040', '\164', '\150', '\040', '\061', '\012', '\161', '\101',
'\160', '\040', '\161', '\165', '\040', '\061', '\012', '\152',
'\162', '\115', '\040', '\145', '\162', '\040', '\061', '\012',
'\162', '\110', '\167', '\040', '\145', '\162', '\040', '\061',
'\012', '\114', '\166', '\143', '\040', '\143', '\150', '\040',
'\061', '\012', '\147', '\122', '\156', '\040', '\141', '\156',
'\040', '\061', '\012', '\171', '\152', '\126', '\040', '\151',
'\152', '\040', '\061', '\012', '\150', '\122', '\153', '\040',
'\164', '\150', '\040', '\061', '\012', '\142', '\153', '\126',
'\040', '\153', '\141', '\040', '\061', '\012', '\152', '\127',
'\155', '\040', '\151', '\152', '\040', '\061', '\012', '\171',
'\131', '\172', '\040', '\163', '\172', '\040', '\061', '\012',
'\166', '\124', '\171', '\040', '\166', '\141', '\040', '\061',
'\012', '\144', '\170', '\126', '\040', '\144', '\145', '\040',
'\061', '\012', '\155', '\113', '\171', '\040', '\155', '\145',
'\040', '\061', '\012', '\121', '\154', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\125', '\160', '\170', '\040',
'\160', '\162', '\040', '\061', '\012', '\121', '\160', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\114', '\167',
'\155', '\040', '\155', '\145', '\040', '\061', '\012', '\171',
'\130', '\162', '\040', '\145', '\162', '\040', '\061', '\012',
'\147', '\124', '\153', '\040', '\156', '\147', '\040', '\061',
'\012', '\161', '\156', '\124', '\040', '\141', '\156', '\040',
'\061', '\012', '\126', '\154', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\121', '\161', '\144', '\040', '\161',
'\165', '\040', '\061', '\012', '\132', '\144', '\144', '\040',
'\144', '\145', '\040', '\061', '\012', '\130', '\161', '\164',
'\040', '\164', '\150', '\040', '\061', '\012', '\104', '\146',
'\142', '\040', '\142', '\145', '\040', '\061', '\012', '\157',
'\145', '\117', '\040', '\157', '\156', '\040', '\061', '\012',
'\156', '\103', '\170', '\040', '\141', '\156', '\040', '\061',
'\012', '\154', '\130', '\144', '\040', '\154', '\145', '\040',
'\061', '\012', '\166', '\110', '\143', '\040', '\143', '\150',
'\040', '\061', '\012', '\166', '\101', '\142', '\040', '\166',
'\141', '\040', '\061', '\012', '\131', '\142', '\167', '\040',
'\167', '\141', '\040', '\061', '\012', '\172', '\104', '\156',
'\040', '\141', '\156', '\040', '\061', '\012', '\144', '\107',
'\153', '\040', '\144', '\145', '\040', '\061', '\012', '\160',
'\154', '\110', '\040', '\154', '\145', '\040', '\061', '\012',
'\154', '\170', '\107', '\040', '\154', '\145', '\040', '\061',
'\012', '\110', '\147', '\160', '\040', '\156', '\147', '\040',
'\061', '\012', '\152', '\122', '\172', '\040', '\151', '\152',
'\040', '\061', '\012', '\144', '\124', '\163', '\040', '\144',
'\145', '\040', '\061', '\012', '\155', '\103', '\152', '\040',
'\151', '\152', '\040', '\061', '\012', '\154', '\110', '\146',
'\040', '\154', '\145', '\040', '\061', '\012', '\154', '\114',
'\152', '\040', '\154', '\145', '\040', '\061', '\012', '\164',
'\116', '\142', '\040', '\164', '\150', '\040', '\061', '\012',
'\155', '\113', '\153', '\040', '\153', '\141', '\040', '\061',
'\012', '\147', '\107', '\152', '\040', '\156', '\147', '\040',
'\061', '\012', '\152', '\154', '\121', '\040', '\154', '\145',
'\040', '\061', '\012', '\131', '\171', '\147', '\040', '\156',
'\147', '\040', '\061', '\012', '\146', '\104', '\166', '\040',
'\166', '\141', '\040', '\061', '\012', '\172', '\130', '\147',
'\040', '\156', '\147', '\040', '\061', '\012', '\161', '\172',
'\132', '\040', '\161', '\165', '\040', '\061', '\012', '\146',
'\105', '\147', '\040', '\156', '\147', '\040', '\061', '\012',
'\154', '\150', '\123', '\040', '\164', '\150', '\040', '\061',
'\012', '\155', '\172', '\115', '\040', '\163', '\172', '\040',
'\061', '\012', '\170', '\161', '\124', '\040', '\161', '\165',
'\040', '\061', '\012', '\131', '\143', '\152', '\040', '\143',
'\150', '\040', '\061', '\012', '\146', '\142', '\106', '\040',
'\142', '\145', '\040', '\061', '\012', '\130', '\163', '\152',
'\040', '\151', '\152', '\040', '\061', '\012', '\114', '\156',
'\143', '\040', '\141', '\156', '\040', '\061', '\012', '\107',
'\161', '\160', '\040', '\161', '\165', '\040', '\061', '\012',
'\146', '\152', '\117', '\040', '\151', '\152', '\040', '\061',
'\012', '\172', '\150', '\111', '\040', '\164', '\150', '\040',
'\061', '\012', '\172', '\147', '\110', '\040', '\156', '\147',
'\040', '\061', '\012', '\147', '\127', '\143', '\040', '\143',
'\150', '\040', '\061', '\012', '\171', '\113', '\146', '\040',
'\156', '\171', '\040', '\061', '\012', '\165', '\121', '\144',
'\040', '\161', '\165', '\040', '\061', '\012', '\113', '\167',
'\154', '\040', '\154', '\145', '\040', '\061', '\012', '\144',
'\170', '\107', '\040', '\144', '\145', '\040', '\061', '\012',
'\131', '\161', '\167', '\040', '\161', '\165', '\040', '\061',
'\012', '\164', '\113', '\143', '\040', '\164', '\150', '\040',
'\061', '\012', '\143', '\127', '\156', '\040', '\141', '\156',
'\040', '\061', '\012', '\150', '\143', '\111', '\040', '\164',
'\150', '\040', '\061', '\012', '\167', '\146', '\131', '\040',
'\167', '\141', '\040', '\061', '\012', '\162', '\102', '\160',
'\040', '\145', '\162', '\040', '\061', '\012', '\143', '\112',
'\144', '\040', '\143', '\150', '\040', '\061', '\012', '\163',
'\131', '\146', '\040', '\163', '\172', '\040', '\061', '\012',
'\123', '\161', '\152', '\040', '\161', '\165', '\040', '\061',
'\012', '\153', '\121', '\166', '\040', '\153', '\141', '\040',
'\061', '\012', '\170', '\160', '\106', '\040', '\160', '\162',
'\040', '\061', '\012', '\146', '\143', '\130', '\040', '\143',
'\150', '\040', '\061', '\012', '\171', '\146', '\113', '\040',
'\156', '\171', '\040', '\061', '\012', '\152', '\121', '\157',
'\040', '\157', '\156', '\040', '\061', '\012', '\147', '\124',
'\147', '\040', '\156', '\147', '\040', '\061', '\012', '\121',
'\167', '\156', '\040', '\141', '\156', '\040', '\061', '\012',
'\120', '\156', '\170', '\040', '\141', '\156', '\040', '\061',
'\012', '\171', '\132', '\164', '\040', '\164', '\150', '\040',
'\061', '\012', '\167', '\120', '\172', '\040', '\163', '\172',
'\040', '\061', '\012', '\152', '\165', '\130', '\040', '\161',
'\165', '\040', '\061', '\012', '\114', '\170', '\166', '\040',
'\166', '\141', '\040', '\061', '\012', '\151', '\130', '\162',
'\040', '\151', '\156', '\040', '\061', '\012', '\160', '\143',
'\105', '\040', '\143', '\150', '\040', '\061', '\012', '\116',
'\161', '\171', '\040', '\161', '\165', '\040', '\061', '\012',
'\150', '\152', '\111', '\040', '\164', '\150', '\040', '\061',
'\012', '\150', '\172', '\126', '\040', '\164', '\150', '\040',
'\061', '\012', '\156', '\155', '\106', '\040', '\141', '\156',
'\040', '\061', '\012', '\160', '\166', '\127', '\040', '\166',
'\141', '\040', '\061', '\012', '\145', '\112', '\167', '\040',
'\145', '\162', '\040', '\061', '\012', '\111', '\161', '\144',
'\040', '\161', '\165', '\040', '\061', '\012', '\147', '\130',
'\171', '\040', '\156', '\147', '\040', '\061', '\012', '\167',
'\146', '\127', '\040', '\167', '\141', '\040', '\061', '\012',
'\126', '\144', '\167', '\040', '\144', '\145', '\040', '\061',
'\012', '\161', '\112', '\170', '\040', '\161', '\165', '\040',
'\061', '\012', '\120', '\144', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\102', '\152', '\142', '\040', '\151',
'\152', '\040', '\061', '\012', '\161', '\114', '\154', '\040',
'\161', '\165', '\040', '\061', '\012', '\172', '\144', '\127',
'\040', '\144', '\145', '\040', '\061', '\012', '\146', '\121',
'\162', '\040', '\145', '\162', '\040', '\061', '\012', '\170',
'\172', '\127', '\040', '\163', '\172', '\040', '\061', '\012',
'\166', '\167', '\121', '\040', '\166', '\141', '\040', '\061',
'\012', '\162', '\167', '\125', '\040', '\145', '\162', '\040',
'\061', '\012', '\161', '\120', '\156', '\040', '\141', '\156',
'\040', '\061', '\012', '\142', '\106', '\167', '\040', '\167',
'\141', '\040', '\061', '\012', '\166', '\110', '\154', '\040',
'\154', '\145', '\040', '\061', '\012', '\150', '\127', '\154',
'\040', '\164', '\150', '\040', '\061', '\012', '\167', '\147',
'\117', '\040', '\156', '\147', '\040', '\061', '\012', '\150',
'\114', '\153', '\040', '\164', '\150', '\040', '\061', '\012',
'\112', '\153', '\142', '\040', '\153', '\141', '\040', '\061',
'\012', '\172', '\102', '\150', '\040', '\164', '\150', '\040',
'\061', '\012', '\104', '\150', '\170', '\040', '\164', '\150',
'\040', '\061', '\012', '\106', '\147', '\166', '\040', '\156',
'\147', '\040', '\061', '\012', '\142', '\160', '\101', '\040',
'\160', '\162', '\040', '\061', '\012', '\172', '\170', '\103',
'\040', '\163', '\172', '\040', '\061', '\012', '\147', '\146',
'\123', '\040', '\156', '\147', '\040', '\061', '\012', '\115',
'\166', '\170', '\040', '\166', '\141', '\040', '\061', '\012',
'\165', '\120', '\153', '\040', '\161', '\165', '\040', '\061',
'\012', '\126', '\161', '\156', '\040', '\141', '\156', '\040',
'\061', '\012', '\171', '\161', '\103', '\040', '\161', '\165',
'\040', '\061', '\012', '\166', '\115', '\153', '\040', '\153',
'\141', '\040', '\061', '\012', '\167', '\161', '\114', '\040',
'\161', '\165', '\040', '\061', '\012', '\167', '\162', '\112',
'\040', '\145', '\162', '\040', '\061', '\012', '\143', '\144',
'\116', '\040', '\143', '\150', '\040', '\061', '\012', '\160',
'\167', '\122', '\040', '\160', '\162', '\040', '\061', '\012',
'\150', '\115', '\146', '\040', '\164', '\150', '\040', '\061',
'\012', '\152', '\120', '\146', '\040', '\151', '\152', '\040',
'\061', '\012', '\126', '\142', '\166', '\040', '\166', '\141',
'\040', '\061', '\012', '\161', '\172', '\106', '\040', '\161',
'\165', '\040', '\061', '\012', '\161', '\116', '\143', '\040',
'\143', '\150', '\040', '\061', '\012', '\112', '\142', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\146', '\124',
'\153', '\040', '\153', '\141', '\040', '\061', '\012', '\132',
'\146', '\146', '\040', '\146', '\157', '\040', '\061', '\012',
'\106', '\172', '\164', '\040', '\164', '\150', '\040', '\061',
'\012', '\113', '\143', '\167', '\040', '\143', '\150', '\040',
'\061', '\012', '\145', '\113', '\146', '\040', '\145', '\162',
'\040', '\061', '\012', '\160', '\161', '\132', '\040', '\161',
'\165', '\040', '\061', '\012', '\127', '\160', '\142', '\040',
'\160', '\162', '\040', '\061', '\012', '\152', '\153', '\106',
'\040', '\151', '\152', '\040', '\061', '\012', '\126', '\170',
'\160', '\040', '\160', '\162', '\040', '\061', '\012', '\150',
'\107', '\161', '\040', '\164', '\150', '\040', '\061', '\012',
'\161', '\102', '\143', '\040', '\143', '\150', '\040', '\061',
'\012', '\146', '\143', '\124', '\040', '\143', '\150', '\040',
'\061', '\012', '\152', '\115', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\153', '\132', '\166', '\040', '\153',
'\141', '\040', '\061', '\012', '\161', '\153', '\107', '\040',
'\161', '\165', '\040', '\061', '\012', '\111', '\146', '\160',
'\040', '\160', '\162', '\040', '\061', '\012', '\144', '\122',
'\167', '\040', '\144', '\145', '\040', '\061', '\012', '\132',
'\154', '\152', '\040', '\154', '\145', '\040', '\061', '\012',
'\113', '\167', '\152', '\040', '\151', '\152', '\040', '\061',
'\012', '\146', '\116', '\142', '\040', '\142', '\145', '\040',
'\061', '\012', '\144', '\131', '\171', '\040', '\144', '\145',
'\040', '\061', '\012', '\150', '\132', '\154', '\040', '\164',
'\150', '\040', '\061', '\012', '\167', '\164', '\120', '\040',
'\164', '\150', '\040', '\061', '\012', '\150', '\120', '\172',
'\040', '\164', '\150', '\040', '\061', '\012', '\131', '\153',
'\143', '\040', '\143', '\150', '\040', '\061', '\012', '\112',
'\154', '\167', '\040', '\154', '\145', '\040', '\061', '\012',
'\152', '\116', '\164', '\040', '\164', '\150', '\040', '\061',
'\012', '\171', '\162', '\127', '\040', '\145', '\162', '\040',
'\061', '\012', '\147', '\127', '\144', '\040', '\156', '\147',
'\040', '\061', '\012', '\171', '\130', '\144', '\040', '\144',
'\145', '\040', '\061', '\012', '\146', '\121', '\154', '\040',
'\154', '\145', '\040', '\061', '\012', '\152', '\146', '\106',
'\040', '\151', '\152', '\040', '\061', '\012', '\105', '\152',
'\170', '\040', '\151', '\152', '\040', '\061', '\012', '\146',
'\107', '\153', '\040', '\153', '\141', '\040', '\061', '\012',
'\132', '\152', '\172', '\040', '\151', '\152', '\040', '\061',
'\012', '\167', '\144', '\115', '\040', '\144', '\145', '\040',
'\061', '\012', '\152', '\154', '\106', '\040', '\154', '\145',
'\040', '\061', '\012', '\143', '\170', '\132', '\040', '\143',
'\150', '\040', '\061', '\012', '\132', '\147', '\153', '\040',
'\156', '\147', '\040', '\061', '\012', '\155', '\143', '\112',
'\040', '\143', '\150', '\040', '\061', '\012', '\163', '\154',
'\105', '\040', '\154', '\145', '\040', '\061', '\012', '\156',
'\131', '\161', '\040', '\141', '\156', '\040', '\061', '\012',
'\127', '\146', '\147', '\040', '\156', '\147', '\040', '\061',
'\012', '\172', '\112', '\153', '\040', '\153', '\141', '\040',
'\061', '\012', '\142', '\166', '\106', '\040', '\166', '\141',
'\040', '\061', '\012', '\110', '\156', '\172', '\040', '\141',
'\156', '\040', '\061', '\012', '\127', '\153', '\166', '\040',
'\153', '\141', '\040', '\061', '\012', '\115', '\166', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\104', '\170',
'\150', '\040', '\164', '\150', '\040', '\061', '\012', '\102',
'\166', '\164', '\040', '\164', '\150', '\040', '\061', '\012',
'\163', '\115', '\152', '\040', '\151', '\152', '\040', '\061',
'\012', '\167', '\122', '\146', '\040', '\167', '\141', '\040',
'\061', '\012', '\166', '\114', '\142', '\040', '\166', '\141',
'\040', '\061', '\012', '\172', '\107', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\155', '\106', '\160', '\040',
'\155', '\145', '\040', '\061', '\012', '\147', '\116', '\142',
'\040', '\156', '\147', '\040', '\061', '\012', '\160', '\103',
'\147', '\040', '\156', '\147', '\040', '\061', '\012', '\170',
'\106', '\163', '\040', '\163', '\172', '\040', '\061', '\012',
'\152', '\113', '\146', '\040', '\151', '\152', '\040', '\061',
'\012', '\161', '\112', '\142', '\040', '\161', '\165', '\040',
'\061', '\012', '\160', '\172', '\111', '\040', '\163', '\172',
'\040', '\061', '\012', '\152', '\147', '\107', '\040', '\156',
'\147', '\040', '\061', '\012', '\160', '\113', '\163', '\040',
'\163', '\172', '\040', '\061', '\012', '\146', '\161', '\104',
'\040', '\161', '\165', '\040', '\061', '\012', '\147', '\170',
'\121', '\040', '\156', '\147', '\040', '\061', '\012', '\146',
'\166', '\107', '\040', '\166', '\141', '\040', '\061', '\012',
'\167', '\147', '\106', '\040', '\156', '\147', '\040', '\061',
'\012', '\130', '\170', '\172', '\040', '\163', '\172', '\040',
'\061', '\012', '\114', '\167', '\165', '\040', '\161', '\165',
'\040', '\061', '\012', '\144', '\154', '\130', '\040', '\154',
'\145', '\040', '\061', '\012', '\154', '\120', '\172', '\040',
'\154', '\145', '\040', '\061', '\012', '\127', '\161', '\153',
'\040', '\161', '\165', '\040', '\061', '\012', '\130', '\172',
'\152', '\040', '\151', '\152', '\040', '\061', '\012', '\165',
'\110', '\152', '\040', '\161', '\165', '\040', '\061', '\012',
'\165', '\106', '\152', '\040', '\161', '\165', '\040', '\061',
'\012', '\152', '\166', '\126', '\040', '\151', '\152', '\040',
'\061', '\012', '\152', '\130', '\145', '\040', '\154', '\145',
'\040', '\061', '\012', '\132', '\146', '\155', '\040', '\155',
'\145', '\040', '\061', '\012', '\161', '\111', '\155', '\040',
'\161', '\165', '\040', '\061', '\012', '\172', '\142', '\102',
'\040', '\163', '\172', '\040', '\061', '\012', '\171', '\132',
'\146', '\040', '\156', '\171', '\040', '\061', '\012', '\163',
'\113', '\153', '\040', '\163', '\172', '\040', '\061', '\012',
'\172', '\160', '\114', '\040', '\163', '\172', '\040', '\061',
'\012', '\161', '\113', '\147', '\040', '\161', '\165', '\040',
'\061', '\012', '\111', '\142', '\152', '\040', '\151', '\152',
'\040', '\061', '\012', '\151', '\121', '\142', '\040', '\151',
'\156', '\040', '\061', '\012', '\106', '\170', '\165', '\040',
'\161', '\165', '\040', '\061', '\012', '\106', '\160', '\142',
'\040', '\160', '\162', '\040', '\061', '\012', '\127', '\166',
'\141', '\040', '\141', '\156', '\040', '\061', '\012', '\146',
'\172', '\104', '\040', '\163', '\172', '\040', '\061', '\012',
'\142', '\153', '\124', '\040', '\153', '\141', '\040', '\061',
'\012', '\131', '\153', '\164', '\040', '\164', '\150', '\040',
'\061', '\012', '\156', '\152', '\107', '\040', '\141', '\156',
'\040', '\061', '\012', '\125', '\166', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\147', '\146', '\124', '\040',
'\156', '\147', '\040', '\061', '\012', '\172', '\143', '\111',
'\040', '\143', '\150', '\040', '\061', '\012', '\142', '\104',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\112',
'\144', '\150', '\040', '\164', '\150', '\040', '\061', '\012',
'\170', '\115', '\147', '\040', '\156', '\147', '\040', '\061',
'\012', '\112', '\142', '\171', '\040', '\142', '\145', '\040',
'\061', '\012', '\154', '\167', '\112', '\040', '\154', '\145',
'\040', '\061', '\012', '\163', '\127', '\167', '\040', '\163',
'\172', '\040', '\061', '\012', '\123', '\166', '\167', '\040',
'\166', '\141', '\040', '\061', '\012', '\156', '\162', '\130',
'\040', '\141', '\156', '\040', '\061', '\012', '\165', '\166',
'\126', '\040', '\161', '\165', '\040', '\061', '\012', '\152',
'\126', '\162', '\040', '\145', '\162', '\040', '\061', '\012',
'\164', '\161', '\102', '\040', '\164', '\150', '\040', '\061',
'\012', '\142', '\126', '\162', '\040', '\145', '\162', '\040',
'\061', '\012', '\153', '\121', '\154', '\040', '\154', '\145',
'\040', '\061', '\012', '\146', '\142', '\107', '\040', '\142',
'\145', '\040', '\061', '\012', '\162', '\161', '\115', '\040',
'\161', '\165', '\040', '\061', '\012', '\172', '\110', '\152',
'\040', '\151', '\152', '\040', '\061', '\012', '\146', '\150',
'\131', '\040', '\164', '\150', '\040', '\061', '\012', '\131',
'\172', '\162', '\040', '\145', '\162', '\040', '\061', '\012',
'\166', '\106', '\146', '\040', '\166', '\141', '\040', '\061',
'\012', '\121', '\160', '\147', '\040', '\156', '\147', '\040',
'\061', '\012', '\165', '\101', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\172', '\170', '\120', '\040', '\163',
'\172', '\040', '\061', '\012', '\152', '\103', '\156', '\040',
'\141', '\156', '\040', '\061', '\012', '\161', '\141', '\115',
'\040', '\141', '\156', '\040', '\061', '\012', '\170', '\154',
'\131', '\040', '\154', '\145', '\040', '\061', '\012', '\143',
'\124', '\146', '\040', '\143', '\150', '\040', '\061', '\012',
'\153', '\102', '\146', '\040', '\153', '\141', '\040', '\061',
'\012', '\143', '\121', '\143', '\040', '\143', '\150', '\040',
'\061', '\012', '\122', '\142', '\152', '\040', '\151', '\152',
'\040', '\061', '\012', '\153', '\126', '\163', '\040', '\163',
'\172', '\040', '\061', '\012', '\142', '\107', '\166', '\040',
'\166', '\141', '\040', '\061', '\012', '\167', '\144', '\116',
'\040', '\144', '\145', '\040', '\061', '\012', '\147', '\146',
'\116', '\040', '\156', '\147', '\040', '\061', '\012', '\142',
'\120', '\152', '\040', '\151', '\152', '\040', '\061', '\012',
'\147', '\143', '\111', '\040', '\143', '\150', '\040', '\061',
'\012', '\147', '\170', '\152', '\040', '\156', '\147', '\040',
'\061', '\012', '\162', '\110', '\142', '\040', '\145', '\162',
'\040', '\061', '\012', '\160', '\126', '\162', '\040', '\145',
'\162', '\040', '\061', '\012', '\162', '\126', '\152', '\040',
'\145', '\162', '\040', '\061', '\012', '\166', '\147', '\123',
'\040', '\156', '\147', '\040', '\061', '\012', '\106', '\161',
'\172', '\040', '\161', '\165', '\040', '\061', '\012', '\170',
'\115', '\153', '\040', '\153', '\141', '\040', '\061', '\012',
'\161', '\121', '\155', '\040', '\161', '\165', '\040', '\061',
'\012', '\152', '\132', '\143', '\040', '\143', '\150', '\040',
'\061', '\012', '\152', '\102', '\143', '\040', '\143', '\150',
'\040', '\061', '\012', '\165', '\167', '\131', '\040', '\161',
'\165', '\040', '\061', '\012', '\162', '\110', '\146', '\040',
'\145', '\162', '\040', '\061', '\012', '\143', '\172', '\130',
'\040', '\143', '\150', '\040', '\061', '\012', '\172', '\143',
'\124', '\040', '\143', '\150', '\040', '\061', '\012', '\142',
'\106', '\152', '\040', '\151', '\152', '\040', '\061', '\012',
'\161', '\143', '\102', '\040', '\143', '\150', '\040', '\061',
'\012', '\150', '\146', '\124', '\040', '\164', '\150', '\040',
'\061', '\012', '\170', '\161', '\117', '\040', '\161', '\165',
'\040', '\061', '\012', '\161', '\146', '\160', '\040', '\161',
'\165', '\040', '\061', '\012', '\170', '\152', '\125', '\040',
'\151', '\152', '\040', '\061', '\012', '\142', '\150', '\122',
'\040', '\164', '\150', '\040', '\061', '\012', '\164', '\127',
'\166', '\040', '\164', '\150', '\040', '\061', '\012', '\151',
'\161', '\105', '\040', '\151', '\156', '\040', '\061', '\012',
'\147', '\160', '\125', '\040', '\156', '\147', '\040', '\061',
'\012', '\151', '\127', '\142', '\040', '\151', '\156', '\040',
'\061', '\012', '\164', '\154', '\120', '\040', '\164', '\150',
'\040', '\061', '\012', '\164', '\131', '\161', '\040', '\164',
'\150', '\040', '\061', '\012', '\142', '\103', '\166', '\040',
'\166', '\141', '\040', '\061', '\012', '\157', '\113', '\143',
'\040', '\143', '\150', '\040', '\061', '\012', '\123', '\147',
'\152', '\040', '\156', '\147', '\040', '\061', '\012', '\150',
'\166', '\161', '\040', '\164', '\150', '\040', '\061', '\012',
'\153', '\146', '\131', '\040', '\153', '\141', '\040', '\061',
'\012', '\172', '\142', '\115', '\040', '\163', '\172', '\040',
'\061', '\012', '\172', '\166', '\101', '\040', '\163', '\172',
'\040', '\061', '\012', '\143', '\110', '\160', '\040', '\143',
'\150', '\040', '\061', '\012', '\166', '\166', '\113', '\040',
'\166', '\141', '\040', '\061', '\012', '\146', '\160', '\132',
'\040', '\160', '\162', '\040', '\061', '\012', '\144', '\146',
'\130', '\040', '\144', '\145', '\040', '\061', '\012', '\167',
'\162', '\113', '\040', '\145', '\162', '\040', '\061', '\012',
'\170', '\145', '\105', '\040', '\145', '\162', '\040', '\061',
'\012', '\146', '\153', '\131', '\040', '\153', '\141', '\040',
'\061', '\012', '\163', '\142', '\130', '\040', '\163', '\172',
'\040', '\061', '\012', '\146', '\143', '\123', '\040', '\143',
'\150', '\040', '\061', '\012', '\166', '\113', '\150', '\040',
'\164', '\150', '\040', '\061', '\012', '\121', '\154', '\170',
'\040', '\154', '\145', '\040', '\061', '\012', '\132', '\161',
'\150', '\040', '\164', '\150', '\040', '\061', '\012', '\161',
'\127', '\147', '\040', '\161', '\165', '\040', '\061', '\012',
'\143', '\144', '\114', '\040', '\143', '\150', '\040', '\061',
'\012', '\152', '\166', '\107', '\040', '\151', '\152', '\040',
'\061', '\012', '\115', '\147', '\170', '\040', '\156', '\147',
'\040', '\061', '\012', '\147', '\167', '\106', '\040', '\156',
'\147', '\040', '\061', '\012', '\153', '\144', '\120', '\040',
'\144', '\145', '\040', '\061', '\012', '\165', '\115', '\162',
'\040', '\161', '\165', '\040', '\061', '\012', '\164', '\143',
'\104', '\040', '\164', '\150', '\040', '\061', '\012', '\161',
'\162', '\114', '\040', '\161', '\165', '\040', '\061', '\012',
'\115', '\164', '\155', '\040', '\164', '\150', '\040', '\061',
'\012', '\142', '\121', '\172', '\040', '\163', '\172', '\040',
'\061', '\012', '\110', '\160', '\170', '\040', '\160', '\162',
'\040', '\061', '\012', '\172', '\160', '\111', '\040', '\163',
'\172', '\040', '\061', '\012', '\152', '\153', '\122', '\040',
'\151', '\152', '\040', '\061', '\012', '\153', '\150', '\110',
'\040', '\164', '\150', '\040', '\061', '\012', '\155', '\123',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\160',
'\106', '\172', '\040', '\163', '\172', '\040', '\061', '\012',
'\152', '\165', '\117', '\040', '\161', '\165', '\040', '\061',
'\012', '\130', '\171', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\152', '\107', '\144', '\040', '\144', '\145',
'\040', '\061', '\012', '\131', '\172', '\144', '\040', '\144',
'\145', '\040', '\061', '\012', '\167', '\142', '\103', '\040',
'\167', '\141', '\040', '\061', '\012', '\167', '\123', '\142',
'\040', '\167', '\141', '\040', '\061', '\012', '\163', '\132',
'\144', '\040', '\144', '\145', '\040', '\061', '\012', '\122',
'\172', '\170', '\040', '\163', '\172', '\040', '\061', '\012',
'\106', '\154', '\170', '\040', '\154', '\145', '\040', '\061',
'\012', '\142', '\161', '\103', '\040', '\161', '\165', '\040',
'\061', '\012', '\154', '\143', '\110', '\040', '\143', '\150',
'\040', '\061', '\012', '\167', '\155', '\107', '\040', '\155',
'\145', '\040', '\061', '\012', '\172', '\103', '\152', '\040',
'\151', '\152', '\040', '\061', '\012', '\170', '\141', '\104',
'\040', '\141', '\156', '\040', '\061', '\012', '\151', '\167',
'\110', '\040', '\151', '\156', '\040', '\061', '\012', '\161',
'\104', '\160', '\040', '\161', '\165', '\040', '\061', '\012',
'\163', '\107', '\170', '\040', '\163', '\172', '\040', '\061',
'\012', '\130', '\150', '\171', '\040', '\164', '\150', '\040',
'\061', '\012', '\145', '\126', '\143', '\040', '\143', '\150',
'\040', '\061', '\012', '\167', '\153', '\112', '\040', '\167',
'\141', '\040', '\061', '\012', '\114', '\143', '\146', '\040',
'\143', '\150', '\040', '\061', '\012', '\154', '\147', '\121',
'\040', '\156', '\147', '\040', '\061', '\012', '\104', '\150',
'\150', '\040', '\164', '\150', '\040', '\061', '\012', '\172',
'\146', '\117', '\040', '\163', '\172', '\040', '\061', '\012',
'\153', '\126', '\143', '\040', '\143', '\150', '\040', '\061',
'\012', '\150', '\155', '\114', '\040', '\164', '\150', '\040',
'\061', '\012', '\117', '\167', '\146', '\040', '\167', '\141',
'\040', '\061', '\012', '\167', '\132', '\143', '\040', '\143',
'\150', '\040', '\061', '\012', '\144', '\156', '\116', '\040',
'\141', '\156', '\040', '\061', '\012', '\115', '\172', '\160',
'\040', '\163', '\172', '\040', '\061', '\012', '\155', '\131',
'\167', '\040', '\155', '\145', '\040', '\061', '\012', '\171',
'\114', '\150', '\040', '\164', '\150', '\040', '\061', '\012',
'\130', '\170', '\162', '\040', '\145', '\162', '\040', '\061',
'\012', '\161', '\167', '\111', '\040', '\161', '\165', '\040',
'\061', '\012', '\124', '\170', '\163', '\040', '\163', '\172',
'\040', '\061', '\012', '\171', '\113', '\160', '\040', '\160',
'\162', '\040', '\061', '\012', '\142', '\152', '\130', '\040',
'\151', '\152', '\040', '\061', '\012', '\160', '\142', '\123',
'\040', '\160', '\162', '\040', '\061', '\012', '\172', '\162',
'\120', '\040', '\145', '\162', '\040', '\061', '\012', '\150',
'\112', '\155', '\040', '\164', '\150', '\040', '\061', '\012',
'\161', '\147', '\101', '\040', '\161', '\165', '\040', '\061',
'\012', '\172', '\167', '\131', '\040', '\163', '\172', '\040',
'\061', '\012', '\162', '\130', '\153', '\040', '\145', '\162',
'\040', '\061', '\012', '\156', '\104', '\170', '\040', '\141',
'\156', '\040', '\061', '\012', '\166', '\107', '\172', '\040',
'\163', '\172', '\040', '\061', '\012', '\155', '\121', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\165', '\160',
'\131', '\040', '\161', '\165', '\040', '\061', '\012', '\162',
'\114', '\156', '\040', '\141', '\156', '\040', '\061', '\012',
'\126', '\146', '\153', '\040', '\153', '\141', '\040', '\061',
'\012', '\167', '\103', '\166', '\040', '\166', '\141', '\040',
'\061', '\012', '\143', '\147', '\170', '\040', '\143', '\150',
'\040', '\061', '\012', '\153', '\132', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\127', '\152', '\167', '\040',
'\151', '\152', '\040', '\061', '\012', '\121', '\141', '\170',
'\040', '\141', '\156', '\040', '\061', '\012', '\147', '\162',
'\107', '\040', '\156', '\147', '\040', '\061', '\012', '\142',
'\112', '\144', '\040', '\144', '\145', '\040', '\061', '\012',
'\144', '\112', '\170', '\040', '\144', '\145', '\040', '\061',
'\012', '\143', '\115', '\144', '\040', '\143', '\150', '\040',
'\061', '\012', '\121', '\143', '\163', '\040', '\143', '\150',
'\040', '\061', '\012', '\155', '\153', '\113', '\040', '\153',
'\141', '\040', '\061', '\012', '\152', '\116', '\170', '\040',
'\151', '\152', '\040', '\061', '\012', '\155', '\162', '\131',
'\040', '\145', '\162', '\040', '\061', '\012', '\130', '\167',
'\170', '\040', '\167', '\141', '\040', '\061', '\012', '\162',
'\132', '\154', '\040', '\145', '\162', '\040', '\061', '\012',
'\147', '\170', '\125', '\040', '\156', '\147', '\040', '\061',
'\012', '\114', '\156', '\166', '\040', '\141', '\156', '\040',
'\061', '\012', '\171', '\147', '\103', '\040', '\156', '\147',
'\040', '\061', '\012', '\104', '\161', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\154', '\114', '\156', '\040',
'\141', '\156', '\040', '\061', '\012', '\155', '\156', '\121',
'\040', '\141', '\156', '\040', '\061', '\012', '\153', '\152',
'\125', '\040', '\151', '\152', '\040', '\061', '\012', '\142',
'\166', '\117', '\040', '\166', '\141', '\040', '\061', '\012',
'\157', '\126', '\155', '\040', '\157', '\156', '\040', '\061',
'\012', '\166', '\127', '\164', '\040', '\164', '\150', '\040',
'\061', '\012', '\162', '\107', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\164', '\142', '\112', '\040', '\164',
'\150', '\040', '\061', '\012', '\146', '\123', '\166', '\040',
'\166', '\141', '\040', '\061', '\012', '\167', '\112', '\156',
'\040', '\141', '\156', '\040', '\061', '\012', '\146', '\112',
'\166', '\040', '\166', '\141', '\040', '\061', '\012', '\157',
'\121', '\166', '\040', '\157', '\156', '\040', '\061', '\012',
'\126', '\167', '\163', '\040', '\163', '\172', '\040', '\061',
'\012', '\160', '\156', '\125', '\040', '\141', '\156', '\040',
'\061', '\012', '\116', '\155', '\150', '\040', '\164', '\150',
'\040', '\061', '\012', '\143', '\124', '\161', '\040', '\143',
'\150', '\040', '\061', '\012', '\105', '\144', '\170', '\040',
'\144', '\145', '\040', '\061', '\012', '\165', '\161', '\167',
'\040', '\161', '\165', '\040', '\061', '\012', '\131', '\162',
'\150', '\040', '\164', '\150', '\040', '\061', '\012', '\121',
'\156', '\170', '\040', '\141', '\156', '\040', '\061', '\012',
'\155', '\112', '\146', '\040', '\155', '\145', '\040', '\061',
'\012', '\153', '\104', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\130', '\150', '\144', '\040', '\164', '\150',
'\040', '\061', '\012', '\156', '\114', '\170', '\040', '\141',
'\156', '\040', '\061', '\012', '\170', '\153', '\125', '\040',
'\153', '\141', '\040', '\061', '\012', '\146', '\161', '\124',
'\040', '\161', '\165', '\040', '\061', '\012', '\161', '\131',
'\150', '\040', '\164', '\150', '\040', '\061', '\012', '\142',
'\106', '\166', '\040', '\166', '\141', '\040', '\061', '\012',
'\170', '\142', '\121', '\040', '\142', '\145', '\040', '\061',
'\012', '\166', '\143', '\123', '\040', '\143', '\150', '\040',
'\061', '\012', '\161', '\161', '\124', '\040', '\161', '\165',
'\040', '\061', '\012', '\147', '\153', '\106', '\040', '\156',
'\147', '\040', '\061', '\012', '\172', '\106', '\150', '\040',
'\164', '\150', '\040', '\061', '\012', '\153', '\160', '\105',
'\040', '\153', '\141', '\040', '\061', '\012', '\107', '\170',
'\142', '\040', '\142', '\145', '\040', '\061', '\012', '\132',
'\164', '\167', '\040', '\164', '\150', '\040', '\061', '\012',
'\161', '\111', '\154', '\040', '\161', '\165', '\040', '\061',
'\012', '\121', '\153', '\144', '\040', '\144', '\145', '\040',
'\061', '\012', '\167', '\144', '\126', '\040', '\144', '\145',
'\040', '\061', '\012', '\162', '\167', '\120', '\040', '\145',
'\162', '\040', '\061', '\012', '\141', '\103', '\147', '\040',
'\141', '\156', '\040', '\061', '\012', '\132', '\162', '\163',
'\040', '\145', '\162', '\040', '\061', '\012', '\172', '\155',
'\127', '\040', '\163', '\172', '\040', '\061', '\012', '\166',
'\146', '\117', '\040', '\166', '\141', '\040', '\061', '\012',
'\150', '\102', '\152', '\040', '\164', '\150', '\040', '\061',
'\012', '\164', '\142', '\110', '\040', '\164', '\150', '\040',
'\061', '\012', '\104', '\170', '\166', '\040', '\166', '\141',
'\040', '\061', '\012', '\172', '\144', '\104', '\040', '\144',
'\145', '\040', '\061', '\012', '\156', '\102', '\167', '\040',
'\141', '\156', '\040', '\061', '\012', '\154', '\162', '\126',
'\040', '\145', '\162', '\040', '\061', '\012', '\147', '\121',
'\161', '\040', '\156', '\147', '\040', '\061', '\012', '\164',
'\154', '\113', '\040', '\164', '\150', '\040', '\061', '\012',
'\172', '\164', '\120', '\040', '\164', '\150', '\040', '\061',
'\012', '\171', '\161', '\126', '\040', '\161', '\165', '\040',
'\061', '\012', '\156', '\122', '\155', '\040', '\141', '\156',
'\040', '\061', '\012', '\152', '\126', '\172', '\040', '\163',
'\172', '\040', '\061', '\012', '\103', '\162', '\161', '\040',
'\145', '\162', '\040', '\061', '\012', '\146', '\106', '\147',
'\040', '\156', '\147', '\040', '\061', '\012', '\130', '\152',
'\147', '\040', '\156', '\147', '\040', '\061', '\012', '\103',
'\155', '\154', '\040', '\154', '\145', '\040', '\061', '\012',
'\161', '\127', '\152', '\040', '\161', '\165', '\040', '\061',
'\012', '\152', '\172', '\117', '\040', '\151', '\152', '\040',
'\061', '\012', '\115', '\144', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\155', '\164', '\121', '\040', '\164',
'\150', '\040', '\061', '\012', '\162', '\107', '\166', '\040',
'\145', '\162', '\040', '\061', '\012', '\153', '\107', '\156',
'\040', '\141', '\156', '\040', '\061', '\012', '\155', '\114',
'\147', '\040', '\156', '\147', '\040', '\061', '\012', '\165',
'\127', '\152', '\040', '\161', '\165', '\040', '\061', '\012',
'\122', '\143', '\161', '\040', '\143', '\150', '\040', '\061',
'\012', '\143', '\126', '\160', '\040', '\143', '\150', '\040',
'\061', '\012', '\142', '\127', '\153', '\040', '\153', '\141',
'\040', '\061', '\012', '\130', '\172', '\170', '\040', '\163',
'\172', '\040', '\061', '\012', '\127', '\153', '\142', '\040',
'\153', '\141', '\040', '\061', '\012', '\170', '\172', '\110',
'\040', '\163', '\172', '\040', '\061', '\012', '\161', '\165',
'\120', '\040', '\165', '\156', '\040', '\061', '\012', '\144',
'\110', '\166', '\040', '\144', '\145', '\040', '\061', '\012',
'\104', '\155', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\104', '\147', '\166', '\040', '\156', '\147', '\040',
'\061', '\012', '\164', '\147', '\131', '\040', '\164', '\150',
'\040', '\061', '\012', '\152', '\164', '\115', '\040', '\164',
'\150', '\040', '\061', '\012', '\164', '\115', '\172', '\040',
'\164', '\150', '\040', '\061', '\012', '\142', '\110', '\155',
'\040', '\155', '\145', '\040', '\061', '\012', '\132', '\146',
'\153', '\040', '\153', '\141', '\040', '\061', '\012', '\170',
'\132', '\160', '\040', '\160', '\162', '\040', '\061', '\012',
'\152', '\153', '\110', '\040', '\151', '\152', '\040', '\061',
'\012', '\162', '\116', '\160', '\040', '\145', '\162', '\040',
'\061', '\012', '\170', '\115', '\166', '\040', '\166', '\141',
'\040', '\061', '\012', '\167', '\160', '\106', '\040', '\160',
'\162', '\040', '\061', '\012', '\144', '\152', '\104', '\040',
'\144', '\145', '\040', '\061', '\012', '\142', '\170', '\126',
'\040', '\142', '\145', '\040', '\061', '\012', '\150', '\147',
'\123', '\040', '\164', '\150', '\040', '\061', '\012', '\120',
'\153', '\150', '\040', '\164', '\150', '\040', '\061', '\012',
'\104', '\170', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\155', '\115', '\170', '\040', '\155', '\145', '\040',
'\061', '\012', '\144', '\107', '\152', '\040', '\144', '\145',
'\040', '\061', '\012', '\153', '\142', '\110', '\040', '\153',
'\141', '\040', '\061', '\012', '\114', '\150', '\147', '\040',
'\164', '\150', '\040', '\061', '\012', '\104', '\166', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\161', '\162',
'\124', '\040', '\161', '\165', '\040', '\061', '\012', '\111',
'\152', '\167', '\040', '\151', '\152', '\040', '\061', '\012',
'\167', '\165', '\111', '\040', '\161', '\165', '\040', '\061',
'\012', '\132', '\167', '\156', '\040', '\141', '\156', '\040',
'\061', '\012', '\144', '\150', '\112', '\040', '\164', '\150',
'\040', '\061', '\012', '\161', '\143', '\122', '\040', '\143',
'\150', '\040', '\061', '\012', '\167', '\150', '\115', '\040',
'\164', '\150', '\040', '\061', '\012', '\160', '\147', '\120',
'\040', '\156', '\147', '\040', '\061', '\012', '\161', '\153',
'\122', '\040', '\161', '\165', '\040', '\061', '\012', '\163',
'\161', '\122', '\040', '\161', '\165', '\040', '\061', '\012',
'\154', '\170', '\131', '\040', '\154', '\145', '\040', '\061',
'\012', '\166', '\126', '\167', '\040', '\166', '\141', '\040',
'\061', '\012', '\154', '\113', '\144', '\040', '\154', '\145',
'\040', '\061', '\012', '\116', '\154', '\171', '\040', '\154',
'\145', '\040', '\061', '\012', '\171', '\113', '\172', '\040',
'\163', '\172', '\040', '\061', '\012', '\161', '\102', '\142',
'\040', '\161', '\165', '\040', '\061', '\012', '\167', '\121',
'\170', '\040', '\167', '\141', '\040', '\061', '\012', '\153',
'\131', '\167', '\040', '\153', '\141', '\040', '\061', '\012',
'\146', '\121', '\144', '\040', '\144', '\145', '\040', '\061',
'\012', '\163', '\166', '\127', '\040', '\163', '\172', '\040',
'\061', '\012', '\171', '\107', '\160', '\040', '\160', '\162',
'\040', '\061', '\012', '\171', '\164', '\102', '\040', '\164',
'\150', '\040', '\061', '\012', '\152', '\166', '\125', '\040',
'\151', '\152', '\040', '\061', '\012', '\153', '\152', '\172',
'\040', '\153', '\141', '\040', '\061', '\012', '\152', '\126',
'\143', '\040', '\143', '\150', '\040', '\061', '\012', '\121',
'\142', '\172', '\040', '\163', '\172', '\040', '\061', '\012',
'\160', '\161', '\115', '\040', '\161', '\165', '\040', '\061',
'\012', '\166', '\167', '\165', '\040', '\153', '\165', '\040',
'\061', '\012', '\121', '\167', '\167', '\040', '\167', '\141',
'\040', '\061', '\012', '\144', '\143', '\132', '\040', '\143',
'\150', '\040', '\061', '\012', '\154', '\150', '\107', '\040',
'\164', '\150', '\040', '\061', '\012', '\147', '\155', '\123',
'\040', '\156', '\147', '\040', '\061', '\012', '\111', '\161',
'\172', '\040', '\161', '\165', '\040', '\061', '\012', '\172',
'\132', '\146', '\040', '\163', '\172', '\040', '\061', '\012',
'\150', '\114', '\156', '\040', '\164', '\150', '\040', '\061',
'\012', '\145', '\115', '\146', '\040', '\145', '\162', '\040',
'\061', '\012', '\170', '\116', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\155', '\120', '\155', '\040', '\165',
'\155', '\040', '\061', '\012', '\160', '\115', '\147', '\040',
'\156', '\147', '\040', '\061', '\012', '\167', '\172', '\127',
'\040', '\163', '\172', '\040', '\061', '\012', '\153', '\122',
'\154', '\040', '\154', '\145', '\040', '\061', '\012', '\150',
'\172', '\113', '\040', '\164', '\150', '\040', '\061', '\012',
'\146', '\142', '\117', '\040', '\142', '\145', '\040', '\061',
'\012', '\130', '\170', '\164', '\040', '\164', '\150', '\040',
'\061', '\012', '\106', '\156', '\170', '\040', '\141', '\156',
'\040', '\061', '\012', '\102', '\166', '\156', '\040', '\141',
'\156', '\040', '\061', '\012', '\142', '\152', '\132', '\040',
'\151', '\152', '\040', '\061', '\012', '\164', '\143', '\131',
'\040', '\164', '\150', '\040', '\061', '\012', '\144', '\155',
'\102', '\040', '\144', '\145', '\040', '\061', '\012', '\161',
'\106', '\145', '\040', '\161', '\165', '\040', '\061', '\012',
'\153', '\170', '\102', '\040', '\153', '\141', '\040', '\061',
'\012', '\161', '\102', '\172', '\040', '\161', '\165', '\040',
'\061', '\012', '\160', '\126', '\160', '\040', '\160', '\162',
'\040', '\061', '\012', '\142', '\157', '\121', '\040', '\157',
'\156', '\040', '\061', '\012', '\170', '\157', '\110', '\040',
'\157', '\156', '\040', '\061', '\012', '\144', '\127', '\147',
'\040', '\144', '\145', '\040', '\061', '\012', '\124', '\144',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\172',
'\116', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\166', '\131', '\160', '\040', '\166', '\141', '\040', '\061',
'\012', '\160', '\104', '\146', '\040', '\160', '\162', '\040',
'\061', '\012', '\154', '\167', '\107', '\040', '\154', '\145',
'\040', '\061', '\012', '\150', '\104', '\161', '\040', '\164',
'\150', '\040', '\061', '\012', '\112', '\144', '\171', '\040',
'\144', '\145', '\040', '\061', '\012', '\163', '\156', '\132',
'\040', '\141', '\156', '\040', '\061', '\012', '\155', '\172',
'\125', '\040', '\163', '\172', '\040', '\061', '\012', '\172',
'\113', '\170', '\040', '\163', '\172', '\040', '\061', '\012',
'\162', '\166', '\103', '\040', '\145', '\162', '\040', '\061',
'\012', '\167', '\165', '\123', '\040', '\161', '\165', '\040',
'\061', '\012', '\144', '\156', '\121', '\040', '\141', '\156',
'\040', '\061', '\012', '\166', '\103', '\171', '\040', '\166',
'\141', '\040', '\061', '\012', '\125', '\144', '\167', '\040',
'\167', '\141', '\040', '\061', '\012', '\142', '\124', '\154',
'\040', '\154', '\145', '\040', '\061', '\012', '\161', '\142',
'\103', '\040', '\161', '\165', '\040', '\061', '\012', '\164',
'\142', '\124', '\040', '\164', '\150', '\040', '\061', '\012',
'\151', '\104', '\153', '\040', '\153', '\141', '\040', '\061',
'\012', '\127', '\150', '\142', '\040', '\164', '\150', '\040',
'\061', '\012', '\164', '\142', '\130', '\040', '\164', '\150',
'\040', '\061', '\012', '\164', '\146', '\117', '\040', '\164',
'\150', '\040', '\061', '\012', '\124', '\146', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\144', '\142', '\127',
'\040', '\144', '\145', '\040', '\061', '\012', '\102', '\144',
'\171', '\040', '\144', '\145', '\040', '\061', '\012', '\166',
'\152', '\122', '\040', '\151', '\152', '\040', '\061', '\012',
'\143', '\142', '\103', '\040', '\143', '\150', '\040', '\061',
'\012', '\167', '\165', '\127', '\040', '\161', '\165', '\040',
'\061', '\012', '\167', '\103', '\167', '\040', '\167', '\141',
'\040', '\061', '\012', '\127', '\144', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\166', '\122', '\142', '\040',
'\166', '\141', '\040', '\061', '\012', '\142', '\127', '\155',
'\040', '\155', '\145', '\040', '\061', '\012', '\166', '\132',
'\167', '\040', '\166', '\141', '\040', '\061', '\012', '\144',
'\112', '\152', '\040', '\144', '\145', '\040', '\061', '\012',
'\161', '\132', '\171', '\040', '\161', '\165', '\040', '\061',
'\012', '\112', '\147', '\161', '\040', '\156', '\147', '\040',
'\061', '\012', '\172', '\142', '\110', '\040', '\163', '\172',
'\040', '\061', '\012', '\150', '\112', '\154', '\040', '\164',
'\150', '\040', '\061', '\012', '\130', '\150', '\147', '\040',
'\164', '\150', '\040', '\061', '\012', '\156', '\126', '\160',
'\040', '\141', '\156', '\040', '\061', '\012', '\144', '\126',
'\143', '\040', '\143', '\150', '\040', '\061', '\012', '\161',
'\103', '\143', '\040', '\143', '\150', '\040', '\061', '\012',
'\157', '\131', '\147', '\040', '\156', '\147', '\040', '\061',
'\012', '\153', '\167', '\110', '\040', '\153', '\141', '\040',
'\061', '\012', '\166', '\167', '\116', '\040', '\166', '\141',
'\040', '\061', '\012', '\172', '\146', '\167', '\040', '\163',
'\172', '\040', '\061', '\012', '\166', '\154', '\117', '\040',
'\154', '\145', '\040', '\061', '\012', '\172', '\164', '\130',
'\040', '\164', '\151', '\040', '\061', '\012', '\144', '\113',
'\170', '\040', '\144', '\145', '\040', '\061', '\012', '\170',
'\121', '\163', '\040', '\163', '\172', '\040', '\061', '\012',
'\143', '\104', '\154', '\040', '\143', '\150', '\040', '\061',
'\012', '\171', '\126', '\166', '\040', '\166', '\141', '\040',
'\061', '\012', '\172', '\160', '\116', '\040', '\163', '\172',
'\040', '\061', '\012', '\170', '\153', '\107', '\040', '\153',
'\141', '\040', '\061', '\012', '\145', '\161', '\127', '\040',
'\161', '\165', '\040', '\061', '\012', '\152', '\144', '\104',
'\040', '\144', '\151', '\040', '\061', '\012', '\146', '\121',
'\155', '\040', '\155', '\145', '\040', '\061', '\012', '\131',
'\150', '\154', '\040', '\164', '\150', '\040', '\061', '\012',
'\164', '\102', '\146', '\040', '\164', '\150', '\040', '\061',
'\012', '\161', '\105', '\146', '\040', '\161', '\165', '\040',
'\061', '\012', '\167', '\150', '\130', '\040', '\164', '\150',
'\040', '\061', '\012', '\126', '\147', '\166', '\040', '\156',
'\147', '\040', '\061', '\012', '\114', '\163', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\144', '\146', '\112',
'\040', '\144', '\145', '\040', '\061', '\012', '\132', '\144',
'\160', '\040', '\144', '\145', '\040', '\061', '\012', '\162',
'\132', '\143', '\040', '\143', '\150', '\040', '\061', '\012',
'\164', '\132', '\150', '\040', '\143', '\150', '\040', '\061',
'\012', '\155', '\164', '\103', '\040', '\164', '\150', '\040',
'\061', '\012', '\172', '\170', '\121', '\040', '\163', '\172',
'\040', '\061', '\012', '\126', '\156', '\152', '\040', '\141',
'\156', '\040', '\061', '\012', '\163', '\110', '\147', '\040',
'\156', '\147', '\040', '\061', '\012', '\167', '\131', '\154',
'\040', '\154', '\145', '\040', '\061', '\012', '\102', '\161',
'\142', '\040', '\161', '\165', '\040', '\061', '\012', '\171',
'\162', '\126', '\040', '\145', '\162', '\040', '\061', '\012',
'\131', '\143', '\163', '\040', '\143', '\150', '\040', '\061',
'\012', '\152', '\122', '\167', '\040', '\151', '\152', '\040',
'\061', '\012', '\151', '\127', '\164', '\040', '\164', '\150',
'\040', '\061', '\012', '\150', '\126', '\167', '\040', '\164',
'\150', '\040', '\061', '\012', '\167', '\132', '\163', '\040',
'\163', '\172', '\040', '\061', '\012', '\103', '\161', '\157',
'\040', '\161', '\165', '\040', '\061', '\012', '\107', '\146',
'\156', '\040', '\141', '\156', '\040', '\061', '\012', '\162',
'\102', '\166', '\040', '\145', '\162', '\040', '\061', '\012',
'\117', '\152', '\172', '\040', '\163', '\172', '\040', '\061',
'\012', '\172', '\107', '\146', '\040', '\163', '\172', '\040',
'\061', '\012', '\142', '\132', '\143', '\040', '\143', '\150',
'\040', '\061', '\012', '\106', '\166', '\144', '\040', '\144',
'\145', '\040', '\061', '\012', '\132', '\147', '\163', '\040',
'\156', '\147', '\040', '\061', '\012', '\122', '\146', '\147',
'\040', '\156', '\147', '\040', '\061', '\012', '\122', '\167',
'\167', '\040', '\167', '\141', '\040', '\061', '\012', '\131',
'\162', '\160', '\040', '\145', '\162', '\040', '\061', '\012',
'\151', '\106', '\160', '\040', '\151', '\156', '\040', '\061',
'\012', '\142', '\126', '\170', '\040', '\142', '\145', '\040',
'\061', '\012', '\172', '\146', '\115', '\040', '\163', '\172',
'\040', '\061', '\012', '\161', '\144', '\126', '\040', '\161',
'\165', '\040', '\061', '\012', '\142', '\107', '\155', '\040',
'\155', '\145', '\040', '\061', '\012', '\164', '\156', '\112',
'\040', '\164', '\150', '\040', '\061', '\012', '\160', '\144',
'\122', '\040', '\144', '\145', '\040', '\061', '\012', '\147',
'\102', '\143', '\040', '\143', '\150', '\040', '\061', '\012',
'\147', '\172', '\103', '\040', '\156', '\147', '\040', '\061',
'\012', '\120', '\167', '\143', '\040', '\143', '\150', '\040',
'\061', '\012', '\165', '\101', '\167', '\040', '\161', '\165',
'\040', '\061', '\012', '\172', '\156', '\130', '\040', '\141',
'\156', '\040', '\061', '\012', '\166', '\147', '\124', '\040',
'\156', '\147', '\040', '\061', '\012', '\157', '\101', '\167',
'\040', '\153', '\157', '\040', '\061', '\012', '\170', '\102',
'\155', '\040', '\155', '\145', '\040', '\061', '\012', '\144',
'\116', '\146', '\040', '\144', '\145', '\040', '\061', '\012',
'\120', '\161', '\163', '\040', '\161', '\165', '\040', '\061',
'\012', '\116', '\160', '\144', '\040', '\144', '\151', '\040',
'\061', '\012', '\157', '\125', '\171', '\040', '\153', '\157',
'\040', '\061', '\012', '\146', '\160', '\104', '\040', '\160',
'\162', '\040', '\061', '\012', '\122', '\146', '\170', '\040',
'\146', '\157', '\040', '\061', '\012', '\154', '\130', '\155',
'\040', '\154', '\145', '\040', '\061', '\012', '\161', '\127',
'\163', '\040', '\161', '\165', '\040', '\061', '\012', '\147',
'\127', '\166', '\040', '\166', '\151', '\040', '\061', '\012',
'\106', '\167', '\166', '\040', '\166', '\141', '\040', '\061',
'\012', '\114', '\161', '\152', '\040', '\161', '\165', '\040',
'\061', '\012', '\146', '\166', '\121', '\040', '\166', '\141',
'\040', '\061', '\012', '\172', '\147', '\102', '\040', '\156',
'\147', '\040', '\061', '\012', '\153', '\112', '\154', '\040',
'\154', '\145', '\040', '\061', '\012', '\166', '\127', '\157',
'\040', '\157', '\156', '\040', '\061', '\012', '\130', '\166',
'\143', '\040', '\143', '\150', '\040', '\061', '\012', '\171',
'\104', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\142', '\144', '\120', '\040', '\144', '\145', '\040', '\061',
'\012', '\152', '\126', '\146', '\040', '\151', '\152', '\040',
'\061', '\012', '\167', '\120', '\167', '\040', '\167', '\141',
'\040', '\061', '\012', '\144', '\167', '\101', '\040', '\144',
'\145', '\040', '\061', '\012', '\117', '\161', '\160', '\040',
'\161', '\165', '\040', '\061', '\012', '\161', '\151', '\132',
'\040', '\151', '\156', '\040', '\061', '\012', '\170', '\144',
'\126', '\040', '\144', '\145', '\040', '\061', '\012', '\161',
'\106', '\147', '\040', '\156', '\147', '\040', '\061', '\012',
'\161', '\172', '\111', '\040', '\161', '\165', '\040', '\061',
'\012', '\171', '\167', '\114', '\040', '\167', '\141', '\040',
'\061', '\012', '\163', '\127', '\166', '\040', '\163', '\172',
'\040', '\061', '\012', '\124', '\160', '\171', '\040', '\160',
'\162', '\040', '\061', '\012', '\167', '\142', '\146', '\040',
'\167', '\141', '\040', '\061', '\012', '\165', '\120', '\147',
'\040', '\156', '\147', '\040', '\061', '\012', '\113', '\156',
'\167', '\040', '\141', '\156', '\040', '\061', '\012', '\151',
'\165', '\117', '\040', '\151', '\156', '\040', '\061', '\012',
'\121', '\144', '\156', '\040', '\141', '\156', '\040', '\061',
'\012', '\131', '\146', '\166', '\040', '\166', '\141', '\040',
'\061', '\012', '\167', '\165', '\113', '\040', '\161', '\165',
'\040', '\061', '\012', '\170', '\114', '\156', '\040', '\141',
'\156', '\040', '\061', '\012', '\171', '\112', '\147', '\040',
'\156', '\147', '\040', '\061', '\012', '\116', '\146', '\153',
'\040', '\153', '\141', '\040', '\061', '\012', '\131', '\161',
'\154', '\040', '\161', '\165', '\040', '\061', '\012', '\161',
'\163', '\110', '\040', '\161', '\165', '\040', '\061', '\012',
'\122', '\172', '\166', '\040', '\163', '\172', '\040', '\061',
'\012', '\142', '\111', '\160', '\040', '\160', '\162', '\040',
'\061', '\012', '\163', '\121', '\164', '\040', '\164', '\150',
'\040', '\061', '\012', '\164', '\147', '\103', '\040', '\164',
'\150', '\040', '\061', '\012', '\161', '\123', '\141', '\040',
'\141', '\156', '\040', '\061', '\012', '\146', '\170', '\121',
'\040', '\146', '\157', '\040', '\061', '\012', '\150', '\143',
'\132', '\040', '\164', '\150', '\040', '\061', '\012', '\167',
'\142', '\112', '\040', '\167', '\141', '\040', '\061', '\012',
'\161', '\122', '\154', '\040', '\161', '\165', '\040', '\061',
'\012', '\107', '\143', '\171', '\040', '\143', '\150', '\040',
'\061', '\012', '\166', '\132', '\155', '\040', '\166', '\141',
'\040', '\061', '\012', '\130', '\172', '\154', '\040', '\154',
'\145', '\040', '\061', '\012', '\167', '\147', '\122', '\040',
'\156', '\147', '\040', '\061', '\012', '\144', '\154', '\117',
'\040', '\154', '\145', '\040', '\061', '\012', '\164', '\103',
'\142', '\040', '\164', '\150', '\040', '\061', '\012', '\161',
'\155', '\131', '\040', '\161', '\165', '\040', '\061', '\012',
'\161', '\132', '\170', '\040', '\161', '\165', '\040', '\061',
'\012', '\114', '\142', '\160', '\040', '\160', '\162', '\040',
'\061', '\012', '\104', '\147', '\161', '\040', '\156', '\147',
'\040', '\061', '\012', '\126', '\153', '\152', '\040', '\151',
'\152', '\040', '\061', '\012', '\167', '\161', '\125', '\040',
'\161', '\165', '\040', '\061', '\012', '\115', '\161', '\153',
'\040', '\161', '\165', '\040', '\061', '\012', '\167', '\125',
'\166', '\040', '\166', '\141', '\040', '\061', '\012', '\161',
'\147', '\103', '\040', '\156', '\147', '\040', '\061', '\012',
'\163', '\142', '\104', '\040', '\163', '\172', '\040', '\061',
'\012', '\123', '\161', '\171', '\040', '\161', '\165', '\040',
'\061', '\012', '\142', '\115', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\102', '\172', '\164', '\040', '\164',
'\150', '\040', '\061', '\012', '\163', '\111', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\143', '\126', '\152',
'\040', '\143', '\150', '\040', '\061', '\012', '\167', '\112',
'\164', '\040', '\164', '\150', '\040', '\061', '\012', '\130',
'\152', '\155', '\040', '\151', '\152', '\040', '\061', '\012',
'\110', '\155', '\147', '\040', '\156', '\147', '\040', '\061',
'\012', '\141', '\121', '\144', '\040', '\141', '\156', '\040',
'\061', '\012', '\151', '\110', '\164', '\040', '\164', '\150',
'\040', '\061', '\012', '\146', '\115', '\155', '\040', '\155',
'\145', '\040', '\061', '\012', '\167', '\127', '\143', '\040',
'\143', '\150', '\040', '\061', '\012', '\146', '\165', '\105',
'\040', '\161', '\165', '\040', '\061', '\012', '\155', '\103',
'\146', '\040', '\155', '\145', '\040', '\061', '\012', '\161',
'\156', '\120', '\040', '\141', '\156', '\040', '\061', '\012',
'\172', '\114', '\156', '\040', '\141', '\156', '\040', '\061',
'\012', '\153', '\122', '\164', '\040', '\164', '\150', '\040',
'\061', '\012', '\115', '\166', '\154', '\040', '\154', '\145',
'\040', '\061', '\012', '\155', '\122', '\144', '\040', '\144',
'\145', '\040', '\061', '\012', '\171', '\146', '\112', '\040',
'\156', '\171', '\040', '\061', '\012', '\170', '\103', '\142',
'\040', '\142', '\145', '\040', '\061', '\012', '\163', '\121',
'\142', '\040', '\163', '\172', '\040', '\061', '\012', '\161',
'\165', '\103', '\040', '\165', '\156', '\040', '\061', '\012',
'\103', '\164', '\143', '\040', '\164', '\150', '\040', '\061',
'\012', '\160', '\120', '\166', '\040', '\166', '\141', '\040',
'\061', '\012', '\172', '\152', '\111', '\040', '\163', '\172',
'\040', '\061', '\012', '\170', '\155', '\103', '\040', '\155',
'\145', '\040', '\061', '\012', '\170', '\144', '\112', '\040',
'\144', '\145', '\040', '\061', '\012', '\156', '\130', '\166',
'\040', '\141', '\156', '\040', '\061', '\012', '\166', '\163',
'\117', '\040', '\163', '\172', '\040', '\061', '\012', '\160',
'\122', '\144', '\040', '\144', '\145', '\040', '\061', '\012',
'\166', '\142', '\106', '\040', '\166', '\141', '\040', '\061',
'\012', '\167', '\116', '\154', '\040', '\154', '\145', '\040',
'\061', '\012', '\153', '\110', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\162', '\167', '\115', '\040', '\145',
'\162', '\040', '\061', '\012', '\147', '\170', '\104', '\040',
'\156', '\147', '\040', '\061', '\012', '\121', '\150', '\151',
'\040', '\164', '\150', '\040', '\061', '\012', '\155', '\161',
'\102', '\040', '\161', '\165', '\040', '\061', '\012', '\160',
'\156', '\114', '\040', '\141', '\156', '\040', '\061', '\012',
'\142', '\113', '\142', '\040', '\142', '\145', '\040', '\061',
'\012', '\151', '\161', '\116', '\040', '\151', '\156', '\040',
'\061', '\012', '\144', '\153', '\130', '\040', '\144', '\145',
'\040', '\061', '\012', '\142', '\121', '\144', '\040', '\144',
'\145', '\040', '\061', '\012', '\142', '\116', '\152', '\040',
'\151', '\152', '\040', '\061', '\012', '\124', '\154', '\153',
'\040', '\154', '\145', '\040', '\061', '\012', '\116', '\154',
'\147', '\040', '\156', '\147', '\040', '\061', '\012', '\103',
'\170', '\150', '\040', '\164', '\150', '\040', '\061', '\012',
'\115', '\161', '\146', '\040', '\161', '\165', '\040', '\061',
'\012', '\120', '\166', '\152', '\040', '\151', '\152', '\040',
'\061', '\012', '\172', '\167', '\132', '\040', '\163', '\172',
'\040', '\061', '\012', '\160', '\107', '\142', '\040', '\160',
'\162', '\040', '\061', '\012', '\156', '\162', '\106', '\040',
'\141', '\156', '\040', '\061', '\012', '\142', '\153', '\123',
'\040', '\153', '\141', '\040', '\061', '\012', '\144', '\122',
'\166', '\040', '\144', '\145', '\040', '\061', '\012', '\152',
'\112', '\155', '\040', '\151', '\152', '\040', '\061', '\012',
'\151', '\161', '\106', '\040', '\151', '\156', '\040', '\061',
'\012', '\146', '\107', '\143', '\040', '\143', '\150', '\040',
'\061', '\012', '\156', '\170', '\127', '\040', '\141', '\156',
'\040', '\061', '\012', '\170', '\163', '\127', '\040', '\163',
'\172', '\040', '\061', '\012', '\155', '\146', '\121', '\040',
'\155', '\145', '\040', '\061', '\012', '\146', '\147', '\120',
'\040', '\156', '\147', '\040', '\061', '\012', '\152', '\154',
'\110', '\040', '\154', '\145', '\040', '\061', '\012', '\156',
'\162', '\111', '\040', '\141', '\156', '\040', '\061', '\012',
'\153', '\130', '\166', '\040', '\153', '\141', '\040', '\061',
'\012', '\126', '\160', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\172', '\115', '\153', '\040', '\163', '\172',
'\040', '\061', '\012', '\160', '\110', '\146', '\040', '\160',
'\162', '\040', '\061', '\012', '\152', '\144', '\115', '\040',
'\144', '\145', '\040', '\061', '\012', '\142', '\161', '\112',
'\040', '\161', '\165', '\040', '\061', '\012', '\103', '\153',
'\164', '\040', '\164', '\150', '\040', '\061', '\012', '\172',
'\113', '\166', '\040', '\163', '\172', '\040', '\061', '\012',
'\152', '\172', '\107', '\040', '\163', '\172', '\040', '\061',
'\012', '\165', '\111', '\170', '\040', '\161', '\165', '\040',
'\061', '\012', '\171', '\116', '\155', '\040', '\155', '\145',
'\040', '\061', '\012', '\152', '\131', '\164', '\040', '\164',
'\150', '\040', '\061', '\012', '\146', '\167', '\114', '\040',
'\167', '\141', '\040', '\061', '\012', '\144', '\132', '\170',
'\040', '\144', '\145', '\040', '\061', '\012', '\166', '\147',
'\106', '\040', '\156', '\147', '\040', '\061', '\012', '\167',
'\130', '\151', '\040', '\151', '\156', '\040', '\061', '\012',
'\166', '\132', '\164', '\040', '\164', '\150', '\040', '\061',
'\012', '\103', '\164', '\146', '\040', '\164', '\150', '\040',
'\061', '\012', '\170', '\161', '\103', '\040', '\161', '\165',
'\040', '\061', '\012', '\161', '\117', '\143', '\040', '\143',
'\150', '\040', '\061', '\012', '\171', '\147', '\130', '\040',
'\156', '\147', '\040', '\061', '\012', '\153', '\127', '\153',
'\040', '\153', '\141', '\040', '\061', '\012', '\147', '\162',
'\106', '\040', '\156', '\147', '\040', '\061', '\012', '\161',
'\156', '\130', '\040', '\141', '\156', '\040', '\061', '\012',
'\170', '\125', '\151', '\040', '\151', '\156', '\040', '\061',
'\012', '\160', '\155', '\103', '\040', '\155', '\145', '\040',
'\061', '\012', '\165', '\172', '\105', '\040', '\161', '\165',
'\040', '\061', '\012', '\111', '\166', '\167', '\040', '\166',
'\141', '\040', '\061', '\012', '\147', '\166', '\111', '\040',
'\156', '\147', '\040', '\061', '\012', '\153', '\156', '\132',
'\040', '\141', '\156', '\040', '\061', '\012', '\154', '\170',
'\132', '\040', '\154', '\145', '\040', '\061', '\012', '\130',
'\167', '\146', '\040', '\167', '\141', '\040', '\061', '\012',
'\104', '\161', '\142', '\040', '\161', '\165', '\040', '\061',
'\012', '\171', '\113', '\147', '\040', '\156', '\147', '\040',
'\061', '\012', '\126', '\167', '\147', '\040', '\156', '\147',
'\040', '\061', '\012', '\170', '\123', '\142', '\040', '\142',
'\145', '\040', '\061', '\012', '\110', '\167', '\160', '\040',
'\160', '\162', '\040', '\061', '\012', '\171', '\116', '\170',
'\040', '\156', '\171', '\040', '\061', '\012', '\171', '\157',
'\121', '\040', '\157', '\156', '\040', '\061', '\012', '\143',
'\123', '\170', '\040', '\143', '\150', '\040', '\061', '\012',
'\105', '\166', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\164', '\111', '\167', '\040', '\164', '\150', '\040',
'\061', '\012', '\144', '\146', '\132', '\040', '\144', '\145',
'\040', '\061', '\012', '\150', '\172', '\120', '\040', '\164',
'\150', '\040', '\061', '\012', '\170', '\102', '\153', '\040',
'\153', '\141', '\040', '\061', '\012', '\153', '\161', '\162',
'\040', '\161', '\165', '\040', '\061', '\012', '\171', '\102',
'\155', '\040', '\155', '\145', '\040', '\061', '\012', '\154',
'\112', '\152', '\040', '\154', '\145', '\040', '\061', '\012',
'\143', '\152', '\161', '\040', '\143', '\150', '\040', '\061',
'\012', '\144', '\162', '\127', '\040', '\145', '\162', '\040',
'\061', '\012', '\161', '\141', '\104', '\040', '\141', '\156',
'\040', '\061', '\012', '\167', '\104', '\146', '\040', '\167',
'\141', '\040', '\061', '\012', '\114', '\170', '\172', '\040',
'\163', '\172', '\040', '\061', '\012', '\172', '\121', '\146',
'\040', '\146', '\157', '\040', '\061', '\012', '\112', '\164',
'\161', '\040', '\164', '\150', '\040', '\061', '\012', '\161',
'\122', '\166', '\040', '\161', '\165', '\040', '\061', '\012',
'\107', '\146', '\143', '\040', '\143', '\150', '\040', '\061',
'\012', '\130', '\142', '\164', '\040', '\164', '\150', '\040',
'\061', '\012', '\167', '\132', '\142', '\040', '\167', '\141',
'\040', '\061', '\012', '\163', '\162', '\121', '\040', '\145',
'\162', '\040', '\061', '\012', '\147', '\112', '\161', '\040',
'\156', '\147', '\040', '\061', '\012', '\152', '\106', '\164',
'\040', '\164', '\150', '\040', '\061', '\012', '\147', '\116',
'\143', '\040', '\143', '\150', '\040', '\061', '\012', '\122',
'\153', '\162', '\040', '\145', '\162', '\040', '\061', '\012',
'\160', '\172', '\112', '\040', '\163', '\172', '\040', '\061',
'\012', '\154', '\142', '\101', '\040', '\154', '\145', '\040',
'\061', '\012', '\143', '\102', '\161', '\040', '\143', '\150',
'\040', '\061', '\012', '\113', '\171', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\170', '\143', '\117', '\040',
'\143', '\150', '\040', '\061', '\012', '\172', '\130', '\162',
'\040', '\145', '\162', '\040', '\061', '\012', '\143', '\126',
'\163', '\040', '\143', '\150', '\040', '\061', '\012', '\162',
'\131', '\155', '\040', '\145', '\162', '\040', '\061', '\012',
'\153', '\126', '\155', '\040', '\153', '\141', '\040', '\061',
'\012', '\146', '\143', '\132', '\040', '\143', '\150', '\040',
'\061', '\012', '\146', '\172', '\103', '\040', '\163', '\172',
'\040', '\061', '\012', '\164', '\113', '\160', '\040', '\164',
'\150', '\040', '\061', '\012', '\147', '\120', '\172', '\040',
'\156', '\147', '\040', '\061', '\012', '\161', '\143', '\114',
'\040', '\143', '\150', '\040', '\061', '\012', '\131', '\152',
'\162', '\040', '\145', '\162', '\040', '\061', '\012', '\172',
'\170', '\125', '\040', '\163', '\172', '\040', '\061', '\012',
'\170', '\142', '\124', '\040', '\142', '\145', '\040', '\061',
'\012', '\156', '\166', '\130', '\040', '\141', '\156', '\040',
'\061', '\012', '\161', '\155', '\122', '\040', '\161', '\165',
'\040', '\061', '\012', '\142', '\170', '\114', '\040', '\142',
'\145', '\040', '\061', '\012', '\130', '\167', '\167', '\040',
'\167', '\141', '\040', '\061', '\012', '\152', '\123', '\146',
'\040', '\151', '\152', '\040', '\061', '\012', '\154', '\116',
'\146', '\040', '\154', '\145', '\040', '\061', '\012', '\172',
'\124', '\163', '\040', '\163', '\172', '\040', '\061', '\012',
'\153', '\106', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\161', '\114', '\172', '\040', '\161', '\165', '\040',
'\061', '\012', '\162', '\162', '\130', '\040', '\145', '\162',
'\040', '\061', '\012', '\167', '\130', '\147', '\040', '\156',
'\147', '\040', '\061', '\012', '\172', '\166', '\105', '\040',
'\163', '\172', '\040', '\061', '\012', '\110', '\167', '\170',
'\040', '\167', '\141', '\040', '\061', '\012', '\161', '\106',
'\155', '\040', '\161', '\165', '\040', '\061', '\012', '\143',
'\147', '\122', '\040', '\143', '\150', '\040', '\061', '\012',
'\160', '\104', '\160', '\040', '\160', '\162', '\040', '\061',
'\012', '\117', '\161', '\142', '\040', '\161', '\165', '\040',
'\061', '\012', '\163', '\126', '\143', '\040', '\143', '\150',
'\040', '\061', '\012', '\130', '\164', '\170', '\040', '\164',
'\150', '\040', '\061', '\012', '\121', '\167', '\164', '\040',
'\164', '\150', '\040', '\061', '\012', '\127', '\146', '\145',
'\040', '\145', '\162', '\040', '\061', '\012', '\120', '\143',
'\170', '\040', '\143', '\150', '\040', '\061', '\012', '\142',
'\160', '\117', '\040', '\160', '\162', '\040', '\061', '\012',
'\103', '\167', '\147', '\040', '\156', '\147', '\040', '\061',
'\012', '\167', '\170', '\117', '\040', '\167', '\141', '\040',
'\061', '\012', '\142', '\126', '\163', '\040', '\163', '\172',
'\040', '\061', '\012', '\152', '\106', '\167', '\040', '\151',
'\152', '\040', '\061', '\012', '\146', '\156', '\106', '\040',
'\141', '\156', '\040', '\061', '\012', '\153', '\170', '\110',
'\040', '\153', '\141', '\040', '\061', '\012', '\131', '\167',
'\163', '\040', '\163', '\172', '\040', '\061', '\012', '\147',
'\144', '\104', '\040', '\156', '\147', '\040', '\061', '\012',
'\152', '\127', '\170', '\040', '\151', '\152', '\040', '\061',
'\012', '\143', '\124', '\154', '\040', '\143', '\150', '\040',
'\061', '\012', '\153', '\155', '\127', '\040', '\153', '\141',
'\040', '\061', '\012', '\155', '\150', '\127', '\040', '\164',
'\150', '\040', '\061', '\012', '\142', '\172', '\124', '\040',
'\163', '\172', '\040', '\061', '\012', '\162', '\166', '\112',
'\040', '\145', '\162', '\040', '\061', '\012', '\170', '\143',
'\112', '\040', '\143', '\150', '\040', '\061', '\012', '\166',
'\153', '\123', '\040', '\153', '\141', '\040', '\061', '\012',
'\163', '\130', '\162', '\040', '\145', '\162', '\040', '\061',
'\012', '\163', '\103', '\166', '\040', '\163', '\172', '\040',
'\061', '\012', '\116', '\164', '\160', '\040', '\164', '\150',
'\040', '\061', '\012', '\157', '\110', '\150', '\040', '\154',
'\157', '\040', '\061', '\012', '\131', '\166', '\163', '\040',
'\163', '\172', '\040', '\061', '\012', '\160', '\126', '\146',
'\040', '\160', '\162', '\040', '\061', '\012', '\153', '\105',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\161',
'\146', '\105', '\040', '\161', '\165', '\040', '\061', '\012',
'\157', '\127', '\155', '\040', '\157', '\156', '\040', '\061',
'\012', '\164', '\115', '\167', '\040', '\164', '\150', '\040',
'\061', '\012', '\172', '\131', '\160', '\040', '\163', '\172',
'\040', '\061', '\012', '\156', '\106', '\167', '\040', '\141',
'\156', '\040', '\061', '\012', '\171', '\121', '\143', '\040',
'\143', '\150', '\040', '\061', '\012', '\172', '\121', '\152',
'\040', '\163', '\172', '\040', '\061', '\012', '\167', '\113',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\155',
'\113', '\146', '\040', '\155', '\145', '\040', '\061', '\012',
'\165', '\114', '\162', '\040', '\161', '\165', '\040', '\061',
'\012', '\167', '\111', '\142', '\040', '\167', '\141', '\040',
'\061', '\012', '\167', '\162', '\110', '\040', '\145', '\162',
'\040', '\061', '\012', '\160', '\147', '\114', '\040', '\156',
'\147', '\040', '\061', '\012', '\114', '\142', '\164', '\040',
'\164', '\150', '\040', '\061', '\012', '\172', '\152', '\106',
'\040', '\163', '\172', '\040', '\061', '\012', '\161', '\106',
'\160', '\040', '\161', '\165', '\040', '\061', '\012', '\172',
'\144', '\130', '\040', '\144', '\145', '\040', '\061', '\012',
'\167', '\124', '\143', '\040', '\143', '\150', '\040', '\061',
'\012', '\112', '\167', '\154', '\040', '\154', '\145', '\040',
'\061', '\012', '\154', '\170', '\125', '\040', '\154', '\145',
'\040', '\061', '\012', '\150', '\152', '\101', '\040', '\164',
'\150', '\040', '\061', '\012', '\151', '\120', '\147', '\040',
'\151', '\156', '\040', '\061', '\012', '\130', '\156', '\163',
'\040', '\141', '\156', '\040', '\061', '\012', '\167', '\153',
'\127', '\040', '\153', '\141', '\040', '\061', '\012', '\160',
'\146', '\120', '\040', '\160', '\162', '\040', '\061', '\012',
'\104', '\171', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\152', '\127', '\165', '\040', '\161', '\165', '\040',
'\061', '\012', '\161', '\172', '\122', '\040', '\161', '\165',
'\040', '\061', '\012', '\131', '\152', '\172', '\040', '\163',
'\172', '\040', '\061', '\012', '\164', '\167', '\130', '\040',
'\164', '\150', '\040', '\061', '\012', '\116', '\167', '\152',
'\040', '\151', '\152', '\040', '\061', '\012', '\152', '\142',
'\102', '\040', '\151', '\152', '\040', '\061', '\012', '\161',
'\167', '\122', '\040', '\161', '\165', '\040', '\061', '\012',
'\131', '\164', '\146', '\040', '\164', '\150', '\040', '\061',
'\012', '\142', '\154', '\130', '\040', '\154', '\145', '\040',
'\061', '\012', '\170', '\132', '\153', '\040', '\153', '\141',
'\040', '\061', '\012', '\131', '\155', '\167', '\040', '\155',
'\145', '\040', '\061', '\012', '\167', '\146', '\130', '\040',
'\167', '\141', '\040', '\061', '\012', '\126', '\161', '\171',
'\040', '\161', '\165', '\040', '\061', '\012', '\130', '\161',
'\156', '\040', '\141', '\156', '\040', '\061', '\012', '\171',
'\125', '\167', '\040', '\167', '\141', '\040', '\061', '\012',
'\152', '\172', '\124', '\040', '\152', '\157', '\040', '\061',
'\012', '\153', '\116', '\164', '\040', '\164', '\150', '\040',
'\061', '\012', '\160', '\155', '\121', '\040', '\155', '\145',
'\040', '\061', '\012', '\144', '\130', '\162', '\040', '\145',
'\162', '\040', '\061', '\012', '\171', '\154', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\164', '\127', '\172',
'\040', '\164', '\150', '\040', '\061', '\012', '\113', '\166',
'\162', '\040', '\145', '\162', '\040', '\061', '\012', '\142',
'\150', '\121', '\040', '\164', '\150', '\040', '\061', '\012',
'\165', '\112', '\156', '\040', '\141', '\156', '\040', '\061',
'\012', '\160', '\142', '\124', '\040', '\160', '\162', '\040',
'\061', '\012', '\141', '\102', '\146', '\040', '\141', '\156',
'\040', '\061', '\012', '\122', '\150', '\152', '\040', '\164',
'\150', '\040', '\061', '\012', '\165', '\101', '\170', '\040',
'\161', '\165', '\040', '\061', '\012', '\102', '\147', '\170',
'\040', '\156', '\147', '\040', '\061', '\012', '\152', '\161',
'\116', '\040', '\161', '\165', '\040', '\061', '\012', '\152',
'\144', '\103', '\040', '\151', '\152', '\040', '\061', '\012',
'\146', '\102', '\163', '\040', '\163', '\164', '\040', '\061',
'\012', '\143', '\130', '\153', '\040', '\143', '\150', '\040',
'\061', '\012', '\156', '\155', '\115', '\040', '\141', '\156',
'\040', '\061', '\012', '\170', '\122', '\162', '\040', '\145',
'\162', '\040', '\061', '\012', '\110', '\153', '\172', '\040',
'\163', '\172', '\040', '\061', '\012', '\144', '\150', '\132',
'\040', '\164', '\150', '\040', '\061', '\012', '\106', '\171',
'\160', '\040', '\160', '\162', '\040', '\061', '\012', '\153',
'\107', '\155', '\040', '\153', '\141', '\040', '\061', '\012',
'\163', '\107', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\152', '\113', '\150', '\040', '\164', '\150', '\040',
'\061', '\012', '\166', '\104', '\172', '\040', '\163', '\172',
'\040', '\061', '\012', '\166', '\114', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\154', '\112', '\163', '\040',
'\154', '\145', '\040', '\061', '\012', '\172', '\116', '\156',
'\040', '\141', '\156', '\040', '\061', '\012', '\127', '\147',
'\152', '\040', '\156', '\147', '\040', '\061', '\012', '\152',
'\155', '\114', '\040', '\151', '\152', '\040', '\061', '\012',
'\147', '\126', '\164', '\040', '\164', '\150', '\040', '\061',
'\012', '\167', '\106', '\172', '\040', '\163', '\172', '\040',
'\061', '\012', '\172', '\142', '\104', '\040', '\163', '\172',
'\040', '\061', '\012', '\153', '\124', '\144', '\040', '\144',
'\145', '\040', '\061', '\012', '\144', '\167', '\130', '\040',
'\144', '\145', '\040', '\061', '\012', '\170', '\122', '\154',
'\040', '\154', '\145', '\040', '\061', '\012', '\101', '\172',
'\166', '\040', '\163', '\172', '\040', '\061', '\012', '\142',
'\121', '\150', '\040', '\164', '\150', '\040', '\061', '\012',
'\161', '\121', '\146', '\040', '\161', '\165', '\040', '\061',
'\012', '\171', '\157', '\132', '\040', '\157', '\156', '\040',
'\061', '\012', '\152', '\120', '\163', '\040', '\163', '\172',
'\040', '\061', '\012', '\152', '\171', '\107', '\040', '\151',
'\152', '\040', '\061', '\012', '\153', '\130', '\152', '\040',
'\153', '\141', '\040', '\061', '\012', '\171', '\102', '\166',
'\040', '\166', '\141', '\040', '\061', '\012', '\156', '\167',
'\120', '\040', '\141', '\156', '\040', '\061', '\012', '\170',
'\156', '\101', '\040', '\141', '\156', '\040', '\061', '\012',
'\142', '\113', '\146', '\040', '\142', '\145', '\040', '\061',
'\012', '\161', '\142', '\120', '\040', '\161', '\165', '\040',
'\061', '\012', '\166', '\107', '\163', '\040', '\163', '\172',
'\040', '\061', '\012', '\152', '\152', '\107', '\040', '\151',
'\152', '\040', '\061', '\012', '\113', '\161', '\143', '\040',
'\143', '\150', '\040', '\061', '\012', '\172', '\126', '\164',
'\040', '\164', '\150', '\040', '\061', '\012', '\167', '\123',
'\147', '\040', '\156', '\147', '\040', '\061', '\012', '\163',
'\127', '\155', '\040', '\163', '\172', '\040', '\061', '\012',
'\146', '\104', '\147', '\040', '\156', '\147', '\040', '\061',
'\012', '\160', '\110', '\172', '\040', '\163', '\172', '\040',
'\061', '\012', '\146', '\131', '\160', '\040', '\160', '\162',
'\040', '\061', '\012', '\172', '\162', '\127', '\040', '\145',
'\162', '\040', '\061', '\012', '\154', '\104', '\170', '\040',
'\154', '\145', '\040', '\061', '\012', '\150', '\121', '\150',
'\040', '\164', '\150', '\040', '\061', '\012', '\102', '\144',
'\160', '\040', '\144', '\145', '\040', '\061', '\012', '\146',
'\161', '\132', '\040', '\161', '\165', '\040', '\061', '\012',
'\157', '\121', '\155', '\040', '\157', '\156', '\040', '\061',
'\012', '\121', '\163', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\170', '\152', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\115', '\146', '\166', '\040', '\166',
'\141', '\040', '\061', '\012', '\172', '\142', '\121', '\040',
'\163', '\172', '\040', '\061', '\012', '\161', '\165', '\122',
'\040', '\165', '\156', '\040', '\061', '\012', '\143', '\115',
'\142', '\040', '\143', '\150', '\040', '\061', '\012', '\172',
'\161', '\104', '\040', '\161', '\165', '\040', '\061', '\012',
'\144', '\130', '\146', '\040', '\144', '\145', '\040', '\061',
'\012', '\162', '\110', '\150', '\040', '\164', '\150', '\040',
'\061', '\012', '\152', '\150', '\106', '\040', '\164', '\150',
'\040', '\061', '\012', '\156', '\116', '\146', '\040', '\141',
'\156', '\040', '\061', '\012', '\167', '\110', '\142', '\040',
'\167', '\141', '\040', '\061', '\012', '\124', '\160', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\142', '\152',
'\131', '\040', '\151', '\152', '\040', '\061', '\012', '\143',
'\112', '\161', '\040', '\143', '\150', '\040', '\061', '\012',
'\154', '\103', '\153', '\040', '\154', '\145', '\040', '\061',
'\012', '\120', '\146', '\160', '\040', '\160', '\162', '\040',
'\061', '\012', '\117', '\161', '\156', '\040', '\141', '\156',
'\040', '\061', '\012', '\146', '\155', '\122', '\040', '\155',
'\145', '\040', '\061', '\012', '\121', '\160', '\165', '\040',
'\161', '\165', '\040', '\061', '\012', '\116', '\143', '\166',
'\040', '\143', '\150', '\040', '\061', '\012', '\161', '\131',
'\162', '\040', '\161', '\165', '\040', '\061', '\012', '\163',
'\146', '\101', '\040', '\163', '\172', '\040', '\061', '\012',
'\146', '\162', '\123', '\040', '\145', '\162', '\040', '\061',
'\012', '\107', '\160', '\146', '\040', '\160', '\162', '\040',
'\061', '\012', '\152', '\155', '\104', '\040', '\151', '\152',
'\040', '\061', '\012', '\150', '\167', '\111', '\040', '\164',
'\150', '\040', '\061', '\012', '\122', '\142', '\172', '\040',
'\163', '\172', '\040', '\061', '\012', '\152', '\150', '\102',
'\040', '\164', '\150', '\040', '\061', '\012', '\170', '\130',
'\152', '\040', '\151', '\152', '\040', '\061', '\012', '\161',
'\131', '\144', '\040', '\161', '\165', '\040', '\061', '\012',
'\163', '\126', '\146', '\040', '\163', '\172', '\040', '\061',
'\012', '\143', '\103', '\172', '\040', '\143', '\150', '\040',
'\061', '\012', '\161', '\115', '\154', '\040', '\161', '\165',
'\040', '\061', '\012', '\146', '\160', '\113', '\040', '\160',
'\162', '\040', '\061', '\012', '\150', '\126', '\171', '\040',
'\164', '\150', '\040', '\061', '\012', '\154', '\143', '\112',
'\040', '\143', '\150', '\040', '\061', '\012', '\117', '\153',
'\152', '\040', '\151', '\152', '\040', '\061', '\012', '\161',
'\112', '\147', '\040', '\156', '\147', '\040', '\061', '\012',
'\152', '\114', '\160', '\040', '\151', '\152', '\040', '\061',
'\012', '\156', '\131', '\146', '\040', '\141', '\156', '\040',
'\061', '\012', '\156', '\160', '\106', '\040', '\157', '\156',
'\040', '\061', '\012', '\162', '\127', '\153', '\040', '\145',
'\162', '\040', '\061', '\012', '\155', '\143', '\120', '\040',
'\143', '\150', '\040', '\061', '\012', '\156', '\132', '\155',
'\040', '\141', '\156', '\040', '\061', '\012', '\146', '\131',
'\142', '\040', '\146', '\157', '\040', '\061', '\012', '\172',
'\142', '\103', '\040', '\163', '\172', '\040', '\061', '\012',
'\156', '\102', '\161', '\040', '\141', '\156', '\040', '\061',
'\012', '\146', '\152', '\171', '\040', '\151', '\152', '\040',
'\061', '\012', '\142', '\111', '\170', '\040', '\142', '\145',
'\040', '\061', '\012', '\164', '\167', '\116', '\040', '\164',
'\150', '\040', '\061', '\012', '\107', '\147', '\153', '\040',
'\156', '\147', '\040', '\061', '\012', '\103', '\172', '\155',
'\040', '\163', '\172', '\040', '\061', '\012', '\152', '\164',
'\117', '\040', '\164', '\150', '\040', '\061', '\012', '\156',
'\122', '\154', '\040', '\141', '\156', '\040', '\061', '\012',
'\152', '\171', '\103', '\040', '\151', '\152', '\040', '\061',
'\012', '\171', '\105', '\150', '\040', '\164', '\150', '\040',
'\061', '\012', '\166', '\155', '\110', '\040', '\166', '\141',
'\040', '\061', '\012', '\167', '\164', '\121', '\040', '\164',
'\150', '\040', '\061', '\012', '\167', '\111', '\146', '\040',
'\167', '\141', '\040', '\061', '\012', '\152', '\111', '\146',
'\040', '\151', '\152', '\040', '\061', '\012', '\161', '\142',
'\115', '\040', '\161', '\165', '\040', '\061', '\012', '\122',
'\167', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\146', '\161', '\106', '\040', '\161', '\165', '\040', '\061',
'\012', '\127', '\146', '\152', '\040', '\151', '\152', '\040',
'\061', '\012', '\152', '\146', '\127', '\040', '\151', '\152',
'\040', '\061', '\012', '\167', '\127', '\155', '\040', '\155',
'\145', '\040', '\061', '\012', '\127', '\160', '\160', '\040',
'\160', '\162', '\040', '\061', '\012', '\115', '\147', '\152',
'\040', '\156', '\147', '\040', '\061', '\012', '\144', '\123',
'\146', '\040', '\144', '\145', '\040', '\061', '\012', '\167',
'\131', '\166', '\040', '\166', '\141', '\040', '\061', '\012',
'\143', '\143', '\111', '\040', '\143', '\150', '\040', '\061',
'\012', '\171', '\154', '\124', '\040', '\154', '\145', '\040',
'\061', '\012', '\107', '\161', '\150', '\040', '\164', '\150',
'\040', '\061', '\012', '\103', '\155', '\172', '\040', '\163',
'\172', '\040', '\061', '\012', '\110', '\146', '\153', '\040',
'\153', '\141', '\040', '\061', '\012', '\161', '\102', '\164',
'\040', '\164', '\150', '\040', '\061', '\012', '\171', '\103',
'\146', '\040', '\156', '\171', '\040', '\061', '\012', '\161',
'\172', '\117', '\040', '\161', '\165', '\040', '\061', '\012',
'\171', '\144', '\106', '\040', '\144', '\145', '\040', '\061',
'\012', '\126', '\144', '\164', '\040', '\164', '\150', '\040',
'\061', '\012', '\160', '\112', '\144', '\040', '\144', '\145',
'\040', '\061', '\012', '\163', '\146', '\122', '\040', '\163',
'\172', '\040', '\061', '\012', '\144', '\154', '\126', '\040',
'\154', '\145', '\040', '\061', '\012', '\152', '\117', '\144',
'\040', '\144', '\145', '\040', '\061', '\012', '\156', '\146',
'\106', '\040', '\141', '\156', '\040', '\061', '\012', '\167',
'\124', '\164', '\040', '\164', '\150', '\040', '\061', '\012',
'\162', '\107', '\153', '\040', '\145', '\162', '\040', '\061',
'\012', '\170', '\101', '\167', '\040', '\167', '\141', '\040',
'\061', '\012', '\166', '\146', '\106', '\040', '\166', '\141',
'\040', '\061', '\012', '\104', '\172', '\147', '\040', '\156',
'\147', '\040', '\061', '\012', '\153', '\106', '\160', '\040',
'\153', '\141', '\040', '\061', '\012', '\152', '\124', '\155',
'\040', '\151', '\152', '\040', '\061', '\012', '\156', '\116',
'\161', '\040', '\141', '\156', '\040', '\061', '\012', '\161',
'\143', '\116', '\040', '\143', '\150', '\040', '\061', '\012',
'\112', '\152', '\170', '\040', '\151', '\152', '\040', '\061',
'\012', '\164', '\113', '\146', '\040', '\164', '\150', '\040',
'\061', '\012', '\132', '\162', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\150', '\155', '\113', '\040', '\164',
'\150', '\040', '\061', '\012', '\115', '\161', '\172', '\040',
'\161', '\165', '\040', '\061', '\012', '\170', '\146', '\122',
'\040', '\146', '\157', '\040', '\061', '\012', '\167', '\121',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\155',
'\161', '\107', '\040', '\161', '\165', '\040', '\061', '\012',
'\170', '\125', '\162', '\040', '\145', '\162', '\040', '\061',
'\012', '\157', '\151', '\125', '\040', '\151', '\156', '\040',
'\061', '\012', '\161', '\163', '\123', '\040', '\161', '\165',
'\040', '\061', '\012', '\161', '\107', '\147', '\040', '\156',
'\147', '\040', '\061', '\012', '\161', '\164', '\117', '\040',
'\164', '\150', '\040', '\061', '\012', '\164', '\120', '\142',
'\040', '\164', '\150', '\040', '\061', '\012', '\122', '\161',
'\155', '\040', '\161', '\165', '\040', '\061', '\012', '\166',
'\153', '\130', '\040', '\153', '\141', '\040', '\061', '\012',
'\127', '\163', '\142', '\040', '\163', '\164', '\040', '\061',
'\012', '\143', '\170', '\122', '\040', '\143', '\150', '\040',
'\061', '\012', '\146', '\132', '\162', '\040', '\145', '\162',
'\040', '\061', '\012', '\171', '\121', '\147', '\040', '\156',
'\147', '\040', '\061', '\012', '\172', '\151', '\125', '\040',
'\151', '\156', '\040', '\061', '\012', '\170', '\166', '\127',
'\040', '\166', '\141', '\040', '\061', '\012', '\141', '\104',
'\170', '\040', '\141', '\156', '\040', '\061', '\012', '\142',
'\121', '\152', '\040', '\151', '\152', '\040', '\061', '\012',
'\152', '\170', '\103', '\040', '\151', '\152', '\040', '\061',
'\012', '\124', '\167', '\153', '\040', '\153', '\141', '\040',
'\061', '\012', '\163', '\121', '\150', '\040', '\164', '\150',
'\040', '\061', '\012', '\102', '\146', '\170', '\040', '\146',
'\157', '\040', '\061', '\012', '\141', '\107', '\152', '\040',
'\141', '\156', '\040', '\061', '\012', '\120', '\147', '\143',
'\040', '\143', '\150', '\040', '\061', '\012', '\110', '\172',
'\150', '\040', '\164', '\150', '\040', '\061', '\012', '\161',
'\147', '\127', '\040', '\156', '\147', '\040', '\061', '\012',
'\153', '\144', '\106', '\040', '\144', '\145', '\040', '\061',
'\012', '\153', '\142', '\131', '\040', '\153', '\141', '\040',
'\061', '\012', '\121', '\152', '\170', '\040', '\151', '\152',
'\040', '\061', '\012', '\110', '\170', '\152', '\040', '\151',
'\152', '\040', '\061', '\012', '\164', '\126', '\170', '\040',
'\164', '\150', '\040', '\061', '\012', '\156', '\170', '\132',
'\040', '\141', '\156', '\040', '\061', '\012', '\157', '\126',
'\144', '\040', '\157', '\156', '\040', '\061', '\012', '\110',
'\154', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\152', '\113', '\172', '\040', '\163', '\172', '\040', '\061',
'\012', '\161', '\101', '\151', '\040', '\151', '\156', '\040',
'\061', '\012', '\144', '\116', '\154', '\040', '\154', '\145',
'\040', '\061', '\012', '\160', '\161', '\101', '\040', '\161',
'\165', '\040', '\061', '\012', '\145', '\111', '\166', '\040',
'\145', '\162', '\040', '\061', '\012', '\170', '\155', '\127',
'\040', '\155', '\145', '\040', '\061', '\012', '\171', '\143',
'\113', '\040', '\143', '\150', '\040', '\061', '\012', '\155',
'\121', '\144', '\040', '\144', '\145', '\040', '\061', '\012',
'\150', '\155', '\125', '\040', '\164', '\150', '\040', '\061',
'\012', '\156', '\154', '\106', '\040', '\141', '\156', '\040',
'\061', '\012', '\107', '\153', '\154', '\040', '\154', '\145',
'\040', '\061', '\012', '\161', '\102', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\162', '\150', '\121', '\040',
'\164', '\150', '\040', '\061', '\012', '\132', '\156', '\153',
'\040', '\141', '\156', '\040', '\061', '\012', '\126', '\146',
'\160', '\040', '\160', '\162', '\040', '\061', '\012', '\156',
'\102', '\156', '\040', '\141', '\156', '\040', '\061', '\012',
'\161', '\166', '\114', '\040', '\161', '\165', '\040', '\061',
'\012', '\141', '\161', '\116', '\040', '\141', '\156', '\040',
'\061', '\012', '\153', '\114', '\146', '\040', '\153', '\141',
'\040', '\061', '\012', '\172', '\112', '\162', '\040', '\145',
'\162', '\040', '\061', '\012', '\164', '\121', '\167', '\040',
'\164', '\150', '\040', '\061', '\012', '\163', '\127', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\142', '\167',
'\127', '\040', '\167', '\141', '\040', '\061', '\012', '\166',
'\172', '\102', '\040', '\163', '\172', '\040', '\061', '\012',
'\171', '\171', '\122', '\040', '\156', '\171', '\040', '\061',
'\012', '\161', '\161', '\116', '\040', '\161', '\165', '\040',
'\061', '\012', '\167', '\171', '\111', '\040', '\156', '\171',
'\040', '\061', '\012', '\152', '\172', '\112', '\040', '\163',
'\172', '\040', '\061', '\012', '\161', '\147', '\111', '\040',
'\161', '\165', '\040', '\061', '\012', '\142', '\147', '\121',
'\040', '\156', '\147', '\040', '\061', '\012', '\171', '\114',
'\164', '\040', '\164', '\150', '\040', '\061', '\012', '\126',
'\161', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\130', '\156', '\162', '\040', '\141', '\156', '\040', '\061',
'\012', '\167', '\110', '\147', '\040', '\156', '\147', '\040',
'\061', '\012', '\141', '\121', '\147', '\040', '\141', '\156',
'\040', '\061', '\012', '\143', '\106', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\172', '\152', '\121', '\040',
'\163', '\172', '\040', '\061', '\012', '\147', '\160', '\104',
'\040', '\156', '\147', '\040', '\061', '\012', '\170', '\172',
'\116', '\040', '\163', '\172', '\040', '\061', '\012', '\151',
'\111', '\167', '\040', '\151', '\156', '\040', '\061', '\012',
'\144', '\121', '\147', '\040', '\156', '\147', '\040', '\061',
'\012', '\160', '\121', '\171', '\040', '\160', '\162', '\040',
'\061', '\012', '\130', '\171', '\170', '\040', '\156', '\171',
'\040', '\061', '\012', '\163', '\127', '\143', '\040', '\143',
'\150', '\040', '\061', '\012', '\152', '\106', '\144', '\040',
'\144', '\145', '\040', '\061', '\012', '\142', '\160', '\106',
'\040', '\160', '\162', '\040', '\061', '\012', '\126', '\163',
'\166', '\040', '\163', '\164', '\040', '\061', '\012', '\121',
'\161', '\154', '\040', '\161', '\165', '\040', '\061', '\012',
'\167', '\172', '\124', '\040', '\163', '\172', '\040', '\061',
'\012', '\163', '\161', '\121', '\040', '\161', '\165', '\040',
'\061', '\012', '\113', '\172', '\155', '\040', '\163', '\172',
'\040', '\061', '\012', '\157', '\106', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\147', '\153', '\112', '\040',
'\156', '\147', '\040', '\061', '\012', '\150', '\153', '\110',
'\040', '\164', '\150', '\040', '\061', '\012', '\161', '\114',
'\147', '\040', '\156', '\147', '\040', '\061', '\012', '\142',
'\155', '\125', '\040', '\155', '\145', '\040', '\061', '\012',
'\143', '\162', '\112', '\040', '\143', '\150', '\040', '\061',
'\012', '\163', '\154', '\130', '\040', '\154', '\145', '\040',
'\061', '\012', '\124', '\172', '\170', '\040', '\163', '\172',
'\040', '\061', '\012', '\161', '\142', '\170', '\040', '\161',
'\165', '\040', '\061', '\012', '\153', '\160', '\111', '\040',
'\153', '\141', '\040', '\061', '\012', '\170', '\103', '\146',
'\040', '\146', '\157', '\040', '\061', '\012', '\106', '\155',
'\154', '\040', '\154', '\145', '\040', '\061', '\012', '\121',
'\150', '\152', '\040', '\164', '\150', '\040', '\061', '\012',
'\164', '\121', '\163', '\040', '\164', '\150', '\040', '\061',
'\012', '\166', '\122', '\144', '\040', '\144', '\145', '\040',
'\061', '\012', '\131', '\143', '\142', '\040', '\143', '\150',
'\040', '\061', '\012', '\143', '\152', '\120', '\040', '\143',
'\150', '\040', '\061', '\012', '\171', '\165', '\105', '\040',
'\161', '\165', '\040', '\061', '\012', '\147', '\111', '\151',
'\040', '\151', '\156', '\040', '\061', '\012', '\153', '\127',
'\147', '\040', '\156', '\147', '\040', '\061', '\012', '\112',
'\167', '\150', '\040', '\164', '\150', '\040', '\061', '\012',
'\146', '\126', '\171', '\040', '\156', '\171', '\040', '\061',
'\012', '\152', '\161', '\171', '\040', '\161', '\165', '\040',
'\061', '\012', '\127', '\172', '\160', '\040', '\163', '\172',
'\040', '\061', '\012', '\103', '\167', '\143', '\040', '\143',
'\150', '\040', '\061', '\012', '\161', '\105', '\171', '\040',
'\161', '\165', '\040', '\061', '\012', '\152', '\162', '\130',
'\040', '\145', '\162', '\040', '\061', '\012', '\113', '\161',
'\151', '\040', '\151', '\156', '\040', '\061', '\012', '\154',
'\131', '\166', '\040', '\154', '\145', '\040', '\061', '\012',
'\144', '\107', '\166', '\040', '\144', '\145', '\040', '\061',
'\012', '\103', '\167', '\152', '\040', '\151', '\152', '\040',
'\061', '\012', '\156', '\104', '\166', '\040', '\141', '\156',
'\040', '\061', '\012', '\117', '\152', '\155', '\040', '\151',
'\152', '\040', '\061', '\012', '\104', '\156', '\170', '\040',
'\141', '\156', '\040', '\061', '\012', '\166', '\162', '\106',
'\040', '\145', '\162', '\040', '\061', '\012', '\112', '\155',
'\162', '\040', '\145', '\162', '\040', '\061', '\012', '\172',
'\146', '\111', '\040', '\163', '\172', '\040', '\061', '\012',
'\142', '\161', '\124', '\040', '\161', '\165', '\040', '\061',
'\012', '\130', '\166', '\152', '\040', '\151', '\152', '\040',
'\061', '\012', '\156', '\120', '\160', '\040', '\141', '\156',
'\040', '\061', '\012', '\141', '\126', '\167', '\040', '\141',
'\156', '\040', '\061', '\012', '\167', '\102', '\166', '\040',
'\166', '\141', '\040', '\061', '\012', '\153', '\126', '\142',
'\040', '\153', '\141', '\040', '\061', '\012', '\147', '\143',
'\110', '\040', '\143', '\150', '\040', '\061', '\012', '\130',
'\142', '\163', '\040', '\163', '\172', '\040', '\061', '\012',
'\164', '\122', '\144', '\040', '\164', '\150', '\040', '\061',
'\012', '\155', '\121', '\172', '\040', '\163', '\172', '\040',
'\061', '\012', '\110', '\170', '\145', '\040', '\145', '\162',
'\040', '\061', '\012', '\104', '\156', '\167', '\040', '\141',
'\156', '\040', '\061', '\012', '\170', '\127', '\147', '\040',
'\156', '\147', '\040', '\061', '\012', '\160', '\107', '\143',
'\040', '\143', '\150', '\040', '\061', '\012', '\150', '\147',
'\111', '\040', '\164', '\150', '\040', '\061', '\012', '\171',
'\167', '\120', '\040', '\167', '\141', '\040', '\061', '\012',
'\156', '\162', '\127', '\040', '\141', '\156', '\040', '\061',
'\012', '\151', '\126', '\161', '\040', '\144', '\151', '\040',
'\061', '\012', '\170', '\172', '\105', '\040', '\163', '\172',
'\040', '\061', '\012', '\126', '\170', '\144', '\040', '\144',
'\145', '\040', '\061', '\012', '\114', '\172', '\143', '\040',
'\143', '\150', '\040', '\061', '\012', '\112', '\167', '\160',
'\040', '\160', '\162', '\040', '\061', '\012', '\147', '\103',
'\161', '\040', '\156', '\147', '\040', '\061', '\012', '\117',
'\164', '\161', '\040', '\164', '\150', '\040', '\061', '\012',
'\167', '\166', '\120', '\040', '\166', '\141', '\040', '\061',
'\012', '\143', '\116', '\162', '\040', '\143', '\150', '\040',
'\061', '\012', '\151', '\130', '\161', '\040', '\151', '\156',
'\040', '\061', '\012', '\121', '\156', '\154', '\040', '\151',
'\156', '\040', '\061', '\012', '\164', '\120', '\172', '\040',
'\164', '\150', '\040', '\061', '\012', '\150', '\111', '\142',
'\040', '\164', '\150', '\040', '\061', '\012', '\141', '\120',
'\147', '\040', '\141', '\156', '\040', '\061', '\012', '\172',
'\166', '\167', '\040', '\163', '\172', '\040', '\061', '\012',
'\156', '\161', '\117', '\040', '\141', '\156', '\040', '\061',
'\012', '\163', '\161', '\117', '\040', '\161', '\165', '\040',
'\061', '\012', '\142', '\152', '\121', '\040', '\151', '\152',
'\040', '\061', '\012', '\154', '\167', '\121', '\040', '\154',
'\145', '\040', '\061', '\012', '\160', '\105', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\142', '\127', '\152',
'\040', '\151', '\152', '\040', '\061', '\012', '\163', '\167',
'\124', '\040', '\163', '\172', '\040', '\061', '\012', '\147',
'\155', '\131', '\040', '\156', '\147', '\040', '\061', '\012',
'\147', '\122', '\153', '\040', '\156', '\147', '\040', '\061',
'\012', '\144', '\132', '\162', '\040', '\145', '\162', '\040',
'\061', '\012', '\146', '\115', '\162', '\040', '\145', '\162',
'\040', '\061', '\012', '\154', '\170', '\117', '\040', '\154',
'\145', '\040', '\061', '\012', '\153', '\142', '\121', '\040',
'\153', '\141', '\040', '\061', '\012', '\171', '\146', '\116',
'\040', '\156', '\171', '\040', '\061', '\012', '\171', '\155',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\152',
'\160', '\113', '\040', '\151', '\152', '\040', '\061', '\012',
'\127', '\152', '\156', '\040', '\141', '\156', '\040', '\061',
'\012', '\146', '\155', '\127', '\040', '\155', '\145', '\040',
'\061', '\012', '\162', '\113', '\170', '\040', '\145', '\162',
'\040', '\061', '\012', '\144', '\154', '\110', '\040', '\154',
'\145', '\040', '\061', '\012', '\153', '\143', '\113', '\040',
'\143', '\150', '\040', '\061', '\012', '\166', '\142', '\126',
'\040', '\166', '\141', '\040', '\061', '\012', '\161', '\116',
'\154', '\040', '\161', '\165', '\040', '\061', '\012', '\160',
'\110', '\164', '\040', '\164', '\150', '\040', '\061', '\012',
'\150', '\154', '\124', '\040', '\164', '\150', '\040', '\061',
'\012', '\154', '\102', '\166', '\040', '\154', '\145', '\040',
'\061', '\012', '\157', '\141', '\106', '\040', '\141', '\156',
'\040', '\061', '\012', '\170', '\146', '\115', '\040', '\146',
'\157', '\040', '\061', '\012', '\162', '\132', '\144', '\040',
'\145', '\162', '\040', '\061', '\012', '\152', '\147', '\127',
'\040', '\156', '\147', '\040', '\061', '\012', '\110', '\166',
'\150', '\040', '\164', '\150', '\040', '\061', '\012', '\106',
'\153', '\146', '\040', '\153', '\141', '\040', '\061', '\012',
'\143', '\104', '\143', '\040', '\143', '\150', '\040', '\061',
'\012', '\150', '\114', '\150', '\040', '\164', '\150', '\040',
'\061', '\012', '\161', '\121', '\160', '\040', '\161', '\165',
'\040', '\061', '\012', '\172', '\150', '\112', '\040', '\164',
'\150', '\040', '\061', '\012', '\151', '\166', '\121', '\040',
'\151', '\156', '\040', '\061', '\012', '\125', '\153', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\142', '\160',
'\126', '\040', '\160', '\162', '\040', '\061', '\012', '\142',
'\112', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\141', '\120', '\167', '\040', '\141', '\156', '\040', '\061',
'\012', '\163', '\144', '\113', '\040', '\144', '\145', '\040',
'\061', '\012', '\143', '\107', '\146', '\040', '\143', '\150',
'\040', '\061', '\012', '\114', '\152', '\167', '\040', '\151',
'\152', '\040', '\061', '\012', '\161', '\150', '\120', '\040',
'\164', '\150', '\040', '\061', '\012', '\155', '\106', '\167',
'\040', '\155', '\145', '\040', '\061', '\012', '\146', '\111',
'\165', '\040', '\161', '\165', '\040', '\061', '\012', '\172',
'\150', '\102', '\040', '\164', '\150', '\040', '\061', '\012',
'\146', '\165', '\110', '\040', '\161', '\165', '\040', '\061',
'\012', '\142', '\106', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\127', '\147', '\153', '\040', '\156', '\147',
'\040', '\061', '\012', '\106', '\161', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\172', '\155', '\146', '\040',
'\163', '\172', '\040', '\061', '\012', '\132', '\160', '\146',
'\040', '\160', '\162', '\040', '\061', '\012', '\156', '\106',
'\150', '\040', '\164', '\150', '\040', '\061', '\012', '\171',
'\102', '\167', '\040', '\167', '\141', '\040', '\061', '\012',
'\147', '\111', '\152', '\040', '\156', '\147', '\040', '\061',
'\012', '\161', '\102', '\146', '\040', '\146', '\157', '\040',
'\061', '\012', '\125', '\167', '\154', '\040', '\154', '\145',
'\040', '\061', '\012', '\172', '\162', '\115', '\040', '\145',
'\162', '\040', '\061', '\012', '\171', '\102', '\144', '\040',
'\144', '\145', '\040', '\061', '\012', '\122', '\154', '\146',
'\040', '\154', '\145', '\040', '\061', '\012', '\120', '\172',
'\150', '\040', '\143', '\150', '\040', '\061', '\012', '\162',
'\132', '\170', '\040', '\145', '\162', '\040', '\061', '\012',
'\161', '\126', '\163', '\040', '\161', '\165', '\040', '\061',
'\012', '\144', '\170', '\112', '\040', '\144', '\145', '\040',
'\061', '\012', '\114', '\143', '\172', '\040', '\143', '\150',
'\040', '\061', '\012', '\147', '\106', '\156', '\040', '\141',
'\156', '\040', '\061', '\012', '\166', '\111', '\155', '\040',
'\166', '\141', '\040', '\061', '\012', '\161', '\164', '\107',
'\040', '\164', '\150', '\040', '\061', '\012', '\161', '\142',
'\107', '\040', '\161', '\165', '\040', '\061', '\012', '\142',
'\110', '\147', '\040', '\156', '\147', '\040', '\061', '\012',
'\170', '\162', '\131', '\040', '\145', '\162', '\040', '\061',
'\012', '\164', '\102', '\144', '\040', '\164', '\150', '\040',
'\061', '\012', '\156', '\113', '\161', '\040', '\141', '\156',
'\040', '\061', '\012', '\116', '\153', '\164', '\040', '\164',
'\150', '\040', '\061', '\012', '\152', '\103', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\142', '\171', '\130',
'\040', '\142', '\145', '\040', '\061', '\012', '\157', '\102',
'\160', '\040', '\157', '\156', '\040', '\061', '\012', '\127',
'\152', '\172', '\040', '\163', '\172', '\040', '\061', '\012',
'\172', '\146', '\120', '\040', '\163', '\172', '\040', '\061',
'\012', '\141', '\121', '\172', '\040', '\141', '\156', '\040',
'\061', '\012', '\163', '\152', '\170', '\040', '\151', '\152',
'\040', '\061', '\012', '\156', '\146', '\127', '\040', '\141',
'\156', '\040', '\061', '\012', '\156', '\130', '\167', '\040',
'\141', '\156', '\040', '\061', '\012', '\142', '\112', '\167',
'\040', '\167', '\141', '\040', '\061', '\012', '\141', '\123',
'\146', '\040', '\141', '\156', '\040', '\061', '\012', '\151',
'\122', '\146', '\040', '\151', '\156', '\040', '\061', '\012',
'\171', '\115', '\144', '\040', '\144', '\145', '\040', '\061',
'\012', '\146', '\102', '\143', '\040', '\143', '\150', '\040',
'\061', '\012', '\166', '\170', '\122', '\040', '\166', '\141',
'\040', '\061', '\012', '\114', '\154', '\170', '\040', '\154',
'\145', '\040', '\061', '\012', '\171', '\107', '\163', '\040',
'\163', '\172', '\040', '\061', '\012', '\112', '\163', '\171',
'\040', '\163', '\172', '\040', '\061', '\012', '\114', '\166',
'\170', '\040', '\166', '\141', '\040', '\061', '\012', '\145',
'\106', '\150', '\040', '\164', '\150', '\040', '\061', '\012',
'\167', '\142', '\115', '\040', '\167', '\141', '\040', '\061',
'\012', '\165', '\117', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\167', '\127', '\154', '\040', '\154', '\145',
'\040', '\061', '\012', '\142', '\166', '\125', '\040', '\166',
'\141', '\040', '\061', '\012', '\146', '\156', '\117', '\040',
'\141', '\156', '\040', '\061', '\012', '\155', '\172', '\111',
'\040', '\163', '\172', '\040', '\061', '\012', '\126', '\143',
'\146', '\040', '\143', '\150', '\040', '\061', '\012', '\155',
'\150', '\105', '\040', '\164', '\150', '\040', '\061', '\012',
'\166', '\147', '\121', '\040', '\156', '\147', '\040', '\061',
'\012', '\152', '\147', '\120', '\040', '\156', '\147', '\040',
'\061', '\012', '\161', '\142', '\152', '\040', '\161', '\165',
'\040', '\061', '\012', '\142', '\132', '\146', '\040', '\142',
'\145', '\040', '\061', '\012', '\130', '\164', '\152', '\040',
'\164', '\150', '\040', '\061', '\012', '\171', '\131', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\152', '\144',
'\113', '\040', '\144', '\145', '\040', '\061', '\012', '\152',
'\172', '\102', '\040', '\163', '\172', '\040', '\061', '\012',
'\131', '\171', '\163', '\040', '\163', '\172', '\040', '\061',
'\012', '\167', '\125', '\147', '\040', '\156', '\147', '\040',
'\061', '\012', '\171', '\102', '\142', '\040', '\142', '\145',
'\040', '\061', '\012', '\161', '\152', '\115', '\040', '\161',
'\165', '\040', '\061', '\012', '\163', '\130', '\167', '\040',
'\163', '\172', '\040', '\061', '\012', '\130', '\161', '\167',
'\040', '\161', '\165', '\040', '\061', '\012', '\143', '\124',
'\142', '\040', '\143', '\150', '\040', '\061', '\012', '\152',
'\162', '\105', '\040', '\145', '\162', '\040', '\061', '\012',
'\163', '\116', '\160', '\040', '\163', '\172', '\040', '\061',
'\012', '\132', '\150', '\155', '\040', '\164', '\150', '\040',
'\061', '\012', '\170', '\126', '\163', '\040', '\163', '\172',
'\040', '\061', '\012', '\152', '\107', '\172', '\040', '\163',
'\172', '\040', '\061', '\012', '\112', '\161', '\150', '\040',
'\164', '\150', '\040', '\061', '\012', '\172', '\124', '\155',
'\040', '\163', '\172', '\040', '\061', '\012', '\166', '\150',
'\105', '\040', '\164', '\150', '\040', '\061', '\012', '\144',
'\121', '\151', '\040', '\151', '\156', '\040', '\061', '\012',
'\124', '\155', '\166', '\040', '\166', '\141', '\040', '\061',
'\012', '\161', '\170', '\104', '\040', '\161', '\165', '\040',
'\061', '\012', '\146', '\172', '\105', '\040', '\163', '\172',
'\040', '\061', '\012', '\166', '\115', '\162', '\040', '\145',
'\162', '\040', '\061', '\012', '\103', '\161', '\170', '\040',
'\161', '\165', '\040', '\061', '\012', '\164', '\167', '\131',
'\040', '\164', '\150', '\040', '\061', '\012', '\156', '\126',
'\172', '\040', '\141', '\156', '\040', '\061', '\012', '\154',
'\122', '\153', '\040', '\154', '\145', '\040', '\061', '\012',
'\117', '\167', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\161', '\131', '\152', '\040', '\161', '\165', '\040',
'\061', '\012', '\171', '\121', '\153', '\040', '\153', '\141',
'\040', '\061', '\012', '\116', '\154', '\146', '\040', '\154',
'\145', '\040', '\061', '\012', '\161', '\104', '\156', '\040',
'\141', '\156', '\040', '\061', '\012', '\142', '\110', '\167',
'\040', '\167', '\141', '\040', '\061', '\012', '\143', '\152',
'\101', '\040', '\143', '\150', '\040', '\061', '\012', '\163',
'\147', '\125', '\040', '\156', '\147', '\040', '\061', '\012',
'\153', '\121', '\151', '\040', '\151', '\156', '\040', '\061',
'\012', '\171', '\116', '\146', '\040', '\156', '\171', '\040',
'\061', '\012', '\154', '\167', '\132', '\040', '\154', '\145',
'\040', '\061', '\012', '\166', '\107', '\144', '\040', '\144',
'\145', '\040', '\061', '\012', '\126', '\155', '\156', '\040',
'\141', '\156', '\040', '\061', '\012', '\164', '\160', '\102',
'\040', '\164', '\150', '\040', '\061', '\012', '\143', '\106',
'\144', '\040', '\143', '\150', '\040', '\061', '\012', '\170',
'\110', '\155', '\040', '\155', '\145', '\040', '\061', '\012',
'\142', '\123', '\147', '\040', '\156', '\147', '\040', '\061',
'\012', '\150', '\105', '\161', '\040', '\164', '\150', '\040',
'\061', '\012', '\145', '\167', '\121', '\040', '\145', '\162',
'\040', '\061', '\012', '\145', '\127', '\144', '\040', '\145',
'\162', '\040', '\061', '\012', '\152', '\146', '\122', '\040',
'\151', '\152', '\040', '\061', '\012', '\172', '\160', '\131',
'\040', '\163', '\172', '\040', '\061', '\012', '\143', '\166',
'\121', '\040', '\143', '\150', '\040', '\061', '\012', '\150',
'\130', '\162', '\040', '\164', '\150', '\040', '\061', '\012',
'\143', '\112', '\167', '\040', '\143', '\150', '\040', '\061',
'\012', '\167', '\105', '\160', '\040', '\160', '\162', '\040',
'\061', '\012', '\116', '\170', '\154', '\040', '\154', '\145',
'\040', '\061', '\012', '\161', '\115', '\146', '\040', '\161',
'\165', '\040', '\061', '\012', '\166', '\107', '\143', '\040',
'\143', '\150', '\040', '\061', '\012', '\160', '\171', '\121',
'\040', '\160', '\162', '\040', '\061', '\012', '\152', '\160',
'\125', '\040', '\151', '\152', '\040', '\061', '\012', '\170',
'\157', '\101', '\040', '\157', '\156', '\040', '\061', '\012',
'\147', '\130', '\156', '\040', '\141', '\156', '\040', '\061',
'\012', '\161', '\161', '\107', '\040', '\161', '\165', '\040',
'\061', '\012', '\160', '\130', '\156', '\040', '\141', '\156',
'\040', '\061', '\012', '\166', '\154', '\120', '\040', '\154',
'\145', '\040', '\061', '\012', '\114', '\172', '\166', '\040',
'\163', '\172', '\040', '\061', '\012', '\152', '\170', '\102',
'\040', '\151', '\152', '\040', '\061', '\012', '\143', '\112',
'\143', '\040', '\143', '\150', '\040', '\061', '\012', '\152',
'\143', '\124', '\040', '\143', '\150', '\040', '\061', '\012',
'\127', '\164', '\155', '\040', '\164', '\150', '\040', '\061',
'\012', '\143', '\114', '\147', '\040', '\143', '\150', '\040',
'\061', '\012', '\153', '\125', '\170', '\040', '\153', '\141',
'\040', '\061', '\012', '\156', '\106', '\160', '\040', '\141',
'\156', '\040', '\061', '\012', '\112', '\163', '\167', '\040',
'\163', '\172', '\040', '\061', '\012', '\163', '\102', '\147',
'\040', '\156', '\147', '\040', '\061', '\012', '\152', '\106',
'\156', '\040', '\141', '\156', '\040', '\061', '\012', '\147',
'\166', '\103', '\040', '\156', '\147', '\040', '\061', '\012',
'\146', '\106', '\171', '\040', '\156', '\171', '\040', '\061',
'\012', '\161', '\156', '\101', '\040', '\141', '\156', '\040',
'\061', '\012', '\132', '\142', '\142', '\040', '\142', '\145',
'\040', '\061', '\012', '\120', '\172', '\170', '\040', '\163',
'\172', '\040', '\061', '\012', '\160', '\163', '\112', '\040',
'\163', '\172', '\040', '\061', '\012', '\154', '\132', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\171', '\146',
'\120', '\040', '\156', '\171', '\040', '\061', '\012', '\147',
'\131', '\166', '\040', '\156', '\147', '\040', '\061', '\012',
'\142', '\146', '\103', '\040', '\142', '\145', '\040', '\061',
'\012', '\144', '\115', '\170', '\040', '\144', '\145', '\040',
'\061', '\012', '\150', '\154', '\116', '\040', '\164', '\150',
'\040', '\061', '\012', '\167', '\122', '\154', '\040', '\154',
'\145', '\040', '\061', '\012', '\161', '\152', '\110', '\040',
'\161', '\165', '\040', '\061', '\012', '\127', '\152', '\143',
'\040', '\143', '\150', '\040', '\061', '\012', '\165', '\121',
'\160', '\040', '\161', '\165', '\040', '\061', '\012', '\172',
'\124', '\142', '\040', '\163', '\172', '\040', '\061', '\012',
'\161', '\125', '\162', '\040', '\161', '\165', '\040', '\061',
'\012', '\172', '\161', '\160', '\040', '\161', '\165', '\040',
'\061', '\012', '\166', '\154', '\122', '\040', '\154', '\145',
'\040', '\061', '\012', '\152', '\161', '\130', '\040', '\161',
'\165', '\040', '\061', '\012', '\163', '\167', '\122', '\040',
'\163', '\172', '\040', '\061', '\012', '\161', '\115', '\171',
'\040', '\156', '\171', '\040', '\061', '\012', '\172', '\153',
'\124', '\040', '\163', '\172', '\040', '\061', '\012', '\171',
'\161', '\130', '\040', '\161', '\165', '\040', '\061', '\012',
'\156', '\154', '\122', '\040', '\141', '\156', '\040', '\061',
'\012', '\110', '\161', '\156', '\040', '\141', '\156', '\040',
'\061', '\012', '\141', '\141', '\112', '\040', '\141', '\156',
'\040', '\061', '\012', '\154', '\113', '\167', '\040', '\154',
'\145', '\040', '\061', '\012', '\142', '\172', '\102', '\040',
'\163', '\172', '\040', '\061', '\012', '\126', '\147', '\153',
'\040', '\156', '\147', '\040', '\061', '\012', '\141', '\126',
'\155', '\040', '\141', '\156', '\040', '\061', '\012', '\144',
'\156', '\122', '\040', '\141', '\156', '\040', '\061', '\012',
'\164', '\170', '\121', '\040', '\164', '\150', '\040', '\061',
'\012', '\121', '\172', '\151', '\040', '\151', '\156', '\040',
'\061', '\012', '\172', '\170', '\126', '\040', '\163', '\172',
'\040', '\061', '\012', '\170', '\147', '\121', '\040', '\156',
'\147', '\040', '\061', '\012', '\164', '\166', '\132', '\040',
'\164', '\150', '\040', '\061', '\012', '\152', '\167', '\116',
'\040', '\151', '\152', '\040', '\061', '\012', '\105', '\161',
'\152', '\040', '\161', '\165', '\040', '\061', '\012', '\102',
'\170', '\152', '\040', '\151', '\152', '\040', '\061', '\012',
'\150', '\172', '\110', '\040', '\164', '\150', '\040', '\061',
'\012', '\121', '\146', '\171', '\040', '\156', '\171', '\040',
'\061', '\012', '\120', '\160', '\152', '\040', '\151', '\152',
'\040', '\061', '\012', '\101', '\161', '\160', '\040', '\161',
'\165', '\040', '\061', '\012', '\172', '\112', '\156', '\040',
'\141', '\156', '\040', '\061', '\012', '\163', '\172', '\106',
'\040', '\163', '\164', '\040', '\061', '\012', '\161', '\146',
'\130', '\040', '\161', '\165', '\040', '\061', '\012', '\160',
'\172', '\126', '\040', '\163', '\172', '\040', '\061', '\012',
'\164', '\147', '\116', '\040', '\164', '\150', '\040', '\061',
'\012', '\170', '\163', '\123', '\040', '\163', '\172', '\040',
'\061', '\012', '\156', '\121', '\172', '\040', '\141', '\156',
'\040', '\061', '\012', '\164', '\153', '\106', '\040', '\164',
'\150', '\040', '\061', '\012', '\121', '\150', '\161', '\040',
'\164', '\150', '\040', '\061', '\012', '\147', '\112', '\143',
'\040', '\143', '\150', '\040', '\061', '\012', '\165', '\117',
'\141', '\040', '\141', '\156', '\040', '\061', '\012', '\162',
'\161', '\127', '\040', '\161', '\165', '\040', '\061', '\012',
'\146', '\131', '\172', '\040', '\163', '\172', '\040', '\061',
'\012', '\165', '\106', '\143', '\040', '\143', '\150', '\040',
'\061', '\012', '\116', '\143', '\170', '\040', '\143', '\150',
'\040', '\061', '\012', '\154', '\115', '\167', '\040', '\154',
'\145', '\040', '\061', '\012', '\143', '\152', '\111', '\040',
'\143', '\150', '\040', '\061', '\012', '\112', '\143', '\167',
'\040', '\143', '\150', '\040', '\061', '\012', '\166', '\105',
'\157', '\040', '\157', '\156', '\040', '\061', '\012', '\145',
'\121', '\171', '\040', '\145', '\162', '\040', '\061', '\012',
'\123', '\170', '\143', '\040', '\143', '\150', '\040', '\061',
'\012', '\142', '\125', '\170', '\040', '\155', '\142', '\040',
'\061', '\012', '\172', '\144', '\112', '\040', '\163', '\172',
'\040', '\061', '\012', '\154', '\160', '\116', '\040', '\154',
'\145', '\040', '\061', '\012', '\122', '\153', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\166', '\166', '\111',
'\040', '\166', '\141', '\040', '\061', '\012', '\121', '\155',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\164',
'\147', '\112', '\040', '\164', '\150', '\040', '\061', '\012',
'\147', '\146', '\105', '\040', '\156', '\147', '\040', '\061',
'\012', '\161', '\143', '\130', '\040', '\143', '\150', '\040',
'\061', '\012', '\153', '\154', '\124', '\040', '\154', '\145',
'\040', '\061', '\012', '\142', '\142', '\126', '\040', '\142',
'\145', '\040', '\061', '\012', '\160', '\155', '\132', '\040',
'\155', '\145', '\040', '\061', '\012', '\165', '\161', '\101',
'\040', '\161', '\165', '\040', '\061', '\012', '\143', '\131',
'\171', '\040', '\143', '\150', '\040', '\061', '\012', '\167',
'\155', '\131', '\040', '\155', '\145', '\040', '\061', '\012',
'\172', '\154', '\102', '\040', '\154', '\145', '\040', '\061',
'\012', '\172', '\116', '\144', '\040', '\163', '\172', '\040',
'\061', '\012', '\143', '\166', '\132', '\040', '\143', '\150',
'\040', '\061', '\012', '\144', '\166', '\114', '\040', '\144',
'\145', '\040', '\061', '\012', '\167', '\114', '\172', '\040',
'\163', '\172', '\040', '\061', '\012', '\161', '\143', '\107',
'\040', '\143', '\150', '\040', '\061', '\012', '\121', '\152',
'\154', '\040', '\154', '\145', '\040', '\061', '\012', '\156',
'\161', '\146', '\040', '\141', '\156', '\040', '\061', '\012',
'\147', '\170', '\131', '\040', '\156', '\147', '\040', '\061',
'\012', '\141', '\161', '\111', '\040', '\141', '\156', '\040',
'\061', '\012', '\113', '\161', '\141', '\040', '\141', '\156',
'\040', '\061', '\012', '\130', '\161', '\160', '\040', '\161',
'\165', '\040', '\061', '\012', '\131', '\166', '\147', '\040',
'\156', '\147', '\040', '\061', '\012', '\161', '\161', '\106',
'\040', '\161', '\165', '\040', '\061', '\012', '\171', '\110',
'\150', '\040', '\164', '\150', '\040', '\061', '\012', '\156',
'\110', '\143', '\040', '\141', '\156', '\040', '\061', '\012',
'\125', '\161', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\172', '\146', '\116', '\040', '\163', '\172', '\040',
'\061', '\012', '\155', '\130', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\106', '\147', '\152', '\040', '\156',
'\147', '\040', '\061', '\012', '\104', '\163', '\170', '\040',
'\163', '\172', '\040', '\061', '\012', '\170', '\122', '\166',
'\040', '\166', '\141', '\040', '\061', '\012', '\167', '\142',
'\132', '\040', '\167', '\141', '\040', '\061', '\012', '\110',
'\156', '\160', '\040', '\141', '\156', '\040', '\061', '\012',
'\146', '\125', '\170', '\040', '\146', '\157', '\040', '\061',
'\012', '\143', '\131', '\144', '\040', '\143', '\150', '\040',
'\061', '\012', '\161', '\124', '\147', '\040', '\156', '\147',
'\040', '\061', '\012', '\102', '\147', '\161', '\040', '\156',
'\147', '\040', '\061', '\012', '\160', '\103', '\156', '\040',
'\141', '\156', '\040', '\061', '\012', '\130', '\155', '\150',
'\040', '\164', '\150', '\040', '\061', '\012', '\166', '\152',
'\112', '\040', '\151', '\152', '\040', '\061', '\012', '\164',
'\144', '\107', '\040', '\164', '\150', '\040', '\061', '\012',
'\132', '\150', '\153', '\040', '\164', '\150', '\040', '\061',
'\012', '\170', '\106', '\156', '\040', '\141', '\156', '\040',
'\061', '\012', '\144', '\153', '\121', '\040', '\144', '\145',
'\040', '\061', '\012', '\114', '\143', '\147', '\040', '\143',
'\150', '\040', '\061', '\012', '\155', '\111', '\165', '\040',
'\161', '\165', '\040', '\061', '\012', '\111', '\167', '\144',
'\040', '\144', '\145', '\040', '\061', '\012', '\167', '\152',
'\167', '\040', '\151', '\152', '\040', '\061', '\012', '\172',
'\142', '\130', '\040', '\163', '\172', '\040', '\061', '\012',
'\131', '\150', '\160', '\040', '\164', '\150', '\040', '\061',
'\012', '\143', '\166', '\110', '\040', '\143', '\150', '\040',
'\061', '\012', '\114', '\143', '\170', '\040', '\143', '\150',
'\040', '\061', '\012', '\127', '\146', '\156', '\040', '\141',
'\156', '\040', '\061', '\012', '\116', '\146', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\161', '\115', '\166',
'\040', '\161', '\165', '\040', '\061', '\012', '\125', '\166',
'\167', '\040', '\166', '\141', '\040', '\061', '\012', '\121',
'\156', '\150', '\040', '\164', '\150', '\040', '\061', '\012',
'\156', '\142', '\107', '\040', '\141', '\156', '\040', '\061',
'\012', '\163', '\106', '\147', '\040', '\156', '\147', '\040',
'\061', '\012', '\170', '\154', '\112', '\040', '\154', '\145',
'\040', '\061', '\012', '\142', '\120', '\142', '\040', '\142',
'\145', '\040', '\061', '\012', '\170', '\160', '\111', '\040',
'\160', '\162', '\040', '\061', '\012', '\155', '\162', '\126',
'\040', '\145', '\162', '\040', '\061', '\012', '\106', '\167',
'\165', '\040', '\161', '\165', '\040', '\061', '\012', '\167',
'\117', '\171', '\040', '\167', '\141', '\040', '\061', '\012',
'\120', '\155', '\150', '\040', '\164', '\150', '\040', '\061',
'\012', '\112', '\150', '\161', '\040', '\164', '\150', '\040',
'\061', '\012', '\132', '\142', '\170', '\040', '\142', '\145',
'\040', '\061', '\012', '\160', '\147', '\131', '\040', '\156',
'\147', '\040', '\061', '\012', '\122', '\142', '\167', '\040',
'\167', '\141', '\040', '\061', '\012', '\101', '\167', '\170',
'\040', '\167', '\141', '\040', '\061', '\012', '\155', '\143',
'\102', '\040', '\143', '\150', '\040', '\061', '\012', '\147',
'\153', '\107', '\040', '\156', '\147', '\040', '\061', '\012',
'\170', '\153', '\127', '\040', '\153', '\141', '\040', '\061',
'\012', '\120', '\156', '\167', '\040', '\151', '\156', '\040',
'\061', '\012', '\142', '\116', '\163', '\040', '\163', '\172',
'\040', '\061', '\012', '\156', '\130', '\162', '\040', '\141',
'\156', '\040', '\061', '\012', '\126', '\155', '\164', '\040',
'\164', '\150', '\040', '\061', '\012', '\145', '\125', '\166',
'\040', '\145', '\162', '\040', '\061', '\012', '\171', '\121',
'\166', '\040', '\166', '\141', '\040', '\061', '\012', '\153',
'\170', '\162', '\040', '\145', '\162', '\040', '\061', '\012',
'\113', '\163', '\167', '\040', '\163', '\172', '\040', '\061',
'\012', '\142', '\160', '\127', '\040', '\160', '\162', '\040',
'\061', '\012', '\161', '\145', '\104', '\040', '\161', '\165',
'\040', '\061', '\012', '\121', '\166', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\142', '\122', '\155', '\040',
'\155', '\145', '\040', '\061', '\012', '\161', '\112', '\155',
'\040', '\161', '\165', '\040', '\061', '\012', '\143', '\163',
'\131', '\040', '\143', '\150', '\040', '\061', '\012', '\161',
'\167', '\110', '\040', '\161', '\165', '\040', '\061', '\012',
'\103', '\161', '\143', '\040', '\143', '\150', '\040', '\061',
'\012', '\154', '\131', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\144', '\120', '\160', '\040', '\144', '\145',
'\040', '\061', '\012', '\157', '\101', '\145', '\040', '\145',
'\162', '\040', '\061', '\012', '\144', '\143', '\123', '\040',
'\143', '\150', '\040', '\061', '\012', '\165', '\167', '\125',
'\040', '\161', '\165', '\040', '\061', '\012', '\172', '\152',
'\114', '\040', '\163', '\172', '\040', '\061', '\012', '\157',
'\132', '\170', '\040', '\157', '\156', '\040', '\061', '\012',
'\153', '\152', '\122', '\040', '\151', '\152', '\040', '\061',
'\012', '\143', '\104', '\171', '\040', '\143', '\150', '\040',
'\061', '\012', '\146', '\123', '\163', '\040', '\163', '\172',
'\040', '\061', '\012', '\145', '\121', '\146', '\040', '\154',
'\145', '\040', '\061', '\012', '\161', '\102', '\155', '\040',
'\161', '\165', '\040', '\061', '\012', '\155', '\114', '\142',
'\040', '\155', '\145', '\040', '\061', '\012', '\132', '\162',
'\152', '\040', '\145', '\162', '\040', '\061', '\012', '\107',
'\153', '\170', '\040', '\153', '\141', '\040', '\061', '\012',
'\160', '\153', '\130', '\040', '\153', '\141', '\040', '\061',
'\012', '\166', '\124', '\153', '\040', '\153', '\141', '\040',
'\061', '\012', '\132', '\147', '\160', '\040', '\156', '\147',
'\040', '\061', '\012', '\144', '\150', '\120', '\040', '\164',
'\150', '\040', '\061', '\012', '\156', '\120', '\166', '\040',
'\141', '\156', '\040', '\061', '\012', '\170', '\156', '\121',
'\040', '\141', '\156', '\040', '\061', '\012', '\142', '\110',
'\160', '\040', '\160', '\162', '\040', '\061', '\012', '\130',
'\147', '\146', '\040', '\156', '\147', '\040', '\061', '\012',
'\103', '\167', '\146', '\040', '\167', '\141', '\040', '\061',
'\012', '\154', '\142', '\116', '\040', '\154', '\145', '\040',
'\061', '\012', '\152', '\116', '\155', '\040', '\151', '\152',
'\040', '\061', '\012', '\170', '\116', '\164', '\040', '\164',
'\150', '\040', '\061', '\012', '\162', '\112', '\160', '\040',
'\145', '\162', '\040', '\061', '\012', '\157', '\112', '\144',
'\040', '\157', '\156', '\040', '\061', '\012', '\122', '\171',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\154',
'\166', '\114', '\040', '\154', '\145', '\040', '\061', '\012',
'\161', '\166', '\131', '\040', '\161', '\165', '\040', '\061',
'\012', '\166', '\167', '\103', '\040', '\166', '\141', '\040',
'\061', '\012', '\153', '\106', '\152', '\040', '\151', '\152',
'\040', '\061', '\012', '\161', '\110', '\144', '\040', '\161',
'\165', '\040', '\061', '\012', '\167', '\143', '\102', '\040',
'\143', '\150', '\040', '\061', '\012', '\170', '\124', '\163',
'\040', '\163', '\172', '\040', '\061', '\012', '\146', '\121',
'\172', '\040', '\163', '\172', '\040', '\061', '\012', '\104',
'\154', '\146', '\040', '\154', '\145', '\040', '\061', '\012',
'\167', '\114', '\164', '\040', '\164', '\150', '\040', '\061',
'\012', '\106', '\142', '\150', '\040', '\164', '\150', '\040',
'\061', '\012', '\162', '\161', '\112', '\040', '\161', '\165',
'\040', '\061', '\012', '\150', '\150', '\117', '\040', '\164',
'\150', '\040', '\061', '\012', '\170', '\117', '\151', '\040',
'\151', '\156', '\040', '\061', '\012', '\155', '\161', '\172',
'\040', '\161', '\165', '\040', '\061', '\012', '\161', '\155',
'\121', '\040', '\155', '\145', '\040', '\061', '\012', '\161',
'\121', '\152', '\040', '\161', '\165', '\040', '\061', '\012',
'\157', '\166', '\121', '\040', '\157', '\156', '\040', '\061',
'\012', '\147', '\146', '\122', '\040', '\156', '\147', '\040',
'\061', '\012', '\120', '\155', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\124', '\143', '\152', '\040', '\143',
'\150', '\040', '\061', '\012', '\155', '\161', '\121', '\040',
'\161', '\165', '\040', '\061', '\012', '\155', '\167', '\126',
'\040', '\155', '\145', '\040', '\061', '\012', '\142', '\130',
'\167', '\040', '\167', '\141', '\040', '\061', '\012', '\152',
'\154', '\101', '\040', '\154', '\145', '\040', '\061', '\012',
'\146', '\152', '\107', '\040', '\151', '\152', '\040', '\061',
'\012', '\152', '\170', '\131', '\040', '\151', '\152', '\040',
'\061', '\012', '\161', '\167', '\115', '\040', '\161', '\165',
'\040', '\061', '\012', '\153', '\166', '\125', '\040', '\153',
'\141', '\040', '\061', '\012', '\102', '\153', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\147', '\146', '\101',
'\040', '\156', '\147', '\040', '\061', '\012', '\101', '\167',
'\143', '\040', '\143', '\150', '\040', '\061', '\012', '\126',
'\155', '\166', '\040', '\166', '\141', '\040', '\061', '\012',
'\121', '\150', '\154', '\040', '\164', '\150', '\040', '\061',
'\012', '\127', '\155', '\152', '\040', '\151', '\152', '\040',
'\061', '\012', '\143', '\115', '\161', '\040', '\143', '\150',
'\040', '\061', '\012', '\164', '\110', '\160', '\040', '\164',
'\150', '\040', '\061', '\012', '\154', '\120', '\142', '\040',
'\154', '\145', '\040', '\061', '\012', '\166', '\154', '\113',
'\040', '\154', '\145', '\040', '\061', '\012', '\131', '\147',
'\153', '\040', '\156', '\147', '\040', '\061', '\012', '\147',
'\112', '\163', '\040', '\156', '\147', '\040', '\061', '\012',
'\164', '\127', '\154', '\040', '\164', '\150', '\040', '\061',
'\012', '\170', '\126', '\167', '\040', '\167', '\141', '\040',
'\061', '\012', '\163', '\162', '\116', '\040', '\145', '\162',
'\040', '\061', '\012', '\125', '\150', '\142', '\040', '\164',
'\150', '\040', '\061', '\012', '\166', '\146', '\122', '\040',
'\166', '\141', '\040', '\061', '\012', '\153', '\106', '\146',
'\040', '\153', '\141', '\040', '\061', '\012', '\112', '\154',
'\172', '\040', '\154', '\145', '\040', '\061', '\012', '\146',
'\113', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\155', '\122', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\153', '\127', '\167', '\040', '\153', '\141', '\040',
'\061', '\012', '\172', '\166', '\117', '\040', '\163', '\172',
'\040', '\061', '\012', '\130', '\161', '\172', '\040', '\161',
'\165', '\040', '\061', '\012', '\144', '\111', '\152', '\040',
'\144', '\145', '\040', '\061', '\012', '\167', '\112', '\155',
'\040', '\155', '\145', '\040', '\061', '\012', '\106', '\161',
'\166', '\040', '\161', '\165', '\040', '\061', '\012', '\167',
'\116', '\164', '\040', '\164', '\150', '\040', '\061', '\012',
'\154', '\170', '\114', '\040', '\154', '\145', '\040', '\061',
'\012', '\170', '\114', '\155', '\040', '\155', '\145', '\040',
'\061', '\012', '\144', '\161', '\116', '\040', '\161', '\165',
'\040', '\061', '\012', '\167', '\122', '\152', '\040', '\151',
'\152', '\040', '\061', '\012', '\114', '\152', '\164', '\040',
'\164', '\150', '\040', '\061', '\012', '\167', '\122', '\167',
'\040', '\167', '\141', '\040', '\061', '\012', '\143', '\170',
'\102', '\040', '\143', '\150', '\040', '\061', '\012', '\143',
'\152', '\110', '\040', '\143', '\150', '\040', '\061', '\012',
'\126', '\161', '\152', '\040', '\161', '\165', '\040', '\061',
'\012', '\161', '\112', '\163', '\040', '\161', '\165', '\040',
'\061', '\012', '\143', '\106', '\153', '\040', '\143', '\150',
'\040', '\061', '\012', '\170', '\161', '\144', '\040', '\161',
'\165', '\040', '\061', '\012', '\105', '\161', '\150', '\040',
'\164', '\150', '\040', '\061', '\012', '\161', '\122', '\144',
'\040', '\161', '\165', '\040', '\061', '\012', '\166', '\146',
'\124', '\040', '\166', '\141', '\040', '\061', '\012', '\132',
'\161', '\142', '\040', '\161', '\165', '\040', '\061', '\012',
'\155', '\107', '\143', '\040', '\143', '\150', '\040', '\061',
'\012', '\123', '\142', '\144', '\040', '\144', '\145', '\040',
'\061', '\012', '\151', '\167', '\126', '\040', '\151', '\156',
'\040', '\061', '\012', '\152', '\146', '\111', '\040', '\151',
'\152', '\040', '\061', '\012', '\156', '\127', '\172', '\040',
'\141', '\156', '\040', '\061', '\012', '\114', '\152', '\147',
'\040', '\156', '\147', '\040', '\061', '\012', '\162', '\152',
'\107', '\040', '\145', '\162', '\040', '\061', '\012', '\143',
'\106', '\142', '\040', '\143', '\150', '\040', '\061', '\012',
'\165', '\161', '\132', '\040', '\161', '\165', '\040', '\061',
'\012', '\155', '\126', '\155', '\040', '\155', '\145', '\040',
'\061', '\012', '\152', '\147', '\113', '\040', '\156', '\147',
'\040', '\061', '\012', '\144', '\132', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\102', '\161', '\170', '\040',
'\161', '\165', '\040', '\061', '\012', '\161', '\165', '\107',
'\040', '\165', '\156', '\040', '\061', '\012', '\154', '\103',
'\166', '\040', '\154', '\145', '\040', '\061', '\012', '\154',
'\170', '\127', '\040', '\154', '\145', '\040', '\061', '\012',
'\147', '\107', '\142', '\040', '\156', '\147', '\040', '\061',
'\012', '\147', '\166', '\131', '\040', '\156', '\147', '\040',
'\061', '\012', '\155', '\152', '\106', '\040', '\151', '\152',
'\040', '\061', '\012', '\160', '\164', '\130', '\040', '\164',
'\150', '\040', '\061', '\012', '\160', '\131', '\171', '\040',
'\160', '\162', '\040', '\061', '\012', '\131', '\162', '\146',
'\040', '\145', '\162', '\040', '\061', '\012', '\155', '\126',
'\144', '\040', '\144', '\145', '\040', '\061', '\012', '\172',
'\160', '\122', '\040', '\163', '\172', '\040', '\061', '\012',
'\170', '\113', '\167', '\040', '\167', '\141', '\040', '\061',
'\012', '\167', '\160', '\115', '\040', '\160', '\162', '\040',
'\061', '\012', '\143', '\114', '\153', '\040', '\143', '\150',
'\040', '\061', '\012', '\123', '\161', '\172', '\040', '\161',
'\165', '\040', '\061', '\012', '\147', '\127', '\156', '\040',
'\141', '\156', '\040', '\061', '\012', '\163', '\127', '\172',
'\040', '\163', '\164', '\040', '\061', '\012', '\163', '\162',
'\123', '\040', '\145', '\162', '\040', '\061', '\012', '\143',
'\126', '\170', '\040', '\143', '\150', '\040', '\061', '\012',
'\170', '\116', '\142', '\040', '\142', '\145', '\040', '\061',
'\012', '\150', '\120', '\142', '\040', '\164', '\150', '\040',
'\061', '\012', '\142', '\107', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\164', '\144', '\110', '\040', '\164',
'\150', '\040', '\061', '\012', '\171', '\112', '\154', '\040',
'\154', '\145', '\040', '\061', '\012', '\166', '\125', '\153',
'\040', '\153', '\141', '\040', '\061', '\012', '\144', '\112',
'\172', '\040', '\163', '\172', '\040', '\061', '\012', '\161',
'\150', '\111', '\040', '\164', '\150', '\040', '\061', '\012',
'\155', '\164', '\120', '\040', '\164', '\150', '\040', '\061',
'\012', '\154', '\107', '\142', '\040', '\154', '\145', '\040',
'\061', '\012', '\150', '\104', '\170', '\040', '\164', '\150',
'\040', '\061', '\012', '\172', '\146', '\127', '\040', '\163',
'\172', '\040', '\061', '\012', '\116', '\155', '\154', '\040',
'\154', '\145', '\040', '\061', '\012', '\110', '\163', '\167',
'\040', '\163', '\164', '\040', '\061', '\012', '\160', '\146',
'\107', '\040', '\160', '\162', '\040', '\061', '\012', '\144',
'\115', '\152', '\040', '\144', '\145', '\040', '\061', '\012',
'\153', '\113', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\162', '\152', '\123', '\040', '\145', '\162', '\040',
'\061', '\012', '\121', '\154', '\147', '\040', '\156', '\147',
'\040', '\061', '\012', '\116', '\146', '\171', '\040', '\156',
'\171', '\040', '\061', '\012', '\143', '\161', '\115', '\040',
'\143', '\150', '\040', '\061', '\012', '\150', '\127', '\155',
'\040', '\164', '\150', '\040', '\061', '\012', '\146', '\165',
'\117', '\040', '\161', '\165', '\040', '\061', '\012', '\172',
'\146', '\106', '\040', '\163', '\172', '\040', '\061', '\012',
'\161', '\147', '\110', '\040', '\156', '\147', '\040', '\061',
'\012', '\142', '\160', '\132', '\040', '\160', '\162', '\040',
'\061', '\012', '\142', '\164', '\131', '\040', '\164', '\150',
'\040', '\061', '\012', '\165', '\161', '\102', '\040', '\161',
'\165', '\040', '\061', '\012', '\161', '\171', '\101', '\040',
'\161', '\165', '\040', '\061', '\012', '\130', '\162', '\160',
'\040', '\145', '\162', '\040', '\061', '\012', '\171', '\164',
'\130', '\040', '\164', '\150', '\040', '\061', '\012', '\144',
'\110', '\155', '\040', '\144', '\145', '\040', '\061', '\012',
'\166', '\102', '\147', '\040', '\156', '\147', '\040', '\061',
'\012', '\171', '\171', '\116', '\040', '\156', '\171', '\040',
'\061', '\012', '\121', '\162', '\152', '\040', '\145', '\162',
'\040', '\061', '\012', '\147', '\113', '\144', '\040', '\156',
'\147', '\040', '\061', '\012', '\142', '\146', '\125', '\040',
'\142', '\145', '\040', '\061', '\012', '\121', '\146', '\164',
'\040', '\164', '\150', '\040', '\061', '\012', '\142', '\161',
'\120', '\040', '\161', '\165', '\040', '\061', '\012', '\161',
'\117', '\172', '\040', '\161', '\165', '\040', '\061', '\012',
'\130', '\150', '\143', '\040', '\164', '\150', '\040', '\061',
'\012', '\144', '\161', '\131', '\040', '\161', '\165', '\040',
'\061', '\012', '\150', '\152', '\121', '\040', '\164', '\150',
'\040', '\061', '\012', '\131', '\146', '\165', '\040', '\161',
'\165', '\040', '\061', '\012', '\141', '\130', '\153', '\040',
'\141', '\156', '\040', '\061', '\012', '\160', '\142', '\126',
'\040', '\160', '\162', '\040', '\061', '\012', '\166', '\152',
'\120', '\040', '\151', '\152', '\040', '\061', '\012', '\131',
'\142', '\160', '\040', '\160', '\162', '\040', '\061', '\012',
'\112', '\155', '\142', '\040', '\155', '\145', '\040', '\061',
'\012', '\161', '\106', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\171', '\120', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\171', '\127', '\167', '\040', '\167',
'\141', '\040', '\061', '\012', '\166', '\150', '\130', '\040',
'\164', '\150', '\040', '\061', '\012', '\151', '\167', '\124',
'\040', '\151', '\156', '\040', '\061', '\012', '\161', '\132',
'\146', '\040', '\161', '\165', '\040', '\061', '\012', '\165',
'\161', '\125', '\040', '\161', '\165', '\040', '\061', '\012',
'\165', '\106', '\153', '\040', '\161', '\165', '\040', '\061',
'\012', '\143', '\160', '\127', '\040', '\143', '\150', '\040',
'\061', '\012', '\114', '\160', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\153', '\146', '\114', '\040', '\153',
'\141', '\040', '\061', '\012', '\160', '\121', '\145', '\040',
'\145', '\162', '\040', '\061', '\012', '\147', '\167', '\172',
'\040', '\156', '\147', '\040', '\061', '\012', '\152', '\160',
'\115', '\040', '\151', '\152', '\040', '\061', '\012', '\121',
'\153', '\155', '\040', '\153', '\141', '\040', '\061', '\012',
'\152', '\147', '\110', '\040', '\156', '\147', '\040', '\061',
'\012', '\170', '\152', '\120', '\040', '\151', '\152', '\040',
'\061', '\012', '\170', '\147', '\114', '\040', '\156', '\147',
'\040', '\061', '\012', '\152', '\114', '\155', '\040', '\151',
'\152', '\040', '\061', '\012', '\144', '\170', '\116', '\040',
'\144', '\145', '\040', '\061', '\012', '\166', '\127', '\163',
'\040', '\163', '\164', '\040', '\061', '\012', '\112', '\152',
'\150', '\040', '\164', '\150', '\040', '\061', '\012', '\150',
'\150', '\107', '\040', '\164', '\150', '\040', '\061', '\012',
'\131', '\166', '\143', '\040', '\143', '\150', '\040', '\061',
'\012', '\170', '\162', '\105', '\040', '\145', '\162', '\040',
'\061', '\012', '\142', '\132', '\167', '\040', '\167', '\141',
'\040', '\061', '\012', '\114', '\166', '\167', '\040', '\166',
'\141', '\040', '\061', '\012', '\145', '\116', '\167', '\040',
'\145', '\162', '\040', '\061', '\012', '\146', '\152', '\102',
'\040', '\151', '\152', '\040', '\061', '\012', '\144', '\143',
'\121', '\040', '\143', '\150', '\040', '\061', '\012', '\154',
'\132', '\164', '\040', '\164', '\150', '\040', '\061', '\012',
'\112', '\167', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\161', '\120', '\147', '\040', '\156', '\147', '\040',
'\061', '\012', '\170', '\115', '\142', '\040', '\142', '\145',
'\040', '\061', '\012', '\150', '\146', '\104', '\040', '\164',
'\150', '\040', '\061', '\012', '\152', '\172', '\121', '\040',
'\163', '\172', '\040', '\061', '\012', '\125', '\165', '\146',
'\040', '\161', '\165', '\040', '\061', '\012', '\172', '\107',
'\153', '\040', '\163', '\172', '\040', '\061', '\012', '\172',
'\103', '\143', '\040', '\143', '\150', '\040', '\061', '\012',
'\156', '\160', '\103', '\040', '\141', '\156', '\040', '\061',
'\012', '\164', '\127', '\144', '\040', '\164', '\150', '\040',
'\061', '\012', '\150', '\152', '\106', '\040', '\164', '\150',
'\040', '\061', '\012', '\120', '\172', '\163', '\040', '\163',
'\164', '\040', '\061', '\012', '\167', '\165', '\101', '\040',
'\161', '\165', '\040', '\061', '\012', '\121', '\150', '\147',
'\040', '\164', '\150', '\040', '\061', '\012', '\115', '\161',
'\155', '\040', '\161', '\165', '\040', '\061', '\012', '\146',
'\163', '\111', '\040', '\163', '\164', '\040', '\061', '\012',
'\146', '\144', '\125', '\040', '\144', '\145', '\040', '\061',
'\012', '\130', '\162', '\155', '\040', '\145', '\162', '\040',
'\061', '\012', '\161', '\121', '\147', '\040', '\156', '\147',
'\040', '\061', '\012', '\142', '\153', '\127', '\040', '\153',
'\141', '\040', '\061', '\012', '\144', '\110', '\147', '\040',
'\156', '\147', '\040', '\061', '\012', '\162', '\143', '\102',
'\040', '\143', '\150', '\040', '\061', '\012', '\150', '\127',
'\165', '\040', '\164', '\150', '\040', '\061', '\012', '\156',
'\111', '\161', '\040', '\141', '\156', '\040', '\061', '\012',
'\162', '\131', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\170', '\130', '\166', '\040', '\166', '\141', '\040',
'\061', '\012', '\167', '\161', '\120', '\040', '\161', '\165',
'\040', '\061', '\012', '\170', '\155', '\116', '\040', '\155',
'\145', '\040', '\061', '\012', '\163', '\112', '\146', '\040',
'\163', '\164', '\040', '\061', '\012', '\171', '\115', '\146',
'\040', '\156', '\171', '\040', '\061', '\012', '\123', '\146',
'\153', '\040', '\153', '\141', '\040', '\061', '\012', '\161',
'\172', '\127', '\040', '\161', '\165', '\040', '\061', '\012',
'\143', '\166', '\124', '\040', '\143', '\150', '\040', '\061',
'\012', '\153', '\155', '\130', '\040', '\153', '\141', '\040',
'\061', '\012', '\170', '\161', '\125', '\040', '\161', '\165',
'\040', '\061', '\012', '\143', '\156', '\107', '\040', '\141',
'\156', '\040', '\061', '\012', '\112', '\160', '\151', '\040',
'\151', '\156', '\040', '\061', '\012', '\146', '\162', '\130',
'\040', '\145', '\162', '\040', '\061', '\012', '\171', '\114',
'\146', '\040', '\156', '\171', '\040', '\061', '\012', '\165',
'\171', '\125', '\040', '\161', '\165', '\040', '\061', '\012',
'\104', '\144', '\167', '\040', '\144', '\145', '\040', '\061',
'\012', '\124', '\147', '\152', '\040', '\156', '\147', '\040',
'\061', '\012', '\161', '\145', '\110', '\040', '\161', '\165',
'\040', '\061', '\012', '\146', '\105', '\172', '\040', '\163',
'\172', '\040', '\061', '\012', '\160', '\103', '\153', '\040',
'\153', '\141', '\040', '\061', '\012', '\161', '\155', '\146',
'\040', '\161', '\165', '\040', '\061', '\012', '\162', '\152',
'\110', '\040', '\145', '\162', '\040', '\061', '\012', '\170',
'\115', '\160', '\040', '\160', '\162', '\040', '\061', '\012',
'\131', '\167', '\157', '\040', '\157', '\156', '\040', '\061',
'\012', '\172', '\147', '\104', '\040', '\156', '\147', '\040',
'\061', '\012', '\120', '\161', '\170', '\040', '\161', '\165',
'\040', '\061', '\012', '\156', '\161', '\115', '\040', '\157',
'\156', '\040', '\061', '\012', '\167', '\144', '\130', '\040',
'\144', '\145', '\040', '\061', '\012', '\102', '\160', '\172',
'\040', '\163', '\172', '\040', '\061', '\012', '\154', '\150',
'\115', '\040', '\164', '\150', '\040', '\061', '\012', '\105',
'\160', '\142', '\040', '\160', '\162', '\040', '\061', '\012',
'\142', '\150', '\112', '\040', '\164', '\150', '\040', '\061',
'\012', '\153', '\166', '\121', '\040', '\153', '\141', '\040',
'\061', '\012', '\122', '\163', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\170', '\142', '\120', '\040', '\142',
'\145', '\040', '\061', '\012', '\156', '\115', '\155', '\040',
'\141', '\156', '\040', '\061', '\012', '\170', '\165', '\103',
'\040', '\161', '\165', '\040', '\061', '\012', '\167', '\152',
'\163', '\040', '\163', '\172', '\040', '\061', '\012', '\146',
'\170', '\130', '\040', '\146', '\157', '\040', '\061', '\012',
'\150', '\166', '\124', '\040', '\164', '\150', '\040', '\061',
'\012', '\165', '\120', '\170', '\040', '\161', '\165', '\040',
'\061', '\012', '\112', '\155', '\171', '\040', '\155', '\145',
'\040', '\061', '\012', '\121', '\172', '\144', '\040', '\144',
'\145', '\040', '\061', '\012', '\116', '\163', '\172', '\040',
'\163', '\164', '\040', '\061', '\012', '\166', '\127', '\144',
'\040', '\144', '\145', '\040', '\061', '\012', '\150', '\146',
'\130', '\040', '\164', '\150', '\040', '\061', '\012', '\152',
'\103', '\147', '\040', '\156', '\147', '\040', '\061', '\012',
'\171', '\121', '\170', '\040', '\156', '\171', '\040', '\061',
'\012', '\167', '\150', '\112', '\040', '\164', '\150', '\040',
'\061', '\012', '\167', '\162', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\170', '\147', '\127', '\040', '\156',
'\147', '\040', '\061', '\012', '\112', '\150', '\152', '\040',
'\164', '\150', '\040', '\061', '\012', '\154', '\150', '\103',
'\040', '\164', '\150', '\040', '\061', '\012', '\120', '\167',
'\146', '\040', '\157', '\167', '\040', '\061', '\012', '\154',
'\152', '\103', '\040', '\154', '\145', '\040', '\061', '\012',
'\166', '\166', '\102', '\040', '\166', '\141', '\040', '\061',
'\012', '\155', '\143', '\116', '\040', '\143', '\150', '\040',
'\061', '\012', '\171', '\110', '\170', '\040', '\156', '\171',
'\040', '\061', '\012', '\142', '\102', '\152', '\040', '\151',
'\152', '\040', '\061', '\012', '\161', '\122', '\172', '\040',
'\161', '\165', '\040', '\061', '\012', '\147', '\154', '\110',
'\040', '\156', '\147', '\040', '\061', '\012', '\143', '\132',
'\160', '\040', '\143', '\150', '\040', '\061', '\012', '\161',
'\112', '\150', '\040', '\164', '\150', '\040', '\061', '\012',
'\164', '\123', '\147', '\040', '\164', '\150', '\040', '\061',
'\012', '\170', '\126', '\155', '\040', '\155', '\145', '\040',
'\061', '\012', '\165', '\127', '\163', '\040', '\161', '\165',
'\040', '\061', '\012', '\126', '\170', '\157', '\040', '\157',
'\156', '\040', '\061', '\012', '\146', '\152', '\115', '\040',
'\151', '\152', '\040', '\061', '\012', '\172', '\150', '\113',
'\040', '\164', '\150', '\040', '\061', '\012', '\103', '\152',
'\150', '\040', '\164', '\150', '\040', '\061', '\012', '\166',
'\132', '\162', '\040', '\145', '\162', '\040', '\061', '\012',
'\142', '\103', '\163', '\040', '\163', '\172', '\040', '\061',
'\012', '\162', '\167', '\131', '\040', '\145', '\162', '\040',
'\061', '\012', '\170', '\105', '\151', '\040', '\151', '\156',
'\040', '\061', '\012', '\144', '\125', '\166', '\040', '\144',
'\145', '\040', '\061', '\012', '\146', '\122', '\147', '\040',
'\156', '\147', '\040', '\061', '\012', '\107', '\143', '\165',
'\040', '\143', '\150', '\040', '\061', '\012', '\152', '\104',
'\146', '\040', '\151', '\152', '\040', '\061', '\012', '\144',
'\152', '\110', '\040', '\144', '\145', '\040', '\061', '\012',
'\166', '\154', '\125', '\040', '\154', '\145', '\040', '\061',
'\012', '\161', '\171', '\107', '\040', '\161', '\165', '\040',
'\061', '\012', '\153', '\146', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\154', '\130', '\147', '\040', '\156',
'\147', '\040', '\061', '\012', '\154', '\142', '\103', '\040',
'\154', '\145', '\040', '\061', '\012', '\120', '\167', '\147',
'\040', '\156', '\147', '\040', '\061', '\012', '\117', '\141',
'\145', '\040', '\141', '\156', '\040', '\061', '\012', '\160',
'\142', '\103', '\040', '\160', '\162', '\040', '\061', '\012',
'\144', '\127', '\164', '\040', '\164', '\150', '\040', '\061',
'\012', '\154', '\172', '\125', '\040', '\154', '\145', '\040',
'\061', '\012', '\167', '\112', '\172', '\040', '\163', '\172',
'\040', '\061', '\012', '\144', '\131', '\152', '\040', '\144',
'\145', '\040', '\061', '\012', '\143', '\102', '\152', '\040',
'\143', '\150', '\040', '\061', '\012', '\146', '\122', '\166',
'\040', '\166', '\141', '\040', '\061', '\012', '\144', '\152',
'\107', '\040', '\144', '\145', '\040', '\061', '\012', '\155',
'\131', '\147', '\040', '\156', '\147', '\040', '\061', '\012',
'\121', '\142', '\143', '\040', '\143', '\150', '\040', '\061',
'\012', '\147', '\156', '\130', '\040', '\141', '\156', '\040',
'\061', '\012', '\167', '\120', '\155', '\040', '\155', '\145',
'\040', '\061', '\012', '\167', '\166', '\116', '\040', '\166',
'\141', '\040', '\061', '\012', '\161', '\107', '\155', '\040',
'\161', '\165', '\040', '\061', '\012', '\161', '\116', '\150',
'\040', '\164', '\150', '\040', '\061', '\012', '\155', '\122',
'\147', '\040', '\156', '\147', '\040', '\061', '\012', '\125',
'\161', '\166', '\040', '\161', '\165', '\040', '\061', '\012',
'\121', '\170', '\155', '\040', '\155', '\145', '\040', '\061',
'\012', '\146', '\172', '\130', '\040', '\163', '\172', '\040',
'\061', '\012', '\172', '\152', '\115', '\040', '\163', '\172',
'\040', '\061', '\012', '\170', '\161', '\101', '\040', '\161',
'\165', '\040', '\061', '\012', '\142', '\115', '\163', '\040',
'\163', '\172', '\040', '\061', '\012', '\166', '\155', '\114',
'\040', '\155', '\145', '\040', '\061', '\012', '\105', '\171',
'\170', '\040', '\156', '\171', '\040', '\061', '\012', '\150',
'\110', '\152', '\040', '\164', '\150', '\040', '\061', '\012',
'\152', '\107', '\160', '\040', '\151', '\152', '\040', '\061',
'\012', '\155', '\146', '\104', '\040', '\155', '\145', '\040',
'\061', '\012', '\112', '\146', '\167', '\040', '\167', '\141',
'\040', '\061', '\012', '\127', '\152', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\142', '\132', '\163', '\040',
'\163', '\172', '\040', '\061', '\012', '\111', '\171', '\153',
'\040', '\153', '\141', '\040', '\061', '\012', '\172', '\122',
'\156', '\040', '\141', '\156', '\040', '\061', '\012', '\143',
'\144', '\125', '\040', '\143', '\150', '\040', '\061', '\012',
'\155', '\112', '\150', '\040', '\164', '\150', '\040', '\061',
'\012', '\121', '\152', '\171', '\040', '\151', '\152', '\040',
'\061', '\012', '\121', '\141', '\157', '\040', '\141', '\156',
'\040', '\061', '\012', '\142', '\130', '\166', '\040', '\166',
'\141', '\040', '\061', '\012', '\150', '\123', '\147', '\040',
'\164', '\150', '\040', '\061', '\012', '\162', '\101', '\157',
'\040', '\145', '\162', '\040', '\061', '\012', '\150', '\114',
'\163', '\040', '\164', '\150', '\040', '\061', '\012', '\154',
'\103', '\163', '\040', '\154', '\145', '\040', '\061', '\012',
'\161', '\153', '\112', '\040', '\161', '\165', '\040', '\061',
'\012', '\122', '\170', '\165', '\040', '\161', '\165', '\040',
'\061', '\012', '\170', '\144', '\116', '\040', '\144', '\145',
'\040', '\061', '\012', '\171', '\131', '\170', '\040', '\156',
'\171', '\040', '\061', '\012', '\144', '\153', '\116', '\040',
'\144', '\145', '\040', '\061', '\012', '\122', '\147', '\167',
'\040', '\156', '\147', '\040', '\061', '\012', '\172', '\147',
'\114', '\040', '\163', '\172', '\040', '\061', '\012', '\122',
'\143', '\152', '\040', '\143', '\150', '\040', '\061', '\012',
'\151', '\127', '\172', '\040', '\151', '\156', '\040', '\061',
'\012', '\144', '\114', '\153', '\040', '\144', '\145', '\040',
'\061', '\012', '\155', '\160', '\130', '\040', '\155', '\145',
'\040', '\061', '\012', '\107', '\142', '\144', '\040', '\144',
'\145', '\040', '\061', '\012', '\142', '\156', '\110', '\040',
'\141', '\156', '\040', '\061', '\012', '\153', '\144', '\115',
'\040', '\144', '\145', '\040', '\061', '\012', '\167', '\161',
'\107', '\040', '\161', '\165', '\040', '\061', '\012', '\166',
'\115', '\172', '\040', '\163', '\172', '\040', '\061', '\012',
'\172', '\167', '\110', '\040', '\163', '\172', '\040', '\061',
'\012', '\167', '\147', '\170', '\040', '\156', '\147', '\040',
'\061', '\012', '\114', '\152', '\153', '\040', '\151', '\152',
'\040', '\061', '\012', '\164', '\154', '\107', '\040', '\164',
'\150', '\040', '\061', '\012', '\164', '\147', '\105', '\040',
'\164', '\150', '\040', '\061', '\012', '\127', '\143', '\167',
'\040', '\143', '\150', '\040', '\061', '\012', '\126', '\142',
'\171', '\040', '\142', '\145', '\040', '\061', '\012', '\155',
'\126', '\172', '\040', '\163', '\172', '\040', '\061', '\012',
'\110', '\147', '\143', '\040', '\143', '\150', '\040', '\061',
'\012', '\147', '\161', '\120', '\040', '\156', '\147', '\040',
'\061', '\012', '\150', '\150', '\102', '\040', '\164', '\150',
'\040', '\061', '\012', '\156', '\106', '\170', '\040', '\141',
'\156', '\040', '\061', '\012', '\171', '\102', '\146', '\040',
'\156', '\171', '\040', '\061', '\012', '\127', '\155', '\170',
'\040', '\155', '\145', '\040', '\061', '\012', '\166', '\116',
'\142', '\040', '\166', '\141', '\040', '\061', '\012', '\115',
'\156', '\166', '\040', '\141', '\156', '\040', '\061', '\012',
'\132', '\155', '\143', '\040', '\143', '\150', '\040', '\061',
'\012', '\142', '\172', '\123', '\040', '\163', '\172', '\040',
'\061', '\012', '\171', '\146', '\103', '\040', '\156', '\171',
'\040', '\061', '\012', '\105', '\160', '\170', '\040', '\160',
'\162', '\040', '\061', '\012', '\154', '\152', '\107', '\040',
'\154', '\145', '\040', '\061', '\012', '\167', '\125', '\141',
'\040', '\141', '\156', '\040', '\061', '\012', '\121', '\147',
'\157', '\040', '\156', '\147', '\040', '\061', '\012', '\160',
'\161', '\142', '\040', '\161', '\165', '\040', '\061', '\012',
'\112', '\153', '\155', '\040', '\153', '\141', '\040', '\061',
'\012', '\127', '\166', '\171', '\040', '\166', '\141', '\040',
'\061', '\012', '\102', '\152', '\160', '\040', '\151', '\152',
'\040', '\061', '\012', '\166', '\146', '\132', '\040', '\166',
'\141', '\040', '\061', '\012', '\167', '\170', '\124', '\040',
'\167', '\141', '\040', '\061', '\012', '\126', '\170', '\167',
'\040', '\167', '\141', '\040', '\061', '\012', '\144', '\122',
'\164', '\040', '\164', '\150', '\040', '\061', '\012', '\156',
'\126', '\161', '\040', '\141', '\156', '\040', '\061', '\012',
'\151', '\127', '\146', '\040', '\151', '\156', '\040', '\061',
'\012', '\123', '\155', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\152', '\167', '\107', '\040', '\151', '\152',
'\040', '\061', '\012', '\166', '\143', '\127', '\040', '\143',
'\150', '\040', '\061', '\012', '\121', '\147', '\172', '\040',
'\156', '\147', '\040', '\061', '\012', '\127', '\153', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\170', '\162',
'\114', '\040', '\145', '\162', '\040', '\061', '\012', '\164',
'\126', '\150', '\040', '\143', '\150', '\040', '\061', '\012',
'\132', '\154', '\162', '\040', '\145', '\162', '\040', '\061',
'\012', '\172', '\104', '\164', '\040', '\164', '\150', '\040',
'\061', '\012', '\171', '\170', '\120', '\040', '\156', '\171',
'\040', '\061', '\012', '\131', '\171', '\167', '\040', '\167',
'\141', '\040', '\061', '\012', '\172', '\120', '\153', '\040',
'\163', '\172', '\040', '\061', '\012', '\102', '\147', '\147',
'\040', '\156', '\147', '\040', '\061', '\012', '\170', '\117',
'\153', '\040', '\153', '\141', '\040', '\061', '\012', '\157',
'\130', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\164', '\121', '\146', '\040', '\164', '\150', '\040', '\061',
'\012', '\146', '\170', '\106', '\040', '\146', '\157', '\040',
'\061', '\012', '\144', '\117', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\126', '\164', '\160', '\040', '\164',
'\150', '\040', '\061', '\012', '\152', '\150', '\120', '\040',
'\164', '\150', '\040', '\061', '\012', '\166', '\150', '\132',
'\040', '\164', '\150', '\040', '\061', '\012', '\107', '\161',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\144',
'\106', '\147', '\040', '\156', '\147', '\040', '\061', '\012',
'\145', '\103', '\147', '\040', '\156', '\147', '\040', '\061',
'\012', '\153', '\152', '\110', '\040', '\151', '\152', '\040',
'\061', '\012', '\166', '\161', '\121', '\040', '\161', '\165',
'\040', '\061', '\012', '\152', '\160', '\114', '\040', '\151',
'\152', '\040', '\061', '\012', '\150', '\147', '\132', '\040',
'\164', '\150', '\040', '\061', '\012', '\170', '\106', '\144',
'\040', '\144', '\145', '\040', '\061', '\012', '\121', '\152',
'\144', '\040', '\144', '\145', '\040', '\061', '\012', '\170',
'\113', '\155', '\040', '\155', '\145', '\040', '\061', '\012',
'\172', '\121', '\143', '\040', '\143', '\150', '\040', '\061',
'\012', '\116', '\150', '\167', '\040', '\164', '\150', '\040',
'\061', '\012', '\113', '\161', '\157', '\040', '\161', '\165',
'\040', '\061', '\012', '\150', '\167', '\117', '\040', '\164',
'\150', '\040', '\061', '\012', '\157', '\131', '\156', '\040',
'\141', '\156', '\040', '\061', '\012', '\127', '\156', '\146',
'\040', '\141', '\156', '\040', '\061', '\012', '\166', '\123',
'\143', '\040', '\143', '\150', '\040', '\061', '\012', '\101',
'\146', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\152', '\161', '\112', '\040', '\161', '\165', '\040', '\061',
'\012', '\152', '\105', '\147', '\040', '\156', '\147', '\040',
'\061', '\012', '\144', '\113', '\160', '\040', '\144', '\145',
'\040', '\061', '\012', '\156', '\155', '\113', '\040', '\141',
'\156', '\040', '\061', '\012', '\167', '\130', '\167', '\040',
'\167', '\141', '\040', '\061', '\012', '\166', '\152', '\103',
'\040', '\151', '\152', '\040', '\061', '\012', '\144', '\130',
'\142', '\040', '\144', '\145', '\040', '\061', '\012', '\164',
'\121', '\156', '\040', '\164', '\150', '\040', '\061', '\012',
'\161', '\157', '\122', '\040', '\161', '\165', '\040', '\061',
'\012', '\142', '\122', '\146', '\040', '\142', '\145', '\040',
'\061', '\012', '\171', '\171', '\114', '\040', '\156', '\171',
'\040', '\061', '\012', '\153', '\123', '\152', '\040', '\151',
'\152', '\040', '\061', '\012', '\130', '\171', '\165', '\040',
'\161', '\165', '\040', '\061', '\012', '\166', '\155', '\101',
'\040', '\166', '\141', '\040', '\061', '\012', '\132', '\147',
'\155', '\040', '\156', '\147', '\040', '\061', '\012', '\114',
'\142', '\170', '\040', '\142', '\145', '\040', '\061', '\012',
'\142', '\111', '\166', '\040', '\166', '\141', '\040', '\061',
'\012', '\132', '\144', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\147', '\110', '\156', '\040', '\141', '\156',
'\040', '\061', '\012', '\142', '\131', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\115', '\161', '\144', '\040',
'\161', '\165', '\040', '\061', '\012', '\161', '\115', '\153',
'\040', '\161', '\165', '\040', '\061', '\012', '\121', '\163',
'\166', '\040', '\163', '\164', '\040', '\061', '\012', '\172',
'\130', '\170', '\040', '\163', '\172', '\040', '\061', '\012',
'\150', '\121', '\146', '\040', '\164', '\150', '\040', '\061',
'\012', '\167', '\143', '\126', '\040', '\143', '\150', '\040',
'\061', '\012', '\130', '\146', '\172', '\040', '\163', '\172',
'\040', '\061', '\012', '\115', '\150', '\143', '\040', '\164',
'\150', '\040', '\061', '\012', '\153', '\102', '\172', '\040',
'\163', '\172', '\040', '\061', '\012', '\142', '\127', '\160',
'\040', '\160', '\162', '\040', '\061', '\012', '\127', '\172',
'\165', '\040', '\161', '\165', '\040', '\061', '\012', '\150',
'\127', '\167', '\040', '\164', '\150', '\040', '\061', '\012',
'\171', '\116', '\160', '\040', '\160', '\162', '\040', '\061',
'\012', '\170', '\142', '\132', '\040', '\142', '\145', '\040',
'\061', '\012', '\155', '\124', '\142', '\040', '\155', '\145',
'\040', '\061', '\012', '\113', '\144', '\146', '\040', '\144',
'\145', '\040', '\061', '\012', '\160', '\146', '\121', '\040',
'\160', '\162', '\040', '\061', '\012', '\166', '\103', '\144',
'\040', '\144', '\145', '\040', '\061', '\012', '\120', '\161',
'\146', '\040', '\161', '\165', '\040', '\061', '\012', '\157',
'\146', '\132', '\040', '\157', '\156', '\040', '\061', '\012',
'\167', '\131', '\144', '\040', '\144', '\145', '\040', '\061',
'\012', '\124', '\146', '\143', '\040', '\143', '\150', '\040',
'\061', '\012', '\107', '\156', '\142', '\040', '\141', '\156',
'\040', '\061', '\012', '\132', '\144', '\170', '\040', '\144',
'\145', '\040', '\061', '\012', '\172', '\126', '\152', '\040',
'\163', '\172', '\040', '\061', '\012', '\124', '\161', '\167',
'\040', '\161', '\165', '\040', '\061', '\012', '\146', '\172',
'\126', '\040', '\163', '\172', '\040', '\061', '\012', '\111',
'\147', '\161', '\040', '\156', '\147', '\040', '\061', '\012',
'\121', '\166', '\166', '\040', '\166', '\151', '\040', '\061',
'\012', '\120', '\155', '\146', '\040', '\155', '\145', '\040',
'\061', '\012', '\161', '\110', '\145', '\040', '\161', '\165',
'\040', '\061', '\012', '\171', '\142', '\122', '\040', '\142',
'\145', '\040', '\061', '\012', '\143', '\106', '\147', '\040',
'\143', '\150', '\040', '\061', '\012', '\113', '\166', '\146',
'\040', '\166', '\141', '\040', '\061', '\012', '\132', '\170',
'\155', '\040', '\155', '\145', '\040', '\061', '\012', '\157',
'\126', '\143', '\040', '\143', '\150', '\040', '\061', '\012',
'\131', '\150', '\142', '\040', '\164', '\150', '\040', '\061',
'\012', '\142', '\167', '\120', '\040', '\167', '\141', '\040',
'\061', '\012', '\126', '\166', '\172', '\040', '\163', '\172',
'\040', '\061', '\012', '\163', '\144', '\127', '\040', '\144',
'\145', '\040', '\061', '\012', '\147', '\106', '\172', '\040',
'\156', '\147', '\040', '\061', '\012', '\155', '\122', '\154',
'\040', '\154', '\145', '\040', '\061', '\012', '\142', '\161',
'\116', '\040', '\161', '\165', '\040', '\061', '\012', '\142',
'\150', '\125', '\040', '\164', '\150', '\040', '\061', '\012',
'\164', '\102', '\167', '\040', '\164', '\150', '\040', '\061',
'\012', '\110', '\142', '\142', '\040', '\142', '\145', '\040',
'\061', '\012', '\112', '\172', '\160', '\040', '\163', '\172',
'\040', '\061', '\012', '\172', '\162', '\123', '\040', '\145',
'\162', '\040', '\061', '\012', '\155', '\153', '\132', '\040',
'\155', '\145', '\040', '\061', '\012', '\142', '\113', '\167',
'\040', '\167', '\141', '\040', '\061', '\012', '\152', '\120',
'\170', '\040', '\151', '\152', '\040', '\061', '\012', '\130',
'\161', '\141', '\040', '\141', '\156', '\040', '\061', '\012',
'\146', '\107', '\172', '\040', '\163', '\172', '\040', '\061',
'\012', '\170', '\114', '\153', '\040', '\153', '\141', '\040',
'\061', '\012', '\156', '\162', '\126', '\040', '\141', '\156',
'\040', '\061', '\012', '\124', '\155', '\170', '\040', '\155',
'\145', '\040', '\061', '\012', '\172', '\166', '\132', '\040',
'\163', '\172', '\040', '\061', '\012', '\147', '\127', '\154',
'\040', '\156', '\147', '\040', '\061', '\012', '\131', '\170',
'\142', '\040', '\142', '\145', '\040', '\061', '\012', '\171',
'\127', '\164', '\040', '\164', '\150', '\040', '\061', '\012',
'\154', '\161', '\116', '\040', '\161', '\165', '\040', '\061',
'\012', '\164', '\127', '\165', '\040', '\164', '\150', '\040',
'\061', '\012', '\170', '\132', '\164', '\040', '\164', '\150',
'\040', '\061', '\012', '\151', '\161', '\111', '\040', '\151',
'\156', '\040', '\061', '\012', '\143', '\160', '\121', '\040',
'\143', '\150', '\040', '\061', '\012', '\172', '\120', '\146',
'\040', '\163', '\172', '\040', '\061', '\012', '\142', '\161',
'\107', '\040', '\161', '\165', '\040', '\061', '\012', '\147',
'\155', '\111', '\040', '\156', '\147', '\040', '\061', '\012',
'\127', '\153', '\143', '\040', '\143', '\150', '\040', '\061',
'\012', '\132', '\166', '\163', '\040', '\163', '\172', '\040',
'\061', '\012', '\161', '\144', '\116', '\040', '\161', '\165',
'\040', '\061', '\012', '\150', '\131', '\146', '\040', '\164',
'\150', '\040', '\061', '\012', '\163', '\102', '\156', '\040',
'\141', '\156', '\040', '\061', '\012', '\104', '\167', '\142',
'\040', '\157', '\167', '\040', '\061', '\012', '\127', '\172',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\121',
'\144', '\167', '\040', '\144', '\145', '\040', '\061', '\012',
'\163', '\166', '\122', '\040', '\163', '\172', '\040', '\061',
'\012', '\116', '\166', '\166', '\040', '\166', '\141', '\040',
'\061', '\012', '\152', '\122', '\143', '\040', '\143', '\150',
'\040', '\061', '\012', '\161', '\104', '\166', '\040', '\161',
'\165', '\040', '\061', '\012', '\161', '\107', '\145', '\040',
'\161', '\165', '\040', '\061', '\012', '\143', '\167', '\124',
'\040', '\143', '\150', '\040', '\061', '\012', '\146', '\124',
'\171', '\040', '\156', '\171', '\040', '\061', '\012', '\103',
'\166', '\166', '\040', '\166', '\141', '\040', '\061', '\012',
'\146', '\154', '\121', '\040', '\154', '\145', '\040', '\061',
'\012', '\155', '\127', '\147', '\040', '\156', '\147', '\040',
'\061', '\012', '\164', '\167', '\123', '\040', '\164', '\150',
'\040', '\061', '\012', '\156', '\160', '\115', '\040', '\141',
'\156', '\040', '\061', '\012', '\125', '\146', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\146', '\165', '\107',
'\040', '\161', '\165', '\040', '\061', '\012', '\157', '\103',
'\152', '\040', '\157', '\156', '\040', '\061', '\012', '\164',
'\170', '\106', '\040', '\164', '\150', '\040', '\061', '\012',
'\131', '\146', '\164', '\040', '\164', '\150', '\040', '\061',
'\012', '\161', '\167', '\171', '\040', '\161', '\165', '\040',
'\061', '\012', '\126', '\144', '\172', '\040', '\144', '\145',
'\040', '\061', '\012', '\126', '\147', '\161', '\040', '\156',
'\147', '\040', '\061', '\012', '\122', '\153', '\147', '\040',
'\156', '\147', '\040', '\061', '\012', '\120', '\170', '\172',
'\040', '\163', '\172', '\040', '\061', '\012', '\155', '\103',
'\156', '\040', '\141', '\156', '\040', '\061', '\012', '\167',
'\150', '\132', '\040', '\164', '\150', '\040', '\061', '\012',
'\146', '\147', '\102', '\040', '\156', '\147', '\040', '\061',
'\012', '\152', '\166', '\127', '\040', '\151', '\152', '\040',
'\061', '\012', '\153', '\144', '\114', '\040', '\144', '\145',
'\040', '\061', '\012', '\114', '\170', '\151', '\040', '\151',
'\156', '\040', '\061', '\012', '\163', '\166', '\102', '\040',
'\163', '\172', '\040', '\061', '\012', '\170', '\165', '\110',
'\040', '\161', '\165', '\040', '\061', '\012', '\147', '\106',
'\171', '\040', '\156', '\147', '\040', '\061', '\012', '\157',
'\126', '\166', '\040', '\157', '\156', '\040', '\061', '\012',
'\132', '\150', '\161', '\040', '\164', '\150', '\040', '\061',
'\012', '\157', '\161', '\107', '\040', '\161', '\165', '\040',
'\061', '\012', '\157', '\112', '\160', '\040', '\157', '\156',
'\040', '\061', '\012', '\147', '\111', '\146', '\040', '\156',
'\147', '\040', '\061', '\012', '\142', '\167', '\106', '\040',
'\167', '\141', '\040', '\061', '\012', '\166', '\114', '\150',
'\040', '\164', '\150', '\040', '\061', '\012', '\152', '\147',
'\130', '\040', '\156', '\147', '\040', '\061', '\012', '\161',
'\113', '\151', '\040', '\151', '\156', '\040', '\061', '\012',
'\170', '\122', '\150', '\040', '\164', '\150', '\040', '\061',
'\012', '\161', '\167', '\126', '\040', '\161', '\165', '\040',
'\061', '\012', '\155', '\116', '\154', '\040', '\154', '\145',
'\040', '\061', '\012', '\107', '\166', '\166', '\040', '\166',
'\141', '\040', '\061', '\012', '\160', '\121', '\146', '\040',
'\160', '\162', '\040', '\061', '\012', '\170', '\142', '\126',
'\040', '\142', '\145', '\040', '\061', '\012', '\144', '\160',
'\132', '\040', '\144', '\145', '\040', '\061', '\012', '\146',
'\110', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\142', '\102', '\144', '\040', '\144', '\145', '\040', '\061',
'\012', '\166', '\125', '\150', '\040', '\164', '\150', '\040',
'\061', '\012', '\150', '\172', '\101', '\040', '\164', '\150',
'\040', '\061', '\012', '\115', '\156', '\172', '\040', '\141',
'\156', '\040', '\061', '\012', '\160', '\102', '\164', '\040',
'\164', '\150', '\040', '\061', '\012', '\157', '\141', '\105',
'\040', '\141', '\156', '\040', '\061', '\012', '\163', '\154',
'\113', '\040', '\154', '\145', '\040', '\061', '\012', '\127',
'\154', '\147', '\040', '\156', '\147', '\040', '\061', '\012',
'\152', '\150', '\113', '\040', '\164', '\150', '\040', '\061',
'\012', '\170', '\166', '\130', '\040', '\166', '\141', '\040',
'\061', '\012', '\106', '\146', '\170', '\040', '\146', '\157',
'\040', '\061', '\012', '\147', '\130', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\143', '\127', '\146', '\040',
'\143', '\150', '\040', '\061', '\012', '\107', '\160', '\171',
'\040', '\160', '\162', '\040', '\061', '\012', '\170', '\155',
'\123', '\040', '\155', '\145', '\040', '\061', '\012', '\147',
'\132', '\156', '\040', '\141', '\156', '\040', '\061', '\012',
'\144', '\152', '\130', '\040', '\144', '\145', '\040', '\061',
'\012', '\142', '\153', '\130', '\040', '\153', '\141', '\040',
'\061', '\012', '\170', '\154', '\120', '\040', '\154', '\145',
'\040', '\061', '\012', '\150', '\103', '\164', '\040', '\164',
'\150', '\040', '\061', '\012', '\131', '\150', '\152', '\040',
'\164', '\150', '\040', '\061', '\012', '\147', '\167', '\121',
'\040', '\156', '\147', '\040', '\061', '\012', '\153', '\154',
'\104', '\040', '\154', '\145', '\040', '\061', '\012', '\122',
'\150', '\161', '\040', '\164', '\150', '\040', '\061', '\012',
'\141', '\105', '\152', '\040', '\141', '\156', '\040', '\061',
'\012', '\152', '\160', '\131', '\040', '\151', '\152', '\040',
'\061', '\012', '\160', '\126', '\156', '\040', '\141', '\156',
'\040', '\061', '\012', '\156', '\112', '\170', '\040', '\141',
'\156', '\040', '\061', '\012', '\172', '\144', '\126', '\040',
'\144', '\145', '\040', '\061', '\012', '\122', '\166', '\146',
'\040', '\166', '\141', '\040', '\061', '\012', '\117', '\161',
'\171', '\040', '\161', '\165', '\040', '\061', '\012', '\172',
'\160', '\124', '\040', '\163', '\172', '\040', '\061', '\012',
'\120', '\172', '\143', '\040', '\143', '\150', '\040', '\061',
'\012', '\161', '\124', '\155', '\040', '\161', '\165', '\040',
'\061', '\012', '\152', '\146', '\161', '\040', '\151', '\152',
'\040', '\061', '\012', '\172', '\164', '\131', '\040', '\164',
'\150', '\040', '\061', '\012', '\132', '\161', '\166', '\040',
'\161', '\165', '\040', '\061', '\012', '\156', '\132', '\142',
'\040', '\141', '\156', '\040', '\061', '\012', '\160', '\110',
'\154', '\040', '\154', '\145', '\040', '\061', '\012', '\121',
'\143', '\162', '\040', '\143', '\150', '\040', '\061', '\012',
'\172', '\126', '\155', '\040', '\163', '\172', '\040', '\061',
'\012', '\160', '\116', '\155', '\040', '\155', '\145', '\040',
'\061', '\012', '\130', '\150', '\152', '\040', '\164', '\150',
'\040', '\061', '\012', '\157', '\131', '\171', '\040', '\157',
'\156', '\040', '\061', '\012', '\106', '\154', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\154', '\167', '\152',
'\040', '\154', '\145', '\040', '\061', '\012', '\162', '\167',
'\110', '\040', '\145', '\162', '\040', '\061', '\012', '\157',
'\127', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\102', '\167', '\155', '\040', '\155', '\145', '\040', '\061',
'\012', '\152', '\130', '\163', '\040', '\163', '\172', '\040',
'\061', '\012', '\114', '\153', '\164', '\040', '\164', '\150',
'\040', '\061', '\012', '\154', '\126', '\156', '\040', '\141',
'\156', '\040', '\061', '\012', '\152', '\130', '\141', '\040',
'\141', '\156', '\040', '\061', '\012', '\150', '\153', '\102',
'\040', '\164', '\150', '\040', '\061', '\012', '\161', '\162',
'\121', '\040', '\161', '\165', '\040', '\061', '\012', '\144',
'\161', '\113', '\040', '\161', '\165', '\040', '\061', '\012',
'\132', '\170', '\156', '\040', '\141', '\156', '\040', '\061',
'\012', '\171', '\147', '\132', '\040', '\156', '\147', '\040',
'\061', '\012', '\106', '\147', '\164', '\040', '\164', '\150',
'\040', '\061', '\012', '\156', '\167', '\115', '\040', '\141',
'\156', '\040', '\061', '\012', '\127', '\172', '\170', '\040',
'\163', '\172', '\040', '\061', '\012', '\161', '\147', '\142',
'\040', '\156', '\147', '\040', '\061', '\012', '\131', '\147',
'\166', '\040', '\156', '\147', '\040', '\061', '\012', '\130',
'\144', '\144', '\040', '\144', '\145', '\040', '\061', '\012',
'\170', '\152', '\115', '\040', '\151', '\152', '\040', '\061',
'\012', '\161', '\110', '\142', '\040', '\161', '\165', '\040',
'\061', '\012', '\172', '\113', '\172', '\040', '\163', '\172',
'\040', '\061', '\012', '\144', '\166', '\115', '\040', '\144',
'\145', '\040', '\061', '\012', '\132', '\160', '\170', '\040',
'\160', '\162', '\040', '\061', '\012', '\167', '\120', '\164',
'\040', '\164', '\150', '\040', '\061', '\012', '\161', '\151',
'\101', '\040', '\151', '\156', '\040', '\061', '\012', '\152',
'\171', '\126', '\040', '\151', '\152', '\040', '\061', '\012',
'\152', '\171', '\122', '\040', '\151', '\152', '\040', '\061',
'\012', '\125', '\157', '\170', '\040', '\157', '\156', '\040',
'\061', '\012', '\121', '\153', '\172', '\040', '\153', '\141',
'\040', '\061', '\012', '\114', '\170', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\146', '\160', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\130', '\155', '\146',
'\040', '\155', '\145', '\040', '\061', '\012', '\153', '\122',
'\170', '\040', '\153', '\141', '\040', '\061', '\012', '\152',
'\106', '\153', '\040', '\151', '\152', '\040', '\061', '\012',
'\156', '\132', '\143', '\040', '\141', '\156', '\040', '\061',
'\012', '\150', '\103', '\160', '\040', '\164', '\150', '\040',
'\061', '\012', '\110', '\142', '\167', '\040', '\167', '\141',
'\040', '\061', '\012', '\172', '\154', '\106', '\040', '\154',
'\145', '\040', '\061', '\012', '\153', '\161', '\111', '\040',
'\161', '\165', '\040', '\061', '\012', '\167', '\127', '\152',
'\040', '\151', '\152', '\040', '\061', '\012', '\161', '\113',
'\153', '\040', '\161', '\165', '\040', '\061', '\012', '\112',
'\160', '\146', '\040', '\160', '\162', '\040', '\061', '\012',
'\154', '\142', '\122', '\040', '\154', '\145', '\040', '\061',
'\012', '\162', '\142', '\112', '\040', '\145', '\162', '\040',
'\061', '\012', '\172', '\146', '\113', '\040', '\163', '\172',
'\040', '\061', '\012', '\147', '\126', '\153', '\040', '\156',
'\147', '\040', '\061', '\012', '\142', '\132', '\170', '\040',
'\142', '\145', '\040', '\061', '\012', '\172', '\156', '\121',
'\040', '\141', '\156', '\040', '\061', '\012', '\147', '\132',
'\142', '\040', '\147', '\141', '\040', '\061', '\012', '\167',
'\164', '\111', '\040', '\164', '\150', '\040', '\061', '\012',
'\142', '\166', '\127', '\040', '\166', '\141', '\040', '\061',
'\012', '\161', '\150', '\107', '\040', '\164', '\150', '\040',
'\061', '\012', '\170', '\162', '\126', '\040', '\145', '\162',
'\040', '\061', '\012', '\160', '\131', '\143', '\040', '\143',
'\150', '\040', '\061', '\012', '\142', '\121', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\161', '\160', '\126',
'\040', '\161', '\165', '\040', '\061', '\012', '\160', '\106',
'\155', '\040', '\155', '\145', '\040', '\061', '\012', '\172',
'\144', '\117', '\040', '\144', '\145', '\040', '\061', '\012',
'\112', '\166', '\152', '\040', '\151', '\152', '\040', '\061',
'\012', '\155', '\121', '\154', '\040', '\154', '\145', '\040',
'\061', '\012', '\170', '\127', '\155', '\040', '\155', '\145',
'\040', '\061', '\012', '\104', '\164', '\172', '\040', '\164',
'\150', '\040', '\061', '\012', '\154', '\113', '\172', '\040',
'\154', '\145', '\040', '\061', '\012', '\144', '\153', '\111',
'\040', '\144', '\145', '\040', '\061', '\012', '\146', '\123',
'\170', '\040', '\146', '\157', '\040', '\061', '\012', '\171',
'\103', '\160', '\040', '\160', '\162', '\040', '\061', '\012',
'\167', '\150', '\106', '\040', '\164', '\150', '\040', '\061',
'\012', '\154', '\126', '\155', '\040', '\154', '\145', '\040',
'\061', '\012', '\171', '\110', '\166', '\040', '\166', '\141',
'\040', '\061', '\012', '\120', '\154', '\155', '\040', '\154',
'\145', '\040', '\061', '\012', '\112', '\160', '\155', '\040',
'\155', '\145', '\040', '\061', '\012', '\150', '\105', '\167',
'\040', '\150', '\141', '\040', '\061', '\012', '\172', '\110',
'\172', '\040', '\163', '\172', '\040', '\061', '\012', '\165',
'\111', '\152', '\040', '\161', '\165', '\040', '\061', '\012',
'\147', '\172', '\102', '\040', '\156', '\147', '\040', '\061',
'\012', '\161', '\163', '\126', '\040', '\161', '\165', '\040',
'\061', '\012', '\160', '\142', '\130', '\040', '\160', '\162',
'\040', '\061', '\012', '\152', '\171', '\131', '\040', '\151',
'\152', '\040', '\061', '\012', '\155', '\152', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\172', '\104', '\144',
'\040', '\144', '\145', '\040', '\061', '\012', '\124', '\161',
'\143', '\040', '\143', '\150', '\040', '\061', '\012', '\146',
'\124', '\147', '\040', '\156', '\147', '\040', '\061', '\012',
'\161', '\142', '\150', '\040', '\164', '\150', '\040', '\061',
'\012', '\103', '\152', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\160', '\143', '\127', '\040', '\143', '\150',
'\040', '\061', '\012', '\130', '\150', '\160', '\040', '\164',
'\150', '\040', '\061', '\012', '\146', '\167', '\122', '\040',
'\167', '\141', '\040', '\061', '\012', '\144', '\121', '\155',
'\040', '\144', '\145', '\040', '\061', '\012', '\170', '\103',
'\153', '\040', '\153', '\141', '\040', '\061', '\012', '\171',
'\150', '\115', '\040', '\164', '\150', '\040', '\061', '\012',
'\147', '\154', '\121', '\040', '\156', '\147', '\040', '\061',
'\012', '\147', '\126', '\142', '\040', '\156', '\147', '\040',
'\061', '\012', '\120', '\144', '\171', '\040', '\144', '\145',
'\040', '\061', '\012', '\171', '\117', '\152', '\040', '\151',
'\152', '\040', '\061', '\012', '\152', '\132', '\147', '\040',
'\156', '\147', '\040', '\061', '\012', '\157', '\161', '\132',
'\040', '\161', '\165', '\040', '\061', '\012', '\142', '\161',
'\111', '\040', '\161', '\165', '\040', '\061', '\012', '\152',
'\153', '\130', '\040', '\151', '\152', '\040', '\061', '\012',
'\113', '\146', '\150', '\040', '\164', '\150', '\040', '\061',
'\012', '\170', '\160', '\121', '\040', '\160', '\162', '\040',
'\061', '\012', '\162', '\150', '\130', '\040', '\164', '\150',
'\040', '\061', '\012', '\167', '\152', '\111', '\040', '\151',
'\152', '\040', '\061', '\012', '\102', '\161', '\146', '\040',
'\161', '\165', '\040', '\061', '\012', '\141', '\103', '\160',
'\040', '\141', '\156', '\040', '\061', '\012', '\143', '\143',
'\130', '\040', '\143', '\150', '\040', '\061', '\012', '\166',
'\107', '\155', '\040', '\155', '\141', '\040', '\061', '\012',
'\160', '\141', '\125', '\040', '\141', '\156', '\040', '\061',
'\012', '\170', '\125', '\150', '\040', '\164', '\150', '\040',
'\061', '\012', '\147', '\114', '\144', '\040', '\156', '\147',
'\040', '\061', '\012', '\164', '\146', '\112', '\040', '\164',
'\150', '\040', '\061', '\012', '\146', '\167', '\110', '\040',
'\167', '\141', '\040', '\061', '\012', '\120', '\156', '\161',
'\040', '\141', '\156', '\040', '\061', '\012', '\153', '\170',
'\126', '\040', '\153', '\141', '\040', '\061', '\012', '\116',
'\142', '\153', '\040', '\153', '\141', '\040', '\061', '\012',
'\163', '\161', '\105', '\040', '\161', '\165', '\040', '\061',
'\012', '\103', '\152', '\160', '\040', '\151', '\152', '\040',
'\061', '\012', '\153', '\143', '\132', '\040', '\153', '\141',
'\040', '\061', '\012', '\127', '\161', '\152', '\040', '\151',
'\152', '\040', '\061', '\012', '\164', '\172', '\131', '\040',
'\164', '\150', '\040', '\061', '\012', '\156', '\161', '\130',
'\040', '\141', '\156', '\040', '\061', '\012', '\131', '\171',
'\143', '\040', '\143', '\150', '\040', '\061', '\012', '\114',
'\172', '\144', '\040', '\144', '\145', '\040', '\061', '\012',
'\170', '\132', '\171', '\040', '\156', '\171', '\040', '\061',
'\012', '\163', '\144', '\131', '\040', '\144', '\145', '\040',
'\061', '\012', '\152', '\130', '\156', '\040', '\141', '\156',
'\040', '\061', '\012', '\116', '\142', '\155', '\040', '\155',
'\145', '\040', '\061', '\012', '\167', '\114', '\162', '\040',
'\145', '\162', '\040', '\061', '\012', '\116', '\161', '\162',
'\040', '\161', '\165', '\040', '\061', '\012', '\132', '\167',
'\170', '\040', '\167', '\141', '\040', '\061', '\012', '\171',
'\166', '\110', '\040', '\166', '\141', '\040', '\061', '\012',
'\171', '\154', '\103', '\040', '\154', '\145', '\040', '\061',
'\012', '\161', '\171', '\150', '\040', '\164', '\150', '\040',
'\061', '\012', '\112', '\156', '\172', '\040', '\141', '\156',
'\040', '\061', '\012', '\150', '\110', '\166', '\040', '\164',
'\150', '\040', '\061', '\012', '\172', '\125', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\170', '\147', '\111',
'\040', '\156', '\147', '\040', '\061', '\012', '\132', '\164',
'\160', '\040', '\164', '\150', '\040', '\061', '\012', '\126',
'\166', '\142', '\040', '\166', '\141', '\040', '\061', '\012',
'\164', '\107', '\156', '\040', '\164', '\150', '\040', '\061',
'\012', '\125', '\152', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\152', '\110', '\163', '\040', '\163', '\172',
'\040', '\061', '\012', '\142', '\127', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\142', '\130', '\162', '\040',
'\145', '\162', '\040', '\061', '\012', '\150', '\106', '\147',
'\040', '\164', '\150', '\040', '\061', '\012', '\147', '\144',
'\124', '\040', '\156', '\147', '\040', '\061', '\012', '\161',
'\110', '\143', '\040', '\143', '\150', '\040', '\061', '\012',
'\154', '\103', '\152', '\040', '\154', '\145', '\040', '\061',
'\012', '\155', '\126', '\147', '\040', '\156', '\147', '\040',
'\061', '\012', '\160', '\121', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\166', '\127', '\154', '\040', '\154',
'\145', '\040', '\061', '\012', '\171', '\106', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\144', '\152', '\131',
'\040', '\144', '\145', '\040', '\061', '\012', '\142', '\164',
'\121', '\040', '\164', '\150', '\040', '\061', '\012', '\166',
'\154', '\115', '\040', '\154', '\145', '\040', '\061', '\012',
'\111', '\167', '\164', '\040', '\164', '\150', '\040', '\061',
'\012', '\120', '\144', '\142', '\040', '\144', '\145', '\040',
'\061', '\012', '\152', '\164', '\121', '\040', '\164', '\150',
'\040', '\061', '\012', '\170', '\152', '\122', '\040', '\151',
'\152', '\040', '\061', '\012', '\144', '\150', '\127', '\040',
'\164', '\150', '\040', '\061', '\012', '\172', '\130', '\163',
'\040', '\163', '\172', '\040', '\061', '\012', '\146', '\142',
'\105', '\040', '\142', '\145', '\040', '\061', '\012', '\110',
'\161', '\162', '\040', '\161', '\165', '\040', '\061', '\012',
'\166', '\114', '\164', '\040', '\164', '\150', '\040', '\061',
'\012', '\153', '\142', '\104', '\040', '\153', '\141', '\040',
'\061', '\012', '\166', '\125', '\144', '\040', '\144', '\145',
'\040', '\061', '\012', '\171', '\132', '\143', '\040', '\143',
'\150', '\040', '\061', '\012', '\121', '\153', '\145', '\040',
'\154', '\145', '\040', '\061', '\012', '\146', '\150', '\107',
'\040', '\164', '\150', '\040', '\061', '\012', '\145', '\110',
'\164', '\040', '\164', '\150', '\040', '\061', '\012', '\166',
'\110', '\152', '\040', '\151', '\152', '\040', '\061', '\012',
'\124', '\146', '\147', '\040', '\156', '\147', '\040', '\061',
'\012', '\165', '\157', '\101', '\040', '\161', '\165', '\040',
'\061', '\012', '\172', '\103', '\170', '\040', '\163', '\172',
'\040', '\061', '\012', '\172', '\114', '\153', '\040', '\163',
'\172', '\040', '\061', '\012', '\152', '\144', '\127', '\040',
'\144', '\145', '\040', '\061', '\012', '\103', '\147', '\156',
'\040', '\141', '\156', '\040', '\061', '\012', '\114', '\162',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\171',
'\117', '\151', '\040', '\151', '\156', '\040', '\061', '\012',
'\161', '\117', '\167', '\040', '\161', '\165', '\040', '\061',
'\012', '\146', '\161', '\163', '\040', '\161', '\165', '\040',
'\061', '\012', '\154', '\164', '\121', '\040', '\164', '\150',
'\040', '\061', '\012', '\156', '\167', '\125', '\040', '\141',
'\156', '\040', '\061', '\012', '\172', '\131', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\107', '\172', '\163',
'\040', '\163', '\164', '\040', '\061', '\012', '\156', '\127',
'\166', '\040', '\141', '\156', '\040', '\061', '\012', '\154',
'\116', '\170', '\040', '\154', '\145', '\040', '\061', '\012',
'\127', '\161', '\154', '\040', '\161', '\165', '\040', '\061',
'\012', '\144', '\143', '\104', '\040', '\143', '\150', '\040',
'\061', '\012', '\166', '\146', '\104', '\040', '\166', '\141',
'\040', '\061', '\012', '\161', '\126', '\144', '\040', '\161',
'\165', '\040', '\061', '\012', '\127', '\172', '\172', '\040',
'\163', '\172', '\040', '\061', '\012', '\152', '\146', '\110',
'\040', '\151', '\152', '\040', '\061', '\012', '\122', '\162',
'\164', '\040', '\164', '\150', '\040', '\061', '\012', '\161',
'\104', '\162', '\040', '\161', '\165', '\040', '\061', '\012',
'\154', '\117', '\150', '\040', '\164', '\150', '\040', '\061',
'\012', '\167', '\167', '\132', '\040', '\167', '\141', '\040',
'\061', '\012', '\155', '\121', '\167', '\040', '\155', '\145',
'\040', '\061', '\012', '\156', '\161', '\113', '\040', '\141',
'\156', '\040', '\061', '\012', '\125', '\166', '\154', '\040',
'\154', '\145', '\040', '\061', '\012', '\153', '\122', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\126', '\150',
'\147', '\040', '\164', '\150', '\040', '\061', '\012', '\170',
'\163', '\104', '\040', '\163', '\164', '\040', '\061', '\012',
'\114', '\144', '\144', '\040', '\144', '\145', '\040', '\061',
'\012', '\163', '\121', '\166', '\040', '\163', '\164', '\040',
'\061', '\012', '\161', '\115', '\152', '\040', '\161', '\165',
'\040', '\061', '\012', '\150', '\142', '\121', '\040', '\164',
'\150', '\040', '\061', '\012', '\143', '\152', '\130', '\040',
'\143', '\150', '\040', '\061', '\012', '\156', '\142', '\124',
'\040', '\141', '\156', '\040', '\061', '\012', '\170', '\116',
'\146', '\040', '\146', '\157', '\040', '\061', '\012', '\167',
'\103', '\164', '\040', '\164', '\150', '\040', '\061', '\012',
'\152', '\156', '\130', '\040', '\141', '\156', '\040', '\061',
'\012', '\164', '\132', '\146', '\040', '\164', '\150', '\040',
'\061', '\012', '\161', '\103', '\153', '\040', '\161', '\165',
'\040', '\061', '\012', '\144', '\110', '\153', '\040', '\144',
'\145', '\040', '\061', '\012', '\103', '\143', '\161', '\040',
'\143', '\150', '\040', '\061', '\012', '\165', '\115', '\146',
'\040', '\161', '\165', '\040', '\061', '\012', '\142', '\166',
'\107', '\040', '\166', '\141', '\040', '\061', '\012', '\172',
'\120', '\172', '\040', '\163', '\172', '\040', '\061', '\012',
'\171', '\111', '\171', '\040', '\156', '\171', '\040', '\061',
'\012', '\154', '\110', '\170', '\040', '\154', '\145', '\040',
'\061', '\012', '\146', '\156', '\102', '\040', '\141', '\156',
'\040', '\061', '\012', '\105', '\142', '\170', '\040', '\142',
'\145', '\040', '\061', '\012', '\162', '\107', '\143', '\040',
'\143', '\150', '\040', '\061', '\012', '\155', '\147', '\104',
'\040', '\156', '\147', '\040', '\061', '\012', '\150', '\112',
'\147', '\040', '\164', '\150', '\040', '\061', '\012', '\152',
'\143', '\107', '\040', '\143', '\150', '\040', '\061', '\012',
'\131', '\142', '\144', '\040', '\144', '\145', '\040', '\061',
'\012', '\157', '\104', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\152', '\122', '\170', '\040', '\151', '\152',
'\040', '\061', '\012', '\153', '\112', '\146', '\040', '\153',
'\141', '\040', '\061', '\012', '\164', '\106', '\166', '\040',
'\164', '\150', '\040', '\061', '\012', '\107', '\144', '\166',
'\040', '\144', '\145', '\040', '\061', '\012', '\146', '\110',
'\156', '\040', '\141', '\156', '\040', '\061', '\012', '\125',
'\161', '\160', '\040', '\161', '\165', '\040', '\061', '\012',
'\143', '\131', '\150', '\040', '\164', '\150', '\040', '\061',
'\012', '\153', '\110', '\160', '\040', '\153', '\141', '\040',
'\061', '\012', '\161', '\150', '\132', '\040', '\164', '\150',
'\040', '\061', '\012', '\167', '\132', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\153', '\121', '\164', '\040',
'\164', '\150', '\040', '\061', '\012', '\150', '\167', '\110',
'\040', '\164', '\150', '\040', '\061', '\012', '\170', '\172',
'\125', '\040', '\163', '\172', '\040', '\061', '\012', '\164',
'\121', '\147', '\040', '\164', '\150', '\040', '\061', '\012',
'\121', '\142', '\152', '\040', '\151', '\152', '\040', '\061',
'\012', '\172', '\126', '\154', '\040', '\154', '\145', '\040',
'\061', '\012', '\161', '\112', '\144', '\040', '\161', '\165',
'\040', '\061', '\012', '\130', '\162', '\146', '\040', '\145',
'\162', '\040', '\061', '\012', '\146', '\115', '\166', '\040',
'\166', '\141', '\040', '\061', '\012', '\161', '\112', '\143',
'\040', '\143', '\150', '\040', '\061', '\012', '\104', '\161',
'\171', '\040', '\161', '\165', '\040', '\061', '\012', '\161',
'\115', '\163', '\040', '\161', '\165', '\040', '\061', '\012',
'\146', '\172', '\154', '\040', '\154', '\145', '\040', '\061',
'\012', '\127', '\144', '\170', '\040', '\144', '\145', '\040',
'\061', '\012', '\124', '\144', '\167', '\040', '\167', '\141',
'\040', '\061', '\012', '\155', '\143', '\124', '\040', '\143',
'\150', '\040', '\061', '\012', '\146', '\117', '\144', '\040',
'\144', '\145', '\040', '\061', '\012', '\113', '\147', '\152',
'\040', '\156', '\147', '\040', '\061', '\012', '\171', '\162',
'\124', '\040', '\145', '\162', '\040', '\061', '\012', '\142',
'\161', '\101', '\040', '\161', '\165', '\040', '\061', '\012',
'\163', '\156', '\161', '\040', '\141', '\156', '\040', '\061',
'\012', '\114', '\172', '\164', '\040', '\164', '\150', '\040',
'\061', '\012', '\147', '\114', '\167', '\040', '\156', '\147',
'\040', '\061', '\012', '\144', '\114', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\121', '\172', '\162', '\040',
'\145', '\162', '\040', '\061', '\012', '\121', '\162', '\156',
'\040', '\141', '\156', '\040', '\061', '\012', '\145', '\106',
'\156', '\040', '\141', '\156', '\040', '\061', '\012', '\116',
'\155', '\167', '\040', '\167', '\141', '\040', '\061', '\012',
'\160', '\170', '\105', '\040', '\160', '\162', '\040', '\061',
'\012', '\103', '\161', '\153', '\040', '\161', '\165', '\040',
'\061', '\012', '\127', '\143', '\144', '\040', '\143', '\150',
'\040', '\061', '\012', '\146', '\130', '\167', '\040', '\167',
'\141', '\040', '\061', '\012', '\146', '\142', '\125', '\040',
'\142', '\145', '\040', '\061', '\012', '\141', '\145', '\117',
'\040', '\141', '\156', '\040', '\061', '\012', '\163', '\166',
'\126', '\040', '\163', '\164', '\040', '\061', '\012', '\171',
'\126', '\164', '\040', '\164', '\150', '\040', '\061', '\012',
'\163', '\122', '\160', '\040', '\163', '\164', '\040', '\061',
'\012', '\162', '\170', '\125', '\040', '\145', '\162', '\040',
'\061', '\012', '\161', '\150', '\113', '\040', '\164', '\150',
'\040', '\061', '\012', '\165', '\121', '\167', '\040', '\161',
'\165', '\040', '\061', '\012', '\157', '\130', '\167', '\040',
'\157', '\156', '\040', '\061', '\012', '\112', '\166', '\167',
'\040', '\166', '\141', '\040', '\061', '\012', '\153', '\166',
'\110', '\040', '\153', '\141', '\040', '\061', '\012', '\172',
'\126', '\171', '\040', '\163', '\172', '\040', '\061', '\012',
'\162', '\117', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\143', '\127', '\170', '\040', '\143', '\150', '\040',
'\061', '\012', '\151', '\130', '\166', '\040', '\151', '\156',
'\040', '\061', '\012', '\143', '\102', '\153', '\040', '\143',
'\150', '\040', '\061', '\012', '\170', '\153', '\115', '\040',
'\153', '\141', '\040', '\061', '\012', '\166', '\110', '\142',
'\040', '\166', '\141', '\040', '\061', '\012', '\152', '\142',
'\127', '\040', '\151', '\152', '\040', '\061', '\012', '\155',
'\131', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\146', '\156', '\110', '\040', '\141', '\156', '\040', '\061',
'\012', '\172', '\122', '\152', '\040', '\163', '\172', '\040',
'\061', '\012', '\150', '\166', '\116', '\040', '\164', '\150',
'\040', '\061', '\012', '\157', '\115', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\171', '\161', '\117', '\040',
'\161', '\165', '\040', '\061', '\012', '\146', '\102', '\146',
'\040', '\146', '\157', '\040', '\061', '\012', '\157', '\120',
'\152', '\040', '\157', '\156', '\040', '\061', '\012', '\146',
'\106', '\143', '\040', '\143', '\150', '\040', '\061', '\012',
'\154', '\126', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\160', '\164', '\112', '\040', '\164', '\150', '\040',
'\061', '\012', '\116', '\164', '\152', '\040', '\164', '\150',
'\040', '\061', '\012', '\162', '\167', '\114', '\040', '\145',
'\162', '\040', '\061', '\012', '\143', '\106', '\172', '\040',
'\143', '\150', '\040', '\061', '\012', '\152', '\126', '\144',
'\040', '\144', '\145', '\040', '\061', '\012', '\107', '\142',
'\166', '\040', '\166', '\141', '\040', '\061', '\012', '\157',
'\112', '\156', '\040', '\141', '\156', '\040', '\061', '\012',
'\167', '\153', '\114', '\040', '\153', '\141', '\040', '\061',
'\012', '\161', '\157', '\124', '\040', '\161', '\165', '\040',
'\061', '\012', '\121', '\170', '\153', '\040', '\153', '\141',
'\040', '\061', '\012', '\162', '\132', '\152', '\040', '\151',
'\152', '\040', '\061', '\012', '\103', '\147', '\144', '\040',
'\156', '\147', '\040', '\061', '\012', '\147', '\166', '\127',
'\040', '\156', '\147', '\040', '\061', '\012', '\153', '\131',
'\166', '\040', '\153', '\141', '\040', '\061', '\012', '\161',
'\152', '\122', '\040', '\161', '\165', '\040', '\061', '\012',
'\126', '\156', '\161', '\040', '\141', '\156', '\040', '\061',
'\012', '\171', '\112', '\164', '\040', '\164', '\150', '\040',
'\061', '\012', '\170', '\127', '\171', '\040', '\156', '\171',
'\040', '\061', '\012', '\142', '\130', '\154', '\040', '\154',
'\145', '\040', '\061', '\012', '\170', '\126', '\153', '\040',
'\153', '\141', '\040', '\061', '\012', '\170', '\165', '\107',
'\040', '\161', '\165', '\040', '\061', '\012', '\110', '\172',
'\163', '\040', '\163', '\164', '\040', '\061', '\012', '\165',
'\104', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\131', '\167', '\153', '\040', '\153', '\141', '\040', '\061',
'\012', '\112', '\153', '\150', '\040', '\164', '\150', '\040',
'\061', '\012', '\107', '\144', '\155', '\040', '\144', '\145',
'\040', '\061', '\012', '\161', '\143', '\117', '\040', '\143',
'\150', '\040', '\061', '\012', '\150', '\154', '\110', '\040',
'\164', '\150', '\040', '\061', '\012', '\112', '\146', '\166',
'\040', '\166', '\141', '\040', '\061', '\012', '\143', '\114',
'\156', '\040', '\141', '\156', '\040', '\061', '\012', '\167',
'\172', '\107', '\040', '\163', '\172', '\040', '\061', '\012',
'\171', '\150', '\106', '\040', '\164', '\150', '\040', '\061',
'\012', '\153', '\146', '\104', '\040', '\153', '\141', '\040',
'\061', '\012', '\153', '\142', '\112', '\040', '\153', '\141',
'\040', '\061', '\012', '\116', '\161', '\160', '\040', '\161',
'\165', '\040', '\061', '\012', '\147', '\131', '\161', '\040',
'\156', '\147', '\040', '\061', '\012', '\172', '\164', '\115',
'\040', '\164', '\150', '\040', '\061', '\012', '\152', '\143',
'\104', '\040', '\143', '\150', '\040', '\061', '\012', '\167',
'\147', '\131', '\040', '\156', '\147', '\040', '\061', '\012',
'\161', '\144', '\124', '\040', '\144', '\141', '\040', '\061',
'\012', '\166', '\124', '\167', '\040', '\166', '\141', '\040',
'\061', '\012', '\143', '\116', '\172', '\040', '\143', '\150',
'\040', '\061', '\012', '\112', '\142', '\143', '\040', '\143',
'\150', '\040', '\061', '\012', '\130', '\143', '\152', '\040',
'\143', '\150', '\040', '\061', '\012', '\162', '\125', '\167',
'\040', '\145', '\162', '\040', '\061', '\012', '\147', '\130',
'\166', '\040', '\156', '\147', '\040', '\061', '\012', '\144',
'\122', '\146', '\040', '\144', '\145', '\040', '\061', '\012',
'\142', '\112', '\172', '\040', '\163', '\172', '\040', '\061',
'\012', '\141', '\161', '\101', '\040', '\141', '\156', '\040',
'\061', '\012', '\165', '\117', '\172', '\040', '\161', '\165',
'\040', '\061', '\012', '\167', '\120', '\152', '\040', '\151',
'\152', '\040', '\061', '\012', '\165', '\104', '\167', '\040',
'\161', '\165', '\040', '\061', '\012', '\155', '\161', '\106',
'\040', '\161', '\165', '\040', '\061', '\012', '\143', '\130',
'\162', '\040', '\143', '\150', '\040', '\061', '\012', '\171',
'\162', '\114', '\040', '\145', '\162', '\040', '\061', '\012',
'\156', '\112', '\153', '\040', '\141', '\156', '\040', '\061',
'\012', '\150', '\163', '\131', '\040', '\164', '\150', '\040',
'\061', '\012', '\132', '\161', '\163', '\040', '\161', '\165',
'\040', '\061', '\012', '\161', '\145', '\123', '\040', '\161',
'\165', '\040', '\061', '\012', '\142', '\114', '\166', '\040',
'\166', '\141', '\040', '\061', '\012', '\152', '\105', '\157',
'\040', '\157', '\156', '\040', '\061', '\012', '\160', '\155',
'\105', '\040', '\155', '\145', '\040', '\061', '\012', '\152',
'\111', '\164', '\040', '\164', '\150', '\040', '\061', '\012',
'\166', '\172', '\132', '\040', '\163', '\172', '\040', '\061',
'\012', '\121', '\150', '\144', '\040', '\164', '\150', '\040',
'\061', '\012', '\143', '\156', '\116', '\040', '\141', '\156',
'\040', '\061', '\012', '\142', '\120', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\160', '\132', '\167', '\040',
'\160', '\162', '\040', '\061', '\012', '\151', '\167', '\122',
'\040', '\151', '\156', '\040', '\061', '\012', '\157', '\112',
'\166', '\040', '\153', '\157', '\040', '\061', '\012', '\165',
'\146', '\111', '\040', '\161', '\165', '\040', '\061', '\012',
'\167', '\113', '\155', '\040', '\155', '\145', '\040', '\061',
'\012', '\165', '\127', '\166', '\040', '\161', '\165', '\040',
'\061', '\012', '\146', '\103', '\146', '\040', '\146', '\157',
'\040', '\061', '\012', '\167', '\102', '\156', '\040', '\141',
'\156', '\040', '\061', '\012', '\125', '\171', '\146', '\040',
'\156', '\171', '\040', '\061', '\012', '\165', '\126', '\170',
'\040', '\161', '\165', '\040', '\061', '\012', '\153', '\113',
'\146', '\040', '\153', '\141', '\040', '\061', '\012', '\155',
'\162', '\132', '\040', '\145', '\162', '\040', '\061', '\012',
'\154', '\130', '\142', '\040', '\154', '\145', '\040', '\061',
'\012', '\172', '\112', '\155', '\040', '\163', '\172', '\040',
'\061', '\012', '\167', '\131', '\162', '\040', '\145', '\162',
'\040', '\061', '\012', '\110', '\153', '\167', '\040', '\153',
'\141', '\040', '\061', '\012', '\105', '\167', '\172', '\040',
'\163', '\172', '\040', '\061', '\012', '\170', '\112', '\171',
'\040', '\156', '\171', '\040', '\061', '\012', '\105', '\155',
'\170', '\040', '\155', '\145', '\040', '\061', '\012', '\143',
'\161', '\114', '\040', '\143', '\150', '\040', '\061', '\012',
'\172', '\126', '\153', '\040', '\163', '\172', '\040', '\061',
'\012', '\171', '\120', '\142', '\040', '\142', '\145', '\040',
'\061', '\012', '\172', '\143', '\103', '\040', '\143', '\150',
'\040', '\061', '\012', '\116', '\144', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\165', '\127', '\146', '\040',
'\161', '\165', '\040', '\061', '\012', '\153', '\143', '\115',
'\040', '\143', '\150', '\040', '\061', '\012', '\164', '\153',
'\102', '\040', '\164', '\150', '\040', '\061', '\012', '\171',
'\150', '\161', '\040', '\164', '\150', '\040', '\061', '\012',
'\161', '\141', '\120', '\040', '\141', '\156', '\040', '\061',
'\012', '\162', '\126', '\163', '\040', '\145', '\162', '\040',
'\061', '\012', '\144', '\114', '\144', '\040', '\144', '\145',
'\040', '\061', '\012', '\123', '\147', '\155', '\040', '\156',
'\147', '\040', '\061', '\012', '\130', '\150', '\170', '\040',
'\164', '\150', '\040', '\061', '\012', '\170', '\161', '\110',
'\040', '\161', '\165', '\040', '\061', '\012', '\113', '\161',
'\171', '\040', '\161', '\165', '\040', '\061', '\012', '\171',
'\122', '\167', '\040', '\167', '\141', '\040', '\061', '\012',
'\127', '\144', '\167', '\040', '\144', '\145', '\040', '\061',
'\012', '\161', '\143', '\121', '\040', '\143', '\150', '\040',
'\061', '\012', '\172', '\142', '\160', '\040', '\163', '\172',
'\040', '\061', '\012', '\144', '\164', '\131', '\040', '\164',
'\150', '\040', '\061', '\012', '\143', '\167', '\102', '\040',
'\143', '\150', '\040', '\061', '\012', '\156', '\146', '\126',
'\040', '\141', '\156', '\040', '\061', '\012', '\143', '\147',
'\120', '\040', '\143', '\150', '\040', '\061', '\012', '\160',
'\167', '\127', '\040', '\160', '\162', '\040', '\061', '\012',
'\160', '\161', '\146', '\040', '\161', '\165', '\040', '\061',
'\012', '\130', '\153', '\160', '\040', '\153', '\141', '\040',
'\061', '\012', '\151', '\172', '\112', '\040', '\151', '\156',
'\040', '\061', '\012', '\143', '\131', '\167', '\040', '\143',
'\150', '\040', '\061', '\012', '\151', '\121', '\154', '\040',
'\151', '\156', '\040', '\061', '\012', '\121', '\166', '\171',
'\040', '\166', '\141', '\040', '\061', '\012', '\171', '\154',
'\122', '\040', '\154', '\145', '\040', '\061', '\012', '\163',
'\106', '\160', '\040', '\163', '\164', '\040', '\061', '\012',
'\114', '\161', '\147', '\040', '\156', '\147', '\040', '\061',
'\012', '\170', '\156', '\120', '\040', '\141', '\156', '\040',
'\061', '\012', '\147', '\131', '\154', '\040', '\156', '\147',
'\040', '\061', '\012', '\167', '\111', '\162', '\040', '\145',
'\162', '\040', '\061', '\012', '\146', '\161', '\122', '\040',
'\161', '\165', '\040', '\061', '\012', '\121', '\160', '\153',
'\040', '\153', '\141', '\040', '\061', '\012', '\161', '\130',
'\172', '\040', '\161', '\165', '\040', '\061', '\012', '\114',
'\162', '\162', '\040', '\145', '\162', '\040', '\061', '\012',
'\163', '\152', '\111', '\040', '\163', '\164', '\040', '\061',
'\012', '\151', '\171', '\130', '\040', '\151', '\156', '\040',
'\061', '\012', '\132', '\146', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\166', '\164', '\110', '\040', '\164',
'\150', '\040', '\061', '\012', '\143', '\132', '\146', '\040',
'\143', '\150', '\040', '\061', '\012', '\150', '\130', '\160',
'\040', '\164', '\150', '\040', '\061', '\012', '\162', '\112',
'\167', '\040', '\145', '\162', '\040', '\061', '\012', '\147',
'\142', '\120', '\040', '\156', '\147', '\040', '\061', '\012',
'\121', '\165', '\147', '\040', '\156', '\147', '\040', '\061',
'\012', '\152', '\122', '\164', '\040', '\164', '\150', '\040',
'\061', '\012', '\154', '\130', '\150', '\040', '\164', '\150',
'\040', '\061', '\012', '\160', '\126', '\143', '\040', '\143',
'\150', '\040', '\061', '\012', '\153', '\107', '\143', '\040',
'\143', '\150', '\040', '\061', '\012', '\116', '\170', '\162',
'\040', '\145', '\162', '\040', '\061', '\012', '\171', '\113',
'\153', '\040', '\153', '\141', '\040', '\061', '\012', '\170',
'\101', '\157', '\040', '\157', '\156', '\040', '\061', '\012',
'\157', '\125', '\170', '\040', '\157', '\156', '\040', '\061',
'\012', '\156', '\127', '\170', '\040', '\141', '\156', '\040',
'\061', '\012', '\146', '\167', '\125', '\040', '\167', '\141',
'\040', '\061', '\012', '\155', '\113', '\147', '\040', '\156',
'\147', '\040', '\061', '\012', '\161', '\150', '\117', '\040',
'\164', '\150', '\040', '\061', '\012', '\163', '\107', '\147',
'\040', '\156', '\147', '\040', '\061', '\012', '\127', '\167',
'\165', '\040', '\161', '\165', '\040', '\061', '\012', '\143',
'\156', '\105', '\040', '\141', '\156', '\040', '\061', '\012',
'\164', '\152', '\123', '\040', '\164', '\150', '\040', '\061',
'\012', '\121', '\171', '\144', '\040', '\144', '\145', '\040',
'\061', '\012', '\171', '\127', '\155', '\040', '\155', '\145',
'\040', '\061', '\012', '\121', '\144', '\152', '\040', '\144',
'\145', '\040', '\061', '\012', '\152', '\123', '\144', '\040',
'\144', '\145', '\040', '\061', '\012', '\111', '\157', '\171',
'\040', '\157', '\156', '\040', '\061', '\012', '\130', '\160',
'\160', '\040', '\160', '\162', '\040', '\061', '\012', '\170',
'\112', '\142', '\040', '\142', '\145', '\040', '\061', '\012',
'\170', '\166', '\124', '\040', '\166', '\141', '\040', '\061',
'\012', '\143', '\144', '\124', '\040', '\143', '\150', '\040',
'\061', '\012', '\153', '\150', '\130', '\040', '\164', '\150',
'\040', '\061', '\012', '\150', '\126', '\160', '\040', '\164',
'\150', '\040', '\061', '\012', '\143', '\152', '\124', '\040',
'\143', '\150', '\040', '\061', '\012', '\110', '\161', '\146',
'\040', '\161', '\165', '\040', '\061', '\012', '\156', '\142',
'\120', '\040', '\141', '\156', '\040', '\061', '\012', '\125',
'\167', '\142', '\040', '\167', '\141', '\040', '\061', '\012',
'\113', '\143', '\142', '\040', '\143', '\150', '\040', '\061',
'\012', '\161', '\163', '\121', '\040', '\161', '\165', '\040',
'\061', '\012', '\164', '\153', '\132', '\040', '\164', '\150',
'\040', '\061', '\012', '\172', '\162', '\130', '\040', '\145',
'\162', '\040', '\061', '\012', '\172', '\142', '\116', '\040',
'\163', '\172', '\040', '\061', '\012', '\155', '\131', '\151',
'\040', '\151', '\156', '\040', '\061', '\012', '\147', '\114',
'\170', '\040', '\156', '\147', '\040', '\061', '\012', '\163',
'\107', '\143', '\040', '\143', '\150', '\040', '\061', '\012',
'\120', '\142', '\166', '\040', '\166', '\141', '\040', '\061',
'\012', '\147', '\143', '\126', '\040', '\143', '\150', '\040',
'\061', '\012', '\121', '\152', '\146', '\040', '\151', '\152',
'\040', '\061', '\012', '\167', '\166', '\102', '\040', '\166',
'\141', '\040', '\061', '\012', '\147', '\113', '\160', '\040',
'\156', '\147', '\040', '\061', '\012', '\152', '\132', '\171',
'\040', '\151', '\152', '\040', '\061', '\012', '\161', '\150',
'\127', '\040', '\164', '\150', '\040', '\061', '\012', '\166',
'\103', '\147', '\040', '\156', '\147', '\040', '\061', '\012',
'\114', '\162', '\153', '\040', '\145', '\162', '\040', '\061',
'\012', '\146', '\122', '\167', '\040', '\167', '\141', '\040',
'\061', '\012', '\143', '\115', '\152', '\040', '\143', '\150',
'\040', '\061', '\012', '\157', '\150', '\113', '\040', '\164',
'\150', '\040', '\061', '\012', '\146', '\162', '\113', '\040',
'\145', '\162', '\040', '\061', '\012', '\144', '\121', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\110', '\144',
'\152', '\040', '\144', '\145', '\040', '\061', '\012', '\102',
'\153', '\170', '\040', '\153', '\141', '\040', '\061', '\012',
'\171', '\130', '\166', '\040', '\166', '\141', '\040', '\061',
'\012', '\146', '\144', '\117', '\040', '\144', '\145', '\040',
'\061', '\012', '\163', '\127', '\147', '\040', '\156', '\147',
'\040', '\061', '\012', '\130', '\164', '\146', '\040', '\164',
'\150', '\040', '\061', '\012', '\162', '\125', '\170', '\040',
'\141', '\162', '\040', '\061', '\012', '\161', '\110', '\155',
'\040', '\161', '\165', '\040', '\061', '\012', '\153', '\121',
'\150', '\040', '\164', '\150', '\040', '\061', '\012', '\167',
'\172', '\125', '\040', '\163', '\172', '\040', '\061', '\012',
'\166', '\124', '\164', '\040', '\164', '\150', '\040', '\061',
'\012', '\172', '\153', '\116', '\040', '\163', '\172', '\040',
'\061', '\012', '\106', '\161', '\160', '\040', '\161', '\165',
'\040', '\061', '\012', '\170', '\112', '\143', '\040', '\143',
'\150', '\040', '\061', '\012', '\167', '\153', '\121', '\040',
'\153', '\141', '\040', '\061', '\012', '\167', '\170', '\106',
'\040', '\167', '\141', '\040', '\061', '\012', '\166', '\122',
'\152', '\040', '\151', '\152', '\040', '\061', '\012', '\152',
'\172', '\104', '\040', '\163', '\172', '\040', '\061', '\012',
'\132', '\161', '\165', '\040', '\165', '\156', '\040', '\061',
'\012', '\172', '\127', '\167', '\040', '\163', '\172', '\040',
'\061', '\012', '\172', '\147', '\125', '\040', '\156', '\147',
'\040', '\061', '\012', '\165', '\147', '\130', '\040', '\156',
'\147', '\040', '\061', '\012', '\160', '\155', '\102', '\040',
'\155', '\145', '\040', '\061', '\012', '\147', '\172', '\101',
'\040', '\156', '\147', '\040', '\061', '\012', '\132', '\152',
'\152', '\040', '\151', '\152', '\040', '\061', '\012', '\170',
'\111', '\152', '\040', '\151', '\152', '\040', '\061', '\012',
'\170', '\157', '\113', '\040', '\157', '\156', '\040', '\061',
'\012', '\107', '\161', '\170', '\040', '\161', '\165', '\040',
'\061', '\012', '\165', '\114', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\154', '\107', '\167', '\040', '\154',
'\145', '\040', '\061', '\012', '\164', '\132', '\161', '\040',
'\164', '\150', '\040', '\061', '\012', '\172', '\143', '\116',
'\040', '\143', '\150', '\040', '\061', '\012', '\171', '\120',
'\172', '\040', '\163', '\172', '\040', '\061', '\012', '\162',
'\161', '\116', '\040', '\161', '\165', '\040', '\061', '\012',
'\160', '\167', '\107', '\040', '\160', '\162', '\040', '\061',
'\012', '\166', '\146', '\120', '\040', '\166', '\141', '\040',
'\061', '\012', '\166', '\111', '\171', '\040', '\166', '\141',
'\040', '\061', '\012', '\166', '\105', '\152', '\040', '\151',
'\152', '\040', '\061', '\012', '\152', '\161', '\104', '\040',
'\161', '\165', '\040', '\061', '\012', '\110', '\170', '\165',
'\040', '\161', '\165', '\040', '\061', '\012', '\161', '\114',
'\163', '\040', '\161', '\165', '\040', '\061', '\012', '\112',
'\160', '\171', '\040', '\160', '\162', '\040', '\061', '\012',
'\160', '\122', '\167', '\040', '\160', '\162', '\040', '\061',
'\012', '\146', '\132', '\163', '\040', '\163', '\164', '\040',
'\061', '\012', '\126', '\166', '\170', '\040', '\166', '\141',
'\040', '\061', '\012', '\172', '\153', '\102', '\040', '\163',
'\172', '\040', '\061', '\012', '\171', '\107', '\153', '\040',
'\153', '\141', '\040', '\061', '\012', '\153', '\166', '\132',
'\040', '\153', '\141', '\040', '\061', '\012', '\143', '\161',
'\127', '\040', '\143', '\150', '\040', '\061', '\012', '\167',
'\114', '\147', '\040', '\156', '\147', '\040', '\061', '\012',
'\131', '\160', '\147', '\040', '\156', '\147', '\040', '\061',
'\012', '\152', '\162', '\122', '\040', '\145', '\162', '\040',
'\061', '\012', '\166', '\167', '\132', '\040', '\166', '\141',
'\040', '\061', '\012', '\147', '\126', '\144', '\040', '\156',
'\147', '\040', '\061', '\012', '\151', '\103', '\167', '\040',
'\151', '\152', '\040', '\061', '\012', '\106', '\170', '\167',
'\040', '\167', '\141', '\040', '\061', '\012', '\161', '\171',
'\132', '\040', '\161', '\165', '\040', '\061', '\012', '\161',
'\147', '\124', '\040', '\161', '\165', '\040', '\061', '\012',
'\170', '\114', '\163', '\040', '\163', '\164', '\040', '\061',
'\012', '\160', '\130', '\147', '\040', '\156', '\147', '\040',
'\061', '\012', '\147', '\116', '\166', '\040', '\156', '\147',
'\040', '\061', '\012', '\110', '\147', '\172', '\040', '\156',
'\147', '\040', '\061', '\012', '\172', '\112', '\166', '\040',
'\163', '\172', '\040', '\061', '\012', '\110', '\166', '\155',
'\040', '\166', '\141', '\040', '\061', '\012', '\165', '\130',
'\142', '\040', '\161', '\165', '\040', '\061', '\012', '\154',
'\114', '\172', '\040', '\154', '\145', '\040', '\061', '\012',
'\144', '\167', '\120', '\040', '\144', '\145', '\040', '\061',
'\012', '\147', '\166', '\116', '\040', '\156', '\147', '\040',
'\061', '\012', '\143', '\160', '\106', '\040', '\143', '\150',
'\040', '\061', '\012', '\166', '\132', '\152', '\040', '\151',
'\152', '\040', '\061', '\012', '\120', '\146', '\166', '\040',
'\166', '\141', '\040', '\061', '\012', '\170', '\143', '\111',
'\040', '\143', '\150', '\040', '\061', '\012', '\171', '\126',
'\160', '\040', '\160', '\162', '\040', '\061', '\012', '\146',
'\144', '\103', '\040', '\144', '\145', '\040', '\061', '\012',
'\160', '\142', '\105', '\040', '\160', '\162', '\040', '\061',
'\012', '\152', '\121', '\155', '\040', '\151', '\152', '\040',
'\061', '\012', '\124', '\161', '\164', '\040', '\164', '\150',
'\040', '\061', '\012', '\167', '\115', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\107', '\153', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\164', '\144', '\126',
'\040', '\164', '\150', '\040', '\061', '\012', '\170', '\111',
'\153', '\040', '\153', '\141', '\040', '\061', '\012', '\150',
'\110', '\160', '\040', '\164', '\150', '\040', '\061', '\012',
'\114', '\163', '\142', '\040', '\163', '\164', '\040', '\061',
'\012', '\127', '\166', '\163', '\040', '\163', '\164', '\040',
'\061', '\012', '\121', '\143', '\167', '\040', '\143', '\150',
'\040', '\061', '\012', '\147', '\146', '\121', '\040', '\156',
'\147', '\040', '\061', '\012', '\106', '\152', '\164', '\040',
'\164', '\150', '\040', '\061', '\012', '\170', '\102', '\172',
'\040', '\163', '\172', '\040', '\061', '\012', '\146', '\114',
'\170', '\040', '\146', '\157', '\040', '\061', '\012', '\172',
'\153', '\122', '\040', '\163', '\172', '\040', '\061', '\012',
'\153', '\152', '\101', '\040', '\151', '\152', '\040', '\061',
'\012', '\106', '\143', '\167', '\040', '\143', '\150', '\040',
'\061', '\012', '\146', '\150', '\124', '\040', '\164', '\150',
'\040', '\061', '\012', '\161', '\151', '\113', '\040', '\161',
'\165', '\040', '\061', '\012', '\167', '\121', '\166', '\040',
'\166', '\141', '\040', '\061', '\012', '\160', '\130', '\154',
'\040', '\154', '\145', '\040', '\061', '\012', '\150', '\114',
'\147', '\040', '\164', '\150', '\040', '\061', '\012', '\152',
'\112', '\167', '\040', '\151', '\152', '\040', '\061', '\012',
'\163', '\117', '\152', '\040', '\163', '\164', '\040', '\061',
'\012', '\166', '\127', '\142', '\040', '\166', '\141', '\040',
'\061', '\012', '\101', '\152', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\166', '\113', '\143', '\040', '\143',
'\150', '\040', '\061', '\012', '\151', '\111', '\171', '\040',
'\151', '\156', '\040', '\061', '\012', '\160', '\112', '\171',
'\040', '\160', '\162', '\040', '\061', '\012', '\114', '\161',
'\143', '\040', '\143', '\150', '\040', '\061', '\012', '\167',
'\102', '\144', '\040', '\144', '\145', '\040', '\061', '\012',
'\153', '\122', '\142', '\040', '\153', '\141', '\040', '\061',
'\012', '\114', '\143', '\160', '\040', '\143', '\150', '\040',
'\061', '\012', '\147', '\146', '\102', '\040', '\156', '\147',
'\040', '\061', '\012', '\172', '\126', '\156', '\040', '\141',
'\156', '\040', '\061', '\012', '\161', '\127', '\146', '\040',
'\161', '\165', '\040', '\061', '\012', '\121', '\171', '\146',
'\040', '\156', '\171', '\040', '\061', '\012', '\160', '\165',
'\106', '\040', '\161', '\165', '\040', '\061', '\012', '\146',
'\111', '\145', '\040', '\145', '\162', '\040', '\061', '\012',
'\167', '\107', '\142', '\040', '\167', '\141', '\040', '\061',
'\012', '\152', '\152', '\114', '\040', '\151', '\152', '\040',
'\061', '\012', '\150', '\143', '\105', '\040', '\164', '\150',
'\040', '\061', '\012', '\161', '\150', '\160', '\040', '\164',
'\150', '\040', '\061', '\012', '\147', '\170', '\116', '\040',
'\156', '\147', '\040', '\061', '\012', '\164', '\115', '\144',
'\040', '\164', '\150', '\040', '\061', '\012', '\122', '\172',
'\164', '\040', '\164', '\150', '\040', '\061', '\012', '\143',
'\147', '\117', '\040', '\143', '\150', '\040', '\061', '\012',
'\166', '\155', '\124', '\040', '\166', '\141', '\040', '\061',
'\012', '\104', '\143', '\161', '\040', '\143', '\150', '\040',
'\061', '\012', '\161', '\157', '\111', '\040', '\161', '\165',
'\040', '\061', '\012', '\116', '\161', '\172', '\040', '\161',
'\165', '\040', '\061', '\012', '\166', '\150', '\115', '\040',
'\164', '\150', '\040', '\061', '\012', '\147', '\102', '\161',
'\040', '\156', '\147', '\040', '\061', '\012', '\152', '\127',
'\166', '\040', '\151', '\152', '\040', '\061', '\012', '\170',
'\155', '\105', '\040', '\155', '\145', '\040', '\061', '\012',
'\161', '\143', '\144', '\040', '\143', '\150', '\040', '\061',
'\012', '\154', '\131', '\152', '\040', '\154', '\145', '\040',
'\061', '\012', '\144', '\104', '\143', '\040', '\143', '\150',
'\040', '\061', '\012', '\170', '\125', '\141', '\040', '\141',
'\156', '\040', '\061', '\012', '\153', '\126', '\154', '\040',
'\154', '\145', '\040', '\061', '\012', '\167', '\161', '\116',
'\040', '\161', '\165', '\040', '\061', '\012', '\165', '\165',
'\111', '\040', '\161', '\165', '\040', '\061', '\012', '\127',
'\172', '\146', '\040', '\163', '\172', '\040', '\061', '\012',
'\171', '\166', '\130', '\040', '\166', '\141', '\040', '\061',
'\012', '\120', '\171', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\167', '\165', '\125', '\040', '\161', '\165',
'\040', '\061', '\012', '\150', '\114', '\160', '\040', '\164',
'\150', '\040', '\061', '\012', '\161', '\161', '\114', '\040',
'\161', '\165', '\040', '\061', '\012', '\143', '\126', '\150',
'\040', '\164', '\150', '\040', '\061', '\012', '\106', '\147',
'\163', '\040', '\156', '\147', '\040', '\061', '\012', '\170',
'\152', '\106', '\040', '\151', '\152', '\040', '\061', '\012',
'\167', '\153', '\107', '\040', '\153', '\141', '\040', '\061',
'\012', '\161', '\112', '\162', '\040', '\161', '\165', '\040',
'\061', '\012', '\107', '\172', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\111', '\170', '\166', '\040', '\166',
'\141', '\040', '\061', '\012', '\150', '\115', '\166', '\040',
'\164', '\150', '\040', '\061', '\012', '\144', '\146', '\121',
'\040', '\144', '\145', '\040', '\061', '\012', '\145', '\117',
'\170', '\040', '\145', '\162', '\040', '\061', '\012', '\155',
'\110', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\132', '\153', '\156', '\040', '\141', '\156', '\040', '\061',
'\012', '\156', '\161', '\127', '\040', '\141', '\156', '\040',
'\061', '\012', '\156', '\112', '\144', '\040', '\141', '\156',
'\040', '\061', '\012', '\160', '\105', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\147', '\126', '\147', '\040',
'\156', '\147', '\040', '\061', '\012', '\132', '\171', '\146',
'\040', '\156', '\171', '\040', '\061', '\012', '\156', '\155',
'\124', '\040', '\141', '\156', '\040', '\061', '\012', '\143',
'\163', '\121', '\040', '\143', '\150', '\040', '\061', '\012',
'\120', '\153', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\164', '\144', '\120', '\040', '\164', '\150', '\040',
'\061', '\012', '\146', '\153', '\172', '\040', '\163', '\172',
'\040', '\061', '\012', '\121', '\156', '\143', '\040', '\141',
'\156', '\040', '\061', '\012', '\160', '\102', '\152', '\040',
'\151', '\152', '\040', '\061', '\012', '\115', '\152', '\166',
'\040', '\151', '\152', '\040', '\061', '\012', '\171', '\155',
'\112', '\040', '\155', '\145', '\040', '\061', '\012', '\115',
'\170', '\163', '\040', '\163', '\164', '\040', '\061', '\012',
'\150', '\142', '\114', '\040', '\164', '\150', '\040', '\061',
'\012', '\166', '\121', '\150', '\040', '\164', '\150', '\040',
'\061', '\012', '\170', '\104', '\171', '\040', '\156', '\171',
'\040', '\061', '\012', '\144', '\152', '\103', '\040', '\144',
'\145', '\040', '\061', '\012', '\143', '\144', '\121', '\040',
'\143', '\150', '\040', '\061', '\012', '\142', '\156', '\114',
'\040', '\141', '\156', '\040', '\061', '\012', '\131', '\152',
'\154', '\040', '\154', '\145', '\040', '\061', '\012', '\161',
'\125', '\143', '\040', '\143', '\150', '\040', '\061', '\012',
'\155', '\152', '\127', '\040', '\151', '\152', '\040', '\061',
'\012', '\172', '\127', '\163', '\040', '\163', '\164', '\040',
'\061', '\012', '\170', '\166', '\106', '\040', '\166', '\141',
'\040', '\061', '\012', '\107', '\161', '\151', '\040', '\161',
'\165', '\040', '\061', '\012', '\146', '\107', '\155', '\040',
'\155', '\145', '\040', '\061', '\012', '\130', '\165', '\167',
'\040', '\161', '\165', '\040', '\061', '\012', '\161', '\103',
'\163', '\040', '\161', '\165', '\040', '\061', '\012', '\113',
'\170', '\155', '\040', '\155', '\145', '\040', '\061', '\012',
'\154', '\116', '\156', '\040', '\141', '\156', '\040', '\061',
'\012', '\163', '\144', '\114', '\040', '\144', '\145', '\040',
'\061', '\012', '\126', '\164', '\156', '\040', '\164', '\150',
'\040', '\061', '\012', '\163', '\112', '\152', '\040', '\163',
'\164', '\040', '\061', '\012', '\153', '\121', '\152', '\040',
'\151', '\152', '\040', '\061', '\012', '\170', '\146', '\130',
'\040', '\146', '\157', '\040', '\061', '\012', '\116', '\161',
'\153', '\040', '\161', '\165', '\040', '\061', '\012', '\143',
'\102', '\163', '\040', '\143', '\150', '\040', '\061', '\012',
'\171', '\172', '\120', '\040', '\163', '\172', '\040', '\061',
'\012', '\170', '\125', '\166', '\040', '\166', '\141', '\040',
'\061', '\012', '\154', '\142', '\124', '\040', '\154', '\145',
'\040', '\061', '\012', '\167', '\171', '\126', '\040', '\167',
'\141', '\040', '\061', '\012', '\130', '\153', '\155', '\040',
'\153', '\141', '\040', '\061', '\012', '\127', '\144', '\166',
'\040', '\144', '\145', '\040', '\061', '\012', '\161', '\121',
'\156', '\040', '\141', '\156', '\040', '\061', '\012', '\163',
'\161', '\132', '\040', '\161', '\165', '\040', '\061', '\012',
'\163', '\146', '\127', '\040', '\163', '\164', '\040', '\061',
'\012', '\147', '\146', '\115', '\040', '\156', '\147', '\040',
'\061', '\012', '\126', '\154', '\160', '\040', '\154', '\145',
'\040', '\061', '\012', '\130', '\152', '\170', '\040', '\151',
'\152', '\040', '\061', '\012', '\150', '\111', '\152', '\040',
'\164', '\150', '\040', '\061', '\012', '\112', '\167', '\163',
'\040', '\163', '\164', '\040', '\061', '\012', '\170', '\132',
'\162', '\040', '\145', '\162', '\040', '\061', '\012', '\151',
'\113', '\167', '\040', '\151', '\156', '\040', '\061', '\012',
'\124', '\142', '\144', '\040', '\144', '\145', '\040', '\061',
'\012', '\172', '\121', '\166', '\040', '\163', '\172', '\040',
'\061', '\012', '\156', '\155', '\132', '\040', '\141', '\156',
'\040', '\061', '\012', '\142', '\160', '\105', '\040', '\160',
'\162', '\040', '\061', '\012', '\172', '\123', '\166', '\040',
'\163', '\172', '\040', '\061', '\012', '\106', '\147', '\151',
'\040', '\156', '\147', '\040', '\061', '\012', '\165', '\111',
'\167', '\040', '\161', '\165', '\040', '\061', '\012', '\132',
'\166', '\170', '\040', '\166', '\141', '\040', '\061', '\012',
'\162', '\161', '\122', '\040', '\161', '\165', '\040', '\061',
'\012', '\166', '\152', '\132', '\040', '\151', '\152', '\040',
'\061', '\012', '\116', '\152', '\162', '\040', '\145', '\162',
'\040', '\061', '\012', '\153', '\167', '\106', '\040', '\153',
'\141', '\040', '\061', '\012', '\117', '\166', '\167', '\040',
'\166', '\141', '\040', '\061', '\012', '\150', '\167', '\132',
'\040', '\164', '\150', '\040', '\061', '\012', '\115', '\166',
'\153', '\040', '\153', '\141', '\040', '\061', '\012', '\104',
'\166', '\146', '\040', '\166', '\141', '\040', '\061', '\012',
'\170', '\163', '\120', '\040', '\163', '\164', '\040', '\061',
'\012', '\147', '\132', '\161', '\040', '\156', '\147', '\040',
'\061', '\012', '\166', '\130', '\166', '\040', '\166', '\141',
'\040', '\061', '\012', '\167', '\107', '\164', '\040', '\164',
'\150', '\040', '\061', '\012', '\161', '\154', '\117', '\040',
'\161', '\165', '\040', '\061', '\012', '\146', '\116', '\172',
'\040', '\163', '\172', '\040', '\061', '\012', '\116', '\166',
'\167', '\040', '\166', '\141', '\040', '\061', '\012', '\172',
'\144', '\132', '\040', '\144', '\145', '\040', '\061', '\012',
'\166', '\170', '\126', '\040', '\166', '\141', '\040', '\061',
'\012', '\116', '\150', '\172', '\040', '\164', '\150', '\040',
'\061', '\012', '\164', '\132', '\155', '\040', '\164', '\150',
'\040', '\061', '\012', '\151', '\171', '\123', '\040', '\151',
'\156', '\040', '\061', '\012', '\161', '\132', '\141', '\040',
'\141', '\156', '\040', '\061', '\012', '\170', '\162', '\132',
'\040', '\145', '\162', '\040', '\061', '\012', '\161', '\154',
'\171', '\040', '\161', '\165', '\040', '\061', '\012', '\143',
'\152', '\115', '\040', '\143', '\150', '\040', '\061', '\012',
'\153', '\131', '\152', '\040', '\151', '\152', '\040', '\061',
'\012', '\151', '\171', '\106', '\040', '\151', '\156', '\040',
'\061', '\012', '\103', '\144', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\170', '\167', '\105', '\040', '\167',
'\141', '\040', '\061', '\012', '\170', '\146', '\126', '\040',
'\146', '\157', '\040', '\061', '\012', '\167', '\142', '\106',
'\040', '\167', '\141', '\040', '\061', '\012', '\167', '\165',
'\117', '\040', '\161', '\165', '\040', '\061', '\012', '\122',
'\154', '\150', '\040', '\164', '\150', '\040', '\061', '\012',
'\146', '\103', '\152', '\040', '\151', '\152', '\040', '\061',
'\012', '\142', '\143', '\132', '\040', '\143', '\150', '\040',
'\061', '\012', '\107', '\152', '\166', '\040', '\151', '\152',
'\040', '\061', '\012', '\147', '\114', '\154', '\040', '\156',
'\147', '\040', '\061', '\012', '\167', '\114', '\143', '\040',
'\143', '\150', '\040', '\061', '\012', '\172', '\155', '\120',
'\040', '\163', '\172', '\040', '\061', '\012', '\143', '\131',
'\157', '\040', '\143', '\150', '\040', '\061', '\012', '\122',
'\150', '\153', '\040', '\164', '\150', '\040', '\061', '\012',
'\147', '\162', '\115', '\040', '\156', '\147', '\040', '\061',
'\012', '\146', '\104', '\150', '\040', '\164', '\150', '\040',
'\061', '\012', '\131', '\171', '\142', '\040', '\142', '\145',
'\040', '\061', '\012', '\165', '\171', '\127', '\040', '\165',
'\156', '\040', '\061', '\012', '\153', '\107', '\142', '\040',
'\153', '\141', '\040', '\061', '\012', '\151', '\167', '\113',
'\040', '\151', '\156', '\040', '\061', '\012', '\161', '\153',
'\116', '\040', '\161', '\165', '\040', '\061', '\012', '\161',
'\130', '\144', '\040', '\161', '\165', '\040', '\061', '\012',
'\172', '\103', '\142', '\040', '\163', '\172', '\040', '\061',
'\012', '\162', '\121', '\146', '\040', '\145', '\162', '\040',
'\061', '\012', '\170', '\162', '\117', '\040', '\145', '\162',
'\040', '\061', '\012', '\106', '\172', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\167', '\123', '\152', '\040',
'\151', '\152', '\040', '\061', '\012', '\171', '\120', '\167',
'\040', '\167', '\141', '\040', '\061', '\012', '\102', '\161',
'\167', '\040', '\161', '\165', '\040', '\061', '\012', '\153',
'\127', '\143', '\040', '\143', '\150', '\040', '\061', '\012',
'\161', '\150', '\130', '\040', '\164', '\150', '\040', '\061',
'\012', '\153', '\102', '\167', '\040', '\153', '\141', '\040',
'\061', '\012', '\171', '\166', '\114', '\040', '\166', '\141',
'\040', '\061', '\012', '\170', '\143', '\124', '\040', '\143',
'\150', '\040', '\061', '\012', '\106', '\142', '\172', '\040',
'\163', '\172', '\040', '\061', '\012', '\143', '\105', '\142',
'\040', '\143', '\150', '\040', '\061', '\012', '\166', '\105',
'\153', '\040', '\153', '\141', '\040', '\061', '\012', '\165',
'\121', '\150', '\040', '\164', '\150', '\040', '\061', '\012',
'\163', '\110', '\167', '\040', '\165', '\163', '\040', '\061',
'\012', '\106', '\166', '\146', '\040', '\166', '\141', '\040',
'\061', '\012', '\167', '\153', '\117', '\040', '\153', '\141',
'\040', '\061', '\012', '\167', '\151', '\131', '\040', '\151',
'\156', '\040', '\061', '\012', '\163', '\120', '\155', '\040',
'\163', '\164', '\040', '\061', '\012', '\144', '\106', '\156',
'\040', '\141', '\156', '\040', '\061', '\012', '\161', '\121',
'\170', '\040', '\161', '\165', '\040', '\061', '\012', '\122',
'\163', '\147', '\040', '\156', '\147', '\040', '\061', '\012',
'\146', '\125', '\152', '\040', '\151', '\152', '\040', '\061',
'\012', '\164', '\114', '\167', '\040', '\164', '\150', '\040',
'\061', '\012', '\163', '\122', '\153', '\040', '\163', '\164',
'\040', '\061', '\012', '\172', '\153', '\120', '\040', '\163',
'\172', '\040', '\061', '\012', '\155', '\166', '\106', '\040',
'\166', '\141', '\040', '\061', '\012', '\152', '\131', '\142',
'\040', '\151', '\152', '\040', '\061', '\012', '\163', '\167',
'\131', '\040', '\151', '\163', '\040', '\061', '\012', '\162',
'\122', '\143', '\040', '\143', '\150', '\040', '\061', '\012',
'\162', '\110', '\144', '\040', '\145', '\162', '\040', '\061',
'\012', '\142', '\104', '\153', '\040', '\153', '\141', '\040',
'\061', '\012', '\154', '\127', '\166', '\040', '\154', '\145',
'\040', '\061', '\012', '\166', '\161', '\166', '\040', '\161',
'\165', '\040', '\061', '\012', '\161', '\157', '\116', '\040',
'\161', '\165', '\040', '\061', '\012', '\172', '\115', '\154',
'\040', '\154', '\145', '\040', '\061', '\012', '\160', '\146',
'\112', '\040', '\160', '\162', '\040', '\061', '\012', '\104',
'\155', '\172', '\040', '\163', '\172', '\040', '\061', '\012',
'\157', '\142', '\121', '\040', '\157', '\156', '\040', '\061',
'\012', '\126', '\146', '\172', '\040', '\163', '\172', '\040',
'\061', '\012', '\142', '\126', '\144', '\040', '\144', '\145',
'\040', '\061', '\012', '\103', '\152', '\166', '\040', '\151',
'\152', '\040', '\061', '\012', '\155', '\113', '\172', '\040',
'\163', '\172', '\040', '\061', '\012', '\152', '\152', '\105',
'\040', '\151', '\152', '\040', '\061', '\012', '\101', '\161',
'\143', '\040', '\143', '\150', '\040', '\061', '\012', '\103',
'\170', '\156', '\040', '\141', '\156', '\040', '\061', '\012',
'\166', '\160', '\110', '\040', '\166', '\141', '\040', '\061',
'\012', '\114', '\170', '\141', '\040', '\141', '\156', '\040',
'\061', '\012', '\172', '\160', '\110', '\040', '\163', '\172',
'\040', '\061', '\012', '\161', '\157', '\106', '\040', '\161',
'\165', '\040', '\061', '\012', '\150', '\122', '\172', '\040',
'\164', '\150', '\040', '\061', '\012', '\171', '\131', '\167',
'\040', '\167', '\141', '\040', '\061', '\012', '\144', '\125',
'\170', '\040', '\144', '\145', '\040', '\061', '\012', '\113',
'\170', '\154', '\040', '\154', '\145', '\040', '\061', '\012',
'\170', '\125', '\157', '\040', '\157', '\156', '\040', '\061',
'\012', '\150', '\104', '\160', '\040', '\164', '\150', '\040',
'\061', '\012', '\172', '\104', '\146', '\040', '\163', '\172',
'\040', '\061', '\012', '\127', '\163', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\152', '\172', '\132', '\040',
'\163', '\172', '\040', '\061', '\012', '\155', '\107', '\146',
'\040', '\155', '\145', '\040', '\061', '\012', '\152', '\152',
'\126', '\040', '\151', '\152', '\040', '\061', '\012', '\160',
'\146', '\122', '\040', '\160', '\162', '\040', '\061', '\012',
'\142', '\120', '\144', '\040', '\144', '\145', '\040', '\061',
'\012', '\167', '\152', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\122', '\152', '\170', '\040', '\151', '\152',
'\040', '\061', '\012', '\114', '\167', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\146', '\161', '\110', '\040',
'\161', '\165', '\040', '\061', '\012', '\152', '\122', '\163',
'\040', '\163', '\172', '\040', '\061', '\012', '\163', '\146',
'\124', '\040', '\163', '\172', '\040', '\061', '\012', '\107',
'\162', '\167', '\040', '\145', '\162', '\040', '\061', '\012',
'\172', '\107', '\156', '\040', '\141', '\156', '\040', '\061',
'\012', '\171', '\143', '\127', '\040', '\143', '\150', '\040',
'\061', '\012', '\154', '\125', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\160', '\122', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\156', '\132', '\161', '\040',
'\141', '\156', '\040', '\061', '\012', '\123', '\166', '\170',
'\040', '\166', '\141', '\040', '\061', '\012', '\120', '\150',
'\146', '\040', '\164', '\150', '\040', '\061', '\012', '\106',
'\166', '\152', '\040', '\151', '\152', '\040', '\061', '\012',
'\121', '\154', '\155', '\040', '\154', '\145', '\040', '\061',
'\012', '\152', '\147', '\123', '\040', '\156', '\147', '\040',
'\061', '\012', '\115', '\155', '\166', '\040', '\166', '\141',
'\040', '\061', '\012', '\170', '\120', '\144', '\040', '\144',
'\145', '\040', '\061', '\012', '\161', '\161', '\167', '\040',
'\161', '\165', '\040', '\061', '\012', '\162', '\127', '\160',
'\040', '\145', '\162', '\040', '\061', '\012', '\161', '\111',
'\162', '\040', '\161', '\165', '\040', '\061', '\012', '\103',
'\170', '\146', '\040', '\146', '\157', '\040', '\061', '\012',
'\167', '\164', '\107', '\040', '\164', '\150', '\040', '\061',
'\012', '\143', '\113', '\142', '\040', '\143', '\150', '\040',
'\061', '\012', '\142', '\164', '\114', '\040', '\164', '\150',
'\040', '\061', '\012', '\160', '\122', '\170', '\040', '\160',
'\162', '\040', '\061', '\012', '\172', '\163', '\102', '\040',
'\163', '\172', '\040', '\061', '\012', '\156', '\142', '\104',
'\040', '\141', '\156', '\040', '\061', '\012', '\152', '\113',
'\147', '\040', '\156', '\147', '\040', '\061', '\012', '\142',
'\150', '\114', '\040', '\164', '\150', '\040', '\061', '\012',
'\131', '\150', '\167', '\040', '\164', '\150', '\040', '\061',
'\012', '\171', '\131', '\162', '\040', '\145', '\162', '\040',
'\061', '\012', '\152', '\103', '\155', '\040', '\151', '\152',
'\040', '\061', '\012', '\170', '\172', '\113', '\040', '\163',
'\172', '\040', '\061', '\012', '\160', '\112', '\154', '\040',
'\154', '\145', '\040', '\061', '\012', '\121', '\162', '\162',
'\040', '\145', '\162', '\040', '\061', '\012', '\165', '\166',
'\107', '\040', '\161', '\165', '\040', '\061', '\012', '\143',
'\146', '\112', '\040', '\143', '\150', '\040', '\061', '\012',
'\151', '\161', '\130', '\040', '\151', '\156', '\040', '\061',
'\012', '\166', '\116', '\144', '\040', '\144', '\145', '\040',
'\061', '\012', '\161', '\143', '\115', '\040', '\143', '\150',
'\040', '\061', '\012', '\127', '\166', '\152', '\040', '\151',
'\152', '\040', '\061', '\012', '\166', '\155', '\123', '\040',
'\166', '\141', '\040', '\061', '\012', '\166', '\127', '\160',
'\040', '\166', '\141', '\040', '\061', '\012', '\141', '\111',
'\152', '\040', '\141', '\156', '\040', '\061', '\012', '\152',
'\155', '\123', '\040', '\151', '\152', '\040', '\061', '\012',
'\106', '\155', '\153', '\040', '\153', '\141', '\040', '\061',
'\012', '\151', '\171', '\116', '\040', '\151', '\156', '\040',
'\061', '\012', '\142', '\132', '\165', '\040', '\161', '\165',
'\040', '\061', '\012', '\113', '\172', '\152', '\040', '\163',
'\172', '\040', '\061', '\012', '\126', '\167', '\144', '\040',
'\144', '\145', '\040', '\061', '\012', '\125', '\154', '\170',
'\040', '\154', '\145', '\040', '\061', '\012', '\162', '\103',
'\166', '\040', '\145', '\162', '\040', '\061', '\012', '\167',
'\166', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\121', '\153', '\162', '\040', '\162', '\151', '\040', '\061',
'\012', '\146', '\152', '\103', '\040', '\151', '\152', '\040',
'\061', '\012', '\164', '\122', '\162', '\040', '\164', '\150',
'\040', '\061', '\012', '\160', '\103', '\171', '\040', '\160',
'\162', '\040', '\061', '\012', '\146', '\142', '\103', '\040',
'\142', '\145', '\040', '\061', '\012', '\146', '\121', '\143',
'\040', '\143', '\150', '\040', '\061', '\012', '\130', '\153',
'\146', '\040', '\153', '\141', '\040', '\061', '\012', '\104',
'\161', '\162', '\040', '\161', '\165', '\040', '\061', '\012',
'\146', '\147', '\105', '\040', '\156', '\147', '\040', '\061',
'\012', '\166', '\115', '\155', '\040', '\166', '\141', '\040',
'\061', '\012', '\144', '\120', '\142', '\040', '\144', '\145',
'\040', '\061', '\012', '\166', '\152', '\114', '\040', '\151',
'\152', '\040', '\061', '\012', '\167', '\113', '\143', '\040',
'\143', '\150', '\040', '\061', '\012', '\120', '\171', '\167',
'\040', '\167', '\141', '\040', '\061', '\012', '\145', '\130',
'\166', '\040', '\145', '\162', '\040', '\061', '\012', '\156',
'\126', '\167', '\040', '\141', '\156', '\040', '\061', '\012',
'\112', '\167', '\167', '\040', '\167', '\141', '\040', '\061',
'\012', '\104', '\146', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\164', '\103', '\143', '\040', '\164', '\150',
'\040', '\061', '\012', '\161', '\164', '\110', '\040', '\164',
'\150', '\040', '\061', '\012', '\130', '\161', '\155', '\040',
'\161', '\165', '\040', '\061', '\012', '\102', '\150', '\143',
'\040', '\164', '\150', '\040', '\061', '\012', '\164', '\143',
'\130', '\040', '\164', '\150', '\040', '\061', '\012', '\170',
'\113', '\160', '\040', '\160', '\162', '\040', '\061', '\012',
'\164', '\146', '\116', '\040', '\164', '\150', '\040', '\061',
'\012', '\151', '\142', '\132', '\040', '\151', '\156', '\040',
'\061', '\012', '\116', '\172', '\142', '\040', '\163', '\172',
'\040', '\061', '\012', '\127', '\156', '\152', '\040', '\141',
'\156', '\040', '\061', '\012', '\166', '\130', '\171', '\040',
'\166', '\141', '\040', '\061', '\012', '\151', '\126', '\146',
'\040', '\151', '\156', '\040', '\061', '\012', '\144', '\170',
'\124', '\040', '\144', '\145', '\040', '\061', '\012', '\152',
'\170', '\121', '\040', '\151', '\152', '\040', '\061', '\012',
'\104', '\144', '\166', '\040', '\144', '\145', '\040', '\061',
'\012', '\155', '\130', '\144', '\040', '\144', '\145', '\040',
'\061', '\012', '\146', '\125', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\167', '\147', '\121', '\040', '\156',
'\147', '\040', '\061', '\012', '\114', '\147', '\152', '\040',
'\156', '\147', '\040', '\061', '\012', '\155', '\147', '\131',
'\040', '\156', '\147', '\040', '\061', '\012', '\161', '\115',
'\167', '\040', '\161', '\165', '\040', '\061', '\012', '\147',
'\160', '\112', '\040', '\156', '\147', '\040', '\061', '\012',
'\163', '\132', '\170', '\040', '\163', '\164', '\040', '\061',
'\012', '\156', '\130', '\172', '\040', '\141', '\156', '\040',
'\061', '\012', '\127', '\166', '\145', '\040', '\145', '\162',
'\040', '\061', '\012', '\154', '\126', '\153', '\040', '\154',
'\145', '\040', '\061', '\012', '\167', '\103', '\142', '\040',
'\167', '\141', '\040', '\061', '\012', '\170', '\166', '\111',
'\040', '\166', '\141', '\040', '\061', '\012', '\155', '\146',
'\112', '\040', '\155', '\145', '\040', '\061', '\012', '\164',
'\121', '\161', '\040', '\164', '\150', '\040', '\061', '\012',
'\144', '\124', '\164', '\040', '\164', '\150', '\040', '\061',
'\012', '\146', '\161', '\153', '\040', '\161', '\165', '\040',
'\061', '\012', '\156', '\126', '\164', '\040', '\164', '\150',
'\040', '\061', '\012', '\167', '\111', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\121', '\166', '\160', '\040',
'\166', '\141', '\040', '\061', '\012', '\166', '\146', '\116',
'\040', '\166', '\141', '\040', '\061', '\012', '\147', '\121',
'\163', '\040', '\156', '\147', '\040', '\061', '\012', '\151',
'\126', '\160', '\040', '\151', '\156', '\040', '\061', '\012',
'\152', '\107', '\154', '\040', '\154', '\145', '\040', '\061',
'\012', '\170', '\115', '\146', '\040', '\146', '\157', '\040',
'\061', '\012', '\170', '\166', '\167', '\040', '\167', '\151',
'\040', '\061', '\012', '\172', '\111', '\154', '\040', '\154',
'\145', '\040', '\061', '\012', '\172', '\146', '\122', '\040',
'\163', '\172', '\040', '\061', '\012', '\172', '\127', '\166',
'\040', '\163', '\172', '\040', '\061', '\012', '\145', '\150',
'\126', '\040', '\164', '\150', '\040', '\061', '\012', '\144',
'\132', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\164', '\155', '\113', '\040', '\164', '\150', '\040', '\061',
'\012', '\143', '\114', '\164', '\040', '\164', '\150', '\040',
'\061', '\012', '\160', '\132', '\142', '\040', '\160', '\162',
'\040', '\061', '\012', '\166', '\156', '\112', '\040', '\141',
'\156', '\040', '\061', '\012', '\146', '\166', '\153', '\040',
'\153', '\141', '\040', '\061', '\012', '\130', '\150', '\166',
'\040', '\164', '\150', '\040', '\061', '\012', '\126', '\152',
'\156', '\040', '\141', '\156', '\040', '\061', '\012', '\164',
'\147', '\111', '\040', '\164', '\150', '\040', '\061', '\012',
'\170', '\141', '\112', '\040', '\141', '\156', '\040', '\061',
'\012', '\155', '\123', '\146', '\040', '\155', '\145', '\040',
'\061', '\012', '\130', '\172', '\155', '\040', '\163', '\172',
'\040', '\061', '\012', '\144', '\124', '\172', '\040', '\144',
'\145', '\040', '\061', '\012', '\170', '\130', '\155', '\040',
'\155', '\145', '\040', '\061', '\012', '\160', '\121', '\172',
'\040', '\163', '\172', '\040', '\061', '\012', '\103', '\161',
'\147', '\040', '\156', '\147', '\040', '\061', '\012', '\142',
'\123', '\163', '\040', '\163', '\164', '\040', '\061', '\012',
'\160', '\162', '\127', '\040', '\145', '\162', '\040', '\061',
'\012', '\150', '\104', '\142', '\040', '\164', '\150', '\040',
'\061', '\012', '\163', '\130', '\164', '\040', '\164', '\150',
'\040', '\061', '\012', '\153', '\143', '\104', '\040', '\143',
'\150', '\040', '\061', '\012', '\153', '\147', '\132', '\040',
'\156', '\147', '\040', '\061', '\012', '\124', '\172', '\164',
'\040', '\164', '\150', '\040', '\061', '\012', '\172', '\143',
'\122', '\040', '\143', '\150', '\040', '\061', '\012', '\130',
'\167', '\165', '\040', '\161', '\165', '\040', '\061', '\012',
'\153', '\130', '\147', '\040', '\156', '\147', '\040', '\061',
'\012', '\131', '\167', '\166', '\040', '\167', '\151', '\040',
'\061', '\012', '\162', '\160', '\113', '\040', '\145', '\162',
'\040', '\061', '\012', '\167', '\120', '\163', '\040', '\151',
'\163', '\040', '\061', '\012', '\113', '\152', '\172', '\040',
'\163', '\172', '\040', '\061', '\012', '\146', '\104', '\142',
'\040', '\142', '\145', '\040', '\061', '\012', '\152', '\162',
'\106', '\040', '\145', '\162', '\040', '\061', '\012', '\142',
'\142', '\121', '\040', '\142', '\145', '\040', '\061', '\012',
'\121', '\144', '\142', '\040', '\144', '\145', '\040', '\061',
'\012', '\162', '\113', '\164', '\040', '\164', '\150', '\040',
'\061', '\012', '\166', '\131', '\146', '\040', '\166', '\141',
'\040', '\061', '\012', '\166', '\170', '\101', '\040', '\166',
'\141', '\040', '\061', '\012', '\146', '\150', '\115', '\040',
'\164', '\150', '\040', '\061', '\012', '\152', '\163', '\125',
'\040', '\163', '\164', '\040', '\061', '\012', '\172', '\130',
'\153', '\040', '\163', '\172', '\040', '\061', '\012', '\165',
'\167', '\117', '\040', '\161', '\165', '\040', '\061', '\012',
'\152', '\163', '\122', '\040', '\163', '\164', '\040', '\061',
'\012', '\153', '\110', '\156', '\040', '\141', '\156', '\040',
'\061', '\012', '\170', '\127', '\166', '\040', '\166', '\141',
'\040', '\061', '\012', '\166', '\146', '\123', '\040', '\166',
'\141', '\040', '\061', '\012', '\160', '\111', '\166', '\040',
'\166', '\141', '\040', '\061', '\012', '\142', '\143', '\127',
'\040', '\143', '\150', '\040', '\061', '\012', '\172', '\144',
'\115', '\040', '\163', '\172', '\040', '\061', '\012', '\147',
'\103', '\172', '\040', '\156', '\147', '\040', '\061', '\012',
'\150', '\172', '\116', '\040', '\164', '\150', '\040', '\061',
'\012', '\142', '\121', '\167', '\040', '\167', '\141', '\040',
'\061', '\012', '\157', '\152', '\130', '\040', '\157', '\156',
'\040', '\061', '\012', '\126', '\161', '\166', '\040', '\161',
'\165', '\040', '\061', '\012', '\161', '\127', '\142', '\040',
'\161', '\165', '\040', '\061', '\012', '\131', '\153', '\142',
'\040', '\153', '\141', '\040', '\061', '\012', '\170', '\156',
'\112', '\040', '\141', '\156', '\040', '\061', '\012', '\163',
'\112', '\172', '\040', '\163', '\164', '\040', '\061', '\012',
'\150', '\122', '\162', '\040', '\164', '\150', '\040', '\061',
'\012', '\164', '\130', '\163', '\040', '\164', '\150', '\040',
'\061', '\012', '\121', '\145', '\142', '\040', '\145', '\162',
'\040', '\061', '\012', '\125', '\167', '\144', '\040', '\144',
'\145', '\040', '\061', '\012', '\156', '\131', '\147', '\040',
'\141', '\156', '\040', '\061', '\012', '\131', '\146', '\170',
'\040', '\146', '\157', '\040', '\061', '\012', '\170', '\162',
'\107', '\040', '\145', '\162', '\040', '\061', '\012', '\145',
'\132', '\162', '\040', '\154', '\145', '\040', '\061', '\012',
'\165', '\146', '\126', '\040', '\165', '\163', '\040', '\061',
'\012', '\162', '\130', '\155', '\040', '\145', '\162', '\040',
'\061', '\012', '\161', '\132', '\166', '\040', '\161', '\165',
'\040', '\061', '\012', '\166', '\121', '\172', '\040', '\163',
'\172', '\040', '\061', '\012', '\124', '\156', '\161', '\040',
'\141', '\156', '\040', '\061', '\012', '\122', '\155', '\152',
'\040', '\151', '\152', '\040', '\061', '\012', '\152', '\154',
'\115', '\040', '\154', '\145', '\040', '\061', '\012', '\143',
'\161', '\117', '\040', '\143', '\150', '\040', '\061', '\012',
'\170', '\127', '\146', '\040', '\146', '\157', '\040', '\061',
'\012', '\152', '\143', '\132', '\040', '\143', '\150', '\040',
'\061', '\012', '\152', '\146', '\126', '\040', '\151', '\152',
'\040', '\061', '\012', '\132', '\155', '\152', '\040', '\151',
'\152', '\040', '\061', '\012', '\142', '\170', '\115', '\040',
'\142', '\145', '\040', '\061', '\012', '\146', '\106', '\144',
'\040', '\144', '\145', '\040', '\061', '\012', '\147', '\152',
'\120', '\040', '\156', '\147', '\040', '\061', '\012', '\150',
'\115', '\163', '\040', '\164', '\150', '\040', '\061', '\012',
'\131', '\163', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\161', '\153', '\126', '\040', '\161', '\165', '\040',
'\061', '\012', '\113', '\155', '\143', '\040', '\143', '\150',
'\040', '\061', '\012', '\170', '\131', '\171', '\040', '\156',
'\171', '\040', '\061', '\012', '\144', '\166', '\130', '\040',
'\144', '\145', '\040', '\061', '\012', '\162', '\167', '\103',
'\040', '\145', '\162', '\040', '\061', '\012', '\147', '\167',
'\127', '\040', '\167', '\141', '\040', '\061', '\012', '\121',
'\160', '\171', '\040', '\160', '\162', '\040', '\061', '\012',
'\152', '\130', '\171', '\040', '\151', '\152', '\040', '\061',
'\012', '\161', '\117', '\152', '\040', '\161', '\165', '\040',
'\061', '\012', '\121', '\155', '\172', '\040', '\163', '\172',
'\040', '\061', '\012', '\105', '\161', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\172', '\112', '\163', '\040',
'\163', '\164', '\040', '\061', '\012', '\146', '\110', '\171',
'\040', '\156', '\171', '\040', '\061', '\012', '\150', '\104',
'\164', '\040', '\164', '\150', '\040', '\061', '\012', '\163',
'\104', '\150', '\040', '\164', '\150', '\040', '\061', '\012',
'\126', '\153', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\171', '\114', '\143', '\040', '\143', '\150', '\040',
'\061', '\012', '\166', '\110', '\155', '\040', '\166', '\141',
'\040', '\061', '\012', '\166', '\156', '\130', '\040', '\141',
'\156', '\040', '\061', '\012', '\152', '\170', '\123', '\040',
'\151', '\152', '\040', '\061', '\012', '\112', '\164', '\152',
'\040', '\164', '\150', '\040', '\061', '\012', '\161', '\147',
'\105', '\040', '\156', '\147', '\040', '\061', '\012', '\142',
'\160', '\110', '\040', '\160', '\162', '\040', '\061', '\012',
'\111', '\161', '\171', '\040', '\161', '\165', '\040', '\061',
'\012', '\161', '\115', '\156', '\040', '\141', '\156', '\040',
'\061', '\012', '\144', '\155', '\105', '\040', '\144', '\145',
'\040', '\061', '\012', '\110', '\146', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\160', '\123', '\142', '\040',
'\160', '\162', '\040', '\061', '\012', '\170', '\150', '\111',
'\040', '\164', '\150', '\040', '\061', '\012', '\121', '\152',
'\164', '\040', '\164', '\150', '\040', '\061', '\012', '\171',
'\146', '\130', '\040', '\156', '\171', '\040', '\061', '\012',
'\166', '\165', '\106', '\040', '\161', '\165', '\040', '\061',
'\012', '\167', '\106', '\167', '\040', '\167', '\141', '\040',
'\061', '\012', '\172', '\156', '\123', '\040', '\141', '\156',
'\040', '\061', '\012', '\172', '\154', '\126', '\040', '\154',
'\145', '\040', '\061', '\012', '\154', '\153', '\113', '\040',
'\154', '\145', '\040', '\061', '\012', '\106', '\166', '\172',
'\040', '\163', '\172', '\040', '\061', '\012', '\161', '\152',
'\124', '\040', '\161', '\165', '\040', '\061', '\012', '\172',
'\157', '\121', '\040', '\157', '\156', '\040', '\061', '\012',
'\127', '\166', '\170', '\040', '\166', '\141', '\040', '\061',
'\012', '\150', '\115', '\156', '\040', '\164', '\150', '\040',
'\061', '\012', '\144', '\115', '\167', '\040', '\144', '\145',
'\040', '\061', '\012', '\147', '\143', '\106', '\040', '\143',
'\150', '\040', '\061', '\012', '\144', '\142', '\102', '\040',
'\144', '\145', '\040', '\061', '\012', '\103', '\161', '\152',
'\040', '\161', '\165', '\040', '\061', '\012', '\155', '\103',
'\166', '\040', '\166', '\141', '\040', '\061', '\012', '\160',
'\112', '\170', '\040', '\160', '\162', '\040', '\061', '\012',
'\104', '\146', '\166', '\040', '\166', '\141', '\040', '\061',
'\012', '\163', '\152', '\114', '\040', '\163', '\164', '\040',
'\061', '\012', '\161', '\151', '\107', '\040', '\151', '\156',
'\040', '\061', '\012', '\132', '\154', '\163', '\040', '\154',
'\145', '\040', '\061', '\012', '\126', '\163', '\146', '\040',
'\163', '\164', '\040', '\061', '\012', '\106', '\147', '\144',
'\040', '\156', '\147', '\040', '\061', '\012', '\167', '\155',
'\104', '\040', '\155', '\145', '\040', '\061', '\012', '\104',
'\170', '\157', '\040', '\157', '\156', '\040', '\061', '\012',
'\161', '\162', '\153', '\040', '\161', '\165', '\040', '\061',
'\012', '\160', '\112', '\162', '\040', '\145', '\162', '\040',
'\061', '\012', '\143', '\114', '\170', '\040', '\143', '\150',
'\040', '\061', '\012', '\152', '\144', '\102', '\040', '\144',
'\145', '\040', '\061', '\012', '\171', '\142', '\115', '\040',
'\142', '\145', '\040', '\061', '\012', '\155', '\166', '\115',
'\040', '\166', '\141', '\040', '\061', '\012', '\152', '\164',
'\130', '\040', '\164', '\150', '\040', '\061', '\012', '\143',
'\156', '\102', '\040', '\141', '\156', '\040', '\061', '\012',
'\167', '\164', '\127', '\040', '\164', '\150', '\040', '\061',
'\012', '\113', '\163', '\144', '\040', '\163', '\164', '\040',
'\061', '\012', '\167', '\161', '\154', '\040', '\167', '\141',
'\040', '\061', '\012', '\155', '\150', '\125', '\040', '\164',
'\150', '\040', '\061', '\012', '\157', '\112', '\171', '\040',
'\157', '\156', '\040', '\061', '\012', '\107', '\150', '\160',
'\040', '\164', '\150', '\040', '\061', '\012', '\161', '\157',
'\130', '\040', '\161', '\165', '\040', '\061', '\012', '\170',
'\163', '\111', '\040', '\163', '\164', '\040', '\061', '\012',
'\166', '\106', '\163', '\040', '\163', '\164', '\040', '\061',
'\012', '\146', '\131', '\145', '\040', '\145', '\162', '\040',
'\061', '\012', '\154', '\156', '\126', '\040', '\141', '\156',
'\040', '\061', '\012', '\165', '\130', '\156', '\040', '\141',
'\156', '\040', '\061', '\012', '\105', '\157', '\150', '\040',
'\164', '\150', '\040', '\061', '\012', '\167', '\143', '\115',
'\040', '\167', '\141', '\040', '\061', '\012', '\152', '\167',
'\113', '\040', '\151', '\152', '\040', '\061', '\012', '\107',
'\153', '\145', '\040', '\145', '\162', '\040', '\061', '\012',
'\165', '\106', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\131', '\143', '\147', '\040', '\143', '\150', '\040',
'\061', '\012', '\170', '\161', '\171', '\040', '\161', '\165',
'\040', '\061', '\012', '\142', '\164', '\115', '\040', '\164',
'\150', '\040', '\061', '\012', '\152', '\110', '\167', '\040',
'\151', '\152', '\040', '\061', '\012', '\161', '\145', '\125',
'\040', '\161', '\165', '\040', '\061', '\012', '\121', '\152',
'\172', '\040', '\163', '\172', '\040', '\061', '\012', '\156',
'\165', '\121', '\040', '\141', '\156', '\040', '\061', '\012',
'\106', '\143', '\170', '\040', '\143', '\150', '\040', '\061',
'\012', '\113', '\161', '\164', '\040', '\164', '\150', '\040',
'\061', '\012', '\114', '\161', '\166', '\040', '\161', '\165',
'\040', '\061', '\012', '\155', '\167', '\125', '\040', '\155',
'\145', '\040', '\061', '\012', '\146', '\121', '\163', '\040',
'\163', '\164', '\040', '\061', '\012', '\153', '\123', '\144',
'\040', '\144', '\145', '\040', '\061', '\012', '\156', '\131',
'\166', '\040', '\141', '\156', '\040', '\061', '\012', '\167',
'\107', '\152', '\040', '\151', '\152', '\040', '\061', '\012',
'\147', '\166', '\132', '\040', '\156', '\147', '\040', '\061',
'\012', '\155', '\161', '\116', '\040', '\161', '\165', '\040',
'\061', '\012', '\106', '\150', '\160', '\040', '\164', '\150',
'\040', '\061', '\012', '\160', '\115', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\144', '\102', '\150', '\040',
'\143', '\150', '\040', '\061', '\012', '\142', '\130', '\153',
'\040', '\153', '\141', '\040', '\061', '\012', '\146', '\161',
'\113', '\040', '\161', '\165', '\040', '\061', '\012', '\131',
'\171', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\113', '\162', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\122', '\156', '\166', '\040', '\141', '\156', '\040',
'\061', '\012', '\165', '\165', '\105', '\040', '\161', '\165',
'\040', '\061', '\012', '\130', '\163', '\172', '\040', '\163',
'\164', '\040', '\061', '\012', '\146', '\113', '\142', '\040',
'\142', '\145', '\040', '\061', '\012', '\171', '\111', '\150',
'\040', '\164', '\150', '\040', '\061', '\012', '\116', '\143',
'\144', '\040', '\143', '\150', '\040', '\061', '\012', '\155',
'\114', '\162', '\040', '\145', '\162', '\040', '\061', '\012',
'\143', '\123', '\163', '\040', '\143', '\150', '\040', '\061',
'\012', '\154', '\142', '\105', '\040', '\154', '\145', '\040',
'\061', '\012', '\170', '\141', '\127', '\040', '\141', '\156',
'\040', '\061', '\012', '\122', '\164', '\144', '\040', '\164',
'\150', '\040', '\061', '\012', '\162', '\142', '\106', '\040',
'\145', '\162', '\040', '\061', '\012', '\166', '\147', '\122',
'\040', '\156', '\147', '\040', '\061', '\012', '\163', '\143',
'\132', '\040', '\143', '\150', '\040', '\061', '\012', '\162',
'\110', '\160', '\040', '\145', '\162', '\040', '\061', '\012',
'\145', '\131', '\167', '\040', '\145', '\162', '\040', '\061',
'\012', '\114', '\170', '\152', '\040', '\151', '\152', '\040',
'\061', '\012', '\161', '\122', '\147', '\040', '\156', '\147',
'\040', '\061', '\012', '\152', '\160', '\116', '\040', '\151',
'\152', '\040', '\061', '\012', '\162', '\152', '\127', '\040',
'\145', '\162', '\040', '\061', '\012', '\154', '\147', '\113',
'\040', '\156', '\147', '\040', '\061', '\012', '\155', '\103',
'\143', '\040', '\143', '\150', '\040', '\061', '\012', '\146',
'\107', '\165', '\040', '\161', '\165', '\040', '\061', '\012',
'\170', '\172', '\124', '\040', '\163', '\172', '\040', '\061',
'\012', '\167', '\121', '\167', '\040', '\167', '\141', '\040',
'\061', '\012', '\153', '\154', '\112', '\040', '\154', '\151',
'\040', '\061', '\012', '\143', '\161', '\153', '\040', '\143',
'\150', '\040', '\061', '\012', '\154', '\115', '\150', '\040',
'\164', '\150', '\040', '\061', '\012', '\160', '\131', '\163',
'\040', '\163', '\164', '\040', '\061', '\012', '\150', '\121',
'\153', '\040', '\164', '\150', '\040', '\061', '\012', '\110',
'\170', '\172', '\040', '\163', '\172', '\040', '\061', '\012',
'\146', '\145', '\131', '\040', '\145', '\162', '\040', '\061',
'\012', '\146', '\150', '\106', '\040', '\164', '\150', '\040',
'\061', '\012', '\146', '\102', '\155', '\040', '\155', '\145',
'\040', '\061', '\012', '\146', '\126', '\164', '\040', '\164',
'\150', '\040', '\061', '\012', '\172', '\146', '\150', '\040',
'\164', '\150', '\040', '\061', '\012', '\163', '\142', '\124',
'\040', '\163', '\164', '\040', '\061', '\012', '\144', '\121',
'\171', '\040', '\144', '\145', '\040', '\061', '\012', '\106',
'\155', '\143', '\040', '\143', '\150', '\040', '\061', '\012',
'\166', '\150', '\114', '\040', '\164', '\150', '\040', '\061',
'\012', '\112', '\164', '\142', '\040', '\164', '\150', '\040',
'\061', '\012', '\126', '\162', '\170', '\040', '\145', '\162',
'\040', '\061', '\012', '\171', '\161', '\132', '\040', '\161',
'\165', '\040', '\061', '\012', '\152', '\104', '\155', '\040',
'\151', '\152', '\040', '\061', '\012', '\155', '\146', '\126',
'\040', '\155', '\145', '\040', '\061', '\012', '\157', '\123',
'\170', '\040', '\157', '\156', '\040', '\061', '\012', '\112',
'\170', '\147', '\040', '\156', '\147', '\040', '\061', '\012',
'\167', '\117', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\144', '\112', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\126', '\166', '\143', '\040', '\143', '\150',
'\040', '\061', '\012', '\105', '\161', '\145', '\040', '\161',
'\165', '\040', '\061', '\012', '\152', '\161', '\117', '\040',
'\161', '\165', '\040', '\061', '\012', '\172', '\170', '\111',
'\040', '\163', '\172', '\040', '\061', '\012', '\161', '\113',
'\146', '\040', '\161', '\165', '\040', '\061', '\012', '\146',
'\144', '\127', '\040', '\144', '\145', '\040', '\061', '\012',
'\143', '\143', '\115', '\040', '\143', '\150', '\040', '\061',
'\012', '\147', '\143', '\127', '\040', '\143', '\150', '\040',
'\061', '\012', '\154', '\106', '\156', '\040', '\141', '\156',
'\040', '\061', '\012', '\122', '\166', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\172', '\156', '\116', '\040',
'\141', '\156', '\040', '\061', '\012', '\172', '\142', '\125',
'\040', '\163', '\172', '\040', '\061', '\012', '\164', '\116',
'\167', '\040', '\164', '\150', '\040', '\061', '\012', '\167',
'\152', '\113', '\040', '\151', '\152', '\040', '\061', '\012',
'\112', '\142', '\144', '\040', '\144', '\145', '\040', '\061',
'\012', '\102', '\146', '\143', '\040', '\143', '\150', '\040',
'\061', '\012', '\161', '\145', '\130', '\040', '\154', '\145',
'\040', '\061', '\012', '\164', '\130', '\153', '\040', '\164',
'\150', '\040', '\061', '\012', '\163', '\154', '\112', '\040',
'\154', '\145', '\040', '\061', '\012', '\143', '\113', '\144',
'\040', '\143', '\150', '\040', '\061', '\012', '\156', '\103',
'\146', '\040', '\141', '\156', '\040', '\061', '\012', '\161',
'\147', '\126', '\040', '\156', '\147', '\040', '\061', '\012',
'\115', '\150', '\170', '\040', '\164', '\150', '\040', '\061',
'\012', '\163', '\113', '\146', '\040', '\163', '\164', '\040',
'\061', '\012', '\150', '\161', '\132', '\040', '\164', '\150',
'\040', '\061', '\012', '\106', '\144', '\164', '\040', '\164',
'\150', '\040', '\061', '\012', '\161', '\172', '\112', '\040',
'\161', '\165', '\040', '\061', '\012', '\163', '\116', '\156',
'\040', '\141', '\156', '\040', '\061', '\012', '\164', '\152',
'\127', '\040', '\164', '\150', '\040', '\061', '\012', '\170',
'\143', '\116', '\040', '\143', '\150', '\040', '\061', '\012',
'\146', '\143', '\112', '\040', '\143', '\150', '\040', '\061',
'\012', '\144', '\152', '\125', '\040', '\144', '\145', '\040',
'\061', '\012', '\131', '\147', '\150', '\040', '\164', '\150',
'\040', '\061', '\012', '\167', '\157', '\111', '\040', '\157',
'\156', '\040', '\061', '\012', '\131', '\171', '\172', '\040',
'\163', '\172', '\040', '\061', '\012', '\153', '\121', '\143',
'\040', '\143', '\150', '\040', '\061', '\012', '\150', '\146',
'\121', '\040', '\164', '\150', '\040', '\061', '\012', '\156',
'\162', '\114', '\040', '\141', '\156', '\040', '\061', '\012',
'\154', '\121', '\163', '\040', '\154', '\145', '\040', '\061',
'\012', '\155', '\164', '\106', '\040', '\164', '\150', '\040',
'\061', '\012', '\167', '\142', '\130', '\040', '\167', '\141',
'\040', '\061', '\012', '\147', '\155', '\122', '\040', '\156',
'\147', '\040', '\061', '\012', '\132', '\163', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\171', '\164', '\121',
'\040', '\164', '\150', '\040', '\061', '\012', '\155', '\142',
'\106', '\040', '\155', '\145', '\040', '\061', '\012', '\146',
'\147', '\124', '\040', '\156', '\147', '\040', '\061', '\012',
'\143', '\127', '\165', '\040', '\143', '\150', '\040', '\061',
'\012', '\147', '\170', '\107', '\040', '\156', '\147', '\040',
'\061', '\012', '\150', '\116', '\166', '\040', '\164', '\150',
'\040', '\061', '\012', '\144', '\146', '\127', '\040', '\144',
'\145', '\040', '\061', '\012', '\172', '\162', '\103', '\040',
'\145', '\162', '\040', '\061', '\012', '\167', '\157', '\130',
'\040', '\157', '\156', '\040', '\061', '\012', '\167', '\152',
'\124', '\040', '\151', '\152', '\040', '\061', '\012', '\120',
'\161', '\167', '\040', '\161', '\165', '\040', '\061', '\012',
'\166', '\153', '\146', '\040', '\153', '\141', '\040', '\061',
'\012', '\156', '\114', '\172', '\040', '\141', '\156', '\040',
'\061', '\012', '\143', '\152', '\126', '\040', '\143', '\150',
'\040', '\061', '\012', '\146', '\143', '\120', '\040', '\143',
'\150', '\040', '\061', '\012', '\166', '\154', '\121', '\040',
'\154', '\145', '\040', '\061', '\012', '\106', '\147', '\161',
'\040', '\156', '\147', '\040', '\061', '\012', '\150', '\147',
'\120', '\040', '\164', '\150', '\040', '\061', '\012', '\107',
'\161', '\171', '\040', '\161', '\165', '\040', '\061', '\012',
'\164', '\113', '\163', '\040', '\164', '\150', '\040', '\061',
'\012', '\130', '\146', '\166', '\040', '\166', '\141', '\040',
'\061', '\012', '\171', '\132', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\171', '\151', '\132', '\040', '\151',
'\156', '\040', '\061', '\012', '\162', '\130', '\166', '\040',
'\145', '\162', '\040', '\061', '\012', '\131', '\143', '\171',
'\040', '\143', '\150', '\040', '\061', '\012', '\146', '\166',
'\101', '\040', '\166', '\141', '\040', '\061', '\012', '\124',
'\161', '\163', '\040', '\161', '\165', '\040', '\061', '\012',
'\150', '\132', '\171', '\040', '\164', '\150', '\040', '\061',
'\012', '\170', '\167', '\143', '\040', '\143', '\150', '\040',
'\061', '\012', '\161', '\126', '\146', '\040', '\161', '\165',
'\040', '\061', '\012', '\115', '\150', '\161', '\040', '\164',
'\150', '\040', '\061', '\012', '\172', '\123', '\152', '\040',
'\163', '\172', '\040', '\061', '\012', '\166', '\150', '\121',
'\040', '\164', '\150', '\040', '\061', '\012', '\164', '\172',
'\130', '\040', '\164', '\150', '\040', '\061', '\012', '\107',
'\166', '\155', '\040', '\166', '\141', '\040', '\061', '\012',
'\143', '\161', '\125', '\040', '\143', '\150', '\040', '\061',
'\012', '\110', '\150', '\160', '\040', '\164', '\150', '\040',
'\061', '\012', '\147', '\121', '\153', '\040', '\156', '\147',
'\040', '\061', '\012', '\160', '\167', '\114', '\040', '\160',
'\162', '\040', '\061', '\012', '\163', '\116', '\167', '\040',
'\163', '\164', '\040', '\061', '\012', '\161', '\105', '\164',
'\040', '\164', '\150', '\040', '\061', '\012', '\116', '\172',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\172',
'\163', '\104', '\040', '\163', '\164', '\040', '\061', '\012',
'\155', '\104', '\147', '\040', '\156', '\147', '\040', '\061',
'\012', '\122', '\164', '\161', '\040', '\164', '\150', '\040',
'\061', '\012', '\152', '\114', '\146', '\040', '\151', '\152',
'\040', '\061', '\012', '\167', '\124', '\160', '\040', '\160',
'\162', '\040', '\061', '\012', '\170', '\112', '\150', '\040',
'\164', '\150', '\040', '\061', '\012', '\126', '\161', '\157',
'\040', '\161', '\165', '\040', '\061', '\012', '\132', '\161',
'\153', '\040', '\161', '\165', '\040', '\061', '\012', '\161',
'\161', '\121', '\040', '\161', '\165', '\040', '\061', '\012',
'\150', '\162', '\131', '\040', '\164', '\150', '\040', '\061',
'\012', '\127', '\161', '\157', '\040', '\161', '\165', '\040',
'\061', '\012', '\155', '\111', '\171', '\040', '\155', '\145',
'\040', '\061', '\012', '\111', '\160', '\153', '\040', '\153',
'\141', '\040', '\061', '\012', '\170', '\152', '\103', '\040',
'\151', '\152', '\040', '\061', '\012', '\154', '\114', '\160',
'\040', '\154', '\145', '\040', '\061', '\012', '\150', '\161',
'\106', '\040', '\164', '\150', '\040', '\061', '\012', '\143',
'\127', '\147', '\040', '\143', '\150', '\040', '\061', '\012',
'\161', '\131', '\143', '\040', '\161', '\165', '\040', '\061',
'\012', '\143', '\152', '\125', '\040', '\143', '\150', '\040',
'\061', '\012', '\161', '\130', '\153', '\040', '\161', '\165',
'\040', '\061', '\012', '\150', '\161', '\114', '\040', '\164',
'\150', '\040', '\061', '\012', '\172', '\170', '\124', '\040',
'\163', '\172', '\040', '\061', '\012', '\144', '\156', '\130',
'\040', '\141', '\156', '\040', '\061', '\012', '\172', '\102',
'\164', '\040', '\164', '\150', '\040', '\061', '\012', '\121',
'\154', '\163', '\040', '\154', '\145', '\040', '\061', '\012',
'\153', '\150', '\103', '\040', '\164', '\150', '\040', '\061',
'\012', '\165', '\161', '\130', '\040', '\161', '\165', '\040',
'\061', '\012', '\132', '\142', '\146', '\040', '\142', '\145',
'\040', '\061', '\012', '\151', '\104', '\170', '\040', '\154',
'\151', '\040', '\061', '\012', '\132', '\156', '\160', '\040',
'\141', '\156', '\040', '\061', '\012', '\112', '\170', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\152', '\161',
'\131', '\040', '\161', '\165', '\040', '\061', '\012', '\166',
'\142', '\125', '\040', '\166', '\141', '\040', '\061', '\012',
'\161', '\122', '\162', '\040', '\161', '\165', '\040', '\061',
'\012', '\161', '\160', '\152', '\040', '\161', '\165', '\040',
'\061', '\012', '\167', '\154', '\107', '\040', '\154', '\145',
'\040', '\061', '\012', '\127', '\147', '\170', '\040', '\156',
'\147', '\040', '\061', '\012', '\126', '\170', '\152', '\040',
'\151', '\152', '\040', '\061', '\012', '\172', '\123', '\167',
'\040', '\163', '\172', '\040', '\061', '\012', '\151', '\150',
'\127', '\040', '\164', '\150', '\040', '\061', '\012', '\153',
'\172', '\124', '\040', '\163', '\172', '\040', '\061', '\012',
'\141', '\145', '\132', '\040', '\141', '\156', '\040', '\061',
'\012', '\150', '\113', '\152', '\040', '\164', '\150', '\040',
'\061', '\012', '\164', '\127', '\163', '\040', '\164', '\150',
'\040', '\061', '\012', '\147', '\114', '\143', '\040', '\143',
'\150', '\040', '\061', '\012', '\147', '\160', '\113', '\040',
'\156', '\147', '\040', '\061', '\012', '\171', '\112', '\172',
'\040', '\163', '\172', '\040', '\061', '\012', '\107', '\166',
'\164', '\040', '\164', '\150', '\040', '\061', '\012', '\146',
'\105', '\157', '\040', '\157', '\156', '\040', '\061', '\012',
'\163', '\113', '\144', '\040', '\163', '\164', '\040', '\061',
'\012', '\170', '\150', '\116', '\040', '\164', '\150', '\040',
'\061', '\012', '\141', '\115', '\161', '\040', '\141', '\156',
'\040', '\061', '\012', '\145', '\150', '\130', '\040', '\164',
'\150', '\040', '\061', '\012', '\153', '\146', '\132', '\040',
'\153', '\165', '\040', '\061', '\012', '\127', '\167', '\143',
'\040', '\143', '\150', '\040', '\061', '\012', '\131', '\155',
'\172', '\040', '\163', '\172', '\040', '\061', '\012', '\126',
'\153', '\144', '\040', '\144', '\145', '\040', '\061', '\012',
'\142', '\172', '\104', '\040', '\163', '\172', '\040', '\061',
'\012', '\130', '\153', '\147', '\040', '\156', '\147', '\040',
'\061', '\012', '\126', '\172', '\172', '\040', '\163', '\172',
'\040', '\061', '\012', '\170', '\166', '\126', '\040', '\166',
'\141', '\040', '\061', '\012', '\160', '\110', '\150', '\040',
'\164', '\150', '\040', '\061', '\012', '\162', '\113', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\166', '\155',
'\115', '\040', '\166', '\141', '\040', '\061', '\012', '\121',
'\170', '\152', '\040', '\151', '\152', '\040', '\061', '\012',
'\172', '\116', '\162', '\040', '\145', '\162', '\040', '\061',
'\012', '\142', '\161', '\102', '\040', '\161', '\165', '\040',
'\061', '\012', '\112', '\161', '\167', '\040', '\161', '\165',
'\040', '\061', '\012', '\172', '\161', '\102', '\040', '\161',
'\165', '\040', '\061', '\012', '\130', '\166', '\155', '\040',
'\166', '\141', '\040', '\061', '\012', '\154', '\102', '\146',
'\040', '\154', '\145', '\040', '\061', '\012', '\161', '\161',
'\102', '\040', '\161', '\165', '\040', '\061', '\012', '\147',
'\103', '\163', '\040', '\156', '\147', '\040', '\061', '\012',
'\162', '\122', '\147', '\040', '\156', '\147', '\040', '\061',
'\012', '\122', '\156', '\155', '\040', '\141', '\156', '\040',
'\061', '\012', '\114', '\172', '\167', '\040', '\163', '\172',
'\040', '\061', '\012', '\151', '\167', '\116', '\040', '\151',
'\156', '\040', '\061', '\012', '\160', '\146', '\116', '\040',
'\160', '\162', '\040', '\061', '\012', '\150', '\103', '\167',
'\040', '\167', '\141', '\040', '\061', '\012', '\165', '\110',
'\172', '\040', '\161', '\165', '\040', '\061', '\012', '\143',
'\114', '\143', '\040', '\143', '\150', '\040', '\061', '\012',
'\154', '\167', '\104', '\040', '\154', '\145', '\040', '\061',
'\012', '\161', '\152', '\102', '\040', '\161', '\165', '\040',
'\061', '\012', '\117', '\152', '\171', '\040', '\151', '\152',
'\040', '\061', '\012', '\144', '\155', '\126', '\040', '\144',
'\151', '\040', '\061', '\012', '\143', '\103', '\167', '\040',
'\143', '\150', '\040', '\061', '\012', '\154', '\130', '\163',
'\040', '\154', '\145', '\040', '\061', '\012', '\163', '\155',
'\122', '\040', '\163', '\164', '\040', '\061', '\012', '\155',
'\170', '\117', '\040', '\155', '\145', '\040', '\061', '\012',
'\112', '\162', '\164', '\040', '\164', '\150', '\040', '\061',
'\012', '\172', '\152', '\116', '\040', '\163', '\172', '\040',
'\061', '\012', '\142', '\102', '\156', '\040', '\141', '\156',
'\040', '\061', '\012', '\143', '\170', '\121', '\040', '\143',
'\150', '\040', '\061', '\012', '\113', '\144', '\160', '\040',
'\144', '\145', '\040', '\061', '\012', '\104', '\154', '\142',
'\040', '\154', '\145', '\040', '\061', '\012', '\160', '\161',
'\104', '\040', '\161', '\165', '\040', '\061', '\012', '\161',
'\161', '\103', '\040', '\161', '\165', '\040', '\061', '\012',
'\123', '\160', '\172', '\040', '\163', '\172', '\040', '\061',
'\012', '\164', '\103', '\144', '\040', '\164', '\150', '\040',
'\061', '\012', '\147', '\146', '\120', '\040', '\156', '\147',
'\040', '\061', '\012', '\165', '\107', '\152', '\040', '\161',
'\165', '\040', '\061', '\012', '\170', '\142', '\105', '\040',
'\142', '\145', '\040', '\061', '\012', '\130', '\160', '\166',
'\040', '\166', '\141', '\040', '\061', '\012', '\130', '\172',
'\164', '\040', '\164', '\150', '\040', '\061', '\012', '\147',
'\161', '\107', '\040', '\161', '\165', '\040', '\061', '\012',
'\153', '\161', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\113', '\166', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\161', '\127', '\151', '\040', '\161', '\165',
'\040', '\061', '\012', '\155', '\170', '\132', '\040', '\155',
'\145', '\040', '\061', '\012', '\161', '\157', '\131', '\040',
'\161', '\165', '\040', '\061', '\012', '\123', '\147', '\146',
'\040', '\156', '\147', '\040', '\061', '\012', '\143', '\122',
'\166', '\040', '\143', '\150', '\040', '\061', '\012', '\127',
'\147', '\151', '\040', '\156', '\147', '\040', '\061', '\012',
'\145', '\104', '\170', '\040', '\145', '\162', '\040', '\061',
'\012', '\143', '\127', '\167', '\040', '\143', '\150', '\040',
'\061', '\012', '\166', '\106', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\113', '\170', '\166', '\040', '\166',
'\141', '\040', '\061', '\012', '\151', '\127', '\160', '\040',
'\151', '\156', '\040', '\061', '\012', '\146', '\122', '\170',
'\040', '\146', '\157', '\040', '\061', '\012', '\167', '\164',
'\102', '\040', '\164', '\150', '\040', '\061', '\012', '\163',
'\167', '\127', '\040', '\163', '\164', '\040', '\061', '\012',
'\147', '\162', '\113', '\040', '\156', '\147', '\040', '\061',
'\012', '\110', '\146', '\145', '\040', '\145', '\162', '\040',
'\061', '\012', '\147', '\146', '\132', '\040', '\156', '\147',
'\040', '\061', '\012', '\170', '\161', '\130', '\040', '\161',
'\165', '\040', '\061', '\012', '\157', '\113', '\152', '\040',
'\157', '\156', '\040', '\061', '\012', '\166', '\146', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\160', '\127',
'\167', '\040', '\160', '\162', '\040', '\061', '\012', '\165',
'\127', '\143', '\040', '\143', '\150', '\040', '\061', '\012',
'\154', '\103', '\147', '\040', '\156', '\147', '\040', '\061',
'\012', '\161', '\153', '\147', '\040', '\161', '\165', '\040',
'\061', '\012', '\143', '\104', '\150', '\040', '\164', '\150',
'\040', '\061', '\012', '\123', '\146', '\172', '\040', '\163',
'\172', '\040', '\061', '\012', '\165', '\131', '\170', '\040',
'\161', '\165', '\040', '\061', '\012', '\170', '\166', '\122',
'\040', '\166', '\141', '\040', '\061', '\012', '\145', '\101',
'\157', '\040', '\145', '\162', '\040', '\061', '\012', '\160',
'\131', '\147', '\040', '\156', '\147', '\040', '\061', '\012',
'\144', '\122', '\170', '\040', '\144', '\145', '\040', '\061',
'\012', '\151', '\127', '\144', '\040', '\151', '\156', '\040',
'\061', '\012', '\147', '\107', '\170', '\040', '\156', '\147',
'\040', '\061', '\012', '\142', '\130', '\172', '\040', '\163',
'\172', '\040', '\061', '\012', '\153', '\143', '\120', '\040',
'\143', '\150', '\040', '\061', '\012', '\150', '\143', '\112',
'\040', '\164', '\150', '\040', '\061', '\012', '\154', '\103',
'\146', '\040', '\154', '\145', '\040', '\061', '\012', '\147',
'\155', '\127', '\040', '\156', '\147', '\040', '\061', '\012',
'\110', '\153', '\146', '\040', '\153', '\141', '\040', '\061',
'\012', '\162', '\150', '\114', '\040', '\164', '\150', '\040',
'\061', '\012', '\152', '\161', '\120', '\040', '\161', '\165',
'\040', '\061', '\012', '\162', '\121', '\160', '\040', '\145',
'\162', '\040', '\061', '\012', '\166', '\103', '\156', '\040',
'\141', '\156', '\040', '\061', '\012', '\144', '\127', '\152',
'\040', '\144', '\145', '\040', '\061', '\012', '\110', '\162',
'\170', '\040', '\145', '\162', '\040', '\061', '\012', '\163',
'\124', '\172', '\040', '\163', '\164', '\040', '\061', '\012',
'\141', '\126', '\164', '\040', '\164', '\150', '\040', '\061',
'\012', '\161', '\167', '\113', '\040', '\161', '\165', '\040',
'\061', '\012', '\166', '\166', '\105', '\040', '\166', '\141',
'\040', '\061', '\012', '\167', '\113', '\160', '\040', '\160',
'\162', '\040', '\061', '\012', '\170', '\143', '\131', '\040',
'\143', '\150', '\040', '\061', '\012', '\166', '\160', '\115',
'\040', '\166', '\141', '\040', '\061', '\012', '\152', '\154',
'\103', '\040', '\154', '\145', '\040', '\061', '\012', '\144',
'\154', '\107', '\040', '\154', '\145', '\040', '\061', '\012',
'\157', '\124', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\151', '\114', '\160', '\040', '\151', '\156', '\040',
'\061', '\012', '\170', '\163', '\114', '\040', '\163', '\164',
'\040', '\061', '\012', '\154', '\106', '\172', '\040', '\154',
'\145', '\040', '\061', '\012', '\166', '\150', '\103', '\040',
'\164', '\150', '\040', '\061', '\012', '\171', '\154', '\130',
'\040', '\154', '\145', '\040', '\061', '\012', '\160', '\155',
'\117', '\040', '\155', '\145', '\040', '\061', '\012', '\131',
'\143', '\143', '\040', '\143', '\150', '\040', '\061', '\012',
'\131', '\156', '\160', '\040', '\141', '\156', '\040', '\061',
'\012', '\131', '\142', '\155', '\040', '\155', '\145', '\040',
'\061', '\012', '\121', '\154', '\156', '\040', '\141', '\156',
'\040', '\061', '\012', '\142', '\170', '\101', '\040', '\142',
'\145', '\040', '\061', '\012', '\164', '\106', '\163', '\040',
'\164', '\150', '\040', '\061', '\012', '\114', '\161', '\167',
'\040', '\161', '\165', '\040', '\061', '\012', '\172', '\143',
'\125', '\040', '\143', '\150', '\040', '\061', '\012', '\166',
'\146', '\113', '\040', '\166', '\141', '\040', '\061', '\012',
'\166', '\160', '\121', '\040', '\166', '\141', '\040', '\061',
'\012', '\104', '\164', '\146', '\040', '\164', '\150', '\040',
'\061', '\012', '\142', '\124', '\152', '\040', '\151', '\152',
'\040', '\061', '\012', '\126', '\166', '\167', '\040', '\166',
'\141', '\040', '\061', '\012', '\121', '\142', '\170', '\040',
'\142', '\145', '\040', '\061', '\012', '\172', '\127', '\153',
'\040', '\163', '\172', '\040', '\061', '\012', '\142', '\123',
'\170', '\040', '\142', '\145', '\040', '\061', '\012', '\172',
'\160', '\113', '\040', '\163', '\172', '\040', '\061', '\012',
'\167', '\124', '\142', '\040', '\167', '\141', '\040', '\061',
'\012', '\155', '\153', '\103', '\040', '\153', '\141', '\040',
'\061', '\012', '\143', '\122', '\150', '\040', '\164', '\150',
'\040', '\061', '\012', '\156', '\102', '\153', '\040', '\141',
'\156', '\040', '\061', '\012', '\170', '\107', '\166', '\040',
'\166', '\141', '\040', '\061', '\012', '\150', '\156', '\121',
'\040', '\164', '\150', '\040', '\061', '\012', '\141', '\161',
'\121', '\040', '\141', '\156', '\040', '\061', '\012', '\172',
'\150', '\132', '\040', '\164', '\150', '\040', '\061', '\012',
'\172', '\167', '\120', '\040', '\163', '\172', '\040', '\061',
'\012', '\166', '\161', '\114', '\040', '\161', '\165', '\040',
'\061', '\012', '\163', '\143', '\125', '\040', '\143', '\150',
'\040', '\061', '\012', '\147', '\154', '\123', '\040', '\156',
'\147', '\040', '\061', '\012', '\160', '\152', '\105', '\040',
'\151', '\152', '\040', '\061', '\012', '\161', '\161', '\104',
'\040', '\161', '\165', '\040', '\061', '\012', '\154', '\122',
'\170', '\040', '\154', '\145', '\040', '\061', '\012', '\161',
'\126', '\162', '\040', '\161', '\165', '\040', '\061', '\012',
'\130', '\165', '\150', '\040', '\164', '\150', '\040', '\061',
'\012', '\142', '\162', '\102', '\040', '\145', '\162', '\040',
'\061', '\012', '\121', '\171', '\143', '\040', '\143', '\150',
'\040', '\061', '\012', '\123', '\147', '\170', '\040', '\156',
'\147', '\040', '\061', '\012', '\144', '\161', '\153', '\040',
'\161', '\165', '\040', '\061', '\012', '\142', '\131', '\152',
'\040', '\151', '\152', '\040', '\061', '\012', '\155', '\120',
'\170', '\040', '\155', '\145', '\040', '\061', '\012', '\106',
'\144', '\166', '\040', '\144', '\145', '\040', '\061', '\012',
'\130', '\155', '\144', '\040', '\144', '\145', '\040', '\061',
'\012', '\143', '\120', '\152', '\040', '\143', '\150', '\040',
'\061', '\012', '\120', '\161', '\147', '\040', '\161', '\165',
'\040', '\061', '\012', '\166', '\131', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\142', '\112', '\170', '\040',
'\142', '\145', '\040', '\061', '\012', '\144', '\121', '\164',
'\040', '\164', '\150', '\040', '\061', '\012', '\146', '\170',
'\152', '\040', '\151', '\152', '\040', '\061', '\012', '\110',
'\167', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\166', '\147', '\103', '\040', '\156', '\147', '\040', '\061',
'\012', '\153', '\152', '\113', '\040', '\151', '\152', '\040',
'\061', '\012', '\156', '\162', '\103', '\040', '\141', '\156',
'\040', '\061', '\012', '\166', '\161', '\130', '\040', '\161',
'\165', '\040', '\061', '\012', '\102', '\147', '\153', '\040',
'\156', '\147', '\040', '\061', '\012', '\103', '\142', '\166',
'\040', '\166', '\141', '\040', '\061', '\012', '\125', '\167',
'\167', '\040', '\167', '\141', '\040', '\061', '\012', '\167',
'\143', '\112', '\040', '\143', '\150', '\040', '\061', '\012',
'\147', '\102', '\146', '\040', '\156', '\147', '\040', '\061',
'\012', '\172', '\124', '\166', '\040', '\166', '\141', '\040',
'\061', '\012', '\172', '\167', '\130', '\040', '\163', '\172',
'\040', '\061', '\012', '\154', '\127', '\147', '\040', '\154',
'\145', '\040', '\061', '\012', '\161', '\117', '\163', '\040',
'\161', '\165', '\040', '\061', '\012', '\146', '\142', '\102',
'\040', '\142', '\145', '\040', '\061', '\012', '\170', '\161',
'\107', '\040', '\161', '\165', '\040', '\061', '\012', '\152',
'\121', '\152', '\040', '\151', '\152', '\040', '\061', '\012',
'\166', '\157', '\121', '\040', '\157', '\156', '\040', '\061',
'\012', '\171', '\152', '\127', '\040', '\151', '\152', '\040',
'\061', '\012', '\161', '\166', '\117', '\040', '\161', '\165',
'\040', '\061', '\012', '\170', '\142', '\106', '\040', '\142',
'\145', '\040', '\061', '\012', '\156', '\127', '\165', '\040',
'\141', '\156', '\040', '\061', '\012', '\171', '\152', '\121',
'\040', '\151', '\152', '\040', '\061', '\012', '\143', '\152',
'\113', '\040', '\143', '\150', '\040', '\061', '\012', '\123',
'\170', '\156', '\040', '\141', '\156', '\040', '\061', '\012',
'\171', '\142', '\130', '\040', '\142', '\145', '\040', '\061',
'\012', '\145', '\131', '\147', '\040', '\156', '\147', '\040',
'\061', '\012', '\102', '\155', '\156', '\040', '\141', '\156',
'\040', '\061', '\012', '\146', '\104', '\164', '\040', '\164',
'\150', '\040', '\061', '\012', '\152', '\130', '\155', '\040',
'\151', '\152', '\040', '\061', '\012', '\156', '\115', '\164',
'\040', '\164', '\150', '\040', '\061', '\012', '\123', '\170',
'\142', '\040', '\142', '\145', '\040', '\061', '\012', '\154',
'\110', '\155', '\040', '\154', '\145', '\040', '\061', '\012',
'\147', '\146', '\131', '\040', '\156', '\147', '\040', '\061',
'\012', '\156', '\167', '\107', '\040', '\141', '\156', '\040',
'\061', '\012', '\147', '\110', '\154', '\040', '\156', '\147',
'\040', '\061', '\012', '\127', '\160', '\155', '\040', '\155',
'\145', '\040', '\061', '\012', '\167', '\106', '\152', '\040',
'\151', '\152', '\040', '\061', '\012', '\150', '\107', '\155',
'\040', '\164', '\150', '\040', '\061', '\012', '\167', '\167',
'\103', '\040', '\167', '\141', '\040', '\061', '\012', '\115',
'\154', '\146', '\040', '\154', '\145', '\040', '\061', '\012',
'\143', '\112', '\142', '\040', '\143', '\150', '\040', '\061',
'\012', '\142', '\156', '\103', '\040', '\141', '\156', '\040',
'\061', '\012', '\106', '\166', '\160', '\040', '\166', '\141',
'\040', '\061', '\012', '\164', '\107', '\143', '\040', '\164',
'\150', '\040', '\061', '\012', '\146', '\150', '\132', '\040',
'\164', '\150', '\040', '\061', '\012', '\126', '\153', '\150',
'\040', '\164', '\150', '\040', '\061', '\012', '\152', '\167',
'\147', '\040', '\156', '\147', '\040', '\061', '\012', '\170',
'\142', '\113', '\040', '\142', '\145', '\040', '\061', '\012',
'\172', '\126', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\161', '\124', '\172', '\040', '\161', '\165', '\040',
'\061', '\012', '\166', '\162', '\104', '\040', '\145', '\162',
'\040', '\061', '\012', '\146', '\122', '\164', '\040', '\164',
'\150', '\040', '\061', '\012', '\146', '\106', '\163', '\040',
'\163', '\164', '\040', '\061', '\012', '\150', '\127', '\147',
'\040', '\164', '\150', '\040', '\061', '\012', '\154', '\172',
'\105', '\040', '\154', '\145', '\040', '\061', '\012', '\154',
'\167', '\130', '\040', '\154', '\145', '\040', '\061', '\012',
'\152', '\110', '\171', '\040', '\151', '\152', '\040', '\061',
'\012', '\121', '\161', '\164', '\040', '\164', '\150', '\040',
'\061', '\012', '\104', '\161', '\151', '\040', '\151', '\156',
'\040', '\061', '\012', '\124', '\166', '\152', '\040', '\151',
'\152', '\040', '\061', '\012', '\147', '\120', '\142', '\040',
'\156', '\147', '\040', '\061', '\012', '\144', '\120', '\172',
'\040', '\163', '\172', '\040', '\061', '\012', '\172', '\144',
'\124', '\040', '\163', '\172', '\040', '\061', '\012', '\155',
'\166', '\101', '\040', '\166', '\141', '\040', '\061', '\012',
'\132', '\166', '\150', '\040', '\164', '\150', '\040', '\061',
'\012', '\161', '\141', '\125', '\040', '\141', '\156', '\040',
'\061', '\012', '\146', '\167', '\121', '\040', '\167', '\141',
'\040', '\061', '\012', '\122', '\163', '\167', '\040', '\163',
'\164', '\040', '\061', '\012', '\153', '\154', '\102', '\040',
'\154', '\145', '\040', '\061', '\012', '\166', '\154', '\116',
'\040', '\154', '\145', '\040', '\061', '\012', '\107', '\166',
'\170', '\040', '\166', '\141', '\040', '\061', '\012', '\160',
'\144', '\112', '\040', '\144', '\145', '\040', '\061', '\012',
'\154', '\143', '\102', '\040', '\143', '\150', '\040', '\061',
'\012', '\166', '\124', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\171', '\150', '\126', '\040', '\164', '\150',
'\040', '\061', '\012', '\152', '\114', '\166', '\040', '\151',
'\152', '\040', '\061', '\012', '\160', '\172', '\122', '\040',
'\163', '\172', '\040', '\061', '\012', '\130', '\171', '\167',
'\040', '\167', '\141', '\040', '\061', '\012', '\130', '\154',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\122',
'\161', '\167', '\040', '\167', '\141', '\040', '\061', '\012',
'\172', '\150', '\120', '\040', '\164', '\150', '\040', '\061',
'\012', '\163', '\147', '\124', '\040', '\156', '\147', '\040',
'\061', '\012', '\147', '\160', '\107', '\040', '\156', '\147',
'\040', '\061', '\012', '\164', '\153', '\131', '\040', '\164',
'\150', '\040', '\061', '\012', '\144', '\161', '\105', '\040',
'\161', '\165', '\040', '\061', '\012', '\121', '\143', '\147',
'\040', '\143', '\150', '\040', '\061', '\012', '\142', '\146',
'\102', '\040', '\142', '\145', '\040', '\061', '\012', '\127',
'\160', '\166', '\040', '\166', '\141', '\040', '\061', '\012',
'\127', '\170', '\154', '\040', '\154', '\145', '\040', '\061',
'\012', '\130', '\142', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\171', '\106', '\150', '\040', '\164', '\150',
'\040', '\061', '\012', '\122', '\146', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\150', '\150', '\114', '\040',
'\164', '\150', '\040', '\061', '\012', '\152', '\170', '\172',
'\040', '\163', '\172', '\040', '\061', '\012', '\142', '\113',
'\150', '\040', '\164', '\150', '\040', '\061', '\012', '\160',
'\164', '\125', '\040', '\164', '\150', '\040', '\061', '\012',
'\143', '\130', '\145', '\040', '\143', '\150', '\040', '\061',
'\012', '\172', '\130', '\155', '\040', '\163', '\172', '\040',
'\061', '\012', '\107', '\150', '\167', '\040', '\164', '\150',
'\040', '\061', '\012', '\144', '\172', '\131', '\040', '\163',
'\172', '\040', '\061', '\012', '\144', '\130', '\156', '\040',
'\141', '\156', '\040', '\061', '\012', '\153', '\170', '\127',
'\040', '\153', '\141', '\040', '\061', '\012', '\166', '\126',
'\162', '\040', '\145', '\162', '\040', '\061', '\012', '\112',
'\170', '\165', '\040', '\165', '\156', '\040', '\061', '\012',
'\142', '\142', '\130', '\040', '\142', '\145', '\040', '\061',
'\012', '\162', '\120', '\142', '\040', '\145', '\162', '\040',
'\061', '\012', '\161', '\103', '\155', '\040', '\161', '\165',
'\040', '\061', '\012', '\161', '\151', '\112', '\040', '\161',
'\165', '\040', '\061', '\012', '\130', '\147', '\167', '\040',
'\156', '\147', '\040', '\061', '\012', '\116', '\150', '\161',
'\040', '\164', '\150', '\040', '\061', '\012', '\143', '\107',
'\160', '\040', '\160', '\157', '\040', '\061', '\012', '\150',
'\120', '\167', '\040', '\164', '\150', '\040', '\061', '\012',
'\142', '\124', '\172', '\040', '\163', '\172', '\040', '\061',
'\012', '\161', '\111', '\147', '\040', '\156', '\147', '\040',
'\061', '\012', '\160', '\112', '\150', '\040', '\164', '\150',
'\040', '\061', '\012', '\167', '\143', '\105', '\040', '\143',
'\150', '\040', '\061', '\012', '\155', '\103', '\142', '\040',
'\155', '\145', '\040', '\061', '\012', '\142', '\112', '\143',
'\040', '\143', '\150', '\040', '\061', '\012', '\156', '\172',
'\121', '\040', '\141', '\156', '\040', '\061', '\012', '\171',
'\161', '\122', '\040', '\161', '\165', '\040', '\061', '\012',
'\170', '\110', '\167', '\040', '\167', '\141', '\040', '\061',
'\012', '\142', '\167', '\110', '\040', '\167', '\141', '\040',
'\061', '\012', '\161', '\103', '\162', '\040', '\161', '\165',
'\040', '\061', '\012', '\125', '\161', '\145', '\040', '\161',
'\165', '\040', '\061', '\012', '\161', '\170', '\115', '\040',
'\161', '\165', '\040', '\061', '\012', '\146', '\160', '\117',
'\040', '\160', '\162', '\040', '\061', '\012', '\153', '\143',
'\116', '\040', '\143', '\150', '\040', '\061', '\012', '\171',
'\153', '\126', '\040', '\153', '\141', '\040', '\061', '\012',
'\155', '\121', '\142', '\040', '\155', '\145', '\040', '\061',
'\012', '\131', '\161', '\163', '\040', '\161', '\165', '\040',
'\061', '\012', '\171', '\126', '\153', '\040', '\153', '\141',
'\040', '\061', '\012', '\166', '\142', '\130', '\040', '\166',
'\141', '\040', '\061', '\012', '\155', '\124', '\144', '\040',
'\144', '\145', '\040', '\061', '\012', '\152', '\130', '\157',
'\040', '\157', '\156', '\040', '\061', '\012', '\167', '\161',
'\112', '\040', '\161', '\165', '\040', '\061', '\012', '\153',
'\113', '\164', '\040', '\164', '\150', '\040', '\061', '\012',
'\146', '\153', '\123', '\040', '\153', '\141', '\040', '\061',
'\012', '\127', '\166', '\172', '\040', '\163', '\172', '\040',
'\061', '\012', '\111', '\171', '\166', '\040', '\166', '\141',
'\040', '\061', '\012', '\150', '\107', '\153', '\040', '\164',
'\150', '\040', '\061', '\012', '\106', '\172', '\145', '\040',
'\145', '\162', '\040', '\061', '\012', '\142', '\150', '\115',
'\040', '\164', '\150', '\040', '\061', '\012', '\161', '\166',
'\111', '\040', '\161', '\165', '\040', '\061', '\012', '\156',
'\130', '\161', '\040', '\141', '\156', '\040', '\061', '\012',
'\156', '\130', '\143', '\040', '\141', '\156', '\040', '\061',
'\012', '\153', '\112', '\164', '\040', '\164', '\150', '\040',
'\061', '\012', '\116', '\161', '\143', '\040', '\143', '\150',
'\040', '\061', '\012', '\131', '\152', '\143', '\040', '\143',
'\150', '\040', '\061', '\012', '\106', '\150', '\142', '\040',
'\164', '\150', '\040', '\061', '\012', '\152', '\171', '\113',
'\040', '\151', '\152', '\040', '\061', '\012', '\112', '\172',
'\152', '\040', '\163', '\172', '\040', '\061', '\012', '\171',
'\161', '\143', '\040', '\143', '\150', '\040', '\061', '\012',
'\167', '\155', '\132', '\040', '\155', '\145', '\040', '\061',
'\012', '\172', '\142', '\106', '\040', '\163', '\172', '\040',
'\061', '\012', '\163', '\160', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\147', '\120', '\156', '\040', '\141',
'\156', '\040', '\061', '\012', '\152', '\123', '\147', '\040',
'\156', '\147', '\040', '\061', '\012', '\147', '\115', '\150',
'\040', '\164', '\150', '\040', '\061', '\012', '\146', '\130',
'\164', '\040', '\164', '\150', '\040', '\061', '\012', '\106',
'\171', '\167', '\040', '\167', '\141', '\040', '\061', '\012',
'\106', '\167', '\147', '\040', '\156', '\147', '\040', '\061',
'\012', '\150', '\155', '\116', '\040', '\164', '\150', '\040',
'\061', '\012', '\150', '\116', '\154', '\040', '\164', '\150',
'\040', '\061', '\012', '\164', '\161', '\131', '\040', '\164',
'\150', '\040', '\061', '\012', '\160', '\107', '\155', '\040',
'\155', '\145', '\040', '\061', '\012', '\155', '\130', '\172',
'\040', '\163', '\172', '\040', '\061', '\012', '\161', '\131',
'\171', '\040', '\161', '\165', '\040', '\061', '\012', '\122',
'\155', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\104', '\161', '\141', '\040', '\141', '\156', '\040', '\061',
'\012', '\127', '\153', '\170', '\040', '\153', '\141', '\040',
'\061', '\012', '\144', '\160', '\124', '\040', '\144', '\145',
'\040', '\061', '\012', '\152', '\171', '\112', '\040', '\151',
'\152', '\040', '\061', '\012', '\112', '\161', '\152', '\040',
'\161', '\165', '\040', '\061', '\012', '\167', '\152', '\132',
'\040', '\151', '\152', '\040', '\061', '\012', '\170', '\116',
'\162', '\040', '\145', '\162', '\040', '\061', '\012', '\161',
'\101', '\155', '\040', '\161', '\165', '\040', '\061', '\012',
'\150', '\102', '\156', '\040', '\164', '\150', '\040', '\061',
'\012', '\161', '\160', '\112', '\040', '\161', '\165', '\040',
'\061', '\012', '\171', '\147', '\127', '\040', '\156', '\147',
'\040', '\061', '\012', '\152', '\130', '\146', '\040', '\151',
'\152', '\040', '\061', '\012', '\162', '\115', '\154', '\040',
'\145', '\162', '\040', '\061', '\012', '\172', '\147', '\126',
'\040', '\156', '\147', '\040', '\061', '\012', '\156', '\114',
'\160', '\040', '\141', '\156', '\040', '\061', '\012', '\160',
'\106', '\170', '\040', '\160', '\162', '\040', '\061', '\012',
'\164', '\166', '\107', '\040', '\164', '\150', '\040', '\061',
'\012', '\172', '\121', '\154', '\040', '\154', '\145', '\040',
'\061', '\012', '\146', '\144', '\106', '\040', '\144', '\145',
'\040', '\061', '\012', '\142', '\170', '\113', '\040', '\142',
'\145', '\040', '\061', '\012', '\102', '\143', '\170', '\040',
'\143', '\150', '\040', '\061', '\012', '\162', '\160', '\131',
'\040', '\145', '\162', '\040', '\061', '\012', '\163', '\112',
'\142', '\040', '\163', '\164', '\040', '\061', '\012', '\113',
'\166', '\150', '\040', '\164', '\150', '\040', '\061', '\012',
'\153', '\116', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\172', '\110', '\144', '\040', '\163', '\172', '\040',
'\061', '\012', '\144', '\172', '\106', '\040', '\163', '\172',
'\040', '\061', '\012', '\164', '\112', '\161', '\040', '\164',
'\150', '\040', '\061', '\012', '\110', '\146', '\166', '\040',
'\166', '\141', '\040', '\061', '\012', '\166', '\121', '\144',
'\040', '\144', '\145', '\040', '\061', '\012', '\160', '\113',
'\152', '\040', '\151', '\152', '\040', '\061', '\012', '\146',
'\150', '\126', '\040', '\164', '\150', '\040', '\061', '\012',
'\161', '\132', '\151', '\040', '\161', '\165', '\040', '\061',
'\012', '\157', '\150', '\131', '\040', '\164', '\150', '\040',
'\061', '\012', '\166', '\161', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\164', '\156', '\121', '\040', '\164',
'\150', '\040', '\061', '\012', '\126', '\161', '\153', '\040',
'\161', '\165', '\040', '\061', '\012', '\172', '\112', '\146',
'\040', '\163', '\172', '\040', '\061', '\012', '\112', '\153',
'\172', '\040', '\163', '\172', '\040', '\061', '\012', '\122',
'\167', '\146', '\040', '\167', '\141', '\040', '\061', '\012',
'\172', '\166', '\115', '\040', '\166', '\141', '\040', '\061',
'\012', '\142', '\170', '\131', '\040', '\142', '\145', '\040',
'\061', '\012', '\160', '\130', '\150', '\040', '\164', '\150',
'\040', '\061', '\012', '\146', '\125', '\171', '\040', '\156',
'\171', '\040', '\061', '\012', '\160', '\166', '\105', '\040',
'\166', '\141', '\040', '\061', '\012', '\114', '\160', '\153',
'\040', '\153', '\141', '\040', '\061', '\012', '\144', '\172',
'\126', '\040', '\163', '\172', '\040', '\061', '\012', '\170',
'\111', '\146', '\040', '\146', '\157', '\040', '\061', '\012',
'\167', '\132', '\167', '\040', '\167', '\141', '\040', '\061',
'\012', '\156', '\160', '\121', '\040', '\141', '\156', '\040',
'\061', '\012', '\160', '\127', '\153', '\040', '\153', '\141',
'\040', '\061', '\012', '\152', '\147', '\121', '\040', '\156',
'\147', '\040', '\061', '\012', '\112', '\161', '\162', '\040',
'\161', '\165', '\040', '\061', '\012', '\147', '\155', '\130',
'\040', '\156', '\147', '\040', '\061', '\012', '\152', '\146',
'\115', '\040', '\151', '\152', '\040', '\061', '\012', '\154',
'\127', '\152', '\040', '\154', '\145', '\040', '\061', '\012',
'\160', '\142', '\116', '\040', '\160', '\162', '\040', '\061',
'\012', '\146', '\166', '\106', '\040', '\166', '\141', '\040',
'\061', '\012', '\163', '\104', '\144', '\040', '\163', '\164',
'\040', '\061', '\012', '\161', '\144', '\102', '\040', '\161',
'\165', '\040', '\061', '\012', '\146', '\162', '\114', '\040',
'\145', '\162', '\040', '\061', '\012', '\165', '\110', '\156',
'\040', '\141', '\156', '\040', '\061', '\012', '\147', '\167',
'\116', '\040', '\156', '\147', '\040', '\061', '\012', '\171',
'\102', '\150', '\040', '\164', '\150', '\040', '\061', '\012',
'\132', '\172', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\166', '\104', '\147', '\040', '\156', '\147', '\040',
'\061', '\012', '\121', '\143', '\172', '\040', '\143', '\150',
'\040', '\061', '\012', '\161', '\172', '\146', '\040', '\161',
'\165', '\040', '\061', '\012', '\167', '\105', '\143', '\040',
'\143', '\150', '\040', '\061', '\012', '\160', '\170', '\110',
'\040', '\160', '\162', '\040', '\061', '\012', '\146', '\161',
'\117', '\040', '\161', '\165', '\040', '\061', '\012', '\126',
'\161', '\145', '\040', '\161', '\165', '\040', '\061', '\012',
'\147', '\153', '\104', '\040', '\156', '\147', '\040', '\061',
'\012', '\130', '\146', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\165', '\130', '\147', '\040', '\161', '\165',
'\040', '\061', '\012', '\152', '\103', '\167', '\040', '\151',
'\152', '\040', '\061', '\012', '\120', '\172', '\165', '\040',
'\161', '\165', '\040', '\061', '\012', '\147', '\122', '\150',
'\040', '\164', '\150', '\040', '\061', '\012', '\166', '\161',
'\110', '\040', '\161', '\165', '\040', '\061', '\012', '\166',
'\166', '\127', '\040', '\166', '\141', '\040', '\061', '\012',
'\122', '\146', '\142', '\040', '\142', '\145', '\040', '\061',
'\012', '\147', '\161', '\112', '\040', '\161', '\165', '\040',
'\061', '\012', '\164', '\147', '\117', '\040', '\164', '\150',
'\040', '\061', '\012', '\167', '\125', '\171', '\040', '\167',
'\141', '\040', '\061', '\012', '\112', '\153', '\167', '\040',
'\153', '\141', '\040', '\061', '\012', '\150', '\123', '\163',
'\040', '\164', '\150', '\040', '\061', '\012', '\147', '\153',
'\127', '\040', '\156', '\147', '\040', '\061', '\012', '\121',
'\147', '\171', '\040', '\156', '\147', '\040', '\061', '\012',
'\144', '\112', '\142', '\040', '\144', '\145', '\040', '\061',
'\012', '\160', '\162', '\106', '\040', '\145', '\162', '\040',
'\061', '\012', '\142', '\165', '\130', '\040', '\161', '\165',
'\040', '\061', '\012', '\143', '\126', '\147', '\040', '\143',
'\150', '\040', '\061', '\012', '\152', '\164', '\125', '\040',
'\164', '\150', '\040', '\061', '\012', '\146', '\104', '\143',
'\040', '\143', '\150', '\040', '\061', '\012', '\131', '\147',
'\143', '\040', '\143', '\150', '\040', '\061', '\012', '\113',
'\161', '\162', '\040', '\161', '\165', '\040', '\061', '\012',
'\125', '\171', '\160', '\040', '\160', '\162', '\040', '\061',
'\012', '\154', '\112', '\153', '\040', '\154', '\145', '\040',
'\061', '\012', '\163', '\170', '\131', '\040', '\163', '\164',
'\040', '\061', '\012', '\170', '\146', '\131', '\040', '\146',
'\157', '\040', '\061', '\012', '\130', '\153', '\172', '\040',
'\163', '\172', '\040', '\061', '\012', '\143', '\147', '\132',
'\040', '\143', '\150', '\040', '\061', '\012', '\143', '\171',
'\130', '\040', '\143', '\150', '\040', '\061', '\012', '\147',
'\142', '\106', '\040', '\156', '\147', '\040', '\061', '\012',
'\172', '\124', '\153', '\040', '\163', '\172', '\040', '\061',
'\012', '\150', '\163', '\125', '\040', '\164', '\150', '\040',
'\061', '\012', '\164', '\154', '\127', '\040', '\164', '\150',
'\040', '\061', '\012', '\132', '\172', '\166', '\040', '\163',
'\172', '\040', '\061', '\012', '\153', '\161', '\105', '\040',
'\161', '\165', '\040', '\061', '\012', '\154', '\160', '\121',
'\040', '\160', '\157', '\040', '\061', '\012', '\161', '\112',
'\165', '\040', '\165', '\156', '\040', '\061', '\012', '\150',
'\131', '\151', '\040', '\164', '\150', '\040', '\061', '\012',
'\172', '\154', '\115', '\040', '\154', '\145', '\040', '\061',
'\012', '\166', '\104', '\164', '\040', '\164', '\150', '\040',
'\061', '\012', '\110', '\166', '\156', '\040', '\141', '\156',
'\040', '\061', '\012', '\116', '\163', '\146', '\040', '\163',
'\164', '\040', '\061', '\012', '\142', '\112', '\147', '\040',
'\156', '\147', '\040', '\061', '\012', '\146', '\116', '\147',
'\040', '\156', '\147', '\040', '\061', '\012', '\153', '\121',
'\157', '\040', '\157', '\156', '\040', '\061', '\012', '\113',
'\161', '\160', '\040', '\161', '\165', '\040', '\061', '\012',
'\142', '\113', '\163', '\040', '\163', '\164', '\040', '\061',
'\012', '\155', '\110', '\160', '\040', '\155', '\145', '\040',
'\061', '\012', '\125', '\171', '\152', '\040', '\151', '\152',
'\040', '\061', '\012', '\143', '\170', '\131', '\040', '\143',
'\150', '\040', '\061', '\012', '\171', '\111', '\145', '\040',
'\145', '\162', '\040', '\061', '\012', '\161', '\124', '\152',
'\040', '\161', '\165', '\040', '\061', '\012', '\167', '\146',
'\120', '\040', '\167', '\141', '\040', '\061', '\012', '\146',
'\170', '\111', '\040', '\146', '\157', '\040', '\061', '\012',
'\166', '\121', '\141', '\040', '\141', '\156', '\040', '\061',
'\012', '\146', '\166', '\116', '\040', '\166', '\141', '\040',
'\061', '\012', '\160', '\167', '\116', '\040', '\160', '\162',
'\040', '\061', '\012', '\166', '\141', '\121', '\040', '\141',
'\156', '\040', '\061', '\012', '\155', '\170', '\121', '\040',
'\155', '\145', '\040', '\061', '\012', '\142', '\144', '\126',
'\040', '\144', '\145', '\040', '\061', '\012', '\103', '\147',
'\152', '\040', '\156', '\147', '\040', '\061', '\012', '\170',
'\152', '\172', '\040', '\163', '\172', '\040', '\061', '\012',
'\127', '\161', '\167', '\040', '\161', '\165', '\040', '\061',
'\012', '\167', '\160', '\117', '\040', '\160', '\162', '\040',
'\061', '\012', '\167', '\157', '\121', '\040', '\157', '\156',
'\040', '\061', '\012', '\170', '\131', '\152', '\040', '\151',
'\152', '\040', '\061', '\012', '\146', '\160', '\124', '\040',
'\160', '\162', '\040', '\061', '\012', '\154', '\116', '\160',
'\040', '\154', '\145', '\040', '\061', '\012', '\160', '\166',
'\130', '\040', '\166', '\141', '\040', '\061', '\012', '\160',
'\114', '\160', '\040', '\160', '\162', '\040', '\061', '\012',
'\113', '\163', '\147', '\040', '\156', '\147', '\040', '\061',
'\012', '\162', '\127', '\147', '\040', '\156', '\147', '\040',
'\061', '\012', '\151', '\125', '\171', '\040', '\151', '\156',
'\040', '\061', '\012', '\142', '\146', '\130', '\040', '\142',
'\145', '\040', '\061', '\012', '\170', '\163', '\126', '\040',
'\163', '\164', '\040', '\061', '\012', '\130', '\156', '\152',
'\040', '\141', '\156', '\040', '\061', '\012', '\144', '\155',
'\127', '\040', '\144', '\145', '\040', '\061', '\012', '\157',
'\121', '\167', '\040', '\157', '\156', '\040', '\061', '\012',
'\132', '\170', '\171', '\040', '\156', '\171', '\040', '\061',
'\012', '\117', '\141', '\171', '\040', '\141', '\156', '\040',
'\061', '\012', '\160', '\152', '\107', '\040', '\151', '\152',
'\040', '\061', '\012', '\132', '\142', '\164', '\040', '\164',
'\150', '\040', '\061', '\012', '\110', '\161', '\154', '\040',
'\161', '\165', '\040', '\061', '\012', '\132', '\170', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\152', '\127',
'\144', '\040', '\144', '\145', '\040', '\061', '\012', '\161',
'\125', '\160', '\040', '\161', '\165', '\040', '\061', '\012',
'\161', '\170', '\116', '\040', '\161', '\165', '\040', '\061',
'\012', '\161', '\103', '\157', '\040', '\161', '\165', '\040',
'\061', '\012', '\131', '\146', '\144', '\040', '\144', '\145',
'\040', '\061', '\012', '\166', '\166', '\125', '\040', '\166',
'\141', '\040', '\061', '\012', '\166', '\111', '\153', '\040',
'\153', '\141', '\040', '\061', '\012', '\104', '\146', '\152',
'\040', '\151', '\152', '\040', '\061', '\012', '\132', '\155',
'\150', '\040', '\164', '\150', '\040', '\061', '\012', '\103',
'\161', '\164', '\040', '\164', '\150', '\040', '\061', '\012',
'\166', '\121', '\146', '\040', '\166', '\141', '\040', '\061',
'\012', '\116', '\142', '\156', '\040', '\141', '\156', '\040',
'\061', '\012', '\164', '\112', '\163', '\040', '\164', '\150',
'\040', '\061', '\012', '\106', '\150', '\170', '\040', '\164',
'\150', '\040', '\061', '\012', '\144', '\172', '\121', '\040',
'\163', '\172', '\040', '\061', '\012', '\172', '\131', '\152',
'\040', '\151', '\152', '\040', '\061', '\012', '\161', '\102',
'\167', '\040', '\161', '\165', '\040', '\061', '\012', '\166',
'\143', '\126', '\040', '\143', '\150', '\040', '\061', '\012',
'\147', '\107', '\164', '\040', '\164', '\150', '\040', '\061',
'\012', '\151', '\126', '\167', '\040', '\151', '\156', '\040',
'\061', '\012', '\106', '\172', '\160', '\040', '\163', '\172',
'\040', '\061', '\012', '\142', '\152', '\110', '\040', '\151',
'\152', '\040', '\061', '\012', '\143', '\165', '\131', '\040',
'\143', '\150', '\040', '\061', '\012', '\152', '\167', '\123',
'\040', '\151', '\152', '\040', '\061', '\012', '\103', '\161',
'\160', '\040', '\161', '\165', '\040', '\061', '\012', '\171',
'\112', '\166', '\040', '\166', '\141', '\040', '\061', '\012',
'\153', '\144', '\112', '\040', '\144', '\145', '\040', '\061',
'\012', '\153', '\144', '\124', '\040', '\144', '\145', '\040',
'\061', '\012', '\156', '\161', '\102', '\040', '\141', '\156',
'\040', '\061', '\012', '\150', '\127', '\163', '\040', '\164',
'\150', '\040', '\061', '\012', '\161', '\163', '\152', '\040',
'\161', '\165', '\040', '\061', '\012', '\150', '\114', '\167',
'\040', '\164', '\150', '\040', '\061', '\012', '\150', '\144',
'\130', '\040', '\164', '\150', '\040', '\061', '\012', '\143',
'\147', '\126', '\040', '\143', '\150', '\040', '\061', '\012',
'\164', '\131', '\143', '\040', '\164', '\150', '\040', '\061',
'\012', '\145', '\132', '\170', '\040', '\145', '\162', '\040',
'\061', '\012', '\150', '\146', '\116', '\040', '\164', '\150',
'\040', '\061', '\012', '\147', '\166', '\167', '\040', '\156',
'\147', '\040', '\061', '\012', '\141', '\126', '\160', '\040',
'\141', '\156', '\040', '\061', '\012', '\147', '\115', '\163',
'\040', '\156', '\147', '\040', '\061', '\012', '\120', '\142',
'\146', '\040', '\142', '\145', '\040', '\061', '\012', '\155',
'\121', '\146', '\040', '\155', '\145', '\040', '\061', '\012',
'\171', '\125', '\151', '\040', '\151', '\156', '\040', '\061',
'\012', '\166', '\107', '\146', '\040', '\166', '\141', '\040',
'\061', '\012', '\170', '\147', '\106', '\040', '\156', '\147',
'\040', '\061', '\012', '\172', '\166', '\131', '\040', '\163',
'\172', '\040', '\061', '\012', '\167', '\162', '\101', '\040',
'\145', '\162', '\040', '\061', '\012', '\171', '\162', '\115',
'\040', '\145', '\162', '\040', '\061', '\012', '\166', '\115',
'\152', '\040', '\151', '\152', '\040', '\061', '\012', '\125',
'\171', '\166', '\040', '\166', '\141', '\040', '\061', '\012',
'\144', '\114', '\160', '\040', '\144', '\145', '\040', '\061',
'\012', '\107', '\152', '\152', '\040', '\151', '\152', '\040',
'\061', '\012', '\172', '\105', '\151', '\040', '\151', '\156',
'\040', '\061', '\012', '\130', '\144', '\147', '\040', '\156',
'\147', '\040', '\061', '\012', '\152', '\110', '\146', '\040',
'\151', '\152', '\040', '\061', '\012', '\157', '\120', '\172',
'\040', '\157', '\156', '\040', '\061', '\012', '\170', '\111',
'\172', '\040', '\163', '\172', '\040', '\061', '\012', '\142',
'\103', '\142', '\040', '\142', '\145', '\040', '\061', '\012',
'\104', '\172', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\131', '\152', '\156', '\040', '\141', '\156', '\040',
'\061', '\012', '\147', '\107', '\172', '\040', '\156', '\147',
'\040', '\061', '\012', '\155', '\152', '\125', '\040', '\151',
'\152', '\040', '\061', '\012', '\103', '\152', '\170', '\040',
'\151', '\152', '\040', '\061', '\012', '\170', '\113', '\143',
'\040', '\143', '\150', '\040', '\061', '\012', '\155', '\166',
'\117', '\040', '\166', '\141', '\040', '\061', '\012', '\120',
'\172', '\142', '\040', '\163', '\172', '\040', '\061', '\012',
'\143', '\162', '\113', '\040', '\143', '\150', '\040', '\061',
'\012', '\170', '\150', '\117', '\040', '\164', '\150', '\040',
'\061', '\012', '\171', '\154', '\102', '\040', '\154', '\145',
'\040', '\061', '\012', '\154', '\104', '\153', '\040', '\154',
'\145', '\040', '\061', '\012', '\172', '\154', '\117', '\040',
'\154', '\145', '\040', '\061', '\012', '\160', '\147', '\110',
'\040', '\156', '\147', '\040', '\061', '\012', '\166', '\121',
'\142', '\040', '\166', '\141', '\040', '\061', '\012', '\163',
'\144', '\132', '\040', '\163', '\164', '\040', '\061', '\012',
'\153', '\121', '\155', '\040', '\153', '\141', '\040', '\061',
'\012', '\154', '\122', '\150', '\040', '\164', '\150', '\040',
'\061', '\012', '\157', '\121', '\171', '\040', '\157', '\156',
'\040', '\061', '\012', '\164', '\167', '\103', '\040', '\164',
'\150', '\040', '\061', '\012', '\102', '\144', '\152', '\040',
'\151', '\152', '\040', '\061', '\012', '\121', '\152', '\147',
'\040', '\156', '\147', '\040', '\061', '\012', '\144', '\156',
'\120', '\040', '\141', '\156', '\040', '\061', '\012', '\116',
'\156', '\160', '\040', '\141', '\156', '\040', '\061', '\012',
'\161', '\151', '\120', '\040', '\161', '\165', '\040', '\061',
'\012', '\103', '\143', '\152', '\040', '\143', '\150', '\040',
'\061', '\012', '\165', '\110', '\164', '\040', '\164', '\150',
'\040', '\061', '\012', '\161', '\114', '\170', '\040', '\161',
'\165', '\040', '\061', '\012', '\121', '\163', '\146', '\040',
'\163', '\164', '\040', '\061', '\012', '\146', '\113', '\170',
'\040', '\146', '\157', '\040', '\061', '\012', '\146', '\153',
'\105', '\040', '\153', '\141', '\040', '\061', '\012', '\152',
'\154', '\130', '\040', '\154', '\145', '\040', '\061', '\012',
'\152', '\132', '\142', '\040', '\151', '\152', '\040', '\061',
'\012', '\126', '\167', '\152', '\040', '\151', '\152', '\040',
'\061', '\012', '\172', '\142', '\101', '\040', '\163', '\172',
'\040', '\061', '\012', '\110', '\150', '\144', '\040', '\164',
'\150', '\040', '\061', '\012', '\143', '\142', '\131', '\040',
'\143', '\150', '\040', '\061', '\012', '\111', '\153', '\146',
'\040', '\153', '\141', '\040', '\061', '\012', '\107', '\162',
'\170', '\040', '\145', '\162', '\040', '\061', '\012', '\152',
'\160', '\120', '\040', '\151', '\152', '\040', '\061', '\012',
'\121', '\146', '\150', '\040', '\164', '\150', '\040', '\061',
'\012', '\170', '\150', '\127', '\040', '\164', '\150', '\040',
'\061', '\012', '\167', '\155', '\130', '\040', '\155', '\145',
'\040', '\061', '\012', '\141', '\112', '\142', '\040', '\141',
'\156', '\040', '\061', '\012', '\163', '\146', '\117', '\040',
'\163', '\164', '\040', '\061', '\012', '\161', '\130', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\155', '\130',
'\147', '\040', '\156', '\147', '\040', '\061', '\012', '\142',
'\156', '\126', '\040', '\141', '\156', '\040', '\061', '\012',
'\131', '\160', '\167', '\040', '\160', '\162', '\040', '\061',
'\012', '\172', '\103', '\171', '\040', '\163', '\172', '\040',
'\061', '\012', '\154', '\150', '\116', '\040', '\164', '\150',
'\040', '\061', '\012', '\162', '\130', '\156', '\040', '\141',
'\156', '\040', '\061', '\012', '\146', '\107', '\150', '\040',
'\164', '\150', '\040', '\061', '\012', '\127', '\170', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\143', '\170',
'\124', '\040', '\143', '\150', '\040', '\061', '\012', '\132',
'\163', '\147', '\040', '\156', '\147', '\040', '\061', '\012',
'\165', '\107', '\166', '\040', '\161', '\165', '\040', '\061',
'\012', '\142', '\172', '\115', '\040', '\163', '\172', '\040',
'\061', '\012', '\172', '\152', '\123', '\040', '\163', '\172',
'\040', '\061', '\012', '\144', '\146', '\123', '\040', '\144',
'\145', '\040', '\061', '\012', '\147', '\160', '\110', '\040',
'\156', '\147', '\040', '\061', '\012', '\161', '\147', '\117',
'\040', '\156', '\147', '\040', '\061', '\012', '\153', '\161',
'\106', '\040', '\161', '\165', '\040', '\061', '\012', '\161',
'\146', '\125', '\040', '\161', '\165', '\040', '\061', '\012',
'\161', '\124', '\160', '\040', '\161', '\165', '\040', '\061',
'\012', '\166', '\132', '\142', '\040', '\166', '\141', '\040',
'\061', '\012', '\105', '\152', '\167', '\040', '\151', '\152',
'\040', '\061', '\012', '\172', '\121', '\156', '\040', '\141',
'\156', '\040', '\061', '\012', '\147', '\131', '\172', '\040',
'\156', '\147', '\040', '\061', '\012', '\153', '\152', '\126',
'\040', '\151', '\152', '\040', '\061', '\012', '\146', '\127',
'\154', '\040', '\154', '\145', '\040', '\061', '\012', '\146',
'\122', '\153', '\040', '\153', '\141', '\040', '\061', '\012',
'\165', '\123', '\152', '\040', '\161', '\165', '\040', '\061',
'\012', '\103', '\170', '\147', '\040', '\156', '\147', '\040',
'\061', '\012', '\114', '\143', '\166', '\040', '\143', '\150',
'\040', '\061', '\012', '\142', '\172', '\113', '\040', '\163',
'\172', '\040', '\061', '\012', '\167', '\161', '\106', '\040',
'\161', '\165', '\040', '\061', '\012', '\161', '\112', '\160',
'\040', '\161', '\165', '\040', '\061', '\012', '\162', '\103',
'\152', '\040', '\145', '\162', '\040', '\061', '\012', '\161',
'\166', '\163', '\040', '\161', '\165', '\040', '\061', '\012',
'\154', '\167', '\116', '\040', '\154', '\145', '\040', '\061',
'\012', '\170', '\155', '\122', '\040', '\155', '\145', '\040',
'\061', '\012', '\142', '\164', '\103', '\040', '\164', '\150',
'\040', '\061', '\012', '\153', '\124', '\170', '\040', '\153',
'\141', '\040', '\061', '\012', '\161', '\153', '\125', '\040',
'\161', '\165', '\040', '\061', '\012', '\114', '\150', '\152',
'\040', '\164', '\150', '\040', '\061', '\012', '\144', '\111',
'\170', '\040', '\144', '\145', '\040', '\061', '\012', '\166',
'\163', '\121', '\040', '\163', '\164', '\040', '\061', '\012',
'\147', '\123', '\144', '\040', '\156', '\147', '\040', '\061',
'\012', '\167', '\104', '\154', '\040', '\154', '\145', '\040',
'\061', '\012', '\126', '\152', '\155', '\040', '\151', '\152',
'\040', '\061', '\012', '\160', '\155', '\111', '\040', '\155',
'\145', '\040', '\061', '\012', '\166', '\127', '\150', '\040',
'\164', '\150', '\040', '\061', '\012', '\146', '\113', '\166',
'\040', '\166', '\141', '\040', '\061', '\012', '\170', '\120',
'\164', '\040', '\164', '\150', '\040', '\061', '\012', '\165',
'\157', '\121', '\040', '\161', '\165', '\040', '\061', '\012',
'\113', '\147', '\150', '\040', '\164', '\150', '\040', '\061',
'\012', '\147', '\167', '\130', '\040', '\156', '\147', '\040',
'\061', '\012', '\163', '\147', '\112', '\040', '\156', '\147',
'\040', '\061', '\012', '\160', '\127', '\152', '\040', '\151',
'\152', '\040', '\061', '\012', '\121', '\146', '\146', '\040',
'\146', '\157', '\040', '\061', '\012', '\150', '\153', '\112',
'\040', '\164', '\150', '\040', '\061', '\012', '\110', '\161',
'\157', '\040', '\161', '\165', '\040', '\061', '\012', '\152',
'\167', '\127', '\040', '\151', '\152', '\040', '\061', '\012',
'\163', '\121', '\172', '\040', '\163', '\164', '\040', '\061',
'\012', '\167', '\125', '\167', '\040', '\167', '\141', '\040',
'\061', '\012', '\155', '\113', '\170', '\040', '\155', '\145',
'\040', '\061', '\012', '\157', '\121', '\146', '\040', '\157',
'\156', '\040', '\061', '\012', '\152', '\126', '\153', '\040',
'\151', '\152', '\040', '\061', '\012', '\170', '\167', '\124',
'\040', '\167', '\141', '\040', '\061', '\012', '\163', '\124',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\165',
'\161', '\126', '\040', '\161', '\165', '\040', '\061', '\012',
'\121', '\154', '\160', '\040', '\154', '\145', '\040', '\061',
'\012', '\160', '\115', '\142', '\040', '\160', '\162', '\040',
'\061', '\012', '\170', '\113', '\152', '\040', '\151', '\152',
'\040', '\061', '\012', '\142', '\160', '\130', '\040', '\160',
'\162', '\040', '\061', '\012', '\166', '\121', '\145', '\040',
'\145', '\162', '\040', '\061', '\012', '\112', '\152', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\161', '\113',
'\150', '\040', '\164', '\150', '\040', '\061', '\012', '\146',
'\153', '\112', '\040', '\153', '\141', '\040', '\061', '\012',
'\152', '\142', '\121', '\040', '\151', '\152', '\040', '\061',
'\012', '\155', '\132', '\167', '\040', '\155', '\145', '\040',
'\061', '\012', '\130', '\147', '\143', '\040', '\143', '\150',
'\040', '\061', '\012', '\166', '\172', '\125', '\040', '\163',
'\172', '\040', '\061', '\012', '\160', '\124', '\155', '\040',
'\155', '\145', '\040', '\061', '\012', '\160', '\116', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\162', '\167',
'\104', '\040', '\145', '\162', '\040', '\061', '\012', '\121',
'\144', '\147', '\040', '\156', '\147', '\040', '\061', '\012',
'\167', '\161', '\103', '\040', '\161', '\165', '\040', '\061',
'\012', '\131', '\162', '\156', '\040', '\141', '\156', '\040',
'\061', '\012', '\161', '\167', '\167', '\040', '\161', '\165',
'\040', '\061', '\012', '\161', '\167', '\125', '\040', '\161',
'\165', '\040', '\061', '\012', '\170', '\172', '\106', '\040',
'\163', '\172', '\040', '\061', '\012', '\146', '\154', '\127',
'\040', '\154', '\145', '\040', '\061', '\012', '\152', '\172',
'\120', '\040', '\163', '\172', '\040', '\061', '\012', '\127',
'\170', '\160', '\040', '\160', '\162', '\040', '\061', '\012',
'\162', '\104', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\144', '\107', '\160', '\040', '\144', '\145', '\040',
'\061', '\012', '\132', '\164', '\152', '\040', '\164', '\150',
'\040', '\061', '\012', '\125', '\166', '\160', '\040', '\166',
'\141', '\040', '\061', '\012', '\145', '\107', '\143', '\040',
'\143', '\150', '\040', '\061', '\012', '\172', '\132', '\142',
'\040', '\163', '\172', '\040', '\061', '\012', '\147', '\121',
'\150', '\040', '\164', '\150', '\040', '\061', '\012', '\164',
'\106', '\144', '\040', '\164', '\150', '\040', '\061', '\012',
'\115', '\161', '\147', '\040', '\156', '\147', '\040', '\061',
'\012', '\144', '\156', '\104', '\040', '\141', '\156', '\040',
'\061', '\012', '\150', '\166', '\131', '\040', '\164', '\150',
'\040', '\061', '\012', '\111', '\171', '\142', '\040', '\142',
'\145', '\040', '\061', '\012', '\146', '\104', '\172', '\040',
'\163', '\172', '\040', '\061', '\012', '\113', '\142', '\152',
'\040', '\151', '\152', '\040', '\061', '\012', '\166', '\131',
'\155', '\040', '\166', '\141', '\040', '\061', '\012', '\127',
'\170', '\162', '\040', '\145', '\162', '\040', '\061', '\012',
'\113', '\167', '\172', '\040', '\163', '\172', '\040', '\061',
'\012', '\150', '\162', '\121', '\040', '\164', '\150', '\040',
'\061', '\012', '\171', '\103', '\164', '\040', '\164', '\150',
'\040', '\061', '\012', '\110', '\170', '\167', '\040', '\167',
'\141', '\040', '\061', '\012', '\150', '\105', '\146', '\040',
'\164', '\150', '\040', '\061', '\012', '\142', '\144', '\125',
'\040', '\144', '\145', '\040', '\061', '\012', '\163', '\107',
'\152', '\040', '\163', '\164', '\040', '\061', '\012', '\107',
'\167', '\164', '\040', '\164', '\150', '\040', '\061', '\012',
'\142', '\131', '\150', '\040', '\164', '\150', '\040', '\061',
'\012', '\172', '\155', '\125', '\040', '\163', '\172', '\040',
'\061', '\012', '\160', '\104', '\155', '\040', '\160', '\157',
'\040', '\061', '\012', '\161', '\155', '\103', '\040', '\161',
'\165', '\040', '\061', '\012', '\144', '\124', '\144', '\040',
'\144', '\145', '\040', '\061', '\012', '\121', '\170', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\165', '\126',
'\146', '\040', '\161', '\165', '\040', '\061', '\012', '\161',
'\101', '\154', '\040', '\161', '\165', '\040', '\061', '\012',
'\152', '\105', '\141', '\040', '\141', '\156', '\040', '\061',
'\012', '\113', '\160', '\171', '\040', '\160', '\162', '\040',
'\061', '\012', '\110', '\161', '\166', '\040', '\161', '\165',
'\040', '\061', '\012', '\146', '\103', '\153', '\040', '\153',
'\141', '\040', '\061', '\012', '\141', '\161', '\132', '\040',
'\141', '\156', '\040', '\061', '\012', '\154', '\125', '\157',
'\040', '\157', '\156', '\040', '\061', '\012', '\120', '\166',
'\157', '\040', '\157', '\156', '\040', '\061', '\012', '\104',
'\161', '\146', '\040', '\161', '\165', '\040', '\061', '\012',
'\147', '\144', '\115', '\040', '\156', '\147', '\040', '\061',
'\012', '\146', '\172', '\114', '\040', '\163', '\172', '\040',
'\061', '\012', '\102', '\150', '\150', '\040', '\164', '\150',
'\040', '\061', '\012', '\144', '\107', '\144', '\040', '\144',
'\145', '\040', '\061', '\012', '\167', '\164', '\131', '\040',
'\164', '\150', '\040', '\061', '\012', '\161', '\124', '\171',
'\040', '\161', '\165', '\040', '\061', '\012', '\125', '\170',
'\162', '\040', '\145', '\162', '\040', '\061', '\012', '\126',
'\166', '\155', '\040', '\166', '\141', '\040', '\061', '\012',
'\166', '\110', '\150', '\040', '\164', '\150', '\040', '\061',
'\012', '\161', '\132', '\143', '\040', '\143', '\150', '\040',
'\061', '\012', '\146', '\150', '\103', '\040', '\164', '\150',
'\040', '\061', '\012', '\170', '\144', '\132', '\040', '\144',
'\145', '\040', '\061', '\012', '\150', '\132', '\160', '\040',
'\164', '\150', '\040', '\061', '\012', '\120', '\155', '\172',
'\040', '\163', '\172', '\040', '\061', '\012', '\143', '\146',
'\124', '\040', '\143', '\150', '\040', '\061', '\012', '\160',
'\152', '\111', '\040', '\151', '\152', '\040', '\061', '\012',
'\155', '\144', '\132', '\040', '\144', '\145', '\040', '\061',
'\012', '\152', '\153', '\121', '\040', '\151', '\152', '\040',
'\061', '\012', '\123', '\144', '\152', '\040', '\144', '\145',
'\040', '\061', '\012', '\150', '\104', '\146', '\040', '\164',
'\150', '\040', '\061', '\012', '\145', '\112', '\152', '\040',
'\145', '\162', '\040', '\061', '\012', '\167', '\152', '\131',
'\040', '\151', '\152', '\040', '\061', '\012', '\172', '\114',
'\155', '\040', '\163', '\172', '\040', '\061', '\012', '\145',
'\106', '\163', '\040', '\145', '\162', '\040', '\061', '\012',
'\167', '\147', '\152', '\040', '\156', '\147', '\040', '\061',
'\012', '\132', '\155', '\153', '\040', '\153', '\141', '\040',
'\061', '\012', '\154', '\166', '\112', '\040', '\154', '\145',
'\040', '\061', '\012', '\170', '\131', '\155', '\040', '\155',
'\145', '\040', '\061', '\012', '\116', '\172', '\146', '\040',
'\163', '\172', '\040', '\061', '\012', '\167', '\112', '\151',
'\040', '\151', '\156', '\040', '\061', '\012', '\171', '\121',
'\163', '\040', '\163', '\164', '\040', '\061', '\012', '\160',
'\146', '\115', '\040', '\160', '\162', '\040', '\061', '\012',
'\144', '\150', '\122', '\040', '\164', '\150', '\040', '\061',
'\012', '\143', '\155', '\113', '\040', '\143', '\150', '\040',
'\061', '\012', '\144', '\150', '\115', '\040', '\164', '\150',
'\040', '\061', '\012', '\161', '\107', '\142', '\040', '\161',
'\165', '\040', '\061', '\012', '\167', '\166', '\121', '\040',
'\166', '\141', '\040', '\061', '\012', '\103', '\147', '\161',
'\040', '\156', '\147', '\040', '\061', '\012', '\112', '\146',
'\143', '\040', '\143', '\150', '\040', '\061', '\012', '\142',
'\153', '\104', '\040', '\153', '\141', '\040', '\061', '\012',
'\146', '\144', '\123', '\040', '\144', '\145', '\040', '\061',
'\012', '\111', '\166', '\160', '\040', '\166', '\141', '\040',
'\061', '\012', '\107', '\153', '\152', '\040', '\151', '\152',
'\040', '\061', '\012', '\172', '\111', '\166', '\040', '\163',
'\172', '\040', '\061', '\012', '\102', '\172', '\154', '\040',
'\154', '\145', '\040', '\061', '\012', '\147', '\102', '\142',
'\040', '\156', '\147', '\040', '\061', '\012', '\124', '\160',
'\152', '\040', '\151', '\152', '\040', '\061', '\012', '\166',
'\171', '\131', '\040', '\166', '\141', '\040', '\061', '\012',
'\125', '\170', '\163', '\040', '\163', '\164', '\040', '\061',
'\012', '\153', '\167', '\127', '\040', '\153', '\141', '\040',
'\061', '\012', '\147', '\120', '\146', '\040', '\156', '\147',
'\040', '\061', '\012', '\160', '\161', '\103', '\040', '\161',
'\165', '\040', '\061', '\012', '\143', '\124', '\152', '\040',
'\143', '\150', '\040', '\061', '\012', '\171', '\172', '\111',
'\040', '\163', '\172', '\040', '\061', '\012', '\131', '\160',
'\150', '\040', '\164', '\150', '\040', '\061', '\012', '\142',
'\166', '\104', '\040', '\166', '\141', '\040', '\061', '\012',
'\170', '\103', '\143', '\040', '\143', '\150', '\040', '\061',
'\012', '\160', '\143', '\121', '\040', '\143', '\150', '\040',
'\061', '\012', '\146', '\132', '\167', '\040', '\167', '\141',
'\040', '\061', '\012', '\132', '\170', '\146', '\040', '\146',
'\157', '\040', '\061', '\012', '\167', '\142', '\101', '\040',
'\167', '\141', '\040', '\061', '\012', '\142', '\124', '\146',
'\040', '\142', '\145', '\040', '\061', '\012', '\162', '\170',
'\122', '\040', '\145', '\162', '\040', '\061', '\012', '\161',
'\161', '\105', '\040', '\161', '\165', '\040', '\061', '\012',
'\171', '\106', '\160', '\040', '\160', '\162', '\040', '\061',
'\012', '\160', '\116', '\146', '\040', '\160', '\162', '\040',
'\061', '\012', '\153', '\115', '\166', '\040', '\153', '\141',
'\040', '\061', '\012', '\166', '\125', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\167', '\117', '\150', '\040',
'\164', '\150', '\040', '\061', '\012', '\150', '\170', '\110',
'\040', '\164', '\150', '\040', '\061', '\012', '\130', '\161',
'\150', '\040', '\164', '\150', '\040', '\061', '\012', '\165',
'\111', '\165', '\040', '\161', '\165', '\040', '\061', '\012',
'\106', '\172', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\131', '\163', '\144', '\040', '\163', '\164', '\040',
'\061', '\012', '\157', '\152', '\131', '\040', '\157', '\156',
'\040', '\061', '\012', '\143', '\105', '\157', '\040', '\143',
'\150', '\040', '\061', '\012', '\154', '\167', '\122', '\040',
'\154', '\145', '\040', '\061', '\012', '\161', '\152', '\106',
'\040', '\161', '\165', '\040', '\061', '\012', '\152', '\124',
'\160', '\040', '\151', '\152', '\040', '\061', '\012', '\171',
'\172', '\124', '\040', '\163', '\172', '\040', '\061', '\012',
'\152', '\146', '\117', '\040', '\151', '\152', '\040', '\061',
'\012', '\161', '\123', '\147', '\040', '\156', '\147', '\040',
'\061', '\012', '\116', '\143', '\153', '\040', '\143', '\150',
'\040', '\061', '\012', '\150', '\167', '\106', '\040', '\164',
'\150', '\040', '\061', '\012', '\107', '\155', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\111', '\151', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\172', '\167',
'\105', '\040', '\163', '\172', '\040', '\061', '\012', '\161',
'\121', '\166', '\040', '\161', '\165', '\040', '\061', '\012',
'\170', '\126', '\144', '\040', '\144', '\145', '\040', '\061',
'\012', '\131', '\167', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\163', '\106', '\170', '\040', '\163', '\164',
'\040', '\061', '\012', '\146', '\166', '\102', '\040', '\166',
'\141', '\040', '\061', '\012', '\161', '\131', '\145', '\040',
'\154', '\145', '\040', '\061', '\012', '\147', '\167', '\124',
'\040', '\156', '\147', '\040', '\061', '\012', '\127', '\152',
'\170', '\040', '\151', '\152', '\040', '\061', '\012', '\142',
'\110', '\156', '\040', '\141', '\156', '\040', '\061', '\012',
'\146', '\115', '\156', '\040', '\141', '\156', '\040', '\061',
'\012', '\147', '\112', '\147', '\040', '\156', '\147', '\040',
'\061', '\012', '\126', '\153', '\147', '\040', '\156', '\147',
'\040', '\061', '\012', '\106', '\170', '\166', '\040', '\166',
'\141', '\040', '\061', '\012', '\154', '\110', '\166', '\040',
'\154', '\145', '\040', '\061', '\012', '\127', '\160', '\153',
'\040', '\153', '\141', '\040', '\061', '\012', '\170', '\101',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\162',
'\170', '\102', '\040', '\160', '\162', '\040', '\061', '\012',
'\170', '\165', '\121', '\040', '\161', '\165', '\040', '\061',
'\012', '\160', '\111', '\142', '\040', '\160', '\162', '\040',
'\061', '\012', '\142', '\146', '\105', '\040', '\142', '\145',
'\040', '\061', '\012', '\147', '\122', '\170', '\040', '\156',
'\147', '\040', '\061', '\012', '\102', '\160', '\142', '\040',
'\160', '\162', '\040', '\061', '\012', '\142', '\170', '\116',
'\040', '\142', '\145', '\040', '\061', '\012', '\153', '\147',
'\125', '\040', '\156', '\147', '\040', '\061', '\012', '\120',
'\170', '\143', '\040', '\143', '\150', '\040', '\061', '\012',
'\143', '\103', '\161', '\040', '\143', '\150', '\040', '\061',
'\012', '\116', '\160', '\142', '\040', '\160', '\162', '\040',
'\061', '\012', '\154', '\170', '\105', '\040', '\154', '\145',
'\040', '\061', '\012', '\154', '\103', '\171', '\040', '\154',
'\145', '\040', '\061', '\012', '\144', '\147', '\130', '\040',
'\156', '\147', '\040', '\061', '\012', '\170', '\114', '\146',
'\040', '\146', '\157', '\040', '\061', '\012', '\142', '\121',
'\164', '\040', '\164', '\150', '\040', '\061', '\012', '\161',
'\147', '\106', '\040', '\156', '\147', '\040', '\061', '\012',
'\160', '\170', '\132', '\040', '\160', '\162', '\040', '\061',
'\012', '\160', '\120', '\170', '\040', '\160', '\162', '\040',
'\061', '\012', '\151', '\131', '\172', '\040', '\151', '\156',
'\040', '\061', '\012', '\166', '\112', '\154', '\040', '\154',
'\145', '\040', '\061', '\012', '\153', '\124', '\146', '\040',
'\153', '\141', '\040', '\061', '\012', '\161', '\126', '\155',
'\040', '\161', '\165', '\040', '\061', '\012', '\147', '\167',
'\123', '\040', '\156', '\147', '\040', '\061', '\012', '\172',
'\124', '\144', '\040', '\163', '\172', '\040', '\061', '\012',
'\160', '\121', '\153', '\040', '\153', '\141', '\040', '\061',
'\012', '\170', '\105', '\147', '\040', '\156', '\147', '\040',
'\061', '\012', '\146', '\160', '\120', '\040', '\160', '\162',
'\040', '\061', '\012', '\161', '\152', '\167', '\040', '\161',
'\165', '\040', '\061', '\012', '\117', '\171', '\167', '\040',
'\167', '\141', '\040', '\061', '\012', '\155', '\143', '\117',
'\040', '\143', '\150', '\040', '\061', '\012', '\126', '\152',
'\144', '\040', '\144', '\145', '\040', '\061', '\012', '\161',
'\144', '\147', '\040', '\156', '\147', '\040', '\061', '\012',
'\114', '\146', '\160', '\040', '\160', '\162', '\040', '\061',
'\012', '\166', '\132', '\143', '\040', '\143', '\150', '\040',
'\061', '\012', '\156', '\117', '\161', '\040', '\141', '\156',
'\040', '\061', '\012', '\161', '\152', '\156', '\040', '\141',
'\156', '\040', '\061', '\012', '\163', '\113', '\143', '\040',
'\143', '\150', '\040', '\061', '\012', '\167', '\147', '\125',
'\040', '\156', '\147', '\040', '\061', '\012', '\150', '\147',
'\130', '\040', '\164', '\150', '\040', '\061', '\012', '\144',
'\115', '\166', '\040', '\144', '\145', '\040', '\061', '\012',
'\130', '\143', '\160', '\040', '\143', '\150', '\040', '\061',
'\012', '\106', '\167', '\172', '\040', '\163', '\172', '\040',
'\061', '\012', '\160', '\167', '\101', '\040', '\160', '\162',
'\040', '\061', '\012', '\114', '\160', '\152', '\040', '\151',
'\152', '\040', '\061', '\012', '\142', '\153', '\120', '\040',
'\153', '\141', '\040', '\061', '\012', '\166', '\110', '\156',
'\040', '\141', '\156', '\040', '\061', '\012', '\112', '\152',
'\171', '\040', '\151', '\152', '\040', '\061', '\012', '\155',
'\103', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\167', '\166', '\115', '\040', '\166', '\141', '\040', '\061',
'\012', '\111', '\143', '\142', '\040', '\143', '\150', '\040',
'\061', '\012', '\153', '\146', '\112', '\040', '\153', '\141',
'\040', '\061', '\012', '\150', '\163', '\121', '\040', '\164',
'\150', '\040', '\061', '\012', '\144', '\127', '\144', '\040',
'\144', '\145', '\040', '\061', '\012', '\146', '\125', '\163',
'\040', '\163', '\164', '\040', '\061', '\012', '\146', '\114',
'\156', '\040', '\141', '\156', '\040', '\061', '\012', '\160',
'\152', '\116', '\040', '\151', '\152', '\040', '\061', '\012',
'\172', '\147', '\121', '\040', '\156', '\147', '\040', '\061',
'\012', '\152', '\114', '\152', '\040', '\151', '\152', '\040',
'\061', '\012', '\172', '\161', '\105', '\040', '\161', '\165',
'\040', '\061', '\012', '\121', '\155', '\166', '\040', '\166',
'\141', '\040', '\061', '\012', '\132', '\152', '\162', '\040',
'\145', '\162', '\040', '\061', '\012', '\132', '\153', '\160',
'\040', '\153', '\141', '\040', '\061', '\012', '\151', '\171',
'\110', '\040', '\151', '\156', '\040', '\061', '\012', '\167',
'\165', '\131', '\040', '\161', '\165', '\040', '\061', '\012',
'\155', '\172', '\124', '\040', '\163', '\172', '\040', '\061',
'\012', '\143', '\167', '\113', '\040', '\143', '\150', '\040',
'\061', '\012', '\142', '\103', '\155', '\040', '\155', '\145',
'\040', '\061', '\012', '\171', '\144', '\107', '\040', '\144',
'\145', '\040', '\061', '\012', '\170', '\144', '\125', '\040',
'\144', '\145', '\040', '\061', '\012', '\167', '\124', '\146',
'\040', '\167', '\141', '\040', '\061', '\012', '\154', '\110',
'\150', '\040', '\164', '\150', '\040', '\061', '\012', '\161',
'\171', '\104', '\040', '\161', '\165', '\040', '\061', '\012',
'\170', '\154', '\126', '\040', '\154', '\145', '\040', '\061',
'\012', '\161', '\171', '\124', '\040', '\161', '\165', '\040',
'\061', '\012', '\164', '\127', '\156', '\040', '\164', '\150',
'\040', '\061', '\012', '\162', '\115', '\172', '\040', '\145',
'\162', '\040', '\061', '\012', '\160', '\130', '\166', '\040',
'\166', '\141', '\040', '\061', '\012', '\130', '\142', '\172',
'\040', '\163', '\172', '\040', '\061', '\012', '\153', '\110',
'\155', '\040', '\153', '\141', '\040', '\061', '\012', '\143',
'\126', '\144', '\040', '\143', '\150', '\040', '\061', '\012',
'\161', '\172', '\110', '\040', '\161', '\165', '\040', '\061',
'\012', '\171', '\144', '\116', '\040', '\144', '\145', '\040',
'\061', '\012', '\161', '\115', '\142', '\040', '\161', '\165',
'\040', '\061', '\012', '\171', '\152', '\123', '\040', '\151',
'\152', '\040', '\061', '\012', '\147', '\155', '\103', '\040',
'\156', '\147', '\040', '\061', '\012', '\172', '\111', '\151',
'\040', '\151', '\156', '\040', '\061', '\012', '\146', '\160',
'\115', '\040', '\160', '\162', '\040', '\061', '\012', '\154',
'\143', '\132', '\040', '\143', '\150', '\040', '\061', '\012',
'\161', '\110', '\156', '\040', '\141', '\156', '\040', '\061',
'\012', '\112', '\152', '\144', '\040', '\144', '\145', '\040',
'\061', '\012', '\152', '\154', '\107', '\040', '\154', '\145',
'\040', '\061', '\012', '\161', '\143', '\113', '\040', '\143',
'\150', '\040', '\061', '\012', '\170', '\121', '\155', '\040',
'\155', '\145', '\040', '\061', '\012', '\166', '\111', '\151',
'\040', '\151', '\156', '\040', '\061', '\012', '\167', '\102',
'\160', '\040', '\160', '\162', '\040', '\061', '\012', '\167',
'\143', '\111', '\040', '\143', '\150', '\040', '\061', '\012',
'\144', '\112', '\144', '\040', '\144', '\145', '\040', '\061',
'\012', '\121', '\142', '\156', '\040', '\141', '\156', '\040',
'\061', '\012', '\102', '\152', '\146', '\040', '\151', '\152',
'\040', '\061', '\012', '\144', '\160', '\131', '\040', '\144',
'\145', '\040', '\061', '\012', '\144', '\143', '\106', '\040',
'\143', '\150', '\040', '\061', '\012', '\170', '\123', '\152',
'\040', '\151', '\152', '\040', '\061', '\012', '\151', '\130',
'\152', '\040', '\151', '\156', '\040', '\061', '\012', '\121',
'\147', '\142', '\040', '\156', '\147', '\040', '\061', '\012',
'\147', '\104', '\164', '\040', '\164', '\150', '\040', '\061',
'\012', '\170', '\170', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\170', '\143', '\121', '\040', '\143', '\150',
'\040', '\061', '\012', '\123', '\161', '\163', '\040', '\161',
'\165', '\040', '\061', '\012', '\121', '\155', '\147', '\040',
'\156', '\147', '\040', '\061', '\012', '\147', '\143', '\125',
'\040', '\143', '\150', '\040', '\061', '\012', '\102', '\166',
'\166', '\040', '\166', '\141', '\040', '\061', '\012', '\160',
'\172', '\105', '\040', '\163', '\172', '\040', '\061', '\012',
'\167', '\164', '\124', '\040', '\164', '\150', '\040', '\061',
'\012', '\166', '\142', '\114', '\040', '\166', '\141', '\040',
'\061', '\012', '\142', '\103', '\164', '\040', '\164', '\150',
'\040', '\061', '\012', '\121', '\160', '\157', '\040', '\157',
'\156', '\040', '\061', '\012', '\155', '\130', '\163', '\040',
'\155', '\145', '\040', '\061', '\012', '\132', '\161', '\162',
'\040', '\161', '\165', '\040', '\061', '\012', '\107', '\153',
'\171', '\040', '\153', '\141', '\040', '\061', '\012', '\130',
'\155', '\162', '\040', '\145', '\162', '\040', '\061', '\012',
'\114', '\156', '\172', '\040', '\141', '\156', '\040', '\061',
'\012', '\166', '\131', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\171', '\122', '\154', '\040', '\154', '\145',
'\040', '\061', '\012', '\147', '\155', '\113', '\040', '\156',
'\147', '\040', '\061', '\012', '\166', '\167', '\120', '\040',
'\166', '\141', '\040', '\061', '\012', '\145', '\106', '\147',
'\040', '\156', '\147', '\040', '\061', '\012', '\116', '\152',
'\144', '\040', '\144', '\145', '\040', '\061', '\012', '\153',
'\154', '\107', '\040', '\154', '\145', '\040', '\061', '\012',
'\150', '\142', '\105', '\040', '\164', '\150', '\040', '\061',
'\012', '\153', '\127', '\172', '\040', '\163', '\172', '\040',
'\061', '\012', '\161', '\160', '\115', '\040', '\161', '\165',
'\040', '\061', '\012', '\157', '\132', '\143', '\040', '\143',
'\150', '\040', '\061', '\012', '\152', '\122', '\155', '\040',
'\151', '\152', '\040', '\061', '\012', '\167', '\130', '\154',
'\040', '\154', '\145', '\040', '\061', '\012', '\151', '\171',
'\104', '\040', '\151', '\156', '\040', '\061', '\012', '\146',
'\166', '\114', '\040', '\166', '\141', '\040', '\061', '\012',
'\162', '\120', '\167', '\040', '\145', '\162', '\040', '\061',
'\012', '\146', '\144', '\122', '\040', '\144', '\145', '\040',
'\061', '\012', '\151', '\123', '\147', '\040', '\156', '\147',
'\040', '\061', '\012', '\144', '\142', '\121', '\040', '\144',
'\145', '\040', '\061', '\012', '\170', '\170', '\121', '\040',
'\170', '\145', '\040', '\061', '\012', '\104', '\152', '\143',
'\040', '\143', '\150', '\040', '\061', '\012', '\171', '\147',
'\113', '\040', '\156', '\147', '\040', '\061', '\012', '\122',
'\150', '\142', '\040', '\164', '\150', '\040', '\061', '\012',
'\172', '\147', '\107', '\040', '\156', '\147', '\040', '\061',
'\012', '\131', '\153', '\171', '\040', '\153', '\141', '\040',
'\061', '\012', '\103', '\170', '\152', '\040', '\151', '\152',
'\040', '\061', '\012', '\167', '\127', '\153', '\040', '\153',
'\141', '\040', '\061', '\012', '\154', '\155', '\131', '\040',
'\154', '\145', '\040', '\061', '\012', '\161', '\162', '\102',
'\040', '\161', '\165', '\040', '\061', '\012', '\171', '\167',
'\113', '\040', '\167', '\141', '\040', '\061', '\012', '\170',
'\161', '\111', '\040', '\161', '\165', '\040', '\061', '\012',
'\124', '\167', '\152', '\040', '\151', '\152', '\040', '\061',
'\012', '\130', '\147', '\161', '\040', '\156', '\147', '\040',
'\061', '\012', '\144', '\167', '\132', '\040', '\144', '\145',
'\040', '\061', '\012', '\156', '\121', '\154', '\040', '\141',
'\156', '\040', '\061', '\012', '\107', '\150', '\143', '\040',
'\164', '\150', '\040', '\061', '\012', '\160', '\156', '\110',
'\040', '\141', '\156', '\040', '\061', '\012', '\166', '\155',
'\125', '\040', '\166', '\141', '\040', '\061', '\012', '\161',
'\161', '\113', '\040', '\161', '\165', '\040', '\061', '\012',
'\143', '\152', '\102', '\040', '\143', '\150', '\040', '\061',
'\012', '\147', '\172', '\123', '\040', '\156', '\147', '\040',
'\061', '\012', '\122', '\167', '\172', '\040', '\163', '\172',
'\040', '\061', '\012', '\147', '\131', '\162', '\040', '\156',
'\147', '\040', '\061', '\012', '\106', '\147', '\170', '\040',
'\156', '\147', '\040', '\061', '\012', '\167', '\144', '\113',
'\040', '\144', '\145', '\040', '\061', '\012', '\150', '\170',
'\132', '\040', '\164', '\150', '\040', '\061', '\012', '\170',
'\125', '\170', '\040', '\170', '\145', '\040', '\061', '\012',
'\167', '\155', '\124', '\040', '\155', '\145', '\040', '\061',
'\012', '\171', '\131', '\153', '\040', '\153', '\141', '\040',
'\061', '\012', '\146', '\143', '\104', '\040', '\143', '\150',
'\040', '\061', '\012', '\150', '\126', '\166', '\040', '\164',
'\150', '\040', '\061', '\012', '\123', '\147', '\166', '\040',
'\156', '\147', '\040', '\061', '\012', '\172', '\120', '\156',
'\040', '\141', '\156', '\040', '\061', '\012', '\166', '\131',
'\142', '\040', '\166', '\141', '\040', '\061', '\012', '\142',
'\172', '\105', '\040', '\163', '\172', '\040', '\061', '\012',
'\167', '\150', '\126', '\040', '\164', '\150', '\040', '\061',
'\012', '\161', '\116', '\172', '\040', '\161', '\165', '\040',
'\061', '\012', '\167', '\164', '\123', '\040', '\164', '\150',
'\040', '\061', '\012', '\166', '\150', '\131', '\040', '\164',
'\150', '\040', '\061', '\012', '\156', '\114', '\146', '\040',
'\141', '\156', '\040', '\061', '\012', '\114', '\146', '\167',
'\040', '\167', '\141', '\040', '\061', '\012', '\147', '\126',
'\143', '\040', '\143', '\150', '\040', '\061', '\012', '\147',
'\153', '\123', '\040', '\156', '\147', '\040', '\061', '\012',
'\112', '\161', '\142', '\040', '\161', '\165', '\040', '\061',
'\012', '\150', '\127', '\170', '\040', '\164', '\150', '\040',
'\061', '\012', '\172', '\147', '\117', '\040', '\156', '\147',
'\040', '\061', '\012', '\164', '\147', '\130', '\040', '\164',
'\150', '\040', '\061', '\012', '\152', '\120', '\142', '\040',
'\151', '\152', '\040', '\061', '\012', '\127', '\170', '\142',
'\040', '\142', '\145', '\040', '\061', '\012', '\147', '\161',
'\167', '\040', '\156', '\147', '\040', '\061', '\012', '\103',
'\146', '\167', '\040', '\167', '\141', '\040', '\061', '\012',
'\167', '\157', '\125', '\040', '\157', '\156', '\040', '\061',
'\012', '\171', '\143', '\112', '\040', '\143', '\150', '\040',
'\061', '\012', '\153', '\167', '\104', '\040', '\153', '\141',
'\040', '\061', '\012', '\123', '\142', '\160', '\040', '\160',
'\162', '\040', '\061', '\012', '\161', '\143', '\167', '\040',
'\143', '\150', '\040', '\061', '\012', '\110', '\167', '\162',
'\040', '\145', '\162', '\040', '\061', '\012', '\142', '\155',
'\114', '\040', '\155', '\145', '\040', '\061', '\012', '\147',
'\167', '\132', '\040', '\156', '\147', '\040', '\061', '\012',
'\171', '\113', '\152', '\040', '\151', '\152', '\040', '\061',
'\012', '\146', '\130', '\166', '\040', '\166', '\141', '\040',
'\061', '\012', '\151', '\113', '\170', '\040', '\151', '\156',
'\040', '\061', '\012', '\154', '\122', '\172', '\040', '\154',
'\145', '\040', '\061', '\012', '\143', '\110', '\152', '\040',
'\143', '\150', '\040', '\061', '\012', '\146', '\106', '\164',
'\040', '\164', '\150', '\040', '\061', '\012', '\163', '\112',
'\166', '\040', '\163', '\172', '\040', '\061', '\012', '\170',
'\155', '\111', '\040', '\155', '\145', '\040', '\061', '\012',
'\143', '\103', '\144', '\040', '\143', '\150', '\040', '\061',
'\012', '\151', '\131', '\144', '\040', '\151', '\156', '\040',
'\061', '\012', '\171', '\146', '\131', '\040', '\156', '\171',
'\040', '\061', '\012', '\170', '\142', '\131', '\040', '\142',
'\145', '\040', '\061', '\012', '\142', '\155', '\105', '\040',
'\155', '\145', '\040', '\061', '\012', '\146', '\102', '\166',
'\040', '\166', '\141', '\040', '\061', '\012', '\144', '\110',
'\167', '\040', '\144', '\145', '\040', '\061', '\012', '\171',
'\143', '\122', '\040', '\143', '\150', '\040', '\061', '\012',
'\167', '\166', '\114', '\040', '\166', '\141', '\040', '\061',
'\012', '\162', '\152', '\114', '\040', '\145', '\162', '\040',
'\061', '\012', '\163', '\131', '\166', '\040', '\163', '\172',
'\040', '\061', '\012', '\127', '\160', '\156', '\040', '\141',
'\156', '\040', '\061', '\012', '\172', '\170', '\102', '\040',
'\163', '\172', '\040', '\061', '\012', '\171', '\102', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\147', '\144',
'\112', '\040', '\156', '\147', '\040', '\061', '\012', '\131',
'\152', '\157', '\040', '\157', '\156', '\040', '\061', '\012',
'\146', '\160', '\121', '\040', '\160', '\162', '\040', '\061',
'\012', '\161', '\117', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\127', '\152', '\146', '\040', '\151', '\152',
'\040', '\061', '\012', '\161', '\143', '\124', '\040', '\143',
'\150', '\040', '\061', '\012', '\114', '\146', '\150', '\040',
'\164', '\150', '\040', '\061', '\012', '\143', '\106', '\152',
'\040', '\143', '\150', '\040', '\061', '\012', '\154', '\115',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\167',
'\123', '\146', '\040', '\167', '\141', '\040', '\061', '\012',
'\167', '\121', '\143', '\040', '\143', '\150', '\040', '\061',
'\012', '\172', '\104', '\171', '\040', '\163', '\172', '\040',
'\061', '\012', '\161', '\162', '\154', '\040', '\161', '\165',
'\040', '\061', '\012', '\160', '\131', '\167', '\040', '\160',
'\162', '\040', '\061', '\012', '\126', '\156', '\146', '\040',
'\141', '\156', '\040', '\061', '\012', '\110', '\143', '\152',
'\040', '\143', '\150', '\040', '\061', '\012', '\172', '\144',
'\125', '\040', '\163', '\172', '\040', '\061', '\012', '\142',
'\166', '\120', '\040', '\166', '\141', '\040', '\061', '\012',
'\131', '\146', '\152', '\040', '\151', '\152', '\040', '\061',
'\012', '\121', '\153', '\156', '\040', '\141', '\156', '\040',
'\061', '\012', '\167', '\110', '\155', '\040', '\155', '\145',
'\040', '\061', '\012', '\161', '\126', '\166', '\040', '\161',
'\165', '\040', '\061', '\012', '\147', '\153', '\126', '\040',
'\156', '\147', '\040', '\061', '\012', '\166', '\160', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\150', '\106',
'\153', '\040', '\164', '\150', '\040', '\061', '\012', '\146',
'\127', '\146', '\040', '\146', '\157', '\040', '\061', '\012',
'\160', '\131', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\144', '\116', '\166', '\040', '\144', '\145', '\040',
'\061', '\012', '\127', '\167', '\152', '\040', '\151', '\152',
'\040', '\061', '\012', '\106', '\155', '\170', '\040', '\155',
'\145', '\040', '\061', '\012', '\155', '\104', '\154', '\040',
'\154', '\145', '\040', '\061', '\012', '\152', '\115', '\147',
'\040', '\156', '\147', '\040', '\061', '\012', '\146', '\132',
'\153', '\040', '\153', '\141', '\040', '\061', '\012', '\152',
'\116', '\160', '\040', '\151', '\152', '\040', '\061', '\012',
'\161', '\150', '\146', '\040', '\164', '\150', '\040', '\061',
'\012', '\126', '\142', '\147', '\040', '\156', '\147', '\040',
'\061', '\012', '\154', '\113', '\170', '\040', '\154', '\145',
'\040', '\061', '\012', '\151', '\132', '\170', '\040', '\151',
'\156', '\040', '\061', '\012', '\163', '\152', '\124', '\040',
'\163', '\172', '\040', '\061', '\012', '\151', '\152', '\131',
'\040', '\151', '\156', '\040', '\061', '\012', '\161', '\164',
'\126', '\040', '\164', '\150', '\040', '\061', '\012', '\171',
'\124', '\153', '\040', '\153', '\141', '\040', '\061', '\012',
'\110', '\160', '\172', '\040', '\163', '\172', '\040', '\061',
'\012', '\151', '\107', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\171', '\161', '\127', '\040', '\161', '\165',
'\040', '\061', '\012', '\150', '\147', '\106', '\040', '\164',
'\150', '\040', '\061', '\012', '\155', '\106', '\153', '\040',
'\153', '\141', '\040', '\061', '\012', '\117', '\161', '\167',
'\040', '\161', '\165', '\040', '\061', '\012', '\144', '\130',
'\141', '\040', '\141', '\156', '\040', '\061', '\012', '\132',
'\142', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\154', '\113', '\155', '\040', '\154', '\145', '\040', '\061',
'\012', '\123', '\166', '\172', '\040', '\163', '\172', '\040',
'\061', '\012', '\172', '\113', '\143', '\040', '\143', '\150',
'\040', '\061', '\012', '\126', '\155', '\172', '\040', '\163',
'\172', '\040', '\061', '\012', '\155', '\111', '\170', '\040',
'\155', '\145', '\040', '\061', '\012', '\147', '\113', '\152',
'\040', '\156', '\147', '\040', '\061', '\012', '\147', '\124',
'\164', '\040', '\164', '\150', '\040', '\061', '\012', '\166',
'\146', '\103', '\040', '\146', '\157', '\040', '\061', '\012',
'\150', '\113', '\147', '\040', '\164', '\150', '\040', '\061',
'\012', '\150', '\123', '\170', '\040', '\164', '\150', '\040',
'\061', '\012', '\157', '\113', '\147', '\040', '\156', '\147',
'\040', '\061', '\012', '\156', '\121', '\163', '\040', '\141',
'\156', '\040', '\061', '\012', '\171', '\151', '\107', '\040',
'\151', '\156', '\040', '\061', '\012', '\161', '\147', '\115',
'\040', '\156', '\147', '\040', '\061', '\012', '\153', '\121',
'\147', '\040', '\156', '\147', '\040', '\061', '\012', '\103',
'\152', '\144', '\040', '\144', '\145', '\040', '\061', '\012',
'\152', '\120', '\171', '\040', '\151', '\152', '\040', '\061',
'\012', '\130', '\161', '\145', '\040', '\161', '\165', '\040',
'\061', '\012', '\120', '\172', '\171', '\040', '\163', '\172',
'\040', '\061', '\012', '\106', '\164', '\161', '\040', '\164',
'\150', '\040', '\061', '\012', '\146', '\143', '\105', '\040',
'\143', '\150', '\040', '\061', '\012', '\155', '\153', '\114',
'\040', '\153', '\141', '\040', '\061', '\012', '\110', '\172',
'\152', '\040', '\163', '\172', '\040', '\061', '\012', '\142',
'\124', '\156', '\040', '\141', '\156', '\040', '\061', '\012',
'\161', '\130', '\171', '\040', '\161', '\165', '\040', '\061',
'\012', '\144', '\155', '\115', '\040', '\144', '\145', '\040',
'\061', '\012', '\144', '\126', '\170', '\040', '\144', '\145',
'\040', '\061', '\012', '\124', '\161', '\156', '\040', '\141',
'\156', '\040', '\061', '\012', '\170', '\127', '\152', '\040',
'\151', '\152', '\040', '\061', '\012', '\161', '\170', '\121',
'\040', '\161', '\165', '\040', '\061', '\012', '\146', '\121',
'\170', '\040', '\146', '\157', '\040', '\061', '\012', '\166',
'\114', '\154', '\040', '\154', '\145', '\040', '\061', '\012',
'\120', '\147', '\153', '\040', '\156', '\147', '\040', '\061',
'\012', '\147', '\110', '\153', '\040', '\156', '\147', '\040',
'\061', '\012', '\150', '\170', '\126', '\040', '\164', '\150',
'\040', '\061', '\012', '\164', '\112', '\172', '\040', '\164',
'\150', '\040', '\061', '\012', '\146', '\115', '\172', '\040',
'\163', '\172', '\040', '\061', '\012', '\111', '\170', '\142',
'\040', '\142', '\145', '\040', '\061', '\012', '\103', '\171',
'\171', '\040', '\156', '\171', '\040', '\061', '\012', '\160',
'\130', '\146', '\040', '\160', '\162', '\040', '\061', '\012',
'\160', '\114', '\154', '\040', '\154', '\145', '\040', '\061',
'\012', '\124', '\167', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\104', '\164', '\167', '\040', '\164', '\150',
'\040', '\061', '\012', '\167', '\122', '\156', '\040', '\141',
'\156', '\040', '\061', '\012', '\165', '\130', '\154', '\040',
'\161', '\165', '\040', '\061', '\012', '\172', '\150', '\161',
'\040', '\164', '\150', '\040', '\061', '\012', '\167', '\111',
'\166', '\040', '\166', '\141', '\040', '\061', '\012', '\143',
'\152', '\114', '\040', '\143', '\150', '\040', '\061', '\012',
'\161', '\170', '\110', '\040', '\161', '\165', '\040', '\061',
'\012', '\154', '\104', '\155', '\040', '\154', '\145', '\040',
'\061', '\012', '\164', '\130', '\166', '\040', '\164', '\150',
'\040', '\061', '\012', '\147', '\152', '\103', '\040', '\156',
'\147', '\040', '\061', '\012', '\132', '\172', '\144', '\040',
'\163', '\172', '\040', '\061', '\012', '\164', '\147', '\124',
'\040', '\164', '\150', '\040', '\061', '\012', '\150', '\156',
'\120', '\040', '\164', '\150', '\040', '\061', '\012', '\113',
'\152', '\143', '\040', '\143', '\150', '\040', '\061', '\012',
'\147', '\126', '\167', '\040', '\156', '\147', '\040', '\061',
'\012', '\170', '\142', '\111', '\040', '\142', '\145', '\040',
'\061', '\012', '\132', '\160', '\143', '\040', '\143', '\150',
'\040', '\061', '\012', '\142', '\146', '\117', '\040', '\142',
'\145', '\040', '\061', '\012', '\155', '\123', '\170', '\040',
'\155', '\145', '\040', '\061', '\012', '\161', '\141', '\106',
'\040', '\141', '\156', '\040', '\061', '\012', '\141', '\121',
'\150', '\040', '\164', '\150', '\040', '\061', '\012', '\110',
'\152', '\144', '\040', '\144', '\145', '\040', '\061', '\012',
'\161', '\130', '\152', '\040', '\161', '\165', '\040', '\061',
'\012', '\146', '\161', '\101', '\040', '\161', '\165', '\040',
'\061', '\012', '\142', '\166', '\122', '\040', '\166', '\141',
'\040', '\061', '\012', '\161', '\123', '\156', '\040', '\141',
'\156', '\040', '\061', '\012', '\143', '\144', '\126', '\040',
'\143', '\150', '\040', '\061', '\012', '\160', '\124', '\146',
'\040', '\160', '\162', '\040', '\061', '\012', '\113', '\172',
'\143', '\040', '\143', '\150', '\040', '\061', '\012', '\161',
'\164', '\111', '\040', '\164', '\150', '\040', '\061', '\012',
'\145', '\147', '\131', '\040', '\156', '\147', '\040', '\061',
'\012', '\122', '\170', '\164', '\040', '\164', '\150', '\040',
'\061', '\012', '\142', '\150', '\131', '\040', '\164', '\150',
'\040', '\061', '\012', '\160', '\107', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\152', '\104', '\147', '\040',
'\156', '\147', '\040', '\061', '\012', '\146', '\157', '\131',
'\040', '\157', '\156', '\040', '\061', '\012', '\144', '\113',
'\163', '\040', '\163', '\172', '\040', '\061', '\012', '\161',
'\112', '\164', '\040', '\164', '\150', '\040', '\061', '\012',
'\130', '\167', '\172', '\040', '\163', '\172', '\040', '\061',
'\012', '\111', '\170', '\147', '\040', '\156', '\147', '\040',
'\061', '\012', '\162', '\115', '\164', '\040', '\164', '\150',
'\040', '\061', '\012', '\172', '\130', '\165', '\040', '\161',
'\165', '\040', '\061', '\012', '\163', '\121', '\171', '\040',
'\163', '\172', '\040', '\061', '\012', '\116', '\160', '\172',
'\040', '\163', '\172', '\040', '\061', '\012', '\121', '\146',
'\172', '\040', '\163', '\172', '\040', '\061', '\012', '\162',
'\114', '\155', '\040', '\145', '\162', '\040', '\061', '\012',
'\172', '\107', '\155', '\040', '\163', '\172', '\040', '\061',
'\012', '\167', '\110', '\172', '\040', '\163', '\172', '\040',
'\061', '\012', '\166', '\143', '\131', '\040', '\143', '\150',
'\040', '\061', '\012', '\153', '\161', '\132', '\040', '\161',
'\165', '\040', '\061', '\012', '\152', '\104', '\150', '\040',
'\164', '\150', '\040', '\061', '\012', '\161', '\147', '\107',
'\040', '\156', '\147', '\040', '\061', '\012', '\104', '\161',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\146',
'\155', '\117', '\040', '\155', '\145', '\040', '\061', '\012',
'\161', '\144', '\127', '\040', '\161', '\165', '\040', '\061',
'\012', '\144', '\116', '\167', '\040', '\144', '\145', '\040',
'\061', '\012', '\162', '\130', '\152', '\040', '\145', '\162',
'\040', '\061', '\012', '\112', '\167', '\143', '\040', '\143',
'\150', '\040', '\061', '\012', '\155', '\104', '\142', '\040',
'\155', '\145', '\040', '\061', '\012', '\167', '\115', '\167',
'\040', '\167', '\141', '\040', '\061', '\012', '\131', '\152',
'\147', '\040', '\156', '\147', '\040', '\061', '\012', '\146',
'\152', '\131', '\040', '\151', '\152', '\040', '\061', '\012',
'\151', '\112', '\142', '\040', '\151', '\156', '\040', '\061',
'\012', '\143', '\144', '\103', '\040', '\143', '\150', '\040',
'\061', '\012', '\131', '\170', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\126', '\142', '\153', '\040', '\153',
'\141', '\040', '\061', '\012', '\106', '\160', '\170', '\040',
'\160', '\162', '\040', '\061', '\012', '\172', '\150', '\104',
'\040', '\164', '\150', '\040', '\061', '\012', '\150', '\103',
'\163', '\040', '\164', '\150', '\040', '\061', '\012', '\144',
'\130', '\167', '\040', '\144', '\145', '\040', '\061', '\012',
'\153', '\104', '\144', '\040', '\144', '\145', '\040', '\061',
'\012', '\165', '\161', '\124', '\040', '\165', '\156', '\040',
'\061', '\012', '\102', '\170', '\167', '\040', '\167', '\141',
'\040', '\061', '\012', '\102', '\152', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\152', '\107', '\170', '\040',
'\151', '\152', '\040', '\061', '\012', '\146', '\130', '\142',
'\040', '\142', '\145', '\040', '\061', '\012', '\171', '\142',
'\106', '\040', '\142', '\145', '\040', '\061', '\012', '\144',
'\164', '\101', '\040', '\164', '\150', '\040', '\061', '\012',
'\143', '\126', '\166', '\040', '\143', '\150', '\040', '\061',
'\012', '\103', '\142', '\144', '\040', '\144', '\145', '\040',
'\061', '\012', '\167', '\164', '\110', '\040', '\164', '\150',
'\040', '\061', '\012', '\113', '\144', '\152', '\040', '\144',
'\145', '\040', '\061', '\012', '\153', '\120', '\163', '\040',
'\163', '\172', '\040', '\061', '\012', '\132', '\166', '\153',
'\040', '\153', '\141', '\040', '\061', '\012', '\170', '\120',
'\166', '\040', '\166', '\141', '\040', '\061', '\012', '\167',
'\157', '\110', '\040', '\157', '\156', '\040', '\061', '\012',
'\130', '\160', '\172', '\040', '\163', '\172', '\040', '\061',
'\012', '\161', '\130', '\145', '\040', '\161', '\165', '\040',
'\061', '\012', '\160', '\124', '\152', '\040', '\151', '\152',
'\040', '\061', '\012', '\153', '\167', '\121', '\040', '\153',
'\141', '\040', '\061', '\012', '\153', '\132', '\146', '\040',
'\153', '\141', '\040', '\061', '\012', '\125', '\161', '\152',
'\040', '\161', '\165', '\040', '\061', '\012', '\171', '\112',
'\150', '\040', '\164', '\150', '\040', '\061', '\012', '\150',
'\103', '\161', '\040', '\164', '\150', '\040', '\061', '\012',
'\152', '\115', '\152', '\040', '\151', '\152', '\040', '\061',
'\012', '\160', '\150', '\131', '\040', '\164', '\150', '\040',
'\061', '\012', '\153', '\142', '\102', '\040', '\153', '\141',
'\040', '\061', '\012', '\107', '\160', '\172', '\040', '\163',
'\172', '\040', '\061', '\012', '\163', '\107', '\172', '\040',
'\163', '\164', '\040', '\061', '\012', '\146', '\167', '\105',
'\040', '\167', '\141', '\040', '\061', '\012', '\124', '\164',
'\146', '\040', '\164', '\150', '\040', '\061', '\012', '\107',
'\161', '\155', '\040', '\161', '\165', '\040', '\061', '\012',
'\142', '\172', '\116', '\040', '\163', '\172', '\040', '\061',
'\012', '\146', '\153', '\117', '\040', '\153', '\141', '\040',
'\061', '\012', '\165', '\172', '\127', '\040', '\161', '\165',
'\040', '\061', '\012', '\157', '\170', '\121', '\040', '\157',
'\156', '\040', '\061', '\012', '\126', '\147', '\155', '\040',
'\156', '\147', '\040', '\061', '\012', '\161', '\155', '\104',
'\040', '\161', '\165', '\040', '\061', '\012', '\170', '\161',
'\156', '\040', '\141', '\156', '\040', '\061', '\012', '\166',
'\122', '\154', '\040', '\154', '\145', '\040', '\061', '\012',
'\124', '\156', '\162', '\040', '\141', '\156', '\040', '\061',
'\012', '\172', '\152', '\127', '\040', '\163', '\172', '\040',
'\061', '\012', '\166', '\167', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\152', '\164', '\127', '\040', '\164',
'\150', '\040', '\061', '\012', '\161', '\156', '\114', '\040',
'\141', '\156', '\040', '\061', '\012', '\171', '\104', '\170',
'\040', '\156', '\171', '\040', '\061', '\012', '\170', '\146',
'\121', '\040', '\146', '\157', '\040', '\061', '\012', '\167',
'\170', '\112', '\040', '\167', '\141', '\040', '\061', '\012',
'\156', '\170', '\105', '\040', '\141', '\156', '\040', '\061',
'\012', '\166', '\121', '\156', '\040', '\151', '\156', '\040',
'\061', '\012', '\127', '\153', '\150', '\040', '\164', '\150',
'\040', '\061', '\012', '\171', '\167', '\104', '\040', '\167',
'\141', '\040', '\061', '\012', '\160', '\106', '\146', '\040',
'\160', '\162', '\040', '\061', '\012', '\154', '\142', '\113',
'\040', '\154', '\145', '\040', '\061', '\012', '\166', '\110',
'\171', '\040', '\166', '\141', '\040', '\061', '\012', '\147',
'\126', '\152', '\040', '\156', '\147', '\040', '\061', '\012',
'\117', '\161', '\150', '\040', '\164', '\150', '\040', '\061',
'\012', '\142', '\143', '\116', '\040', '\143', '\150', '\040',
'\061', '\012', '\164', '\127', '\155', '\040', '\164', '\150',
'\040', '\061', '\012', '\167', '\115', '\143', '\040', '\143',
'\150', '\040', '\061', '\012', '\156', '\167', '\121', '\040',
'\141', '\156', '\040', '\061', '\012', '\161', '\156', '\115',
'\040', '\141', '\156', '\040', '\061', '\012', '\132', '\164',
'\170', '\040', '\164', '\150', '\040', '\061', '\012', '\156',
'\121', '\152', '\040', '\141', '\156', '\040', '\061', '\012',
'\126', '\170', '\164', '\040', '\164', '\150', '\040', '\061',
'\012', '\125', '\170', '\143', '\040', '\143', '\150', '\040',
'\061', '\012', '\160', '\127', '\166', '\040', '\166', '\141',
'\040', '\061', '\012', '\171', '\122', '\170', '\040', '\156',
'\171', '\040', '\061', '\012', '\161', '\113', '\165', '\040',
'\165', '\156', '\040', '\061', '\012', '\152', '\130', '\147',
'\040', '\156', '\147', '\040', '\061', '\012', '\152', '\160',
'\130', '\040', '\151', '\152', '\040', '\061', '\012', '\144',
'\153', '\107', '\040', '\144', '\145', '\040', '\061', '\012',
'\102', '\156', '\146', '\040', '\141', '\156', '\040', '\061',
'\012', '\131', '\153', '\146', '\040', '\153', '\141', '\040',
'\061', '\012', '\147', '\142', '\127', '\040', '\156', '\147',
'\040', '\061', '\012', '\153', '\154', '\130', '\040', '\154',
'\145', '\040', '\061', '\012', '\166', '\153', '\110', '\040',
'\153', '\141', '\040', '\061', '\012', '\144', '\113', '\144',
'\040', '\144', '\145', '\040', '\061', '\012', '\113', '\160',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\147',
'\161', '\115', '\040', '\156', '\147', '\040', '\061', '\012',
'\171', '\102', '\172', '\040', '\163', '\172', '\040', '\061',
'\012', '\162', '\120', '\152', '\040', '\145', '\162', '\040',
'\061', '\012', '\110', '\172', '\166', '\040', '\163', '\172',
'\040', '\061', '\012', '\167', '\131', '\172', '\040', '\163',
'\172', '\040', '\061', '\012', '\161', '\107', '\141', '\040',
'\141', '\156', '\040', '\061', '\012', '\152', '\111', '\163',
'\040', '\163', '\172', '\040', '\061', '\012', '\142', '\125',
'\152', '\040', '\151', '\152', '\040', '\061', '\012', '\162',
'\124', '\164', '\040', '\164', '\150', '\040', '\061', '\012',
'\156', '\161', '\111', '\040', '\141', '\156', '\040', '\061',
'\012', '\152', '\146', '\120', '\040', '\151', '\152', '\040',
'\061', '\012', '\150', '\122', '\164', '\040', '\164', '\150',
'\040', '\061', '\012', '\171', '\122', '\162', '\040', '\145',
'\162', '\040', '\061', '\012', '\152', '\152', '\113', '\040',
'\151', '\152', '\040', '\061', '\012', '\164', '\146', '\105',
'\040', '\164', '\150', '\040', '\061', '\012', '\121', '\163',
'\167', '\040', '\163', '\164', '\040', '\061', '\012', '\106',
'\143', '\155', '\040', '\143', '\150', '\040', '\061', '\012',
'\142', '\112', '\155', '\040', '\155', '\145', '\040', '\061',
'\012', '\164', '\130', '\161', '\040', '\164', '\150', '\040',
'\061', '\012', '\146', '\122', '\154', '\040', '\154', '\145',
'\040', '\061', '\012', '\147', '\161', '\105', '\040', '\156',
'\147', '\040', '\061', '\012', '\167', '\107', '\147', '\040',
'\156', '\147', '\040', '\061', '\012', '\147', '\113', '\143',
'\040', '\143', '\150', '\040', '\061', '\012', '\171', '\130',
'\143', '\040', '\143', '\150', '\040', '\061', '\012', '\172',
'\102', '\171', '\040', '\163', '\172', '\040', '\061', '\012',
'\154', '\124', '\144', '\040', '\154', '\145', '\040', '\061',
'\012', '\127', '\161', '\143', '\040', '\143', '\150', '\040',
'\061', '\012', '\106', '\164', '\146', '\040', '\164', '\150',
'\040', '\061', '\012', '\167', '\144', '\102', '\040', '\144',
'\145', '\040', '\061', '\012', '\170', '\156', '\130', '\040',
'\141', '\156', '\040', '\061', '\012', '\102', '\161', '\143',
'\040', '\143', '\150', '\040', '\061', '\012', '\172', '\161',
'\117', '\040', '\161', '\165', '\040', '\061', '\012', '\121',
'\144', '\154', '\040', '\154', '\145', '\040', '\061', '\012',
'\157', '\152', '\112', '\040', '\157', '\156', '\040', '\061',
'\012', '\161', '\132', '\156', '\040', '\141', '\156', '\040',
'\061', '\012', '\150', '\172', '\127', '\040', '\164', '\150',
'\040', '\061', '\012', '\171', '\154', '\121', '\040', '\154',
'\145', '\040', '\061', '\012', '\132', '\142', '\167', '\040',
'\167', '\141', '\040', '\061', '\012', '\155', '\166', '\114',
'\040', '\166', '\141', '\040', '\061', '\012', '\114', '\152',
'\142', '\040', '\151', '\152', '\040', '\061', '\012', '\107',
'\161', '\145', '\040', '\161', '\165', '\040', '\061', '\012',
'\155', '\146', '\105', '\040', '\155', '\145', '\040', '\061',
'\012', '\170', '\121', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\146', '\114', '\166', '\040', '\166', '\141',
'\040', '\061', '\012', '\170', '\114', '\164', '\040', '\164',
'\150', '\040', '\061', '\012', '\167', '\102', '\152', '\040',
'\151', '\152', '\040', '\061', '\012', '\152', '\125', '\155',
'\040', '\151', '\152', '\040', '\061', '\012', '\160', '\144',
'\114', '\040', '\144', '\145', '\040', '\061', '\012', '\155',
'\112', '\166', '\040', '\166', '\141', '\040', '\061', '\012',
'\144', '\170', '\125', '\040', '\144', '\145', '\040', '\061',
'\012', '\170', '\161', '\116', '\040', '\161', '\165', '\040',
'\061', '\012', '\146', '\160', '\107', '\040', '\160', '\162',
'\040', '\061', '\012', '\164', '\154', '\117', '\040', '\164',
'\150', '\040', '\061', '\012', '\167', '\150', '\114', '\040',
'\164', '\150', '\040', '\061', '\012', '\153', '\104', '\170',
'\040', '\153', '\141', '\040', '\061', '\012', '\122', '\161',
'\142', '\040', '\161', '\165', '\040', '\061', '\012', '\165',
'\166', '\130', '\040', '\161', '\165', '\040', '\061', '\012',
'\166', '\152', '\131', '\040', '\151', '\152', '\040', '\061',
'\012', '\143', '\162', '\121', '\040', '\143', '\150', '\040',
'\061', '\012', '\170', '\171', '\131', '\040', '\156', '\171',
'\040', '\061', '\012', '\171', '\150', '\121', '\040', '\164',
'\150', '\040', '\061', '\012', '\171', '\131', '\143', '\040',
'\143', '\150', '\040', '\061', '\012', '\114', '\155', '\147',
'\040', '\156', '\147', '\040', '\061', '\012', '\112', '\163',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\107',
'\142', '\152', '\040', '\151', '\152', '\040', '\061', '\012',
'\141', '\120', '\142', '\040', '\141', '\156', '\040', '\061',
'\012', '\144', '\167', '\112', '\040', '\144', '\145', '\040',
'\061', '\012', '\130', '\171', '\166', '\040', '\166', '\141',
'\040', '\061', '\012', '\165', '\143', '\112', '\040', '\143',
'\150', '\040', '\061', '\012', '\144', '\124', '\146', '\040',
'\144', '\145', '\040', '\061', '\012', '\154', '\102', '\142',
'\040', '\154', '\145', '\040', '\061', '\012', '\150', '\113',
'\172', '\040', '\164', '\150', '\040', '\061', '\012', '\152',
'\143', '\122', '\040', '\143', '\150', '\040', '\061', '\012',
'\145', '\121', '\143', '\040', '\143', '\150', '\040', '\061',
'\012', '\161', '\131', '\151', '\040', '\151', '\156', '\040',
'\061', '\012', '\126', '\164', '\142', '\040', '\164', '\150',
'\040', '\061', '\012', '\103', '\143', '\147', '\040', '\143',
'\150', '\040', '\061', '\012', '\172', '\101', '\145', '\040',
'\145', '\162', '\040', '\061', '\012', '\147', '\170', '\112',
'\040', '\156', '\147', '\040', '\061', '\012', '\165', '\166',
'\103', '\040', '\161', '\165', '\040', '\061', '\012', '\102',
'\150', '\155', '\040', '\155', '\141', '\040', '\061', '\012',
'\132', '\147', '\170', '\040', '\156', '\147', '\040', '\061',
'\012', '\171', '\172', '\112', '\040', '\163', '\172', '\040',
'\061', '\012', '\143', '\166', '\112', '\040', '\143', '\150',
'\040', '\061', '\012', '\170', '\124', '\153', '\040', '\153',
'\141', '\040', '\061', '\012', '\161', '\144', '\113', '\040',
'\161', '\165', '\040', '\061', '\012', '\166', '\167', '\107',
'\040', '\166', '\141', '\040', '\061', '\012', '\131', '\155',
'\170', '\040', '\155', '\145', '\040', '\061', '\012', '\157',
'\131', '\167', '\040', '\157', '\156', '\040', '\061', '\012',
'\152', '\130', '\170', '\040', '\151', '\152', '\040', '\061',
'\012', '\171', '\167', '\146', '\040', '\167', '\141', '\040',
'\061', '\012', '\166', '\126', '\170', '\040', '\166', '\151',
'\040', '\061', '\012', '\122', '\167', '\155', '\040', '\155',
'\145', '\040', '\061', '\012', '\104', '\166', '\153', '\040',
'\153', '\141', '\040', '\061', '\012', '\170', '\113', '\164',
'\040', '\164', '\150', '\040', '\061', '\012', '\161', '\114',
'\160', '\040', '\161', '\165', '\040', '\061', '\012', '\131',
'\171', '\166', '\040', '\166', '\151', '\040', '\061', '\012',
'\103', '\161', '\141', '\040', '\141', '\156', '\040', '\061',
'\012', '\170', '\122', '\146', '\040', '\146', '\157', '\040',
'\061', '\012', '\121', '\161', '\153', '\040', '\161', '\165',
'\040', '\061', '\012', '\112', '\161', '\145', '\040', '\161',
'\165', '\040', '\061', '\012', '\171', '\132', '\147', '\040',
'\156', '\147', '\040', '\061', '\012', '\166', '\161', '\107',
'\040', '\161', '\165', '\040', '\061', '\012', '\150', '\142',
'\117', '\040', '\164', '\150', '\040', '\061', '\012', '\165',
'\126', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\122', '\154', '\155', '\040', '\154', '\145', '\040', '\061',
'\012', '\165', '\132', '\143', '\040', '\143', '\150', '\040',
'\061', '\012', '\120', '\160', '\166', '\040', '\166', '\141',
'\040', '\061', '\012', '\160', '\126', '\144', '\040', '\144',
'\145', '\040', '\061', '\012', '\171', '\126', '\144', '\040',
'\144', '\145', '\040', '\061', '\012', '\172', '\112', '\154',
'\040', '\154', '\145', '\040', '\061', '\012', '\131', '\172',
'\147', '\040', '\156', '\147', '\040', '\061', '\012', '\103',
'\166', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\160', '\167', '\123', '\040', '\160', '\162', '\040', '\061',
'\012', '\113', '\153', '\167', '\040', '\153', '\141', '\040',
'\061', '\012', '\127', '\166', '\166', '\040', '\166', '\141',
'\040', '\061', '\012', '\106', '\144', '\171', '\040', '\144',
'\145', '\040', '\061', '\012', '\160', '\160', '\130', '\040',
'\160', '\162', '\040', '\061', '\012', '\150', '\166', '\103',
'\040', '\164', '\150', '\040', '\061', '\012', '\151', '\167',
'\107', '\040', '\151', '\156', '\040', '\061', '\012', '\162',
'\102', '\147', '\040', '\156', '\147', '\040', '\061', '\012',
'\150', '\102', '\161', '\040', '\164', '\150', '\040', '\061',
'\012', '\156', '\131', '\163', '\040', '\141', '\156', '\040',
'\061', '\012', '\153', '\143', '\117', '\040', '\143', '\150',
'\040', '\061', '\012', '\161', '\105', '\145', '\040', '\161',
'\165', '\040', '\061', '\012', '\131', '\142', '\166', '\040',
'\166', '\141', '\040', '\061', '\012', '\121', '\163', '\156',
'\040', '\141', '\156', '\040', '\061', '\012', '\163', '\166',
'\103', '\040', '\163', '\164', '\040', '\061', '\012', '\161',
'\153', '\104', '\040', '\161', '\165', '\040', '\061', '\012',
'\121', '\151', '\167', '\040', '\151', '\156', '\040', '\061',
'\012', '\107', '\164', '\152', '\040', '\164', '\150', '\040',
'\061', '\012', '\161', '\101', '\150', '\040', '\164', '\150',
'\040', '\061', '\012', '\167', '\126', '\171', '\040', '\167',
'\141', '\040', '\061', '\012', '\142', '\170', '\124', '\040',
'\142', '\145', '\040', '\061', '\012', '\121', '\150', '\163',
'\040', '\164', '\150', '\040', '\061', '\012', '\164', '\154',
'\130', '\040', '\164', '\150', '\040', '\061', '\012', '\150',
'\142', '\101', '\040', '\164', '\150', '\040', '\061', '\012',
'\121', '\146', '\142', '\040', '\142', '\145', '\040', '\061',
'\012', '\170', '\127', '\154', '\040', '\154', '\145', '\040',
'\061', '\012', '\170', '\145', '\126', '\040', '\145', '\162',
'\040', '\061', '\012', '\162', '\161', '\107', '\040', '\161',
'\165', '\040', '\061', '\012', '\166', '\161', '\132', '\040',
'\161', '\165', '\040', '\061', '\012', '\152', '\113', '\166',
'\040', '\151', '\152', '\040', '\061', '\012', '\151', '\124',
'\146', '\040', '\151', '\156', '\040', '\061', '\012', '\153',
'\167', '\125', '\040', '\153', '\141', '\040', '\061', '\012',
'\151', '\106', '\161', '\040', '\151', '\156', '\040', '\061',
'\012', '\155', '\152', '\132', '\040', '\151', '\152', '\040',
'\061', '\012', '\170', '\147', '\112', '\040', '\156', '\147',
'\040', '\061', '\012', '\172', '\114', '\160', '\040', '\163',
'\172', '\040', '\061', '\012', '\161', '\163', '\122', '\040',
'\161', '\165', '\040', '\061', '\012', '\172', '\104', '\152',
'\040', '\163', '\172', '\040', '\061', '\012', '\160', '\144',
'\106', '\040', '\144', '\145', '\040', '\061', '\012', '\167',
'\170', '\116', '\040', '\167', '\141', '\040', '\061', '\012',
'\167', '\107', '\153', '\040', '\153', '\141', '\040', '\061',
'\012', '\144', '\125', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\144', '\112', '\167', '\040', '\144', '\145',
'\040', '\061', '\012', '\146', '\103', '\142', '\040', '\142',
'\145', '\040', '\061', '\012', '\104', '\150', '\172', '\040',
'\164', '\150', '\040', '\061', '\012', '\171', '\111', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\141', '\121',
'\155', '\040', '\141', '\156', '\040', '\061', '\012', '\131',
'\172', '\163', '\040', '\163', '\164', '\040', '\061', '\012',
'\166', '\110', '\146', '\040', '\166', '\141', '\040', '\061',
'\012', '\142', '\152', '\126', '\040', '\151', '\152', '\040',
'\061', '\012', '\172', '\123', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\127', '\161', '\163', '\040', '\161',
'\165', '\040', '\061', '\012', '\152', '\162', '\127', '\040',
'\145', '\162', '\040', '\061', '\012', '\110', '\172', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\167', '\127',
'\163', '\040', '\163', '\164', '\040', '\061', '\012', '\115',
'\153', '\147', '\040', '\156', '\147', '\040', '\061', '\012',
'\172', '\147', '\106', '\040', '\156', '\147', '\040', '\061',
'\012', '\103', '\156', '\153', '\040', '\141', '\156', '\040',
'\061', '\012', '\162', '\104', '\147', '\040', '\156', '\147',
'\040', '\061', '\012', '\146', '\172', '\102', '\040', '\163',
'\172', '\040', '\061', '\012', '\146', '\117', '\155', '\040',
'\155', '\145', '\040', '\061', '\012', '\165', '\126', '\164',
'\040', '\164', '\150', '\040', '\061', '\012', '\121', '\146',
'\151', '\040', '\151', '\156', '\040', '\061', '\012', '\115',
'\150', '\152', '\040', '\164', '\150', '\040', '\061', '\012',
'\165', '\131', '\152', '\040', '\161', '\165', '\040', '\061',
'\012', '\122', '\161', '\170', '\040', '\161', '\165', '\040',
'\061', '\012', '\150', '\153', '\131', '\040', '\164', '\150',
'\040', '\061', '\012', '\167', '\131', '\142', '\040', '\167',
'\141', '\040', '\061', '\012', '\164', '\161', '\120', '\040',
'\164', '\150', '\040', '\061', '\012', '\112', '\160', '\142',
'\040', '\160', '\162', '\040', '\061', '\012', '\142', '\107',
'\167', '\040', '\167', '\141', '\040', '\061', '\012', '\170',
'\106', '\150', '\040', '\164', '\150', '\040', '\061', '\012',
'\130', '\167', '\142', '\040', '\167', '\141', '\040', '\061',
'\012', '\113', '\147', '\164', '\040', '\164', '\150', '\040',
'\061', '\012', '\111', '\161', '\143', '\040', '\143', '\150',
'\040', '\061', '\012', '\160', '\112', '\155', '\040', '\155',
'\145', '\040', '\061', '\012', '\121', '\153', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\142', '\126', '\150',
'\040', '\164', '\150', '\040', '\061', '\012', '\171', '\124',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\172',
'\132', '\147', '\040', '\156', '\147', '\040', '\061', '\012',
'\143', '\104', '\172', '\040', '\143', '\150', '\040', '\061',
'\012', '\161', '\146', '\155', '\040', '\161', '\165', '\040',
'\061', '\012', '\141', '\146', '\121', '\040', '\141', '\156',
'\040', '\061', '\012', '\121', '\167', '\143', '\040', '\143',
'\150', '\040', '\061', '\012', '\142', '\144', '\112', '\040',
'\144', '\145', '\040', '\061', '\012', '\161', '\124', '\165',
'\040', '\165', '\156', '\040', '\061', '\012', '\125', '\143',
'\170', '\040', '\143', '\150', '\040', '\061', '\012', '\110',
'\156', '\170', '\040', '\141', '\156', '\040', '\061', '\012',
'\110', '\142', '\150', '\040', '\164', '\150', '\040', '\061',
'\012', '\147', '\171', '\110', '\040', '\156', '\147', '\040',
'\061', '\012', '\164', '\124', '\172', '\040', '\164', '\150',
'\040', '\061', '\012', '\164', '\170', '\126', '\040', '\164',
'\150', '\040', '\061', '\012', '\142', '\144', '\123', '\040',
'\144', '\145', '\040', '\061', '\012', '\127', '\147', '\147',
'\040', '\156', '\147', '\040', '\061', '\012', '\157', '\161',
'\120', '\040', '\161', '\165', '\040', '\061', '\012', '\122',
'\162', '\146', '\040', '\145', '\162', '\040', '\061', '\012',
'\147', '\131', '\171', '\040', '\156', '\147', '\040', '\061',
'\012', '\146', '\115', '\163', '\040', '\163', '\164', '\040',
'\061', '\012', '\146', '\113', '\144', '\040', '\144', '\145',
'\040', '\061', '\012', '\110', '\171', '\170', '\040', '\156',
'\171', '\040', '\061', '\012', '\115', '\170', '\172', '\040',
'\163', '\172', '\040', '\061', '\012', '\161', '\110', '\153',
'\040', '\161', '\165', '\040', '\061', '\012', '\164', '\146',
'\115', '\040', '\164', '\150', '\040', '\061', '\012', '\150',
'\147', '\121', '\040', '\164', '\150', '\040', '\061', '\012',
'\172', '\155', '\117', '\040', '\163', '\172', '\040', '\061',
'\012', '\167', '\172', '\123', '\040', '\163', '\172', '\040',
'\061', '\012', '\152', '\167', '\121', '\040', '\151', '\152',
'\040', '\061', '\012', '\106', '\150', '\143', '\040', '\151',
'\143', '\040', '\061', '\012', '\170', '\111', '\171', '\040',
'\156', '\171', '\040', '\061', '\012', '\146', '\110', '\147',
'\040', '\156', '\147', '\040', '\061', '\012', '\167', '\161',
'\131', '\040', '\161', '\165', '\040', '\061', '\012', '\142',
'\106', '\160', '\040', '\160', '\162', '\040', '\061', '\012',
'\121', '\144', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\142', '\150', '\126', '\040', '\164', '\150', '\040',
'\061', '\012', '\142', '\103', '\147', '\040', '\156', '\147',
'\040', '\061', '\012', '\110', '\147', '\162', '\040', '\156',
'\147', '\040', '\061', '\012', '\170', '\161', '\114', '\040',
'\161', '\165', '\040', '\061', '\012', '\161', '\147', '\123',
'\040', '\156', '\147', '\040', '\061', '\012', '\116', '\161',
'\147', '\040', '\156', '\147', '\040', '\061', '\012', '\146',
'\121', '\166', '\040', '\166', '\141', '\040', '\061', '\012',
'\121', '\172', '\167', '\040', '\163', '\172', '\040', '\061',
'\012', '\111', '\170', '\144', '\040', '\144', '\145', '\040',
'\061', '\012', '\103', '\170', '\155', '\040', '\155', '\145',
'\040', '\061', '\012', '\155', '\170', '\116', '\040', '\155',
'\145', '\040', '\061', '\012', '\166', '\121', '\151', '\040',
'\151', '\156', '\040', '\061', '\012', '\143', '\101', '\161',
'\040', '\143', '\150', '\040', '\061', '\012', '\145', '\103',
'\170', '\040', '\145', '\162', '\040', '\061', '\012', '\155',
'\161', '\130', '\040', '\161', '\165', '\040', '\061', '\012',
'\162', '\161', '\131', '\040', '\161', '\165', '\040', '\061',
'\012', '\146', '\126', '\160', '\040', '\160', '\162', '\040',
'\061', '\012', '\161', '\157', '\120', '\040', '\161', '\165',
'\040', '\061', '\012', '\107', '\170', '\143', '\040', '\143',
'\150', '\040', '\061', '\012', '\166', '\172', '\130', '\040',
'\163', '\172', '\040', '\061', '\012', '\146', '\130', '\146',
'\040', '\146', '\157', '\040', '\061', '\012', '\121', '\164',
'\143', '\040', '\164', '\150', '\040', '\061', '\012', '\157',
'\150', '\121', '\040', '\164', '\150', '\040', '\061', '\012',
'\131', '\147', '\171', '\040', '\156', '\147', '\040', '\061',
'\012', '\130', '\156', '\142', '\040', '\141', '\156', '\040',
'\061', '\012', '\143', '\127', '\155', '\040', '\143', '\150',
'\040', '\061', '\012', '\152', '\130', '\167', '\040', '\151',
'\152', '\040', '\061', '\012', '\147', '\127', '\152', '\040',
'\156', '\147', '\040', '\061', '\012', '\113', '\155', '\147',
'\040', '\156', '\147', '\040', '\061', '\012', '\166', '\166',
'\110', '\040', '\166', '\141', '\040', '\061', '\012', '\125',
'\145', '\167', '\040', '\145', '\162', '\040', '\061', '\012',
'\161', '\112', '\153', '\040', '\161', '\165', '\040', '\061',
'\012', '\110', '\153', '\144', '\040', '\144', '\145', '\040',
'\061', '\012', '\170', '\155', '\120', '\040', '\155', '\145',
'\040', '\061', '\012', '\163', '\154', '\122', '\040', '\151',
'\163', '\040', '\061', '\012', '\125', '\141', '\161', '\040',
'\141', '\156', '\040', '\061', '\012', '\172', '\142', '\107',
'\040', '\163', '\172', '\040', '\061', '\012', '\166', '\116',
'\166', '\040', '\166', '\141', '\040', '\061', '\012', '\143',
'\126', '\142', '\040', '\143', '\150', '\040', '\061', '\012',
'\142', '\107', '\147', '\040', '\156', '\147', '\040', '\061',
'\012', '\151', '\167', '\125', '\040', '\151', '\156', '\040',
'\061', '\012', '\103', '\156', '\167', '\040', '\141', '\156',
'\040', '\061', '\012', '\162', '\130', '\144', '\040', '\145',
'\162', '\040', '\061', '\012', '\166', '\127', '\172', '\040',
'\163', '\172', '\040', '\061', '\012', '\164', '\107', '\146',
'\040', '\164', '\150', '\040', '\061', '\012', '\146', '\142',
'\131', '\040', '\142', '\145', '\040', '\061', '\012', '\150',
'\172', '\160', '\040', '\164', '\150', '\040', '\061', '\012',
'\165', '\127', '\172', '\040', '\161', '\165', '\040', '\061',
'\012', '\142', '\115', '\142', '\040', '\142', '\145', '\040',
'\061', '\012', '\152', '\172', '\127', '\040', '\163', '\172',
'\040', '\061', '\012', '\147', '\114', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\153', '\132', '\143', '\040',
'\143', '\150', '\040', '\061', '\012', '\153', '\110', '\147',
'\040', '\156', '\147', '\040', '\061', '\012', '\126', '\167',
'\146', '\040', '\167', '\141', '\040', '\061', '\012', '\166',
'\164', '\131', '\040', '\164', '\150', '\040', '\061', '\012',
'\161', '\145', '\101', '\040', '\161', '\165', '\040', '\061',
'\012', '\143', '\170', '\107', '\040', '\143', '\150', '\040',
'\061', '\012', '\165', '\121', '\172', '\040', '\161', '\165',
'\040', '\061', '\012', '\152', '\107', '\143', '\040', '\143',
'\150', '\040', '\061', '\012', '\143', '\166', '\101', '\040',
'\143', '\150', '\040', '\061', '\012', '\157', '\124', '\155',
'\040', '\157', '\156', '\040', '\061', '\012', '\160', '\152',
'\131', '\040', '\151', '\152', '\040', '\061', '\012', '\142',
'\125', '\157', '\040', '\157', '\156', '\040', '\061', '\012',
'\152', '\167', '\125', '\040', '\151', '\152', '\040', '\061',
'\012', '\112', '\147', '\155', '\040', '\156', '\147', '\040',
'\061', '\012', '\164', '\146', '\132', '\040', '\164', '\150',
'\040', '\061', '\012', '\170', '\145', '\117', '\040', '\145',
'\162', '\040', '\061', '\012', '\161', '\102', '\160', '\040',
'\161', '\165', '\040', '\061', '\012', '\160', '\102', '\172',
'\040', '\163', '\172', '\040', '\061', '\012', '\161', '\123',
'\142', '\040', '\161', '\165', '\040', '\061', '\012', '\152',
'\171', '\120', '\040', '\151', '\152', '\040', '\061', '\012',
'\106', '\153', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\156', '\152', '\123', '\040', '\141', '\156', '\040',
'\061', '\012', '\152', '\164', '\101', '\040', '\164', '\150',
'\040', '\061', '\012', '\132', '\155', '\146', '\040', '\155',
'\145', '\040', '\061', '\012', '\131', '\164', '\155', '\040',
'\164', '\150', '\040', '\061', '\012', '\120', '\161', '\143',
'\040', '\143', '\150', '\040', '\061', '\012', '\142', '\167',
'\112', '\040', '\167', '\141', '\040', '\061', '\012', '\157',
'\127', '\146', '\040', '\157', '\156', '\040', '\061', '\012',
'\153', '\170', '\112', '\040', '\153', '\141', '\040', '\061',
'\012', '\152', '\110', '\170', '\040', '\151', '\152', '\040',
'\061', '\012', '\147', '\143', '\120', '\040', '\143', '\150',
'\040', '\061', '\012', '\147', '\102', '\163', '\040', '\156',
'\147', '\040', '\061', '\012', '\142', '\153', '\113', '\040',
'\153', '\141', '\040', '\061', '\012', '\166', '\144', '\121',
'\040', '\144', '\145', '\040', '\061', '\012', '\160', '\152',
'\132', '\040', '\151', '\152', '\040', '\061', '\012', '\126',
'\147', '\146', '\040', '\156', '\147', '\040', '\061', '\012',
'\163', '\166', '\107', '\040', '\163', '\164', '\040', '\061',
'\012', '\153', '\107', '\152', '\040', '\151', '\152', '\040',
'\061', '\012', '\127', '\152', '\147', '\040', '\156', '\147',
'\040', '\061', '\012', '\121', '\155', '\153', '\040', '\153',
'\141', '\040', '\061', '\012', '\107', '\154', '\166', '\040',
'\154', '\145', '\040', '\061', '\012', '\164', '\155', '\131',
'\040', '\164', '\150', '\040', '\061', '\012', '\153', '\154',
'\131', '\040', '\154', '\145', '\040', '\061', '\012', '\120',
'\143', '\152', '\040', '\143', '\150', '\040', '\061', '\012',
'\146', '\121', '\167', '\040', '\167', '\151', '\040', '\061',
'\012', '\170', '\141', '\117', '\040', '\141', '\156', '\040',
'\061', '\012', '\152', '\146', '\116', '\040', '\151', '\152',
'\040', '\061', '\012', '\161', '\107', '\170', '\040', '\161',
'\165', '\040', '\061', '\012', '\161', '\166', '\102', '\040',
'\161', '\165', '\040', '\061', '\012', '\150', '\167', '\101',
'\040', '\164', '\150', '\040', '\061', '\012', '\130', '\155',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\130',
'\166', '\164', '\040', '\164', '\150', '\040', '\061', '\012',
'\102', '\160', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\157', '\112', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\166', '\155', '\132', '\040', '\166', '\141',
'\040', '\061', '\012', '\156', '\112', '\160', '\040', '\141',
'\156', '\040', '\061', '\012', '\172', '\161', '\112', '\040',
'\161', '\165', '\040', '\061', '\012', '\161', '\110', '\146',
'\040', '\161', '\165', '\040', '\061', '\012', '\155', '\121',
'\147', '\040', '\156', '\147', '\040', '\061', '\012', '\171',
'\107', '\172', '\040', '\163', '\172', '\040', '\061', '\012',
'\150', '\121', '\155', '\040', '\164', '\150', '\040', '\061',
'\012', '\155', '\102', '\160', '\040', '\155', '\145', '\040',
'\061', '\012', '\164', '\160', '\112', '\040', '\164', '\150',
'\040', '\061', '\012', '\121', '\153', '\152', '\040', '\151',
'\152', '\040', '\061', '\012', '\165', '\125', '\147', '\040',
'\156', '\147', '\040', '\061', '\012', '\164', '\144', '\112',
'\040', '\164', '\150', '\040', '\061', '\012', '\112', '\146',
'\156', '\040', '\141', '\156', '\040', '\061', '\012', '\114',
'\166', '\152', '\040', '\151', '\152', '\040', '\061', '\012',
'\151', '\130', '\143', '\040', '\143', '\150', '\040', '\061',
'\012', '\160', '\117', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\142', '\150', '\113', '\040', '\164', '\150',
'\040', '\061', '\012', '\142', '\115', '\153', '\040', '\153',
'\141', '\040', '\061', '\012', '\106', '\163', '\167', '\040',
'\163', '\164', '\040', '\061', '\012', '\161', '\101', '\164',
'\040', '\164', '\150', '\040', '\061', '\012', '\170', '\167',
'\112', '\040', '\167', '\141', '\040', '\061', '\012', '\146',
'\120', '\155', '\040', '\155', '\145', '\040', '\061', '\012',
'\104', '\146', '\171', '\040', '\156', '\171', '\040', '\061',
'\012', '\132', '\142', '\160', '\040', '\160', '\162', '\040',
'\061', '\012', '\102', '\147', '\167', '\040', '\156', '\147',
'\040', '\061', '\012', '\160', '\121', '\160', '\040', '\160',
'\162', '\040', '\061', '\012', '\153', '\121', '\160', '\040',
'\153', '\141', '\040', '\061', '\012', '\161', '\157', '\126',
'\040', '\161', '\165', '\040', '\061', '\012', '\125', '\161',
'\144', '\040', '\161', '\165', '\040', '\061', '\012', '\152',
'\131', '\157', '\040', '\157', '\156', '\040', '\061', '\012',
'\163', '\104', '\146', '\040', '\163', '\164', '\040', '\061',
'\012', '\170', '\165', '\112', '\040', '\161', '\165', '\040',
'\061', '\012', '\166', '\122', '\153', '\040', '\153', '\141',
'\040', '\061', '\012', '\121', '\163', '\147', '\040', '\156',
'\147', '\040', '\061', '\012', '\171', '\124', '\144', '\040',
'\144', '\145', '\040', '\061', '\012', '\121', '\170', '\162',
'\040', '\145', '\162', '\040', '\061', '\012', '\110', '\166',
'\143', '\040', '\143', '\150', '\040', '\061', '\012', '\150',
'\132', '\164', '\040', '\164', '\150', '\040', '\061', '\012',
'\161', '\104', '\165', '\040', '\165', '\156', '\040', '\061',
'\012', '\146', '\170', '\101', '\040', '\146', '\157', '\040',
'\061', '\012', '\170', '\120', '\146', '\040', '\146', '\157',
'\040', '\061', '\012', '\167', '\130', '\143', '\040', '\143',
'\150', '\040', '\061', '\012', '\152', '\112', '\142', '\040',
'\151', '\152', '\040', '\061', '\012', '\160', '\144', '\113',
'\040', '\144', '\145', '\040', '\061', '\012', '\147', '\160',
'\127', '\040', '\156', '\147', '\040', '\061', '\012', '\121',
'\147', '\170', '\040', '\156', '\147', '\040', '\061', '\012',
'\153', '\170', '\107', '\040', '\153', '\141', '\040', '\061',
'\012', '\144', '\114', '\170', '\040', '\144', '\145', '\040',
'\061', '\012', '\102', '\167', '\172', '\040', '\163', '\172',
'\040', '\061', '\012', '\126', '\144', '\170', '\040', '\144',
'\145', '\040', '\061', '\012', '\171', '\121', '\150', '\040',
'\164', '\150', '\040', '\061', '\012', '\127', '\163', '\170',
'\040', '\163', '\164', '\040', '\061', '\012', '\146', '\123',
'\142', '\040', '\142', '\145', '\040', '\061', '\012', '\125',
'\153', '\147', '\040', '\156', '\147', '\040', '\061', '\012',
'\120', '\152', '\172', '\040', '\163', '\172', '\040', '\061',
'\012', '\162', '\106', '\147', '\040', '\156', '\147', '\040',
'\061', '\012', '\146', '\152', '\120', '\040', '\151', '\152',
'\040', '\061', '\012', '\153', '\127', '\166', '\040', '\153',
'\141', '\040', '\061', '\012', '\113', '\150', '\146', '\040',
'\164', '\150', '\040', '\061', '\012', '\171', '\107', '\166',
'\040', '\166', '\141', '\040', '\061', '\012', '\160', '\156',
'\104', '\040', '\141', '\156', '\040', '\061', '\012', '\152',
'\131', '\146', '\040', '\151', '\152', '\040', '\061', '\012',
'\155', '\147', '\122', '\040', '\156', '\147', '\040', '\061',
'\012', '\162', '\152', '\103', '\040', '\145', '\162', '\040',
'\061', '\012', '\130', '\152', '\154', '\040', '\154', '\145',
'\040', '\061', '\012', '\153', '\172', '\105', '\040', '\163',
'\172', '\040', '\061', '\012', '\121', '\147', '\161', '\040',
'\156', '\147', '\040', '\061', '\012', '\172', '\147', '\142',
'\040', '\156', '\147', '\040', '\061', '\012', '\155', '\150',
'\104', '\040', '\164', '\150', '\040', '\061', '\012', '\166',
'\153', '\117', '\040', '\153', '\141', '\040', '\061', '\012',
'\165', '\167', '\126', '\040', '\161', '\165', '\040', '\061',
'\012', '\162', '\120', '\160', '\040', '\145', '\162', '\040',
'\061', '\012', '\167', '\130', '\144', '\040', '\144', '\145',
'\040', '\061', '\012', '\147', '\101', '\157', '\040', '\156',
'\147', '\040', '\061', '\012', '\153', '\166', '\107', '\040',
'\153', '\141', '\040', '\061', '\012', '\166', '\143', '\130',
'\040', '\143', '\150', '\040', '\061', '\012', '\170', '\117',
'\172', '\040', '\163', '\172', '\040', '\061', '\012', '\130',
'\172', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\106', '\155', '\165', '\040', '\161', '\165', '\040', '\061',
'\012', '\170', '\107', '\147', '\040', '\156', '\147', '\040',
'\061', '\012', '\152', '\152', '\122', '\040', '\151', '\152',
'\040', '\061', '\012', '\161', '\153', '\111', '\040', '\153',
'\165', '\040', '\061', '\012', '\160', '\161', '\110', '\040',
'\161', '\165', '\040', '\061', '\012', '\143', '\156', '\110',
'\040', '\141', '\156', '\040', '\061', '\012', '\144', '\150',
'\124', '\040', '\164', '\150', '\040', '\061', '\012', '\155',
'\144', '\122', '\040', '\144', '\145', '\040', '\061', '\012',
'\144', '\104', '\146', '\040', '\144', '\145', '\040', '\061',
'\012', '\161', '\111', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\170', '\103', '\152', '\040', '\151', '\152',
'\040', '\061', '\012', '\161', '\122', '\153', '\040', '\161',
'\165', '\040', '\061', '\012', '\153', '\113', '\143', '\040',
'\143', '\150', '\040', '\061', '\012', '\111', '\165', '\165',
'\040', '\161', '\165', '\040', '\061', '\012', '\152', '\161',
'\122', '\040', '\161', '\165', '\040', '\061', '\012', '\161',
'\105', '\153', '\040', '\161', '\165', '\040', '\061', '\012',
'\150', '\146', '\117', '\040', '\164', '\150', '\040', '\061',
'\012', '\161', '\165', '\112', '\040', '\165', '\156', '\040',
'\061', '\012', '\156', '\122', '\160', '\040', '\141', '\156',
'\040', '\061', '\012', '\164', '\170', '\111', '\040', '\164',
'\150', '\040', '\061', '\012', '\171', '\146', '\132', '\040',
'\156', '\171', '\040', '\061', '\012', '\157', '\161', '\124',
'\040', '\150', '\157', '\040', '\061', '\012', '\143', '\147',
'\130', '\040', '\143', '\150', '\040', '\061', '\012', '\160',
'\142', '\114', '\040', '\160', '\162', '\040', '\061', '\012',
'\130', '\155', '\170', '\040', '\155', '\145', '\040', '\061',
'\012', '\126', '\152', '\162', '\040', '\145', '\162', '\040',
'\061', '\012', '\171', '\154', '\131', '\040', '\154', '\145',
'\040', '\061', '\012', '\144', '\146', '\113', '\040', '\144',
'\145', '\040', '\061', '\012', '\170', '\147', '\104', '\040',
'\156', '\147', '\040', '\061', '\012', '\165', '\167', '\114',
'\040', '\161', '\165', '\040', '\061', '\012', '\142', '\120',
'\155', '\040', '\155', '\145', '\040', '\061', '\012', '\161',
'\103', '\171', '\040', '\161', '\165', '\040', '\061', '\012',
'\122', '\160', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\171', '\161', '\150', '\040', '\164', '\150', '\040',
'\061', '\012', '\170', '\112', '\164', '\040', '\164', '\150',
'\040', '\061', '\012', '\154', '\172', '\121', '\040', '\154',
'\145', '\040', '\061', '\012', '\146', '\147', '\115', '\040',
'\156', '\147', '\040', '\061', '\012', '\131', '\154', '\143',
'\040', '\143', '\150', '\040', '\061', '\012', '\146', '\124',
'\172', '\040', '\163', '\172', '\040', '\061', '\012', '\122',
'\152', '\146', '\040', '\151', '\152', '\040', '\061', '\012',
'\122', '\147', '\152', '\040', '\152', '\157', '\040', '\061',
'\012', '\107', '\153', '\164', '\040', '\164', '\150', '\040',
'\061', '\012', '\146', '\170', '\107', '\040', '\146', '\157',
'\040', '\061', '\012', '\155', '\164', '\107', '\040', '\164',
'\150', '\040', '\061', '\012', '\154', '\147', '\112', '\040',
'\156', '\147', '\040', '\061', '\012', '\164', '\144', '\122',
'\040', '\164', '\150', '\040', '\061', '\012', '\151', '\110',
'\153', '\040', '\151', '\156', '\040', '\061', '\012', '\107',
'\161', '\166', '\040', '\161', '\165', '\040', '\061', '\012',
'\154', '\104', '\152', '\040', '\154', '\145', '\040', '\061',
'\012', '\167', '\172', '\132', '\040', '\163', '\172', '\040',
'\061', '\012', '\144', '\106', '\160', '\040', '\144', '\145',
'\040', '\061', '\012', '\161', '\124', '\164', '\040', '\164',
'\150', '\040', '\061', '\012', '\127', '\164', '\147', '\040',
'\164', '\150', '\040', '\061', '\012', '\143', '\142', '\124',
'\040', '\143', '\150', '\040', '\061', '\012', '\144', '\166',
'\113', '\040', '\144', '\145', '\040', '\061', '\012', '\103',
'\164', '\167', '\040', '\164', '\150', '\040', '\061', '\012',
'\155', '\144', '\107', '\040', '\144', '\145', '\040', '\061',
'\012', '\166', '\113', '\152', '\040', '\151', '\152', '\040',
'\061', '\012', '\103', '\154', '\146', '\040', '\154', '\145',
'\040', '\061', '\012', '\167', '\162', '\125', '\040', '\145',
'\162', '\040', '\061', '\012', '\147', '\155', '\124', '\040',
'\156', '\147', '\040', '\061', '\012', '\142', '\130', '\170',
'\040', '\142', '\145', '\040', '\061', '\012', '\172', '\117',
'\170', '\040', '\163', '\172', '\040', '\061', '\012', '\130',
'\156', '\146', '\040', '\141', '\156', '\040', '\061', '\012',
'\162', '\172', '\121', '\040', '\145', '\162', '\040', '\061',
'\012', '\166', '\121', '\152', '\040', '\151', '\152', '\040',
'\061', '\012', '\153', '\160', '\124', '\040', '\153', '\141',
'\040', '\061', '\012', '\146', '\131', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\172', '\114', '\162', '\040',
'\145', '\162', '\040', '\061', '\012', '\130', '\147', '\144',
'\040', '\156', '\147', '\040', '\061', '\012', '\143', '\132',
'\154', '\040', '\143', '\150', '\040', '\061', '\012', '\154',
'\106', '\171', '\040', '\154', '\145', '\040', '\061', '\012',
'\132', '\156', '\147', '\040', '\141', '\156', '\040', '\061',
'\012', '\141', '\130', '\147', '\040', '\141', '\156', '\040',
'\061', '\012', '\161', '\142', '\105', '\040', '\161', '\165',
'\040', '\061', '\012', '\172', '\143', '\131', '\040', '\143',
'\150', '\040', '\061', '\012', '\163', '\161', '\113', '\040',
'\161', '\165', '\040', '\061', '\012', '\102', '\154', '\170',
'\040', '\154', '\145', '\040', '\061', '\012', '\157', '\161',
'\112', '\040', '\161', '\165', '\040', '\061', '\012', '\152',
'\120', '\166', '\040', '\151', '\152', '\040', '\061', '\012',
'\161', '\132', '\144', '\040', '\161', '\165', '\040', '\061',
'\012', '\146', '\144', '\132', '\040', '\144', '\145', '\040',
'\061', '\012', '\102', '\161', '\155', '\040', '\161', '\165',
'\040', '\061', '\012', '\143', '\160', '\107', '\040', '\143',
'\150', '\040', '\061', '\012', '\170', '\144', '\120', '\040',
'\144', '\145', '\040', '\061', '\012', '\146', '\165', '\106',
'\040', '\161', '\165', '\040', '\061', '\012', '\166', '\142',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\144',
'\150', '\110', '\040', '\164', '\150', '\040', '\061', '\012',
'\112', '\167', '\155', '\040', '\155', '\145', '\040', '\061',
'\012', '\161', '\153', '\117', '\040', '\153', '\157', '\040',
'\061', '\012', '\147', '\163', '\131', '\040', '\156', '\147',
'\040', '\061', '\012', '\161', '\107', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\112', '\153', '\166', '\040',
'\153', '\141', '\040', '\061', '\012', '\172', '\160', '\147',
'\040', '\156', '\147', '\040', '\061', '\012', '\162', '\167',
'\113', '\040', '\145', '\162', '\040', '\061', '\012', '\114',
'\150', '\161', '\040', '\164', '\150', '\040', '\061', '\012',
'\172', '\165', '\126', '\040', '\161', '\165', '\040', '\061',
'\012', '\142', '\161', '\126', '\040', '\161', '\165', '\040',
'\061', '\012', '\121', '\143', '\166', '\040', '\143', '\150',
'\040', '\061', '\012', '\155', '\127', '\144', '\040', '\144',
'\145', '\040', '\061', '\012', '\143', '\156', '\106', '\040',
'\141', '\156', '\040', '\061', '\012', '\154', '\127', '\167',
'\040', '\154', '\145', '\040', '\061', '\012', '\164', '\170',
'\123', '\040', '\164', '\150', '\040', '\061', '\012', '\172',
'\156', '\105', '\040', '\141', '\156', '\040', '\061', '\012',
'\146', '\124', '\152', '\040', '\151', '\152', '\040', '\061',
'\012', '\154', '\106', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\167', '\144', '\112', '\040', '\144', '\145',
'\040', '\061', '\012', '\145', '\126', '\153', '\040', '\145',
'\162', '\040', '\061', '\012', '\172', '\152', '\132', '\040',
'\163', '\172', '\040', '\061', '\012', '\146', '\120', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\143', '\161',
'\121', '\040', '\143', '\150', '\040', '\061', '\012', '\120',
'\143', '\147', '\040', '\143', '\150', '\040', '\061', '\012',
'\131', '\144', '\153', '\040', '\144', '\145', '\040', '\061',
'\012', '\163', '\166', '\105', '\040', '\163', '\164', '\040',
'\061', '\012', '\127', '\161', '\142', '\040', '\161', '\165',
'\040', '\061', '\012', '\142', '\143', '\126', '\040', '\143',
'\150', '\040', '\061', '\012', '\156', '\110', '\170', '\040',
'\157', '\156', '\040', '\061', '\012', '\167', '\101', '\170',
'\040', '\167', '\141', '\040', '\061', '\012', '\150', '\146',
'\102', '\040', '\164', '\150', '\040', '\061', '\012', '\141',
'\115', '\166', '\040', '\141', '\156', '\040', '\061', '\012',
'\160', '\167', '\117', '\040', '\160', '\162', '\040', '\061',
'\012', '\131', '\167', '\170', '\040', '\167', '\141', '\040',
'\061', '\012', '\143', '\142', '\110', '\040', '\143', '\150',
'\040', '\061', '\012', '\157', '\152', '\132', '\040', '\157',
'\156', '\040', '\061', '\012', '\163', '\165', '\125', '\040',
'\161', '\165', '\040', '\061', '\012', '\152', '\143', '\125',
'\040', '\143', '\150', '\040', '\061', '\012', '\163', '\161',
'\131', '\040', '\161', '\165', '\040', '\061', '\012', '\152',
'\115', '\162', '\040', '\145', '\162', '\040', '\061', '\012',
'\160', '\170', '\107', '\040', '\160', '\162', '\040', '\061',
'\012', '\162', '\102', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\166', '\154', '\131', '\040', '\154', '\145',
'\040', '\061', '\012', '\150', '\171', '\131', '\040', '\164',
'\150', '\040', '\061', '\012', '\103', '\166', '\167', '\040',
'\166', '\141', '\040', '\061', '\012', '\124', '\161', '\145',
'\040', '\161', '\165', '\040', '\061', '\012', '\146', '\123',
'\152', '\040', '\151', '\152', '\040', '\061', '\012', '\146',
'\126', '\163', '\040', '\163', '\164', '\040', '\061', '\012',
'\105', '\161', '\143', '\040', '\143', '\150', '\040', '\061',
'\012', '\170', '\156', '\104', '\040', '\141', '\156', '\040',
'\061', '\012', '\117', '\167', '\160', '\040', '\160', '\162',
'\040', '\061', '\012', '\170', '\124', '\142', '\040', '\142',
'\145', '\040', '\061', '\012', '\167', '\152', '\114', '\040',
'\151', '\152', '\040', '\061', '\012', '\122', '\170', '\166',
'\040', '\166', '\141', '\040', '\061', '\012', '\156', '\127',
'\146', '\040', '\141', '\156', '\040', '\061', '\012', '\166',
'\110', '\160', '\040', '\166', '\141', '\040', '\061', '\012',
'\166', '\102', '\153', '\040', '\153', '\141', '\040', '\061',
'\012', '\116', '\161', '\166', '\040', '\161', '\165', '\040',
'\061', '\012', '\114', '\172', '\146', '\040', '\163', '\172',
'\040', '\061', '\012', '\142', '\167', '\123', '\040', '\167',
'\141', '\040', '\061', '\012', '\103', '\142', '\171', '\040',
'\142', '\145', '\040', '\061', '\012', '\172', '\122', '\162',
'\040', '\145', '\162', '\040', '\061', '\012', '\161', '\167',
'\112', '\040', '\161', '\165', '\040', '\061', '\012', '\170',
'\156', '\102', '\040', '\141', '\156', '\040', '\061', '\012',
'\161', '\111', '\143', '\040', '\143', '\150', '\040', '\061',
'\012', '\143', '\107', '\153', '\040', '\143', '\150', '\040',
'\061', '\012', '\131', '\152', '\151', '\040', '\151', '\156',
'\040', '\061', '\012', '\147', '\126', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\154', '\104', '\143', '\040',
'\143', '\150', '\040', '\061', '\012', '\121', '\171', '\162',
'\040', '\145', '\162', '\040', '\061', '\012', '\146', '\143',
'\110', '\040', '\143', '\150', '\040', '\061', '\012', '\156',
'\170', '\102', '\040', '\141', '\156', '\040', '\061', '\012',
'\144', '\166', '\167', '\040', '\144', '\145', '\040', '\061',
'\012', '\147', '\121', '\143', '\040', '\143', '\150', '\040',
'\061', '\012', '\155', '\162', '\122', '\040', '\145', '\162',
'\040', '\061', '\012', '\146', '\156', '\113', '\040', '\141',
'\156', '\040', '\061', '\012', '\110', '\154', '\162', '\040',
'\154', '\145', '\040', '\061', '\012', '\104', '\156', '\161',
'\040', '\141', '\156', '\040', '\061', '\012', '\142', '\156',
'\125', '\040', '\141', '\156', '\040', '\061', '\012', '\161',
'\103', '\145', '\040', '\161', '\165', '\040', '\061', '\012',
'\124', '\152', '\166', '\040', '\151', '\152', '\040', '\061',
'\012', '\105', '\160', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\167', '\114', '\146', '\040', '\167', '\141',
'\040', '\061', '\012', '\160', '\132', '\152', '\040', '\151',
'\152', '\040', '\061', '\012', '\147', '\166', '\122', '\040',
'\156', '\147', '\040', '\061', '\012', '\153', '\161', '\113',
'\040', '\161', '\165', '\040', '\061', '\012', '\166', '\154',
'\107', '\040', '\154', '\145', '\040', '\061', '\012', '\166',
'\166', '\116', '\040', '\166', '\141', '\040', '\061', '\012',
'\147', '\142', '\115', '\040', '\156', '\147', '\040', '\061',
'\012', '\142', '\116', '\153', '\040', '\153', '\141', '\040',
'\061', '\012', '\152', '\172', '\114', '\040', '\163', '\172',
'\040', '\061', '\012', '\127', '\154', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\141', '\131', '\161', '\040',
'\141', '\156', '\040', '\061', '\012', '\172', '\144', '\131',
'\040', '\144', '\145', '\040', '\061', '\012', '\163', '\146',
'\107', '\040', '\163', '\164', '\040', '\061', '\012', '\161',
'\146', '\127', '\040', '\161', '\165', '\040', '\061', '\012',
'\153', '\102', '\166', '\040', '\153', '\141', '\040', '\061',
'\012', '\142', '\164', '\107', '\040', '\164', '\150', '\040',
'\061', '\012', '\115', '\161', '\142', '\040', '\161', '\165',
'\040', '\061', '\012', '\154', '\162', '\103', '\040', '\145',
'\162', '\040', '\061', '\012', '\166', '\165', '\105', '\040',
'\161', '\165', '\040', '\061', '\012', '\146', '\171', '\112',
'\040', '\156', '\171', '\040', '\061', '\012', '\161', '\155',
'\132', '\040', '\161', '\165', '\040', '\061', '\012', '\112',
'\153', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\103', '\155', '\152', '\040', '\151', '\152', '\040', '\061',
'\012', '\142', '\130', '\171', '\040', '\142', '\145', '\040',
'\061', '\012', '\131', '\155', '\171', '\040', '\155', '\145',
'\040', '\061', '\012', '\161', '\170', '\131', '\040', '\161',
'\165', '\040', '\061', '\012', '\143', '\116', '\154', '\040',
'\143', '\150', '\040', '\061', '\012', '\146', '\172', '\125',
'\040', '\146', '\157', '\040', '\061', '\012', '\122', '\166',
'\164', '\040', '\164', '\150', '\040', '\061', '\012', '\171',
'\154', '\111', '\040', '\154', '\145', '\040', '\061', '\012',
'\170', '\115', '\163', '\040', '\163', '\164', '\040', '\061',
'\012', '\121', '\150', '\155', '\040', '\164', '\150', '\040',
'\061', '\012', '\144', '\110', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\144', '\167', '\114', '\040', '\144',
'\145', '\040', '\061', '\012', '\166', '\131', '\162', '\040',
'\145', '\162', '\040', '\061', '\012', '\121', '\170', '\165',
'\040', '\161', '\165', '\040', '\061', '\012', '\144', '\116',
'\150', '\040', '\164', '\150', '\040', '\061', '\012', '\172',
'\116', '\143', '\040', '\143', '\150', '\040', '\061', '\012',
'\152', '\155', '\120', '\040', '\151', '\152', '\040', '\061',
'\012', '\120', '\142', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\146', '\161', '\152', '\040', '\161', '\165',
'\040', '\061', '\012', '\146', '\125', '\167', '\040', '\167',
'\141', '\040', '\061', '\012', '\110', '\171', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\121', '\144', '\170',
'\040', '\144', '\145', '\040', '\061', '\012', '\172', '\123',
'\154', '\040', '\154', '\145', '\040', '\061', '\012', '\143',
'\127', '\164', '\040', '\164', '\150', '\040', '\061', '\012',
'\106', '\153', '\145', '\040', '\145', '\162', '\040', '\061',
'\012', '\132', '\164', '\172', '\040', '\164', '\150', '\040',
'\061', '\012', '\165', '\125', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\156', '\102', '\155', '\040', '\141',
'\156', '\040', '\061', '\012', '\172', '\112', '\171', '\040',
'\163', '\172', '\040', '\061', '\012', '\160', '\144', '\111',
'\040', '\144', '\145', '\040', '\061', '\012', '\156', '\124',
'\144', '\040', '\141', '\156', '\040', '\061', '\012', '\131',
'\152', '\142', '\040', '\151', '\152', '\040', '\061', '\012',
'\121', '\152', '\156', '\040', '\141', '\156', '\040', '\061',
'\012', '\171', '\130', '\152', '\040', '\151', '\152', '\040',
'\061', '\012', '\170', '\167', '\102', '\040', '\157', '\167',
'\040', '\061', '\012', '\153', '\154', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\150', '\146', '\131', '\040',
'\164', '\150', '\040', '\061', '\012', '\160', '\104', '\147',
'\040', '\156', '\147', '\040', '\061', '\012', '\172', '\132',
'\144', '\040', '\144', '\145', '\040', '\061', '\012', '\155',
'\161', '\117', '\040', '\161', '\165', '\040', '\061', '\012',
'\150', '\132', '\162', '\040', '\164', '\150', '\040', '\061',
'\012', '\143', '\155', '\131', '\040', '\143', '\150', '\040',
'\061', '\012', '\147', '\114', '\153', '\040', '\156', '\147',
'\040', '\061', '\012', '\121', '\143', '\152', '\040', '\143',
'\150', '\040', '\061', '\012', '\165', '\113', '\152', '\040',
'\161', '\165', '\040', '\061', '\012', '\156', '\161', '\104',
'\040', '\141', '\156', '\040', '\061', '\012', '\171', '\113',
'\167', '\040', '\167', '\141', '\040', '\061', '\012', '\142',
'\146', '\122', '\040', '\142', '\145', '\040', '\061', '\012',
'\122', '\161', '\172', '\040', '\161', '\165', '\040', '\061',
'\012', '\152', '\150', '\121', '\040', '\164', '\150', '\040',
'\061', '\012', '\166', '\116', '\152', '\040', '\151', '\152',
'\040', '\061', '\012', '\124', '\143', '\146', '\040', '\143',
'\150', '\040', '\061', '\012', '\110', '\142', '\156', '\040',
'\141', '\156', '\040', '\061', '\012', '\114', '\167', '\166',
'\040', '\166', '\141', '\040', '\061', '\012', '\167', '\143',
'\132', '\040', '\143', '\150', '\040', '\061', '\012', '\143',
'\144', '\113', '\040', '\143', '\150', '\040', '\061', '\012',
'\142', '\160', '\122', '\040', '\160', '\162', '\040', '\061',
'\012', '\154', '\127', '\155', '\040', '\154', '\145', '\040',
'\061', '\012', '\167', '\116', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\160', '\101', '\152', '\040', '\151',
'\152', '\040', '\061', '\012', '\147', '\162', '\126', '\040',
'\156', '\147', '\040', '\061', '\012', '\161', '\155', '\153',
'\040', '\161', '\165', '\040', '\061', '\012', '\143', '\114',
'\146', '\040', '\143', '\150', '\040', '\061', '\012', '\151',
'\167', '\102', '\040', '\151', '\156', '\040', '\061', '\012',
'\145', '\161', '\126', '\040', '\161', '\165', '\040', '\061',
'\012', '\127', '\161', '\172', '\040', '\161', '\165', '\040',
'\061', '\012', '\121', '\156', '\152', '\040', '\141', '\156',
'\040', '\061', '\012', '\165', '\157', '\112', '\040', '\161',
'\165', '\040', '\061', '\012', '\146', '\126', '\152', '\040',
'\151', '\152', '\040', '\061', '\012', '\143', '\142', '\125',
'\040', '\143', '\150', '\040', '\061', '\012', '\161', '\160',
'\124', '\040', '\161', '\165', '\040', '\061', '\012', '\160',
'\144', '\132', '\040', '\144', '\145', '\040', '\061', '\012',
'\144', '\172', '\127', '\040', '\144', '\145', '\040', '\061',
'\012', '\127', '\146', '\167', '\040', '\167', '\141', '\040',
'\061', '\012', '\132', '\161', '\155', '\040', '\161', '\165',
'\040', '\061', '\012', '\153', '\112', '\144', '\040', '\144',
'\145', '\040', '\061', '\012', '\172', '\127', '\146', '\040',
'\163', '\172', '\040', '\061', '\012', '\142', '\131', '\147',
'\040', '\156', '\147', '\040', '\061', '\012', '\162', '\152',
'\121', '\040', '\145', '\162', '\040', '\061', '\012', '\144',
'\167', '\102', '\040', '\144', '\145', '\040', '\061', '\012',
'\126', '\154', '\170', '\040', '\154', '\145', '\040', '\061',
'\012', '\172', '\113', '\144', '\040', '\144', '\145', '\040',
'\061', '\012', '\114', '\170', '\167', '\040', '\167', '\141',
'\040', '\061', '\012', '\110', '\160', '\167', '\040', '\160',
'\162', '\040', '\061', '\012', '\155', '\166', '\122', '\040',
'\166', '\141', '\040', '\061', '\012', '\161', '\115', '\164',
'\040', '\164', '\150', '\040', '\061', '\012', '\160', '\127',
'\142', '\040', '\160', '\162', '\040', '\061', '\012', '\144',
'\143', '\127', '\040', '\143', '\150', '\040', '\061', '\012',
'\172', '\105', '\150', '\040', '\164', '\150', '\040', '\061',
'\012', '\130', '\162', '\163', '\040', '\145', '\162', '\040',
'\061', '\012', '\106', '\164', '\172', '\040', '\164', '\150',
'\040', '\061', '\012', '\161', '\171', '\114', '\040', '\161',
'\165', '\040', '\061', '\012', '\152', '\123', '\156', '\040',
'\141', '\156', '\040', '\061', '\012', '\127', '\172', '\150',
'\040', '\164', '\150', '\040', '\061', '\012', '\120', '\172',
'\146', '\040', '\163', '\172', '\040', '\061', '\012', '\172',
'\153', '\127', '\040', '\163', '\172', '\040', '\061', '\012',
'\171', '\167', '\131', '\040', '\167', '\141', '\040', '\061',
'\012', '\157', '\107', '\142', '\040', '\157', '\156', '\040',
'\061', '\012', '\152', '\102', '\167', '\040', '\151', '\152',
'\040', '\061', '\012', '\121', '\160', '\172', '\040', '\163',
'\172', '\040', '\061', '\012', '\162', '\127', '\155', '\040',
'\145', '\162', '\040', '\061', '\012', '\163', '\155', '\121',
'\040', '\163', '\164', '\040', '\061', '\012', '\165', '\107',
'\153', '\040', '\161', '\165', '\040', '\061', '\012', '\170',
'\153', '\126', '\040', '\153', '\141', '\040', '\061', '\012',
'\167', '\112', '\146', '\040', '\167', '\141', '\040', '\061',
'\012', '\143', '\152', '\127', '\040', '\143', '\150', '\040',
'\061', '\012', '\167', '\116', '\170', '\040', '\167', '\141',
'\040', '\061', '\012', '\167', '\152', '\122', '\040', '\151',
'\152', '\040', '\061', '\012', '\167', '\104', '\144', '\040',
'\167', '\141', '\040', '\061', '\012', '\154', '\162', '\102',
'\040', '\145', '\162', '\040', '\061', '\012', '\161', '\150',
'\112', '\040', '\164', '\150', '\040', '\061', '\012', '\152',
'\113', '\160', '\040', '\151', '\152', '\040', '\061', '\012',
'\153', '\116', '\156', '\040', '\141', '\156', '\040', '\061',
'\012', '\164', '\161', '\125', '\040', '\164', '\150', '\040',
'\061', '\012', '\112', '\155', '\152', '\040', '\151', '\152',
'\040', '\061', '\012', '\142', '\112', '\166', '\040', '\166',
'\141', '\040', '\061', '\012', '\146', '\162', '\116', '\040',
'\145', '\162', '\040', '\061', '\012', '\165', '\102', '\152',
'\040', '\161', '\165', '\040', '\061', '\012', '\125', '\165',
'\166', '\040', '\161', '\165', '\040', '\061', '\012', '\115',
'\172', '\166', '\040', '\163', '\172', '\040', '\061', '\012',
'\104', '\152', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\121', '\147', '\154', '\040', '\154', '\145', '\040',
'\061', '\012', '\150', '\144', '\103', '\040', '\164', '\150',
'\040', '\061', '\012', '\155', '\106', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\166', '\152', '\125', '\040',
'\151', '\152', '\040', '\061', '\012', '\160', '\162', '\130',
'\040', '\145', '\162', '\040', '\061', '\012', '\113', '\166',
'\143', '\040', '\143', '\150', '\040', '\061', '\012', '\162',
'\171', '\131', '\040', '\145', '\162', '\040', '\061', '\012',
'\166', '\172', '\121', '\040', '\163', '\172', '\040', '\061',
'\012', '\117', '\152', '\150', '\040', '\164', '\150', '\040',
'\061', '\012', '\121', '\146', '\156', '\040', '\141', '\156',
'\040', '\061', '\012', '\126', '\161', '\147', '\040', '\156',
'\147', '\040', '\061', '\012', '\141', '\121', '\166', '\040',
'\141', '\156', '\040', '\061', '\012', '\150', '\110', '\170',
'\040', '\164', '\150', '\040', '\061', '\012', '\165', '\111',
'\147', '\040', '\156', '\147', '\040', '\061', '\012', '\113',
'\160', '\166', '\040', '\166', '\141', '\040', '\061', '\012',
'\144', '\121', '\153', '\040', '\153', '\157', '\040', '\061',
'\012', '\107', '\150', '\161', '\040', '\164', '\150', '\040',
'\061', '\012', '\143', '\132', '\163', '\040', '\143', '\150',
'\040', '\061', '\012', '\156', '\166', '\110', '\040', '\141',
'\156', '\040', '\061', '\012', '\152', '\167', '\112', '\040',
'\151', '\152', '\040', '\061', '\012', '\144', '\115', '\155',
'\040', '\144', '\145', '\040', '\061', '\012', '\147', '\152',
'\111', '\040', '\156', '\147', '\040', '\061', '\012', '\154',
'\120', '\147', '\040', '\156', '\147', '\040', '\061', '\012',
'\161', '\102', '\163', '\040', '\161', '\165', '\040', '\061',
'\012', '\126', '\150', '\161', '\040', '\164', '\150', '\040',
'\061', '\012', '\161', '\114', '\164', '\040', '\164', '\150',
'\040', '\061', '\012', '\150', '\102', '\144', '\040', '\164',
'\150', '\040', '\061', '\012', '\126', '\143', '\165', '\040',
'\143', '\150', '\040', '\061', '\012', '\143', '\121', '\144',
'\040', '\143', '\150', '\040', '\061', '\012', '\171', '\160',
'\130', '\040', '\160', '\162', '\040', '\061', '\012', '\155',
'\121', '\166', '\040', '\166', '\141', '\040', '\061', '\012',
'\166', '\155', '\122', '\040', '\166', '\141', '\040', '\061',
'\012', '\170', '\146', '\110', '\040', '\146', '\157', '\040',
'\061', '\012', '\160', '\161', '\131', '\040', '\161', '\165',
'\040', '\061', '\012', '\130', '\164', '\142', '\040', '\164',
'\150', '\040', '\061', '\012', '\126', '\143', '\170', '\040',
'\143', '\150', '\040', '\061', '\012', '\164', '\127', '\142',
'\040', '\164', '\150', '\040', '\061', '\012', '\120', '\170',
'\141', '\040', '\141', '\156', '\040', '\061', '\012', '\121',
'\155', '\162', '\040', '\145', '\162', '\040', '\061', '\012',
'\155', '\144', '\130', '\040', '\144', '\145', '\040', '\061',
'\012', '\102', '\170', '\164', '\040', '\164', '\150', '\040',
'\061', '\012', '\152', '\132', '\166', '\040', '\151', '\152',
'\040', '\061', '\012', '\150', '\116', '\160', '\040', '\164',
'\150', '\040', '\061', '\012', '\171', '\142', '\116', '\040',
'\142', '\145', '\040', '\061', '\012', '\142', '\153', '\132',
'\040', '\153', '\141', '\040', '\061', '\012', '\156', '\126',
'\146', '\040', '\141', '\156', '\040', '\061', '\012', '\154',
'\113', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\157', '\112', '\152', '\040', '\157', '\156', '\040', '\061',
'\012', '\160', '\102', '\166', '\040', '\166', '\141', '\040',
'\061', '\012', '\150', '\147', '\101', '\040', '\164', '\150',
'\040', '\061', '\012', '\161', '\170', '\105', '\040', '\161',
'\165', '\040', '\061', '\012', '\156', '\166', '\112', '\040',
'\141', '\156', '\040', '\061', '\012', '\130', '\143', '\146',
'\040', '\143', '\150', '\040', '\061', '\012', '\106', '\144',
'\142', '\040', '\144', '\145', '\040', '\061', '\012', '\172',
'\101', '\157', '\040', '\157', '\156', '\040', '\061', '\012',
'\167', '\121', '\153', '\040', '\153', '\141', '\040', '\061',
'\012', '\164', '\155', '\130', '\040', '\164', '\150', '\040',
'\061', '\012', '\160', '\166', '\132', '\040', '\166', '\141',
'\040', '\061', '\012', '\146', '\116', '\167', '\040', '\167',
'\141', '\040', '\061', '\012', '\172', '\113', '\153', '\040',
'\163', '\172', '\040', '\061', '\012', '\150', '\122', '\170',
'\040', '\164', '\150', '\040', '\061', '\012', '\124', '\154',
'\152', '\040', '\154', '\145', '\040', '\061', '\012', '\151',
'\121', '\152', '\040', '\151', '\156', '\040', '\061', '\012',
'\152', '\155', '\125', '\040', '\151', '\152', '\040', '\061',
'\012', '\164', '\142', '\127', '\040', '\164', '\150', '\040',
'\061', '\012', '\167', '\126', '\150', '\040', '\164', '\150',
'\040', '\061', '\012', '\124', '\166', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\156', '\126', '\147', '\040',
'\141', '\156', '\040', '\061', '\012', '\114', '\170', '\160',
'\040', '\160', '\162', '\040', '\061', '\012', '\166', '\147',
'\117', '\040', '\156', '\147', '\040', '\061', '\012', '\144',
'\146', '\105', '\040', '\144', '\145', '\040', '\061', '\012',
'\156', '\126', '\155', '\040', '\141', '\156', '\040', '\061',
'\012', '\161', '\113', '\171', '\040', '\161', '\165', '\040',
'\061', '\012', '\145', '\161', '\132', '\040', '\161', '\165',
'\040', '\061', '\012', '\124', '\143', '\143', '\040', '\143',
'\150', '\040', '\061', '\012', '\143', '\124', '\153', '\040',
'\143', '\150', '\040', '\061', '\012', '\146', '\113', '\172',
'\040', '\163', '\172', '\040', '\061', '\012', '\127', '\153',
'\172', '\040', '\163', '\172', '\040', '\061', '\012', '\154',
'\166', '\132', '\040', '\154', '\145', '\040', '\061', '\012',
'\162', '\107', '\160', '\040', '\145', '\162', '\040', '\061',
'\012', '\153', '\113', '\172', '\040', '\163', '\172', '\040',
'\061', '\012', '\103', '\142', '\146', '\040', '\142', '\145',
'\040', '\061', '\012', '\152', '\121', '\144', '\040', '\144',
'\145', '\040', '\061', '\012', '\132', '\146', '\143', '\040',
'\143', '\150', '\040', '\061', '\012', '\150', '\166', '\130',
'\040', '\164', '\150', '\040', '\061', '\012', '\170', '\147',
'\116', '\040', '\156', '\147', '\040', '\061', '\012', '\113',
'\160', '\145', '\040', '\145', '\162', '\040', '\061', '\012',
'\150', '\172', '\115', '\040', '\164', '\150', '\040', '\061',
'\012', '\152', '\170', '\132', '\040', '\151', '\152', '\040',
'\061', '\012', '\171', '\161', '\114', '\040', '\161', '\165',
'\040', '\061', '\012', '\160', '\147', '\103', '\040', '\156',
'\147', '\040', '\061', '\012', '\106', '\161', '\144', '\040',
'\161', '\165', '\040', '\061', '\012', '\164', '\115', '\142',
'\040', '\164', '\150', '\040', '\061', '\012', '\156', '\152',
'\121', '\040', '\141', '\156', '\040', '\061', '\012', '\164',
'\146', '\102', '\040', '\164', '\150', '\040', '\061', '\012',
'\147', '\152', '\116', '\040', '\156', '\147', '\040', '\061',
'\012', '\167', '\116', '\143', '\040', '\143', '\150', '\040',
'\061', '\012', '\120', '\172', '\152', '\040', '\163', '\172',
'\040', '\061', '\012', '\155', '\150', '\117', '\040', '\164',
'\150', '\040', '\061', '\012', '\161', '\125', '\155', '\040',
'\161', '\165', '\040', '\061', '\012', '\106', '\150', '\150',
'\040', '\164', '\150', '\040', '\061', '\012', '\123', '\152',
'\144', '\040', '\144', '\145', '\040', '\061', '\012', '\150',
'\127', '\152', '\040', '\164', '\150', '\040', '\061', '\012',
'\171', '\150', '\114', '\040', '\164', '\150', '\040', '\061',
'\012', '\154', '\107', '\160', '\040', '\154', '\145', '\040',
'\061', '\012', '\144', '\164', '\130', '\040', '\164', '\150',
'\040', '\061', '\012', '\150', '\167', '\130', '\040', '\164',
'\150', '\040', '\061', '\012', '\163', '\162', '\113', '\040',
'\145', '\162', '\040', '\061', '\012', '\166', '\161', '\105',
'\040', '\161', '\165', '\040', '\061', '\012', '\142', '\143',
'\117', '\040', '\143', '\150', '\040', '\061', '\012', '\170',
'\121', '\154', '\040', '\154', '\145', '\040', '\061', '\012',
'\121', '\161', '\146', '\040', '\161', '\165', '\040', '\061',
'\012', '\153', '\112', '\147', '\040', '\156', '\147', '\040',
'\061', '\012', '\160', '\130', '\172', '\040', '\163', '\172',
'\040', '\061', '\012', '\171', '\165', '\112', '\040', '\161',
'\165', '\040', '\061', '\012', '\107', '\156', '\160', '\040',
'\141', '\156', '\040', '\061', '\012', '\104', '\154', '\143',
'\040', '\143', '\150', '\040', '\061', '\012', '\115', '\170',
'\146', '\040', '\146', '\157', '\040', '\061', '\012', '\171',
'\116', '\162', '\040', '\145', '\162', '\040', '\061', '\012',
'\142', '\155', '\126', '\040', '\155', '\145', '\040', '\061',
'\012', '\146', '\130', '\157', '\040', '\157', '\156', '\040',
'\061', '\012', '\155', '\167', '\127', '\040', '\155', '\145',
'\040', '\061', '\012', '\154', '\111', '\152', '\040', '\154',
'\145', '\040', '\061', '\012', '\106', '\166', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\125', '\164', '\161',
'\040', '\164', '\150', '\040', '\061', '\012', '\152', '\107',
'\153', '\040', '\151', '\152', '\040', '\061', '\012', '\167',
'\131', '\167', '\040', '\167', '\141', '\040', '\061', '\012',
'\167', '\126', '\155', '\040', '\155', '\145', '\040', '\061',
'\012', '\142', '\124', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\111', '\152', '\160', '\040', '\151', '\152',
'\040', '\061', '\012', '\172', '\156', '\115', '\040', '\141',
'\156', '\040', '\061', '\012', '\170', '\155', '\117', '\040',
'\155', '\145', '\040', '\061', '\012', '\147', '\121', '\170',
'\040', '\156', '\147', '\040', '\061', '\012', '\144', '\113',
'\167', '\040', '\144', '\145', '\040', '\061', '\012', '\144',
'\125', '\146', '\040', '\144', '\145', '\040', '\061', '\012',
'\143', '\123', '\142', '\040', '\143', '\150', '\040', '\061',
'\012', '\172', '\126', '\142', '\040', '\163', '\172', '\040',
'\061', '\012', '\143', '\143', '\131', '\040', '\143', '\150',
'\040', '\061', '\012', '\170', '\152', '\105', '\040', '\151',
'\152', '\040', '\061', '\012', '\160', '\131', '\164', '\040',
'\164', '\150', '\040', '\061', '\012', '\126', '\162', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\153', '\172',
'\113', '\040', '\163', '\172', '\040', '\061', '\012', '\172',
'\146', '\103', '\040', '\163', '\172', '\040', '\061', '\012',
'\131', '\142', '\150', '\040', '\164', '\150', '\040', '\061',
'\012', '\144', '\147', '\123', '\040', '\156', '\147', '\040',
'\061', '\012', '\170', '\143', '\126', '\040', '\143', '\150',
'\040', '\061', '\012', '\170', '\116', '\155', '\040', '\155',
'\145', '\040', '\061', '\012', '\130', '\153', '\167', '\040',
'\153', '\141', '\040', '\061', '\012', '\124', '\160', '\167',
'\040', '\160', '\162', '\040', '\061', '\012', '\102', '\167',
'\144', '\040', '\144', '\145', '\040', '\061', '\012', '\150',
'\167', '\124', '\040', '\164', '\150', '\040', '\061', '\012',
'\147', '\121', '\154', '\040', '\156', '\147', '\040', '\061',
'\012', '\143', '\104', '\163', '\040', '\143', '\150', '\040',
'\061', '\012', '\172', '\131', '\162', '\040', '\145', '\162',
'\040', '\061', '\012', '\170', '\124', '\160', '\040', '\160',
'\162', '\040', '\061', '\012', '\161', '\127', '\155', '\040',
'\161', '\165', '\040', '\061', '\012', '\170', '\152', '\124',
'\040', '\151', '\152', '\040', '\061', '\012', '\150', '\152',
'\113', '\040', '\164', '\150', '\040', '\061', '\012', '\165',
'\104', '\143', '\040', '\143', '\150', '\040', '\061', '\012',
'\170', '\150', '\123', '\040', '\164', '\150', '\040', '\061',
'\012', '\142', '\127', '\144', '\040', '\144', '\145', '\040',
'\061', '\012', '\166', '\103', '\167', '\040', '\166', '\141',
'\040', '\061', '\012', '\152', '\171', '\102', '\040', '\151',
'\152', '\040', '\061', '\012', '\165', '\127', '\144', '\040',
'\161', '\165', '\040', '\061', '\012', '\116', '\156', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\121', '\166',
'\142', '\040', '\166', '\141', '\040', '\061', '\012', '\152',
'\172', '\126', '\040', '\163', '\172', '\040', '\061', '\012',
'\172', '\102', '\170', '\040', '\163', '\172', '\040', '\061',
'\012', '\167', '\111', '\152', '\040', '\151', '\152', '\040',
'\061', '\012', '\161', '\122', '\164', '\040', '\164', '\150',
'\040', '\061', '\012', '\161', '\162', '\112', '\040', '\161',
'\165', '\040', '\061', '\012', '\172', '\132', '\152', '\040',
'\163', '\172', '\040', '\061', '\012', '\153', '\122', '\162',
'\040', '\145', '\162', '\040', '\061', '\012', '\116', '\172',
'\166', '\040', '\163', '\172', '\040', '\061', '\012', '\121',
'\146', '\167', '\040', '\167', '\141', '\040', '\061', '\012',
'\116', '\152', '\164', '\040', '\164', '\150', '\040', '\061',
'\012', '\142', '\106', '\171', '\040', '\142', '\145', '\040',
'\061', '\012', '\154', '\150', '\131', '\040', '\164', '\150',
'\040', '\061', '\012', '\145', '\127', '\152', '\040', '\145',
'\162', '\040', '\061', '\012', '\152', '\142', '\115', '\040',
'\151', '\152', '\040', '\061', '\012', '\130', '\163', '\147',
'\040', '\156', '\147', '\040', '\061', '\012', '\122', '\163',
'\144', '\040', '\144', '\145', '\040', '\061', '\012', '\146',
'\154', '\106', '\040', '\154', '\145', '\040', '\061', '\012',
'\120', '\150', '\172', '\040', '\164', '\150', '\040', '\061',
'\012', '\170', '\127', '\163', '\040', '\163', '\164', '\040',
'\061', '\012', '\142', '\103', '\167', '\040', '\167', '\141',
'\040', '\061', '\012', '\147', '\146', '\112', '\040', '\156',
'\147', '\040', '\061', '\012', '\161', '\126', '\157', '\040',
'\161', '\165', '\040', '\061', '\012', '\145', '\121', '\150',
'\040', '\164', '\150', '\040', '\061', '\012', '\166', '\143',
'\120', '\040', '\143', '\150', '\040', '\061', '\012', '\155',
'\104', '\152', '\040', '\151', '\152', '\040', '\061', '\012',
'\161', '\124', '\163', '\040', '\161', '\165', '\040', '\061',
'\012', '\130', '\147', '\163', '\040', '\156', '\147', '\040',
'\061', '\012', '\126', '\165', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\165', '\146', '\116', '\040', '\161',
'\165', '\040', '\061', '\012', '\170', '\102', '\163', '\040',
'\163', '\164', '\040', '\061', '\012', '\160', '\124', '\153',
'\040', '\153', '\141', '\040', '\061', '\012', '\146', '\123',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\155',
'\142', '\104', '\040', '\155', '\145', '\040', '\061', '\012',
'\126', '\167', '\172', '\040', '\163', '\172', '\040', '\061',
'\012', '\150', '\150', '\121', '\040', '\164', '\150', '\040',
'\061', '\012', '\153', '\146', '\120', '\040', '\153', '\141',
'\040', '\061', '\012', '\120', '\167', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\144', '\150', '\107', '\040',
'\164', '\150', '\040', '\061', '\012', '\161', '\132', '\152',
'\040', '\161', '\165', '\040', '\061', '\012', '\171', '\122',
'\152', '\040', '\151', '\152', '\040', '\061', '\012', '\171',
'\103', '\163', '\040', '\163', '\164', '\040', '\061', '\012',
'\146', '\152', '\116', '\040', '\151', '\152', '\040', '\061',
'\012', '\122', '\161', '\147', '\040', '\156', '\147', '\040',
'\061', '\012', '\152', '\112', '\150', '\040', '\164', '\150',
'\040', '\061', '\012', '\144', '\154', '\122', '\040', '\154',
'\145', '\040', '\061', '\012', '\130', '\155', '\142', '\040',
'\155', '\145', '\040', '\061', '\012', '\112', '\152', '\164',
'\040', '\164', '\150', '\040', '\061', '\012', '\147', '\161',
'\111', '\040', '\156', '\147', '\040', '\061', '\012', '\146',
'\161', '\115', '\040', '\161', '\165', '\040', '\061', '\012',
'\151', '\126', '\147', '\040', '\156', '\147', '\040', '\061',
'\012', '\110', '\147', '\165', '\040', '\156', '\147', '\040',
'\061', '\012', '\151', '\110', '\167', '\040', '\151', '\156',
'\040', '\061', '\012', '\145', '\121', '\166', '\040', '\145',
'\162', '\040', '\061', '\012', '\155', '\172', '\105', '\040',
'\163', '\172', '\040', '\061', '\012', '\146', '\152', '\132',
'\040', '\151', '\152', '\040', '\061', '\012', '\161', '\116',
'\156', '\040', '\141', '\156', '\040', '\061', '\012', '\167',
'\154', '\105', '\040', '\154', '\145', '\040', '\061', '\012',
'\153', '\107', '\160', '\040', '\153', '\141', '\040', '\061',
'\012', '\111', '\161', '\166', '\040', '\161', '\165', '\040',
'\061', '\012', '\153', '\102', '\156', '\040', '\141', '\156',
'\040', '\061', '\012', '\170', '\132', '\144', '\040', '\144',
'\145', '\040', '\061', '\012', '\104', '\153', '\143', '\040',
'\143', '\150', '\040', '\061', '\012', '\172', '\154', '\110',
'\040', '\154', '\145', '\040', '\061', '\012', '\164', '\170',
'\102', '\040', '\164', '\150', '\040', '\061', '\012', '\164',
'\121', '\162', '\040', '\164', '\150', '\040', '\061', '\012',
'\165', '\117', '\170', '\040', '\161', '\165', '\040', '\061',
'\012', '\160', '\112', '\151', '\040', '\151', '\156', '\040',
'\061', '\012', '\172', '\142', '\114', '\040', '\163', '\172',
'\040', '\061', '\012', '\170', '\153', '\104', '\040', '\153',
'\141', '\040', '\061', '\012', '\163', '\143', '\126', '\040',
'\143', '\150', '\040', '\061', '\012', '\161', '\130', '\150',
'\040', '\164', '\150', '\040', '\061', '\012', '\153', '\111',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\170',
'\116', '\156', '\040', '\141', '\156', '\040', '\061', '\012',
'\147', '\112', '\146', '\040', '\156', '\147', '\040', '\061',
'\012', '\164', '\155', '\102', '\040', '\164', '\150', '\040',
'\061', '\012', '\164', '\143', '\113', '\040', '\164', '\150',
'\040', '\061', '\012', '\153', '\167', '\132', '\040', '\153',
'\141', '\040', '\061', '\012', '\165', '\132', '\152', '\040',
'\161', '\165', '\040', '\061', '\012', '\163', '\156', '\121',
'\040', '\141', '\156', '\040', '\061', '\012', '\165', '\113',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\143',
'\162', '\130', '\040', '\143', '\150', '\040', '\061', '\012',
'\150', '\130', '\171', '\040', '\164', '\150', '\040', '\061',
'\012', '\132', '\143', '\143', '\040', '\143', '\150', '\040',
'\061', '\012', '\120', '\146', '\172', '\040', '\163', '\172',
'\040', '\061', '\012', '\144', '\167', '\115', '\040', '\144',
'\145', '\040', '\061', '\012', '\161', '\111', '\171', '\040',
'\161', '\165', '\040', '\061', '\012', '\170', '\165', '\120',
'\040', '\161', '\165', '\040', '\061', '\012', '\167', '\104',
'\167', '\040', '\167', '\141', '\040', '\061', '\012', '\110',
'\152', '\162', '\040', '\145', '\162', '\040', '\061', '\012',
'\144', '\121', '\146', '\040', '\144', '\145', '\040', '\061',
'\012', '\167', '\166', '\112', '\040', '\167', '\141', '\040',
'\061', '\012', '\164', '\110', '\155', '\040', '\164', '\150',
'\040', '\061', '\012', '\131', '\144', '\167', '\040', '\144',
'\145', '\040', '\061', '\012', '\167', '\170', '\111', '\040',
'\167', '\141', '\040', '\061', '\012', '\160', '\117', '\166',
'\040', '\166', '\141', '\040', '\061', '\012', '\127', '\155',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\144',
'\150', '\104', '\040', '\164', '\150', '\040', '\061', '\012',
'\161', '\160', '\167', '\040', '\161', '\165', '\040', '\061',
'\012', '\142', '\155', '\103', '\040', '\155', '\145', '\040',
'\061', '\012', '\167', '\143', '\130', '\040', '\143', '\150',
'\040', '\061', '\012', '\167', '\152', '\110', '\040', '\151',
'\152', '\040', '\061', '\012', '\142', '\127', '\146', '\040',
'\142', '\145', '\040', '\061', '\012', '\107', '\144', '\160',
'\040', '\144', '\145', '\040', '\061', '\012', '\114', '\144',
'\167', '\040', '\144', '\145', '\040', '\061', '\012', '\123',
'\142', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\166', '\132', '\166', '\040', '\166', '\141', '\040', '\061',
'\012', '\113', '\167', '\142', '\040', '\167', '\141', '\040',
'\061', '\012', '\161', '\150', '\124', '\040', '\164', '\150',
'\040', '\061', '\012', '\171', '\122', '\146', '\040', '\156',
'\171', '\040', '\061', '\012', '\150', '\167', '\103', '\040',
'\164', '\150', '\040', '\061', '\012', '\156', '\160', '\112',
'\040', '\141', '\156', '\040', '\061', '\012', '\152', '\155',
'\126', '\040', '\151', '\152', '\040', '\061', '\012', '\166',
'\107', '\147', '\040', '\156', '\147', '\040', '\061', '\012',
'\170', '\161', '\106', '\040', '\161', '\165', '\040', '\061',
'\012', '\120', '\150', '\155', '\040', '\164', '\150', '\040',
'\061', '\012', '\160', '\127', '\143', '\040', '\143', '\150',
'\040', '\061', '\012', '\126', '\170', '\153', '\040', '\153',
'\141', '\040', '\061', '\012', '\163', '\110', '\172', '\040',
'\163', '\164', '\040', '\061', '\012', '\127', '\142', '\170',
'\040', '\142', '\145', '\040', '\061', '\012', '\142', '\146',
'\113', '\040', '\142', '\145', '\040', '\061', '\012', '\112',
'\147', '\154', '\040', '\156', '\147', '\040', '\061', '\012',
'\153', '\124', '\142', '\040', '\153', '\141', '\040', '\061',
'\012', '\113', '\142', '\146', '\040', '\142', '\145', '\040',
'\061', '\012', '\153', '\172', '\103', '\040', '\163', '\172',
'\040', '\061', '\012', '\160', '\113', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\172', '\167', '\102', '\040',
'\163', '\172', '\040', '\061', '\012', '\165', '\132', '\147',
'\040', '\156', '\147', '\040', '\061', '\012', '\142', '\164',
'\111', '\040', '\164', '\150', '\040', '\061', '\012', '\172',
'\130', '\152', '\040', '\163', '\172', '\040', '\061', '\012',
'\165', '\172', '\123', '\040', '\161', '\165', '\040', '\061',
'\012', '\166', '\127', '\153', '\040', '\153', '\141', '\040',
'\061', '\012', '\170', '\162', '\110', '\040', '\145', '\162',
'\040', '\061', '\012', '\157', '\121', '\143', '\040', '\143',
'\150', '\040', '\061', '\012', '\172', '\154', '\124', '\040',
'\154', '\145', '\040', '\061', '\012', '\144', '\146', '\111',
'\040', '\144', '\145', '\040', '\061', '\012', '\121', '\155',
'\146', '\040', '\155', '\145', '\040', '\061', '\012', '\163',
'\147', '\105', '\040', '\156', '\147', '\040', '\061', '\012',
'\131', '\163', '\170', '\040', '\163', '\164', '\040', '\061',
'\012', '\122', '\172', '\144', '\040', '\144', '\145', '\040',
'\061', '\012', '\170', '\114', '\144', '\040', '\144', '\145',
'\040', '\061', '\012', '\161', '\163', '\130', '\040', '\161',
'\165', '\040', '\061', '\012', '\153', '\161', '\112', '\040',
'\161', '\165', '\040', '\061', '\012', '\153', '\103', '\155',
'\040', '\153', '\141', '\040', '\061', '\012', '\142', '\106',
'\155', '\040', '\155', '\145', '\040', '\061', '\012', '\151',
'\147', '\121', '\040', '\156', '\147', '\040', '\061', '\012',
'\163', '\122', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\152', '\107', '\155', '\040', '\151', '\152', '\040',
'\061', '\012', '\123', '\172', '\163', '\040', '\163', '\164',
'\040', '\061', '\012', '\131', '\166', '\172', '\040', '\163',
'\172', '\040', '\061', '\012', '\153', '\130', '\172', '\040',
'\163', '\172', '\040', '\061', '\012', '\107', '\156', '\172',
'\040', '\141', '\156', '\040', '\061', '\012', '\155', '\127',
'\143', '\040', '\143', '\150', '\040', '\061', '\012', '\164',
'\104', '\161', '\040', '\164', '\150', '\040', '\061', '\012',
'\147', '\161', '\172', '\040', '\156', '\147', '\040', '\061',
'\012', '\156', '\110', '\142', '\040', '\156', '\147', '\040',
'\061', '\012', '\164', '\144', '\115', '\040', '\164', '\150',
'\040', '\061', '\012', '\117', '\166', '\170', '\040', '\166',
'\141', '\040', '\061', '\012', '\132', '\156', '\154', '\040',
'\141', '\156', '\040', '\061', '\012', '\167', '\165', '\105',
'\040', '\161', '\165', '\040', '\061', '\012', '\172', '\114',
'\164', '\040', '\164', '\150', '\040', '\061', '\012', '\157',
'\146', '\121', '\040', '\157', '\156', '\040', '\061', '\012',
'\166', '\131', '\152', '\040', '\151', '\152', '\040', '\061',
'\012', '\152', '\171', '\110', '\040', '\151', '\152', '\040',
'\061', '\012', '\172', '\161', '\101', '\040', '\161', '\165',
'\040', '\061', '\012', '\143', '\112', '\171', '\040', '\143',
'\150', '\040', '\061', '\012', '\127', '\142', '\146', '\040',
'\142', '\145', '\040', '\061', '\012', '\154', '\124', '\164',
'\040', '\164', '\150', '\040', '\061', '\012', '\153', '\154',
'\127', '\040', '\154', '\145', '\040', '\061', '\012', '\130',
'\170', '\141', '\040', '\141', '\156', '\040', '\061', '\012',
'\146', '\103', '\172', '\040', '\163', '\172', '\040', '\061',
'\012', '\154', '\113', '\146', '\040', '\154', '\145', '\040',
'\061', '\012', '\161', '\167', '\124', '\040', '\161', '\165',
'\040', '\061', '\012', '\162', '\110', '\153', '\040', '\145',
'\162', '\040', '\061', '\012', '\144', '\142', '\116', '\040',
'\144', '\145', '\040', '\061', '\012', '\165', '\125', '\171',
'\040', '\161', '\165', '\040', '\061', '\012', '\172', '\147',
'\116', '\040', '\156', '\147', '\040', '\061', '\012', '\120',
'\170', '\147', '\040', '\156', '\147', '\040', '\061', '\012',
'\160', '\116', '\143', '\040', '\143', '\150', '\040', '\061',
'\012', '\143', '\171', '\112', '\040', '\143', '\150', '\040',
'\061', '\012', '\152', '\160', '\110', '\040', '\151', '\152',
'\040', '\061', '\012', '\126', '\164', '\146', '\040', '\164',
'\150', '\040', '\061', '\012', '\163', '\152', '\112', '\040',
'\163', '\164', '\040', '\061', '\012', '\121', '\154', '\150',
'\040', '\164', '\150', '\040', '\061', '\012', '\164', '\167',
'\126', '\040', '\164', '\150', '\040', '\061', '\012', '\171',
'\107', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\164', '\126', '\160', '\040', '\164', '\150', '\040', '\061',
'\012', '\153', '\163', '\121', '\040', '\163', '\164', '\040',
'\061', '\012', '\170', '\156', '\124', '\040', '\141', '\156',
'\040', '\061', '\012', '\162', '\160', '\112', '\040', '\145',
'\162', '\040', '\061', '\012', '\167', '\172', '\111', '\040',
'\163', '\172', '\040', '\061', '\012', '\132', '\150', '\160',
'\040', '\164', '\150', '\040', '\061', '\012', '\141', '\104',
'\146', '\040', '\141', '\156', '\040', '\061', '\012', '\125',
'\170', '\152', '\040', '\151', '\152', '\040', '\061', '\012',
'\143', '\120', '\147', '\040', '\143', '\150', '\040', '\061',
'\012', '\161', '\123', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\155', '\113', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\166', '\102', '\172', '\040', '\163',
'\172', '\040', '\061', '\012', '\171', '\120', '\152', '\040',
'\151', '\152', '\040', '\061', '\012', '\126', '\153', '\172',
'\040', '\163', '\172', '\040', '\061', '\012', '\161', '\151',
'\102', '\040', '\161', '\165', '\040', '\061', '\012', '\164',
'\153', '\112', '\040', '\164', '\150', '\040', '\061', '\012',
'\117', '\165', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\172', '\157', '\110', '\040', '\157', '\156', '\040',
'\061', '\012', '\161', '\126', '\164', '\040', '\164', '\150',
'\040', '\061', '\012', '\107', '\170', '\163', '\040', '\163',
'\164', '\040', '\061', '\012', '\152', '\172', '\106', '\040',
'\163', '\172', '\040', '\061', '\012', '\163', '\167', '\110',
'\040', '\163', '\164', '\040', '\061', '\012', '\156', '\102',
'\142', '\040', '\141', '\156', '\040', '\061', '\012', '\172',
'\150', '\121', '\040', '\164', '\150', '\040', '\061', '\012',
'\171', '\122', '\156', '\040', '\141', '\156', '\040', '\061',
'\012', '\146', '\156', '\130', '\040', '\141', '\156', '\040',
'\061', '\012', '\161', '\157', '\121', '\040', '\161', '\165',
'\040', '\061', '\012', '\155', '\170', '\120', '\040', '\155',
'\145', '\040', '\061', '\012', '\142', '\167', '\122', '\040',
'\167', '\141', '\040', '\061', '\012', '\147', '\112', '\152',
'\040', '\156', '\147', '\040', '\061', '\012', '\161', '\156',
'\153', '\040', '\141', '\156', '\040', '\061', '\012', '\164',
'\115', '\153', '\040', '\164', '\150', '\040', '\061', '\012',
'\144', '\170', '\117', '\040', '\144', '\145', '\040', '\061',
'\012', '\162', '\172', '\126', '\040', '\145', '\162', '\040',
'\061', '\012', '\166', '\160', '\120', '\040', '\166', '\141',
'\040', '\061', '\012', '\116', '\166', '\172', '\040', '\163',
'\172', '\040', '\061', '\012', '\116', '\146', '\160', '\040',
'\160', '\162', '\040', '\061', '\012', '\103', '\156', '\172',
'\040', '\141', '\156', '\040', '\061', '\012', '\157', '\124',
'\144', '\040', '\157', '\156', '\040', '\061', '\012', '\144',
'\161', '\107', '\040', '\161', '\165', '\040', '\061', '\012',
'\110', '\155', '\170', '\040', '\155', '\145', '\040', '\061',
'\012', '\160', '\163', '\130', '\040', '\163', '\164', '\040',
'\061', '\012', '\163', '\167', '\115', '\040', '\163', '\164',
'\040', '\061', '\012', '\144', '\161', '\103', '\040', '\161',
'\165', '\040', '\061', '\012', '\126', '\167', '\170', '\040',
'\167', '\141', '\040', '\061', '\012', '\156', '\130', '\146',
'\040', '\141', '\156', '\040', '\061', '\012', '\167', '\153',
'\131', '\040', '\153', '\141', '\040', '\061', '\012', '\167',
'\146', '\103', '\040', '\167', '\141', '\040', '\061', '\012',
'\161', '\123', '\162', '\040', '\161', '\165', '\040', '\061',
'\012', '\161', '\126', '\143', '\040', '\143', '\150', '\040',
'\061', '\012', '\153', '\104', '\156', '\040', '\141', '\156',
'\040', '\061', '\012', '\131', '\166', '\142', '\040', '\166',
'\141', '\040', '\061', '\012', '\172', '\161', '\110', '\040',
'\161', '\165', '\040', '\061', '\012', '\161', '\170', '\112',
'\040', '\161', '\165', '\040', '\061', '\012', '\172', '\113',
'\152', '\040', '\163', '\172', '\040', '\061', '\012', '\152',
'\143', '\116', '\040', '\143', '\150', '\040', '\061', '\012',
'\164', '\127', '\153', '\040', '\164', '\150', '\040', '\061',
'\012', '\122', '\162', '\172', '\040', '\145', '\162', '\040',
'\061', '\012', '\142', '\155', '\107', '\040', '\155', '\145',
'\040', '\061', '\012', '\163', '\162', '\132', '\040', '\145',
'\162', '\040', '\061', '\012', '\167', '\127', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\103', '\146', '\150',
'\040', '\164', '\150', '\040', '\061', '\012', '\154', '\116',
'\164', '\040', '\164', '\150', '\040', '\061', '\012', '\150',
'\143', '\126', '\040', '\164', '\150', '\040', '\061', '\012',
'\132', '\156', '\146', '\040', '\141', '\156', '\040', '\061',
'\012', '\112', '\150', '\166', '\040', '\164', '\150', '\040',
'\061', '\012', '\161', '\111', '\160', '\040', '\161', '\165',
'\040', '\061', '\012', '\166', '\123', '\172', '\040', '\163',
'\172', '\040', '\061', '\012', '\146', '\145', '\125', '\040',
'\145', '\162', '\040', '\061', '\012', '\170', '\111', '\151',
'\040', '\151', '\156', '\040', '\061', '\012', '\132', '\155',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\145',
'\107', '\146', '\040', '\145', '\162', '\040', '\061', '\012',
'\142', '\121', '\153', '\040', '\153', '\141', '\040', '\061',
'\012', '\130', '\143', '\142', '\040', '\143', '\150', '\040',
'\061', '\012', '\156', '\154', '\113', '\040', '\141', '\156',
'\040', '\061', '\012', '\164', '\155', '\112', '\040', '\164',
'\150', '\040', '\061', '\012', '\152', '\154', '\114', '\040',
'\154', '\145', '\040', '\061', '\012', '\155', '\167', '\103',
'\040', '\155', '\145', '\040', '\061', '\012', '\161', '\152',
'\162', '\040', '\161', '\165', '\040', '\061', '\012', '\172',
'\102', '\142', '\040', '\163', '\172', '\040', '\061', '\012',
'\146', '\150', '\125', '\040', '\164', '\150', '\040', '\061',
'\012', '\163', '\120', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\163', '\102', '\146', '\040', '\163', '\164',
'\040', '\061', '\012', '\165', '\130', '\171', '\040', '\161',
'\165', '\040', '\061', '\012', '\114', '\153', '\170', '\040',
'\153', '\141', '\040', '\061', '\012', '\162', '\107', '\172',
'\040', '\145', '\162', '\040', '\061', '\012', '\150', '\130',
'\172', '\040', '\164', '\150', '\040', '\061', '\012', '\172',
'\165', '\127', '\040', '\161', '\165', '\040', '\061', '\012',
'\122', '\166', '\170', '\040', '\166', '\141', '\040', '\061',
'\012', '\142', '\143', '\112', '\040', '\143', '\150', '\040',
'\061', '\012', '\105', '\157', '\152', '\040', '\157', '\156',
'\040', '\061', '\012', '\151', '\126', '\164', '\040', '\151',
'\156', '\040', '\061', '\012', '\171', '\150', '\110', '\040',
'\164', '\150', '\040', '\061', '\012', '\170', '\126', '\166',
'\040', '\166', '\141', '\040', '\061', '\012', '\160', '\115',
'\162', '\040', '\145', '\162', '\040', '\061', '\012', '\166',
'\132', '\144', '\040', '\144', '\145', '\040', '\061', '\012',
'\126', '\166', '\156', '\040', '\141', '\156', '\040', '\061',
'\012', '\151', '\103', '\166', '\040', '\151', '\156', '\040',
'\061', '\012', '\166', '\121', '\160', '\040', '\166', '\141',
'\040', '\061', '\012', '\166', '\154', '\102', '\040', '\154',
'\145', '\040', '\061', '\012', '\167', '\126', '\164', '\040',
'\164', '\150', '\040', '\061', '\012', '\125', '\147', '\153',
'\040', '\156', '\147', '\040', '\061', '\012', '\153', '\164',
'\121', '\040', '\164', '\150', '\040', '\061', '\012', '\152',
'\103', '\162', '\040', '\145', '\162', '\040', '\061', '\012',
'\161', '\166', '\172', '\040', '\161', '\165', '\040', '\061',
'\012', '\142', '\126', '\146', '\040', '\142', '\145', '\040',
'\061', '\012', '\162', '\120', '\166', '\040', '\145', '\162',
'\040', '\061', '\012', '\167', '\146', '\110', '\040', '\167',
'\141', '\040', '\061', '\012', '\150', '\142', '\125', '\040',
'\164', '\150', '\040', '\061', '\012', '\160', '\152', '\106',
'\040', '\151', '\152', '\040', '\061', '\012', '\157', '\130',
'\147', '\040', '\156', '\147', '\040', '\061', '\012', '\172',
'\123', '\162', '\040', '\145', '\162', '\040', '\061', '\012',
'\167', '\122', '\142', '\040', '\167', '\141', '\040', '\061',
'\012', '\110', '\143', '\165', '\040', '\143', '\150', '\040',
'\061', '\012', '\171', '\170', '\112', '\040', '\156', '\171',
'\040', '\061', '\012', '\154', '\124', '\143', '\040', '\143',
'\150', '\040', '\061', '\012', '\142', '\131', '\142', '\040',
'\142', '\145', '\040', '\061', '\012', '\127', '\170', '\172',
'\040', '\163', '\172', '\040', '\061', '\012', '\166', '\162',
'\105', '\040', '\145', '\162', '\040', '\061', '\012', '\172',
'\107', '\171', '\040', '\163', '\172', '\040', '\061', '\012',
'\112', '\161', '\155', '\040', '\161', '\165', '\040', '\061',
'\012', '\162', '\172', '\111', '\040', '\145', '\162', '\040',
'\061', '\012', '\170', '\147', '\126', '\040', '\147', '\151',
'\040', '\061', '\012', '\122', '\166', '\167', '\040', '\166',
'\141', '\040', '\061', '\012', '\126', '\156', '\170', '\040',
'\141', '\156', '\040', '\061', '\012', '\165', '\112', '\147',
'\040', '\156', '\147', '\040', '\061', '\012', '\150', '\106',
'\161', '\040', '\164', '\150', '\040', '\061', '\012', '\124',
'\147', '\172', '\040', '\156', '\147', '\040', '\061', '\012',
'\141', '\121', '\143', '\040', '\141', '\156', '\040', '\061',
'\012', '\170', '\172', '\112', '\040', '\163', '\172', '\040',
'\061', '\012', '\164', '\116', '\143', '\040', '\164', '\150',
'\040', '\061', '\012', '\152', '\146', '\101', '\040', '\151',
'\152', '\040', '\061', '\012', '\171', '\143', '\117', '\040',
'\143', '\150', '\040', '\061', '\012', '\127', '\153', '\152',
'\040', '\151', '\152', '\040', '\061', '\012', '\171', '\102',
'\160', '\040', '\160', '\162', '\040', '\061', '\012', '\150',
'\147', '\104', '\040', '\164', '\150', '\040', '\061', '\012',
'\151', '\123', '\170', '\040', '\151', '\156', '\040', '\061',
'\012', '\170', '\103', '\155', '\040', '\155', '\145', '\040',
'\061', '\012', '\171', '\152', '\130', '\040', '\151', '\152',
'\040', '\061', '\012', '\165', '\111', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\161', '\147', '\161', '\040',
'\156', '\147', '\040', '\061', '\012', '\124', '\172', '\152',
'\040', '\163', '\172', '\040', '\061', '\012', '\171', '\152',
'\117', '\040', '\151', '\152', '\040', '\061', '\012', '\171',
'\162', '\131', '\040', '\145', '\162', '\040', '\061', '\012',
'\142', '\155', '\132', '\040', '\155', '\145', '\040', '\061',
'\012', '\172', '\161', '\124', '\040', '\161', '\165', '\040',
'\061', '\012', '\155', '\102', '\144', '\040', '\144', '\145',
'\040', '\061', '\012', '\161', '\166', '\113', '\040', '\161',
'\165', '\040', '\061', '\012', '\172', '\143', '\101', '\040',
'\143', '\150', '\040', '\061', '\012', '\170', '\162', '\130',
'\040', '\145', '\162', '\040', '\061', '\012', '\155', '\112',
'\155', '\040', '\155', '\145', '\040', '\061', '\012', '\130',
'\161', '\146', '\040', '\161', '\165', '\040', '\061', '\012',
'\120', '\170', '\153', '\040', '\153', '\141', '\040', '\061',
'\012', '\141', '\104', '\142', '\040', '\141', '\156', '\040',
'\061', '\012', '\161', '\130', '\147', '\040', '\156', '\147',
'\040', '\061', '\012', '\145', '\107', '\167', '\040', '\145',
'\162', '\040', '\061', '\012', '\150', '\152', '\104', '\040',
'\164', '\150', '\040', '\061', '\012', '\164', '\124', '\170',
'\040', '\164', '\150', '\040', '\061', '\012', '\157', '\115',
'\144', '\040', '\157', '\156', '\040', '\061', '\012', '\146',
'\113', '\147', '\040', '\156', '\147', '\040', '\061', '\012',
'\116', '\160', '\156', '\040', '\141', '\156', '\040', '\061',
'\012', '\153', '\161', '\125', '\040', '\161', '\165', '\040',
'\061', '\012', '\154', '\142', '\106', '\040', '\154', '\145',
'\040', '\061', '\012', '\110', '\166', '\152', '\040', '\151',
'\152', '\040', '\061', '\012', '\161', '\132', '\145', '\040',
'\161', '\165', '\040', '\061', '\012', '\154', '\121', '\152',
'\040', '\154', '\145', '\040', '\061', '\012', '\144', '\153',
'\131', '\040', '\144', '\145', '\040', '\061', '\012', '\144',
'\132', '\154', '\040', '\154', '\145', '\040', '\061', '\012',
'\172', '\132', '\150', '\040', '\164', '\150', '\040', '\061',
'\012', '\161', '\171', '\115', '\040', '\161', '\165', '\040',
'\061', '\012', '\144', '\155', '\112', '\040', '\144', '\145',
'\040', '\061', '\012', '\153', '\146', '\113', '\040', '\153',
'\141', '\040', '\061', '\012', '\151', '\120', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\172', '\167', '\125',
'\040', '\163', '\172', '\040', '\061', '\012', '\160', '\166',
'\123', '\040', '\166', '\141', '\040', '\061', '\012', '\151',
'\150', '\112', '\040', '\164', '\150', '\040', '\061', '\012',
'\165', '\143', '\127', '\040', '\143', '\150', '\040', '\061',
'\012', '\112', '\152', '\172', '\040', '\163', '\172', '\040',
'\061', '\012', '\155', '\115', '\144', '\040', '\144', '\145',
'\040', '\061', '\012', '\166', '\160', '\167', '\040', '\166',
'\141', '\040', '\061', '\012', '\170', '\103', '\147', '\040',
'\156', '\147', '\040', '\061', '\012', '\150', '\113', '\163',
'\040', '\164', '\150', '\040', '\061', '\012', '\166', '\154',
'\111', '\040', '\154', '\145', '\040', '\061', '\012', '\116',
'\155', '\143', '\040', '\143', '\150', '\040', '\061', '\012',
'\170', '\172', '\126', '\040', '\163', '\172', '\040', '\061',
'\012', '\147', '\132', '\163', '\040', '\156', '\147', '\040',
'\061', '\012', '\162', '\122', '\160', '\040', '\145', '\162',
'\040', '\061', '\012', '\125', '\146', '\144', '\040', '\144',
'\145', '\040', '\061', '\012', '\146', '\160', '\106', '\040',
'\160', '\162', '\040', '\061', '\012', '\146', '\167', '\131',
'\040', '\167', '\141', '\040', '\061', '\012', '\107', '\170',
'\162', '\040', '\145', '\162', '\040', '\061', '\012', '\170',
'\114', '\162', '\040', '\145', '\162', '\040', '\061', '\012',
'\166', '\172', '\105', '\040', '\163', '\172', '\040', '\061',
'\012', '\152', '\122', '\146', '\040', '\151', '\152', '\040',
'\061', '\012', '\142', '\162', '\122', '\040', '\145', '\162',
'\040', '\061', '\012', '\147', '\153', '\132', '\040', '\156',
'\147', '\040', '\061', '\012', '\144', '\125', '\171', '\040',
'\144', '\145', '\040', '\061', '\012', '\130', '\152', '\151',
'\040', '\151', '\156', '\040', '\061', '\012', '\113', '\144',
'\142', '\040', '\144', '\145', '\040', '\061', '\012', '\152',
'\160', '\103', '\040', '\151', '\152', '\040', '\061', '\012',
'\157', '\125', '\152', '\040', '\157', '\156', '\040', '\061',
'\012', '\161', '\155', '\150', '\040', '\164', '\150', '\040',
'\061', '\012', '\161', '\152', '\114', '\040', '\161', '\165',
'\040', '\061', '\012', '\167', '\122', '\163', '\040', '\163',
'\172', '\040', '\061', '\012', '\152', '\150', '\115', '\040',
'\164', '\150', '\040', '\061', '\012', '\122', '\150', '\162',
'\040', '\164', '\150', '\040', '\061', '\012', '\142', '\164',
'\116', '\040', '\164', '\150', '\040', '\061', '\012', '\120',
'\152', '\161', '\040', '\151', '\152', '\040', '\061', '\012',
'\170', '\167', '\125', '\040', '\167', '\141', '\040', '\061',
'\012', '\161', '\171', '\105', '\040', '\161', '\165', '\040',
'\061', '\012', '\112', '\170', '\144', '\040', '\144', '\145',
'\040', '\061', '\012', '\120', '\161', '\162', '\040', '\161',
'\165', '\040', '\061', '\012', '\154', '\122', '\144', '\040',
'\154', '\145', '\040', '\061', '\012', '\152', '\161', '\111',
'\040', '\161', '\165', '\040', '\061', '\012', '\161', '\106',
'\163', '\040', '\161', '\165', '\040', '\061', '\012', '\115',
'\167', '\153', '\040', '\153', '\141', '\040', '\061', '\012',
'\152', '\105', '\142', '\040', '\151', '\152', '\040', '\061',
'\012', '\116', '\170', '\171', '\040', '\156', '\171', '\040',
'\061', '\012', '\120', '\172', '\155', '\040', '\163', '\172',
'\040', '\061', '\012', '\164', '\146', '\114', '\040', '\164',
'\150', '\040', '\061', '\012', '\166', '\106', '\143', '\040',
'\143', '\150', '\040', '\061', '\012', '\152', '\121', '\147',
'\040', '\156', '\147', '\040', '\061', '\012', '\102', '\156',
'\170', '\040', '\141', '\156', '\040', '\061', '\012', '\154',
'\115', '\166', '\040', '\154', '\145', '\040', '\061', '\012',
'\164', '\113', '\161', '\040', '\164', '\150', '\040', '\061',
'\012', '\145', '\126', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\124', '\171', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\144', '\162', '\112', '\040', '\145',
'\162', '\040', '\061', '\012', '\157', '\110', '\167', '\040',
'\157', '\156', '\040', '\061', '\012', '\154', '\106', '\153',
'\040', '\154', '\145', '\040', '\061', '\012', '\152', '\160',
'\127', '\040', '\151', '\152', '\040', '\061', '\012', '\121',
'\152', '\167', '\040', '\151', '\152', '\040', '\061', '\012',
'\143', '\116', '\170', '\040', '\143', '\150', '\040', '\061',
'\012', '\102', '\150', '\172', '\040', '\164', '\150', '\040',
'\061', '\012', '\142', '\150', '\102', '\040', '\164', '\150',
'\040', '\061', '\012', '\160', '\104', '\170', '\040', '\160',
'\162', '\040', '\061', '\012', '\170', '\160', '\131', '\040',
'\160', '\162', '\040', '\061', '\012', '\164', '\156', '\110',
'\040', '\164', '\150', '\040', '\061', '\012', '\144', '\146',
'\114', '\040', '\144', '\145', '\040', '\061', '\012', '\150',
'\172', '\114', '\040', '\164', '\150', '\040', '\061', '\012',
'\172', '\116', '\153', '\040', '\163', '\172', '\040', '\061',
'\012', '\154', '\102', '\155', '\040', '\154', '\145', '\040',
'\061', '\012', '\154', '\130', '\154', '\040', '\154', '\145',
'\040', '\061', '\012', '\171', '\120', '\166', '\040', '\166',
'\141', '\040', '\061', '\012', '\132', '\143', '\154', '\040',
'\143', '\150', '\040', '\061', '\012', '\150', '\115', '\161',
'\040', '\164', '\150', '\040', '\061', '\012', '\162', '\112',
'\152', '\040', '\162', '\151', '\040', '\061', '\012', '\141',
'\130', '\167', '\040', '\141', '\156', '\040', '\061', '\012',
'\172', '\163', '\121', '\040', '\163', '\172', '\040', '\061',
'\012', '\143', '\121', '\155', '\040', '\143', '\150', '\040',
'\061', '\012', '\123', '\161', '\143', '\040', '\143', '\150',
'\040', '\061', '\012', '\164', '\113', '\155', '\040', '\164',
'\150', '\040', '\061', '\012', '\150', '\166', '\117', '\040',
'\164', '\150', '\040', '\061', '\012', '\150', '\107', '\144',
'\040', '\164', '\150', '\040', '\061', '\012', '\127', '\142',
'\156', '\040', '\141', '\156', '\040', '\061', '\012', '\166',
'\103', '\146', '\040', '\166', '\141', '\040', '\061', '\012',
'\154', '\107', '\147', '\040', '\156', '\147', '\040', '\061',
'\012', '\166', '\104', '\150', '\040', '\164', '\150', '\040',
'\061', '\012', '\167', '\104', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\170', '\122', '\171', '\040', '\156',
'\171', '\040', '\061', '\012', '\166', '\130', '\151', '\040',
'\151', '\156', '\040', '\061', '\012', '\161', '\151', '\121',
'\040', '\161', '\165', '\040', '\061', '\012', '\143', '\106',
'\163', '\040', '\143', '\150', '\040', '\061', '\012', '\114',
'\150', '\160', '\040', '\164', '\150', '\040', '\061', '\012',
'\170', '\105', '\160', '\040', '\160', '\162', '\040', '\061',
'\012', '\146', '\121', '\164', '\040', '\164', '\150', '\040',
'\061', '\012', '\143', '\112', '\166', '\040', '\143', '\150',
'\040', '\061', '\012', '\154', '\172', '\117', '\040', '\154',
'\145', '\040', '\061', '\012', '\106', '\170', '\153', '\040',
'\153', '\141', '\040', '\061', '\012', '\164', '\104', '\144',
'\040', '\164', '\150', '\040', '\061', '\012', '\130', '\156',
'\170', '\040', '\141', '\156', '\040', '\061', '\012', '\164',
'\170', '\103', '\040', '\164', '\150', '\040', '\061', '\012',
'\164', '\107', '\142', '\040', '\164', '\150', '\040', '\061',
'\012', '\172', '\166', '\107', '\040', '\163', '\172', '\040',
'\061', '\012', '\147', '\160', '\103', '\040', '\156', '\147',
'\040', '\061', '\012', '\160', '\170', '\104', '\040', '\160',
'\162', '\040', '\061', '\012', '\132', '\146', '\160', '\040',
'\160', '\162', '\040', '\061', '\012', '\157', '\127', '\164',
'\040', '\164', '\150', '\040', '\061', '\012', '\166', '\166',
'\126', '\040', '\166', '\141', '\040', '\061', '\012', '\107',
'\167', '\146', '\040', '\167', '\141', '\040', '\061', '\012',
'\131', '\143', '\166', '\040', '\143', '\150', '\040', '\061',
'\012', '\147', '\143', '\132', '\040', '\143', '\150', '\040',
'\061', '\012', '\155', '\115', '\167', '\040', '\155', '\145',
'\040', '\061', '\012', '\171', '\121', '\154', '\040', '\154',
'\145', '\040', '\061', '\012', '\165', '\107', '\160', '\040',
'\161', '\165', '\040', '\061', '\012', '\154', '\116', '\152',
'\040', '\154', '\145', '\040', '\061', '\012', '\131', '\143',
'\155', '\040', '\143', '\150', '\040', '\061', '\012', '\166',
'\111', '\170', '\040', '\166', '\141', '\040', '\061', '\012',
'\171', '\114', '\160', '\040', '\160', '\162', '\040', '\061',
'\012', '\155', '\122', '\170', '\040', '\155', '\145', '\040',
'\061', '\012', '\156', '\162', '\113', '\040', '\141', '\156',
'\040', '\061', '\012', '\132', '\171', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\116', '\143', '\164', '\040',
'\164', '\150', '\040', '\061', '\012', '\121', '\155', '\154',
'\040', '\154', '\145', '\040', '\061', '\012', '\172', '\120',
'\144', '\040', '\144', '\145', '\040', '\061', '\012', '\144',
'\127', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\105', '\147', '\170', '\040', '\156', '\147', '\040', '\061',
'\012', '\166', '\116', '\163', '\040', '\163', '\164', '\040',
'\061', '\012', '\163', '\116', '\154', '\040', '\154', '\145',
'\040', '\061', '\012', '\160', '\144', '\127', '\040', '\144',
'\145', '\040', '\061', '\012', '\123', '\156', '\150', '\040',
'\164', '\150', '\040', '\061', '\012', '\171', '\162', '\120',
'\040', '\145', '\162', '\040', '\061', '\012', '\146', '\112',
'\154', '\040', '\154', '\145', '\040', '\061', '\012', '\164',
'\126', '\147', '\040', '\164', '\150', '\040', '\061', '\012',
'\152', '\166', '\103', '\040', '\151', '\152', '\040', '\061',
'\012', '\171', '\150', '\116', '\040', '\164', '\150', '\040',
'\061', '\012', '\161', '\144', '\103', '\040', '\161', '\165',
'\040', '\061', '\012', '\160', '\155', '\124', '\040', '\155',
'\145', '\040', '\061', '\012', '\114', '\142', '\147', '\040',
'\156', '\147', '\040', '\061', '\012', '\170', '\160', '\112',
'\040', '\160', '\162', '\040', '\061', '\012', '\155', '\131',
'\164', '\040', '\164', '\150', '\040', '\061', '\012', '\142',
'\167', '\126', '\040', '\167', '\141', '\040', '\061', '\012',
'\167', '\152', '\104', '\040', '\151', '\152', '\040', '\061',
'\012', '\146', '\161', '\103', '\040', '\161', '\165', '\040',
'\061', '\012', '\170', '\125', '\146', '\040', '\146', '\157',
'\040', '\061', '\012', '\144', '\150', '\125', '\040', '\164',
'\150', '\040', '\061', '\012', '\142', '\132', '\142', '\040',
'\142', '\145', '\040', '\061', '\012', '\164', '\167', '\104',
'\040', '\164', '\150', '\040', '\061', '\012', '\142', '\142',
'\115', '\040', '\142', '\145', '\040', '\061', '\012', '\150',
'\147', '\103', '\040', '\164', '\150', '\040', '\061', '\012',
'\144', '\113', '\142', '\040', '\144', '\145', '\040', '\061',
'\012', '\166', '\112', '\155', '\040', '\166', '\141', '\040',
'\061', '\012', '\167', '\105', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\117', '\146', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\143', '\130', '\154', '\040',
'\143', '\150', '\040', '\061', '\012', '\167', '\160', '\126',
'\040', '\160', '\162', '\040', '\061', '\012', '\164', '\161',
'\115', '\040', '\164', '\150', '\040', '\061', '\012', '\160',
'\125', '\146', '\040', '\160', '\162', '\040', '\061', '\012',
'\124', '\167', '\170', '\040', '\167', '\141', '\040', '\061',
'\012', '\115', '\147', '\161', '\040', '\156', '\147', '\040',
'\061', '\012', '\166', '\121', '\157', '\040', '\157', '\156',
'\040', '\061', '\012', '\171', '\152', '\124', '\040', '\151',
'\152', '\040', '\061', '\012', '\141', '\126', '\144', '\040',
'\141', '\156', '\040', '\061', '\012', '\145', '\110', '\160',
'\040', '\145', '\162', '\040', '\061', '\012', '\166', '\107',
'\166', '\040', '\166', '\141', '\040', '\061', '\012', '\163',
'\162', '\107', '\040', '\145', '\162', '\040', '\061', '\012',
'\161', '\126', '\142', '\040', '\161', '\165', '\040', '\061',
'\012', '\164', '\154', '\115', '\040', '\164', '\150', '\040',
'\061', '\012', '\156', '\162', '\124', '\040', '\141', '\156',
'\040', '\061', '\012', '\172', '\122', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\143', '\114', '\162', '\040',
'\143', '\150', '\040', '\061', '\012', '\154', '\162', '\110',
'\040', '\145', '\162', '\040', '\061', '\012', '\167', '\124',
'\154', '\040', '\154', '\145', '\040', '\061', '\012', '\143',
'\166', '\111', '\040', '\143', '\150', '\040', '\061', '\012',
'\153', '\161', '\116', '\040', '\161', '\165', '\040', '\061',
'\012', '\111', '\170', '\160', '\040', '\160', '\162', '\040',
'\061', '\012', '\170', '\145', '\121', '\040', '\145', '\162',
'\040', '\061', '\012', '\143', '\116', '\171', '\040', '\143',
'\150', '\040', '\061', '\012', '\153', '\122', '\150', '\040',
'\164', '\150', '\040', '\061', '\012', '\162', '\165', '\131',
'\040', '\161', '\165', '\040', '\061', '\012', '\130', '\143',
'\161', '\040', '\143', '\150', '\040', '\061', '\012', '\113',
'\172', '\142', '\040', '\142', '\151', '\040', '\061', '\012',
'\127', '\170', '\150', '\040', '\164', '\150', '\040', '\061',
'\012', '\160', '\152', '\115', '\040', '\151', '\152', '\040',
'\061', '\012', '\152', '\144', '\117', '\040', '\144', '\145',
'\040', '\061', '\012', '\112', '\146', '\171', '\040', '\156',
'\171', '\040', '\061', '\012', '\142', '\126', '\172', '\040',
'\163', '\172', '\040', '\061', '\012', '\144', '\121', '\157',
'\040', '\157', '\156', '\040', '\061', '\012', '\156', '\143',
'\121', '\040', '\141', '\156', '\040', '\061', '\012', '\160',
'\126', '\167', '\040', '\160', '\162', '\040', '\061', '\012',
'\123', '\170', '\152', '\040', '\151', '\152', '\040', '\061',
'\012', '\125', '\142', '\160', '\040', '\160', '\162', '\040',
'\061', '\012', '\167', '\166', '\103', '\040', '\166', '\141',
'\040', '\061', '\012', '\153', '\150', '\107', '\040', '\164',
'\150', '\040', '\061', '\012', '\143', '\161', '\106', '\040',
'\143', '\150', '\040', '\061', '\012', '\116', '\170', '\152',
'\040', '\151', '\152', '\040', '\061', '\012', '\167', '\104',
'\155', '\040', '\155', '\145', '\040', '\061', '\012', '\171',
'\104', '\144', '\040', '\144', '\145', '\040', '\061', '\012',
'\151', '\171', '\111', '\040', '\151', '\156', '\040', '\061',
'\012', '\145', '\130', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\150', '\161', '\120', '\040', '\164', '\150',
'\040', '\061', '\012', '\113', '\170', '\162', '\040', '\145',
'\162', '\040', '\061', '\012', '\166', '\163', '\131', '\040',
'\163', '\164', '\040', '\061', '\012', '\124', '\167', '\142',
'\040', '\167', '\141', '\040', '\061', '\012', '\146', '\161',
'\167', '\040', '\161', '\165', '\040', '\061', '\012', '\167',
'\155', '\103', '\040', '\155', '\145', '\040', '\061', '\012',
'\166', '\106', '\170', '\040', '\166', '\141', '\040', '\061',
'\012', '\166', '\156', '\103', '\040', '\141', '\156', '\040',
'\061', '\012', '\156', '\127', '\161', '\040', '\141', '\156',
'\040', '\061', '\012', '\150', '\172', '\102', '\040', '\164',
'\150', '\040', '\061', '\012', '\113', '\146', '\153', '\040',
'\153', '\141', '\040', '\061', '\012', '\164', '\121', '\145',
'\040', '\164', '\150', '\040', '\061', '\012', '\152', '\165',
'\127', '\040', '\161', '\165', '\040', '\061', '\012', '\161',
'\154', '\130', '\040', '\161', '\165', '\040', '\061', '\012',
'\150', '\107', '\167', '\040', '\164', '\150', '\040', '\061',
'\012', '\117', '\161', '\144', '\040', '\161', '\165', '\040',
'\061', '\012', '\116', '\160', '\167', '\040', '\160', '\162',
'\040', '\061', '\012', '\150', '\147', '\127', '\040', '\164',
'\150', '\040', '\061', '\012', '\146', '\170', '\115', '\040',
'\146', '\157', '\040', '\061', '\012', '\152', '\123', '\171',
'\040', '\151', '\152', '\040', '\061', '\012', '\146', '\112',
'\164', '\040', '\164', '\150', '\040', '\061', '\012', '\155',
'\152', '\107', '\040', '\151', '\152', '\040', '\061', '\012',
'\164', '\147', '\126', '\040', '\164', '\150', '\040', '\061',
'\012', '\117', '\147', '\170', '\040', '\156', '\147', '\040',
'\061', '\012', '\110', '\142', '\170', '\040', '\142', '\145',
'\040', '\061', '\012', '\114', '\152', '\154', '\040', '\154',
'\145', '\040', '\061', '\012', '\151', '\166', '\132', '\040',
'\151', '\156', '\040', '\061', '\012', '\142', '\155', '\131',
'\040', '\155', '\145', '\040', '\061', '\012', '\121', '\146',
'\160', '\040', '\160', '\162', '\040', '\061', '\012', '\167',
'\146', '\121', '\040', '\167', '\141', '\040', '\061', '\012',
'\150', '\103', '\147', '\040', '\164', '\150', '\040', '\061',
'\012', '\166', '\165', '\125', '\040', '\161', '\165', '\040',
'\061', '\012', '\171', '\144', '\132', '\040', '\144', '\145',
'\040', '\061', '\012', '\166', '\126', '\153', '\040', '\153',
'\141', '\040', '\061', '\012', '\155', '\132', '\146', '\040',
'\155', '\145', '\040', '\061', '\012', '\154', '\117', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\161', '\111',
'\166', '\040', '\161', '\165', '\040', '\061', '\012', '\170',
'\132', '\142', '\040', '\142', '\145', '\040', '\061', '\012',
'\170', '\161', '\153', '\040', '\161', '\165', '\040', '\061',
'\012', '\127', '\155', '\171', '\040', '\155', '\145', '\040',
'\061', '\012', '\112', '\161', '\151', '\040', '\161', '\165',
'\040', '\061', '\012', '\143', '\170', '\114', '\040', '\143',
'\150', '\040', '\061', '\012', '\132', '\164', '\161', '\040',
'\164', '\150', '\040', '\061', '\012', '\164', '\144', '\124',
'\040', '\164', '\150', '\040', '\061', '\012', '\165', '\127',
'\164', '\040', '\164', '\150', '\040', '\061', '\012', '\170',
'\107', '\172', '\040', '\163', '\172', '\040', '\061', '\012',
'\127', '\167', '\153', '\040', '\153', '\141', '\040', '\061',
'\012', '\160', '\102', '\153', '\040', '\153', '\141', '\040',
'\061', '\012', '\171', '\161', '\147', '\040', '\156', '\147',
'\040', '\061', '\012', '\143', '\131', '\154', '\040', '\143',
'\150', '\040', '\061', '\012', '\171', '\156', '\127', '\040',
'\141', '\156', '\040', '\061', '\012', '\167', '\171', '\112',
'\040', '\167', '\141', '\040', '\061', '\012', '\161', '\107',
'\171', '\040', '\161', '\165', '\040', '\061', '\012', '\146',
'\116', '\160', '\040', '\160', '\162', '\040', '\061', '\012',
'\150', '\106', '\163', '\040', '\164', '\150', '\040', '\061',
'\012', '\131', '\170', '\165', '\040', '\161', '\165', '\040',
'\061', '\012', '\153', '\166', '\112', '\040', '\153', '\141',
'\040', '\061', '\012', '\106', '\170', '\172', '\040', '\163',
'\172', '\040', '\061', '\012', '\164', '\167', '\107', '\040',
'\164', '\150', '\040', '\061', '\012', '\161', '\166', '\107',
'\040', '\161', '\165', '\040', '\061', '\012', '\166', '\122',
'\160', '\040', '\166', '\141', '\040', '\061', '\012', '\121',
'\161', '\151', '\040', '\161', '\165', '\040', '\061', '\012',
'\147', '\172', '\105', '\040', '\156', '\147', '\040', '\061',
'\012', '\160', '\116', '\154', '\040', '\154', '\145', '\040',
'\061', '\012', '\172', '\160', '\127', '\040', '\163', '\172',
'\040', '\061', '\012', '\144', '\143', '\120', '\040', '\143',
'\150', '\040', '\061', '\012', '\143', '\120', '\170', '\040',
'\143', '\150', '\040', '\061', '\012', '\167', '\143', '\121',
'\040', '\143', '\150', '\040', '\061', '\012', '\160', '\121',
'\143', '\040', '\143', '\150', '\040', '\061', '\012', '\161',
'\171', '\106', '\040', '\161', '\165', '\040', '\061', '\012',
'\172', '\143', '\130', '\040', '\143', '\150', '\040', '\061',
'\012', '\167', '\161', '\153', '\040', '\161', '\165', '\040',
'\061', '\012', '\153', '\155', '\131', '\040', '\153', '\141',
'\040', '\061', '\012', '\161', '\154', '\107', '\040', '\161',
'\165', '\040', '\061', '\012', '\170', '\105', '\172', '\040',
'\163', '\172', '\040', '\061', '\012', '\160', '\161', '\126',
'\040', '\161', '\165', '\040', '\061', '\012', '\117', '\150',
'\160', '\040', '\164', '\150', '\040', '\061', '\012', '\170',
'\144', '\115', '\040', '\144', '\145', '\040', '\061', '\012',
'\146', '\114', '\160', '\040', '\160', '\162', '\040', '\061',
'\012', '\161', '\101', '\145', '\040', '\161', '\165', '\040',
'\061', '\012', '\130', '\167', '\166', '\040', '\166', '\141',
'\040', '\061', '\012', '\114', '\172', '\151', '\040', '\151',
'\156', '\040', '\061', '\012', '\161', '\117', '\153', '\040',
'\161', '\165', '\040', '\061', '\012', '\143', '\130', '\156',
'\040', '\141', '\156', '\040', '\061', '\012', '\113', '\144',
'\163', '\040', '\144', '\145', '\040', '\061', '\012', '\147',
'\166', '\125', '\040', '\156', '\147', '\040', '\061', '\012',
'\146', '\120', '\153', '\040', '\153', '\141', '\040', '\061',
'\012', '\156', '\132', '\162', '\040', '\141', '\156', '\040',
'\061', '\012', '\110', '\170', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\146', '\103', '\155', '\040', '\155',
'\145', '\040', '\061', '\012', '\161', '\146', '\104', '\040',
'\161', '\165', '\040', '\061', '\012', '\127', '\146', '\166',
'\040', '\166', '\141', '\040', '\061', '\012', '\161', '\146',
'\142', '\040', '\161', '\165', '\040', '\061', '\012', '\152',
'\161', '\103', '\040', '\161', '\165', '\040', '\061', '\012',
'\146', '\165', '\130', '\040', '\161', '\165', '\040', '\061',
'\012', '\161', '\146', '\101', '\040', '\161', '\165', '\040',
'\061', '\012', '\122', '\154', '\164', '\040', '\164', '\150',
'\040', '\061', '\012', '\170', '\152', '\104', '\040', '\151',
'\152', '\040', '\061', '\012', '\167', '\164', '\106', '\040',
'\164', '\150', '\040', '\061', '\012', '\130', '\155', '\172',
'\040', '\163', '\172', '\040', '\061', '\012', '\160', '\127',
'\160', '\040', '\160', '\162', '\040', '\061', '\012', '\121',
'\170', '\166', '\040', '\166', '\141', '\040', '\061', '\012',
'\172', '\126', '\146', '\040', '\163', '\172', '\040', '\061',
'\012', '\147', '\155', '\132', '\040', '\156', '\147', '\040',
'\061', '\012', '\161', '\144', '\125', '\040', '\161', '\165',
'\040', '\061', '\012', '\152', '\161', '\126', '\040', '\161',
'\165', '\040', '\061', '\012', '\147', '\130', '\143', '\040',
'\143', '\150', '\040', '\061', '\012', '\161', '\155', '\113',
'\040', '\161', '\165', '\040', '\061', '\012', '\107', '\146',
'\152', '\040', '\151', '\152', '\040', '\061', '\012', '\143',
'\121', '\162', '\040', '\143', '\150', '\040', '\061', '\012',
'\131', '\150', '\162', '\040', '\164', '\150', '\040', '\061',
'\012', '\166', '\166', '\123', '\040', '\166', '\141', '\040',
'\061', '\012', '\165', '\104', '\142', '\040', '\161', '\165',
'\040', '\061', '\012', '\143', '\144', '\102', '\040', '\143',
'\150', '\040', '\061', '\012', '\142', '\166', '\105', '\040',
'\166', '\141', '\040', '\061', '\012', '\170', '\166', '\123',
'\040', '\166', '\141', '\040', '\061', '\012', '\152', '\122',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\162',
'\166', '\104', '\040', '\145', '\162', '\040', '\061', '\012',
'\130', '\171', '\171', '\040', '\156', '\171', '\040', '\061',
'\012', '\112', '\146', '\151', '\040', '\151', '\156', '\040',
'\061', '\012', '\141', '\102', '\167', '\040', '\141', '\156',
'\040', '\061', '\012', '\156', '\127', '\143', '\040', '\141',
'\156', '\040', '\061', '\012', '\170', '\102', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\153', '\147', '\131',
'\040', '\156', '\147', '\040', '\061', '\012', '\142', '\107',
'\142', '\040', '\142', '\151', '\040', '\061', '\012', '\147',
'\152', '\105', '\040', '\156', '\147', '\040', '\061', '\012',
'\122', '\154', '\167', '\040', '\154', '\145', '\040', '\061',
'\012', '\167', '\162', '\124', '\040', '\145', '\162', '\040',
'\061', '\012', '\142', '\121', '\162', '\040', '\145', '\162',
'\040', '\061', '\012', '\154', '\152', '\131', '\040', '\154',
'\145', '\040', '\061', '\012', '\161', '\166', '\125', '\040',
'\161', '\165', '\040', '\061', '\012', '\146', '\113', '\155',
'\040', '\155', '\145', '\040', '\061', '\012', '\160', '\124',
'\164', '\040', '\164', '\150', '\040', '\061', '\012', '\172',
'\124', '\167', '\040', '\163', '\172', '\040', '\061', '\012',
'\161', '\156', '\126', '\040', '\141', '\156', '\040', '\061',
'\012', '\162', '\127', '\170', '\040', '\145', '\162', '\040',
'\061', '\012', '\156', '\127', '\144', '\040', '\141', '\156',
'\040', '\061', '\012', '\156', '\113', '\146', '\040', '\141',
'\156', '\040', '\061', '\012', '\153', '\115', '\146', '\040',
'\153', '\141', '\040', '\061', '\012', '\146', '\153', '\107',
'\040', '\153', '\141', '\040', '\061', '\012', '\142', '\167',
'\130', '\040', '\167', '\141', '\040', '\061', '\012', '\143',
'\167', '\126', '\040', '\143', '\150', '\040', '\061', '\012',
'\165', '\167', '\113', '\040', '\161', '\165', '\040', '\061',
'\012', '\162', '\114', '\166', '\040', '\145', '\162', '\040',
'\061', '\012', '\172', '\115', '\142', '\040', '\163', '\172',
'\040', '\061', '\012', '\172', '\160', '\132', '\040', '\163',
'\172', '\040', '\061', '\012', '\162', '\115', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\124', '\164', '\152',
'\040', '\164', '\150', '\040', '\061', '\012', '\147', '\166',
'\117', '\040', '\156', '\147', '\040', '\061', '\012', '\112',
'\143', '\172', '\040', '\143', '\150', '\040', '\061', '\012',
'\103', '\171', '\170', '\040', '\156', '\171', '\040', '\061',
'\012', '\156', '\152', '\130', '\040', '\141', '\156', '\040',
'\061', '\012', '\141', '\126', '\170', '\040', '\141', '\156',
'\040', '\061', '\012', '\161', '\130', '\156', '\040', '\141',
'\156', '\040', '\061', '\012', '\125', '\161', '\163', '\040',
'\161', '\165', '\040', '\061', '\012', '\144', '\126', '\172',
'\040', '\144', '\145', '\040', '\061', '\012', '\122', '\143',
'\160', '\040', '\143', '\150', '\040', '\061', '\012', '\145',
'\113', '\147', '\040', '\156', '\147', '\040', '\061', '\012',
'\130', '\172', '\156', '\040', '\151', '\156', '\040', '\061',
'\012', '\166', '\171', '\106', '\040', '\166', '\141', '\040',
'\061', '\012', '\113', '\154', '\143', '\040', '\143', '\150',
'\040', '\061', '\012', '\170', '\144', '\111', '\040', '\144',
'\145', '\040', '\061', '\012', '\110', '\161', '\142', '\040',
'\161', '\165', '\040', '\061', '\012', '\170', '\105', '\145',
'\040', '\145', '\162', '\040', '\061', '\012', '\161', '\160',
'\111', '\040', '\161', '\165', '\040', '\061', '\012', '\147',
'\104', '\170', '\040', '\156', '\147', '\040', '\061', '\012',
'\112', '\150', '\146', '\040', '\164', '\150', '\040', '\061',
'\012', '\161', '\165', '\113', '\040', '\165', '\156', '\040',
'\061', '\012', '\166', '\147', '\125', '\040', '\156', '\147',
'\040', '\061', '\012', '\162', '\127', '\166', '\040', '\145',
'\162', '\040', '\061', '\012', '\120', '\156', '\155', '\040',
'\141', '\156', '\040', '\061', '\012', '\156', '\114', '\155',
'\040', '\141', '\156', '\040', '\061', '\012', '\102', '\150',
'\152', '\040', '\164', '\150', '\040', '\061', '\012', '\142',
'\120', '\164', '\040', '\164', '\150', '\040', '\061', '\012',
'\152', '\160', '\111', '\040', '\151', '\152', '\040', '\061',
'\012', '\164', '\114', '\172', '\040', '\164', '\150', '\040',
'\061', '\012', '\166', '\160', '\123', '\040', '\166', '\141',
'\040', '\061', '\012', '\106', '\170', '\152', '\040', '\151',
'\152', '\040', '\061', '\012', '\161', '\104', '\163', '\040',
'\161', '\165', '\040', '\061', '\012', '\167', '\172', '\115',
'\040', '\163', '\172', '\040', '\061', '\012', '\147', '\167',
'\112', '\040', '\156', '\147', '\040', '\061', '\012', '\172',
'\102', '\167', '\040', '\163', '\172', '\040', '\061', '\012',
'\161', '\107', '\166', '\040', '\161', '\165', '\040', '\061',
'\012', '\162', '\114', '\150', '\040', '\164', '\150', '\040',
'\061', '\012', '\102', '\152', '\154', '\040', '\154', '\145',
'\040', '\061', '\012', '\150', '\146', '\110', '\040', '\164',
'\150', '\040', '\061', '\012', '\143', '\154', '\127', '\040',
'\143', '\150', '\040', '\061', '\012', '\122', '\147', '\153',
'\040', '\156', '\147', '\040', '\061', '\012', '\107', '\163',
'\147', '\040', '\156', '\147', '\040', '\061', '\012', '\125',
'\166', '\170', '\040', '\166', '\141', '\040', '\061', '\012',
'\121', '\147', '\166', '\040', '\156', '\147', '\040', '\061',
'\012', '\147', '\146', '\130', '\040', '\156', '\147', '\040',
'\061', '\012', '\162', '\121', '\166', '\040', '\145', '\162',
'\040', '\061', '\012', '\170', '\166', '\107', '\040', '\166',
'\141', '\040', '\061', '\012', '\153', '\152', '\170', '\040',
'\151', '\152', '\040', '\061', '\012', '\144', '\107', '\146',
'\040', '\144', '\145', '\040', '\061', '\012', '\146', '\143',
'\101', '\040', '\143', '\150', '\040', '\061', '\012', '\105',
'\150', '\161', '\040', '\164', '\150', '\040', '\061', '\012',
'\172', '\102', '\172', '\040', '\163', '\172', '\040', '\061',
'\012', '\107', '\160', '\153', '\040', '\153', '\141', '\040',
'\061', '\012', '\164', '\102', '\166', '\040', '\164', '\150',
'\040', '\061', '\012', '\130', '\146', '\147', '\040', '\156',
'\147', '\040', '\061', '\012', '\171', '\112', '\155', '\040',
'\155', '\145', '\040', '\061', '\012', '\163', '\161', '\124',
'\040', '\161', '\165', '\040', '\061', '\012', '\160', '\162',
'\131', '\040', '\145', '\162', '\040', '\061', '\012', '\104',
'\161', '\157', '\040', '\161', '\165', '\040', '\061', '\012',
'\112', '\172', '\147', '\040', '\156', '\147', '\040', '\061',
'\012', '\161', '\115', '\160', '\040', '\161', '\165', '\040',
'\061', '\012', '\171', '\146', '\115', '\040', '\156', '\171',
'\040', '\061', '\012', '\107', '\170', '\146', '\040', '\146',
'\157', '\040', '\061', '\012', '\167', '\172', '\120', '\040',
'\163', '\172', '\040', '\061', '\012', '\172', '\116', '\155',
'\040', '\163', '\172', '\040', '\061', '\012', '\167', '\113',
'\147', '\040', '\156', '\147', '\040', '\061', '\012', '\122',
'\162', '\144', '\040', '\145', '\162', '\040', '\061', '\012',
'\110', '\166', '\167', '\040', '\166', '\141', '\040', '\061',
'\012', '\147', '\146', '\104', '\040', '\156', '\147', '\040',
'\061', '\012', '\127', '\155', '\172', '\040', '\163', '\172',
'\040', '\061', '\012', '\143', '\112', '\156', '\040', '\141',
'\156', '\040', '\061', '\012', '\156', '\124', '\146', '\040',
'\141', '\156', '\040', '\061', '\012', '\165', '\166', '\127',
'\040', '\161', '\165', '\040', '\061', '\012', '\165', '\120',
'\146', '\040', '\161', '\165', '\040', '\061', '\012', '\166',
'\167', '\122', '\040', '\166', '\141', '\040', '\061', '\012',
'\142', '\115', '\146', '\040', '\142', '\145', '\040', '\061',
'\012', '\167', '\111', '\165', '\040', '\161', '\165', '\040',
'\061', '\012', '\153', '\170', '\131', '\040', '\153', '\141',
'\040', '\061', '\012', '\147', '\132', '\153', '\040', '\156',
'\147', '\040', '\061', '\012', '\161', '\106', '\144', '\040',
'\161', '\165', '\040', '\061', '\012', '\142', '\115', '\154',
'\040', '\154', '\145', '\040', '\061', '\012', '\167', '\110',
'\154', '\040', '\154', '\145', '\040', '\061', '\012', '\167',
'\126', '\147', '\040', '\156', '\147', '\040', '\061', '\012',
'\167', '\154', '\130', '\040', '\154', '\145', '\040', '\061',
'\012', '\146', '\163', '\114', '\040', '\163', '\164', '\040',
'\061', '\012', '\160', '\122', '\146', '\040', '\160', '\162',
'\040', '\061', '\012', '\172', '\163', '\130', '\040', '\163',
'\164', '\040', '\061', '\012', '\161', '\102', '\153', '\040',
'\161', '\165', '\040', '\061', '\012', '\130', '\172', '\160',
'\040', '\163', '\172', '\040', '\061', '\012', '\152', '\144',
'\122', '\040', '\144', '\145', '\040', '\061', '\012', '\132',
'\154', '\172', '\040', '\154', '\145', '\040', '\061', '\012',
'\127', '\146', '\143', '\040', '\143', '\150', '\040', '\061',
'\012', '\122', '\152', '\166', '\040', '\151', '\152', '\040',
'\061', '\012', '\166', '\106', '\172', '\040', '\163', '\172',
'\040', '\061', '\012', '\164', '\153', '\126', '\040', '\164',
'\150', '\040', '\061', '\012', '\130', '\142', '\167', '\040',
'\167', '\141', '\040', '\061', '\012', '\170', '\121', '\143',
'\040', '\143', '\150', '\040', '\061', '\012', '\113', '\170',
'\171', '\040', '\156', '\171', '\040', '\061', '\012', '\170',
'\103', '\166', '\040', '\166', '\141', '\040', '\061', '\012',
'\156', '\161', '\126', '\040', '\141', '\156', '\040', '\061',
'\012', '\127', '\167', '\170', '\040', '\167', '\141', '\040',
'\061', '\012', '\153', '\144', '\127', '\040', '\144', '\145',
'\040', '\061', '\012', '\160', '\153', '\111', '\040', '\153',
'\141', '\040', '\061', '\012', '\157', '\150', '\123', '\040',
'\164', '\150', '\040', '\061', '\012', '\132', '\144', '\143',
'\040', '\143', '\150', '\040', '\061', '\012', '\155', '\103',
'\147', '\040', '\156', '\147', '\040', '\061', '\012', '\163',
'\170', '\114', '\040', '\163', '\164', '\040', '\061', '\012',
'\121', '\162', '\170', '\040', '\145', '\162', '\040', '\061',
'\012', '\161', '\130', '\167', '\040', '\161', '\165', '\040',
'\061', '\012', '\167', '\161', '\121', '\040', '\161', '\165',
'\040', '\061', '\012', '\151', '\152', '\113', '\040', '\151',
'\156', '\040', '\061', '\012', '\163', '\106', '\172', '\040',
'\163', '\164', '\040', '\061', '\012', '\110', '\154', '\167',
'\040', '\154', '\145', '\040', '\061', '\012', '\107', '\161',
'\156', '\040', '\141', '\156', '\040', '\061', '\012', '\170',
'\120', '\153', '\040', '\153', '\141', '\040', '\061', '\012',
'\167', '\132', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\152', '\161', '\155', '\040', '\161', '\165', '\040',
'\061', '\012', '\114', '\172', '\160', '\040', '\163', '\172',
'\040', '\061', '\012', '\102', '\144', '\172', '\040', '\144',
'\145', '\040', '\061', '\012', '\167', '\121', '\154', '\040',
'\154', '\145', '\040', '\061', '\012', '\167', '\164', '\112',
'\040', '\164', '\150', '\040', '\061', '\012', '\125', '\171',
'\151', '\040', '\151', '\156', '\040', '\061', '\012', '\127',
'\143', '\171', '\040', '\143', '\150', '\040', '\061', '\012',
'\167', '\161', '\110', '\040', '\161', '\165', '\040', '\061',
'\012', '\102', '\156', '\163', '\040', '\141', '\156', '\040',
'\061', '\012', '\143', '\104', '\164', '\040', '\164', '\150',
'\040', '\061', '\012', '\170', '\112', '\166', '\040', '\166',
'\141', '\040', '\061', '\012', '\127', '\146', '\172', '\040',
'\163', '\172', '\040', '\061', '\012', '\170', '\150', '\120',
'\040', '\164', '\150', '\040', '\061', '\012', '\143', '\127',
'\160', '\040', '\143', '\150', '\040', '\061', '\012', '\162',
'\161', '\132', '\040', '\161', '\165', '\040', '\061', '\012',
'\142', '\153', '\102', '\040', '\153', '\141', '\040', '\061',
'\012', '\127', '\164', '\154', '\040', '\164', '\150', '\040',
'\061', '\012', '\147', '\172', '\146', '\040', '\156', '\147',
'\040', '\061', '\012', '\142', '\115', '\162', '\040', '\145',
'\162', '\040', '\061', '\012', '\160', '\170', '\116', '\040',
'\160', '\162', '\040', '\061', '\012', '\166', '\150', '\126',
'\040', '\164', '\150', '\040', '\061', '\012', '\153', '\161',
'\130', '\040', '\161', '\165', '\040', '\061', '\012', '\113',
'\144', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\166', '\121', '\154', '\040', '\154', '\145', '\040', '\061',
'\012', '\171', '\153', '\103', '\040', '\153', '\141', '\040',
'\061', '\012', '\172', '\115', '\150', '\040', '\164', '\150',
'\040', '\061', '\012', '\105', '\161', '\172', '\040', '\161',
'\165', '\040', '\061', '\012', '\154', '\130', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\172', '\155', '\132',
'\040', '\163', '\172', '\040', '\061', '\012', '\161', '\160',
'\102', '\040', '\161', '\165', '\040', '\061', '\012', '\166',
'\107', '\152', '\040', '\151', '\152', '\040', '\061', '\012',
'\124', '\152', '\170', '\040', '\172', '\152', '\040', '\061',
'\012', '\164', '\166', '\113', '\040', '\164', '\150', '\040',
'\061', '\012', '\147', '\131', '\143', '\040', '\143', '\150',
'\040', '\061', '\012', '\154', '\106', '\143', '\040', '\143',
'\150', '\040', '\061', '\012', '\151', '\112', '\164', '\040',
'\164', '\150', '\040', '\061', '\012', '\120', '\153', '\170',
'\040', '\153', '\141', '\040', '\061', '\012', '\143', '\104',
'\166', '\040', '\143', '\150', '\040', '\061', '\012', '\131',
'\171', '\144', '\040', '\144', '\145', '\040', '\061', '\012',
'\126', '\143', '\161', '\040', '\143', '\150', '\040', '\061',
'\012', '\130', '\150', '\161', '\040', '\164', '\150', '\040',
'\061', '\012', '\172', '\116', '\146', '\040', '\163', '\172',
'\040', '\061', '\012', '\166', '\143', '\104', '\040', '\143',
'\150', '\040', '\061', '\012', '\142', '\156', '\127', '\040',
'\141', '\156', '\040', '\061', '\012', '\165', '\166', '\121',
'\040', '\161', '\165', '\040', '\061', '\012', '\132', '\172',
'\152', '\040', '\163', '\172', '\040', '\061', '\012', '\147',
'\120', '\152', '\040', '\156', '\147', '\040', '\061', '\012',
'\152', '\167', '\104', '\040', '\151', '\152', '\040', '\061',
'\012', '\152', '\160', '\117', '\040', '\151', '\152', '\040',
'\061', '\012', '\142', '\104', '\170', '\040', '\142', '\145',
'\040', '\061', '\012', '\166', '\105', '\151', '\040', '\151',
'\156', '\040', '\061', '\012', '\132', '\143', '\164', '\040',
'\164', '\150', '\040', '\061', '\012', '\167', '\162', '\130',
'\040', '\145', '\162', '\040', '\061', '\012', '\144', '\150',
'\123', '\040', '\164', '\150', '\040', '\061', '\012', '\172',
'\152', '\112', '\040', '\163', '\172', '\040', '\061', '\012',
'\144', '\104', '\153', '\040', '\144', '\145', '\040', '\061',
'\012', '\163', '\162', '\112', '\040', '\145', '\162', '\040',
'\061', '\012', '\141', '\127', '\147', '\040', '\141', '\156',
'\040', '\061', '\012', '\155', '\166', '\112', '\040', '\166',
'\141', '\040', '\061', '\012', '\131', '\164', '\143', '\040',
'\164', '\150', '\040', '\061', '\012', '\152', '\151', '\121',
'\040', '\151', '\156', '\040', '\061', '\012', '\164', '\106',
'\172', '\040', '\164', '\150', '\040', '\061', '\012', '\163',
'\112', '\154', '\040', '\154', '\145', '\040', '\061', '\012',
'\166', '\132', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\170', '\125', '\144', '\040', '\144', '\145', '\040',
'\061', '\012', '\157', '\161', '\102', '\040', '\161', '\165',
'\040', '\061', '\012', '\170', '\104', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\150', '\146', '\105', '\040',
'\164', '\150', '\040', '\061', '\012', '\155', '\123', '\142',
'\040', '\155', '\145', '\040', '\061', '\012', '\152', '\155',
'\122', '\040', '\151', '\152', '\040', '\061', '\012', '\162',
'\106', '\160', '\040', '\145', '\162', '\040', '\061', '\012',
'\130', '\152', '\171', '\040', '\151', '\152', '\040', '\061',
'\012', '\142', '\120', '\160', '\040', '\160', '\162', '\040',
'\061', '\012', '\151', '\161', '\121', '\040', '\164', '\151',
'\040', '\061', '\012', '\155', '\146', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\164', '\170', '\114', '\040',
'\164', '\150', '\040', '\061', '\012', '\152', '\102', '\144',
'\040', '\144', '\145', '\040', '\061', '\012', '\130', '\166',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\144',
'\166', '\131', '\040', '\144', '\145', '\040', '\061', '\012',
'\163', '\144', '\115', '\040', '\144', '\145', '\040', '\061',
'\012', '\170', '\147', '\131', '\040', '\156', '\147', '\040',
'\061', '\012', '\162', '\131', '\150', '\040', '\164', '\150',
'\040', '\061', '\012', '\166', '\154', '\101', '\040', '\154',
'\145', '\040', '\061', '\012', '\160', '\106', '\142', '\040',
'\160', '\162', '\040', '\061', '\012', '\171', '\106', '\172',
'\040', '\163', '\172', '\040', '\061', '\012', '\147', '\143',
'\113', '\040', '\143', '\150', '\040', '\061', '\012', '\170',
'\146', '\132', '\040', '\146', '\157', '\040', '\061', '\012',
'\152', '\104', '\143', '\040', '\143', '\150', '\040', '\061',
'\012', '\171', '\116', '\166', '\040', '\166', '\141', '\040',
'\061', '\012', '\164', '\113', '\164', '\040', '\164', '\150',
'\040', '\061', '\012', '\167', '\164', '\125', '\040', '\164',
'\150', '\040', '\061', '\012', '\142', '\110', '\153', '\040',
'\153', '\141', '\040', '\061', '\012', '\161', '\103', '\167',
'\040', '\161', '\165', '\040', '\061', '\012', '\132', '\143',
'\141', '\040', '\141', '\156', '\040', '\061', '\012', '\153',
'\104', '\167', '\040', '\153', '\141', '\040', '\061', '\012',
'\131', '\167', '\143', '\040', '\143', '\150', '\040', '\061',
'\012', '\160', '\130', '\163', '\040', '\163', '\164', '\040',
'\061', '\012', '\171', '\115', '\155', '\040', '\155', '\145',
'\040', '\061', '\012', '\107', '\167', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\155', '\131', '\166', '\040',
'\166', '\141', '\040', '\061', '\012', '\167', '\103', '\170',
'\040', '\167', '\141', '\040', '\061', '\012', '\152', '\132',
'\170', '\040', '\151', '\152', '\040', '\061', '\012', '\157',
'\121', '\144', '\040', '\157', '\156', '\040', '\061', '\012',
'\106', '\172', '\153', '\040', '\163', '\172', '\040', '\061',
'\012', '\154', '\167', '\106', '\040', '\154', '\145', '\040',
'\061', '\012', '\130', '\172', '\153', '\040', '\163', '\172',
'\040', '\061', '\012', '\116', '\152', '\170', '\040', '\151',
'\152', '\040', '\061', '\012', '\171', '\157', '\111', '\040',
'\157', '\156', '\040', '\061', '\012', '\163', '\112', '\155',
'\040', '\163', '\164', '\040', '\061', '\012', '\167', '\113',
'\153', '\040', '\153', '\141', '\040', '\061', '\012', '\121',
'\164', '\150', '\040', '\143', '\150', '\040', '\061', '\012',
'\114', '\154', '\172', '\040', '\154', '\145', '\040', '\061',
'\012', '\147', '\126', '\146', '\040', '\147', '\151', '\040',
'\061', '\012', '\160', '\120', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\154', '\107', '\171', '\040', '\154',
'\145', '\040', '\061', '\012', '\147', '\172', '\122', '\040',
'\156', '\147', '\040', '\061', '\012', '\162', '\130', '\147',
'\040', '\156', '\147', '\040', '\061', '\012', '\116', '\160',
'\146', '\040', '\160', '\162', '\040', '\061', '\012', '\167',
'\166', '\122', '\040', '\166', '\141', '\040', '\061', '\012',
'\171', '\130', '\163', '\040', '\163', '\164', '\040', '\061',
'\012', '\155', '\115', '\154', '\040', '\154', '\151', '\040',
'\061', '\012', '\142', '\131', '\170', '\040', '\142', '\145',
'\040', '\061', '\012', '\146', '\172', '\132', '\040', '\163',
'\172', '\040', '\061', '\012', '\166', '\162', '\107', '\040',
'\145', '\162', '\040', '\061', '\012', '\113', '\144', '\153',
'\040', '\144', '\145', '\040', '\061', '\012', '\171', '\161',
'\167', '\040', '\161', '\165', '\040', '\061', '\012', '\114',
'\153', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\152', '\113', '\163', '\040', '\163', '\164', '\040', '\061',
'\012', '\132', '\161', '\170', '\040', '\161', '\165', '\040',
'\061', '\012', '\120', '\146', '\155', '\040', '\155', '\145',
'\040', '\061', '\012', '\162', '\154', '\127', '\040', '\145',
'\162', '\040', '\061', '\012', '\150', '\120', '\166', '\040',
'\164', '\150', '\040', '\061', '\012', '\117', '\152', '\170',
'\040', '\151', '\152', '\040', '\061', '\012', '\107', '\164',
'\161', '\040', '\164', '\150', '\040', '\061', '\012', '\166',
'\164', '\112', '\040', '\164', '\150', '\040', '\061', '\012',
'\127', '\154', '\171', '\040', '\154', '\145', '\040', '\061',
'\012', '\171', '\110', '\144', '\040', '\144', '\145', '\040',
'\061', '\012', '\153', '\121', '\142', '\040', '\153', '\141',
'\040', '\061', '\012', '\114', '\144', '\143', '\040', '\144',
'\145', '\040', '\061', '\012', '\163', '\125', '\170', '\040',
'\163', '\164', '\040', '\061', '\012', '\143', '\112', '\147',
'\040', '\143', '\150', '\040', '\061', '\012', '\146', '\114',
'\144', '\040', '\144', '\145', '\040', '\061', '\012', '\115',
'\152', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\103', '\152', '\155', '\040', '\151', '\152', '\040', '\061',
'\012', '\141', '\167', '\130', '\040', '\141', '\156', '\040',
'\061', '\012', '\107', '\164', '\154', '\040', '\164', '\150',
'\040', '\061', '\012', '\167', '\172', '\116', '\040', '\163',
'\172', '\040', '\061', '\012', '\142', '\161', '\170', '\040',
'\161', '\165', '\040', '\061', '\012', '\146', '\101', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\145', '\172',
'\130', '\040', '\145', '\162', '\040', '\061', '\012', '\143',
'\102', '\170', '\040', '\143', '\150', '\040', '\061', '\012',
'\143', '\163', '\130', '\040', '\143', '\150', '\040', '\061',
'\012', '\143', '\125', '\146', '\040', '\143', '\150', '\040',
'\061', '\012', '\161', '\163', '\112', '\040', '\161', '\165',
'\040', '\061', '\012', '\150', '\163', '\132', '\040', '\164',
'\150', '\040', '\061', '\012', '\161', '\172', '\147', '\040',
'\156', '\147', '\040', '\061', '\012', '\121', '\147', '\153',
'\040', '\156', '\147', '\040', '\061', '\012', '\116', '\170',
'\147', '\040', '\156', '\147', '\040', '\061', '\012', '\110',
'\161', '\141', '\040', '\141', '\156', '\040', '\061', '\012',
'\162', '\130', '\154', '\040', '\145', '\162', '\040', '\061',
'\012', '\156', '\154', '\120', '\040', '\141', '\156', '\040',
'\061', '\012', '\141', '\126', '\147', '\040', '\141', '\156',
'\040', '\061', '\012', '\171', '\150', '\107', '\040', '\164',
'\150', '\040', '\061', '\012', '\153', '\146', '\101', '\040',
'\153', '\141', '\040', '\061', '\012', '\126', '\155', '\153',
'\040', '\155', '\107', '\040', '\061', '\012', '\152', '\113',
'\155', '\040', '\151', '\152', '\040', '\061', '\012', '\150',
'\120', '\144', '\040', '\164', '\150', '\040', '\061', '\012',
'\141', '\120', '\144', '\040', '\141', '\156', '\040', '\061',
'\012', '\142', '\131', '\171', '\040', '\142', '\145', '\040',
'\061', '\012', '\142', '\156', '\132', '\040', '\141', '\156',
'\040', '\061', '\012', '\107', '\163', '\152', '\040', '\163',
'\164', '\040', '\061', '\012', '\153', '\170', '\121', '\040',
'\153', '\141', '\040', '\061', '\012', '\166', '\153', '\106',
'\040', '\153', '\141', '\040', '\061', '\012', '\152', '\172',
'\123', '\040', '\163', '\172', '\040', '\061', '\012', '\146',
'\127', '\155', '\040', '\155', '\145', '\040', '\061', '\012',
'\121', '\143', '\165', '\040', '\143', '\150', '\040', '\061',
'\012', '\162', '\132', '\146', '\040', '\145', '\162', '\040',
'\061', '\012', '\152', '\142', '\132', '\040', '\151', '\152',
'\040', '\061', '\012', '\141', '\121', '\152', '\040', '\141',
'\156', '\040', '\061', '\012', '\142', '\172', '\117', '\040',
'\163', '\172', '\040', '\061', '\012', '\146', '\132', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\154', '\162',
'\116', '\040', '\145', '\162', '\040', '\061', '\012', '\146',
'\153', '\114', '\040', '\153', '\141', '\040', '\061', '\012',
'\104', '\161', '\166', '\040', '\161', '\165', '\040', '\061',
'\012', '\172', '\153', '\103', '\040', '\163', '\172', '\040',
'\061', '\012', '\163', '\114', '\167', '\040', '\163', '\164',
'\040', '\061', '\012', '\116', '\166', '\162', '\040', '\145',
'\162', '\040', '\061', '\012', '\116', '\142', '\171', '\040',
'\142', '\145', '\040', '\061', '\012', '\145', '\115', '\150',
'\040', '\164', '\150', '\040', '\061', '\012', '\167', '\106',
'\143', '\040', '\143', '\150', '\040', '\061', '\012', '\103',
'\170', '\172', '\040', '\163', '\172', '\040', '\061', '\012',
'\151', '\132', '\160', '\040', '\151', '\156', '\040', '\061',
'\012', '\144', '\166', '\132', '\040', '\144', '\145', '\040',
'\061', '\012', '\166', '\111', '\150', '\040', '\164', '\150',
'\040', '\061', '\012', '\161', '\103', '\154', '\040', '\161',
'\165', '\040', '\061', '\012', '\120', '\172', '\157', '\040',
'\157', '\156', '\040', '\061', '\012', '\166', '\116', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\172', '\161',
'\113', '\040', '\161', '\165', '\040', '\061', '\012', '\114',
'\155', '\170', '\040', '\155', '\145', '\040', '\061', '\012',
'\170', '\126', '\164', '\040', '\164', '\150', '\040', '\061',
'\012', '\147', '\154', '\104', '\040', '\156', '\147', '\040',
'\061', '\012', '\107', '\142', '\146', '\040', '\142', '\145',
'\040', '\061', '\012', '\112', '\166', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\172', '\106', '\167', '\040',
'\163', '\172', '\040', '\061', '\012', '\164', '\115', '\161',
'\040', '\164', '\150', '\040', '\061', '\012', '\166', '\153',
'\112', '\040', '\153', '\141', '\040', '\061', '\012', '\123',
'\170', '\165', '\040', '\161', '\165', '\040', '\061', '\012',
'\141', '\146', '\125', '\040', '\141', '\156', '\040', '\061',
'\012', '\155', '\110', '\142', '\040', '\155', '\145', '\040',
'\061', '\012', '\152', '\170', '\125', '\040', '\151', '\152',
'\040', '\061', '\012', '\143', '\112', '\154', '\040', '\143',
'\150', '\040', '\061', '\012', '\165', '\161', '\105', '\040',
'\161', '\165', '\040', '\061', '\012', '\116', '\161', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\170', '\107',
'\164', '\040', '\164', '\150', '\040', '\061', '\012', '\143',
'\172', '\107', '\040', '\143', '\150', '\040', '\061', '\012',
'\113', '\146', '\147', '\040', '\156', '\147', '\040', '\061',
'\012', '\172', '\127', '\150', '\040', '\164', '\150', '\040',
'\061', '\012', '\171', '\130', '\155', '\040', '\155', '\145',
'\040', '\061', '\012', '\146', '\156', '\104', '\040', '\141',
'\156', '\040', '\061', '\012', '\112', '\162', '\144', '\040',
'\145', '\162', '\040', '\061', '\012', '\157', '\170', '\132',
'\040', '\157', '\156', '\040', '\061', '\012', '\150', '\130',
'\156', '\040', '\164', '\150', '\040', '\061', '\012', '\146',
'\161', '\111', '\040', '\161', '\165', '\040', '\061', '\012',
'\167', '\101', '\157', '\040', '\157', '\156', '\040', '\061',
'\012', '\151', '\107', '\153', '\040', '\151', '\156', '\040',
'\061', '\012', '\170', '\105', '\167', '\040', '\167', '\141',
'\040', '\061', '\012', '\146', '\126', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\171', '\164', '\125', '\040',
'\164', '\150', '\040', '\061', '\012', '\142', '\150', '\107',
'\040', '\164', '\150', '\040', '\061', '\012', '\157', '\121',
'\172', '\040', '\157', '\156', '\040', '\061', '\012', '\160',
'\147', '\117', '\040', '\156', '\147', '\040', '\061', '\012',
'\131', '\161', '\155', '\040', '\161', '\165', '\040', '\061',
'\012', '\142', '\112', '\151', '\040', '\151', '\156', '\040',
'\061', '\012', '\153', '\143', '\126', '\040', '\143', '\150',
'\040', '\061', '\012', '\153', '\156', '\115', '\040', '\141',
'\156', '\040', '\061', '\012', '\103', '\167', '\162', '\040',
'\145', '\162', '\040', '\061', '\012', '\127', '\147', '\144',
'\040', '\156', '\147', '\040', '\061', '\012', '\142', '\160',
'\124', '\040', '\160', '\162', '\040', '\061', '\012', '\112',
'\144', '\152', '\040', '\144', '\145', '\040', '\061', '\012',
'\116', '\142', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\164', '\167', '\112', '\040', '\164', '\150', '\040',
'\061', '\012', '\121', '\145', '\160', '\040', '\145', '\162',
'\040', '\061', '\012', '\113', '\144', '\143', '\040', '\143',
'\150', '\040', '\061', '\012', '\153', '\121', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\162', '\120', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\154', '\127',
'\160', '\040', '\154', '\145', '\040', '\061', '\012', '\106',
'\142', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\142', '\126', '\153', '\040', '\153', '\141', '\040', '\061',
'\012', '\172', '\154', '\111', '\040', '\154', '\145', '\040',
'\061', '\012', '\102', '\172', '\160', '\040', '\163', '\172',
'\040', '\061', '\012', '\152', '\146', '\113', '\040', '\151',
'\152', '\040', '\061', '\012', '\131', '\166', '\155', '\040',
'\166', '\141', '\040', '\061', '\012', '\106', '\164', '\155',
'\040', '\164', '\150', '\040', '\061', '\012', '\141', '\115',
'\152', '\040', '\141', '\156', '\040', '\061', '\012', '\172',
'\172', '\126', '\040', '\163', '\172', '\040', '\061', '\012',
'\172', '\117', '\141', '\040', '\141', '\156', '\040', '\061',
'\012', '\155', '\110', '\143', '\040', '\143', '\150', '\040',
'\061', '\012', '\170', '\127', '\156', '\040', '\141', '\156',
'\040', '\061', '\012', '\146', '\106', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\163', '\104', '\166', '\040',
'\163', '\164', '\040', '\061', '\012', '\166', '\155', '\104',
'\040', '\166', '\141', '\040', '\061', '\012', '\170', '\152',
'\114', '\040', '\151', '\152', '\040', '\061', '\012', '\151',
'\102', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\152', '\161', '\124', '\040', '\161', '\165', '\040', '\061',
'\012', '\150', '\163', '\122', '\040', '\164', '\150', '\040',
'\061', '\012', '\121', '\170', '\157', '\040', '\157', '\156',
'\040', '\061', '\012', '\152', '\163', '\107', '\040', '\163',
'\164', '\040', '\061', '\012', '\143', '\130', '\142', '\040',
'\143', '\150', '\040', '\061', '\012', '\131', '\142', '\152',
'\040', '\151', '\152', '\040', '\061', '\012', '\170', '\145',
'\112', '\040', '\145', '\162', '\040', '\061', '\012', '\157',
'\120', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\171', '\130', '\164', '\040', '\164', '\150', '\040', '\061',
'\012', '\170', '\166', '\114', '\040', '\166', '\141', '\040',
'\061', '\012', '\152', '\143', '\106', '\040', '\143', '\150',
'\040', '\061', '\012', '\153', '\106', '\142', '\040', '\153',
'\141', '\040', '\061', '\012', '\152', '\130', '\166', '\040',
'\151', '\152', '\040', '\061', '\012', '\101', '\157', '\170',
'\040', '\157', '\156', '\040', '\061', '\012', '\172', '\153',
'\121', '\040', '\163', '\172', '\040', '\061', '\012', '\146',
'\120', '\144', '\040', '\144', '\145', '\040', '\061', '\012',
'\106', '\166', '\170', '\040', '\166', '\141', '\040', '\061',
'\012', '\146', '\142', '\130', '\040', '\142', '\145', '\040',
'\061', '\012', '\157', '\103', '\146', '\040', '\157', '\156',
'\040', '\061', '\012', '\131', '\152', '\144', '\040', '\144',
'\145', '\040', '\061', '\012', '\120', '\160', '\146', '\040',
'\160', '\162', '\040', '\061', '\012', '\116', '\152', '\163',
'\040', '\163', '\164', '\040', '\061', '\012', '\143', '\132',
'\150', '\040', '\164', '\150', '\040', '\061', '\012', '\166',
'\156', '\107', '\040', '\141', '\156', '\040', '\061', '\012',
'\143', '\167', '\112', '\040', '\143', '\155', '\040', '\061',
'\012', '\161', '\112', '\154', '\040', '\161', '\165', '\040',
'\061', '\012', '\147', '\116', '\146', '\040', '\156', '\147',
'\040', '\061', '\012', '\124', '\146', '\166', '\040', '\166',
'\141', '\040', '\061', '\012', '\166', '\167', '\113', '\040',
'\166', '\141', '\040', '\061', '\012', '\132', '\143', '\163',
'\040', '\143', '\150', '\040', '\061', '\012', '\145', '\102',
'\166', '\040', '\145', '\162', '\040', '\061', '\012', '\161',
'\114', '\146', '\040', '\161', '\165', '\040', '\061', '\012',
'\131', '\161', '\164', '\040', '\164', '\150', '\040', '\061',
'\012', '\143', '\162', '\104', '\040', '\143', '\150', '\040',
'\061', '\012', '\111', '\143', '\152', '\040', '\143', '\150',
'\040', '\061', '\012', '\161', '\102', '\154', '\040', '\161',
'\165', '\040', '\061', '\012', '\147', '\172', '\130', '\040',
'\156', '\147', '\040', '\061', '\012', '\165', '\152', '\106',
'\040', '\161', '\165', '\040', '\061', '\012', '\166', '\170',
'\125', '\040', '\166', '\141', '\040', '\061', '\012', '\153',
'\132', '\164', '\040', '\164', '\150', '\040', '\061', '\012',
'\114', '\144', '\150', '\040', '\164', '\150', '\040', '\061',
'\012', '\142', '\146', '\115', '\040', '\142', '\145', '\040',
'\061', '\012', '\155', '\121', '\155', '\040', '\121', '\117',
'\040', '\061', '\012', '\172', '\154', '\121', '\040', '\154',
'\145', '\040', '\061', '\012', '\152', '\142', '\125', '\040',
'\151', '\152', '\040', '\061', '\012', '\113', '\166', '\172',
'\040', '\163', '\172', '\040', '\061', '\012', '\125', '\170',
'\167', '\040', '\167', '\141', '\040', '\061', '\012', '\160',
'\152', '\123', '\040', '\151', '\152', '\040', '\061', '\012',
'\130', '\166', '\166', '\040', '\166', '\141', '\040', '\061',
'\012', '\153', '\152', '\111', '\040', '\151', '\152', '\040',
'\061', '\012', '\143', '\131', '\151', '\040', '\143', '\150',
'\040', '\061', '\012', '\156', '\112', '\156', '\040', '\141',
'\156', '\040', '\061', '\012', '\121', '\170', '\172', '\040',
'\163', '\172', '\040', '\061', '\012', '\141', '\116', '\167',
'\040', '\141', '\156', '\040', '\061', '\012', '\112', '\146',
'\160', '\040', '\160', '\162', '\040', '\061', '\012', '\142',
'\116', '\172', '\040', '\163', '\172', '\040', '\061', '\012',
'\170', '\144', '\121', '\040', '\144', '\145', '\040', '\061',
'\012', '\102', '\172', '\153', '\040', '\163', '\172', '\040',
'\061', '\012', '\161', '\132', '\172', '\040', '\161', '\165',
'\040', '\061', '\012', '\131', '\143', '\160', '\040', '\143',
'\150', '\040', '\061', '\012', '\160', '\107', '\163', '\040',
'\163', '\164', '\040', '\061', '\012', '\153', '\103', '\146',
'\040', '\153', '\141', '\040', '\061', '\012', '\147', '\167',
'\120', '\040', '\156', '\147', '\040', '\061', '\012', '\167',
'\142', '\126', '\040', '\167', '\141', '\040', '\061', '\012',
'\105', '\161', '\164', '\040', '\145', '\161', '\040', '\061',
'\012', '\130', '\150', '\156', '\040', '\164', '\150', '\040',
'\061', '\012', '\157', '\125', '\146', '\040', '\157', '\156',
'\040', '\061', '\012', '\144', '\113', '\143', '\040', '\143',
'\150', '\040', '\061', '\012', '\163', '\170', '\116', '\040',
'\163', '\164', '\040', '\061', '\012', '\117', '\146', '\172',
'\040', '\163', '\172', '\040', '\061', '\012', '\147', '\103',
'\160', '\040', '\156', '\147', '\040', '\061', '\012', '\142',
'\150', '\111', '\040', '\164', '\150', '\040', '\061', '\012',
'\150', '\147', '\125', '\040', '\164', '\150', '\040', '\061',
'\012', '\153', '\156', '\125', '\040', '\141', '\156', '\040',
'\061', '\012', '\153', '\152', '\124', '\040', '\151', '\152',
'\040', '\061', '\012', '\146', '\163', '\132', '\040', '\163',
'\164', '\040', '\061', '\012', '\154', '\107', '\166', '\040',
'\154', '\145', '\040', '\061', '\012', '\167', '\115', '\144',
'\040', '\144', '\145', '\040', '\061', '\012', '\165', '\153',
'\121', '\040', '\161', '\165', '\040', '\061', '\012', '\107',
'\150', '\153', '\040', '\164', '\150', '\040', '\061', '\012',
'\153', '\122', '\167', '\040', '\153', '\141', '\040', '\061',
'\012', '\172', '\122', '\143', '\040', '\143', '\150', '\040',
'\061', '\012', '\147', '\167', '\113', '\040', '\156', '\147',
'\040', '\061', '\012', '\166', '\112', '\160', '\040', '\166',
'\141', '\040', '\061', '\012', '\164', '\126', '\143', '\040',
'\164', '\150', '\040', '\061', '\012', '\160', '\161', '\124',
'\040', '\161', '\165', '\040', '\061', '\012', '\151', '\131',
'\154', '\040', '\151', '\156', '\040', '\061', '\012', '\170',
'\114', '\166', '\040', '\166', '\141', '\040', '\061', '\012',
'\130', '\144', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\172', '\143', '\117', '\040', '\143', '\150', '\040',
'\061', '\012', '\160', '\154', '\115', '\040', '\154', '\145',
'\040', '\061', '\012', '\142', '\104', '\172', '\040', '\163',
'\172', '\040', '\061', '\012', '\116', '\155', '\170', '\040',
'\155', '\145', '\040', '\061', '\012', '\144', '\113', '\166',
'\040', '\144', '\145', '\040', '\061', '\012', '\150', '\120',
'\153', '\040', '\164', '\150', '\040', '\061', '\012', '\124',
'\152', '\171', '\040', '\151', '\152', '\040', '\061', '\012',
'\167', '\131', '\163', '\040', '\163', '\164', '\040', '\061',
'\012', '\156', '\146', '\112', '\040', '\141', '\156', '\040',
'\061', '\012', '\164', '\146', '\103', '\040', '\164', '\150',
'\040', '\061', '\012', '\172', '\112', '\164', '\040', '\164',
'\150', '\040', '\061', '\012', '\154', '\113', '\160', '\040',
'\154', '\145', '\040', '\061', '\012', '\111', '\171', '\143',
'\040', '\143', '\150', '\040', '\061', '\012', '\170', '\165',
'\102', '\040', '\161', '\165', '\040', '\061', '\012', '\145',
'\113', '\170', '\040', '\145', '\162', '\040', '\061', '\012',
'\163', '\132', '\146', '\040', '\163', '\164', '\040', '\061',
'\012', '\172', '\160', '\121', '\040', '\163', '\172', '\040',
'\061', '\012', '\163', '\146', '\114', '\040', '\163', '\164',
'\040', '\061', '\012', '\155', '\152', '\124', '\040', '\151',
'\152', '\040', '\061', '\012', '\172', '\130', '\167', '\040',
'\163', '\172', '\040', '\061', '\012', '\171', '\113', '\164',
'\040', '\164', '\150', '\040', '\061', '\012', '\162', '\167',
'\126', '\040', '\145', '\162', '\040', '\061', '\012', '\160',
'\152', '\102', '\040', '\151', '\152', '\040', '\061', '\012',
'\161', '\131', '\142', '\040', '\161', '\165', '\040', '\061',
'\012', '\142', '\131', '\172', '\040', '\163', '\172', '\040',
'\061', '\012', '\161', '\161', '\131', '\040', '\145', '\161',
'\040', '\061', '\012', '\165', '\111', '\146', '\040', '\161',
'\165', '\040', '\061', '\012', '\152', '\124', '\143', '\040',
'\143', '\150', '\040', '\061', '\012', '\163', '\161', '\103',
'\040', '\161', '\165', '\040', '\061', '\012', '\165', '\112',
'\143', '\040', '\143', '\150', '\040', '\061', '\012', '\144',
'\107', '\170', '\040', '\144', '\145', '\040', '\061', '\012',
'\163', '\167', '\106', '\040', '\163', '\164', '\040', '\061',
'\012', '\110', '\146', '\156', '\040', '\141', '\156', '\040',
'\061', '\012', '\110', '\164', '\142', '\040', '\164', '\150',
'\040', '\061', '\012', '\160', '\146', '\127', '\040', '\150',
'\127', '\040', '\061', '\012', '\151', '\171', '\107', '\040',
'\151', '\156', '\040', '\061', '\012', '\172', '\120', '\143',
'\040', '\143', '\150', '\040', '\061', '\012', '\171', '\172',
'\126', '\040', '\163', '\172', '\040', '\061', '\012', '\160',
'\126', '\172', '\040', '\163', '\172', '\040', '\061', '\012',
'\163', '\120', '\147', '\040', '\156', '\147', '\040', '\061',
'\012', '\146', '\113', '\152', '\040', '\151', '\152', '\040',
'\061', '\012', '\145', '\106', '\142', '\040', '\145', '\162',
'\040', '\061', '\012', '\121', '\152', '\151', '\040', '\152',
'\123', '\040', '\061', '\012', '\155', '\164', '\110', '\040',
'\164', '\150', '\040', '\061', '\012', '\167', '\147', '\132',
'\040', '\156', '\147', '\040', '\061', '\012', '\150', '\110',
'\144', '\040', '\164', '\150', '\040', '\061', '\012', '\146',
'\124', '\164', '\040', '\164', '\150', '\040', '\061', '\012',
'\147', '\170', '\132', '\040', '\156', '\147', '\040', '\061',
'\012', '\113', '\164', '\147', '\040', '\164', '\150', '\040',
'\061', '\012', '\150', '\127', '\144', '\040', '\164', '\150',
'\040', '\061', '\012', '\146', '\127', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\167', '\123', '\166', '\040',
'\166', '\141', '\040', '\061', '\012', '\106', '\172', '\156',
'\040', '\141', '\156', '\040', '\061', '\012', '\147', '\150',
'\110', '\040', '\164', '\150', '\040', '\061', '\012', '\156',
'\160', '\127', '\040', '\141', '\156', '\040', '\061', '\012',
'\152', '\166', '\120', '\040', '\151', '\152', '\040', '\061',
'\012', '\165', '\131', '\153', '\040', '\161', '\165', '\040',
'\061', '\012', '\125', '\170', '\156', '\040', '\141', '\156',
'\040', '\061', '\012', '\123', '\161', '\147', '\040', '\156',
'\147', '\040', '\061', '\012', '\172', '\143', '\112', '\040',
'\143', '\150', '\040', '\061', '\012', '\144', '\115', '\162',
'\040', '\145', '\162', '\040', '\061', '\012', '\132', '\147',
'\143', '\040', '\143', '\150', '\040', '\061', '\012', '\161',
'\107', '\160', '\040', '\161', '\165', '\040', '\061', '\012',
'\157', '\126', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\157', '\125', '\141', '\040', '\141', '\156', '\040',
'\061', '\012', '\157', '\161', '\126', '\040', '\161', '\165',
'\040', '\061', '\012', '\152', '\107', '\163', '\040', '\163',
'\164', '\040', '\061', '\012', '\131', '\142', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\161', '\122', '\146',
'\040', '\161', '\165', '\040', '\061', '\012', '\142', '\162',
'\132', '\040', '\145', '\162', '\040', '\061', '\012', '\161',
'\124', '\166', '\040', '\161', '\165', '\040', '\061', '\012',
'\167', '\132', '\146', '\040', '\167', '\141', '\040', '\061',
'\012', '\147', '\117', '\152', '\040', '\156', '\147', '\040',
'\061', '\012', '\112', '\152', '\151', '\040', '\151', '\156',
'\040', '\061', '\012', '\120', '\160', '\170', '\040', '\160',
'\162', '\040', '\061', '\012', '\161', '\167', '\102', '\040',
'\161', '\165', '\040', '\061', '\012', '\161', '\143', '\112',
'\040', '\143', '\150', '\040', '\061', '\012', '\146', '\106',
'\172', '\040', '\163', '\172', '\040', '\061', '\012', '\167',
'\167', '\131', '\040', '\167', '\141', '\040', '\061', '\012',
'\153', '\124', '\143', '\040', '\143', '\150', '\040', '\061',
'\012', '\165', '\107', '\156', '\040', '\141', '\156', '\040',
'\061', '\012', '\145', '\121', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\161', '\107', '\153', '\040', '\161',
'\165', '\040', '\061', '\012', '\144', '\160', '\126', '\040',
'\144', '\145', '\040', '\061', '\012', '\166', '\124', '\155',
'\040', '\166', '\141', '\040', '\061', '\012', '\117', '\152',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\144',
'\160', '\130', '\040', '\144', '\145', '\040', '\061', '\012',
'\142', '\131', '\146', '\040', '\142', '\145', '\040', '\061',
'\012', '\164', '\152', '\126', '\040', '\164', '\150', '\040',
'\061', '\012', '\114', '\172', '\156', '\040', '\114', '\107',
'\040', '\061', '\012', '\131', '\152', '\155', '\040', '\151',
'\152', '\040', '\061', '\012', '\165', '\131', '\167', '\040',
'\161', '\165', '\040', '\061', '\012', '\132', '\144', '\147',
'\040', '\156', '\147', '\040', '\061', '\012', '\150', '\130',
'\163', '\040', '\164', '\150', '\040', '\061', '\012', '\111',
'\167', '\160', '\040', '\160', '\162', '\040', '\061', '\012',
'\150', '\112', '\167', '\040', '\164', '\150', '\040', '\061',
'\012', '\124', '\146', '\144', '\040', '\144', '\145', '\040',
'\061', '\012', '\143', '\170', '\117', '\040', '\143', '\150',
'\040', '\061', '\012', '\121', '\161', '\171', '\040', '\161',
'\165', '\040', '\061', '\012', '\154', '\104', '\166', '\040',
'\154', '\145', '\040', '\061', '\012', '\172', '\163', '\117',
'\040', '\163', '\164', '\040', '\061', '\012', '\155', '\162',
'\107', '\040', '\145', '\162', '\040', '\061', '\012', '\143',
'\152', '\112', '\040', '\143', '\150', '\040', '\061', '\012',
'\144', '\147', '\104', '\040', '\156', '\147', '\040', '\061',
'\012', '\143', '\125', '\167', '\040', '\143', '\150', '\040',
'\061', '\012', '\172', '\144', '\102', '\040', '\144', '\145',
'\040', '\061', '\012', '\152', '\154', '\125', '\040', '\154',
'\145', '\040', '\061', '\012', '\142', '\102', '\146', '\040',
'\142', '\145', '\040', '\061', '\012', '\161', '\142', '\112',
'\040', '\161', '\165', '\040', '\061', '\012', '\161', '\154',
'\122', '\040', '\161', '\165', '\040', '\061', '\012', '\143',
'\127', '\143', '\040', '\143', '\150', '\040', '\061', '\012',
'\130', '\147', '\142', '\040', '\156', '\147', '\040', '\061',
'\012', '\172', '\162', '\125', '\040', '\145', '\162', '\040',
'\061', '\012', '\142', '\147', '\111', '\040', '\156', '\147',
'\040', '\061', '\012', '\167', '\152', '\112', '\040', '\151',
'\152', '\040', '\061', '\012', '\155', '\166', '\125', '\040',
'\166', '\141', '\040', '\061', '\012', '\162', '\103', '\160',
'\040', '\107', '\103', '\040', '\061', '\012', '\156', '\126',
'\170', '\040', '\141', '\156', '\040', '\061', '\012', '\170',
'\142', '\107', '\040', '\142', '\145', '\040', '\061', '\012',
'\164', '\144', '\116', '\040', '\164', '\150', '\040', '\061',
'\012', '\171', '\152', '\122', '\040', '\151', '\152', '\040',
'\061', '\012', '\167', '\121', '\152', '\040', '\151', '\152',
'\040', '\061', '\012', '\170', '\172', '\132', '\040', '\163',
'\172', '\040', '\061', '\012', '\161', '\125', '\153', '\040',
'\161', '\165', '\040', '\061', '\012', '\170', '\152', '\131',
'\040', '\151', '\152', '\040', '\061', '\012', '\112', '\170',
'\172', '\040', '\163', '\172', '\040', '\061', '\012', '\170',
'\132', '\163', '\040', '\163', '\164', '\040', '\061', '\012',
'\166', '\132', '\170', '\040', '\166', '\141', '\040', '\061',
'\012', '\154', '\122', '\163', '\040', '\154', '\145', '\040',
'\061', '\012', '\166', '\167', '\160', '\040', '\166', '\141',
'\040', '\061', '\012', '\167', '\160', '\152', '\040', '\151',
'\152', '\040', '\061', '\012', '\163', '\167', '\123', '\040',
'\163', '\164', '\040', '\061', '\012', '\105', '\161', '\170',
'\040', '\161', '\165', '\040', '\061', '\012', '\166', '\105',
'\167', '\040', '\166', '\141', '\040', '\061', '\012', '\164',
'\153', '\121', '\040', '\164', '\150', '\040', '\061', '\012',
'\166', '\147', '\130', '\040', '\156', '\147', '\040', '\061',
'\012', '\122', '\167', '\142', '\040', '\167', '\141', '\040',
'\061', '\012', '\163', '\152', '\127', '\040', '\163', '\164',
'\040', '\061', '\012', '\144', '\130', '\155', '\040', '\144',
'\145', '\040', '\061', '\012', '\146', '\166', '\131', '\040',
'\166', '\113', '\040', '\061', '\012', '\154', '\162', '\117',
'\040', '\145', '\162', '\040', '\061', '\012', '\114', '\144',
'\170', '\040', '\144', '\145', '\040', '\061', '\012', '\143',
'\170', '\126', '\040', '\143', '\150', '\040', '\061', '\012',
'\161', '\106', '\150', '\040', '\164', '\150', '\040', '\061',
'\012', '\161', '\126', '\167', '\040', '\161', '\165', '\040',
'\061', '\012', '\120', '\171', '\146', '\040', '\156', '\171',
'\040', '\061', '\012', '\113', '\170', '\172', '\040', '\163',
'\172', '\040', '\061', '\012', '\150', '\167', '\112', '\040',
'\164', '\150', '\040', '\061', '\012', '\143', '\160', '\114',
'\040', '\143', '\150', '\040', '\061', '\012', '\110', '\147',
'\145', '\040', '\156', '\147', '\040', '\061', '\012', '\127',
'\142', '\150', '\040', '\164', '\150', '\040', '\061', '\012',
'\154', '\121', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\150', '\104', '\154', '\040', '\164', '\150', '\040',
'\061', '\012', '\132', '\160', '\150', '\040', '\164', '\150',
'\040', '\061', '\012', '\167', '\132', '\152', '\040', '\151',
'\152', '\040', '\061', '\012', '\132', '\161', '\164', '\040',
'\164', '\150', '\040', '\061', '\012', '\170', '\155', '\125',
'\040', '\155', '\145', '\040', '\061', '\012', '\164', '\125',
'\146', '\040', '\164', '\150', '\040', '\061', '\012', '\161',
'\127', '\157', '\040', '\161', '\165', '\040', '\061', '\012',
'\114', '\162', '\144', '\040', '\145', '\162', '\040', '\061',
'\012', '\160', '\121', '\163', '\040', '\163', '\164', '\040',
'\061', '\012', '\162', '\132', '\166', '\040', '\145', '\162',
'\040', '\061', '\012', '\155', '\152', '\111', '\040', '\151',
'\152', '\040', '\061', '\012', '\170', '\121', '\171', '\040',
'\156', '\171', '\040', '\061', '\012', '\166', '\107', '\171',
'\040', '\166', '\141', '\040', '\061', '\012', '\152', '\167',
'\131', '\040', '\151', '\152', '\040', '\061', '\012', '\143',
'\116', '\156', '\040', '\141', '\156', '\040', '\061', '\012',
'\172', '\160', '\120', '\040', '\163', '\172', '\040', '\061',
'\012', '\166', '\113', '\144', '\040', '\144', '\145', '\040',
'\061', '\012', '\167', '\126', '\153', '\040', '\153', '\141',
'\040', '\061', '\012', '\164', '\115', '\150', '\040', '\143',
'\150', '\040', '\061', '\012', '\113', '\164', '\144', '\040',
'\164', '\150', '\040', '\061', '\012', '\164', '\160', '\107',
'\040', '\164', '\150', '\040', '\061', '\012', '\151', '\104',
'\146', '\040', '\151', '\156', '\040', '\061', '\012', '\161',
'\113', '\154', '\040', '\161', '\165', '\040', '\061', '\012',
'\152', '\114', '\143', '\040', '\143', '\150', '\040', '\061',
'\012', '\112', '\152', '\154', '\040', '\154', '\145', '\040',
'\061', '\012', '\150', '\143', '\121', '\040', '\164', '\150',
'\040', '\061', '\012', '\124', '\161', '\147', '\040', '\161',
'\165', '\040', '\061', '\012', '\142', '\107', '\153', '\040',
'\153', '\141', '\040', '\061', '\012', '\152', '\170', '\126',
'\040', '\151', '\152', '\040', '\061', '\012', '\146', '\143',
'\103', '\040', '\143', '\150', '\040', '\061', '\012', '\106',
'\167', '\170', '\040', '\167', '\141', '\040', '\061', '\012',
'\161', '\120', '\171', '\040', '\161', '\165', '\040', '\061',
'\012', '\152', '\155', '\105', '\040', '\151', '\152', '\040',
'\061', '\012', '\170', '\155', '\124', '\040', '\155', '\145',
'\040', '\061', '\012', '\154', '\170', '\103', '\040', '\107',
'\103', '\040', '\061', '\012', '\154', '\122', '\162', '\040',
'\145', '\162', '\040', '\061', '\012', '\121', '\153', '\154',
'\040', '\154', '\145', '\040', '\061', '\012', '\151', '\150',
'\106', '\040', '\164', '\150', '\040', '\061', '\012', '\114',
'\154', '\164', '\040', '\164', '\150', '\040', '\061', '\012',
'\113', '\161', '\145', '\040', '\161', '\165', '\040', '\061',
'\012', '\110', '\150', '\146', '\040', '\164', '\150', '\040',
'\061', '\012', '\156', '\120', '\161', '\040', '\141', '\156',
'\040', '\061', '\012', '\172', '\166', '\121', '\040', '\121',
'\117', '\040', '\061', '\012', '\152', '\107', '\171', '\040',
'\151', '\152', '\040', '\061', '\012', '\154', '\115', '\153',
'\040', '\154', '\145', '\040', '\061', '\012', '\165', '\117',
'\152', '\040', '\161', '\165', '\040', '\061', '\012', '\146',
'\144', '\124', '\040', '\144', '\145', '\040', '\061', '\012',
'\161', '\166', '\110', '\040', '\161', '\165', '\040', '\061',
'\012', '\160', '\143', '\132', '\040', '\143', '\150', '\040',
'\061', '\012', '\161', '\153', '\143', '\040', '\143', '\150',
'\040', '\061', '\012', '\143', '\142', '\112', '\040', '\143',
'\150', '\040', '\061', '\012', '\147', '\146', '\113', '\040',
'\156', '\147', '\040', '\061', '\012', '\160', '\115', '\164',
'\040', '\164', '\150', '\040', '\061', '\012', '\166', '\160',
'\106', '\040', '\166', '\141', '\040', '\061', '\012', '\144',
'\147', '\120', '\040', '\156', '\147', '\040', '\061', '\012',
'\155', '\170', '\106', '\040', '\155', '\145', '\040', '\061',
'\012', '\162', '\132', '\160', '\040', '\145', '\162', '\040',
'\061', '\012', '\143', '\107', '\144', '\040', '\143', '\150',
'\040', '\061', '\012', '\163', '\120', '\170', '\040', '\163',
'\164', '\040', '\061', '\012', '\162', '\107', '\144', '\040',
'\145', '\162', '\040', '\061', '\012', '\147', '\142', '\121',
'\040', '\156', '\147', '\040', '\061', '\012', '\104', '\146',
'\172', '\040', '\163', '\172', '\040', '\061', '\012', '\163',
'\152', '\103', '\040', '\163', '\164', '\040', '\061', '\012',
'\172', '\123', '\170', '\040', '\163', '\172', '\040', '\061',
'\012', '\161', '\111', '\157', '\040', '\161', '\165', '\040',
'\061', '\012', '\144', '\111', '\167', '\040', '\144', '\145',
'\040', '\061', '\012', '\153', '\160', '\106', '\040', '\153',
'\141', '\040', '\061', '\012', '\145', '\125', '\167', '\040',
'\145', '\162', '\040', '\061', '\012', '\110', '\170', '\143',
'\040', '\143', '\150', '\040', '\061', '\012', '\171', '\166',
'\107', '\040', '\166', '\141', '\040', '\061', '\012', '\166',
'\125', '\146', '\040', '\166', '\141', '\040', '\061', '\012',
'\146', '\152', '\106', '\040', '\151', '\152', '\040', '\061',
'\012', '\153', '\114', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\132', '\152', '\164', '\040', '\164', '\150',
'\040', '\061', '\012', '\146', '\114', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\171', '\144', '\123', '\040',
'\144', '\145', '\040', '\061', '\012', '\172', '\167', '\113',
'\040', '\163', '\172', '\040', '\061', '\012', '\150', '\110',
'\171', '\040', '\164', '\150', '\040', '\061', '\012', '\123',
'\163', '\167', '\040', '\163', '\164', '\040', '\061', '\012',
'\150', '\152', '\107', '\040', '\164', '\150', '\040', '\061',
'\012', '\104', '\144', '\160', '\040', '\144', '\145', '\040',
'\061', '\012', '\142', '\120', '\163', '\040', '\163', '\164',
'\040', '\061', '\012', '\127', '\160', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\143', '\162', '\127', '\040',
'\143', '\150', '\040', '\061', '\012', '\130', '\160', '\152',
'\040', '\151', '\152', '\040', '\061', '\012', '\157', '\130',
'\162', '\040', '\145', '\162', '\040', '\061', '\012', '\166',
'\152', '\113', '\040', '\151', '\152', '\040', '\061', '\012',
'\126', '\172', '\146', '\040', '\163', '\172', '\040', '\061',
'\012', '\154', '\131', '\144', '\040', '\154', '\145', '\040',
'\061', '\012', '\117', '\144', '\170', '\040', '\144', '\145',
'\040', '\061', '\012', '\150', '\126', '\164', '\040', '\164',
'\150', '\040', '\061', '\012', '\147', '\122', '\143', '\040',
'\143', '\150', '\040', '\061', '\012', '\132', '\164', '\146',
'\040', '\164', '\150', '\040', '\061', '\012', '\150', '\126',
'\152', '\040', '\164', '\150', '\040', '\061', '\012', '\112',
'\152', '\146', '\040', '\151', '\152', '\040', '\061', '\012',
'\152', '\106', '\142', '\040', '\151', '\152', '\040', '\061',
'\012', '\114', '\150', '\146', '\040', '\164', '\150', '\040',
'\061', '\012', '\152', '\154', '\117', '\040', '\154', '\145',
'\040', '\061', '\012', '\152', '\166', '\102', '\040', '\151',
'\152', '\040', '\061', '\012', '\147', '\142', '\116', '\040',
'\156', '\147', '\040', '\061', '\012', '\166', '\120', '\155',
'\040', '\166', '\141', '\040', '\061', '\012', '\164', '\121',
'\144', '\040', '\164', '\150', '\040', '\061', '\012', '\126',
'\166', '\152', '\040', '\151', '\152', '\040', '\061', '\012',
'\162', '\161', '\130', '\040', '\161', '\165', '\040', '\061',
'\012', '\172', '\105', '\157', '\040', '\157', '\156', '\040',
'\061', '\012', '\152', '\163', '\102', '\040', '\163', '\164',
'\040', '\061', '\012', '\161', '\155', '\110', '\040', '\161',
'\165', '\040', '\061', '\012', '\142', '\164', '\105', '\040',
'\164', '\150', '\040', '\061', '\012', '\127', '\144', '\144',
'\040', '\144', '\145', '\040', '\061', '\012', '\104', '\155',
'\152', '\040', '\151', '\152', '\040', '\061', '\012', '\171',
'\167', '\111', '\040', '\167', '\141', '\040', '\061', '\012',
'\152', '\160', '\121', '\040', '\151', '\152', '\040', '\061',
'\012', '\165', '\130', '\163', '\040', '\161', '\165', '\040',
'\061', '\012', '\142', '\131', '\155', '\040', '\155', '\145',
'\040', '\061', '\012', '\157', '\106', '\172', '\040', '\157',
'\156', '\040', '\061', '\012', '\164', '\102', '\147', '\040',
'\164', '\150', '\040', '\061', '\012', '\143', '\103', '\156',
'\040', '\143', '\150', '\040', '\061', '\012', '\144', '\132',
'\147', '\040', '\156', '\147', '\040', '\061', '\012', '\167',
'\162', '\114', '\040', '\145', '\162', '\040', '\061', '\012',
'\112', '\162', '\171', '\040', '\145', '\162', '\040', '\061',
'\012', '\151', '\113', '\144', '\040', '\151', '\156', '\040',
'\061', '\012', '\166', '\143', '\116', '\040', '\143', '\150',
'\040', '\061', '\012', '\172', '\116', '\160', '\040', '\163',
'\172', '\040', '\061', '\012', '\156', '\122', '\146', '\040',
'\141', '\156', '\040', '\061', '\012', '\144', '\143', '\110',
'\040', '\143', '\150', '\040', '\061', '\012', '\161', '\141',
'\117', '\040', '\141', '\156', '\040', '\061', '\012', '\165',
'\141', '\121', '\040', '\141', '\156', '\040', '\061', '\012',
'\152', '\170', '\114', '\040', '\151', '\152', '\040', '\061',
'\012', '\155', '\125', '\146', '\040', '\155', '\145', '\040',
'\061', '\012', '\166', '\117', '\153', '\040', '\153', '\141',
'\040', '\061', '\012', '\120', '\170', '\164', '\040', '\164',
'\150', '\040', '\061', '\012', '\146', '\165', '\121', '\040',
'\161', '\165', '\040', '\061', '\012', '\163', '\146', '\116',
'\040', '\163', '\164', '\040', '\061', '\012', '\121', '\154',
'\166', '\040', '\154', '\145', '\040', '\061', '\012', '\142',
'\132', '\171', '\040', '\142', '\145', '\040', '\061', '\012',
'\166', '\105', '\161', '\040', '\166', '\113', '\040', '\061',
'\012', '\130', '\166', '\147', '\040', '\156', '\147', '\040',
'\061', '\012', '\112', '\170', '\142', '\040', '\142', '\145',
'\040', '\061', '\012', '\172', '\107', '\172', '\040', '\163',
'\172', '\040', '\061', '\012', '\103', '\161', '\146', '\040',
'\161', '\165', '\040', '\061', '\012', '\163', '\120', '\160',
'\040', '\163', '\164', '\040', '\061', '\012', '\166', '\101',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\153',
'\127', '\144', '\040', '\144', '\145', '\040', '\061', '\012',
'\162', '\143', '\132', '\040', '\143', '\155', '\040', '\061',
'\012', '\154', '\104', '\163', '\040', '\154', '\145', '\040',
'\061', '\012', '\170', '\104', '\144', '\040', '\144', '\145',
'\040', '\061', '\012', '\160', '\123', '\152', '\040', '\151',
'\152', '\040', '\061', '\012', '\166', '\167', '\123', '\040',
'\166', '\141', '\040', '\061', '\012', '\153', '\147', '\121',
'\040', '\156', '\147', '\040', '\061', '\012', '\143', '\162',
'\124', '\040', '\143', '\150', '\040', '\061', '\012', '\146',
'\113', '\163', '\040', '\163', '\164', '\040', '\061', '\012',
'\161', '\150', '\143', '\040', '\164', '\150', '\040', '\061',
'\012', '\147', '\115', '\154', '\040', '\156', '\147', '\040',
'\061', '\012', '\172', '\113', '\164', '\040', '\164', '\150',
'\040', '\061', '\012', '\152', '\144', '\106', '\040', '\144',
'\145', '\040', '\061', '\012', '\143', '\146', '\116', '\040',
'\143', '\150', '\040', '\061', '\012', '\163', '\144', '\117',
'\040', '\163', '\164', '\040', '\061', '\012', '\153', '\110',
'\150', '\040', '\164', '\150', '\040', '\061', '\012', '\170',
'\166', '\105', '\040', '\166', '\141', '\040', '\061', '\012',
'\142', '\120', '\146', '\040', '\142', '\145', '\040', '\061',
'\012', '\162', '\172', '\130', '\040', '\145', '\162', '\040',
'\061', '\012', '\166', '\123', '\152', '\040', '\151', '\152',
'\040', '\061', '\012', '\144', '\106', '\146', '\040', '\144',
'\145', '\040', '\061', '\012', '\166', '\130', '\154', '\040',
'\154', '\145', '\040', '\061', '\012', '\142', '\122', '\166',
'\040', '\166', '\141', '\040', '\061', '\012', '\132', '\170',
'\167', '\040', '\167', '\141', '\040', '\061', '\012', '\130',
'\172', '\167', '\040', '\163', '\172', '\040', '\061', '\012',
'\166', '\162', '\122', '\040', '\145', '\162', '\040', '\061',
'\012', '\170', '\110', '\142', '\040', '\142', '\145', '\040',
'\061', '\012', '\161', '\145', '\105', '\040', '\161', '\165',
'\040', '\061', '\012', '\152', '\162', '\121', '\040', '\145',
'\162', '\040', '\061', '\012', '\166', '\153', '\111', '\040',
'\153', '\141', '\040', '\061', '\012', '\146', '\162', '\131',
'\040', '\145', '\162', '\040', '\061', '\012', '\152', '\161',
'\114', '\040', '\161', '\165', '\040', '\061', '\012', '\143',
'\132', '\152', '\040', '\143', '\150', '\040', '\061', '\012',
'\124', '\155', '\147', '\040', '\156', '\147', '\040', '\061',
'\012', '\155', '\110', '\167', '\040', '\155', '\145', '\040',
'\061', '\012', '\144', '\161', '\123', '\040', '\161', '\165',
'\040', '\061', '\012', '\161', '\154', '\111', '\040', '\161',
'\165', '\040', '\061', '\012', '\132', '\166', '\142', '\040',
'\166', '\141', '\040', '\061', '\012', '\113', '\154', '\170',
'\040', '\154', '\145', '\040', '\061', '\012', '\147', '\142',
'\123', '\040', '\156', '\147', '\040', '\061', '\012', '\163',
'\142', '\121', '\040', '\163', '\164', '\040', '\061', '\012',
'\161', '\165', '\106', '\040', '\165', '\156', '\040', '\061',
'\012', '\161', '\172', '\124', '\040', '\161', '\165', '\040',
'\061', '\012', '\161', '\141', '\111', '\040', '\141', '\156',
'\040', '\061', '\012', '\126', '\155', '\144', '\040', '\144',
'\145', '\040', '\061', '\012', '\161', '\141', '\121', '\040',
'\141', '\156', '\040', '\061', '\012', '\121', '\153', '\142',
'\040', '\153', '\141', '\040', '\061', '\012', '\130', '\152',
'\142', '\040', '\151', '\152', '\040', '\061', '\012', '\157',
'\103', '\161', '\040', '\107', '\103', '\040', '\061', '\012',
'\161', '\121', '\150', '\040', '\121', '\117', '\040', '\061',
'\012', '\143', '\167', '\117', '\040', '\143', '\150', '\040',
'\061', '\012', '\164', '\115', '\146', '\040', '\164', '\150',
'\040', '\061', '\012', '\172', '\162', '\113', '\040', '\145',
'\162', '\040', '\061', '\012', '\167', '\113', '\171', '\040',
'\167', '\141', '\040', '\061', '\012', '\167', '\113', '\142',
'\040', '\167', '\141', '\040', '\061', '\012', '\143', '\161',
'\123', '\040', '\143', '\150', '\040', '\061', '\012', '\151',
'\107', '\166', '\040', '\151', '\156', '\040', '\061', '\012',
'\170', '\130', '\167', '\040', '\167', '\141', '\040', '\061',
'\012', '\146', '\115', '\170', '\040', '\146', '\157', '\040',
'\061', '\012', '\132', '\155', '\166', '\040', '\166', '\141',
'\040', '\061', '\012', '\131', '\161', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\153', '\104', '\150', '\040',
'\164', '\150', '\040', '\061', '\012', '\112', '\170', '\171',
'\040', '\156', '\171', '\040', '\061', '\012', '\171', '\171',
'\105', '\040', '\156', '\171', '\040', '\061', '\012', '\163',
'\125', '\166', '\040', '\163', '\164', '\040', '\061', '\012',
'\143', '\126', '\162', '\040', '\143', '\150', '\040', '\061',
'\012', '\142', '\161', '\110', '\040', '\161', '\165', '\040',
'\061', '\012', '\127', '\147', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\165', '\161', '\121', '\040', '\161',
'\165', '\040', '\061', '\012', '\142', '\124', '\147', '\040',
'\156', '\147', '\040', '\061', '\012', '\151', '\115', '\166',
'\040', '\151', '\156', '\040', '\061', '\012', '\161', '\127',
'\153', '\040', '\161', '\165', '\040', '\061', '\012', '\146',
'\144', '\126', '\040', '\144', '\145', '\040', '\061', '\012',
'\157', '\121', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\156', '\132', '\160', '\040', '\141', '\156', '\040',
'\061', '\012', '\172', '\157', '\131', '\040', '\157', '\156',
'\040', '\061', '\012', '\152', '\122', '\153', '\040', '\151',
'\152', '\040', '\061', '\012', '\161', '\120', '\152', '\040',
'\161', '\165', '\040', '\061', '\012', '\165', '\161', '\114',
'\040', '\161', '\165', '\040', '\061', '\012', '\143', '\161',
'\130', '\040', '\143', '\150', '\040', '\061', '\012', '\154',
'\102', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\146', '\160', '\130', '\040', '\160', '\162', '\040', '\061',
'\012', '\142', '\131', '\167', '\040', '\167', '\141', '\040',
'\061', '\012', '\131', '\145', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\150', '\152', '\116', '\040', '\164',
'\150', '\040', '\061', '\012', '\164', '\161', '\127', '\040',
'\164', '\150', '\040', '\061', '\012', '\152', '\150', '\124',
'\040', '\164', '\150', '\040', '\061', '\012', '\143', '\166',
'\106', '\040', '\143', '\150', '\040', '\061', '\012', '\131',
'\143', '\170', '\040', '\143', '\150', '\040', '\061', '\012',
'\152', '\106', '\163', '\040', '\163', '\164', '\040', '\061',
'\012', '\110', '\144', '\171', '\040', '\144', '\145', '\040',
'\061', '\012', '\154', '\162', '\132', '\040', '\145', '\162',
'\040', '\061', '\012', '\146', '\132', '\166', '\040', '\166',
'\141', '\040', '\061', '\012', '\124', '\146', '\167', '\040',
'\167', '\141', '\040', '\061', '\012', '\172', '\162', '\111',
'\040', '\145', '\162', '\040', '\061', '\012', '\144', '\104',
'\166', '\040', '\144', '\145', '\040', '\061', '\012', '\170',
'\145', '\110', '\040', '\145', '\162', '\040', '\061', '\012',
'\154', '\172', '\110', '\040', '\154', '\145', '\040', '\061',
'\012', '\163', '\114', '\162', '\040', '\145', '\162', '\040',
'\061', '\012', '\151', '\113', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\106', '\172', '\143', '\040', '\143',
'\155', '\040', '\061', '\012', '\170', '\122', '\144', '\040',
'\144', '\145', '\040', '\061', '\012', '\146', '\123', '\144',
'\040', '\144', '\145', '\040', '\061', '\012', '\161', '\167',
'\106', '\040', '\161', '\165', '\040', '\061', '\012', '\167',
'\170', '\131', '\040', '\167', '\141', '\040', '\061', '\012',
'\131', '\153', '\167', '\040', '\153', '\141', '\040', '\061',
'\012', '\157', '\126', '\160', '\040', '\157', '\156', '\040',
'\061', '\012', '\143', '\147', '\102', '\040', '\143', '\150',
'\040', '\061', '\012', '\142', '\106', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\156', '\152', '\124', '\040',
'\141', '\156', '\040', '\061', '\012', '\144', '\132', '\172',
'\040', '\144', '\145', '\040', '\061', '\012', '\142', '\150',
'\123', '\040', '\164', '\150', '\040', '\061', '\012', '\106',
'\172', '\165', '\040', '\161', '\165', '\040', '\061', '\012',
'\146', '\110', '\155', '\040', '\155', '\145', '\040', '\061',
'\012', '\166', '\116', '\172', '\040', '\163', '\172', '\040',
'\061', '\012', '\161', '\154', '\106', '\040', '\161', '\165',
'\040', '\061', '\012', '\114', '\166', '\146', '\040', '\166',
'\141', '\040', '\061', '\012', '\172', '\160', '\125', '\040',
'\163', '\172', '\040', '\061', '\012', '\152', '\164', '\114',
'\040', '\164', '\150', '\040', '\061', '\012', '\143', '\121',
'\161', '\040', '\143', '\150', '\040', '\061', '\012', '\155',
'\113', '\155', '\040', '\155', '\145', '\040', '\061', '\012',
'\122', '\167', '\143', '\040', '\143', '\150', '\040', '\061',
'\012', '\152', '\162', '\117', '\040', '\145', '\162', '\040',
'\061', '\012', '\156', '\160', '\102', '\040', '\141', '\156',
'\040', '\061', '\012', '\121', '\164', '\170', '\040', '\164',
'\150', '\040', '\061', '\012', '\115', '\161', '\152', '\040',
'\161', '\165', '\040', '\061', '\012', '\117', '\161', '\170',
'\040', '\161', '\165', '\040', '\061', '\012', '\104', '\172',
'\160', '\040', '\163', '\172', '\040', '\061', '\012', '\150',
'\126', '\147', '\040', '\164', '\150', '\040', '\061', '\012',
'\160', '\124', '\156', '\040', '\141', '\156', '\040', '\061',
'\012', '\147', '\121', '\152', '\040', '\156', '\147', '\040',
'\061', '\012', '\155', '\124', '\156', '\040', '\141', '\156',
'\040', '\061', '\012', '\164', '\121', '\166', '\040', '\164',
'\150', '\040', '\061', '\012', '\154', '\132', '\150', '\040',
'\164', '\150', '\040', '\061', '\012', '\153', '\112', '\152',
'\040', '\151', '\152', '\040', '\061', '\012', '\143', '\162',
'\120', '\040', '\143', '\150', '\040', '\061', '\012', '\155',
'\161', '\103', '\040', '\161', '\165', '\040', '\061', '\012',
'\104', '\167', '\154', '\040', '\154', '\145', '\040', '\061',
'\012', '\166', '\126', '\152', '\040', '\151', '\152', '\040',
'\061', '\012', '\150', '\161', '\124', '\040', '\164', '\150',
'\040', '\061', '\012', '\155', '\112', '\167', '\040', '\155',
'\145', '\040', '\061', '\012', '\164', '\170', '\124', '\040',
'\164', '\150', '\040', '\061', '\012', '\167', '\132', '\155',
'\040', '\155', '\145', '\040', '\061', '\012', '\130', '\156',
'\161', '\040', '\141', '\156', '\040', '\061', '\012', '\150',
'\146', '\125', '\040', '\164', '\150', '\040', '\061', '\012',
'\153', '\126', '\162', '\040', '\145', '\162', '\040', '\061',
'\012', '\147', '\126', '\160', '\040', '\156', '\147', '\040',
'\061', '\012', '\156', '\102', '\160', '\040', '\141', '\156',
'\040', '\061', '\012', '\170', '\156', '\132', '\040', '\141',
'\156', '\040', '\061', '\012', '\152', '\161', '\101', '\040',
'\161', '\165', '\040', '\061', '\012', '\120', '\172', '\153',
'\040', '\163', '\172', '\040', '\061', '\012', '\146', '\112',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\107',
'\156', '\146', '\040', '\141', '\156', '\040', '\061', '\012',
'\113', '\170', '\160', '\040', '\160', '\162', '\040', '\061',
'\012', '\144', '\130', '\154', '\040', '\130', '\155', '\040',
'\061', '\012', '\150', '\167', '\114', '\040', '\164', '\150',
'\040', '\061', '\012', '\122', '\162', '\156', '\040', '\141',
'\156', '\040', '\061', '\012', '\153', '\154', '\114', '\040',
'\154', '\145', '\040', '\061', '\012', '\146', '\117', '\147',
'\040', '\156', '\147', '\040', '\061', '\012', '\121', '\167',
'\170', '\040', '\167', '\141', '\040', '\061', '\012', '\103',
'\155', '\170', '\040', '\155', '\145', '\040', '\061', '\012',
'\106', '\142', '\146', '\040', '\142', '\145', '\040', '\061',
'\012', '\150', '\127', '\161', '\040', '\164', '\150', '\040',
'\061', '\012', '\142', '\123', '\167', '\040', '\167', '\141',
'\040', '\061', '\012', '\102', '\170', '\162', '\040', '\145',
'\162', '\040', '\061', '\012', '\172', '\143', '\102', '\040',
'\143', '\150', '\040', '\061', '\012', '\154', '\166', '\130',
'\040', '\154', '\145', '\040', '\061', '\012', '\113', '\153',
'\170', '\040', '\153', '\141', '\040', '\061', '\012', '\161',
'\146', '\111', '\040', '\161', '\165', '\040', '\061', '\012',
'\165', '\113', '\147', '\040', '\161', '\165', '\040', '\061',
'\012', '\131', '\153', '\165', '\040', '\161', '\165', '\040',
'\061', '\012', '\152', '\112', '\172', '\040', '\163', '\172',
'\040', '\061', '\012', '\165', '\111', '\160', '\040', '\161',
'\165', '\040', '\061', '\012', '\161', '\101', '\144', '\040',
'\161', '\165', '\040', '\061', '\012', '\160', '\146', '\110',
'\040', '\160', '\162', '\040', '\061', '\012', '\121', '\167',
'\146', '\040', '\167', '\141', '\040', '\061', '\012', '\167',
'\142', '\125', '\040', '\167', '\141', '\040', '\061', '\012',
'\166', '\104', '\166', '\040', '\166', '\141', '\040', '\061',
'\012', '\147', '\112', '\156', '\040', '\141', '\156', '\040',
'\061', '\012', '\172', '\154', '\122', '\040', '\154', '\145',
'\040', '\061', '\012', '\155', '\130', '\162', '\040', '\145',
'\162', '\040', '\061', '\012', '\162', '\110', '\170', '\040',
'\145', '\162', '\040', '\061', '\012', '\157', '\126', '\172',
'\040', '\157', '\156', '\040', '\061', '\012', '\147', '\164',
'\107', '\040', '\164', '\150', '\040', '\061', '\012', '\154',
'\162', '\113', '\040', '\110', '\113', '\040', '\061', '\012',
'\127', '\170', '\145', '\040', '\145', '\162', '\040', '\061',
'\012', '\160', '\156', '\112', '\040', '\141', '\156', '\040',
'\061', '\012', '\106', '\161', '\171', '\040', '\161', '\165',
'\040', '\061', '\012', '\152', '\126', '\154', '\040', '\154',
'\145', '\040', '\061', '\012', '\143', '\142', '\120', '\040',
'\143', '\150', '\040', '\061', '\012', '\107', '\152', '\143',
'\040', '\152', '\123', '\040', '\061', '\012', '\152', '\121',
'\163', '\040', '\163', '\164', '\040', '\061', '\012', '\164',
'\166', '\126', '\040', '\164', '\150', '\040', '\061', '\012',
'\110', '\172', '\153', '\040', '\163', '\172', '\040', '\061',
'\012', '\152', '\171', '\127', '\040', '\151', '\152', '\040',
'\061', '\012', '\130', '\142', '\146', '\040', '\142', '\145',
'\040', '\061', '\012', '\161', '\146', '\123', '\040', '\161',
'\165', '\040', '\061', '\012', '\127', '\166', '\160', '\040',
'\166', '\141', '\040', '\061', '\012', '\167', '\142', '\114',
'\040', '\167', '\141', '\040', '\061', '\012', '\155', '\153',
'\117', '\040', '\153', '\141', '\040', '\061', '\012', '\145',
'\161', '\102', '\040', '\161', '\165', '\040', '\061', '\012',
'\144', '\166', '\123', '\040', '\144', '\145', '\040', '\061',
'\012', '\172', '\107', '\150', '\040', '\164', '\150', '\040',
'\061', '\012', '\166', '\127', '\165', '\040', '\161', '\165',
'\040', '\061', '\012', '\146', '\154', '\130', '\040', '\154',
'\145', '\040', '\061', '\012', '\170', '\112', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\161', '\114', '\153',
'\040', '\161', '\165', '\040', '\061', '\012', '\166', '\116',
'\154', '\040', '\154', '\145', '\040', '\061', '\012', '\153',
'\172', '\121', '\040', '\163', '\172', '\040', '\061', '\012',
'\103', '\172', '\166', '\040', '\163', '\172', '\040', '\061',
'\012', '\153', '\156', '\126', '\040', '\141', '\156', '\040',
'\061', '\012', '\122', '\152', '\142', '\040', '\151', '\152',
'\040', '\061', '\012', '\142', '\116', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\172', '\120', '\155', '\040',
'\163', '\172', '\040', '\061', '\012', '\161', '\170', '\102',
'\040', '\161', '\165', '\040', '\061', '\012', '\114', '\150',
'\150', '\040', '\164', '\150', '\040', '\061', '\012', '\125',
'\166', '\164', '\040', '\164', '\150', '\040', '\061', '\012',
'\170', '\146', '\125', '\040', '\146', '\157', '\040', '\061',
'\012', '\151', '\116', '\160', '\040', '\151', '\156', '\040',
'\061', '\012', '\171', '\131', '\147', '\040', '\156', '\147',
'\040', '\061', '\012', '\157', '\120', '\142', '\040', '\157',
'\156', '\040', '\061', '\012', '\161', '\151', '\127', '\040',
'\161', '\165', '\040', '\061', '\012', '\171', '\143', '\104',
'\040', '\143', '\150', '\040', '\061', '\012', '\167', '\126',
'\172', '\040', '\163', '\172', '\040', '\061', '\012', '\167',
'\107', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\150', '\122', '\142', '\040', '\164', '\150', '\040', '\061',
'\012', '\170', '\142', '\102', '\040', '\142', '\145', '\040',
'\061', '\012', '\163', '\132', '\154', '\040', '\154', '\145',
'\040', '\061', '\012', '\147', '\170', '\117', '\040', '\156',
'\147', '\040', '\061', '\012', '\167', '\106', '\153', '\040',
'\153', '\141', '\040', '\061', '\012', '\115', '\170', '\144',
'\040', '\144', '\145', '\040', '\061', '\012', '\144', '\170',
'\120', '\040', '\144', '\145', '\040', '\061', '\012', '\154',
'\122', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\150', '\142', '\132', '\040', '\164', '\150', '\040', '\061',
'\012', '\105', '\141', '\157', '\040', '\141', '\156', '\040',
'\061', '\012', '\172', '\147', '\101', '\040', '\156', '\147',
'\040', '\061', '\012', '\161', '\143', '\127', '\040', '\143',
'\150', '\040', '\061', '\012', '\166', '\155', '\121', '\040',
'\166', '\141', '\040', '\061', '\012', '\131', '\161', '\146',
'\040', '\161', '\165', '\040', '\061', '\012', '\167', '\151',
'\117', '\040', '\151', '\156', '\040', '\061', '\012', '\170',
'\117', '\145', '\040', '\145', '\162', '\040', '\061', '\012',
'\110', '\146', '\171', '\040', '\156', '\171', '\040', '\061',
'\012', '\142', '\146', '\123', '\040', '\142', '\145', '\040',
'\061', '\012', '\121', '\150', '\156', '\040', '\164', '\150',
'\040', '\061', '\012', '\103', '\155', '\153', '\040', '\153',
'\141', '\040', '\061', '\012', '\154', '\131', '\163', '\040',
'\154', '\145', '\040', '\061', '\012', '\116', '\161', '\164',
'\040', '\164', '\150', '\040', '\061', '\012', '\161', '\145',
'\112', '\040', '\161', '\165', '\040', '\061', '\012', '\172',
'\164', '\112', '\040', '\164', '\150', '\040', '\061', '\012',
'\160', '\115', '\166', '\040', '\166', '\141', '\040', '\061',
'\012', '\165', '\150', '\127', '\040', '\164', '\150', '\040',
'\061', '\012', '\152', '\123', '\142', '\040', '\151', '\152',
'\040', '\061', '\012', '\144', '\131', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\143', '\146', '\127', '\040',
'\143', '\150', '\040', '\061', '\012', '\147', '\123', '\170',
'\040', '\156', '\147', '\040', '\061', '\012', '\161', '\123',
'\166', '\040', '\161', '\165', '\040', '\061', '\012', '\152',
'\103', '\163', '\040', '\163', '\164', '\040', '\061', '\012',
'\160', '\167', '\103', '\040', '\160', '\162', '\040', '\061',
'\012', '\107', '\170', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\146', '\115', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\153', '\153', '\103', '\040', '\153',
'\141', '\040', '\061', '\012', '\165', '\161', '\111', '\040',
'\161', '\165', '\040', '\061', '\012', '\172', '\102', '\153',
'\040', '\163', '\172', '\040', '\061', '\012', '\172', '\163',
'\127', '\040', '\163', '\164', '\040', '\061', '\012', '\146',
'\132', '\142', '\040', '\142', '\145', '\040', '\061', '\012',
'\170', '\152', '\142', '\040', '\151', '\152', '\040', '\061',
'\012', '\166', '\110', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\146', '\167', '\116', '\040', '\167', '\141',
'\040', '\061', '\012', '\166', '\115', '\167', '\040', '\166',
'\141', '\040', '\061', '\012', '\110', '\150', '\161', '\040',
'\164', '\150', '\040', '\061', '\012', '\143', '\163', '\112',
'\040', '\143', '\150', '\040', '\061', '\012', '\142', '\162',
'\112', '\040', '\145', '\162', '\040', '\061', '\012', '\170',
'\166', '\115', '\040', '\166', '\141', '\040', '\061', '\012',
'\155', '\130', '\156', '\040', '\141', '\156', '\040', '\061',
'\012', '\161', '\127', '\167', '\040', '\167', '\141', '\040',
'\061', '\012', '\144', '\170', '\132', '\040', '\144', '\145',
'\040', '\061', '\012', '\163', '\126', '\152', '\040', '\163',
'\164', '\040', '\061', '\012', '\170', '\162', '\106', '\040',
'\145', '\162', '\040', '\061', '\012', '\160', '\142', '\125',
'\040', '\160', '\162', '\040', '\061', '\012', '\124', '\146',
'\172', '\040', '\163', '\172', '\040', '\061', '\012', '\167',
'\161', '\124', '\040', '\161', '\165', '\040', '\061', '\012',
'\166', '\143', '\106', '\040', '\143', '\150', '\040', '\061',
'\012', '\156', '\162', '\123', '\040', '\141', '\156', '\040',
'\061', '\012', '\127', '\150', '\172', '\040', '\164', '\150',
'\040', '\061', '\012', '\153', '\147', '\130', '\040', '\156',
'\147', '\040', '\061', '\012', '\171', '\130', '\153', '\040',
'\153', '\141', '\040', '\061', '\012', '\153', '\112', '\142',
'\040', '\153', '\141', '\040', '\061', '\012', '\162', '\132',
'\153', '\040', '\145', '\162', '\040', '\061', '\012', '\160',
'\102', '\143', '\040', '\143', '\150', '\040', '\061', '\012',
'\147', '\125', '\166', '\040', '\156', '\147', '\040', '\061',
'\012', '\110', '\161', '\145', '\040', '\161', '\165', '\040',
'\061', '\012', '\113', '\161', '\152', '\040', '\161', '\165',
'\040', '\061', '\012', '\157', '\106', '\152', '\040', '\157',
'\156', '\040', '\061', '\012', '\170', '\142', '\116', '\040',
'\142', '\145', '\040', '\061', '\012', '\160', '\156', '\113',
'\040', '\141', '\156', '\040', '\061', '\012', '\114', '\142',
'\167', '\040', '\167', '\141', '\040', '\061', '\012', '\144',
'\115', '\142', '\040', '\144', '\145', '\040', '\061', '\012',
'\161', '\123', '\160', '\040', '\161', '\165', '\040', '\061',
'\012', '\132', '\163', '\166', '\040', '\163', '\164', '\040',
'\061', '\012', '\167', '\162', '\126', '\040', '\145', '\162',
'\040', '\061', '\012', '\165', '\113', '\146', '\040', '\161',
'\165', '\040', '\061', '\012', '\155', '\154', '\131', '\040',
'\154', '\145', '\040', '\061', '\012', '\147', '\170', '\106',
'\040', '\156', '\147', '\040', '\061', '\012', '\164', '\152',
'\114', '\040', '\164', '\150', '\040', '\061', '\012', '\130',
'\162', '\143', '\040', '\143', '\150', '\040', '\061', '\012',
'\162', '\166', '\106', '\040', '\145', '\162', '\040', '\061',
'\012', '\155', '\114', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\152', '\162', '\113', '\040', '\145', '\162',
'\040', '\061', '\012', '\121', '\154', '\172', '\040', '\154',
'\145', '\040', '\061', '\012', '\172', '\170', '\104', '\040',
'\163', '\172', '\040', '\061', '\012', '\146', '\144', '\131',
'\040', '\144', '\145', '\040', '\061', '\012', '\152', '\166',
'\104', '\040', '\151', '\152', '\040', '\061', '\012', '\170',
'\121', '\147', '\040', '\156', '\147', '\040', '\061', '\012',
'\161', '\106', '\165', '\040', '\165', '\156', '\040', '\061',
'\012', '\163', '\146', '\112', '\040', '\163', '\164', '\040',
'\061', '\012', '\160', '\111', '\146', '\040', '\160', '\162',
'\040', '\061', '\012', '\150', '\170', '\112', '\040', '\164',
'\150', '\040', '\061', '\012', '\143', '\116', '\143', '\040',
'\143', '\150', '\040', '\061', '\012', '\111', '\144', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\171', '\110',
'\146', '\040', '\156', '\171', '\040', '\061', '\012', '\161',
'\130', '\155', '\040', '\161', '\165', '\040', '\061', '\012',
'\171', '\154', '\104', '\040', '\154', '\145', '\040', '\061',
'\012', '\172', '\106', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\152', '\127', '\160', '\040', '\151', '\152',
'\040', '\061', '\012', '\145', '\113', '\160', '\040', '\145',
'\162', '\040', '\061', '\012', '\170', '\150', '\146', '\040',
'\164', '\150', '\040', '\061', '\012', '\171', '\142', '\126',
'\040', '\142', '\145', '\040', '\061', '\012', '\170', '\130',
'\163', '\040', '\163', '\164', '\040', '\061', '\012', '\131',
'\150', '\153', '\040', '\164', '\150', '\040', '\061', '\012',
'\146', '\167', '\130', '\040', '\167', '\141', '\040', '\061',
'\012', '\142', '\161', '\113', '\040', '\161', '\165', '\040',
'\061', '\012', '\156', '\166', '\131', '\040', '\141', '\156',
'\040', '\061', '\012', '\170', '\166', '\153', '\040', '\153',
'\141', '\040', '\061', '\012', '\162', '\142', '\120', '\040',
'\145', '\162', '\040', '\061', '\012', '\163', '\130', '\154',
'\040', '\154', '\145', '\040', '\061', '\012', '\125', '\167',
'\164', '\040', '\164', '\150', '\040', '\061', '\012', '\167',
'\155', '\127', '\040', '\155', '\145', '\040', '\061', '\012',
'\160', '\170', '\126', '\040', '\160', '\162', '\040', '\061',
'\012', '\156', '\152', '\132', '\040', '\141', '\156', '\040',
'\061', '\012', '\124', '\161', '\153', '\040', '\161', '\165',
'\040', '\061', '\012', '\172', '\155', '\105', '\040', '\163',
'\172', '\040', '\061', '\012', '\122', '\161', '\165', '\040',
'\165', '\156', '\040', '\061', '\012', '\161', '\161', '\115',
'\040', '\161', '\165', '\040', '\061', '\012', '\144', '\150',
'\121', '\040', '\164', '\150', '\040', '\061', '\012', '\165',
'\112', '\172', '\040', '\161', '\165', '\040', '\061', '\012',
'\126', '\161', '\144', '\040', '\161', '\165', '\040', '\061',
'\012', '\171', '\103', '\153', '\040', '\153', '\141', '\040',
'\061', '\012', '\160', '\127', '\165', '\040', '\161', '\165',
'\040', '\061', '\012', '\126', '\144', '\171', '\040', '\144',
'\145', '\040', '\061', '\012', '\151', '\122', '\170', '\040',
'\151', '\156', '\040', '\061', '\012', '\126', '\143', '\155',
'\040', '\143', '\150', '\040', '\061', '\012', '\167', '\111',
'\147', '\040', '\156', '\147', '\040', '\061', '\012', '\130',
'\142', '\150', '\040', '\164', '\150', '\040', '\061', '\012',
'\166', '\143', '\107', '\040', '\143', '\150', '\040', '\061',
'\012', '\152', '\152', '\130', '\040', '\151', '\152', '\040',
'\061', '\012', '\156', '\155', '\117', '\040', '\141', '\156',
'\040', '\061', '\012', '\144', '\121', '\152', '\040', '\144',
'\145', '\040', '\061', '\012', '\144', '\146', '\126', '\040',
'\144', '\145', '\040', '\061', '\012', '\144', '\142', '\113',
'\040', '\144', '\145', '\040', '\061', '\012', '\147', '\161',
'\153', '\040', '\161', '\165', '\040', '\061', '\012', '\156',
'\106', '\144', '\040', '\141', '\156', '\040', '\061', '\012',
'\157', '\127', '\166', '\040', '\157', '\156', '\040', '\061',
'\012', '\156', '\110', '\160', '\040', '\141', '\156', '\040',
'\061', '\012', '\153', '\156', '\113', '\040', '\141', '\156',
'\040', '\061', '\012', '\142', '\170', '\132', '\040', '\142',
'\145', '\040', '\061', '\012', '\167', '\155', '\110', '\040',
'\155', '\145', '\040', '\061', '\012', '\146', '\147', '\130',
'\040', '\156', '\147', '\040', '\061', '\012', '\147', '\172',
'\110', '\040', '\156', '\147', '\040', '\061', '\012', '\132',
'\142', '\166', '\040', '\166', '\141', '\040', '\061', '\012',
'\166', '\147', '\115', '\040', '\156', '\147', '\040', '\061',
'\012', '\144', '\155', '\113', '\040', '\144', '\145', '\040',
'\061', '\012', '\143', '\166', '\102', '\040', '\143', '\150',
'\040', '\061', '\012', '\145', '\121', '\163', '\040', '\145',
'\162', '\040', '\061', '\012', '\143', '\110', '\155', '\040',
'\143', '\150', '\040', '\061', '\012', '\163', '\102', '\164',
'\040', '\164', '\150', '\040', '\061', '\012', '\142', '\110',
'\170', '\040', '\142', '\145', '\040', '\061', '\012', '\166',
'\161', '\144', '\040', '\161', '\165', '\040', '\061', '\012',
'\116', '\160', '\171', '\040', '\160', '\162', '\040', '\061',
'\012', '\170', '\172', '\114', '\040', '\163', '\172', '\040',
'\061', '\012', '\147', '\115', '\170', '\040', '\156', '\147',
'\040', '\061', '\012', '\166', '\167', '\125', '\040', '\166',
'\141', '\040', '\061', '\012', '\160', '\146', '\130', '\040',
'\160', '\162', '\040', '\061', '\012', '\156', '\106', '\147',
'\040', '\141', '\156', '\040', '\061', '\012', '\163', '\106',
'\163', '\040', '\163', '\164', '\040', '\061', '\012', '\126',
'\161', '\150', '\040', '\164', '\150', '\040', '\061', '\012',
'\105', '\155', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\164', '\130', '\171', '\040', '\164', '\150', '\040',
'\061', '\012', '\165', '\126', '\144', '\040', '\161', '\165',
'\040', '\061', '\012', '\131', '\166', '\152', '\040', '\151',
'\152', '\040', '\061', '\012', '\161', '\110', '\157', '\040',
'\161', '\165', '\040', '\061', '\012', '\160', '\127', '\155',
'\040', '\155', '\145', '\040', '\061', '\012', '\170', '\143',
'\113', '\040', '\143', '\150', '\040', '\061', '\012', '\160',
'\125', '\166', '\040', '\166', '\141', '\040', '\061', '\012',
'\160', '\114', '\156', '\040', '\141', '\156', '\040', '\061',
'\012', '\165', '\126', '\156', '\040', '\141', '\156', '\040',
'\061', '\012', '\106', '\163', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\143', '\107', '\152', '\040', '\143',
'\150', '\040', '\061', '\012', '\130', '\167', '\171', '\040',
'\167', '\141', '\040', '\061', '\012', '\147', '\172', '\124',
'\040', '\156', '\147', '\040', '\061', '\012', '\144', '\116',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\152',
'\162', '\125', '\040', '\145', '\162', '\040', '\061', '\012',
'\161', '\164', '\101', '\040', '\164', '\150', '\040', '\061',
'\012', '\147', '\161', '\124', '\040', '\161', '\165', '\040',
'\061', '\012', '\160', '\167', '\115', '\040', '\160', '\162',
'\040', '\061', '\012', '\154', '\162', '\120', '\040', '\145',
'\162', '\040', '\061', '\012', '\152', '\155', '\103', '\040',
'\151', '\152', '\040', '\061', '\012', '\160', '\155', '\120',
'\040', '\155', '\145', '\040', '\061', '\012', '\171', '\151',
'\131', '\040', '\151', '\156', '\040', '\061', '\012', '\160',
'\124', '\163', '\040', '\163', '\164', '\040', '\061', '\012',
'\132', '\167', '\152', '\040', '\151', '\152', '\040', '\061',
'\012', '\161', '\160', '\106', '\040', '\161', '\165', '\040',
'\061', '\012', '\146', '\150', '\112', '\040', '\143', '\150',
'\040', '\061', '\012', '\146', '\117', '\166', '\040', '\166',
'\141', '\040', '\061', '\012', '\167', '\143', '\113', '\040',
'\143', '\150', '\040', '\061', '\012', '\153', '\161', '\153',
'\040', '\161', '\165', '\040', '\061', '\012', '\125', '\147',
'\172', '\040', '\156', '\147', '\040', '\061', '\012', '\170',
'\146', '\106', '\040', '\146', '\157', '\040', '\061', '\012',
'\143', '\124', '\166', '\040', '\143', '\150', '\040', '\061',
'\012', '\147', '\160', '\130', '\040', '\156', '\147', '\040',
'\061', '\012', '\114', '\146', '\170', '\040', '\146', '\157',
'\040', '\061', '\012', '\147', '\167', '\125', '\040', '\156',
'\147', '\040', '\061', '\012', '\104', '\172', '\170', '\040',
'\163', '\172', '\040', '\061', '\012', '\153', '\104', '\143',
'\040', '\143', '\150', '\040', '\061', '\012', '\120', '\166',
'\150', '\040', '\164', '\150', '\040', '\061', '\012', '\153',
'\144', '\131', '\040', '\144', '\145', '\040', '\061', '\012',
'\167', '\127', '\166', '\040', '\166', '\141', '\040', '\061',
'\012', '\163', '\121', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\155', '\152', '\131', '\040', '\151', '\152',
'\040', '\061', '\012', '\171', '\103', '\142', '\040', '\142',
'\145', '\040', '\061', '\012', '\162', '\123', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\123', '\146', '\166',
'\040', '\166', '\141', '\040', '\061', '\012', '\146', '\132',
'\150', '\040', '\164', '\150', '\040', '\061', '\012', '\144',
'\115', '\144', '\040', '\144', '\145', '\040', '\061', '\012',
'\144', '\116', '\163', '\040', '\163', '\164', '\040', '\061',
'\012', '\152', '\124', '\166', '\040', '\151', '\152', '\040',
'\061', '\012', '\164', '\155', '\127', '\040', '\164', '\150',
'\040', '\061', '\012', '\143', '\170', '\112', '\040', '\143',
'\150', '\040', '\061', '\012', '\165', '\101', '\157', '\040',
'\161', '\165', '\040', '\061', '\012', '\155', '\110', '\170',
'\040', '\155', '\145', '\040', '\061', '\012', '\146', '\147',
'\101', '\040', '\156', '\147', '\040', '\061', '\012', '\122',
'\150', '\170', '\040', '\164', '\150', '\040', '\061', '\012',
'\167', '\127', '\164', '\040', '\164', '\150', '\040', '\061',
'\012', '\160', '\146', '\125', '\040', '\160', '\162', '\040',
'\061', '\012', '\157', '\111', '\152', '\040', '\157', '\156',
'\040', '\061', '\012', '\154', '\150', '\121', '\040', '\164',
'\150', '\040', '\061', '\012', '\166', '\104', '\153', '\040',
'\153', '\141', '\040', '\061', '\012', '\166', '\112', '\144',
'\040', '\144', '\145', '\040', '\061', '\012', '\163', '\104',
'\160', '\040', '\163', '\164', '\040', '\061', '\012', '\161',
'\151', '\125', '\040', '\161', '\165', '\040', '\061', '\012',
'\131', '\146', '\163', '\040', '\163', '\164', '\040', '\061',
'\012', '\161', '\170', '\127', '\040', '\161', '\165', '\040',
'\061', '\012', '\163', '\106', '\150', '\040', '\164', '\150',
'\040', '\061', '\012', '\166', '\150', '\120', '\040', '\164',
'\150', '\040', '\061', '\012', '\126', '\152', '\152', '\040',
'\151', '\152', '\040', '\061', '\012', '\164', '\155', '\121',
'\040', '\164', '\150', '\040', '\061', '\012', '\167', '\155',
'\115', '\040', '\155', '\145', '\040', '\061', '\012', '\143',
'\126', '\171', '\040', '\143', '\150', '\040', '\061', '\012',
'\113', '\172', '\167', '\040', '\163', '\172', '\040', '\061',
'\012', '\164', '\146', '\101', '\040', '\164', '\150', '\040',
'\061', '\012', '\147', '\152', '\122', '\040', '\151', '\152',
'\040', '\061', '\012', '\170', '\171', '\121', '\040', '\156',
'\171', '\040', '\061', '\012', '\155', '\102', '\166', '\040',
'\166', '\141', '\040', '\061', '\012', '\146', '\121', '\171',
'\040', '\156', '\171', '\040', '\061', '\012', '\144', '\132',
'\143', '\040', '\143', '\150', '\040', '\061', '\012', '\145',
'\126', '\150', '\040', '\164', '\150', '\040', '\061', '\012',
'\116', '\166', '\143', '\040', '\143', '\150', '\040', '\061',
'\012', '\161', '\106', '\142', '\040', '\161', '\165', '\040',
'\061', '\012', '\161', '\150', '\154', '\040', '\164', '\150',
'\040', '\061', '\012', '\132', '\143', '\156', '\040', '\143',
'\150', '\040', '\061', '\012', '\161', '\167', '\127', '\040',
'\161', '\165', '\040', '\061', '\012', '\170', '\132', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\152', '\150',
'\114', '\040', '\164', '\150', '\040', '\061', '\012', '\154',
'\127', '\146', '\040', '\154', '\145', '\040', '\061', '\012',
'\152', '\112', '\170', '\040', '\151', '\152', '\040', '\061',
'\012', '\131', '\172', '\164', '\040', '\164', '\150', '\040',
'\061', '\012', '\105', '\157', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\116', '\152', '\155', '\040', '\151',
'\152', '\040', '\061', '\012', '\132', '\147', '\144', '\040',
'\156', '\147', '\040', '\061', '\012', '\160', '\107', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\163', '\147',
'\131', '\040', '\156', '\147', '\040', '\061', '\012', '\152',
'\171', '\105', '\040', '\151', '\152', '\040', '\061', '\012',
'\152', '\172', '\105', '\040', '\163', '\172', '\040', '\061',
'\012', '\165', '\152', '\113', '\040', '\161', '\165', '\040',
'\061', '\012', '\161', '\142', '\155', '\040', '\161', '\165',
'\040', '\061', '\012', '\127', '\163', '\146', '\040', '\163',
'\164', '\040', '\061', '\012', '\155', '\121', '\156', '\040',
'\141', '\156', '\040', '\061', '\012', '\163', '\121', '\163',
'\040', '\163', '\164', '\040', '\061', '\012', '\171', '\130',
'\147', '\040', '\156', '\147', '\040', '\061', '\012', '\166',
'\131', '\145', '\040', '\145', '\162', '\040', '\061', '\012',
'\145', '\120', '\166', '\040', '\145', '\162', '\040', '\061',
'\012', '\141', '\103', '\166', '\040', '\141', '\156', '\040',
'\061', '\012', '\160', '\126', '\155', '\040', '\155', '\145',
'\040', '\061', '\012', '\172', '\170', '\117', '\040', '\163',
'\172', '\040', '\061', '\012', '\152', '\152', '\127', '\040',
'\151', '\152', '\040', '\061', '\012', '\166', '\147', '\111',
'\040', '\156', '\147', '\040', '\061', '\012', '\164', '\132',
'\143', '\040', '\164', '\150', '\040', '\061', '\012', '\121',
'\164', '\147', '\040', '\164', '\150', '\040', '\061', '\012',
'\166', '\115', '\164', '\040', '\164', '\150', '\040', '\061',
'\012', '\153', '\124', '\164', '\040', '\164', '\150', '\040',
'\061', '\012', '\115', '\170', '\152', '\040', '\151', '\152',
'\040', '\061', '\012', '\146', '\142', '\111', '\040', '\142',
'\145', '\040', '\061', '\012', '\161', '\101', '\165', '\040',
'\165', '\156', '\040', '\061', '\012', '\167', '\146', '\124',
'\040', '\167', '\141', '\040', '\061', '\012', '\146', '\143',
'\106', '\040', '\143', '\150', '\040', '\061', '\012', '\160',
'\146', '\113', '\040', '\160', '\162', '\040', '\061', '\012',
'\142', '\117', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\150', '\165', '\130', '\040', '\164', '\150', '\040',
'\061', '\012', '\143', '\112', '\155', '\040', '\143', '\150',
'\040', '\061', '\012', '\130', '\160', '\147', '\040', '\156',
'\147', '\040', '\061', '\012', '\164', '\161', '\112', '\040',
'\164', '\150', '\040', '\061', '\012', '\117', '\166', '\146',
'\040', '\166', '\141', '\040', '\061', '\012', '\130', '\154',
'\152', '\040', '\154', '\145', '\040', '\061', '\012', '\116',
'\162', '\154', '\040', '\145', '\162', '\040', '\061', '\012',
'\146', '\170', '\127', '\040', '\146', '\157', '\040', '\061',
'\012', '\123', '\167', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\161', '\166', '\105', '\040', '\161', '\165',
'\040', '\061', '\012', '\161', '\160', '\131', '\040', '\161',
'\165', '\040', '\061', '\012', '\157', '\116', '\167', '\040',
'\157', '\156', '\040', '\061', '\012', '\153', '\131', '\143',
'\040', '\143', '\150', '\040', '\061', '\012', '\152', '\130',
'\142', '\040', '\151', '\152', '\040', '\061', '\012', '\121',
'\146', '\153', '\040', '\153', '\141', '\040', '\061', '\012',
'\145', '\104', '\160', '\040', '\145', '\162', '\040', '\061',
'\012', '\126', '\161', '\142', '\040', '\161', '\165', '\040',
'\061', '\012', '\163', '\113', '\172', '\040', '\165', '\163',
'\040', '\061', '\012', '\161', '\152', '\160', '\040', '\161',
'\165', '\040', '\061', '\012', '\125', '\170', '\154', '\040',
'\154', '\145', '\040', '\061', '\012', '\114', '\153', '\171',
'\040', '\153', '\141', '\040', '\061', '\012', '\172', '\106',
'\171', '\040', '\163', '\172', '\040', '\061', '\012', '\156',
'\115', '\154', '\040', '\141', '\156', '\040', '\061', '\012',
'\171', '\131', '\151', '\040', '\151', '\156', '\040', '\061',
'\012', '\143', '\121', '\145', '\040', '\143', '\150', '\040',
'\061', '\012', '\157', '\131', '\152', '\040', '\157', '\156',
'\040', '\061', '\012', '\164', '\142', '\102', '\040', '\164',
'\150', '\040', '\061', '\012', '\131', '\142', '\147', '\040',
'\156', '\147', '\040', '\061', '\012', '\156', '\126', '\153',
'\040', '\156', '\144', '\040', '\061', '\012', '\142', '\130',
'\143', '\040', '\143', '\150', '\040', '\061', '\012', '\114',
'\161', '\156', '\040', '\141', '\156', '\040', '\061', '\012',
'\155', '\144', '\113', '\040', '\144', '\145', '\040', '\061',
'\012', '\160', '\144', '\120', '\040', '\144', '\145', '\040',
'\061', '\012', '\164', '\161', '\123', '\040', '\164', '\150',
'\040', '\061', '\012', '\132', '\152', '\146', '\040', '\151',
'\152', '\040', '\061', '\012', '\153', '\143', '\103', '\040',
'\143', '\150', '\040', '\061', '\012', '\161', '\132', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\141', '\123',
'\144', '\040', '\141', '\156', '\040', '\061', '\012', '\103',
'\155', '\150', '\040', '\164', '\150', '\040', '\061', '\012',
'\150', '\172', '\107', '\040', '\164', '\150', '\040', '\061',
'\012', '\167', '\121', '\155', '\040', '\155', '\145', '\040',
'\061', '\012', '\107', '\161', '\147', '\040', '\161', '\165',
'\040', '\061', '\012', '\171', '\127', '\160', '\040', '\160',
'\162', '\040', '\061', '\012', '\130', '\162', '\167', '\040',
'\145', '\162', '\040', '\061', '\012', '\171', '\112', '\171',
'\040', '\156', '\171', '\040', '\061', '\012', '\163', '\161',
'\104', '\040', '\161', '\165', '\040', '\061', '\012', '\144',
'\127', '\142', '\040', '\144', '\145', '\040', '\061', '\012',
'\156', '\142', '\121', '\040', '\141', '\156', '\040', '\061',
'\012', '\151', '\167', '\120', '\040', '\151', '\156', '\040',
'\061', '\012', '\154', '\127', '\163', '\040', '\154', '\145',
'\040', '\061', '\012', '\124', '\163', '\147', '\040', '\156',
'\147', '\040', '\061', '\012', '\144', '\110', '\172', '\040',
'\144', '\145', '\040', '\061', '\012', '\164', '\143', '\106',
'\040', '\164', '\150', '\040', '\061', '\012', '\121', '\153',
'\164', '\040', '\164', '\150', '\040', '\061', '\012', '\102',
'\144', '\144', '\040', '\144', '\145', '\040', '\061', '\012',
'\115', '\170', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\160', '\152', '\126', '\040', '\151', '\152', '\040',
'\061', '\012', '\153', '\121', '\162', '\040', '\145', '\162',
'\040', '\061', '\012', '\144', '\156', '\111', '\040', '\141',
'\156', '\040', '\061', '\012', '\146', '\171', '\131', '\040',
'\156', '\171', '\040', '\061', '\012', '\141', '\106', '\161',
'\040', '\141', '\156', '\040', '\061', '\012', '\131', '\154',
'\170', '\040', '\154', '\145', '\040', '\061', '\012', '\131',
'\171', '\155', '\040', '\155', '\145', '\040', '\061', '\012',
'\152', '\142', '\126', '\040', '\151', '\152', '\040', '\061',
'\012', '\161', '\143', '\126', '\040', '\143', '\150', '\040',
'\061', '\012', '\160', '\172', '\130', '\040', '\163', '\172',
'\040', '\061', '\012', '\161', '\122', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\144', '\152', '\101', '\040',
'\144', '\145', '\040', '\061', '\012', '\142', '\156', '\111',
'\040', '\141', '\156', '\040', '\061', '\012', '\114', '\154',
'\166', '\040', '\154', '\145', '\040', '\061', '\012', '\164',
'\155', '\132', '\040', '\164', '\150', '\040', '\061', '\012',
'\150', '\121', '\157', '\040', '\164', '\150', '\040', '\061',
'\012', '\172', '\164', '\127', '\040', '\164', '\150', '\040',
'\061', '\012', '\122', '\170', '\172', '\040', '\163', '\172',
'\040', '\061', '\012', '\144', '\170', '\127', '\040', '\144',
'\145', '\040', '\061', '\012', '\161', '\164', '\127', '\040',
'\164', '\150', '\040', '\061', '\012', '\153', '\161', '\117',
'\040', '\161', '\165', '\040', '\061', '\012', '\154', '\110',
'\143', '\040', '\143', '\150', '\040', '\061', '\012', '\154',
'\122', '\152', '\040', '\154', '\145', '\040', '\061', '\012',
'\150', '\116', '\146', '\040', '\164', '\150', '\040', '\061',
'\012', '\107', '\151', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\143', '\131', '\161', '\040', '\143', '\150',
'\040', '\061', '\012', '\131', '\144', '\160', '\040', '\144',
'\145', '\040', '\061', '\012', '\161', '\127', '\156', '\040',
'\141', '\156', '\040', '\061', '\012', '\170', '\153', '\102',
'\040', '\153', '\141', '\040', '\061', '\012', '\153', '\170',
'\103', '\040', '\153', '\141', '\040', '\061', '\012', '\154',
'\152', '\101', '\040', '\154', '\145', '\040', '\061', '\012',
'\121', '\167', '\160', '\040', '\160', '\162', '\040', '\061',
'\012', '\155', '\103', '\160', '\040', '\155', '\145', '\040',
'\061', '\012', '\146', '\112', '\144', '\040', '\144', '\145',
'\040', '\061', '\012', '\166', '\103', '\164', '\040', '\164',
'\150', '\040', '\061', '\012', '\126', '\143', '\172', '\040',
'\143', '\150', '\040', '\061', '\012', '\166', '\102', '\146',
'\040', '\166', '\141', '\040', '\061', '\012', '\143', '\131',
'\170', '\040', '\143', '\150', '\040', '\061', '\012', '\146',
'\110', '\167', '\040', '\167', '\141', '\040', '\061', '\012',
'\153', '\166', '\127', '\040', '\153', '\141', '\040', '\061',
'\012', '\112', '\155', '\172', '\040', '\163', '\172', '\040',
'\061', '\012', '\150', '\121', '\152', '\040', '\164', '\150',
'\040', '\061', '\012', '\162', '\142', '\121', '\040', '\145',
'\162', '\040', '\061', '\012', '\166', '\170', '\130', '\040',
'\166', '\141', '\040', '\061', '\012', '\167', '\106', '\150',
'\040', '\164', '\150', '\040', '\061', '\012', '\124', '\152',
'\172', '\040', '\163', '\172', '\040', '\061', '\012', '\150',
'\170', '\122', '\040', '\164', '\150', '\040', '\061', '\012',
'\166', '\144', '\131', '\040', '\144', '\145', '\040', '\061',
'\012', '\160', '\155', '\106', '\040', '\155', '\145', '\040',
'\061', '\012', '\163', '\104', '\154', '\040', '\154', '\145',
'\040', '\061', '\012', '\162', '\126', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\167', '\104', '\143', '\040',
'\143', '\150', '\040', '\061', '\012', '\147', '\102', '\167',
'\040', '\156', '\147', '\040', '\061', '\012', '\143', '\110',
'\146', '\040', '\143', '\150', '\040', '\061', '\012', '\160',
'\172', '\121', '\040', '\163', '\172', '\040', '\061', '\012',
'\154', '\126', '\160', '\040', '\154', '\145', '\040', '\061',
'\012', '\147', '\146', '\110', '\040', '\156', '\147', '\040',
'\061', '\012', '\157', '\107', '\143', '\040', '\143', '\150',
'\040', '\061', '\012', '\164', '\166', '\112', '\040', '\164',
'\150', '\040', '\061', '\012', '\143', '\115', '\166', '\040',
'\143', '\150', '\040', '\061', '\012', '\170', '\156', '\123',
'\040', '\141', '\156', '\040', '\061', '\012', '\166', '\121',
'\170', '\040', '\166', '\141', '\040', '\061', '\012', '\165',
'\157', '\115', '\040', '\161', '\165', '\040', '\061', '\012',
'\172', '\153', '\130', '\040', '\163', '\172', '\040', '\061',
'\012', '\172', '\110', '\160', '\040', '\163', '\172', '\040',
'\061', '\012', '\171', '\165', '\127', '\040', '\161', '\165',
'\040', '\061', '\012', '\121', '\142', '\166', '\040', '\166',
'\141', '\040', '\061', '\012', '\172', '\167', '\107', '\040',
'\163', '\172', '\040', '\061', '\012', '\143', '\160', '\130',
'\040', '\143', '\150', '\040', '\061', '\012', '\122', '\160',
'\166', '\040', '\166', '\141', '\040', '\061', '\012', '\172',
'\113', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\167', '\125', '\142', '\040', '\167', '\141', '\040', '\061',
'\012', '\161', '\156', '\112', '\040', '\141', '\156', '\040',
'\061', '\012', '\122', '\160', '\171', '\040', '\160', '\162',
'\040', '\061', '\012', '\142', '\143', '\123', '\040', '\143',
'\150', '\040', '\061', '\012', '\161', '\170', '\113', '\040',
'\161', '\165', '\040', '\061', '\012', '\161', '\152', '\104',
'\040', '\161', '\165', '\040', '\061', '\012', '\154', '\121',
'\147', '\040', '\156', '\147', '\040', '\061', '\012', '\153',
'\162', '\130', '\040', '\145', '\162', '\040', '\061', '\012',
'\106', '\143', '\147', '\040', '\143', '\150', '\040', '\061',
'\012', '\157', '\126', '\170', '\040', '\157', '\156', '\040',
'\061', '\012', '\166', '\112', '\146', '\040', '\166', '\141',
'\040', '\061', '\012', '\102', '\166', '\153', '\040', '\153',
'\141', '\040', '\061', '\012', '\144', '\155', '\130', '\040',
'\144', '\145', '\040', '\061', '\012', '\127', '\144', '\152',
'\040', '\144', '\145', '\040', '\061', '\012', '\131', '\172',
'\160', '\040', '\163', '\172', '\040', '\061', '\012', '\131',
'\143', '\144', '\040', '\143', '\150', '\040', '\061', '\012',
'\152', '\113', '\170', '\040', '\151', '\152', '\040', '\061',
'\012', '\153', '\162', '\110', '\040', '\145', '\162', '\040',
'\061', '\012', '\114', '\156', '\155', '\040', '\141', '\156',
'\040', '\061', '\012', '\172', '\103', '\155', '\040', '\163',
'\172', '\040', '\061', '\012', '\125', '\167', '\152', '\040',
'\151', '\152', '\040', '\061', '\012', '\125', '\166', '\153',
'\040', '\153', '\141', '\040', '\061', '\012', '\115', '\146',
'\152', '\040', '\151', '\152', '\040', '\061', '\012', '\171',
'\161', '\112', '\040', '\161', '\165', '\040', '\061', '\012',
'\114', '\146', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\171', '\110', '\172', '\040', '\163', '\172', '\040',
'\061', '\012', '\153', '\147', '\112', '\040', '\156', '\147',
'\040', '\061', '\012', '\141', '\107', '\161', '\040', '\141',
'\156', '\040', '\061', '\012', '\164', '\152', '\110', '\040',
'\164', '\150', '\040', '\061', '\012', '\132', '\153', '\143',
'\040', '\143', '\150', '\040', '\061', '\012', '\167', '\110',
'\166', '\040', '\166', '\141', '\040', '\061', '\012', '\116',
'\172', '\160', '\040', '\163', '\172', '\040', '\061', '\012',
'\143', '\132', '\170', '\040', '\143', '\150', '\040', '\061',
'\012', '\152', '\166', '\113', '\040', '\151', '\152', '\040',
'\061', '\012', '\143', '\154', '\106', '\040', '\143', '\150',
'\040', '\061', '\012', '\170', '\155', '\104', '\040', '\155',
'\145', '\040', '\061', '\012', '\131', '\160', '\172', '\040',
'\163', '\172', '\040', '\061', '\012', '\160', '\106', '\171',
'\040', '\160', '\162', '\040', '\061', '\012', '\150', '\166',
'\106', '\040', '\164', '\150', '\040', '\061', '\012', '\155',
'\164', '\127', '\040', '\164', '\150', '\040', '\061', '\012',
'\150', '\161', '\107', '\040', '\164', '\150', '\040', '\061',
'\012', '\153', '\166', '\116', '\040', '\153', '\141', '\040',
'\061', '\012', '\164', '\143', '\132', '\040', '\164', '\150',
'\040', '\061', '\012', '\164', '\153', '\122', '\040', '\164',
'\150', '\040', '\061', '\012', '\160', '\144', '\110', '\040',
'\144', '\145', '\040', '\061', '\012', '\161', '\105', '\163',
'\040', '\161', '\165', '\040', '\061', '\012', '\132', '\143',
'\167', '\040', '\143', '\150', '\040', '\061', '\012', '\126',
'\167', '\165', '\040', '\165', '\156', '\040', '\061', '\012',
'\147', '\130', '\172', '\040', '\156', '\147', '\040', '\061',
'\012', '\155', '\127', '\152', '\040', '\151', '\152', '\040',
'\061', '\012', '\155', '\127', '\166', '\040', '\166', '\141',
'\040', '\061', '\012', '\112', '\161', '\170', '\040', '\161',
'\165', '\040', '\061', '\012', '\157', '\123', '\152', '\040',
'\157', '\156', '\040', '\061', '\012', '\154', '\167', '\131',
'\040', '\154', '\145', '\040', '\061', '\012', '\124', '\153',
'\146', '\040', '\153', '\141', '\040', '\061', '\012', '\160',
'\143', '\103', '\040', '\143', '\150', '\040', '\061', '\012',
'\157', '\150', '\107', '\040', '\164', '\150', '\040', '\061',
'\012', '\144', '\172', '\107', '\040', '\144', '\145', '\040',
'\061', '\012', '\146', '\144', '\116', '\040', '\144', '\145',
'\040', '\061', '\012', '\170', '\162', '\123', '\040', '\145',
'\162', '\040', '\061', '\012', '\150', '\110', '\153', '\040',
'\164', '\150', '\040', '\061', '\012', '\106', '\152', '\172',
'\040', '\163', '\172', '\040', '\061', '\012', '\166', '\142',
'\132', '\040', '\166', '\141', '\040', '\061', '\012', '\125',
'\144', '\170', '\040', '\144', '\145', '\040', '\061', '\012',
'\167', '\172', '\130', '\040', '\163', '\172', '\040', '\061',
'\012', '\165', '\116', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\167', '\146', '\132', '\040', '\167', '\141',
'\040', '\061', '\012', '\163', '\167', '\102', '\040', '\163',
'\164', '\040', '\061', '\012', '\144', '\155', '\121', '\040',
'\144', '\145', '\040', '\061', '\012', '\144', '\143', '\101',
'\040', '\143', '\150', '\040', '\061', '\012', '\161', '\172',
'\120', '\040', '\161', '\165', '\040', '\061', '\012', '\152',
'\112', '\152', '\040', '\151', '\152', '\040', '\061', '\012',
'\161', '\127', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\164', '\126', '\153', '\040', '\164', '\150', '\040',
'\061', '\012', '\147', '\167', '\102', '\040', '\156', '\147',
'\040', '\061', '\012', '\142', '\111', '\167', '\040', '\167',
'\141', '\040', '\061', '\012', '\142', '\160', '\125', '\040',
'\160', '\162', '\040', '\061', '\012', '\142', '\167', '\115',
'\040', '\167', '\141', '\040', '\061', '\012', '\146', '\153',
'\101', '\040', '\153', '\141', '\040', '\061', '\012', '\170',
'\125', '\143', '\040', '\143', '\150', '\040', '\061', '\012',
'\170', '\124', '\144', '\040', '\144', '\145', '\040', '\061',
'\012', '\146', '\113', '\154', '\040', '\154', '\145', '\040',
'\061', '\012', '\154', '\170', '\123', '\040', '\154', '\145',
'\040', '\061', '\012', '\170', '\141', '\123', '\040', '\141',
'\156', '\040', '\061', '\012', '\171', '\166', '\121', '\040',
'\166', '\141', '\040', '\061', '\012', '\144', '\150', '\126',
'\040', '\164', '\150', '\040', '\061', '\012', '\155', '\144',
'\127', '\040', '\144', '\145', '\040', '\061', '\012', '\167',
'\146', '\112', '\040', '\167', '\141', '\040', '\061', '\012',
'\127', '\161', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\163', '\132', '\152', '\040', '\163', '\164', '\040',
'\061', '\012', '\114', '\170', '\171', '\040', '\156', '\171',
'\040', '\061', '\012', '\170', '\130', '\171', '\040', '\156',
'\171', '\040', '\061', '\012', '\161', '\104', '\155', '\040',
'\161', '\165', '\040', '\061', '\012', '\147', '\113', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\121', '\166',
'\152', '\040', '\151', '\152', '\040', '\061', '\012', '\153',
'\146', '\110', '\040', '\153', '\141', '\040', '\061', '\012',
'\141', '\121', '\160', '\040', '\141', '\156', '\040', '\061',
'\012', '\170', '\106', '\172', '\040', '\163', '\172', '\040',
'\061', '\012', '\156', '\152', '\127', '\040', '\141', '\156',
'\040', '\061', '\012', '\122', '\160', '\156', '\040', '\141',
'\156', '\040', '\061', '\012', '\115', '\155', '\156', '\040',
'\141', '\156', '\040', '\061', '\012', '\146', '\150', '\104',
'\040', '\164', '\150', '\040', '\061', '\012', '\152', '\113',
'\153', '\040', '\151', '\152', '\040', '\061', '\012', '\172',
'\101', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\161', '\146', '\114', '\040', '\161', '\165', '\040', '\061',
'\012', '\171', '\167', '\116', '\040', '\167', '\141', '\040',
'\061', '\012', '\161', '\160', '\172', '\040', '\161', '\165',
'\040', '\061', '\012', '\150', '\170', '\120', '\040', '\164',
'\150', '\040', '\061', '\012', '\107', '\144', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\164', '\115', '\170',
'\040', '\164', '\150', '\040', '\061', '\012', '\152', '\167',
'\114', '\040', '\151', '\152', '\040', '\061', '\012', '\153',
'\102', '\142', '\040', '\153', '\141', '\040', '\061', '\012',
'\146', '\101', '\167', '\040', '\167', '\141', '\040', '\061',
'\012', '\123', '\144', '\170', '\040', '\144', '\145', '\040',
'\061', '\012', '\112', '\155', '\166', '\040', '\166', '\141',
'\040', '\061', '\012', '\142', '\147', '\130', '\040', '\156',
'\147', '\040', '\061', '\012', '\170', '\127', '\160', '\040',
'\160', '\162', '\040', '\061', '\012', '\150', '\110', '\164',
'\040', '\164', '\150', '\040', '\061', '\012', '\107', '\167',
'\167', '\040', '\167', '\141', '\040', '\061', '\012', '\106',
'\142', '\142', '\040', '\142', '\145', '\040', '\061', '\012',
'\172', '\157', '\124', '\040', '\157', '\156', '\040', '\061',
'\012', '\171', '\152', '\107', '\040', '\151', '\152', '\040',
'\061', '\012', '\122', '\154', '\147', '\040', '\156', '\147',
'\040', '\061', '\012', '\166', '\106', '\156', '\040', '\141',
'\156', '\040', '\061', '\012', '\172', '\143', '\113', '\040',
'\143', '\150', '\040', '\061', '\012', '\170', '\144', '\103',
'\040', '\144', '\145', '\040', '\061', '\012', '\167', '\166',
'\117', '\040', '\166', '\141', '\040', '\061', '\012', '\157',
'\121', '\154', '\040', '\154', '\145', '\040', '\061', '\012',
'\156', '\111', '\167', '\040', '\141', '\156', '\040', '\061',
'\012', '\167', '\172', '\101', '\040', '\163', '\172', '\040',
'\061', '\012', '\122', '\172', '\152', '\040', '\163', '\172',
'\040', '\061', '\012', '\121', '\172', '\156', '\040', '\141',
'\156', '\040', '\061', '\012', '\131', '\152', '\164', '\040',
'\164', '\150', '\040', '\061', '\012', '\170', '\153', '\121',
'\040', '\153', '\165', '\040', '\061', '\012', '\154', '\162',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\156',
'\167', '\132', '\040', '\141', '\156', '\040', '\061', '\012',
'\160', '\107', '\153', '\040', '\153', '\141', '\040', '\061',
'\012', '\155', '\156', '\114', '\040', '\141', '\156', '\040',
'\061', '\012', '\122', '\154', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\143', '\143', '\104', '\040', '\143',
'\150', '\040', '\061', '\012', '\162', '\122', '\144', '\040',
'\145', '\162', '\040', '\061', '\012', '\117', '\146', '\152',
'\040', '\151', '\152', '\040', '\061', '\012', '\106', '\152',
'\150', '\040', '\164', '\150', '\040', '\061', '\012', '\165',
'\165', '\117', '\040', '\161', '\165', '\040', '\061', '\012',
'\172', '\132', '\170', '\040', '\163', '\172', '\040', '\061',
'\012', '\116', '\142', '\152', '\040', '\151', '\152', '\040',
'\061', '\012', '\172', '\156', '\127', '\040', '\141', '\156',
'\040', '\061', '\012', '\152', '\142', '\110', '\040', '\151',
'\152', '\040', '\061', '\012', '\162', '\104', '\170', '\040',
'\145', '\162', '\040', '\061', '\012', '\121', '\155', '\143',
'\040', '\143', '\150', '\040', '\061', '\012', '\144', '\167',
'\126', '\040', '\144', '\145', '\040', '\061', '\012', '\117',
'\161', '\166', '\040', '\161', '\165', '\040', '\061', '\012',
'\132', '\161', '\145', '\040', '\161', '\165', '\040', '\061',
'\012', '\146', '\167', '\111', '\040', '\167', '\141', '\040',
'\061', '\012', '\156', '\152', '\120', '\040', '\141', '\156',
'\040', '\061', '\012', '\117', '\161', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\160', '\126', '\166', '\040',
'\166', '\141', '\040', '\061', '\012', '\146', '\161', '\170',
'\040', '\161', '\165', '\040', '\061', '\012', '\147', '\146',
'\117', '\040', '\156', '\147', '\040', '\061', '\012', '\150',
'\161', '\125', '\040', '\164', '\150', '\040', '\061', '\012',
'\147', '\104', '\152', '\040', '\156', '\147', '\040', '\061',
'\012', '\124', '\155', '\152', '\040', '\151', '\152', '\040',
'\061', '\012', '\166', '\143', '\113', '\040', '\143', '\150',
'\040', '\061', '\012', '\161', '\155', '\126', '\040', '\161',
'\165', '\040', '\061', '\012', '\163', '\126', '\170', '\040',
'\163', '\164', '\040', '\061', '\012', '\127', '\146', '\150',
'\040', '\164', '\150', '\040', '\061', '\012', '\155', '\112',
'\153', '\040', '\153', '\141', '\040', '\061', '\012', '\146',
'\165', '\113', '\040', '\161', '\165', '\040', '\061', '\012',
'\142', '\146', '\116', '\040', '\142', '\145', '\040', '\061',
'\012', '\161', '\146', '\124', '\040', '\161', '\165', '\040',
'\061', '\012', '\106', '\155', '\152', '\040', '\151', '\152',
'\040', '\061', '\012', '\164', '\142', '\116', '\040', '\164',
'\150', '\040', '\061', '\012', '\153', '\152', '\116', '\040',
'\151', '\152', '\040', '\061', '\012', '\171', '\150', '\132',
'\040', '\164', '\150', '\040', '\061', '\012', '\116', '\170',
'\153', '\040', '\153', '\141', '\040', '\061', '\012', '\167',
'\170', '\125', '\040', '\167', '\141', '\040', '\061', '\012',
'\172', '\130', '\142', '\040', '\163', '\172', '\040', '\061',
'\012', '\116', '\172', '\144', '\040', '\144', '\145', '\040',
'\061', '\012', '\157', '\150', '\114', '\040', '\164', '\150',
'\040', '\061', '\012', '\160', '\126', '\164', '\040', '\164',
'\150', '\040', '\061', '\012', '\132', '\163', '\170', '\040',
'\163', '\164', '\040', '\061', '\012', '\132', '\161', '\152',
'\040', '\161', '\165', '\040', '\061', '\012', '\167', '\125',
'\152', '\040', '\151', '\152', '\040', '\061', '\012', '\171',
'\152', '\103', '\040', '\151', '\152', '\040', '\061', '\012',
'\153', '\124', '\156', '\040', '\141', '\156', '\040', '\061',
'\012', '\166', '\161', '\126', '\040', '\161', '\165', '\040',
'\061', '\012', '\106', '\171', '\143', '\040', '\143', '\150',
'\040', '\061', '\012', '\111', '\143', '\144', '\040', '\143',
'\150', '\040', '\061', '\012', '\163', '\166', '\116', '\040',
'\163', '\164', '\040', '\061', '\012', '\112', '\152', '\166',
'\040', '\151', '\152', '\040', '\061', '\012', '\142', '\126',
'\160', '\040', '\160', '\162', '\040', '\061', '\012', '\146',
'\144', '\111', '\040', '\144', '\145', '\040', '\061', '\012',
'\156', '\142', '\130', '\040', '\141', '\156', '\040', '\061',
'\012', '\143', '\146', '\125', '\040', '\143', '\150', '\040',
'\061', '\012', '\154', '\107', '\155', '\040', '\154', '\145',
'\040', '\061', '\012', '\117', '\166', '\147', '\040', '\156',
'\147', '\040', '\061', '\012', '\172', '\104', '\143', '\040',
'\143', '\150', '\040', '\061', '\012', '\152', '\147', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\154', '\131',
'\162', '\040', '\145', '\162', '\040', '\061', '\012', '\150',
'\152', '\122', '\040', '\164', '\150', '\040', '\061', '\012',
'\161', '\120', '\155', '\040', '\161', '\165', '\040', '\061',
'\012', '\151', '\122', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\132', '\162', '\170', '\040', '\145', '\162',
'\040', '\061', '\012', '\167', '\160', '\124', '\040', '\160',
'\162', '\040', '\061', '\012', '\170', '\163', '\102', '\040',
'\163', '\164', '\040', '\061', '\012', '\161', '\170', '\124',
'\040', '\161', '\165', '\040', '\061', '\012', '\147', '\106',
'\170', '\040', '\156', '\147', '\040', '\061', '\012', '\161',
'\157', '\112', '\040', '\161', '\165', '\040', '\061', '\012',
'\163', '\155', '\104', '\040', '\163', '\164', '\040', '\061',
'\012', '\154', '\142', '\115', '\040', '\154', '\145', '\040',
'\061', '\012', '\167', '\103', '\143', '\040', '\143', '\150',
'\040', '\061', '\012', '\167', '\106', '\155', '\040', '\155',
'\145', '\040', '\061', '\012', '\130', '\154', '\166', '\040',
'\154', '\145', '\040', '\061', '\012', '\172', '\171', '\125',
'\040', '\163', '\172', '\040', '\061', '\012', '\166', '\106',
'\153', '\040', '\153', '\141', '\040', '\061', '\012', '\164',
'\152', '\122', '\040', '\164', '\150', '\040', '\061', '\012',
'\151', '\131', '\170', '\040', '\151', '\156', '\040', '\061',
'\012', '\165', '\112', '\153', '\040', '\161', '\165', '\040',
'\061', '\012', '\121', '\145', '\150', '\040', '\164', '\150',
'\040', '\061', '\012', '\130', '\162', '\166', '\040', '\145',
'\162', '\040', '\061', '\012', '\102', '\161', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\126', '\144', '\142',
'\040', '\144', '\145', '\040', '\061', '\012', '\172', '\156',
'\122', '\040', '\141', '\156', '\040', '\061', '\012', '\160',
'\155', '\114', '\040', '\155', '\145', '\040', '\061', '\012',
'\164', '\166', '\110', '\040', '\164', '\150', '\040', '\061',
'\012', '\124', '\155', '\144', '\040', '\144', '\145', '\040',
'\061', '\012', '\104', '\147', '\142', '\040', '\156', '\147',
'\040', '\061', '\012', '\157', '\172', '\117', '\040', '\157',
'\156', '\040', '\061', '\012', '\146', '\121', '\142', '\040',
'\142', '\145', '\040', '\061', '\012', '\120', '\161', '\142',
'\040', '\161', '\165', '\040', '\061', '\012', '\161', '\131',
'\156', '\040', '\141', '\156', '\040', '\061', '\012', '\170',
'\120', '\155', '\040', '\155', '\145', '\040', '\061', '\012',
'\147', '\127', '\146', '\040', '\156', '\147', '\040', '\061',
'\012', '\143', '\103', '\166', '\040', '\143', '\150', '\040',
'\061', '\012', '\161', '\145', '\120', '\040', '\161', '\165',
'\040', '\061', '\012', '\161', '\132', '\155', '\040', '\161',
'\165', '\040', '\061', '\012', '\144', '\147', '\132', '\040',
'\156', '\147', '\040', '\061', '\012', '\155', '\152', '\117',
'\040', '\151', '\152', '\040', '\061', '\012', '\147', '\103',
'\167', '\040', '\156', '\147', '\040', '\061', '\012', '\163',
'\166', '\121', '\040', '\163', '\164', '\040', '\061', '\012',
'\122', '\161', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\121', '\142', '\164', '\040', '\164', '\150', '\040',
'\061', '\012', '\114', '\153', '\152', '\040', '\151', '\152',
'\040', '\061', '\012', '\106', '\172', '\141', '\040', '\141',
'\156', '\040', '\061', '\012', '\152', '\154', '\102', '\040',
'\154', '\145', '\040', '\061', '\012', '\151', '\127', '\152',
'\040', '\151', '\156', '\040', '\061', '\012', '\132', '\170',
'\151', '\040', '\151', '\156', '\040', '\061', '\012', '\113',
'\170', '\167', '\040', '\167', '\141', '\040', '\061', '\012',
'\152', '\143', '\112', '\040', '\151', '\152', '\040', '\061',
'\012', '\165', '\103', '\146', '\040', '\161', '\165', '\040',
'\061', '\012', '\143', '\101', '\170', '\040', '\143', '\150',
'\040', '\061', '\012', '\126', '\152', '\167', '\040', '\151',
'\152', '\040', '\061', '\012', '\166', '\125', '\163', '\040',
'\163', '\164', '\040', '\061', '\012', '\115', '\156', '\161',
'\040', '\141', '\156', '\040', '\061', '\012', '\152', '\152',
'\115', '\040', '\151', '\152', '\040', '\061', '\012', '\166',
'\125', '\170', '\040', '\166', '\141', '\040', '\061', '\012',
'\165', '\132', '\162', '\040', '\161', '\165', '\040', '\061',
'\012', '\164', '\167', '\125', '\040', '\164', '\150', '\040',
'\061', '\012', '\131', '\164', '\166', '\040', '\164', '\150',
'\040', '\061', '\012', '\150', '\122', '\160', '\040', '\164',
'\150', '\040', '\061', '\012', '\153', '\172', '\126', '\040',
'\163', '\172', '\040', '\061', '\012', '\155', '\166', '\131',
'\040', '\166', '\141', '\040', '\061', '\012', '\152', '\106',
'\152', '\040', '\151', '\152', '\040', '\061', '\012', '\152',
'\102', '\160', '\040', '\151', '\152', '\040', '\061', '\012',
'\153', '\107', '\172', '\040', '\163', '\172', '\040', '\061',
'\012', '\161', '\125', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\161', '\147', '\122', '\040', '\161', '\165',
'\040', '\061', '\012', '\154', '\127', '\142', '\040', '\154',
'\145', '\040', '\061', '\012', '\167', '\167', '\120', '\040',
'\167', '\141', '\040', '\061', '\012', '\167', '\166', '\105',
'\040', '\166', '\141', '\040', '\061', '\012', '\106', '\163',
'\170', '\040', '\163', '\164', '\040', '\061', '\012', '\111',
'\172', '\170', '\040', '\163', '\172', '\040', '\061', '\012',
'\142', '\167', '\103', '\040', '\167', '\141', '\040', '\061',
'\012', '\106', '\155', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\143', '\114', '\144', '\040', '\143', '\150',
'\040', '\061', '\012', '\142', '\122', '\154', '\040', '\154',
'\145', '\040', '\061', '\012', '\151', '\130', '\146', '\040',
'\151', '\156', '\040', '\061', '\012', '\171', '\115', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\143', '\161',
'\120', '\040', '\143', '\150', '\040', '\061', '\012', '\152',
'\163', '\114', '\040', '\163', '\164', '\040', '\061', '\012',
'\152', '\111', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\167', '\165', '\107', '\040', '\161', '\165', '\040',
'\061', '\012', '\114', '\142', '\166', '\040', '\166', '\141',
'\040', '\061', '\012', '\105', '\161', '\146', '\040', '\161',
'\165', '\040', '\061', '\012', '\117', '\147', '\146', '\040',
'\156', '\147', '\040', '\061', '\012', '\153', '\107', '\166',
'\040', '\153', '\141', '\040', '\061', '\012', '\160', '\152',
'\113', '\040', '\151', '\152', '\040', '\061', '\012', '\166',
'\143', '\121', '\040', '\143', '\150', '\040', '\061', '\012',
'\130', '\172', '\150', '\040', '\164', '\150', '\040', '\061',
'\012', '\152', '\125', '\166', '\040', '\151', '\152', '\040',
'\061', '\012', '\167', '\107', '\144', '\040', '\144', '\145',
'\040', '\061', '\012', '\150', '\155', '\130', '\040', '\164',
'\150', '\040', '\061', '\012', '\171', '\161', '\155', '\040',
'\161', '\165', '\040', '\061', '\012', '\161', '\153', '\105',
'\040', '\161', '\165', '\040', '\061', '\012', '\172', '\147',
'\130', '\040', '\156', '\147', '\040', '\061', '\012', '\166',
'\167', '\117', '\040', '\166', '\141', '\040', '\061', '\012',
'\167', '\155', '\123', '\040', '\155', '\145', '\040', '\061',
'\012', '\166', '\150', '\124', '\040', '\164', '\150', '\040',
'\061', '\012', '\163', '\171', '\130', '\040', '\163', '\164',
'\040', '\061', '\012', '\156', '\142', '\103', '\040', '\141',
'\156', '\040', '\061', '\012', '\172', '\147', '\127', '\040',
'\156', '\147', '\040', '\061', '\012', '\166', '\161', '\115',
'\040', '\161', '\165', '\040', '\061', '\012', '\144', '\127',
'\146', '\040', '\144', '\145', '\040', '\061', '\012', '\143',
'\167', '\106', '\040', '\143', '\150', '\040', '\061', '\012',
'\144', '\156', '\106', '\040', '\141', '\156', '\040', '\061',
'\012', '\161', '\104', '\151', '\040', '\161', '\165', '\040',
'\061', '\012', '\161', '\123', '\167', '\040', '\161', '\165',
'\040', '\061', '\012', '\152', '\121', '\146', '\040', '\151',
'\152', '\040', '\061', '\012', '\143', '\162', '\132', '\040',
'\143', '\150', '\040', '\061', '\012', '\161', '\107', '\154',
'\040', '\161', '\165', '\040', '\061', '\012', '\127', '\170',
'\165', '\040', '\161', '\165', '\040', '\061', '\012', '\147',
'\162', '\127', '\040', '\156', '\147', '\040', '\061', '\012',
'\147', '\154', '\130', '\040', '\156', '\147', '\040', '\061',
'\012', '\166', '\106', '\144', '\040', '\144', '\145', '\040',
'\061', '\012', '\160', '\142', '\106', '\040', '\160', '\162',
'\040', '\061', '\012', '\142', '\116', '\146', '\040', '\142',
'\145', '\040', '\061', '\012', '\121', '\143', '\146', '\040',
'\143', '\150', '\040', '\061', '\012', '\146', '\126', '\170',
'\040', '\146', '\157', '\040', '\061', '\012', '\160', '\120',
'\146', '\040', '\160', '\162', '\040', '\061', '\012', '\160',
'\126', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\170', '\154', '\107', '\040', '\154', '\145', '\040', '\061',
'\012', '\104', '\167', '\152', '\040', '\151', '\152', '\040',
'\061', '\012', '\170', '\121', '\152', '\040', '\151', '\152',
'\040', '\061', '\012', '\154', '\153', '\121', '\040', '\154',
'\145', '\040', '\061', '\012', '\163', '\161', '\110', '\040',
'\161', '\165', '\040', '\061', '\012', '\131', '\171', '\170',
'\040', '\156', '\171', '\040', '\061', '\012', '\166', '\106',
'\155', '\040', '\166', '\141', '\040', '\061', '\012', '\164',
'\121', '\157', '\040', '\164', '\150', '\040', '\061', '\012',
'\172', '\154', '\125', '\040', '\154', '\145', '\040', '\061',
'\012', '\166', '\154', '\127', '\040', '\154', '\145', '\040',
'\061', '\012', '\147', '\154', '\127', '\040', '\156', '\147',
'\040', '\061', '\012', '\161', '\155', '\127', '\040', '\161',
'\165', '\040', '\061', '\012', '\141', '\127', '\154', '\040',
'\141', '\156', '\040', '\061', '\012', '\172', '\155', '\126',
'\040', '\163', '\172', '\040', '\061', '\012', '\147', '\114',
'\155', '\040', '\156', '\147', '\040', '\061', '\012', '\147',
'\154', '\102', '\040', '\156', '\147', '\040', '\061', '\012',
'\164', '\161', '\101', '\040', '\164', '\150', '\040', '\061',
'\012', '\150', '\147', '\112', '\040', '\164', '\150', '\040',
'\061', '\012', '\143', '\107', '\142', '\040', '\143', '\150',
'\040', '\061', '\012', '\161', '\167', '\105', '\040', '\161',
'\165', '\040', '\061', '\012', '\106', '\146', '\171', '\040',
'\156', '\171', '\040', '\061', '\012', '\167', '\155', '\114',
'\040', '\155', '\145', '\040', '\061', '\012', '\170', '\114',
'\150', '\040', '\164', '\150', '\040', '\061', '\012', '\163',
'\142', '\105', '\040', '\163', '\164', '\040', '\061', '\012',
'\142', '\121', '\154', '\040', '\154', '\145', '\040', '\061',
'\012', '\170', '\153', '\122', '\040', '\153', '\141', '\040',
'\061', '\012', '\171', '\106', '\144', '\040', '\144', '\145',
'\040', '\061', '\012', '\117', '\155', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\130', '\146', '\152', '\040',
'\151', '\152', '\040', '\061', '\012', '\167', '\112', '\152',
'\040', '\151', '\152', '\040', '\061', '\012', '\114', '\167',
'\163', '\040', '\163', '\164', '\040', '\061', '\012', '\167',
'\146', '\125', '\040', '\167', '\141', '\040', '\061', '\012',
'\172', '\146', '\153', '\040', '\163', '\172', '\040', '\061',
'\012', '\154', '\116', '\166', '\040', '\154', '\145', '\040',
'\061', '\012', '\171', '\153', '\121', '\040', '\153', '\141',
'\040', '\061', '\012', '\170', '\104', '\164', '\040', '\164',
'\150', '\040', '\061', '\012', '\152', '\104', '\167', '\040',
'\151', '\152', '\040', '\061', '\012', '\172', '\142', '\170',
'\040', '\163', '\172', '\040', '\061', '\012', '\166', '\121',
'\163', '\040', '\163', '\164', '\040', '\061', '\012', '\166',
'\166', '\115', '\040', '\166', '\141', '\040', '\061', '\012',
'\130', '\161', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\152', '\114', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\172', '\153', '\132', '\040', '\163', '\172',
'\040', '\061', '\012', '\161', '\101', '\147', '\040', '\161',
'\165', '\040', '\061', '\012', '\130', '\152', '\167', '\040',
'\151', '\152', '\040', '\061', '\012', '\143', '\106', '\167',
'\040', '\143', '\150', '\040', '\061', '\012', '\162', '\167',
'\121', '\040', '\145', '\162', '\040', '\061', '\012', '\155',
'\127', '\153', '\040', '\153', '\141', '\040', '\061', '\012',
'\131', '\162', '\170', '\040', '\145', '\162', '\040', '\061',
'\012', '\145', '\125', '\157', '\040', '\145', '\162', '\040',
'\061', '\012', '\165', '\104', '\155', '\040', '\161', '\165',
'\040', '\061', '\012', '\115', '\150', '\167', '\040', '\164',
'\150', '\040', '\061', '\012', '\146', '\107', '\160', '\040',
'\160', '\162', '\040', '\061', '\012', '\122', '\160', '\172',
'\040', '\163', '\172', '\040', '\061', '\012', '\163', '\142',
'\106', '\040', '\163', '\164', '\040', '\061', '\012', '\156',
'\146', '\130', '\040', '\141', '\156', '\040', '\061', '\012',
'\127', '\146', '\165', '\040', '\161', '\165', '\040', '\061',
'\012', '\115', '\167', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\161', '\104', '\152', '\040', '\161', '\165',
'\040', '\061', '\012', '\127', '\160', '\167', '\040', '\160',
'\162', '\040', '\061', '\012', '\172', '\106', '\166', '\040',
'\163', '\172', '\040', '\061', '\012', '\161', '\130', '\143',
'\040', '\143', '\150', '\040', '\061', '\012', '\161', '\163',
'\124', '\040', '\161', '\165', '\040', '\061', '\012', '\160',
'\132', '\150', '\040', '\164', '\150', '\040', '\061', '\012',
'\154', '\114', '\143', '\040', '\143', '\150', '\040', '\061',
'\012', '\160', '\161', '\102', '\040', '\161', '\165', '\040',
'\061', '\012', '\130', '\152', '\157', '\040', '\157', '\156',
'\040', '\061', '\012', '\153', '\104', '\153', '\040', '\153',
'\141', '\040', '\061', '\012', '\112', '\170', '\146', '\040',
'\146', '\157', '\040', '\061', '\012', '\126', '\161', '\172',
'\040', '\161', '\165', '\040', '\061', '\012', '\110', '\166',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\132',
'\161', '\167', '\040', '\161', '\165', '\040', '\061', '\012',
'\153', '\122', '\143', '\040', '\143', '\150', '\040', '\061',
'\012', '\164', '\166', '\122', '\040', '\164', '\150', '\040',
'\061', '\012', '\144', '\116', '\170', '\040', '\144', '\145',
'\040', '\061', '\012', '\152', '\127', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\156', '\122', '\167', '\040',
'\141', '\156', '\040', '\061', '\012', '\162', '\107', '\142',
'\040', '\145', '\162', '\040', '\061', '\012', '\166', '\132',
'\172', '\040', '\163', '\172', '\040', '\061', '\012', '\130',
'\164', '\172', '\040', '\164', '\150', '\040', '\061', '\012',
'\153', '\132', '\156', '\040', '\141', '\156', '\040', '\061',
'\012', '\126', '\155', '\152', '\040', '\151', '\152', '\040',
'\061', '\012', '\144', '\115', '\160', '\040', '\144', '\145',
'\040', '\061', '\012', '\143', '\120', '\171', '\040', '\143',
'\150', '\040', '\061', '\012', '\165', '\172', '\122', '\040',
'\161', '\165', '\040', '\061', '\012', '\171', '\152', '\105',
'\040', '\151', '\152', '\040', '\061', '\012', '\147', '\172',
'\106', '\040', '\156', '\147', '\040', '\061', '\012', '\164',
'\103', '\160', '\040', '\164', '\150', '\040', '\061', '\012',
'\161', '\146', '\103', '\040', '\161', '\165', '\040', '\061',
'\012', '\166', '\143', '\161', '\040', '\143', '\150', '\040',
'\061', '\012', '\132', '\146', '\147', '\040', '\156', '\147',
'\040', '\061', '\012', '\153', '\167', '\103', '\040', '\153',
'\141', '\040', '\061', '\012', '\146', '\153', '\115', '\040',
'\153', '\157', '\040', '\061', '\012', '\166', '\112', '\150',
'\040', '\164', '\150', '\040', '\061', '\012', '\145', '\103',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\167',
'\120', '\160', '\040', '\160', '\162', '\040', '\061', '\012',
'\161', '\112', '\171', '\040', '\161', '\165', '\040', '\061',
'\012', '\144', '\155', '\131', '\040', '\144', '\145', '\040',
'\061', '\012', '\165', '\115', '\152', '\040', '\161', '\165',
'\040', '\061', '\012', '\146', '\113', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\163', '\161', '\125', '\040',
'\161', '\165', '\040', '\061', '\012', '\166', '\116', '\160',
'\040', '\166', '\141', '\040', '\061', '\012', '\103', '\162',
'\152', '\040', '\145', '\162', '\040', '\061', '\012', '\150',
'\163', '\110', '\040', '\164', '\150', '\040', '\061', '\012',
'\126', '\167', '\156', '\040', '\141', '\156', '\040', '\061',
'\012', '\123', '\144', '\171', '\040', '\144', '\145', '\040',
'\061', '\012', '\106', '\160', '\167', '\040', '\160', '\162',
'\040', '\061', '\012', '\127', '\143', '\161', '\040', '\143',
'\150', '\040', '\061', '\012', '\160', '\152', '\127', '\040',
'\151', '\152', '\040', '\061', '\012', '\144', '\167', '\127',
'\040', '\144', '\145', '\040', '\061', '\012', '\147', '\152',
'\130', '\040', '\156', '\147', '\040', '\061', '\012', '\171',
'\132', '\153', '\040', '\153', '\141', '\040', '\061', '\012',
'\143', '\113', '\147', '\040', '\143', '\150', '\040', '\061',
'\012', '\170', '\144', '\122', '\040', '\144', '\145', '\040',
'\061', '\012', '\167', '\161', '\127', '\040', '\161', '\165',
'\040', '\061', '\012', '\153', '\150', '\104', '\040', '\164',
'\150', '\040', '\061', '\012', '\166', '\147', '\107', '\040',
'\156', '\147', '\040', '\061', '\012', '\166', '\115', '\154',
'\040', '\154', '\145', '\040', '\061', '\012', '\161', '\156',
'\121', '\040', '\141', '\156', '\040', '\061', '\012', '\150',
'\112', '\164', '\040', '\164', '\150', '\040', '\061', '\012',
'\146', '\166', '\103', '\040', '\166', '\141', '\040', '\061',
'\012', '\143', '\160', '\122', '\040', '\143', '\150', '\040',
'\061', '\012', '\127', '\164', '\164', '\040', '\164', '\150',
'\040', '\061', '\012', '\165', '\171', '\130', '\040', '\161',
'\165', '\040', '\061', '\012', '\143', '\130', '\146', '\040',
'\143', '\150', '\040', '\061', '\012', '\165', '\113', '\166',
'\040', '\161', '\165', '\040', '\061', '\012', '\147', '\126',
'\166', '\040', '\156', '\147', '\040', '\061', '\012', '\170',
'\172', '\147', '\040', '\156', '\147', '\040', '\061', '\012',
'\143', '\120', '\161', '\040', '\143', '\150', '\040', '\061',
'\012', '\146', '\124', '\156', '\040', '\141', '\156', '\040',
'\061', '\012', '\163', '\106', '\152', '\040', '\163', '\164',
'\040', '\061', '\012', '\155', '\172', '\130', '\040', '\163',
'\172', '\040', '\061', '\012', '\147', '\115', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\162', '\170', '\111',
'\040', '\145', '\162', '\040', '\061', '\012', '\145', '\131',
'\146', '\040', '\145', '\162', '\040', '\061', '\012', '\153',
'\167', '\102', '\040', '\153', '\141', '\040', '\061', '\012',
'\145', '\121', '\153', '\040', '\145', '\162', '\040', '\061',
'\012', '\152', '\102', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\154', '\142', '\110', '\040', '\154', '\145',
'\040', '\061', '\012', '\161', '\103', '\164', '\040', '\164',
'\150', '\040', '\061', '\012', '\127', '\156', '\166', '\040',
'\141', '\156', '\040', '\061', '\012', '\147', '\131', '\144',
'\040', '\156', '\147', '\040', '\061', '\012', '\132', '\170',
'\145', '\040', '\145', '\162', '\040', '\061', '\012', '\146',
'\132', '\152', '\040', '\151', '\152', '\040', '\061', '\012',
'\110', '\147', '\152', '\040', '\156', '\147', '\040', '\061',
'\012', '\142', '\122', '\152', '\040', '\151', '\152', '\040',
'\061', '\012', '\146', '\160', '\122', '\040', '\160', '\162',
'\040', '\061', '\012', '\143', '\142', '\122', '\040', '\143',
'\150', '\040', '\061', '\012', '\154', '\161', '\124', '\040',
'\161', '\165', '\040', '\061', '\012', '\143', '\115', '\164',
'\040', '\164', '\150', '\040', '\061', '\012', '\164', '\121',
'\171', '\040', '\164', '\157', '\040', '\061', '\012', '\166',
'\170', '\107', '\040', '\166', '\141', '\040', '\061', '\012',
'\147', '\160', '\102', '\040', '\156', '\147', '\040', '\061',
'\012', '\107', '\153', '\167', '\040', '\153', '\141', '\040',
'\061', '\012', '\172', '\161', '\130', '\040', '\161', '\165',
'\040', '\061', '\012', '\164', '\120', '\167', '\040', '\164',
'\150', '\040', '\061', '\012', '\146', '\156', '\116', '\040',
'\141', '\156', '\040', '\061', '\012', '\107', '\153', '\160',
'\040', '\153', '\141', '\040', '\061', '\012', '\155', '\166',
'\121', '\040', '\166', '\141', '\040', '\061', '\012', '\150',
'\110', '\146', '\040', '\164', '\150', '\040', '\061', '\012',
'\167', '\146', '\123', '\040', '\167', '\141', '\040', '\061',
'\012', '\161', '\103', '\170', '\040', '\161', '\165', '\040',
'\061', '\012', '\155', '\161', '\110', '\040', '\161', '\165',
'\040', '\061', '\012', '\150', '\147', '\122', '\040', '\164',
'\150', '\040', '\061', '\012', '\115', '\167', '\147', '\040',
'\156', '\147', '\040', '\061', '\012', '\142', '\161', '\121',
'\040', '\161', '\165', '\040', '\061', '\012', '\106', '\153',
'\172', '\040', '\163', '\172', '\040', '\061', '\012', '\157',
'\106', '\166', '\040', '\157', '\156', '\040', '\061', '\012',
'\104', '\144', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\165', '\111', '\157', '\040', '\161', '\165', '\040',
'\061', '\012', '\131', '\146', '\150', '\040', '\164', '\150',
'\040', '\061', '\012', '\171', '\147', '\121', '\040', '\156',
'\147', '\040', '\061', '\012', '\146', '\170', '\150', '\040',
'\164', '\150', '\040', '\061', '\012', '\132', '\161', '\144',
'\040', '\161', '\165', '\040', '\061', '\012', '\110', '\164',
'\156', '\040', '\164', '\150', '\040', '\061', '\012', '\107',
'\166', '\172', '\040', '\163', '\172', '\040', '\061', '\012',
'\172', '\122', '\167', '\040', '\163', '\172', '\040', '\061',
'\012', '\166', '\103', '\142', '\040', '\166', '\141', '\040',
'\061', '\012', '\162', '\152', '\124', '\040', '\162', '\157',
'\040', '\061', '\012', '\162', '\152', '\104', '\040', '\145',
'\162', '\040', '\061', '\012', '\121', '\160', '\155', '\040',
'\155', '\145', '\040', '\061', '\012', '\130', '\144', '\142',
'\040', '\144', '\145', '\040', '\061', '\012', '\114', '\153',
'\146', '\040', '\153', '\141', '\040', '\061', '\012', '\101',
'\152', '\170', '\040', '\151', '\152', '\040', '\061', '\012',
'\131', '\154', '\172', '\040', '\154', '\145', '\040', '\061',
'\012', '\121', '\164', '\142', '\040', '\164', '\150', '\040',
'\061', '\012', '\142', '\110', '\172', '\040', '\163', '\172',
'\040', '\061', '\012', '\142', '\104', '\147', '\040', '\156',
'\147', '\040', '\061', '\012', '\114', '\161', '\170', '\040',
'\161', '\165', '\040', '\061', '\012', '\171', '\150', '\127',
'\040', '\164', '\150', '\040', '\061', '\012', '\172', '\114',
'\166', '\040', '\163', '\172', '\040', '\061', '\012', '\170',
'\147', '\113', '\040', '\156', '\147', '\040', '\061', '\012',
'\145', '\127', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\163', '\152', '\123', '\040', '\163', '\164', '\040',
'\061', '\012', '\161', '\126', '\145', '\040', '\161', '\165',
'\040', '\061', '\012', '\117', '\153', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\105', '\167', '\152', '\040',
'\151', '\152', '\040', '\061', '\012', '\104', '\163', '\166',
'\040', '\163', '\164', '\040', '\061', '\012', '\152', '\150',
'\111', '\040', '\164', '\150', '\040', '\061', '\012', '\170',
'\107', '\146', '\040', '\146', '\157', '\040', '\061', '\012',
'\117', '\153', '\170', '\040', '\153', '\141', '\040', '\061',
'\012', '\106', '\161', '\170', '\040', '\161', '\165', '\040',
'\061', '\012', '\144', '\120', '\166', '\040', '\144', '\145',
'\040', '\061', '\012', '\172', '\163', '\113', '\040', '\163',
'\164', '\040', '\061', '\012', '\161', '\114', '\156', '\040',
'\141', '\156', '\040', '\061', '\012', '\146', '\153', '\102',
'\040', '\153', '\141', '\040', '\061', '\012', '\143', '\103',
'\142', '\040', '\143', '\150', '\040', '\061', '\012', '\147',
'\116', '\160', '\040', '\156', '\147', '\040', '\061', '\012',
'\121', '\167', '\144', '\040', '\144', '\145', '\040', '\061',
'\012', '\172', '\124', '\146', '\040', '\163', '\172', '\040',
'\061', '\012', '\120', '\161', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\162', '\106', '\166', '\040', '\162',
'\157', '\040', '\061', '\012', '\122', '\167', '\164', '\040',
'\164', '\150', '\040', '\061', '\012', '\165', '\113', '\143',
'\040', '\143', '\150', '\040', '\061', '\012', '\150', '\161',
'\116', '\040', '\164', '\150', '\040', '\061', '\012', '\153',
'\155', '\113', '\040', '\153', '\141', '\040', '\061', '\012',
'\167', '\165', '\103', '\040', '\161', '\165', '\040', '\061',
'\012', '\160', '\156', '\132', '\040', '\141', '\156', '\040',
'\061', '\012', '\164', '\147', '\115', '\040', '\164', '\150',
'\040', '\061', '\012', '\121', '\144', '\163', '\040', '\163',
'\164', '\040', '\061', '\012', '\101', '\170', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\170', '\167', '\117',
'\040', '\167', '\141', '\040', '\061', '\012', '\145', '\121',
'\147', '\040', '\156', '\147', '\040', '\061', '\012', '\155',
'\106', '\152', '\040', '\151', '\152', '\040', '\061', '\012',
'\104', '\160', '\155', '\040', '\155', '\145', '\040', '\061',
'\012', '\160', '\121', '\155', '\040', '\155', '\145', '\040',
'\061', '\012', '\141', '\106', '\160', '\040', '\141', '\156',
'\040', '\061', '\012', '\155', '\146', '\102', '\040', '\155',
'\145', '\040', '\061', '\012', '\146', '\160', '\101', '\040',
'\160', '\162', '\040', '\061', '\012', '\152', '\147', '\132',
'\040', '\156', '\147', '\040', '\061', '\012', '\154', '\107',
'\153', '\040', '\154', '\145', '\040', '\061', '\012', '\170',
'\143', '\101', '\040', '\143', '\150', '\040', '\061', '\012',
'\147', '\127', '\167', '\040', '\156', '\147', '\040', '\061',
'\012', '\154', '\172', '\106', '\040', '\154', '\145', '\040',
'\061', '\012', '\170', '\163', '\121', '\040', '\163', '\164',
'\040', '\061', '\012', '\142', '\121', '\170', '\040', '\142',
'\145', '\040', '\061', '\012', '\167', '\152', '\143', '\040',
'\143', '\150', '\040', '\061', '\012', '\142', '\104', '\143',
'\040', '\143', '\150', '\040', '\061', '\012', '\127', '\160',
'\172', '\040', '\163', '\172', '\040', '\061', '\012', '\162',
'\146', '\126', '\040', '\145', '\162', '\040', '\061', '\012',
'\132', '\142', '\163', '\040', '\163', '\164', '\040', '\061',
'\012', '\150', '\113', '\161', '\040', '\164', '\150', '\040',
'\061', '\012', '\161', '\130', '\141', '\040', '\141', '\162',
'\040', '\061', '\012', '\167', '\152', '\101', '\040', '\151',
'\152', '\040', '\061', '\012', '\166', '\172', '\123', '\040',
'\163', '\172', '\040', '\061', '\012', '\143', '\127', '\171',
'\040', '\143', '\150', '\040', '\061', '\012', '\147', '\152',
'\113', '\040', '\156', '\147', '\040', '\061', '\012', '\171',
'\122', '\142', '\040', '\142', '\145', '\040', '\061', '\012',
'\161', '\147', '\125', '\040', '\161', '\165', '\040', '\061',
'\012', '\160', '\161', '\106', '\040', '\161', '\165', '\040',
'\061', '\012', '\161', '\156', '\125', '\040', '\141', '\156',
'\040', '\061', '\012', '\132', '\161', '\143', '\040', '\143',
'\150', '\040', '\061', '\012', '\130', '\161', '\147', '\040',
'\161', '\165', '\040', '\061', '\012', '\172', '\114', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\147', '\172',
'\126', '\040', '\156', '\147', '\040', '\061', '\012', '\113',
'\161', '\163', '\040', '\161', '\165', '\040', '\061', '\012',
'\172', '\147', '\132', '\040', '\156', '\147', '\040', '\061',
'\012', '\152', '\161', '\107', '\040', '\161', '\165', '\040',
'\061', '\012', '\160', '\161', '\112', '\040', '\161', '\165',
'\040', '\061', '\012', '\111', '\145', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\150', '\152', '\110', '\040',
'\164', '\150', '\040', '\061', '\012', '\166', '\155', '\116',
'\040', '\166', '\141', '\040', '\061', '\012', '\151', '\165',
'\106', '\040', '\161', '\165', '\040', '\061', '\012', '\167',
'\107', '\171', '\040', '\167', '\141', '\040', '\061', '\012',
'\113', '\144', '\150', '\040', '\164', '\150', '\040', '\061',
'\012', '\150', '\121', '\142', '\040', '\164', '\150', '\040',
'\061', '\012', '\152', '\127', '\162', '\040', '\145', '\162',
'\040', '\061', '\012', '\103', '\170', '\171', '\040', '\156',
'\171', '\040', '\061', '\012', '\113', '\161', '\172', '\040',
'\161', '\165', '\040', '\061', '\012', '\167', '\130', '\162',
'\040', '\145', '\162', '\040', '\061', '\012', '\170', '\157',
'\121', '\040', '\157', '\156', '\040', '\061', '\012', '\167',
'\102', '\150', '\040', '\164', '\150', '\040', '\061', '\012',
'\161', '\171', '\111', '\040', '\161', '\165', '\040', '\061',
'\012', '\161', '\150', '\103', '\040', '\164', '\150', '\040',
'\061', '\012', '\126', '\160', '\171', '\040', '\160', '\162',
'\040', '\061', '\012', '\156', '\112', '\142', '\040', '\141',
'\156', '\040', '\061', '\012', '\165', '\107', '\167', '\040',
'\161', '\165', '\040', '\061', '\012', '\150', '\150', '\130',
'\040', '\164', '\150', '\040', '\061', '\012', '\155', '\152',
'\123', '\040', '\151', '\152', '\040', '\061', '\012', '\123',
'\143', '\166', '\040', '\143', '\150', '\040', '\061', '\012',
'\150', '\106', '\167', '\040', '\164', '\150', '\040', '\061',
'\012', '\142', '\113', '\147', '\040', '\156', '\147', '\040',
'\061', '\012', '\130', '\155', '\156', '\040', '\141', '\156',
'\040', '\061', '\012', '\142', '\144', '\124', '\040', '\144',
'\145', '\040', '\061', '\012', '\163', '\112', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\170', '\124', '\155',
'\040', '\155', '\145', '\040', '\061', '\012', '\161', '\152',
'\172', '\040', '\161', '\165', '\040', '\061', '\012', '\115',
'\161', '\160', '\040', '\161', '\165', '\040', '\061', '\012',
'\144', '\110', '\160', '\040', '\144', '\145', '\040', '\061',
'\012', '\162', '\122', '\156', '\040', '\141', '\162', '\040',
'\061', '\012', '\130', '\154', '\146', '\040', '\154', '\145',
'\040', '\061', '\012', '\143', '\116', '\163', '\040', '\143',
'\150', '\040', '\061', '\012', '\130', '\161', '\154', '\040',
'\161', '\165', '\040', '\061', '\012', '\151', '\106', '\172',
'\040', '\151', '\156', '\040', '\061', '\012', '\116', '\154',
'\153', '\040', '\154', '\145', '\040', '\061', '\012', '\163',
'\120', '\167', '\040', '\163', '\164', '\040', '\061', '\012',
'\166', '\127', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\167', '\130', '\164', '\040', '\164', '\150', '\040',
'\061', '\012', '\106', '\156', '\161', '\040', '\141', '\156',
'\040', '\061', '\012', '\157', '\172', '\112', '\040', '\157',
'\156', '\040', '\061', '\012', '\172', '\111', '\147', '\040',
'\156', '\147', '\040', '\061', '\012', '\154', '\123', '\146',
'\040', '\154', '\145', '\040', '\061', '\012', '\167', '\122',
'\143', '\040', '\143', '\150', '\040', '\061', '\012', '\102',
'\166', '\160', '\040', '\166', '\141', '\040', '\061', '\012',
'\127', '\167', '\162', '\040', '\145', '\162', '\040', '\061',
'\012', '\160', '\127', '\147', '\040', '\160', '\162', '\040',
'\061', '\012', '\160', '\114', '\153', '\040', '\153', '\141',
'\040', '\061', '\012', '\153', '\162', '\112', '\040', '\145',
'\162', '\040', '\061', '\012', '\132', '\146', '\166', '\040',
'\166', '\141', '\040', '\061', '\012', '\171', '\111', '\170',
'\040', '\156', '\171', '\040', '\061', '\012', '\157', '\113',
'\170', '\040', '\157', '\156', '\040', '\061', '\012', '\161',
'\114', '\142', '\040', '\161', '\165', '\040', '\061', '\012',
'\144', '\110', '\152', '\040', '\144', '\145', '\040', '\061',
'\012', '\157', '\161', '\113', '\040', '\161', '\165', '\040',
'\061', '\012', '\143', '\170', '\103', '\040', '\143', '\150',
'\040', '\061', '\012', '\167', '\112', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\167', '\132', '\144', '\040',
'\144', '\145', '\040', '\061', '\012', '\143', '\127', '\172',
'\040', '\143', '\150', '\040', '\061', '\012', '\171', '\161',
'\123', '\040', '\161', '\165', '\040', '\061', '\012', '\153',
'\130', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\146', '\131', '\144', '\040', '\144', '\145', '\040', '\061',
'\012', '\144', '\107', '\171', '\040', '\144', '\145', '\040',
'\061', '\012', '\144', '\104', '\164', '\040', '\164', '\150',
'\040', '\061', '\012', '\160', '\113', '\147', '\040', '\156',
'\147', '\040', '\061', '\012', '\130', '\152', '\144', '\040',
'\144', '\145', '\040', '\061', '\012', '\163', '\152', '\115',
'\040', '\163', '\164', '\040', '\061', '\012', '\163', '\146',
'\103', '\040', '\163', '\164', '\040', '\061', '\012', '\144',
'\115', '\150', '\040', '\164', '\150', '\040', '\061', '\012',
'\144', '\132', '\160', '\040', '\144', '\145', '\040', '\061',
'\012', '\167', '\143', '\104', '\040', '\143', '\150', '\040',
'\061', '\012', '\121', '\157', '\152', '\040', '\157', '\156',
'\040', '\061', '\012', '\147', '\170', '\103', '\040', '\156',
'\147', '\040', '\061', '\012', '\132', '\146', '\156', '\040',
'\141', '\156', '\040', '\061', '\012', '\150', '\131', '\166',
'\040', '\164', '\150', '\040', '\061', '\012', '\170', '\127',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\147',
'\132', '\167', '\040', '\156', '\147', '\040', '\061', '\012',
'\160', '\121', '\151', '\040', '\151', '\156', '\040', '\061',
'\012', '\130', '\154', '\142', '\040', '\154', '\145', '\040',
'\061', '\012', '\147', '\121', '\172', '\040', '\156', '\147',
'\040', '\061', '\012', '\156', '\142', '\132', '\040', '\141',
'\156', '\040', '\061', '\012', '\105', '\172', '\170', '\040',
'\163', '\172', '\040', '\061', '\012', '\167', '\116', '\147',
'\040', '\156', '\147', '\040', '\061', '\012', '\130', '\162',
'\152', '\040', '\145', '\162', '\040', '\061', '\012', '\143',
'\170', '\130', '\040', '\143', '\150', '\040', '\061', '\012',
'\144', '\121', '\160', '\040', '\144', '\145', '\040', '\061',
'\012', '\131', '\160', '\156', '\040', '\141', '\156', '\040',
'\061', '\012', '\160', '\116', '\160', '\040', '\160', '\162',
'\040', '\061', '\012', '\160', '\142', '\121', '\040', '\160',
'\162', '\040', '\061', '\012', '\147', '\115', '\166', '\040',
'\156', '\147', '\040', '\061', '\012', '\161', '\145', '\106',
'\040', '\161', '\165', '\040', '\061', '\012', '\165', '\126',
'\166', '\040', '\161', '\165', '\040', '\061', '\012', '\144',
'\126', '\153', '\040', '\144', '\145', '\040', '\061', '\012',
'\165', '\115', '\166', '\040', '\161', '\165', '\040', '\061',
'\012', '\152', '\121', '\156', '\040', '\141', '\156', '\040',
'\061', '\012', '\155', '\150', '\120', '\040', '\164', '\150',
'\040', '\061', '\012', '\151', '\124', '\142', '\040', '\151',
'\156', '\040', '\061', '\012', '\120', '\166', '\167', '\040',
'\166', '\141', '\040', '\061', '\012', '\172', '\103', '\167',
'\040', '\163', '\172', '\040', '\061', '\012', '\167', '\143',
'\122', '\040', '\143', '\150', '\040', '\061', '\012', '\163',
'\166', '\125', '\040', '\163', '\164', '\040', '\061', '\012',
'\156', '\115', '\172', '\040', '\141', '\156', '\040', '\061',
'\012', '\143', '\152', '\105', '\040', '\143', '\150', '\040',
'\061', '\012', '\152', '\155', '\110', '\040', '\151', '\152',
'\040', '\061', '\012', '\121', '\172', '\143', '\040', '\143',
'\150', '\040', '\061', '\012', '\155', '\161', '\143', '\040',
'\143', '\150', '\040', '\061', '\012', '\161', '\154', '\125',
'\040', '\161', '\165', '\040', '\061', '\012', '\132', '\166',
'\160', '\040', '\166', '\141', '\040', '\061', '\012', '\170',
'\110', '\154', '\040', '\154', '\145', '\040', '\061', '\012',
'\147', '\161', '\102', '\040', '\161', '\165', '\040', '\061',
'\012', '\170', '\163', '\116', '\040', '\163', '\164', '\040',
'\061', '\012', '\153', '\103', '\152', '\040', '\151', '\152',
'\040', '\061', '\012', '\117', '\154', '\170', '\040', '\154',
'\145', '\040', '\061', '\012', '\107', '\170', '\167', '\040',
'\167', '\141', '\040', '\061', '\012', '\170', '\167', '\126',
'\040', '\167', '\141', '\040', '\061', '\012', '\146', '\120',
'\142', '\040', '\142', '\145', '\040', '\061', '\012', '\122',
'\150', '\166', '\040', '\164', '\150', '\040', '\061', '\012',
'\160', '\147', '\126', '\040', '\156', '\147', '\040', '\061',
'\012', '\121', '\144', '\160', '\040', '\144', '\145', '\040',
'\061', '\012', '\172', '\106', '\163', '\040', '\163', '\164',
'\040', '\061', '\012', '\153', '\154', '\121', '\040', '\154',
'\145', '\040', '\061', '\012', '\171', '\112', '\144', '\040',
'\144', '\145', '\040', '\061', '\012', '\162', '\170', '\105',
'\040', '\145', '\162', '\040', '\061', '\012', '\165', '\110',
'\166', '\040', '\161', '\165', '\040', '\061', '\012', '\167',
'\113', '\154', '\040', '\154', '\145', '\040', '\061', '\012',
'\167', '\160', '\112', '\040', '\160', '\162', '\040', '\061',
'\012', '\103', '\152', '\162', '\040', '\145', '\162', '\040',
'\061', '\012', '\164', '\131', '\147', '\040', '\164', '\150',
'\040', '\061', '\012', '\126', '\160', '\172', '\040', '\163',
'\172', '\040', '\061', '\012', '\132', '\170', '\150', '\040',
'\164', '\150', '\040', '\061', '\012', '\160', '\121', '\154',
'\040', '\154', '\145', '\040', '\061', '\012', '\106', '\170',
'\145', '\040', '\145', '\162', '\040', '\061', '\012', '\121',
'\157', '\153', '\040', '\157', '\156', '\040', '\061', '\012',
'\160', '\154', '\113', '\040', '\154', '\145', '\040', '\061',
'\012', '\154', '\160', '\130', '\040', '\154', '\145', '\040',
'\061', '\012', '\152', '\144', '\120', '\040', '\144', '\145',
'\040', '\061', '\012', '\132', '\161', '\171', '\040', '\161',
'\165', '\040', '\061', '\012', '\171', '\122', '\172', '\040',
'\163', '\172', '\040', '\061', '\012', '\156', '\104', '\147',
'\040', '\141', '\156', '\040', '\061', '\012', '\153', '\161',
'\114', '\040', '\161', '\165', '\040', '\061', '\012', '\165',
'\147', '\127', '\040', '\161', '\165', '\040', '\061', '\012',
'\115', '\142', '\146', '\040', '\142', '\145', '\040', '\061',
'\012', '\113', '\161', '\154', '\040', '\161', '\165', '\040',
'\061', '\012', '\116', '\161', '\167', '\040', '\161', '\165',
'\040', '\061', '\012', '\112', '\172', '\167', '\040', '\163',
'\172', '\040', '\061', '\012', '\163', '\107', '\156', '\040',
'\141', '\156', '\040', '\061', '\012', '\167', '\104', '\166',
'\040', '\166', '\141', '\040', '\061', '\012', '\112', '\152',
'\153', '\040', '\151', '\152', '\040', '\061', '\012', '\172',
'\164', '\121', '\040', '\164', '\150', '\040', '\061', '\012',
'\150', '\167', '\120', '\040', '\164', '\150', '\040', '\061',
'\012', '\167', '\104', '\160', '\040', '\160', '\162', '\040',
'\061', '\012', '\147', '\146', '\107', '\040', '\156', '\147',
'\040', '\061', '\012', '\161', '\150', '\114', '\040', '\164',
'\150', '\040', '\061', '\012', '\143', '\125', '\166', '\040',
'\143', '\150', '\040', '\061', '\012', '\127', '\142', '\153',
'\040', '\153', '\141', '\040', '\061', '\012', '\146', '\153',
'\106', '\040', '\153', '\157', '\040', '\061', '\012', '\120',
'\161', '\166', '\040', '\161', '\165', '\040', '\061', '\012',
'\156', '\142', '\113', '\040', '\141', '\156', '\040', '\061',
'\012', '\161', '\123', '\172', '\040', '\161', '\165', '\040',
'\061', '\012', '\166', '\167', '\111', '\040', '\166', '\141',
'\040', '\061', '\012', '\143', '\106', '\143', '\040', '\143',
'\150', '\040', '\061', '\012', '\161', '\146', '\107', '\040',
'\161', '\165', '\040', '\061', '\012', '\162', '\150', '\106',
'\040', '\164', '\150', '\040', '\061', '\012', '\170', '\172',
'\154', '\040', '\154', '\145', '\040', '\061', '\012', '\144',
'\116', '\143', '\040', '\143', '\150', '\040', '\061', '\012',
'\172', '\167', '\122', '\040', '\163', '\172', '\040', '\061',
'\012', '\167', '\172', '\113', '\040', '\163', '\172', '\040',
'\061', '\012', '\142', '\121', '\141', '\040', '\141', '\156',
'\040', '\061', '\012', '\150', '\114', '\161', '\040', '\164',
'\150', '\040', '\061', '\012', '\146', '\125', '\166', '\040',
'\166', '\141', '\040', '\061', '\012', '\162', '\110', '\147',
'\040', '\156', '\147', '\040', '\061', '\012', '\165', '\112',
'\152', '\040', '\161', '\165', '\040', '\061', '\012', '\106',
'\150', '\172', '\040', '\164', '\150', '\040', '\061', '\012',
'\116', '\172', '\155', '\040', '\163', '\172', '\040', '\061',
'\012', '\147', '\122', '\172', '\040', '\156', '\147', '\040',
'\061', '\012', '\161', '\130', '\146', '\040', '\161', '\165',
'\040', '\061', '\012', '\124', '\172', '\155', '\040', '\163',
'\172', '\040', '\061', '\012', '\132', '\153', '\170', '\040',
'\153', '\141', '\040', '\061', '\012', '\150', '\114', '\170',
'\040', '\164', '\150', '\040', '\061', '\012', '\125', '\153',
'\144', '\040', '\144', '\145', '\040', '\061', '\012', '\146',
'\115', '\146', '\040', '\146', '\157', '\040', '\061', '\012',
'\166', '\107', '\160', '\040', '\166', '\141', '\040', '\061',
'\012', '\152', '\164', '\111', '\040', '\164', '\150', '\040',
'\061', '\012', '\150', '\170', '\105', '\040', '\164', '\150',
'\040', '\061', '\012', '\152', '\162', '\110', '\040', '\145',
'\162', '\040', '\061', '\012', '\106', '\147', '\150', '\040',
'\164', '\150', '\040', '\061', '\012', '\144', '\154', '\106',
'\040', '\154', '\145', '\040', '\061', '\012', '\152', '\143',
'\117', '\040', '\152', '\141', '\040', '\061', '\012', '\163',
'\103', '\167', '\040', '\163', '\164', '\040', '\061', '\012',
'\102', '\161', '\150', '\040', '\164', '\150', '\040', '\061',
'\012', '\153', '\132', '\171', '\040', '\153', '\141', '\040',
'\061', '\012', '\146', '\117', '\150', '\040', '\164', '\150',
'\040', '\061', '\012', '\162', '\112', '\142', '\040', '\145',
'\162', '\040', '\061', '\012', '\162', '\152', '\126', '\040',
'\145', '\162', '\040', '\061', '\012', '\113', '\167', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\110', '\143',
'\167', '\040', '\143', '\150', '\040', '\061', '\012', '\155',
'\103', '\167', '\040', '\155', '\141', '\040', '\061', '\012',
'\150', '\170', '\115', '\040', '\164', '\150', '\040', '\061',
'\012', '\152', '\124', '\142', '\040', '\151', '\152', '\040',
'\061', '\012', '\155', '\155', '\121', '\040', '\155', '\145',
'\040', '\061', '\012', '\160', '\152', '\122', '\040', '\151',
'\152', '\040', '\061', '\012', '\143', '\144', '\120', '\040',
'\143', '\150', '\040', '\061', '\012', '\132', '\152', '\163',
'\040', '\163', '\164', '\040', '\061', '\012', '\152', '\161',
'\106', '\040', '\161', '\165', '\040', '\061', '\012', '\166',
'\115', '\156', '\040', '\141', '\156', '\040', '\061', '\012',
'\115', '\161', '\163', '\040', '\161', '\165', '\040', '\061',
'\012', '\163', '\166', '\130', '\040', '\163', '\164', '\040',
'\061', '\012', '\151', '\130', '\156', '\040', '\141', '\156',
'\040', '\061', '\012', '\156', '\167', '\122', '\040', '\141',
'\156', '\040', '\061', '\012', '\171', '\164', '\122', '\040',
'\164', '\150', '\040', '\061', '\012', '\126', '\152', '\142',
'\040', '\151', '\152', '\040', '\061', '\012', '\103', '\152',
'\154', '\040', '\154', '\145', '\040', '\061', '\012', '\160',
'\130', '\144', '\040', '\144', '\145', '\040', '\061', '\012',
'\107', '\167', '\165', '\040', '\161', '\165', '\040', '\061',
'\012', '\161', '\111', '\152', '\040', '\161', '\165', '\040',
'\061', '\012', '\153', '\121', '\156', '\040', '\141', '\156',
'\040', '\061', '\012', '\146', '\131', '\155', '\040', '\155',
'\145', '\040', '\061', '\012', '\166', '\164', '\132', '\040',
'\164', '\150', '\040', '\061', '\012', '\125', '\163', '\170',
'\040', '\163', '\164', '\040', '\061', '\012', '\156', '\146',
'\120', '\040', '\141', '\156', '\040', '\061', '\012', '\144',
'\121', '\170', '\040', '\144', '\145', '\040', '\061', '\012',
'\157', '\130', '\146', '\040', '\157', '\156', '\040', '\061',
'\012', '\146', '\105', '\167', '\040', '\167', '\141', '\040',
'\061', '\012', '\163', '\147', '\130', '\040', '\156', '\147',
'\040', '\061', '\012', '\143', '\120', '\160', '\040', '\143',
'\150', '\040', '\061', '\012', '\171', '\142', '\127', '\040',
'\142', '\145', '\040', '\061', '\012', '\153', '\143', '\127',
'\040', '\143', '\150', '\040', '\061', '\012', '\153', '\110',
'\146', '\040', '\153', '\141', '\040', '\061', '\012', '\166',
'\143', '\125', '\040', '\143', '\150', '\040', '\061', '\012',
'\164', '\130', '\157', '\040', '\164', '\150', '\040', '\061',
'\012', '\113', '\172', '\150', '\040', '\164', '\150', '\040',
'\061', '\012', '\103', '\146', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\125', '\152', '\171', '\040', '\151',
'\152', '\040', '\061', '\012', '\106', '\170', '\141', '\040',
'\141', '\156', '\040', '\061', '\012', '\150', '\170', '\123',
'\040', '\164', '\150', '\040', '\061', '\012', '\164', '\127',
'\170', '\040', '\164', '\150', '\040', '\061', '\012', '\155',
'\154', '\113', '\040', '\154', '\145', '\040', '\061', '\012',
'\156', '\132', '\152', '\040', '\141', '\156', '\040', '\061',
'\012', '\161', '\117', '\166', '\040', '\161', '\165', '\040',
'\061', '\012', '\130', '\153', '\164', '\040', '\164', '\150',
'\040', '\061', '\012', '\106', '\172', '\146', '\040', '\163',
'\172', '\040', '\061', '\012', '\165', '\124', '\144', '\040',
'\161', '\165', '\040', '\061', '\012', '\161', '\162', '\123',
'\040', '\161', '\165', '\040', '\061', '\012', '\120', '\164',
'\167', '\040', '\164', '\150', '\040', '\061', '\012', '\144',
'\104', '\163', '\040', '\163', '\164', '\040', '\061', '\012',
'\162', '\116', '\155', '\040', '\145', '\162', '\040', '\061',
'\012', '\105', '\167', '\146', '\040', '\167', '\141', '\040',
'\061', '\012', '\150', '\112', '\153', '\040', '\164', '\150',
'\040', '\061', '\012', '\110', '\144', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\112', '\164', '\167', '\040',
'\164', '\150', '\040', '\061', '\012', '\153', '\161', '\143',
'\040', '\143', '\150', '\040', '\061', '\012', '\156', '\110',
'\161', '\040', '\141', '\156', '\040', '\061', '\012', '\162',
'\150', '\110', '\040', '\164', '\150', '\040', '\061', '\012',
'\157', '\161', '\110', '\040', '\161', '\165', '\040', '\061',
'\012', '\166', '\160', '\132', '\040', '\166', '\141', '\040',
'\061', '\012', '\104', '\147', '\144', '\040', '\156', '\147',
'\040', '\061', '\012', '\161', '\170', '\126', '\040', '\161',
'\165', '\040', '\061', '\012', '\103', '\170', '\166', '\040',
'\166', '\141', '\040', '\061', '\012', '\160', '\154', '\126',
'\040', '\160', '\162', '\040', '\061', '\012', '\153', '\111',
'\151', '\040', '\151', '\156', '\040', '\061', '\012', '\113',
'\150', '\143', '\040', '\164', '\150', '\040', '\061', '\012',
'\152', '\163', '\131', '\040', '\163', '\164', '\040', '\061',
'\012', '\146', '\114', '\150', '\040', '\164', '\150', '\040',
'\061', '\012', '\131', '\153', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\121', '\155', '\170', '\040', '\155',
'\145', '\040', '\061', '\012', '\172', '\166', '\111', '\040',
'\163', '\172', '\040', '\061', '\012', '\171', '\150', '\123',
'\040', '\164', '\150', '\040', '\061', '\012', '\161', '\146',
'\147', '\040', '\161', '\165', '\040', '\061', '\012', '\167',
'\170', '\132', '\040', '\167', '\141', '\040', '\061', '\012',
'\152', '\126', '\171', '\040', '\151', '\152', '\040', '\061',
'\012', '\153', '\121', '\167', '\040', '\153', '\141', '\040',
'\061', '\012', '\172', '\130', '\166', '\040', '\163', '\172',
'\040', '\061', '\012', '\114', '\150', '\163', '\040', '\164',
'\150', '\040', '\061', '\012', '\115', '\153', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\152', '\153', '\125',
'\040', '\151', '\152', '\040', '\061', '\012', '\131', '\150',
'\161', '\040', '\164', '\150', '\040', '\061', '\012', '\172',
'\162', '\110', '\040', '\145', '\162', '\040', '\061', '\012',
'\166', '\150', '\107', '\040', '\166', '\141', '\040', '\061',
'\012', '\144', '\162', '\104', '\040', '\145', '\162', '\040',
'\061', '\012', '\120', '\163', '\152', '\040', '\163', '\164',
'\040', '\061', '\012', '\147', '\104', '\146', '\040', '\156',
'\147', '\040', '\061', '\012', '\130', '\152', '\152', '\040',
'\151', '\152', '\040', '\061', '\012', '\160', '\114', '\155',
'\040', '\155', '\145', '\040', '\061', '\012', '\153', '\154',
'\103', '\040', '\154', '\145', '\040', '\061', '\012', '\150',
'\124', '\170', '\040', '\164', '\150', '\040', '\061', '\012',
'\172', '\162', '\112', '\040', '\145', '\162', '\040', '\061',
'\012', '\130', '\147', '\153', '\040', '\156', '\147', '\040',
'\061', '\012', '\127', '\170', '\146', '\040', '\146', '\157',
'\040', '\061', '\012', '\146', '\144', '\104', '\040', '\144',
'\145', '\040', '\061', '\012', '\152', '\110', '\160', '\040',
'\151', '\152', '\040', '\061', '\012', '\171', '\104', '\167',
'\040', '\167', '\141', '\040', '\061', '\012', '\153', '\120',
'\166', '\040', '\153', '\141', '\040', '\061', '\012', '\122',
'\153', '\155', '\040', '\153', '\141', '\040', '\061', '\012',
'\155', '\172', '\147', '\040', '\156', '\147', '\040', '\061',
'\012', '\154', '\110', '\172', '\040', '\154', '\145', '\040',
'\061', '\012', '\166', '\160', '\122', '\040', '\166', '\141',
'\040', '\061', '\012', '\167', '\132', '\164', '\040', '\164',
'\150', '\040', '\061', '\012', '\160', '\102', '\144', '\040',
'\144', '\145', '\040', '\061', '\012', '\161', '\120', '\146',
'\040', '\161', '\165', '\040', '\061', '\012', '\150', '\116',
'\167', '\040', '\164', '\150', '\040', '\061', '\012', '\116',
'\166', '\152', '\040', '\151', '\152', '\040', '\061', '\012',
'\160', '\171', '\125', '\040', '\160', '\162', '\040', '\061',
'\012', '\123', '\152', '\150', '\040', '\164', '\150', '\040',
'\061', '\012', '\113', '\172', '\170', '\040', '\163', '\172',
'\040', '\061', '\012', '\157', '\121', '\160', '\040', '\157',
'\156', '\040', '\061', '\012', '\170', '\144', '\114', '\040',
'\144', '\145', '\040', '\061', '\012', '\144', '\156', '\132',
'\040', '\141', '\156', '\040', '\061', '\012', '\161', '\146',
'\102', '\040', '\161', '\165', '\040', '\061', '\012', '\153',
'\112', '\143', '\040', '\143', '\150', '\040', '\061', '\012',
'\146', '\127', '\156', '\040', '\141', '\156', '\040', '\061',
'\012', '\130', '\155', '\143', '\040', '\143', '\150', '\040',
'\061', '\012', '\162', '\107', '\170', '\040', '\145', '\162',
'\040', '\061', '\012', '\163', '\106', '\146', '\040', '\163',
'\164', '\040', '\061', '\012', '\126', '\167', '\166', '\040',
'\166', '\141', '\040', '\061', '\012', '\164', '\113', '\144',
'\040', '\164', '\150', '\040', '\061', '\012', '\163', '\121',
'\170', '\040', '\163', '\164', '\040', '\061', '\012', '\157',
'\116', '\155', '\040', '\157', '\156', '\040', '\061', '\012',
'\165', '\130', '\152', '\040', '\161', '\165', '\040', '\061',
'\012', '\130', '\163', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\171', '\127', '\143', '\040', '\143', '\150',
'\040', '\061', '\012', '\150', '\146', '\103', '\040', '\164',
'\150', '\040', '\061', '\012', '\111', '\152', '\144', '\040',
'\144', '\145', '\040', '\061', '\012', '\144', '\153', '\127',
'\040', '\144', '\145', '\040', '\061', '\012', '\116', '\170',
'\156', '\040', '\141', '\156', '\040', '\061', '\012', '\152',
'\165', '\103', '\040', '\161', '\165', '\040', '\061', '\012',
'\142', '\120', '\171', '\040', '\142', '\145', '\040', '\061',
'\012', '\154', '\113', '\163', '\040', '\154', '\145', '\040',
'\061', '\012', '\141', '\114', '\161', '\040', '\141', '\156',
'\040', '\061', '\012', '\152', '\120', '\160', '\040', '\151',
'\152', '\040', '\061', '\012', '\167', '\160', '\132', '\040',
'\160', '\162', '\040', '\061', '\012', '\146', '\152', '\105',
'\040', '\151', '\152', '\040', '\061', '\012', '\172', '\116',
'\164', '\040', '\164', '\150', '\040', '\061', '\012', '\155',
'\150', '\116', '\040', '\164', '\150', '\040', '\061', '\012',
'\142', '\121', '\156', '\040', '\141', '\156', '\040', '\061',
'\012', '\142', '\170', '\102', '\040', '\142', '\145', '\040',
'\061', '\012', '\146', '\144', '\130', '\040', '\144', '\145',
'\040', '\061', '\012', '\112', '\143', '\166', '\040', '\166',
'\141', '\040', '\061', '\012', '\106', '\144', '\160', '\040',
'\144', '\145', '\040', '\061', '\012', '\167', '\126', '\170',
'\040', '\167', '\141', '\040', '\061', '\012', '\164', '\155',
'\125', '\040', '\164', '\150', '\040', '\061', '\012', '\156',
'\152', '\112', '\040', '\141', '\156', '\040', '\061', '\012',
'\161', '\172', '\113', '\040', '\161', '\165', '\040', '\061',
'\012', '\152', '\164', '\104', '\040', '\164', '\150', '\040',
'\061', '\012', '\142', '\143', '\130', '\040', '\143', '\150',
'\040', '\061', '\012', '\107', '\150', '\170', '\040', '\164',
'\150', '\040', '\061', '\012', '\170', '\132', '\152', '\040',
'\151', '\152', '\040', '\061', '\012', '\166', '\113', '\167',
'\040', '\166', '\141', '\040', '\061', '\012', '\160', '\166',
'\117', '\040', '\166', '\141', '\040', '\061', '\012', '\147',
'\130', '\163', '\040', '\156', '\147', '\040', '\061', '\012',
'\167', '\122', '\166', '\040', '\166', '\141', '\040', '\061',
'\012', '\150', '\147', '\116', '\040', '\164', '\150', '\040',
'\061', '\012', '\147', '\160', '\117', '\040', '\156', '\147',
'\040', '\061', '\012', '\150', '\127', '\143', '\040', '\164',
'\150', '\040', '\061', '\012', '\125', '\160', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\166', '\167', '\104',
'\040', '\166', '\141', '\040', '\061', '\012', '\155', '\170',
'\105', '\040', '\155', '\145', '\040', '\061', '\012', '\132',
'\166', '\155', '\040', '\166', '\141', '\040', '\061', '\012',
'\157', '\172', '\115', '\040', '\157', '\156', '\040', '\061',
'\012', '\146', '\142', '\112', '\040', '\142', '\145', '\040',
'\061', '\012', '\164', '\160', '\121', '\040', '\164', '\150',
'\040', '\061', '\012', '\171', '\145', '\126', '\040', '\145',
'\162', '\040', '\061', '\012', '\132', '\156', '\142', '\040',
'\141', '\156', '\040', '\061', '\012', '\167', '\130', '\166',
'\040', '\166', '\141', '\040', '\061', '\012', '\142', '\143',
'\131', '\040', '\143', '\150', '\040', '\061', '\012', '\163',
'\147', '\132', '\040', '\156', '\147', '\040', '\061', '\012',
'\161', '\146', '\115', '\040', '\161', '\165', '\040', '\061',
'\012', '\146', '\143', '\114', '\040', '\143', '\150', '\040',
'\061', '\012', '\155', '\130', '\154', '\040', '\154', '\145',
'\040', '\061', '\012', '\165', '\102', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\152', '\170', '\127', '\040',
'\151', '\152', '\040', '\061', '\012', '\155', '\164', '\125',
'\040', '\164', '\150', '\040', '\061', '\012', '\161', '\147',
'\112', '\040', '\161', '\165', '\040', '\061', '\012', '\144',
'\101', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\152', '\102', '\166', '\040', '\151', '\152', '\040', '\061',
'\012', '\107', '\164', '\171', '\040', '\164', '\150', '\040',
'\061', '\012', '\112', '\146', '\155', '\040', '\155', '\145',
'\040', '\061', '\012', '\170', '\161', '\121', '\040', '\161',
'\165', '\040', '\061', '\012', '\143', '\102', '\160', '\040',
'\143', '\150', '\040', '\061', '\012', '\130', '\161', '\144',
'\040', '\161', '\165', '\040', '\061', '\012', '\146', '\166',
'\115', '\040', '\166', '\141', '\040', '\061', '\012', '\165',
'\127', '\155', '\040', '\161', '\165', '\040', '\061', '\012',
'\162', '\123', '\142', '\040', '\145', '\162', '\040', '\061',
'\012', '\130', '\161', '\152', '\040', '\161', '\165', '\040',
'\061', '\012', '\161', '\124', '\144', '\040', '\161', '\165',
'\040', '\061', '\012', '\154', '\114', '\147', '\040', '\156',
'\147', '\040', '\061', '\012', '\112', '\162', '\160', '\040',
'\145', '\162', '\040', '\061', '\012', '\157', '\112', '\142',
'\040', '\157', '\156', '\040', '\061', '\012', '\160', '\130',
'\171', '\040', '\160', '\162', '\040', '\061', '\012', '\172',
'\162', '\121', '\040', '\145', '\162', '\040', '\061', '\012',
'\143', '\156', '\124', '\040', '\143', '\150', '\040', '\061',
'\012', '\161', '\163', '\105', '\040', '\161', '\165', '\040',
'\061', '\012', '\160', '\132', '\143', '\040', '\143', '\150',
'\040', '\061', '\012', '\142', '\126', '\171', '\040', '\142',
'\145', '\040', '\061', '\012', '\161', '\111', '\172', '\040',
'\161', '\165', '\040', '\061', '\012', '\144', '\147', '\122',
'\040', '\156', '\147', '\040', '\061', '\012', '\155', '\114',
'\166', '\040', '\166', '\141', '\040', '\061', '\012', '\150',
'\126', '\154', '\040', '\164', '\150', '\040', '\061', '\012',
'\161', '\122', '\152', '\040', '\161', '\165', '\040', '\061',
'\012', '\146', '\150', '\101', '\040', '\164', '\150', '\040',
'\061', '\012', '\172', '\114', '\143', '\040', '\143', '\150',
'\040', '\061', '\012', '\123', '\147', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\160', '\114', '\143', '\040',
'\143', '\150', '\040', '\061', '\012', '\124', '\170', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\171', '\160',
'\131', '\040', '\160', '\162', '\040', '\061', '\012', '\164',
'\130', '\172', '\040', '\164', '\150', '\040', '\061', '\012',
'\144', '\143', '\103', '\040', '\143', '\150', '\040', '\061',
'\012', '\151', '\131', '\146', '\040', '\151', '\156', '\040',
'\061', '\012', '\127', '\167', '\155', '\040', '\155', '\145',
'\040', '\061', '\012', '\153', '\132', '\153', '\040', '\153',
'\141', '\040', '\061', '\012', '\131', '\167', '\162', '\040',
'\145', '\162', '\040', '\061', '\012', '\147', '\106', '\166',
'\040', '\156', '\147', '\040', '\061', '\012', '\106', '\155',
'\172', '\040', '\163', '\172', '\040', '\061', '\012', '\165',
'\121', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\170', '\167', '\122', '\040', '\167', '\141', '\040', '\061',
'\012', '\131', '\146', '\143', '\040', '\143', '\150', '\040',
'\061', '\012', '\141', '\111', '\157', '\040', '\141', '\156',
'\040', '\061', '\012', '\163', '\102', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\107', '\172', '\142', '\040',
'\163', '\172', '\040', '\061', '\012', '\152', '\167', '\111',
'\040', '\151', '\152', '\040', '\061', '\012', '\143', '\106',
'\146', '\040', '\143', '\150', '\040', '\061', '\012', '\141',
'\127', '\166', '\040', '\141', '\156', '\040', '\061', '\012',
'\105', '\141', '\167', '\040', '\141', '\156', '\040', '\061',
'\012', '\166', '\153', '\127', '\040', '\153', '\141', '\040',
'\061', '\012', '\116', '\146', '\150', '\040', '\164', '\150',
'\040', '\061', '\012', '\146', '\154', '\116', '\040', '\154',
'\145', '\040', '\061', '\012', '\114', '\160', '\155', '\040',
'\155', '\145', '\040', '\061', '\012', '\171', '\154', '\113',
'\040', '\154', '\145', '\040', '\061', '\012', '\132', '\156',
'\162', '\040', '\141', '\156', '\040', '\061', '\012', '\155',
'\143', '\121', '\040', '\143', '\150', '\040', '\061', '\012',
'\153', '\146', '\105', '\040', '\153', '\141', '\040', '\061',
'\012', '\111', '\171', '\146', '\040', '\156', '\171', '\040',
'\061', '\012', '\161', '\162', '\126', '\040', '\161', '\165',
'\040', '\061', '\012', '\146', '\120', '\170', '\040', '\146',
'\157', '\040', '\061', '\012', '\146', '\147', '\112', '\040',
'\156', '\147', '\040', '\061', '\012', '\152', '\111', '\151',
'\040', '\151', '\156', '\040', '\061', '\012', '\142', '\120',
'\167', '\040', '\167', '\141', '\040', '\061', '\012', '\121',
'\171', '\170', '\040', '\156', '\171', '\040', '\061', '\012',
'\121', '\156', '\142', '\040', '\141', '\156', '\040', '\061',
'\012', '\127', '\144', '\155', '\040', '\144', '\145', '\040',
'\061', '\012', '\156', '\112', '\164', '\040', '\164', '\150',
'\040', '\061', '\012', '\161', '\103', '\144', '\040', '\161',
'\165', '\040', '\061', '\012', '\147', '\132', '\154', '\040',
'\156', '\147', '\040', '\061', '\012', '\116', '\154', '\172',
'\040', '\154', '\145', '\040', '\061', '\012', '\132', '\167',
'\150', '\040', '\164', '\150', '\040', '\061', '\012', '\151',
'\127', '\154', '\040', '\151', '\156', '\040', '\061', '\012',
'\142', '\125', '\165', '\040', '\161', '\165', '\040', '\061',
'\012', '\154', '\142', '\112', '\040', '\154', '\145', '\040',
'\061', '\012', '\163', '\116', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\161', '\152', '\125', '\040', '\161',
'\165', '\040', '\061', '\012', '\167', '\142', '\124', '\040',
'\167', '\141', '\040', '\061', '\012', '\171', '\116', '\143',
'\040', '\143', '\150', '\040', '\061', '\012', '\155', '\170',
'\115', '\040', '\155', '\145', '\040', '\061', '\012', '\160',
'\110', '\153', '\040', '\153', '\141', '\040', '\061', '\012',
'\122', '\144', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\147', '\153', '\105', '\040', '\156', '\147', '\040',
'\061', '\012', '\150', '\142', '\116', '\040', '\164', '\150',
'\040', '\061', '\012', '\124', '\147', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\147', '\152', '\126', '\040',
'\156', '\147', '\040', '\061', '\012', '\107', '\152', '\167',
'\040', '\151', '\152', '\040', '\061', '\012', '\147', '\161',
'\130', '\040', '\161', '\165', '\040', '\061', '\012', '\161',
'\130', '\170', '\040', '\161', '\165', '\040', '\061', '\012',
'\166', '\121', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\160', '\116', '\142', '\040', '\160', '\162', '\040',
'\061', '\012', '\146', '\112', '\171', '\040', '\156', '\171',
'\040', '\061', '\012', '\171', '\166', '\132', '\040', '\166',
'\141', '\040', '\061', '\012', '\172', '\116', '\154', '\040',
'\154', '\145', '\040', '\061', '\012', '\172', '\104', '\142',
'\040', '\163', '\172', '\040', '\061', '\012', '\154', '\125',
'\172', '\040', '\154', '\145', '\040', '\061', '\012', '\104',
'\170', '\171', '\040', '\156', '\171', '\040', '\061', '\012',
'\127', '\167', '\156', '\040', '\141', '\156', '\040', '\061',
'\012', '\150', '\120', '\156', '\040', '\164', '\150', '\040',
'\061', '\012', '\153', '\116', '\142', '\040', '\153', '\157',
'\040', '\061', '\012', '\127', '\144', '\142', '\040', '\144',
'\145', '\040', '\061', '\012', '\172', '\130', '\164', '\040',
'\164', '\150', '\040', '\061', '\012', '\160', '\152', '\114',
'\040', '\151', '\152', '\040', '\061', '\012', '\164', '\112',
'\147', '\040', '\164', '\150', '\040', '\061', '\012', '\152',
'\155', '\115', '\040', '\151', '\152', '\040', '\061', '\012',
'\142', '\130', '\147', '\040', '\156', '\147', '\040', '\061',
'\012', '\150', '\124', '\166', '\040', '\164', '\150', '\040',
'\061', '\012', '\131', '\163', '\146', '\040', '\163', '\164',
'\040', '\061', '\012', '\150', '\155', '\121', '\040', '\164',
'\150', '\040', '\061', '\012', '\126', '\171', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\106', '\160', '\144',
'\040', '\144', '\145', '\040', '\061', '\012', '\171', '\121',
'\167', '\040', '\167', '\141', '\040', '\061', '\012', '\120',
'\142', '\156', '\040', '\141', '\156', '\040', '\061', '\012',
'\170', '\126', '\152', '\040', '\151', '\152', '\040', '\061',
'\012', '\167', '\150', '\120', '\040', '\164', '\150', '\040',
'\061', '\012', '\146', '\123', '\147', '\040', '\156', '\147',
'\040', '\061', '\012', '\107', '\170', '\172', '\040', '\172',
'\145', '\040', '\061', '\012', '\104', '\146', '\167', '\040',
'\167', '\141', '\040', '\061', '\012', '\162', '\115', '\170',
'\040', '\145', '\162', '\040', '\061', '\012', '\172', '\115',
'\146', '\040', '\163', '\172', '\040', '\061', '\012', '\166',
'\112', '\167', '\040', '\166', '\141', '\040', '\061', '\012',
'\170', '\112', '\154', '\040', '\154', '\145', '\040', '\061',
'\012', '\170', '\146', '\116', '\040', '\146', '\157', '\040',
'\061', '\012', '\144', '\121', '\167', '\040', '\144', '\145',
'\040', '\061', '\012', '\146', '\165', '\104', '\040', '\161',
'\165', '\040', '\061', '\012', '\170', '\152', '\102', '\040',
'\151', '\152', '\040', '\061', '\012', '\154', '\120', '\152',
'\040', '\154', '\145', '\040', '\061', '\012', '\155', '\161',
'\101', '\040', '\161', '\165', '\040', '\061', '\012', '\155',
'\146', '\115', '\040', '\155', '\145', '\040', '\061', '\012',
'\153', '\167', '\107', '\040', '\153', '\141', '\040', '\061',
'\012', '\145', '\141', '\131', '\040', '\141', '\156', '\040',
'\061', '\012', '\126', '\155', '\155', '\040', '\155', '\145',
'\040', '\061', '\012', '\172', '\146', '\123', '\040', '\163',
'\172', '\040', '\061', '\012', '\106', '\155', '\171', '\040',
'\155', '\145', '\040', '\061', '\012', '\163', '\161', '\120',
'\040', '\161', '\165', '\040', '\061', '\012', '\146', '\113',
'\153', '\040', '\153', '\141', '\040', '\061', '\012', '\121',
'\144', '\166', '\040', '\144', '\145', '\040', '\061', '\012',
'\144', '\152', '\132', '\040', '\144', '\145', '\040', '\061',
'\012', '\161', '\162', '\122', '\040', '\161', '\165', '\040',
'\061', '\012', '\164', '\170', '\113', '\040', '\164', '\150',
'\040', '\061', '\012', '\142', '\170', '\110', '\040', '\142',
'\145', '\040', '\061', '\012', '\152', '\122', '\142', '\040',
'\151', '\152', '\040', '\061', '\012', '\143', '\152', '\104',
'\040', '\143', '\150', '\040', '\061', '\012', '\123', '\170',
'\167', '\040', '\167', '\141', '\040', '\061', '\012', '\123',
'\170', '\150', '\040', '\164', '\150', '\040', '\061', '\012',
'\166', '\162', '\132', '\040', '\145', '\162', '\040', '\061',
'\012', '\170', '\155', '\110', '\040', '\155', '\145', '\040',
'\061', '\012', '\144', '\146', '\110', '\040', '\144', '\145',
'\040', '\061', '\012', '\146', '\112', '\167', '\040', '\167',
'\141', '\040', '\061', '\012', '\155', '\167', '\132', '\040',
'\155', '\145', '\040', '\061', '\012', '\166', '\122', '\155',
'\040', '\166', '\141', '\040', '\061', '\012', '\170', '\167',
'\152', '\040', '\151', '\152', '\040', '\061', '\012', '\130',
'\161', '\162', '\040', '\145', '\162', '\040', '\061', '\012',
'\107', '\166', '\152', '\040', '\151', '\152', '\040', '\061',
'\012', '\150', '\172', '\106', '\040', '\164', '\150', '\040',
'\061', '\012', '\170', '\156', '\113', '\040', '\141', '\156',
'\040', '\061', '\012', '\170', '\150', '\125', '\040', '\164',
'\150', '\040', '\061', '\012', '\116', '\154', '\163', '\040',
'\154', '\145', '\040', '\061', '\012', '\172', '\142', '\126',
'\040', '\163', '\172', '\040', '\061', '\012', '\146', '\124',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\127',
'\170', '\166', '\040', '\166', '\141', '\040', '\061', '\012',
'\165', '\160', '\107', '\040', '\161', '\165', '\040', '\061',
'\012', '\161', '\101', '\157', '\040', '\161', '\165', '\040',
'\061', '\012', '\153', '\113', '\170', '\040', '\153', '\141',
'\040', '\061', '\012', '\172', '\154', '\104', '\040', '\154',
'\145', '\040', '\061', '\012', '\150', '\124', '\154', '\040',
'\164', '\150', '\040', '\061', '\012', '\107', '\161', '\162',
'\040', '\161', '\165', '\040', '\061', '\012', '\107', '\170',
'\155', '\040', '\155', '\145', '\040', '\061', '\012', '\172',
'\120', '\152', '\040', '\163', '\172', '\040', '\061', '\012',
'\142', '\166', '\132', '\040', '\166', '\141', '\040', '\061',
'\012', '\152', '\110', '\143', '\040', '\143', '\150', '\040',
'\061', '\012', '\151', '\130', '\147', '\040', '\156', '\147',
'\040', '\061', '\012', '\113', '\147', '\172', '\040', '\156',
'\147', '\040', '\061', '\012', '\112', '\171', '\151', '\040',
'\151', '\156', '\040', '\061', '\012', '\166', '\106', '\150',
'\040', '\164', '\150', '\040', '\061', '\012', '\171', '\164',
'\127', '\040', '\164', '\150', '\040', '\061', '\012', '\161',
'\102', '\144', '\040', '\161', '\165', '\040', '\061', '\012',
'\130', '\152', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\144', '\147', '\117', '\040', '\156', '\147', '\040',
'\061', '\012', '\155', '\152', '\116', '\040', '\151', '\152',
'\040', '\061', '\012', '\104', '\152', '\147', '\040', '\156',
'\147', '\040', '\061', '\012', '\172', '\111', '\152', '\040',
'\163', '\172', '\040', '\061', '\012', '\165', '\104', '\170',
'\040', '\161', '\165', '\040', '\061', '\012', '\161', '\112',
'\146', '\040', '\161', '\165', '\040', '\061', '\012', '\146',
'\101', '\170', '\040', '\146', '\157', '\040', '\061', '\012',
'\106', '\163', '\152', '\040', '\163', '\164', '\040', '\061',
'\012', '\171', '\104', '\146', '\040', '\156', '\171', '\040',
'\061', '\012', '\170', '\152', '\126', '\040', '\151', '\152',
'\040', '\061', '\012', '\150', '\144', '\102', '\040', '\164',
'\150', '\040', '\061', '\012', '\144', '\167', '\107', '\040',
'\144', '\145', '\040', '\061', '\012', '\163', '\154', '\127',
'\040', '\154', '\145', '\040', '\061', '\012', '\172', '\131',
'\142', '\040', '\163', '\172', '\040', '\061', '\012', '\166',
'\172', '\117', '\040', '\163', '\172', '\040', '\061', '\012',
'\166', '\161', '\117', '\040', '\161', '\165', '\040', '\061',
'\012', '\112', '\172', '\166', '\040', '\163', '\172', '\040',
'\061', '\012', '\170', '\155', '\107', '\040', '\155', '\145',
'\040', '\061', '\012', '\113', '\144', '\167', '\040', '\144',
'\145', '\040', '\061', '\012', '\170', '\126', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\152', '\164', '\105',
'\040', '\164', '\150', '\040', '\061', '\012', '\153', '\112',
'\171', '\040', '\153', '\141', '\040', '\061', '\012', '\170',
'\152', '\127', '\040', '\151', '\152', '\040', '\061', '\012',
'\155', '\167', '\122', '\040', '\155', '\145', '\040', '\061',
'\012', '\172', '\126', '\170', '\040', '\163', '\172', '\040',
'\061', '\012', '\164', '\115', '\152', '\040', '\164', '\150',
'\040', '\061', '\012', '\161', '\161', '\142', '\040', '\161',
'\165', '\040', '\061', '\012', '\156', '\154', '\121', '\040',
'\154', '\145', '\040', '\061', '\012', '\142', '\170', '\121',
'\040', '\142', '\145', '\040', '\061', '\012', '\150', '\112',
'\166', '\040', '\164', '\150', '\040', '\061', '\012', '\152',
'\156', '\131', '\040', '\141', '\156', '\040', '\061', '\012',
'\171', '\146', '\123', '\040', '\156', '\171', '\040', '\061',
'\012', '\115', '\144', '\167', '\040', '\144', '\145', '\040',
'\061', '\012', '\172', '\132', '\143', '\040', '\143', '\150',
'\040', '\061', '\012', '\171', '\163', '\112', '\040', '\163',
'\164', '\040', '\061', '\012', '\121', '\161', '\166', '\040',
'\161', '\165', '\040', '\061', '\012', '\172', '\170', '\154',
'\040', '\154', '\145', '\040', '\061', '\012', '\152', '\101',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\154',
'\112', '\167', '\040', '\154', '\145', '\040', '\061', '\012',
'\153', '\167', '\112', '\040', '\153', '\141', '\040', '\061',
'\012', '\163', '\170', '\103', '\040', '\163', '\164', '\040',
'\061', '\012', '\150', '\112', '\162', '\040', '\164', '\150',
'\040', '\061', '\012', '\170', '\107', '\160', '\040', '\160',
'\162', '\040', '\061', '\012', '\143', '\143', '\106', '\040',
'\143', '\150', '\040', '\061', '\012', '\166', '\107', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\161', '\123',
'\143', '\040', '\143', '\150', '\040', '\061', '\012', '\146',
'\161', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\153', '\153', '\126', '\040', '\153', '\141', '\040', '\061',
'\012', '\147', '\126', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\127', '\161', '\147', '\040', '\161', '\165',
'\040', '\061', '\012', '\153', '\112', '\160', '\040', '\153',
'\141', '\040', '\061', '\012', '\127', '\154', '\162', '\040',
'\145', '\162', '\040', '\061', '\012', '\112', '\167', '\172',
'\040', '\163', '\172', '\040', '\061', '\012', '\161', '\105',
'\141', '\040', '\141', '\156', '\040', '\061', '\012', '\153',
'\162', '\114', '\040', '\145', '\162', '\040', '\061', '\012',
'\164', '\161', '\105', '\040', '\164', '\150', '\040', '\061',
'\012', '\145', '\112', '\172', '\040', '\145', '\162', '\040',
'\061', '\012', '\127', '\150', '\170', '\040', '\164', '\150',
'\040', '\061', '\012', '\166', '\127', '\167', '\040', '\166',
'\141', '\040', '\061', '\012', '\121', '\172', '\150', '\040',
'\164', '\150', '\040', '\061', '\012', '\160', '\143', '\106',
'\040', '\143', '\150', '\040', '\061', '\012', '\126', '\155',
'\170', '\040', '\155', '\145', '\040', '\061', '\012', '\144',
'\166', '\103', '\040', '\144', '\145', '\040', '\061', '\012',
'\161', '\152', '\132', '\040', '\161', '\165', '\040', '\061',
'\012', '\160', '\153', '\106', '\040', '\153', '\141', '\040',
'\061', '\012', '\143', '\166', '\117', '\040', '\143', '\150',
'\040', '\061', '\012', '\121', '\171', '\166', '\040', '\166',
'\141', '\040', '\061', '\012', '\150', '\116', '\163', '\040',
'\164', '\150', '\040', '\061', '\012', '\163', '\156', '\112',
'\040', '\141', '\156', '\040', '\061', '\012', '\171', '\152',
'\125', '\040', '\151', '\152', '\040', '\061', '\012', '\131',
'\146', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\170', '\114', '\167', '\040', '\167', '\141', '\040', '\061',
'\012', '\162', '\126', '\172', '\040', '\145', '\162', '\040',
'\061', '\012', '\147', '\117', '\167', '\040', '\156', '\147',
'\040', '\061', '\012', '\146', '\170', '\114', '\040', '\146',
'\157', '\040', '\061', '\012', '\163', '\156', '\127', '\040',
'\141', '\156', '\040', '\061', '\012', '\171', '\127', '\153',
'\040', '\153', '\141', '\040', '\061', '\012', '\167', '\147',
'\113', '\040', '\156', '\147', '\040', '\061', '\012', '\141',
'\124', '\146', '\040', '\141', '\156', '\040', '\061', '\012',
'\145', '\126', '\146', '\040', '\145', '\162', '\040', '\061',
'\012', '\166', '\132', '\160', '\040', '\166', '\141', '\040',
'\061', '\012', '\165', '\126', '\160', '\040', '\161', '\165',
'\040', '\061', '\012', '\126', '\152', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\172', '\167', '\124', '\040',
'\163', '\172', '\040', '\061', '\012', '\167', '\123', '\156',
'\040', '\141', '\156', '\040', '\061', '\012', '\156', '\116',
'\160', '\040', '\141', '\156', '\040', '\061', '\012', '\147',
'\146', '\106', '\040', '\156', '\147', '\040', '\061', '\012',
'\150', '\143', '\127', '\040', '\164', '\150', '\040', '\061',
'\012', '\147', '\124', '\146', '\040', '\156', '\147', '\040',
'\061', '\012', '\161', '\141', '\112', '\040', '\141', '\156',
'\040', '\061', '\012', '\153', '\172', '\131', '\040', '\163',
'\172', '\040', '\061', '\012', '\154', '\152', '\130', '\040',
'\154', '\145', '\040', '\061', '\012', '\167', '\115', '\155',
'\040', '\155', '\145', '\040', '\061', '\012', '\142', '\164',
'\102', '\040', '\163', '\164', '\040', '\061', '\012', '\172',
'\146', '\105', '\040', '\163', '\172', '\040', '\061', '\012',
'\142', '\170', '\117', '\040', '\142', '\145', '\040', '\061',
'\012', '\167', '\120', '\143', '\040', '\143', '\150', '\040',
'\061', '\012', '\146', '\147', '\113', '\040', '\156', '\147',
'\040', '\061', '\012', '\146', '\172', '\127', '\040', '\163',
'\172', '\040', '\061', '\012', '\144', '\143', '\130', '\040',
'\143', '\150', '\040', '\061', '\012', '\161', '\161', '\122',
'\040', '\161', '\165', '\040', '\061', '\012', '\153', '\152',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\166',
'\115', '\150', '\040', '\164', '\150', '\040', '\061', '\012',
'\147', '\132', '\152', '\040', '\156', '\147', '\040', '\061',
'\012', '\161', '\164', '\167', '\040', '\164', '\150', '\040',
'\061', '\012', '\166', '\153', '\131', '\040', '\153', '\141',
'\040', '\061', '\012', '\154', '\103', '\142', '\040', '\154',
'\145', '\040', '\061', '\012', '\144', '\160', '\117', '\040',
'\144', '\145', '\040', '\061', '\012', '\155', '\130', '\155',
'\040', '\155', '\145', '\040', '\061', '\012', '\166', '\127',
'\143', '\040', '\143', '\150', '\040', '\061', '\012', '\146',
'\117', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\126', '\147', '\171', '\040', '\156', '\147', '\040', '\061',
'\012', '\144', '\153', '\104', '\040', '\144', '\145', '\040',
'\061', '\012', '\146', '\121', '\150', '\040', '\164', '\150',
'\040', '\061', '\012', '\166', '\111', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\154', '\132', '\162', '\040',
'\145', '\162', '\040', '\061', '\012', '\172', '\113', '\156',
'\040', '\141', '\156', '\040', '\061', '\012', '\126', '\160',
'\164', '\040', '\164', '\150', '\040', '\061', '\012', '\104',
'\155', '\167', '\040', '\155', '\145', '\040', '\061', '\012',
'\116', '\167', '\146', '\040', '\167', '\141', '\040', '\061',
'\012', '\153', '\131', '\154', '\040', '\154', '\145', '\040',
'\061', '\012', '\152', '\160', '\112', '\040', '\151', '\152',
'\040', '\061', '\012', '\161', '\130', '\151', '\040', '\161',
'\165', '\040', '\061', '\012', '\102', '\156', '\152', '\040',
'\141', '\156', '\040', '\061', '\012', '\170', '\146', '\113',
'\040', '\146', '\157', '\040', '\061', '\012', '\146', '\103',
'\143', '\040', '\143', '\150', '\040', '\061', '\012', '\166',
'\120', '\144', '\040', '\144', '\145', '\040', '\061', '\012',
'\121', '\156', '\160', '\040', '\141', '\156', '\040', '\061',
'\012', '\171', '\160', '\127', '\040', '\160', '\162', '\040',
'\061', '\012', '\165', '\167', '\112', '\040', '\161', '\165',
'\040', '\061', '\012', '\120', '\166', '\142', '\040', '\166',
'\141', '\040', '\061', '\012', '\143', '\156', '\103', '\040',
'\143', '\150', '\040', '\061', '\012', '\150', '\166', '\101',
'\040', '\164', '\150', '\040', '\061', '\012', '\150', '\107',
'\172', '\040', '\164', '\150', '\040', '\061', '\012', '\156',
'\132', '\170', '\040', '\141', '\156', '\040', '\061', '\012',
'\153', '\142', '\123', '\040', '\153', '\141', '\040', '\061',
'\012', '\123', '\167', '\170', '\040', '\167', '\141', '\040',
'\061', '\012', '\150', '\166', '\120', '\040', '\164', '\150',
'\040', '\061', '\012', '\153', '\161', '\107', '\040', '\161',
'\165', '\040', '\061', '\012', '\142', '\114', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\161', '\152', '\120',
'\040', '\161', '\165', '\040', '\061', '\012', '\163', '\125',
'\157', '\040', '\157', '\156', '\040', '\061', '\012', '\154',
'\104', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\132', '\154', '\160', '\040', '\154', '\145', '\040', '\061',
'\012', '\144', '\167', '\121', '\040', '\144', '\145', '\040',
'\061', '\012', '\144', '\154', '\116', '\040', '\154', '\145',
'\040', '\061', '\012', '\146', '\124', '\154', '\040', '\154',
'\145', '\040', '\061', '\012', '\116', '\160', '\166', '\040',
'\166', '\141', '\040', '\061', '\012', '\142', '\115', '\156',
'\040', '\141', '\156', '\040', '\061', '\012', '\144', '\116',
'\172', '\040', '\163', '\172', '\040', '\061', '\012', '\145',
'\146', '\126', '\040', '\145', '\162', '\040', '\061', '\012',
'\141', '\103', '\167', '\040', '\141', '\156', '\040', '\061',
'\012', '\141', '\127', '\146', '\040', '\141', '\156', '\040',
'\061', '\012', '\114', '\161', '\157', '\040', '\161', '\165',
'\040', '\061', '\012', '\146', '\172', '\124', '\040', '\163',
'\172', '\040', '\061', '\012', '\112', '\152', '\162', '\040',
'\145', '\162', '\040', '\061', '\012', '\172', '\166', '\113',
'\040', '\163', '\172', '\040', '\061', '\012', '\156', '\167',
'\124', '\040', '\141', '\156', '\040', '\061', '\012', '\146',
'\130', '\162', '\040', '\145', '\162', '\040', '\061', '\012',
'\143', '\107', '\155', '\040', '\143', '\150', '\040', '\061',
'\012', '\154', '\166', '\123', '\040', '\154', '\145', '\040',
'\061', '\012', '\161', '\104', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\161', '\122', '\155', '\040', '\161',
'\165', '\040', '\061', '\012', '\166', '\131', '\164', '\040',
'\164', '\150', '\040', '\061', '\012', '\151', '\121', '\166',
'\040', '\151', '\156', '\040', '\061', '\012', '\146', '\153',
'\110', '\040', '\153', '\141', '\040', '\061', '\012', '\146',
'\143', '\117', '\040', '\143', '\150', '\040', '\061', '\012',
'\162', '\116', '\156', '\040', '\141', '\156', '\040', '\061',
'\012', '\161', '\155', '\123', '\040', '\161', '\165', '\040',
'\061', '\012', '\153', '\172', '\122', '\040', '\163', '\172',
'\040', '\061', '\012', '\104', '\146', '\143', '\040', '\143',
'\150', '\040', '\061', '\012', '\161', '\125', '\163', '\040',
'\161', '\165', '\040', '\061', '\012', '\170', '\161', '\120',
'\040', '\161', '\165', '\040', '\061', '\012', '\163', '\130',
'\153', '\040', '\163', '\164', '\040', '\061', '\012', '\130',
'\171', '\164', '\040', '\164', '\150', '\040', '\061', '\012',
'\160', '\127', '\164', '\040', '\164', '\150', '\040', '\061',
'\012', '\152', '\142', '\114', '\040', '\151', '\152', '\040',
'\061', '\012', '\152', '\131', '\144', '\040', '\151', '\152',
'\040', '\061', '\012', '\153', '\161', '\126', '\040', '\161',
'\165', '\040', '\061', '\012', '\106', '\161', '\155', '\040',
'\161', '\165', '\040', '\061', '\012', '\170', '\157', '\130',
'\040', '\157', '\156', '\040', '\061', '\012', '\172', '\165',
'\130', '\040', '\161', '\165', '\040', '\061', '\012', '\170',
'\125', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\143', '\147', '\103', '\040', '\143', '\150', '\040', '\061',
'\012', '\167', '\102', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\147', '\121', '\160', '\040', '\156', '\147',
'\040', '\061', '\012', '\152', '\156', '\105', '\040', '\141',
'\156', '\040', '\061', '\012', '\171', '\132', '\163', '\040',
'\163', '\164', '\040', '\061', '\012', '\146', '\153', '\104',
'\040', '\153', '\141', '\040', '\061', '\012', '\163', '\126',
'\153', '\040', '\163', '\164', '\040', '\061', '\012', '\161',
'\171', '\130', '\040', '\161', '\165', '\040', '\061', '\012',
'\143', '\102', '\146', '\040', '\143', '\150', '\040', '\061',
'\012', '\103', '\152', '\171', '\040', '\151', '\152', '\040',
'\061', '\012', '\144', '\120', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\167', '\104', '\147', '\040', '\156',
'\147', '\040', '\061', '\012', '\144', '\170', '\102', '\040',
'\144', '\145', '\040', '\061', '\012', '\104', '\153', '\155',
'\040', '\153', '\141', '\040', '\061', '\012', '\153', '\120',
'\160', '\040', '\153', '\141', '\040', '\061', '\012', '\150',
'\127', '\172', '\040', '\164', '\150', '\040', '\061', '\012',
'\102', '\152', '\166', '\040', '\151', '\152', '\040', '\061',
'\012', '\111', '\172', '\146', '\040', '\163', '\172', '\040',
'\061', '\012', '\110', '\156', '\153', '\040', '\141', '\156',
'\040', '\061', '\012', '\162', '\121', '\143', '\040', '\143',
'\150', '\040', '\061', '\012', '\112', '\167', '\165', '\040',
'\161', '\165', '\040', '\061', '\012', '\146', '\142', '\120',
'\040', '\142', '\145', '\040', '\061', '\012', '\146', '\162',
'\121', '\040', '\145', '\162', '\040', '\061', '\012', '\101',
'\157', '\166', '\040', '\157', '\156', '\040', '\061', '\012',
'\171', '\161', '\121', '\040', '\161', '\165', '\040', '\061',
'\012', '\152', '\146', '\131', '\040', '\151', '\152', '\040',
'\061', '\012', '\170', '\163', '\110', '\040', '\163', '\164',
'\040', '\061', '\012', '\172', '\170', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\112', '\142', '\152', '\040',
'\151', '\152', '\040', '\061', '\012', '\115', '\152', '\172',
'\040', '\163', '\172', '\040', '\061', '\012', '\147', '\122',
'\160', '\040', '\156', '\147', '\040', '\061', '\012', '\107',
'\166', '\167', '\040', '\166', '\141', '\040', '\061', '\012',
'\155', '\172', '\106', '\040', '\163', '\172', '\040', '\061',
'\012', '\157', '\161', '\106', '\040', '\161', '\165', '\040',
'\061', '\012', '\145', '\152', '\125', '\040', '\145', '\162',
'\040', '\061', '\012', '\170', '\155', '\121', '\040', '\155',
'\145', '\040', '\061', '\012', '\150', '\117', '\161', '\040',
'\164', '\150', '\040', '\061', '\012', '\160', '\167', '\130',
'\040', '\160', '\162', '\040', '\061', '\012', '\172', '\147',
'\113', '\040', '\156', '\147', '\040', '\061', '\012', '\167',
'\114', '\153', '\040', '\153', '\141', '\040', '\061', '\012',
'\146', '\161', '\143', '\040', '\143', '\150', '\040', '\061',
'\012', '\144', '\120', '\155', '\040', '\144', '\145', '\040',
'\061', '\012', '\164', '\103', '\147', '\040', '\164', '\150',
'\040', '\061', '\012', '\161', '\162', '\106', '\040', '\161',
'\165', '\040', '\061', '\012', '\160', '\127', '\154', '\040',
'\154', '\145', '\040', '\061', '\012', '\162', '\104', '\146',
'\040', '\145', '\162', '\040', '\061', '\012', '\131', '\156',
'\167', '\040', '\141', '\156', '\040', '\061', '\012', '\152',
'\156', '\121', '\040', '\141', '\156', '\040', '\061', '\012',
'\164', '\106', '\142', '\040', '\164', '\150', '\040', '\061',
'\012', '\162', '\160', '\125', '\040', '\145', '\162', '\040',
'\061', '\012', '\160', '\120', '\152', '\040', '\151', '\152',
'\040', '\061', '\012', '\171', '\152', '\115', '\040', '\151',
'\152', '\040', '\061', '\012', '\152', '\155', '\131', '\040',
'\151', '\152', '\040', '\061', '\012', '\103', '\160', '\172',
'\040', '\163', '\172', '\040', '\061', '\012', '\165', '\104',
'\156', '\040', '\141', '\156', '\040', '\061', '\012', '\165',
'\161', '\131', '\040', '\161', '\165', '\040', '\061', '\012',
'\120', '\152', '\170', '\040', '\151', '\152', '\040', '\061',
'\012', '\161', '\106', '\166', '\040', '\161', '\165', '\040',
'\061', '\012', '\113', '\164', '\146', '\040', '\164', '\150',
'\040', '\061', '\012', '\112', '\143', '\152', '\040', '\143',
'\150', '\040', '\061', '\012', '\153', '\160', '\117', '\040',
'\160', '\162', '\040', '\061', '\012', '\160', '\147', '\132',
'\040', '\156', '\147', '\040', '\061', '\012', '\153', '\146',
'\117', '\040', '\153', '\141', '\040', '\061', '\012', '\164',
'\132', '\166', '\040', '\164', '\150', '\040', '\061', '\012',
'\152', '\110', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\143', '\122', '\161', '\040', '\143', '\150', '\040',
'\061', '\012', '\172', '\104', '\155', '\040', '\163', '\172',
'\040', '\061', '\012', '\154', '\120', '\155', '\040', '\154',
'\145', '\040', '\061', '\012', '\163', '\166', '\120', '\040',
'\163', '\164', '\040', '\061', '\012', '\161', '\153', '\170',
'\040', '\161', '\165', '\040', '\061', '\012', '\142', '\116',
'\160', '\040', '\160', '\162', '\040', '\061', '\012', '\113',
'\152', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\166', '\161', '\123', '\040', '\161', '\165', '\040', '\061',
'\012', '\146', '\121', '\160', '\040', '\160', '\162', '\040',
'\061', '\012', '\164', '\170', '\122', '\040', '\164', '\150',
'\040', '\061', '\012', '\110', '\160', '\146', '\040', '\160',
'\162', '\040', '\061', '\012', '\151', '\121', '\147', '\040',
'\156', '\147', '\040', '\061', '\012', '\166', '\166', '\120',
'\040', '\166', '\141', '\040', '\061', '\012', '\151', '\107',
'\146', '\040', '\151', '\156', '\040', '\061', '\012', '\164',
'\152', '\111', '\040', '\164', '\150', '\040', '\061', '\012',
'\160', '\127', '\156', '\040', '\141', '\156', '\040', '\061',
'\012', '\121', '\161', '\147', '\040', '\161', '\165', '\040',
'\061', '\012', '\161', '\151', '\106', '\040', '\164', '\151',
'\040', '\061', '\012', '\132', '\172', '\162', '\040', '\145',
'\162', '\040', '\061', '\012', '\141', '\131', '\146', '\040',
'\141', '\156', '\040', '\061', '\012', '\172', '\152', '\101',
'\040', '\163', '\172', '\040', '\061', '\012', '\153', '\167',
'\122', '\040', '\153', '\141', '\040', '\061', '\012', '\147',
'\153', '\115', '\040', '\156', '\147', '\040', '\061', '\012',
'\103', '\152', '\146', '\040', '\151', '\152', '\040', '\061',
'\012', '\172', '\147', '\115', '\040', '\156', '\147', '\040',
'\061', '\012', '\122', '\170', '\153', '\040', '\153', '\141',
'\040', '\061', '\012', '\142', '\103', '\144', '\040', '\144',
'\145', '\040', '\061', '\012', '\131', '\160', '\166', '\040',
'\166', '\141', '\040', '\061', '\012', '\167', '\171', '\105',
'\040', '\167', '\141', '\040', '\061', '\012', '\151', '\171',
'\102', '\040', '\151', '\156', '\040', '\061', '\012', '\150',
'\121', '\160', '\040', '\164', '\150', '\040', '\061', '\012',
'\151', '\160', '\121', '\040', '\151', '\156', '\040', '\061',
'\012', '\125', '\143', '\152', '\040', '\143', '\150', '\040',
'\061', '\012', '\161', '\153', '\127', '\040', '\161', '\165',
'\040', '\061', '\012', '\153', '\162', '\113', '\040', '\145',
'\162', '\040', '\061', '\012', '\110', '\160', '\160', '\040',
'\160', '\162', '\040', '\061', '\012', '\170', '\156', '\116',
'\040', '\141', '\156', '\040', '\061', '\012', '\152', '\167',
'\102', '\040', '\151', '\152', '\040', '\061', '\012', '\132',
'\144', '\155', '\040', '\144', '\145', '\040', '\061', '\012',
'\155', '\131', '\152', '\040', '\151', '\152', '\040', '\061',
'\012', '\164', '\121', '\170', '\040', '\164', '\150', '\040',
'\061', '\012', '\161', '\167', '\123', '\040', '\161', '\165',
'\040', '\061', '\012', '\110', '\170', '\157', '\040', '\157',
'\156', '\040', '\061', '\012', '\161', '\104', '\170', '\040',
'\161', '\165', '\040', '\061', '\012', '\143', '\130', '\144',
'\040', '\143', '\150', '\040', '\061', '\012', '\147', '\144',
'\117', '\040', '\156', '\147', '\040', '\061', '\012', '\141',
'\105', '\157', '\040', '\141', '\156', '\040', '\061', '\012',
'\124', '\167', '\144', '\040', '\144', '\145', '\040', '\061',
'\012', '\141', '\166', '\121', '\040', '\141', '\156', '\040',
'\061', '\012', '\154', '\150', '\132', '\040', '\164', '\150',
'\040', '\061', '\012', '\154', '\172', '\126', '\040', '\154',
'\145', '\040', '\061', '\012', '\142', '\110', '\146', '\040',
'\142', '\145', '\040', '\061', '\012', '\142', '\112', '\156',
'\040', '\141', '\156', '\040', '\061', '\012', '\125', '\161',
'\172', '\040', '\161', '\165', '\040', '\061', '\012', '\165',
'\106', '\171', '\040', '\161', '\165', '\040', '\061', '\012',
'\152', '\116', '\154', '\040', '\154', '\145', '\040', '\061',
'\012', '\170', '\102', '\160', '\040', '\160', '\162', '\040',
'\061', '\012', '\144', '\122', '\142', '\040', '\144', '\145',
'\040', '\061', '\012', '\156', '\154', '\124', '\040', '\141',
'\156', '\040', '\061', '\012', '\167', '\162', '\117', '\040',
'\145', '\162', '\040', '\061', '\012', '\154', '\172', '\127',
'\040', '\154', '\145', '\040', '\061', '\012', '\146', '\131',
'\146', '\040', '\146', '\157', '\040', '\061', '\012', '\155',
'\122', '\167', '\040', '\155', '\145', '\040', '\061', '\012',
'\162', '\130', '\171', '\040', '\145', '\162', '\040', '\061',
'\012', '\161', '\171', '\122', '\040', '\161', '\165', '\040',
'\061', '\012', '\146', '\107', '\166', '\040', '\166', '\141',
'\040', '\061', '\012', '\125', '\167', '\153', '\040', '\153',
'\141', '\040', '\061', '\012', '\153', '\130', '\155', '\040',
'\153', '\141', '\040', '\061', '\012', '\150', '\112', '\171',
'\040', '\164', '\150', '\040', '\061', '\012', '\130', '\147',
'\166', '\040', '\156', '\147', '\040', '\061', '\012', '\170',
'\131', '\166', '\040', '\166', '\141', '\040', '\061', '\012',
'\171', '\131', '\144', '\040', '\144', '\145', '\040', '\061',
'\012', '\170', '\172', '\103', '\040', '\163', '\172', '\040',
'\061', '\012', '\147', '\152', '\102', '\040', '\156', '\147',
'\040', '\061', '\012', '\152', '\172', '\111', '\040', '\163',
'\172', '\040', '\061', '\012', '\172', '\162', '\117', '\040',
'\145', '\162', '\040', '\061', '\012', '\164', '\161', '\106',
'\040', '\164', '\150', '\040', '\061', '\012', '\166', '\167',
'\115', '\040', '\166', '\141', '\040', '\061', '\012', '\172',
'\103', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\154', '\152', '\114', '\040', '\154', '\145', '\040', '\061',
'\012', '\166', '\156', '\132', '\040', '\141', '\156', '\040',
'\061', '\012', '\145', '\104', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\121', '\166', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\160', '\146', '\114', '\040',
'\160', '\162', '\040', '\061', '\012', '\151', '\122', '\142',
'\040', '\151', '\156', '\040', '\061', '\012', '\147', '\144',
'\122', '\040', '\156', '\147', '\040', '\061', '\012', '\161',
'\101', '\166', '\040', '\161', '\165', '\040', '\061', '\012',
'\166', '\156', '\114', '\040', '\141', '\156', '\040', '\061',
'\012', '\155', '\153', '\124', '\040', '\153', '\141', '\040',
'\061', '\012', '\160', '\126', '\153', '\040', '\153', '\141',
'\040', '\061', '\012', '\170', '\113', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\152', '\116', '\153', '\040',
'\151', '\152', '\040', '\061', '\012', '\152', '\114', '\164',
'\040', '\164', '\150', '\040', '\061', '\012', '\143', '\116',
'\160', '\040', '\143', '\150', '\040', '\061', '\012', '\164',
'\155', '\120', '\040', '\164', '\150', '\040', '\061', '\012',
'\166', '\126', '\164', '\040', '\164', '\150', '\040', '\061',
'\012', '\161', '\146', '\120', '\040', '\161', '\165', '\040',
'\061', '\012', '\125', '\161', '\157', '\040', '\161', '\165',
'\040', '\061', '\012', '\104', '\156', '\160', '\040', '\141',
'\156', '\040', '\061', '\012', '\171', '\107', '\142', '\040',
'\142', '\145', '\040', '\061', '\012', '\163', '\110', '\144',
'\040', '\163', '\164', '\040', '\061', '\012', '\160', '\167',
'\106', '\040', '\160', '\162', '\040', '\061', '\012', '\146',
'\120', '\171', '\040', '\156', '\171', '\040', '\061', '\012',
'\104', '\162', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\142', '\112', '\150', '\040', '\164', '\150', '\040',
'\061', '\012', '\163', '\121', '\160', '\040', '\163', '\164',
'\040', '\061', '\012', '\111', '\167', '\163', '\040', '\163',
'\164', '\040', '\061', '\012', '\165', '\103', '\167', '\040',
'\161', '\165', '\040', '\061', '\012', '\114', '\167', '\152',
'\040', '\151', '\152', '\040', '\061', '\012', '\162', '\106',
'\167', '\040', '\145', '\162', '\040', '\061', '\012', '\163',
'\112', '\160', '\040', '\163', '\164', '\040', '\061', '\012',
'\170', '\151', '\111', '\040', '\151', '\156', '\040', '\061',
'\012', '\122', '\161', '\166', '\040', '\161', '\165', '\040',
'\061', '\012', '\142', '\153', '\121', '\040', '\153', '\141',
'\040', '\061', '\012', '\161', '\116', '\160', '\040', '\161',
'\165', '\040', '\061', '\012', '\144', '\131', '\154', '\040',
'\154', '\145', '\040', '\061', '\012', '\126', '\155', '\146',
'\040', '\155', '\145', '\040', '\061', '\012', '\154', '\131',
'\143', '\040', '\143', '\150', '\040', '\061', '\012', '\157',
'\120', '\167', '\040', '\157', '\156', '\040', '\061', '\012',
'\153', '\152', '\117', '\040', '\151', '\152', '\040', '\061',
'\012', '\155', '\113', '\142', '\040', '\155', '\145', '\040',
'\061', '\012', '\146', '\104', '\146', '\040', '\146', '\157',
'\040', '\061', '\012', '\146', '\106', '\142', '\040', '\142',
'\145', '\040', '\061', '\012', '\126', '\150', '\166', '\040',
'\164', '\150', '\040', '\061', '\012', '\110', '\152', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\161', '\146',
'\113', '\040', '\161', '\165', '\040', '\061', '\012', '\113',
'\152', '\160', '\040', '\151', '\152', '\040', '\061', '\012',
'\166', '\124', '\147', '\040', '\156', '\147', '\040', '\061',
'\012', '\160', '\102', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\110', '\164', '\144', '\040', '\164', '\150',
'\040', '\061', '\012', '\160', '\116', '\144', '\040', '\144',
'\145', '\040', '\061', '\012', '\142', '\121', '\166', '\040',
'\166', '\141', '\040', '\061', '\012', '\141', '\123', '\170',
'\040', '\141', '\156', '\040', '\061', '\012', '\152', '\167',
'\170', '\040', '\151', '\152', '\040', '\061', '\012', '\125',
'\171', '\170', '\040', '\156', '\171', '\040', '\061', '\012',
'\167', '\126', '\152', '\040', '\151', '\152', '\040', '\061',
'\012', '\111', '\157', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\116', '\150', '\155', '\040', '\164', '\150',
'\040', '\061', '\012', '\110', '\161', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\162', '\125', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\142', '\102', '\170',
'\040', '\142', '\145', '\040', '\061', '\012', '\107', '\161',
'\142', '\040', '\161', '\165', '\040', '\061', '\012', '\103',
'\143', '\167', '\040', '\143', '\150', '\040', '\061', '\012',
'\150', '\132', '\167', '\040', '\164', '\150', '\040', '\061',
'\012', '\121', '\142', '\154', '\040', '\154', '\145', '\040',
'\061', '\012', '\170', '\106', '\166', '\040', '\166', '\141',
'\040', '\061', '\012', '\163', '\132', '\166', '\040', '\163',
'\164', '\040', '\061', '\012', '\161', '\172', '\131', '\040',
'\161', '\165', '\040', '\061', '\012', '\160', '\104', '\142',
'\040', '\160', '\162', '\040', '\061', '\012', '\143', '\146',
'\122', '\040', '\143', '\150', '\040', '\061', '\012', '\162',
'\161', '\153', '\040', '\161', '\165', '\040', '\061', '\012',
'\146', '\172', '\120', '\040', '\163', '\172', '\040', '\061',
'\012', '\150', '\161', '\117', '\040', '\164', '\150', '\040',
'\061', '\012', '\160', '\172', '\110', '\040', '\163', '\172',
'\040', '\061', '\012', '\161', '\123', '\152', '\040', '\161',
'\165', '\040', '\061', '\012', '\160', '\170', '\112', '\040',
'\160', '\162', '\040', '\061', '\012', '\170', '\142', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\163', '\130',
'\146', '\040', '\163', '\164', '\040', '\061', '\012', '\171',
'\142', '\124', '\040', '\142', '\145', '\040', '\061', '\012',
'\163', '\110', '\156', '\040', '\141', '\156', '\040', '\061',
'\012', '\166', '\124', '\172', '\040', '\163', '\172', '\040',
'\061', '\012', '\120', '\147', '\146', '\040', '\156', '\147',
'\040', '\061', '\012', '\150', '\113', '\167', '\040', '\164',
'\150', '\040', '\061', '\012', '\152', '\120', '\152', '\040',
'\151', '\152', '\040', '\061', '\012', '\167', '\124', '\170',
'\040', '\167', '\141', '\040', '\061', '\012', '\152', '\123',
'\152', '\040', '\151', '\152', '\040', '\061', '\012', '\106',
'\147', '\172', '\040', '\156', '\147', '\040', '\061', '\012',
'\142', '\113', '\153', '\040', '\153', '\141', '\040', '\061',
'\012', '\145', '\125', '\152', '\040', '\145', '\162', '\040',
'\061', '\012', '\143', '\104', '\146', '\040', '\143', '\150',
'\040', '\061', '\012', '\170', '\106', '\147', '\040', '\156',
'\147', '\040', '\061', '\012', '\143', '\156', '\127', '\040',
'\141', '\156', '\040', '\061', '\012', '\164', '\125', '\171',
'\040', '\164', '\150', '\040', '\061', '\012', '\112', '\147',
'\170', '\040', '\156', '\147', '\040', '\061', '\012', '\171',
'\165', '\106', '\040', '\161', '\165', '\040', '\061', '\012',
'\166', '\171', '\121', '\040', '\166', '\141', '\040', '\061',
'\012', '\170', '\103', '\172', '\040', '\163', '\172', '\040',
'\061', '\012', '\152', '\122', '\150', '\040', '\164', '\150',
'\040', '\061', '\012', '\143', '\130', '\170', '\040', '\143',
'\150', '\040', '\061', '\012', '\153', '\107', '\153', '\040',
'\153', '\141', '\040', '\061', '\012', '\130', '\156', '\150',
'\040', '\164', '\150', '\040', '\061', '\012', '\161', '\120',
'\150', '\040', '\164', '\150', '\040', '\061', '\012', '\154',
'\146', '\132', '\040', '\154', '\145', '\040', '\061', '\012',
'\161', '\126', '\141', '\040', '\141', '\156', '\040', '\061',
'\012', '\170', '\167', '\163', '\040', '\163', '\164', '\040',
'\061', '\012', '\104', '\172', '\164', '\040', '\164', '\150',
'\040', '\061', '\012', '\170', '\146', '\107', '\040', '\146',
'\157', '\040', '\061', '\012', '\146', '\130', '\150', '\040',
'\164', '\150', '\040', '\061', '\012', '\152', '\147', '\126',
'\040', '\156', '\147', '\040', '\061', '\012', '\166', '\112',
'\152', '\040', '\151', '\152', '\040', '\061', '\012', '\142',
'\130', '\152', '\040', '\151', '\152', '\040', '\061', '\012',
'\143', '\147', '\107', '\040', '\143', '\150', '\040', '\061',
'\012', '\166', '\165', '\127', '\040', '\161', '\165', '\040',
'\061', '\012', '\164', '\170', '\107', '\040', '\164', '\150',
'\040', '\061', '\012', '\132', '\170', '\172', '\040', '\163',
'\172', '\040', '\061', '\012', '\146', '\116', '\143', '\040',
'\143', '\150', '\040', '\061', '\012', '\157', '\102', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\127', '\147',
'\166', '\040', '\156', '\147', '\040', '\061', '\012', '\110',
'\167', '\172', '\040', '\163', '\172', '\040', '\061', '\012',
'\157', '\141', '\127', '\040', '\141', '\156', '\040', '\061',
'\012', '\166', '\122', '\147', '\040', '\156', '\147', '\040',
'\061', '\012', '\165', '\130', '\172', '\040', '\161', '\165',
'\040', '\061', '\012', '\146', '\172', '\121', '\040', '\163',
'\172', '\040', '\061', '\012', '\142', '\143', '\102', '\040',
'\143', '\150', '\040', '\061', '\012', '\102', '\156', '\167',
'\040', '\141', '\156', '\040', '\061', '\012', '\147', '\166',
'\102', '\040', '\156', '\147', '\040', '\061', '\012', '\162',
'\121', '\155', '\040', '\145', '\162', '\040', '\061', '\012',
'\143', '\166', '\125', '\040', '\143', '\150', '\040', '\061',
'\012', '\170', '\150', '\122', '\040', '\164', '\150', '\040',
'\061', '\012', '\172', '\170', '\122', '\040', '\163', '\172',
'\040', '\061', '\012', '\142', '\164', '\132', '\040', '\164',
'\150', '\040', '\061', '\012', '\113', '\153', '\146', '\040',
'\153', '\141', '\040', '\061', '\012', '\172', '\112', '\167',
'\040', '\163', '\172', '\040', '\061', '\012', '\165', '\167',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\160',
'\123', '\170', '\040', '\160', '\162', '\040', '\061', '\012',
'\171', '\122', '\166', '\040', '\166', '\141', '\040', '\061',
'\012', '\156', '\103', '\161', '\040', '\141', '\156', '\040',
'\061', '\012', '\164', '\107', '\166', '\040', '\164', '\150',
'\040', '\061', '\012', '\167', '\147', '\124', '\040', '\156',
'\147', '\040', '\061', '\012', '\153', '\116', '\172', '\040',
'\163', '\172', '\040', '\061', '\012', '\157', '\110', '\153',
'\040', '\157', '\156', '\040', '\061', '\012', '\127', '\172',
'\167', '\040', '\163', '\172', '\040', '\061', '\012', '\150',
'\166', '\125', '\040', '\164', '\150', '\040', '\061', '\012',
'\163', '\153', '\130', '\040', '\163', '\164', '\040', '\061',
'\012', '\166', '\131', '\172', '\040', '\163', '\172', '\040',
'\061', '\012', '\152', '\157', '\132', '\040', '\157', '\156',
'\040', '\061', '\012', '\156', '\107', '\161', '\040', '\141',
'\156', '\040', '\061', '\012', '\161', '\155', '\115', '\040',
'\161', '\165', '\040', '\061', '\012', '\102', '\155', '\162',
'\040', '\145', '\162', '\040', '\061', '\012', '\163', '\126',
'\147', '\040', '\156', '\147', '\040', '\061', '\012', '\165',
'\103', '\166', '\040', '\161', '\165', '\040', '\061', '\012',
'\151', '\130', '\172', '\040', '\151', '\156', '\040', '\061',
'\012', '\166', '\113', '\160', '\040', '\166', '\141', '\040',
'\061', '\012', '\154', '\105', '\167', '\040', '\154', '\145',
'\040', '\061', '\012', '\150', '\150', '\106', '\040', '\164',
'\150', '\040', '\061', '\012', '\151', '\167', '\123', '\040',
'\151', '\156', '\040', '\061', '\012', '\161', '\171', '\125',
'\040', '\161', '\165', '\040', '\061', '\012', '\152', '\152',
'\131', '\040', '\151', '\152', '\040', '\061', '\012', '\131',
'\147', '\155', '\040', '\156', '\147', '\040', '\061', '\012',
'\167', '\112', '\144', '\040', '\144', '\145', '\040', '\061',
'\012', '\145', '\121', '\160', '\040', '\145', '\162', '\040',
'\061', '\012', '\131', '\146', '\142', '\040', '\142', '\145',
'\040', '\061', '\012', '\127', '\160', '\147', '\040', '\156',
'\147', '\040', '\061', '\012', '\152', '\144', '\123', '\040',
'\144', '\145', '\040', '\061', '\012', '\166', '\155', '\107',
'\040', '\166', '\141', '\040', '\061', '\012', '\155', '\144',
'\124', '\040', '\144', '\145', '\040', '\061', '\012', '\147',
'\162', '\132', '\040', '\156', '\147', '\040', '\061', '\012',
'\171', '\161', '\116', '\040', '\161', '\165', '\040', '\061',
'\012', '\160', '\102', '\160', '\040', '\160', '\157', '\040',
'\061', '\012', '\146', '\153', '\132', '\040', '\153', '\141',
'\040', '\061', '\012', '\161', '\145', '\102', '\040', '\161',
'\165', '\040', '\061', '\012', '\143', '\107', '\163', '\040',
'\143', '\150', '\040', '\061', '\012', '\105', '\161', '\147',
'\040', '\161', '\165', '\040', '\061', '\012', '\143', '\146',
'\117', '\040', '\143', '\150', '\040', '\061', '\012', '\165',
'\123', '\170', '\040', '\161', '\165', '\040', '\061', '\012',
'\104', '\150', '\146', '\040', '\164', '\150', '\040', '\061',
'\012', '\121', '\152', '\162', '\040', '\145', '\162', '\040',
'\061', '\012', '\170', '\161', '\132', '\040', '\161', '\165',
'\040', '\061', '\012', '\171', '\121', '\146', '\040', '\156',
'\171', '\040', '\061', '\012', '\156', '\160', '\131', '\040',
'\141', '\156', '\040', '\061', '\012', '\170', '\104', '\143',
'\040', '\143', '\150', '\040', '\061', '\012', '\142', '\155',
'\121', '\040', '\155', '\145', '\040', '\061', '\012', '\153',
'\115', '\142', '\040', '\153', '\141', '\040', '\061', '\012',
'\141', '\161', '\103', '\040', '\141', '\156', '\040', '\061',
'\012', '\152', '\131', '\154', '\040', '\154', '\145', '\040',
'\061', '\012', '\167', '\153', '\104', '\040', '\153', '\141',
'\040', '\061', '\012', '\143', '\127', '\163', '\040', '\143',
'\150', '\040', '\061', '\012', '\171', '\171', '\112', '\040',
'\156', '\171', '\040', '\061', '\012', '\167', '\166', '\126',
'\040', '\166', '\141', '\040', '\061', '\012', '\154', '\131',
'\142', '\040', '\154', '\145', '\040', '\061', '\012', '\161',
'\162', '\127', '\040', '\161', '\165', '\040', '\061', '\012',
'\142', '\161', '\172', '\040', '\161', '\165', '\040', '\061',
'\012', '\167', '\152', '\103', '\040', '\151', '\152', '\040',
'\061', '\012', '\166', '\113', '\171', '\040', '\166', '\141',
'\040', '\061', '\012', '\166', '\152', '\104', '\040', '\151',
'\152', '\040', '\061', '\012', '\163', '\104', '\163', '\040',
'\163', '\164', '\040', '\061', '\012', '\146', '\113', '\146',
'\040', '\146', '\157', '\040', '\061', '\012', '\172', '\163',
'\124', '\040', '\163', '\164', '\040', '\061', '\012', '\152',
'\131', '\143', '\040', '\143', '\150', '\040', '\061', '\012',
'\131', '\167', '\164', '\040', '\164', '\150', '\040', '\061',
'\012', '\110', '\152', '\167', '\040', '\151', '\152', '\040',
'\061', '\012', '\167', '\111', '\171', '\040', '\167', '\141',
'\040', '\061', '\012', '\146', '\146', '\125', '\040', '\146',
'\157', '\040', '\061', '\012', '\127', '\156', '\170', '\040',
'\141', '\156', '\040', '\061', '\012', '\145', '\110', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\146', '\127',
'\171', '\040', '\156', '\171', '\040', '\061', '\012', '\116',
'\167', '\166', '\040', '\166', '\141', '\040', '\061', '\012',
'\171', '\123', '\152', '\040', '\151', '\152', '\040', '\061',
'\012', '\152', '\146', '\103', '\040', '\151', '\152', '\040',
'\061', '\012', '\170', '\130', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\147', '\162', '\111', '\040', '\156',
'\147', '\040', '\061', '\012', '\157', '\126', '\146', '\040',
'\157', '\156', '\040', '\061', '\012', '\126', '\146', '\171',
'\040', '\156', '\171', '\040', '\061', '\012', '\152', '\147',
'\131', '\040', '\156', '\147', '\040', '\061', '\012', '\110',
'\152', '\160', '\040', '\151', '\152', '\040', '\061', '\012',
'\172', '\161', '\103', '\040', '\161', '\165', '\040', '\061',
'\012', '\161', '\171', '\110', '\040', '\161', '\165', '\040',
'\061', '\012', '\153', '\143', '\121', '\040', '\143', '\150',
'\040', '\061', '\012', '\172', '\163', '\105', '\040', '\163',
'\164', '\040', '\061', '\012', '\160', '\103', '\170', '\040',
'\160', '\162', '\040', '\061', '\012', '\153', '\167', '\120',
'\040', '\153', '\141', '\040', '\061', '\012', '\152', '\146',
'\121', '\040', '\151', '\152', '\040', '\061', '\012', '\167',
'\132', '\147', '\040', '\156', '\147', '\040', '\061', '\012',
'\126', '\170', '\155', '\040', '\155', '\145', '\040', '\061',
'\012', '\112', '\166', '\142', '\040', '\166', '\141', '\040',
'\061', '\012', '\163', '\105', '\167', '\040', '\163', '\172',
'\040', '\061', '\012', '\152', '\114', '\154', '\040', '\154',
'\145', '\040', '\061', '\012', '\144', '\117', '\170', '\040',
'\144', '\145', '\040', '\061', '\012', '\167', '\160', '\123',
'\040', '\160', '\162', '\040', '\061', '\012', '\171', '\111',
'\157', '\040', '\157', '\156', '\040', '\061', '\012', '\164',
'\107', '\164', '\040', '\164', '\150', '\040', '\061', '\012',
'\166', '\110', '\172', '\040', '\163', '\172', '\040', '\061',
'\012', '\170', '\107', '\152', '\040', '\151', '\152', '\040',
'\061', '\012', '\147', '\166', '\121', '\040', '\156', '\147',
'\040', '\061', '\012', '\160', '\116', '\162', '\040', '\145',
'\162', '\040', '\061', '\012', '\147', '\161', '\131', '\040',
'\161', '\165', '\040', '\061', '\012', '\163', '\146', '\113',
'\040', '\163', '\164', '\040', '\061', '\012', '\144', '\131',
'\144', '\040', '\144', '\145', '\040', '\061', '\012', '\163',
'\115', '\155', '\040', '\163', '\164', '\040', '\061', '\012',
'\157', '\102', '\170', '\040', '\157', '\156', '\040', '\061',
'\012', '\161', '\163', '\106', '\040', '\161', '\165', '\040',
'\061', '\012', '\142', '\155', '\111', '\040', '\155', '\145',
'\040', '\061', '\012', '\164', '\155', '\103', '\040', '\164',
'\150', '\040', '\061', '\012', '\167', '\154', '\127', '\040',
'\154', '\145', '\040', '\061', '\012', '\124', '\167', '\147',
'\040', '\156', '\147', '\040', '\061', '\012', '\163', '\162',
'\126', '\040', '\145', '\162', '\040', '\061', '\012', '\162',
'\116', '\172', '\040', '\145', '\162', '\040', '\061', '\012',
'\125', '\165', '\143', '\040', '\143', '\150', '\040', '\061',
'\012', '\107', '\152', '\147', '\040', '\156', '\147', '\040',
'\061', '\012', '\156', '\152', '\131', '\040', '\141', '\156',
'\040', '\061', '\012', '\166', '\117', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\121', '\155', '\150', '\040',
'\164', '\150', '\040', '\061', '\012', '\106', '\156', '\146',
'\040', '\141', '\156', '\040', '\061', '\012', '\171', '\166',
'\131', '\040', '\166', '\141', '\040', '\061', '\012', '\160',
'\107', '\146', '\040', '\160', '\162', '\040', '\061', '\012',
'\154', '\110', '\160', '\040', '\141', '\154', '\040', '\061',
'\012', '\161', '\147', '\132', '\040', '\161', '\165', '\040',
'\061', '\012', '\152', '\142', '\123', '\040', '\151', '\152',
'\040', '\061', '\012', '\170', '\121', '\151', '\040', '\151',
'\156', '\040', '\061', '\012', '\164', '\161', '\107', '\040',
'\164', '\150', '\040', '\061', '\012', '\156', '\167', '\111',
'\040', '\141', '\156', '\040', '\061', '\012', '\161', '\153',
'\131', '\040', '\161', '\165', '\040', '\061', '\012', '\127',
'\170', '\171', '\040', '\156', '\171', '\040', '\061', '\012',
'\150', '\104', '\155', '\040', '\164', '\150', '\040', '\061',
'\012', '\161', '\121', '\145', '\040', '\161', '\165', '\040',
'\061', '\012', '\151', '\112', '\160', '\040', '\151', '\156',
'\040', '\061', '\012', '\170', '\162', '\116', '\040', '\145',
'\162', '\040', '\061', '\012', '\144', '\107', '\147', '\040',
'\156', '\147', '\040', '\061', '\012', '\153', '\121', '\170',
'\040', '\153', '\141', '\040', '\061', '\012', '\112', '\161',
'\147', '\040', '\161', '\165', '\040', '\061', '\012', '\150',
'\115', '\153', '\040', '\164', '\150', '\040', '\061', '\012',
'\154', '\152', '\124', '\040', '\154', '\145', '\040', '\061',
'\012', '\130', '\153', '\156', '\040', '\141', '\156', '\040',
'\061', '\012', '\172', '\164', '\161', '\040', '\164', '\150',
'\040', '\061', '\012', '\161', '\116', '\144', '\040', '\161',
'\165', '\040', '\061', '\012', '\163', '\165', '\131', '\040',
'\161', '\165', '\040', '\061', '\012', '\125', '\157', '\141',
'\040', '\141', '\156', '\040', '\061', '\012', '\144', '\152',
'\122', '\040', '\144', '\145', '\040', '\061', '\012', '\155',
'\106', '\146', '\040', '\155', '\145', '\040', '\061', '\012',
'\152', '\172', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\172', '\152', '\122', '\040', '\163', '\172', '\040',
'\061', '\012', '\116', '\156', '\154', '\040', '\141', '\156',
'\040', '\061', '\012', '\164', '\112', '\160', '\040', '\164',
'\150', '\040', '\061', '\012', '\147', '\132', '\162', '\040',
'\156', '\147', '\040', '\061', '\012', '\102', '\167', '\170',
'\040', '\167', '\141', '\040', '\061', '\012', '\144', '\127',
'\172', '\040', '\163', '\172', '\040', '\061', '\012', '\154',
'\167', '\115', '\040', '\154', '\145', '\040', '\061', '\012',
'\111', '\161', '\153', '\040', '\161', '\165', '\040', '\061',
'\012', '\164', '\167', '\132', '\040', '\164', '\150', '\040',
'\061', '\012', '\115', '\167', '\164', '\040', '\164', '\150',
'\040', '\061', '\012', '\153', '\152', '\131', '\040', '\151',
'\152', '\040', '\061', '\012', '\172', '\102', '\166', '\040',
'\163', '\172', '\040', '\061', '\012', '\151', '\167', '\106',
'\040', '\151', '\156', '\040', '\061', '\012', '\162', '\110',
'\172', '\040', '\145', '\162', '\040', '\061', '\012', '\123',
'\161', '\150', '\040', '\164', '\150', '\040', '\061', '\012',
'\157', '\113', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\161', '\152', '\117', '\040', '\161', '\165', '\040',
'\061', '\012', '\150', '\164', '\121', '\040', '\164', '\150',
'\040', '\061', '\012', '\143', '\113', '\170', '\040', '\143',
'\150', '\040', '\061', '\012', '\142', '\161', '\127', '\040',
'\161', '\165', '\040', '\061', '\012', '\153', '\131', '\150',
'\040', '\164', '\150', '\040', '\061', '\012', '\164', '\102',
'\161', '\040', '\164', '\150', '\040', '\061', '\012', '\147',
'\155', '\112', '\040', '\156', '\147', '\040', '\061', '\012',
'\145', '\131', '\170', '\040', '\145', '\162', '\040', '\061',
'\012', '\150', '\107', '\166', '\040', '\164', '\150', '\040',
'\061', '\012', '\150', '\121', '\144', '\040', '\164', '\150',
'\040', '\061', '\012', '\160', '\156', '\130', '\040', '\141',
'\156', '\040', '\061', '\012', '\142', '\166', '\112', '\040',
'\166', '\141', '\040', '\061', '\012', '\163', '\170', '\115',
'\040', '\163', '\164', '\040', '\061', '\012', '\161', '\116',
'\164', '\040', '\164', '\150', '\040', '\061', '\012', '\127',
'\154', '\152', '\040', '\154', '\145', '\040', '\061', '\012',
'\153', '\161', '\104', '\040', '\161', '\165', '\040', '\061',
'\012', '\161', '\144', '\132', '\040', '\161', '\165', '\040',
'\061', '\012', '\155', '\150', '\131', '\040', '\164', '\150',
'\040', '\061', '\012', '\164', '\154', '\103', '\040', '\164',
'\150', '\040', '\061', '\012', '\160', '\161', '\111', '\040',
'\161', '\165', '\040', '\061', '\012', '\171', '\142', '\104',
'\040', '\142', '\145', '\040', '\061', '\012', '\170', '\101',
'\145', '\040', '\145', '\162', '\040', '\061', '\012', '\160',
'\114', '\164', '\040', '\164', '\150', '\040', '\061', '\012',
'\154', '\110', '\142', '\040', '\154', '\145', '\040', '\061',
'\012', '\170', '\126', '\143', '\040', '\143', '\150', '\040',
'\061', '\012', '\144', '\150', '\116', '\040', '\164', '\150',
'\040', '\061', '\012', '\161', '\170', '\125', '\040', '\161',
'\165', '\040', '\061', '\012', '\144', '\126', '\146', '\040',
'\144', '\145', '\040', '\061', '\012', '\132', '\153', '\155',
'\040', '\153', '\141', '\040', '\061', '\012', '\153', '\160',
'\104', '\040', '\153', '\141', '\040', '\061', '\012', '\160',
'\152', '\110', '\040', '\151', '\152', '\040', '\061', '\012',
'\171', '\107', '\155', '\040', '\155', '\145', '\040', '\061',
'\012', '\151', '\171', '\120', '\040', '\151', '\156', '\040',
'\061', '\012', '\167', '\155', '\113', '\040', '\155', '\145',
'\040', '\061', '\012', '\155', '\112', '\172', '\040', '\163',
'\172', '\040', '\061', '\012', '\146', '\155', '\114', '\040',
'\155', '\145', '\040', '\061', '\012', '\143', '\102', '\166',
'\040', '\143', '\150', '\040', '\061', '\012', '\126', '\166',
'\146', '\040', '\166', '\141', '\040', '\061', '\012', '\105',
'\161', '\154', '\040', '\161', '\165', '\040', '\061', '\012',
'\157', '\150', '\126', '\040', '\164', '\150', '\040', '\061',
'\012', '\154', '\103', '\170', '\040', '\154', '\145', '\040',
'\061', '\012', '\157', '\127', '\143', '\040', '\143', '\150',
'\040', '\061', '\012', '\156', '\172', '\130', '\040', '\141',
'\156', '\040', '\061', '\012', '\146', '\111', '\152', '\040',
'\151', '\152', '\040', '\061', '\012', '\153', '\120', '\164',
'\040', '\164', '\150', '\040', '\061', '\012', '\160', '\131',
'\155', '\040', '\155', '\145', '\040', '\061', '\012', '\172',
'\150', '\107', '\040', '\164', '\150', '\040', '\061', '\012',
'\143', '\161', '\116', '\040', '\143', '\150', '\040', '\061',
'\012', '\165', '\155', '\121', '\040', '\161', '\165', '\040',
'\061', '\012', '\167', '\130', '\163', '\040', '\163', '\164',
'\040', '\061', '\012', '\154', '\132', '\152', '\040', '\154',
'\145', '\040', '\061', '\012', '\123', '\170', '\163', '\040',
'\163', '\164', '\040', '\061', '\012', '\113', '\161', '\144',
'\040', '\161', '\165', '\040', '\061', '\012', '\164', '\127',
'\143', '\040', '\164', '\150', '\040', '\061', '\012', '\113',
'\143', '\143', '\040', '\143', '\150', '\040', '\061', '\012',
'\160', '\166', '\102', '\040', '\160', '\157', '\040', '\061',
'\012', '\164', '\147', '\122', '\040', '\164', '\150', '\040',
'\061', '\012', '\171', '\162', '\116', '\040', '\145', '\162',
'\040', '\061', '\012', '\170', '\121', '\162', '\040', '\145',
'\162', '\040', '\061', '\012', '\130', '\166', '\172', '\040',
'\163', '\172', '\040', '\061', '\012', '\154', '\112', '\150',
'\040', '\164', '\150', '\040', '\061', '\012', '\130', '\146',
'\153', '\040', '\153', '\141', '\040', '\061', '\012', '\106',
'\166', '\162', '\040', '\145', '\162', '\040', '\061', '\012',
'\146', '\125', '\142', '\040', '\142', '\145', '\040', '\061',
'\012', '\154', '\132', '\142', '\040', '\154', '\145', '\040',
'\061', '\012', '\147', '\144', '\111', '\040', '\156', '\147',
'\040', '\061', '\012', '\152', '\157', '\111', '\040', '\157',
'\156', '\040', '\061', '\012', '\171', '\113', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\164', '\167', '\172',
'\040', '\164', '\150', '\040', '\061', '\012', '\161', '\112',
'\152', '\040', '\161', '\165', '\040', '\061', '\012', '\166',
'\170', '\115', '\040', '\166', '\141', '\040', '\061', '\012',
'\126', '\172', '\163', '\040', '\163', '\164', '\040', '\061',
'\012', '\146', '\152', '\122', '\040', '\151', '\152', '\040',
'\061', '\012', '\113', '\155', '\172', '\040', '\163', '\172',
'\040', '\061', '\012', '\161', '\111', '\167', '\040', '\161',
'\165', '\040', '\061', '\012', '\152', '\171', '\104', '\040',
'\151', '\152', '\040', '\061', '\012', '\161', '\142', '\125',
'\040', '\161', '\165', '\040', '\061', '\012', '\161', '\153',
'\132', '\040', '\161', '\165', '\040', '\061', '\012', '\152',
'\126', '\147', '\040', '\156', '\147', '\040', '\061', '\012',
'\106', '\150', '\152', '\040', '\164', '\150', '\040', '\061',
'\012', '\161', '\112', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\167', '\120', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\125', '\145', '\157', '\040', '\145',
'\162', '\040', '\061', '\012', '\172', '\130', '\144', '\040',
'\163', '\172', '\040', '\061', '\012', '\147', '\106', '\142',
'\040', '\156', '\147', '\040', '\061', '\012', '\152', '\112',
'\171', '\040', '\151', '\152', '\040', '\061', '\012', '\116',
'\163', '\152', '\040', '\163', '\164', '\040', '\061', '\012',
'\154', '\115', '\142', '\040', '\154', '\145', '\040', '\061',
'\012', '\171', '\121', '\156', '\040', '\141', '\156', '\040',
'\061', '\012', '\144', '\156', '\115', '\040', '\141', '\156',
'\040', '\061', '\012', '\171', '\122', '\147', '\040', '\156',
'\147', '\040', '\061', '\012', '\106', '\152', '\143', '\040',
'\143', '\150', '\040', '\061', '\012', '\144', '\113', '\147',
'\040', '\156', '\147', '\040', '\061', '\012', '\147', '\161',
'\126', '\040', '\156', '\147', '\040', '\061', '\012', '\147',
'\103', '\153', '\040', '\156', '\147', '\040', '\061', '\012',
'\163', '\117', '\172', '\040', '\163', '\164', '\040', '\061',
'\012', '\150', '\154', '\117', '\040', '\164', '\150', '\040',
'\061', '\012', '\161', '\142', '\116', '\040', '\161', '\165',
'\040', '\061', '\012', '\163', '\152', '\116', '\040', '\163',
'\164', '\040', '\061', '\012', '\125', '\152', '\172', '\040',
'\163', '\172', '\040', '\061', '\012', '\162', '\126', '\155',
'\040', '\145', '\162', '\040', '\061', '\012', '\127', '\152',
'\163', '\040', '\163', '\164', '\040', '\061', '\012', '\142',
'\155', '\115', '\040', '\155', '\145', '\040', '\061', '\012',
'\126', '\172', '\170', '\040', '\163', '\172', '\040', '\061',
'\012', '\150', '\132', '\147', '\040', '\164', '\150', '\040',
'\061', '\012', '\172', '\106', '\164', '\040', '\164', '\150',
'\040', '\061', '\012', '\171', '\150', '\112', '\040', '\164',
'\150', '\040', '\061', '\012', '\166', '\116', '\153', '\040',
'\153', '\141', '\040', '\061', '\012', '\172', '\142', '\124',
'\040', '\163', '\172', '\040', '\061', '\012', '\170', '\155',
'\112', '\040', '\155', '\145', '\040', '\061', '\012', '\106',
'\143', '\163', '\040', '\143', '\150', '\040', '\061', '\012',
'\171', '\124', '\143', '\040', '\143', '\150', '\040', '\061',
'\012', '\143', '\123', '\147', '\040', '\143', '\150', '\040',
'\061', '\012', '\161', '\155', '\120', '\040', '\161', '\165',
'\040', '\061', '\012', '\155', '\106', '\172', '\040', '\163',
'\172', '\040', '\061', '\012', '\142', '\144', '\111', '\040',
'\144', '\145', '\040', '\061', '\012', '\152', '\154', '\113',
'\040', '\154', '\145', '\040', '\061', '\012', '\142', '\156',
'\102', '\040', '\141', '\156', '\040', '\061', '\012', '\161',
'\171', '\121', '\040', '\161', '\165', '\040', '\061', '\012',
'\126', '\152', '\153', '\040', '\151', '\152', '\040', '\061',
'\012', '\150', '\172', '\125', '\040', '\164', '\150', '\040',
'\061', '\012', '\161', '\147', '\160', '\040', '\161', '\165',
'\040', '\061', '\012', '\154', '\161', '\127', '\040', '\161',
'\165', '\040', '\061', '\012', '\146', '\116', '\156', '\040',
'\141', '\156', '\040', '\061', '\012', '\124', '\152', '\160',
'\040', '\151', '\152', '\040', '\061', '\012', '\166', '\154',
'\126', '\040', '\154', '\145', '\040', '\061', '\012', '\162',
'\126', '\160', '\040', '\145', '\162', '\040', '\061', '\012',
'\142', '\114', '\144', '\040', '\144', '\145', '\040', '\061',
'\012', '\171', '\144', '\121', '\040', '\144', '\145', '\040',
'\061', '\012', '\147', '\131', '\147', '\040', '\156', '\147',
'\040', '\061', '\012', '\161', '\150', '\105', '\040', '\164',
'\150', '\040', '\061', '\012', '\107', '\163', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\147', '\127', '\172',
'\040', '\156', '\147', '\040', '\061', '\012', '\121', '\164',
'\153', '\040', '\164', '\150', '\040', '\061', '\012', '\110',
'\172', '\167', '\040', '\163', '\172', '\040', '\061', '\012',
'\153', '\111', '\157', '\040', '\150', '\157', '\040', '\061',
'\012', '\153', '\146', '\103', '\040', '\153', '\141', '\040',
'\061', '\012', '\172', '\102', '\147', '\040', '\156', '\147',
'\040', '\061', '\012', '\152', '\112', '\160', '\040', '\151',
'\152', '\040', '\061', '\012', '\145', '\111', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\166', '\165', '\102',
'\040', '\161', '\165', '\040', '\061', '\012', '\127', '\142',
'\147', '\040', '\156', '\147', '\040', '\061', '\012', '\112',
'\152', '\160', '\040', '\151', '\152', '\040', '\061', '\012',
'\154', '\130', '\153', '\040', '\154', '\145', '\040', '\061',
'\012', '\124', '\146', '\170', '\040', '\146', '\157', '\040',
'\061', '\012', '\172', '\114', '\154', '\040', '\154', '\145',
'\040', '\061', '\012', '\144', '\161', '\124', '\040', '\161',
'\165', '\040', '\061', '\012', '\157', '\132', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\112', '\146', '\165',
'\040', '\161', '\165', '\040', '\061', '\012', '\121', '\150',
'\150', '\040', '\164', '\150', '\040', '\061', '\012', '\161',
'\153', '\113', '\040', '\161', '\165', '\040', '\061', '\012',
'\105', '\152', '\143', '\040', '\143', '\150', '\040', '\061',
'\012', '\172', '\167', '\116', '\040', '\163', '\172', '\040',
'\061', '\012', '\171', '\121', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\144', '\104', '\160', '\040', '\144',
'\145', '\040', '\061', '\012', '\120', '\167', '\167', '\040',
'\167', '\141', '\040', '\061', '\012', '\172', '\164', '\103',
'\040', '\164', '\150', '\040', '\061', '\012', '\152', '\164',
'\110', '\040', '\164', '\150', '\040', '\061', '\012', '\171',
'\162', '\130', '\040', '\145', '\162', '\040', '\061', '\012',
'\166', '\167', '\124', '\040', '\166', '\141', '\040', '\061',
'\012', '\171', '\122', '\150', '\040', '\164', '\150', '\040',
'\061', '\012', '\167', '\121', '\164', '\040', '\164', '\150',
'\040', '\061', '\012', '\154', '\130', '\172', '\040', '\154',
'\145', '\040', '\061', '\012', '\143', '\146', '\114', '\040',
'\143', '\150', '\040', '\061', '\012', '\106', '\167', '\154',
'\040', '\154', '\145', '\040', '\061', '\012', '\162', '\116',
'\167', '\040', '\145', '\162', '\040', '\061', '\012', '\102',
'\150', '\170', '\040', '\164', '\150', '\040', '\061', '\012',
'\147', '\154', '\132', '\040', '\156', '\147', '\040', '\061',
'\012', '\147', '\143', '\104', '\040', '\143', '\150', '\040',
'\061', '\012', '\123', '\146', '\163', '\040', '\163', '\164',
'\040', '\061', '\012', '\125', '\172', '\146', '\040', '\163',
'\172', '\040', '\061', '\012', '\124', '\144', '\154', '\040',
'\154', '\145', '\040', '\061', '\012', '\144', '\122', '\156',
'\040', '\141', '\156', '\040', '\061', '\012', '\166', '\131',
'\167', '\040', '\166', '\141', '\040', '\061', '\012', '\170',
'\143', '\104', '\040', '\143', '\150', '\040', '\061', '\012',
'\170', '\143', '\103', '\040', '\143', '\150', '\040', '\061',
'\012', '\154', '\102', '\170', '\040', '\154', '\145', '\040',
'\061', '\012', '\147', '\110', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\167', '\112', '\171', '\040', '\167',
'\141', '\040', '\061', '\012', '\171', '\162', '\117', '\040',
'\145', '\162', '\040', '\061', '\012', '\166', '\161', '\106',
'\040', '\161', '\165', '\040', '\061', '\012', '\164', '\131',
'\142', '\040', '\164', '\150', '\040', '\061', '\012', '\132',
'\152', '\167', '\040', '\151', '\152', '\040', '\061', '\012',
'\152', '\114', '\153', '\040', '\151', '\152', '\040', '\061',
'\012', '\110', '\166', '\146', '\040', '\166', '\141', '\040',
'\061', '\012', '\160', '\156', '\123', '\040', '\141', '\156',
'\040', '\061', '\012', '\160', '\143', '\124', '\040', '\143',
'\150', '\040', '\061', '\012', '\163', '\106', '\153', '\040',
'\163', '\164', '\040', '\061', '\012', '\144', '\143', '\117',
'\040', '\143', '\150', '\040', '\061', '\012', '\172', '\120',
'\167', '\040', '\163', '\172', '\040', '\061', '\012', '\166',
'\116', '\146', '\040', '\166', '\141', '\040', '\061', '\012',
'\107', '\144', '\170', '\040', '\144', '\145', '\040', '\061',
'\012', '\144', '\154', '\120', '\040', '\154', '\145', '\040',
'\061', '\012', '\152', '\114', '\170', '\040', '\152', '\157',
'\040', '\061', '\012', '\152', '\132', '\152', '\040', '\151',
'\152', '\040', '\061', '\012', '\167', '\167', '\124', '\040',
'\167', '\141', '\040', '\061', '\012', '\164', '\107', '\170',
'\040', '\164', '\150', '\040', '\061', '\012', '\146', '\150',
'\123', '\040', '\164', '\150', '\040', '\061', '\012', '\130',
'\164', '\153', '\040', '\164', '\150', '\040', '\061', '\012',
'\170', '\156', '\127', '\040', '\157', '\156', '\040', '\061',
'\012', '\160', '\153', '\112', '\040', '\153', '\141', '\040',
'\061', '\012', '\170', '\111', '\157', '\040', '\157', '\156',
'\040', '\061', '\012', '\132', '\170', '\142', '\040', '\142',
'\145', '\040', '\061', '\012', '\156', '\117', '\152', '\040',
'\141', '\156', '\040', '\061', '\012', '\167', '\110', '\152',
'\040', '\151', '\152', '\040', '\061', '\012', '\146', '\152',
'\123', '\040', '\151', '\152', '\040', '\061', '\012', '\167',
'\144', '\114', '\040', '\144', '\145', '\040', '\061', '\012',
'\152', '\142', '\116', '\040', '\151', '\152', '\040', '\061',
'\012', '\171', '\153', '\117', '\040', '\153', '\141', '\040',
'\061', '\012', '\170', '\161', '\102', '\040', '\161', '\165',
'\040', '\061', '\012', '\161', '\172', '\116', '\040', '\161',
'\165', '\040', '\061', '\012', '\121', '\142', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\106', '\161', '\167',
'\040', '\161', '\165', '\040', '\061', '\012', '\152', '\127',
'\167', '\040', '\151', '\152', '\040', '\061', '\012', '\156',
'\170', '\115', '\040', '\141', '\156', '\040', '\061', '\012',
'\164', '\160', '\130', '\040', '\164', '\150', '\040', '\061',
'\012', '\124', '\164', '\172', '\040', '\164', '\150', '\040',
'\061', '\012', '\172', '\163', '\110', '\040', '\163', '\164',
'\040', '\061', '\012', '\146', '\152', '\172', '\040', '\163',
'\172', '\040', '\061', '\012', '\170', '\111', '\147', '\040',
'\156', '\147', '\040', '\061', '\012', '\170', '\153', '\131',
'\040', '\153', '\141', '\040', '\061', '\012', '\106', '\161',
'\141', '\040', '\141', '\156', '\040', '\061', '\012', '\157',
'\107', '\153', '\040', '\157', '\156', '\040', '\061', '\012',
'\110', '\156', '\143', '\040', '\141', '\156', '\040', '\061',
'\012', '\152', '\120', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\172', '\154', '\127', '\040', '\154', '\145',
'\040', '\061', '\012', '\165', '\122', '\170', '\040', '\161',
'\165', '\040', '\061', '\012', '\165', '\107', '\170', '\040',
'\161', '\165', '\040', '\061', '\012', '\152', '\131', '\166',
'\040', '\151', '\152', '\040', '\061', '\012', '\113', '\160',
'\172', '\040', '\163', '\172', '\040', '\061', '\012', '\147',
'\121', '\157', '\040', '\156', '\147', '\040', '\061', '\012',
'\113', '\167', '\170', '\040', '\167', '\141', '\040', '\061',
'\012', '\152', '\116', '\167', '\040', '\151', '\152', '\040',
'\061', '\012', '\164', '\144', '\104', '\040', '\164', '\150',
'\040', '\061', '\012', '\171', '\107', '\152', '\040', '\151',
'\152', '\040', '\061', '\012', '\114', '\142', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\122', '\162', '\143',
'\040', '\143', '\150', '\040', '\061', '\012', '\161', '\166',
'\130', '\040', '\161', '\165', '\040', '\061', '\012', '\150',
'\150', '\113', '\040', '\164', '\150', '\040', '\061', '\012',
'\153', '\132', '\170', '\040', '\153', '\141', '\040', '\061',
'\012', '\170', '\104', '\146', '\040', '\146', '\157', '\040',
'\061', '\012', '\120', '\152', '\146', '\040', '\151', '\152',
'\040', '\061', '\012', '\143', '\147', '\106', '\040', '\143',
'\150', '\040', '\061', '\012', '\166', '\103', '\153', '\040',
'\153', '\141', '\040', '\061', '\012', '\146', '\127', '\167',
'\040', '\157', '\167', '\040', '\061', '\012', '\155', '\112',
'\160', '\040', '\155', '\145', '\040', '\061', '\012', '\146',
'\130', '\145', '\040', '\145', '\162', '\040', '\061', '\012',
'\165', '\131', '\160', '\040', '\161', '\165', '\040', '\061',
'\012', '\152', '\110', '\153', '\040', '\151', '\152', '\040',
'\061', '\012', '\167', '\144', '\120', '\040', '\144', '\145',
'\040', '\061', '\012', '\161', '\106', '\153', '\040', '\161',
'\165', '\040', '\061', '\012', '\152', '\162', '\107', '\040',
'\145', '\162', '\040', '\061', '\012', '\146', '\147', '\104',
'\040', '\156', '\147', '\040', '\061', '\012', '\146', '\163',
'\107', '\040', '\163', '\164', '\040', '\061', '\012', '\126',
'\147', '\142', '\040', '\156', '\147', '\040', '\061', '\012',
'\170', '\101', '\141', '\040', '\141', '\156', '\040', '\061',
'\012', '\147', '\164', '\132', '\040', '\164', '\150', '\040',
'\061', '\012', '\164', '\154', '\161', '\040', '\164', '\150',
'\040', '\061', '\012', '\124', '\155', '\167', '\040', '\155',
'\145', '\040', '\061', '\012', '\147', '\171', '\131', '\040',
'\156', '\147', '\040', '\061', '\012', '\121', '\170', '\164',
'\040', '\164', '\150', '\040', '\061', '\012', '\125', '\170',
'\172', '\040', '\163', '\172', '\040', '\061', '\012', '\151',
'\126', '\162', '\040', '\151', '\156', '\040', '\061', '\012',
'\172', '\161', '\111', '\040', '\161', '\165', '\040', '\061',
'\012', '\116', '\142', '\167', '\040', '\167', '\141', '\040',
'\061', '\012', '\104', '\150', '\144', '\040', '\164', '\150',
'\040', '\061', '\012', '\155', '\117', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\151', '\102', '\144', '\040',
'\151', '\156', '\040', '\061', '\012', '\143', '\161', '\102',
'\040', '\143', '\150', '\040', '\061', '\012', '\172', '\121',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\127',
'\142', '\166', '\040', '\166', '\141', '\040', '\061', '\012',
'\121', '\153', '\163', '\040', '\153', '\141', '\040', '\061',
'\012', '\161', '\120', '\141', '\040', '\141', '\156', '\040',
'\061', '\012', '\164', '\146', '\111', '\040', '\164', '\150',
'\040', '\061', '\012', '\155', '\132', '\163', '\040', '\163',
'\164', '\040', '\061', '\012', '\160', '\104', '\163', '\040',
'\163', '\164', '\040', '\061', '\012', '\156', '\112', '\152',
'\040', '\141', '\156', '\040', '\061', '\012', '\172', '\143',
'\160', '\040', '\143', '\150', '\040', '\061', '\012', '\164',
'\127', '\152', '\040', '\164', '\150', '\040', '\061', '\012',
'\132', '\170', '\160', '\040', '\160', '\162', '\040', '\061',
'\012', '\166', '\120', '\171', '\040', '\166', '\141', '\040',
'\061', '\012', '\144', '\170', '\113', '\040', '\144', '\145',
'\040', '\061', '\012', '\157', '\120', '\166', '\040', '\157',
'\156', '\040', '\061', '\012', '\162', '\152', '\116', '\040',
'\145', '\162', '\040', '\061', '\012', '\157', '\121', '\150',
'\040', '\164', '\150', '\040', '\061', '\012', '\166', '\167',
'\110', '\040', '\166', '\141', '\040', '\061', '\012', '\121',
'\150', '\160', '\040', '\164', '\150', '\040', '\061', '\012',
'\170', '\163', '\125', '\040', '\163', '\164', '\040', '\061',
'\012', '\153', '\107', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\167', '\152', '\127', '\040', '\151', '\152',
'\040', '\061', '\012', '\120', '\167', '\170', '\040', '\167',
'\141', '\040', '\061', '\012', '\102', '\142', '\156', '\040',
'\141', '\156', '\040', '\061', '\012', '\170', '\117', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\161', '\160',
'\116', '\040', '\161', '\165', '\040', '\061', '\012', '\156',
'\142', '\161', '\040', '\141', '\156', '\040', '\061', '\012',
'\172', '\160', '\115', '\040', '\163', '\172', '\040', '\061',
'\012', '\152', '\155', '\102', '\040', '\151', '\152', '\040',
'\061', '\012', '\116', '\161', '\152', '\040', '\161', '\165',
'\040', '\061', '\012', '\172', '\131', '\144', '\040', '\163',
'\172', '\040', '\061', '\012', '\131', '\142', '\143', '\040',
'\143', '\150', '\040', '\061', '\012', '\170', '\143', '\127',
'\040', '\143', '\150', '\040', '\061', '\012', '\147', '\120',
'\147', '\040', '\156', '\147', '\040', '\061', '\012', '\121',
'\171', '\163', '\040', '\163', '\164', '\040', '\061', '\012',
'\102', '\150', '\161', '\040', '\164', '\150', '\040', '\061',
'\012', '\171', '\107', '\170', '\040', '\156', '\171', '\040',
'\061', '\012', '\161', '\170', '\114', '\040', '\161', '\165',
'\040', '\061', '\012', '\112', '\146', '\144', '\040', '\144',
'\145', '\040', '\061', '\012', '\155', '\142', '\126', '\040',
'\155', '\145', '\040', '\061', '\012', '\160', '\153', '\131',
'\040', '\153', '\141', '\040', '\061', '\012', '\143', '\127',
'\154', '\040', '\143', '\150', '\040', '\061', '\012', '\167',
'\102', '\147', '\040', '\156', '\147', '\040', '\061', '\012',
'\166', '\117', '\167', '\040', '\166', '\141', '\040', '\061',
'\012', '\107', '\160', '\142', '\040', '\160', '\162', '\040',
'\061', '\012', '\120', '\160', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\146', '\163', '\130', '\040', '\163',
'\164', '\040', '\061', '\012', '\166', '\164', '\121', '\040',
'\164', '\150', '\040', '\061', '\012', '\171', '\103', '\152',
'\040', '\151', '\152', '\040', '\061', '\012', '\171', '\157',
'\131', '\040', '\157', '\156', '\040', '\061', '\012', '\160',
'\167', '\121', '\040', '\160', '\162', '\040', '\061', '\012',
'\171', '\107', '\144', '\040', '\144', '\145', '\040', '\061',
'\012', '\161', '\164', '\112', '\040', '\164', '\150', '\040',
'\061', '\012', '\156', '\162', '\132', '\040', '\141', '\156',
'\040', '\061', '\012', '\145', '\126', '\170', '\040', '\145',
'\162', '\040', '\061', '\012', '\116', '\162', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\167', '\164', '\101',
'\040', '\164', '\150', '\040', '\061', '\012', '\146', '\110',
'\146', '\040', '\146', '\157', '\040', '\061', '\012', '\147',
'\163', '\121', '\040', '\156', '\147', '\040', '\061', '\012',
'\150', '\154', '\103', '\040', '\164', '\150', '\040', '\061',
'\012', '\144', '\114', '\143', '\040', '\143', '\150', '\040',
'\061', '\012', '\172', '\152', '\103', '\040', '\163', '\172',
'\040', '\061', '\012', '\152', '\166', '\131', '\040', '\151',
'\152', '\040', '\061', '\012', '\164', '\111', '\152', '\040',
'\164', '\150', '\040', '\061', '\012', '\160', '\166', '\114',
'\040', '\166', '\141', '\040', '\061', '\012', '\110', '\150',
'\147', '\040', '\164', '\150', '\040', '\061', '\012', '\171',
'\115', '\166', '\040', '\166', '\141', '\040', '\061', '\012',
'\170', '\115', '\156', '\040', '\141', '\156', '\040', '\061',
'\012', '\164', '\131', '\170', '\040', '\164', '\150', '\040',
'\061', '\012', '\166', '\126', '\160', '\040', '\166', '\141',
'\040', '\061', '\012', '\131', '\156', '\142', '\040', '\141',
'\156', '\040', '\061', '\012', '\166', '\155', '\130', '\040',
'\166', '\141', '\040', '\061', '\012', '\161', '\152', '\121',
'\040', '\161', '\165', '\040', '\061', '\012', '\166', '\121',
'\162', '\040', '\145', '\162', '\040', '\061', '\012', '\150',
'\121', '\172', '\040', '\164', '\150', '\040', '\061', '\012',
'\155', '\116', '\146', '\040', '\155', '\145', '\040', '\061',
'\012', '\172', '\146', '\131', '\040', '\163', '\172', '\040',
'\061', '\012', '\170', '\152', '\123', '\040', '\151', '\152',
'\040', '\061', '\012', '\152', '\102', '\155', '\040', '\151',
'\152', '\040', '\061', '\012', '\152', '\160', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\156', '\112', '\161',
'\040', '\141', '\156', '\040', '\061', '\012', '\113', '\156',
'\172', '\040', '\141', '\156', '\040', '\061', '\012', '\147',
'\107', '\146', '\040', '\156', '\147', '\040', '\061', '\012',
'\160', '\132', '\170', '\040', '\160', '\162', '\040', '\061',
'\012', '\107', '\161', '\154', '\040', '\161', '\165', '\040',
'\061', '\012', '\125', '\161', '\155', '\040', '\161', '\165',
'\040', '\061', '\012', '\145', '\127', '\166', '\040', '\145',
'\162', '\040', '\061', '\012', '\146', '\107', '\147', '\040',
'\156', '\147', '\040', '\061', '\012', '\161', '\163', '\101',
'\040', '\161', '\165', '\040', '\061', '\012', '\165', '\150',
'\131', '\040', '\164', '\150', '\040', '\061', '\012', '\170',
'\150', '\110', '\040', '\164', '\150', '\040', '\061', '\012',
'\171', '\170', '\123', '\040', '\156', '\171', '\040', '\061',
'\012', '\162', '\170', '\113', '\040', '\145', '\162', '\040',
'\061', '\012', '\150', '\116', '\143', '\040', '\164', '\150',
'\040', '\061', '\012', '\126', '\167', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\141', '\116', '\166', '\040',
'\141', '\156', '\040', '\061', '\012', '\121', '\172', '\166',
'\040', '\163', '\172', '\040', '\061', '\012', '\146', '\121',
'\156', '\040', '\141', '\156', '\040', '\061', '\012', '\152',
'\172', '\110', '\040', '\163', '\172', '\040', '\061', '\012',
'\122', '\166', '\150', '\040', '\164', '\150', '\040', '\061',
'\012', '\121', '\160', '\164', '\040', '\164', '\150', '\040',
'\061', '\012', '\161', '\130', '\166', '\040', '\161', '\165',
'\040', '\061', '\012', '\160', '\150', '\121', '\040', '\164',
'\150', '\040', '\061', '\012', '\121', '\154', '\142', '\040',
'\154', '\145', '\040', '\061', '\012', '\142', '\156', '\121',
'\040', '\141', '\156', '\040', '\061', '\012', '\156', '\152',
'\113', '\040', '\141', '\156', '\040', '\061', '\012', '\112',
'\152', '\163', '\040', '\163', '\164', '\040', '\061', '\012',
'\164', '\112', '\170', '\040', '\164', '\150', '\040', '\061',
'\012', '\151', '\167', '\130', '\040', '\151', '\156', '\040',
'\061', '\012', '\156', '\126', '\144', '\040', '\141', '\156',
'\040', '\061', '\012', '\153', '\172', '\101', '\040', '\163',
'\172', '\040', '\061', '\012', '\165', '\167', '\105', '\040',
'\161', '\165', '\040', '\061', '\012', '\124', '\163', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\150', '\161',
'\115', '\040', '\164', '\150', '\040', '\061', '\012', '\122',
'\156', '\161', '\040', '\141', '\156', '\040', '\061', '\012',
'\162', '\104', '\156', '\040', '\141', '\156', '\040', '\061',
'\012', '\171', '\116', '\142', '\040', '\142', '\145', '\040',
'\061', '\012', '\165', '\161', '\116', '\040', '\161', '\165',
'\040', '\061', '\012', '\146', '\113', '\167', '\040', '\167',
'\141', '\040', '\061', '\012', '\111', '\161', '\156', '\040',
'\141', '\156', '\040', '\061', '\012', '\170', '\110', '\143',
'\040', '\143', '\150', '\040', '\061', '\012', '\127', '\167',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\147',
'\115', '\167', '\040', '\156', '\147', '\040', '\061', '\012',
'\171', '\127', '\146', '\040', '\156', '\171', '\040', '\061',
'\012', '\166', '\143', '\117', '\040', '\143', '\150', '\040',
'\061', '\012', '\107', '\153', '\155', '\040', '\153', '\141',
'\040', '\061', '\012', '\146', '\122', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\144', '\115', '\143', '\040',
'\156', '\144', '\040', '\061', '\012', '\132', '\150', '\170',
'\040', '\164', '\150', '\040', '\061', '\012', '\161', '\154',
'\110', '\040', '\161', '\165', '\040', '\061', '\012', '\161',
'\125', '\154', '\040', '\161', '\165', '\040', '\061', '\012',
'\172', '\110', '\146', '\040', '\163', '\172', '\040', '\061',
'\012', '\167', '\103', '\153', '\040', '\153', '\141', '\040',
'\061', '\012', '\121', '\146', '\152', '\040', '\151', '\152',
'\040', '\061', '\012', '\121', '\153', '\167', '\040', '\153',
'\141', '\040', '\061', '\012', '\155', '\131', '\150', '\040',
'\164', '\150', '\040', '\061', '\012', '\144', '\143', '\125',
'\040', '\143', '\150', '\040', '\061', '\012', '\152', '\124',
'\146', '\040', '\151', '\152', '\040', '\061', '\012', '\162',
'\152', '\106', '\040', '\145', '\162', '\040', '\061', '\012',
'\150', '\170', '\121', '\040', '\164', '\150', '\040', '\061',
'\012', '\167', '\116', '\146', '\040', '\167', '\141', '\040',
'\061', '\012', '\114', '\147', '\147', '\040', '\156', '\147',
'\040', '\061', '\012', '\106', '\144', '\165', '\040', '\161',
'\165', '\040', '\061', '\012', '\164', '\112', '\167', '\040',
'\164', '\150', '\040', '\061', '\012', '\171', '\143', '\121',
'\040', '\143', '\150', '\040', '\061', '\012', '\170', '\130',
'\146', '\040', '\146', '\157', '\040', '\061', '\012', '\167',
'\167', '\121', '\040', '\167', '\141', '\040', '\061', '\012',
'\145', '\166', '\121', '\040', '\145', '\162', '\040', '\061',
'\012', '\106', '\143', '\152', '\040', '\143', '\150', '\040',
'\061', '\012', '\103', '\171', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\164', '\160', '\106', '\040', '\164',
'\150', '\040', '\061', '\012', '\101', '\170', '\152', '\040',
'\151', '\152', '\040', '\061', '\012', '\172', '\107', '\147',
'\040', '\156', '\147', '\040', '\061', '\012', '\121', '\142',
'\142', '\040', '\142', '\145', '\040', '\061', '\012', '\166',
'\146', '\131', '\040', '\166', '\141', '\040', '\061', '\012',
'\157', '\130', '\144', '\040', '\157', '\156', '\040', '\061',
'\012', '\167', '\101', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\130', '\142', '\153', '\040', '\153', '\141',
'\040', '\061', '\012', '\167', '\155', '\122', '\040', '\155',
'\145', '\040', '\061', '\012', '\162', '\172', '\116', '\040',
'\145', '\162', '\040', '\061', '\012', '\146', '\143', '\102',
'\040', '\143', '\150', '\040', '\061', '\012', '\102', '\167',
'\143', '\040', '\143', '\150', '\040', '\061', '\012', '\170',
'\147', '\123', '\040', '\156', '\147', '\040', '\061', '\012',
'\144', '\121', '\162', '\040', '\145', '\162', '\040', '\061',
'\012', '\153', '\112', '\167', '\040', '\153', '\141', '\040',
'\061', '\012', '\142', '\147', '\170', '\040', '\156', '\147',
'\040', '\061', '\012', '\160', '\132', '\163', '\040', '\163',
'\172', '\040', '\061', '\012', '\167', '\146', '\101', '\040',
'\167', '\141', '\040', '\061', '\012', '\152', '\155', '\130',
'\040', '\151', '\152', '\040', '\061', '\012', '\144', '\116',
'\160', '\040', '\144', '\145', '\040', '\061', '\012', '\126',
'\170', '\162', '\040', '\145', '\162', '\040', '\061', '\012',
'\122', '\166', '\142', '\040', '\166', '\141', '\040', '\061',
'\012', '\167', '\132', '\154', '\040', '\154', '\145', '\040',
'\061', '\012', '\167', '\147', '\101', '\040', '\156', '\147',
'\040', '\061', '\012', '\127', '\162', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\112', '\143', '\161', '\040',
'\143', '\150', '\040', '\061', '\012', '\154', '\152', '\127',
'\040', '\154', '\145', '\040', '\061', '\012', '\161', '\120',
'\164', '\040', '\164', '\150', '\040', '\061', '\012', '\147',
'\152', '\131', '\040', '\156', '\147', '\040', '\061', '\012',
'\152', '\125', '\157', '\040', '\157', '\156', '\040', '\061',
'\012', '\155', '\111', '\152', '\040', '\151', '\152', '\040',
'\061', '\012', '\110', '\160', '\171', '\040', '\160', '\162',
'\040', '\061', '\012', '\115', '\160', '\152', '\040', '\151',
'\152', '\040', '\061', '\012', '\142', '\153', '\117', '\040',
'\153', '\141', '\040', '\061', '\012', '\101', '\166', '\172',
'\040', '\163', '\172', '\040', '\061', '\012', '\166', '\113',
'\153', '\040', '\153', '\141', '\040', '\061', '\012', '\102',
'\146', '\172', '\040', '\163', '\172', '\040', '\061', '\012',
'\171', '\131', '\152', '\040', '\151', '\152', '\040', '\061',
'\012', '\105', '\147', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\167', '\170', '\110', '\040', '\167', '\141',
'\040', '\061', '\012', '\172', '\110', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\163', '\166', '\101', '\040',
'\163', '\164', '\040', '\061', '\012', '\172', '\143', '\120',
'\040', '\143', '\150', '\040', '\061', '\012', '\102', '\170',
'\157', '\040', '\157', '\156', '\040', '\061', '\012', '\150',
'\123', '\166', '\040', '\164', '\150', '\040', '\061', '\012',
'\114', '\170', '\164', '\040', '\164', '\150', '\040', '\061',
'\012', '\150', '\102', '\172', '\040', '\164', '\150', '\040',
'\061', '\012', '\143', '\127', '\153', '\040', '\143', '\150',
'\040', '\061', '\012', '\170', '\102', '\166', '\040', '\166',
'\141', '\040', '\061', '\012', '\150', '\167', '\116', '\040',
'\164', '\150', '\040', '\061', '\012', '\155', '\153', '\112',
'\040', '\153', '\141', '\040', '\061', '\012', '\157', '\116',
'\152', '\040', '\157', '\156', '\040', '\061', '\012', '\125',
'\147', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\152', '\132', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\170', '\146', '\120', '\040', '\146', '\157', '\040',
'\061', '\012', '\142', '\131', '\166', '\040', '\166', '\141',
'\040', '\061', '\012', '\161', '\170', '\106', '\040', '\161',
'\165', '\040', '\061', '\012', '\144', '\143', '\111', '\040',
'\143', '\150', '\040', '\061', '\012', '\144', '\150', '\131',
'\040', '\164', '\150', '\040', '\061', '\012', '\143', '\166',
'\120', '\040', '\143', '\150', '\040', '\061', '\012', '\161',
'\125', '\171', '\040', '\161', '\165', '\040', '\061', '\012',
'\155', '\170', '\103', '\040', '\155', '\145', '\040', '\061',
'\012', '\172', '\120', '\170', '\040', '\163', '\172', '\040',
'\061', '\012', '\116', '\161', '\154', '\040', '\161', '\165',
'\040', '\061', '\012', '\131', '\146', '\167', '\040', '\167',
'\141', '\040', '\061', '\012', '\127', '\147', '\160', '\040',
'\156', '\147', '\040', '\061', '\012', '\152', '\147', '\104',
'\040', '\156', '\147', '\040', '\061', '\012', '\121', '\146',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\154',
'\143', '\127', '\040', '\143', '\150', '\040', '\061', '\012',
'\161', '\170', '\171', '\040', '\161', '\165', '\040', '\061',
'\012', '\130', '\160', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\167', '\162', '\104', '\040', '\145', '\162',
'\040', '\061', '\012', '\142', '\105', '\157', '\040', '\157',
'\156', '\040', '\061', '\012', '\142', '\172', '\126', '\040',
'\163', '\172', '\040', '\061', '\012', '\146', '\167', '\123',
'\040', '\167', '\141', '\040', '\061', '\012', '\155', '\114',
'\152', '\040', '\151', '\152', '\040', '\061', '\012', '\167',
'\115', '\162', '\040', '\145', '\162', '\040', '\061', '\012',
'\166', '\106', '\142', '\040', '\166', '\141', '\040', '\061',
'\012', '\172', '\146', '\124', '\040', '\163', '\172', '\040',
'\061', '\012', '\156', '\122', '\153', '\040', '\141', '\156',
'\040', '\061', '\012', '\153', '\112', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\122', '\155', '\167', '\040',
'\155', '\145', '\040', '\061', '\012', '\156', '\161', '\122',
'\040', '\141', '\156', '\040', '\061', '\012', '\161', '\160',
'\117', '\040', '\161', '\165', '\040', '\061', '\012', '\142',
'\110', '\142', '\040', '\142', '\145', '\040', '\061', '\012',
'\124', '\153', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\163', '\152', '\107', '\040', '\163', '\164', '\040',
'\061', '\012', '\161', '\141', '\124', '\040', '\141', '\156',
'\040', '\061', '\012', '\120', '\161', '\154', '\040', '\161',
'\165', '\040', '\061', '\012', '\150', '\154', '\121', '\040',
'\164', '\150', '\040', '\061', '\012', '\153', '\172', '\127',
'\040', '\163', '\172', '\040', '\061', '\012', '\171', '\106',
'\143', '\040', '\143', '\150', '\040', '\061', '\012', '\165',
'\102', '\166', '\040', '\161', '\165', '\040', '\061', '\012',
'\166', '\170', '\117', '\040', '\166', '\141', '\040', '\061',
'\012', '\161', '\166', '\103', '\040', '\161', '\165', '\040',
'\061', '\012', '\131', '\161', '\170', '\040', '\161', '\165',
'\040', '\061', '\012', '\152', '\103', '\142', '\040', '\151',
'\152', '\040', '\061', '\012', '\121', '\152', '\153', '\040',
'\151', '\152', '\040', '\061', '\012', '\146', '\102', '\150',
'\040', '\164', '\150', '\040', '\061', '\012', '\166', '\113',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\162',
'\115', '\147', '\040', '\156', '\147', '\040', '\061', '\012',
'\150', '\122', '\167', '\040', '\164', '\150', '\040', '\061',
'\012', '\171', '\153', '\125', '\040', '\153', '\141', '\040',
'\061', '\012', '\142', '\125', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\166', '\131', '\166', '\040', '\166',
'\141', '\040', '\061', '\012', '\120', '\144', '\170', '\040',
'\144', '\145', '\040', '\061', '\012', '\157', '\107', '\166',
'\040', '\157', '\156', '\040', '\061', '\012', '\152', '\114',
'\171', '\040', '\151', '\152', '\040', '\061', '\012', '\144',
'\165', '\131', '\040', '\161', '\165', '\040', '\061', '\012',
'\127', '\143', '\160', '\040', '\143', '\150', '\040', '\061',
'\012', '\157', '\107', '\170', '\040', '\157', '\156', '\040',
'\061', '\012', '\166', '\107', '\154', '\040', '\154', '\145',
'\040', '\061', '\012', '\112', '\144', '\172', '\040', '\163',
'\172', '\040', '\061', '\012', '\151', '\152', '\110', '\040',
'\151', '\156', '\040', '\061', '\012', '\155', '\154', '\130',
'\040', '\154', '\145', '\040', '\061', '\012', '\152', '\116',
'\162', '\040', '\145', '\162', '\040', '\061', '\012', '\153',
'\103', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\107', '\150', '\150', '\040', '\164', '\150', '\040', '\061',
'\012', '\162', '\115', '\166', '\040', '\145', '\162', '\040',
'\061', '\012', '\102', '\147', '\160', '\040', '\156', '\147',
'\040', '\061', '\012', '\142', '\106', '\164', '\040', '\164',
'\150', '\040', '\061', '\012', '\165', '\127', '\154', '\040',
'\161', '\165', '\040', '\061', '\012', '\144', '\130', '\147',
'\040', '\156', '\147', '\040', '\061', '\012', '\127', '\143',
'\146', '\040', '\143', '\150', '\040', '\061', '\012', '\144',
'\142', '\111', '\040', '\144', '\145', '\040', '\061', '\012',
'\142', '\107', '\170', '\040', '\142', '\145', '\040', '\061',
'\012', '\145', '\170', '\121', '\040', '\145', '\162', '\040',
'\061', '\012', '\152', '\127', '\152', '\040', '\152', '\157',
'\040', '\061', '\012', '\160', '\121', '\142', '\040', '\160',
'\162', '\040', '\061', '\012', '\152', '\143', '\110', '\040',
'\143', '\150', '\040', '\061', '\012', '\161', '\117', '\154',
'\040', '\161', '\165', '\040', '\061', '\012', '\155', '\164',
'\114', '\040', '\164', '\150', '\040', '\061', '\012', '\143',
'\162', '\103', '\040', '\143', '\150', '\040', '\061', '\012',
'\160', '\102', '\150', '\040', '\164', '\150', '\040', '\061',
'\012', '\127', '\154', '\172', '\040', '\154', '\145', '\040',
'\061', '\012', '\156', '\110', '\156', '\040', '\141', '\156',
'\040', '\061', '\012', '\110', '\146', '\160', '\040', '\160',
'\162', '\040', '\061', '\012', '\130', '\160', '\143', '\040',
'\143', '\150', '\040', '\061', '\012', '\125', '\170', '\160',
'\040', '\160', '\162', '\040', '\061', '\012', '\113', '\163',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\170',
'\127', '\153', '\040', '\153', '\141', '\040', '\061', '\012',
'\156', '\161', '\132', '\040', '\141', '\156', '\040', '\061',
'\012', '\103', '\170', '\144', '\040', '\144', '\145', '\040',
'\061', '\012', '\172', '\112', '\170', '\040', '\163', '\172',
'\040', '\061', '\012', '\162', '\127', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\103', '\142', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\161', '\161', '\120',
'\040', '\161', '\165', '\040', '\061', '\012', '\154', '\150',
'\125', '\040', '\164', '\150', '\040', '\061', '\012', '\125',
'\146', '\166', '\040', '\166', '\141', '\040', '\061', '\012',
'\125', '\170', '\147', '\040', '\156', '\147', '\040', '\061',
'\012', '\150', '\112', '\146', '\040', '\164', '\150', '\040',
'\061', '\012', '\156', '\166', '\121', '\040', '\141', '\156',
'\040', '\061', '\012', '\144', '\150', '\106', '\040', '\164',
'\150', '\040', '\061', '\012', '\103', '\166', '\142', '\040',
'\166', '\141', '\040', '\061', '\012', '\141', '\120', '\146',
'\040', '\141', '\156', '\040', '\061', '\012', '\112', '\170',
'\152', '\040', '\151', '\152', '\040', '\061', '\012', '\104',
'\167', '\160', '\040', '\160', '\162', '\040', '\061', '\012',
'\111', '\170', '\167', '\040', '\167', '\141', '\040', '\061',
'\012', '\153', '\146', '\123', '\040', '\153', '\141', '\040',
'\061', '\012', '\162', '\132', '\155', '\040', '\145', '\162',
'\040', '\061', '\012', '\146', '\155', '\105', '\040', '\155',
'\145', '\040', '\061', '\012', '\163', '\114', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\142', '\155', '\122',
'\040', '\155', '\145', '\040', '\061', '\012', '\165', '\103',
'\163', '\040', '\161', '\165', '\040', '\061', '\012', '\153',
'\106', '\155', '\040', '\153', '\141', '\040', '\061', '\012',
'\113', '\161', '\153', '\040', '\161', '\165', '\040', '\061',
'\012', '\170', '\121', '\153', '\040', '\153', '\141', '\040',
'\061', '\012', '\123', '\146', '\156', '\040', '\141', '\156',
'\040', '\061', '\012', '\146', '\147', '\125', '\040', '\156',
'\147', '\040', '\061', '\012', '\166', '\166', '\124', '\040',
'\166', '\141', '\040', '\061', '\012', '\155', '\121', '\145',
'\040', '\145', '\162', '\040', '\061', '\012', '\107', '\142',
'\164', '\040', '\164', '\150', '\040', '\061', '\012', '\164',
'\142', '\131', '\040', '\164', '\150', '\040', '\061', '\012',
'\154', '\121', '\153', '\040', '\154', '\145', '\040', '\061',
'\012', '\143', '\111', '\150', '\040', '\164', '\150', '\040',
'\061', '\012', '\124', '\152', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\156', '\121', '\147', '\040', '\141',
'\156', '\040', '\061', '\012', '\171', '\131', '\160', '\040',
'\160', '\162', '\040', '\061', '\012', '\161', '\120', '\167',
'\040', '\161', '\165', '\040', '\061', '\012', '\170', '\117',
'\141', '\040', '\141', '\156', '\040', '\061', '\012', '\160',
'\116', '\167', '\040', '\160', '\162', '\040', '\061', '\012',
'\146', '\112', '\172', '\040', '\163', '\172', '\040', '\061',
'\012', '\172', '\110', '\142', '\040', '\163', '\172', '\040',
'\061', '\012', '\153', '\102', '\150', '\040', '\164', '\150',
'\040', '\061', '\012', '\146', '\144', '\105', '\040', '\144',
'\145', '\040', '\061', '\012', '\167', '\120', '\147', '\040',
'\156', '\147', '\040', '\061', '\012', '\154', '\126', '\166',
'\040', '\154', '\145', '\040', '\061', '\012', '\155', '\120',
'\167', '\040', '\155', '\145', '\040', '\061', '\012', '\122',
'\155', '\147', '\040', '\156', '\147', '\040', '\061', '\012',
'\170', '\157', '\105', '\040', '\157', '\156', '\040', '\061',
'\012', '\150', '\156', '\112', '\040', '\164', '\150', '\040',
'\061', '\012', '\165', '\166', '\105', '\040', '\161', '\165',
'\040', '\061', '\012', '\127', '\157', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\165', '\143', '\130', '\040',
'\143', '\150', '\040', '\061', '\012', '\156', '\155', '\104',
'\040', '\141', '\156', '\040', '\061', '\012', '\160', '\143',
'\130', '\040', '\143', '\150', '\040', '\061', '\012', '\150',
'\104', '\167', '\040', '\164', '\150', '\040', '\061', '\012',
'\144', '\147', '\111', '\040', '\156', '\147', '\040', '\061',
'\012', '\166', '\126', '\144', '\040', '\144', '\145', '\040',
'\061', '\012', '\164', '\104', '\150', '\040', '\143', '\150',
'\040', '\061', '\012', '\152', '\110', '\156', '\040', '\141',
'\156', '\040', '\061', '\012', '\150', '\153', '\130', '\040',
'\164', '\150', '\040', '\061', '\012', '\160', '\170', '\124',
'\040', '\160', '\162', '\040', '\061', '\012', '\170', '\131',
'\172', '\040', '\163', '\172', '\040', '\061', '\012', '\162',
'\124', '\160', '\040', '\145', '\162', '\040', '\061', '\012',
'\125', '\142', '\172', '\040', '\163', '\172', '\040', '\061',
'\012', '\114', '\154', '\155', '\040', '\154', '\145', '\040',
'\061', '\012', '\171', '\152', '\132', '\040', '\151', '\152',
'\040', '\061', '\012', '\121', '\163', '\163', '\040', '\163',
'\164', '\040', '\061', '\012', '\143', '\146', '\115', '\040',
'\143', '\150', '\040', '\061', '\012', '\152', '\142', '\107',
'\040', '\142', '\145', '\040', '\061', '\012', '\112', '\146',
'\172', '\040', '\163', '\172', '\040', '\061', '\012', '\155',
'\127', '\142', '\040', '\155', '\145', '\040', '\061', '\012',
'\152', '\104', '\160', '\040', '\151', '\152', '\040', '\061',
'\012', '\154', '\127', '\172', '\040', '\154', '\145', '\040',
'\061', '\012', '\143', '\130', '\171', '\040', '\143', '\150',
'\040', '\061', '\012', '\157', '\121', '\162', '\040', '\145',
'\162', '\040', '\061', '\012', '\165', '\143', '\132', '\040',
'\143', '\150', '\040', '\061', '\012', '\143', '\166', '\116',
'\040', '\143', '\150', '\040', '\061', '\012', '\143', '\166',
'\113', '\040', '\143', '\150', '\040', '\061', '\012', '\172',
'\104', '\153', '\040', '\163', '\172', '\040', '\061', '\012',
'\142', '\114', '\162', '\040', '\145', '\162', '\040', '\061',
'\012', '\144', '\104', '\154', '\040', '\154', '\145', '\040',
'\061', '\012', '\150', '\150', '\104', '\040', '\164', '\150',
'\040', '\061', '\012', '\166', '\155', '\113', '\040', '\166',
'\141', '\040', '\061', '\012', '\150', '\114', '\164', '\040',
'\164', '\150', '\040', '\061', '\012', '\155', '\161', '\127',
'\040', '\161', '\165', '\040', '\061', '\012', '\102', '\146',
'\163', '\040', '\163', '\164', '\040', '\061', '\012', '\101',
'\143', '\152', '\040', '\143', '\150', '\040', '\061', '\012',
'\144', '\143', '\107', '\040', '\143', '\150', '\040', '\061',
'\012', '\171', '\112', '\143', '\040', '\143', '\150', '\040',
'\061', '\012', '\155', '\146', '\123', '\040', '\155', '\145',
'\040', '\061', '\012', '\144', '\162', '\114', '\040', '\145',
'\162', '\040', '\061', '\012', '\161', '\171', '\113', '\040',
'\161', '\165', '\040', '\061', '\012', '\164', '\121', '\172',
'\040', '\164', '\150', '\040', '\061', '\012', '\152', '\162',
'\114', '\040', '\145', '\162', '\040', '\061', '\012', '\143',
'\143', '\112', '\040', '\143', '\150', '\040', '\061', '\012',
'\167', '\160', '\130', '\040', '\160', '\162', '\040', '\061',
'\012', '\132', '\172', '\146', '\040', '\163', '\172', '\040',
'\061', '\012', '\163', '\156', '\125', '\040', '\141', '\156',
'\040', '\061', '\012', '\161', '\105', '\167', '\040', '\161',
'\165', '\040', '\061', '\012', '\164', '\121', '\142', '\040',
'\164', '\150', '\040', '\061', '\012', '\155', '\120', '\144',
'\040', '\144', '\145', '\040', '\061', '\012', '\166', '\112',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\166',
'\160', '\125', '\040', '\166', '\141', '\040', '\061', '\012',
'\166', '\172', '\115', '\040', '\163', '\172', '\040', '\061',
'\012', '\165', '\132', '\142', '\040', '\161', '\165', '\040',
'\061', '\012', '\171', '\167', '\125', '\040', '\167', '\141',
'\040', '\061', '\012', '\122', '\152', '\163', '\040', '\163',
'\164', '\040', '\061', '\012', '\150', '\113', '\164', '\040',
'\164', '\150', '\040', '\061', '\012', '\102', '\146', '\142',
'\040', '\142', '\145', '\040', '\061', '\012', '\167', '\165',
'\121', '\040', '\161', '\165', '\040', '\061', '\012', '\142',
'\166', '\115', '\040', '\166', '\141', '\040', '\061', '\012',
'\171', '\151', '\127', '\040', '\151', '\156', '\040', '\061',
'\012', '\150', '\161', '\103', '\040', '\164', '\150', '\040',
'\061', '\012', '\151', '\125', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\154', '\102', '\144', '\040', '\154',
'\145', '\040', '\061', '\012', '\132', '\170', '\152', '\040',
'\151', '\152', '\040', '\061', '\012', '\167', '\160', '\127',
'\040', '\160', '\162', '\040', '\061', '\012', '\162', '\110',
'\155', '\040', '\145', '\162', '\040', '\061', '\012', '\155',
'\150', '\121', '\040', '\164', '\150', '\040', '\061', '\012',
'\146', '\115', '\142', '\040', '\142', '\145', '\040', '\061',
'\012', '\166', '\127', '\146', '\040', '\166', '\141', '\040',
'\061', '\012', '\106', '\144', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\152', '\107', '\142', '\040', '\151',
'\152', '\040', '\061', '\012', '\104', '\150', '\167', '\040',
'\164', '\150', '\040', '\061', '\012', '\143', '\152', '\122',
'\040', '\143', '\150', '\040', '\061', '\012', '\153', '\166',
'\104', '\040', '\153', '\141', '\040', '\061', '\012', '\161',
'\166', '\104', '\040', '\161', '\165', '\040', '\061', '\012',
'\130', '\155', '\153', '\040', '\153', '\141', '\040', '\061',
'\012', '\103', '\152', '\152', '\040', '\151', '\152', '\040',
'\061', '\012', '\153', '\153', '\130', '\040', '\153', '\141',
'\040', '\061', '\012', '\161', '\153', '\106', '\040', '\161',
'\165', '\040', '\061', '\012', '\166', '\127', '\147', '\040',
'\156', '\147', '\040', '\061', '\012', '\115', '\163', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\156', '\116',
'\166', '\040', '\141', '\156', '\040', '\061', '\012', '\110',
'\172', '\165', '\040', '\161', '\165', '\040', '\061', '\012',
'\172', '\162', '\131', '\040', '\145', '\162', '\040', '\061',
'\012', '\150', '\147', '\102', '\040', '\164', '\150', '\040',
'\061', '\012', '\160', '\167', '\102', '\040', '\160', '\162',
'\040', '\061', '\012', '\112', '\170', '\143', '\040', '\143',
'\150', '\040', '\061', '\012', '\166', '\143', '\112', '\040',
'\143', '\150', '\040', '\061', '\012', '\163', '\131', '\167',
'\040', '\163', '\164', '\040', '\061', '\012', '\124', '\161',
'\170', '\040', '\161', '\165', '\040', '\061', '\012', '\145',
'\112', '\146', '\040', '\154', '\145', '\040', '\061', '\012',
'\143', '\172', '\112', '\040', '\143', '\150', '\040', '\061',
'\012', '\121', '\171', '\150', '\040', '\164', '\150', '\040',
'\061', '\012', '\142', '\166', '\126', '\040', '\166', '\141',
'\040', '\061', '\012', '\130', '\171', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\146', '\152', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\144', '\131', '\143',
'\040', '\143', '\150', '\040', '\061', '\012', '\160', '\102',
'\170', '\040', '\160', '\162', '\040', '\061', '\012', '\152',
'\166', '\122', '\040', '\151', '\152', '\040', '\061', '\012',
'\147', '\142', '\110', '\040', '\156', '\147', '\040', '\061',
'\012', '\171', '\147', '\110', '\040', '\156', '\147', '\040',
'\061', '\012', '\150', '\142', '\126', '\040', '\164', '\150',
'\040', '\061', '\012', '\154', '\167', '\125', '\040', '\154',
'\145', '\040', '\061', '\012', '\164', '\112', '\153', '\040',
'\164', '\150', '\040', '\061', '\012', '\160', '\111', '\167',
'\040', '\160', '\162', '\040', '\061', '\012', '\126', '\152',
'\154', '\040', '\154', '\145', '\040', '\061', '\012', '\104',
'\147', '\155', '\040', '\156', '\147', '\040', '\061', '\012',
'\156', '\166', '\122', '\040', '\141', '\156', '\040', '\061',
'\012', '\171', '\122', '\160', '\040', '\160', '\162', '\040',
'\061', '\012', '\146', '\117', '\152', '\040', '\151', '\152',
'\040', '\061', '\012', '\105', '\143', '\146', '\040', '\143',
'\150', '\040', '\061', '\012', '\132', '\162', '\146', '\040',
'\145', '\162', '\040', '\061', '\012', '\155', '\170', '\104',
'\040', '\155', '\145', '\040', '\061', '\012', '\111', '\161',
'\146', '\040', '\161', '\165', '\040', '\061', '\012', '\172',
'\102', '\152', '\040', '\163', '\172', '\040', '\061', '\012',
'\164', '\124', '\163', '\040', '\164', '\150', '\040', '\061',
'\012', '\154', '\161', '\102', '\040', '\161', '\165', '\040',
'\061', '\012', '\153', '\103', '\166', '\040', '\153', '\141',
'\040', '\061', '\012', '\156', '\126', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\152', '\107', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\143', '\147', '\121',
'\040', '\143', '\150', '\040', '\061', '\012', '\120', '\160',
'\144', '\040', '\144', '\145', '\040', '\061', '\012', '\112',
'\143', '\144', '\040', '\143', '\150', '\040', '\061', '\012',
'\150', '\150', '\120', '\040', '\164', '\150', '\040', '\061',
'\012', '\163', '\114', '\147', '\040', '\156', '\147', '\040',
'\061', '\012', '\170', '\131', '\164', '\040', '\164', '\150',
'\040', '\061', '\012', '\121', '\160', '\163', '\040', '\163',
'\164', '\040', '\061', '\012', '\163', '\146', '\105', '\040',
'\163', '\164', '\040', '\061', '\012', '\167', '\170', '\122',
'\040', '\167', '\141', '\040', '\061', '\012', '\160', '\106',
'\160', '\040', '\160', '\162', '\040', '\061', '\012', '\131',
'\155', '\146', '\040', '\155', '\145', '\040', '\061', '\012',
'\112', '\147', '\171', '\040', '\156', '\147', '\040', '\061',
'\012', '\171', '\166', '\111', '\040', '\166', '\141', '\040',
'\061', '\012', '\116', '\143', '\172', '\040', '\143', '\150',
'\040', '\061', '\012', '\167', '\102', '\146', '\040', '\167',
'\141', '\040', '\061', '\012', '\162', '\126', '\170', '\040',
'\145', '\162', '\040', '\061', '\012', '\152', '\166', '\130',
'\040', '\151', '\152', '\040', '\061', '\012', '\156', '\131',
'\160', '\040', '\141', '\156', '\040', '\061', '\012', '\156',
'\116', '\142', '\040', '\141', '\156', '\040', '\061', '\012',
'\143', '\121', '\151', '\040', '\143', '\150', '\040', '\061',
'\012', '\121', '\167', '\171', '\040', '\167', '\141', '\040',
'\061', '\012', '\166', '\120', '\146', '\040', '\166', '\141',
'\040', '\061', '\012', '\161', '\166', '\144', '\040', '\161',
'\165', '\040', '\061', '\012', '\150', '\153', '\104', '\040',
'\164', '\150', '\040', '\061', '\012', '\127', '\155', '\162',
'\040', '\145', '\162', '\040', '\061', '\012', '\147', '\144',
'\131', '\040', '\156', '\147', '\040', '\061', '\012', '\113',
'\152', '\152', '\040', '\151', '\152', '\040', '\061', '\012',
'\161', '\163', '\116', '\040', '\161', '\165', '\040', '\061',
'\012', '\166', '\112', '\147', '\040', '\156', '\147', '\040',
'\061', '\012', '\155', '\104', '\143', '\040', '\143', '\150',
'\040', '\061', '\012', '\153', '\166', '\106', '\040', '\153',
'\141', '\040', '\061', '\012', '\153', '\127', '\170', '\040',
'\153', '\141', '\040', '\061', '\012', '\170', '\131', '\165',
'\040', '\161', '\165', '\040', '\061', '\012', '\145', '\115',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\155',
'\131', '\171', '\040', '\155', '\145', '\040', '\061', '\012',
'\110', '\170', '\164', '\040', '\164', '\150', '\040', '\061',
'\012', '\160', '\142', '\115', '\040', '\160', '\162', '\040',
'\061', '\012', '\110', '\167', '\144', '\040', '\144', '\145',
'\040', '\061', '\012', '\155', '\127', '\165', '\040', '\161',
'\165', '\040', '\061', '\012', '\172', '\116', '\163', '\040',
'\163', '\164', '\040', '\061', '\012', '\121', '\152', '\150',
'\040', '\164', '\150', '\040', '\061', '\012', '\141', '\161',
'\104', '\040', '\141', '\156', '\040', '\061', '\012', '\107',
'\143', '\144', '\040', '\143', '\150', '\040', '\061', '\012',
'\142', '\164', '\130', '\040', '\164', '\150', '\040', '\061',
'\012', '\132', '\161', '\154', '\040', '\161', '\165', '\040',
'\061', '\012', '\125', '\152', '\167', '\040', '\151', '\152',
'\040', '\061', '\012', '\171', '\166', '\115', '\040', '\166',
'\141', '\040', '\061', '\012', '\110', '\150', '\167', '\040',
'\164', '\150', '\040', '\061', '\012', '\172', '\127', '\144',
'\040', '\163', '\172', '\040', '\061', '\012', '\160', '\131',
'\152', '\040', '\151', '\152', '\040', '\061', '\012', '\170',
'\127', '\164', '\040', '\164', '\150', '\040', '\061', '\012',
'\171', '\154', '\117', '\040', '\154', '\145', '\040', '\061',
'\012', '\143', '\156', '\130', '\040', '\143', '\150', '\040',
'\061', '\012', '\143', '\115', '\146', '\040', '\143', '\150',
'\040', '\061', '\012', '\160', '\113', '\142', '\040', '\160',
'\162', '\040', '\061', '\012', '\167', '\157', '\126', '\040',
'\157', '\156', '\040', '\061', '\012', '\146', '\172', '\107',
'\040', '\163', '\172', '\040', '\061', '\012', '\114', '\161',
'\142', '\040', '\161', '\165', '\040', '\061', '\012', '\145',
'\117', '\152', '\040', '\145', '\162', '\040', '\061', '\012',
'\107', '\164', '\142', '\040', '\164', '\150', '\040', '\061',
'\012', '\143', '\154', '\130', '\040', '\143', '\150', '\040',
'\061', '\012', '\153', '\144', '\103', '\040', '\144', '\145',
'\040', '\061', '\012', '\143', '\146', '\161', '\040', '\143',
'\150', '\040', '\061', '\012', '\150', '\113', '\153', '\040',
'\164', '\150', '\040', '\061', '\012', '\143', '\112', '\151',
'\040', '\143', '\150', '\040', '\061', '\012', '\165', '\123',
'\142', '\040', '\161', '\165', '\040', '\061', '\012', '\152',
'\147', '\124', '\040', '\156', '\147', '\040', '\061', '\012',
'\164', '\143', '\107', '\040', '\164', '\150', '\040', '\061',
'\012', '\161', '\116', '\166', '\040', '\161', '\165', '\040',
'\061', '\012', '\146', '\160', '\102', '\040', '\160', '\162',
'\040', '\061', '\012', '\166', '\120', '\167', '\040', '\166',
'\141', '\040', '\061', '\012', '\152', '\155', '\101', '\040',
'\151', '\152', '\040', '\061', '\012', '\144', '\170', '\111',
'\040', '\144', '\145', '\040', '\061', '\012', '\152', '\107',
'\147', '\040', '\156', '\147', '\040', '\061', '\012', '\102',
'\166', '\147', '\040', '\156', '\147', '\040', '\061', '\012',
'\161', '\162', '\103', '\040', '\161', '\165', '\040', '\061',
'\012', '\156', '\120', '\170', '\040', '\141', '\156', '\040',
'\061', '\012', '\121', '\155', '\156', '\040', '\141', '\156',
'\040', '\061', '\012', '\143', '\161', '\103', '\040', '\143',
'\150', '\040', '\061', '\012', '\153', '\106', '\150', '\040',
'\164', '\150', '\040', '\061', '\012', '\112', '\164', '\146',
'\040', '\164', '\150', '\040', '\061', '\012', '\103', '\161',
'\172', '\040', '\161', '\165', '\040', '\061', '\012', '\162',
'\103', '\144', '\040', '\145', '\162', '\040', '\061', '\012',
'\132', '\155', '\163', '\040', '\163', '\164', '\040', '\061',
'\012', '\144', '\126', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\107', '\167', '\147', '\040', '\156', '\147',
'\040', '\061', '\012', '\143', '\167', '\120', '\040', '\143',
'\150', '\040', '\061', '\012', '\167', '\126', '\165', '\040',
'\161', '\165', '\040', '\061', '\012', '\144', '\116', '\147',
'\040', '\156', '\147', '\040', '\061', '\012', '\152', '\130',
'\143', '\040', '\143', '\150', '\040', '\061', '\012', '\115',
'\142', '\172', '\040', '\163', '\172', '\040', '\061', '\012',
'\167', '\166', '\107', '\040', '\166', '\145', '\040', '\061',
'\012', '\126', '\160', '\167', '\040', '\160', '\162', '\040',
'\061', '\012', '\171', '\130', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\150', '\154', '\113', '\040', '\164',
'\150', '\040', '\061', '\012', '\160', '\131', '\166', '\040',
'\166', '\141', '\040', '\061', '\012', '\106', '\142', '\144',
'\040', '\144', '\145', '\040', '\061', '\012', '\172', '\143',
'\126', '\040', '\143', '\150', '\040', '\061', '\012', '\162',
'\121', '\153', '\040', '\145', '\162', '\040', '\061', '\012',
'\167', '\164', '\116', '\040', '\164', '\150', '\040', '\061',
'\012', '\161', '\145', '\111', '\040', '\161', '\165', '\040',
'\061', '\012', '\145', '\107', '\164', '\040', '\164', '\150',
'\040', '\061', '\012', '\153', '\115', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\153', '\161', '\123', '\040',
'\161', '\165', '\040', '\061', '\012', '\143', '\161', '\144',
'\040', '\143', '\150', '\040', '\061', '\012', '\160', '\114',
'\146', '\040', '\160', '\157', '\040', '\061', '\012', '\170',
'\166', '\117', '\040', '\166', '\141', '\040', '\061', '\012',
'\162', '\146', '\110', '\040', '\145', '\162', '\040', '\061',
'\012', '\147', '\111', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\120', '\161', '\153', '\040', '\161', '\165',
'\040', '\061', '\012', '\170', '\103', '\156', '\040', '\141',
'\156', '\040', '\061', '\012', '\144', '\126', '\163', '\040',
'\163', '\164', '\040', '\061', '\012', '\151', '\161', '\131',
'\040', '\161', '\165', '\040', '\061', '\012', '\142', '\163',
'\112', '\040', '\163', '\164', '\040', '\061', '\012', '\126',
'\167', '\167', '\040', '\167', '\141', '\040', '\061', '\012',
'\132', '\156', '\155', '\040', '\141', '\156', '\040', '\061',
'\012', '\131', '\162', '\172', '\040', '\145', '\162', '\040',
'\061', '\012', '\122', '\166', '\172', '\040', '\163', '\172',
'\040', '\061', '\012', '\144', '\172', '\113', '\040', '\144',
'\145', '\040', '\061', '\012', '\172', '\142', '\127', '\040',
'\163', '\172', '\040', '\061', '\012', '\164', '\153', '\170',
'\040', '\164', '\150', '\040', '\061', '\012', '\170', '\153',
'\120', '\040', '\153', '\141', '\040', '\061', '\012', '\153',
'\172', '\123', '\040', '\163', '\172', '\040', '\061', '\012',
'\147', '\130', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\114', '\170', '\146', '\040', '\146', '\157', '\040',
'\061', '\012', '\106', '\167', '\162', '\040', '\145', '\162',
'\040', '\061', '\012', '\154', '\110', '\163', '\040', '\154',
'\145', '\040', '\061', '\012', '\172', '\162', '\102', '\040',
'\145', '\162', '\040', '\061', '\012', '\152', '\116', '\142',
'\040', '\151', '\152', '\040', '\061', '\012', '\110', '\170',
'\171', '\040', '\156', '\171', '\040', '\061', '\012', '\107',
'\146', '\167', '\040', '\167', '\141', '\040', '\061', '\012',
'\105', '\147', '\167', '\040', '\156', '\147', '\040', '\061',
'\012', '\112', '\170', '\167', '\040', '\167', '\141', '\040',
'\061', '\012', '\164', '\126', '\155', '\040', '\164', '\150',
'\040', '\061', '\012', '\142', '\167', '\121', '\040', '\167',
'\141', '\040', '\061', '\012', '\147', '\111', '\170', '\040',
'\156', '\147', '\040', '\061', '\012', '\127', '\161', '\165',
'\040', '\165', '\156', '\040', '\061', '\012', '\152', '\166',
'\111', '\040', '\151', '\152', '\040', '\061', '\012', '\143',
'\107', '\143', '\040', '\143', '\150', '\040', '\061', '\012',
'\153', '\123', '\142', '\040', '\153', '\141', '\040', '\061',
'\012', '\150', '\170', '\107', '\040', '\164', '\150', '\040',
'\061', '\012', '\172', '\110', '\155', '\040', '\163', '\172',
'\040', '\061', '\012', '\112', '\160', '\153', '\040', '\153',
'\141', '\040', '\061', '\012', '\146', '\126', '\142', '\040',
'\142', '\145', '\040', '\061', '\012', '\125', '\153', '\146',
'\040', '\153', '\141', '\040', '\061', '\012', '\162', '\170',
'\106', '\040', '\145', '\162', '\040', '\061', '\012', '\144',
'\126', '\165', '\040', '\161', '\165', '\040', '\061', '\012',
'\163', '\144', '\130', '\040', '\163', '\164', '\040', '\061',
'\012', '\155', '\152', '\115', '\040', '\151', '\152', '\040',
'\061', '\012', '\170', '\167', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\117', '\147', '\153', '\040', '\156',
'\147', '\040', '\061', '\012', '\161', '\150', '\162', '\040',
'\164', '\150', '\040', '\061', '\012', '\166', '\146', '\101',
'\040', '\166', '\141', '\040', '\061', '\012', '\161', '\142',
'\101', '\040', '\161', '\165', '\040', '\061', '\012', '\114',
'\146', '\165', '\040', '\161', '\165', '\040', '\061', '\012',
'\150', '\172', '\131', '\040', '\164', '\150', '\040', '\061',
'\012', '\151', '\110', '\146', '\040', '\151', '\156', '\040',
'\061', '\012', '\152', '\170', '\142', '\040', '\151', '\152',
'\040', '\061', '\012', '\166', '\155', '\120', '\040', '\166',
'\141', '\040', '\061', '\012', '\142', '\166', '\111', '\040',
'\166', '\141', '\040', '\061', '\012', '\146', '\155', '\110',
'\040', '\155', '\145', '\040', '\061', '\012', '\161', '\164',
'\170', '\040', '\164', '\150', '\040', '\061', '\012', '\142',
'\166', '\121', '\040', '\166', '\141', '\040', '\061', '\012',
'\161', '\172', '\130', '\040', '\161', '\165', '\040', '\061',
'\012', '\142', '\126', '\156', '\040', '\141', '\156', '\040',
'\061', '\012', '\130', '\155', '\164', '\040', '\164', '\150',
'\040', '\061', '\012', '\161', '\130', '\157', '\040', '\161',
'\165', '\040', '\061', '\012', '\160', '\146', '\104', '\040',
'\160', '\162', '\040', '\061', '\012', '\146', '\103', '\144',
'\040', '\144', '\145', '\040', '\061', '\012', '\166', '\142',
'\170', '\040', '\166', '\141', '\040', '\061', '\012', '\132',
'\150', '\172', '\040', '\164', '\150', '\040', '\061', '\012',
'\113', '\167', '\147', '\040', '\156', '\147', '\040', '\061',
'\012', '\162', '\143', '\112', '\040', '\143', '\150', '\040',
'\061', '\012', '\152', '\154', '\124', '\040', '\154', '\145',
'\040', '\061', '\012', '\152', '\172', '\115', '\040', '\163',
'\172', '\040', '\061', '\012', '\162', '\160', '\120', '\040',
'\145', '\162', '\040', '\061', '\012', '\164', '\155', '\101',
'\040', '\164', '\150', '\040', '\061', '\012', '\141', '\131',
'\167', '\040', '\141', '\156', '\040', '\061', '\012', '\172',
'\102', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\170', '\150', '\124', '\040', '\164', '\150', '\040', '\061',
'\012', '\171', '\114', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\143', '\113', '\146', '\040', '\143', '\150',
'\040', '\061', '\012', '\161', '\144', '\120', '\040', '\161',
'\165', '\040', '\061', '\012', '\131', '\142', '\170', '\040',
'\142', '\145', '\040', '\061', '\012', '\144', '\110', '\163',
'\040', '\163', '\164', '\040', '\061', '\012', '\152', '\150',
'\110', '\040', '\164', '\150', '\040', '\061', '\012', '\102',
'\163', '\166', '\040', '\163', '\164', '\040', '\061', '\012',
'\162', '\132', '\164', '\040', '\164', '\150', '\040', '\061',
'\012', '\155', '\150', '\112', '\040', '\164', '\150', '\040',
'\061', '\012', '\132', '\167', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\153', '\130', '\146', '\040', '\153',
'\141', '\040', '\061', '\012', '\172', '\166', '\124', '\040',
'\163', '\172', '\040', '\061', '\012', '\171', '\151', '\103',
'\040', '\151', '\156', '\040', '\061', '\012', '\147', '\153',
'\124', '\040', '\156', '\147', '\040', '\061', '\012', '\156',
'\112', '\167', '\040', '\141', '\156', '\040', '\061', '\012',
'\172', '\160', '\126', '\040', '\163', '\172', '\040', '\061',
'\012', '\164', '\120', '\161', '\040', '\164', '\150', '\040',
'\061', '\012', '\143', '\126', '\164', '\040', '\164', '\150',
'\040', '\061', '\012', '\144', '\102', '\147', '\040', '\156',
'\147', '\040', '\061', '\012', '\143', '\122', '\146', '\040',
'\143', '\150', '\040', '\061', '\012', '\166', '\122', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\152', '\147',
'\101', '\040', '\156', '\147', '\040', '\061', '\012', '\142',
'\115', '\172', '\040', '\163', '\172', '\040', '\061', '\012',
'\150', '\112', '\150', '\040', '\164', '\150', '\040', '\061',
'\012', '\155', '\110', '\144', '\040', '\144', '\145', '\040',
'\061', '\012', '\103', '\153', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\161', '\143', '\152', '\040', '\143',
'\150', '\040', '\061', '\012', '\171', '\111', '\142', '\040',
'\142', '\145', '\040', '\061', '\012', '\167', '\161', '\105',
'\040', '\161', '\165', '\040', '\061', '\012', '\160', '\115',
'\150', '\040', '\164', '\150', '\040', '\061', '\012', '\110',
'\161', '\152', '\040', '\161', '\165', '\040', '\061', '\012',
'\152', '\132', '\165', '\040', '\161', '\165', '\040', '\061',
'\012', '\151', '\161', '\117', '\040', '\161', '\165', '\040',
'\061', '\012', '\164', '\161', '\103', '\040', '\164', '\150',
'\040', '\061', '\012', '\161', '\157', '\113', '\040', '\161',
'\165', '\040', '\061', '\012', '\113', '\156', '\161', '\040',
'\141', '\156', '\040', '\061', '\012', '\142', '\121', '\155',
'\040', '\155', '\145', '\040', '\061', '\012', '\165', '\165',
'\130', '\040', '\161', '\165', '\040', '\061', '\012', '\127',
'\172', '\143', '\040', '\143', '\150', '\040', '\061', '\012',
'\120', '\170', '\171', '\040', '\156', '\171', '\040', '\061',
'\012', '\121', '\147', '\146', '\040', '\156', '\147', '\040',
'\061', '\012', '\163', '\106', '\167', '\040', '\163', '\164',
'\040', '\061', '\012', '\147', '\110', '\146', '\040', '\156',
'\147', '\040', '\061', '\012', '\153', '\147', '\116', '\040',
'\156', '\147', '\040', '\061', '\012', '\162', '\103', '\167',
'\040', '\145', '\162', '\040', '\061', '\012', '\131', '\152',
'\171', '\040', '\151', '\152', '\040', '\061', '\012', '\160',
'\156', '\126', '\040', '\141', '\156', '\040', '\061', '\012',
'\146', '\142', '\123', '\040', '\142', '\145', '\040', '\061',
'\012', '\151', '\110', '\172', '\040', '\151', '\156', '\040',
'\061', '\012', '\153', '\107', '\170', '\040', '\153', '\141',
'\040', '\061', '\012', '\153', '\167', '\123', '\040', '\153',
'\141', '\040', '\061', '\012', '\163', '\104', '\155', '\040',
'\163', '\164', '\040', '\061', '\012', '\126', '\150', '\153',
'\040', '\164', '\150', '\040', '\061', '\012', '\160', '\150',
'\116', '\040', '\164', '\150', '\040', '\061', '\012', '\112',
'\142', '\146', '\040', '\142', '\145', '\040', '\061', '\012',
'\160', '\127', '\172', '\040', '\163', '\172', '\040', '\061',
'\012', '\166', '\166', '\121', '\040', '\166', '\141', '\040',
'\061', '\012', '\166', '\116', '\155', '\040', '\166', '\141',
'\040', '\061', '\012', '\154', '\131', '\167', '\040', '\154',
'\145', '\040', '\061', '\012', '\172', '\110', '\170', '\040',
'\163', '\172', '\040', '\061', '\012', '\132', '\172', '\143',
'\040', '\143', '\150', '\040', '\061', '\012', '\142', '\104',
'\164', '\040', '\164', '\150', '\040', '\061', '\012', '\106',
'\143', '\166', '\040', '\143', '\150', '\040', '\061', '\012',
'\144', '\112', '\147', '\040', '\156', '\147', '\040', '\061',
'\012', '\121', '\167', '\142', '\040', '\167', '\141', '\040',
'\061', '\012', '\161', '\106', '\167', '\040', '\161', '\165',
'\040', '\061', '\012', '\167', '\155', '\117', '\040', '\155',
'\145', '\040', '\061', '\012', '\102', '\166', '\171', '\040',
'\166', '\141', '\040', '\061', '\012', '\161', '\147', '\131',
'\040', '\161', '\165', '\040', '\061', '\012', '\166', '\131',
'\163', '\040', '\163', '\164', '\040', '\061', '\012', '\170',
'\167', '\106', '\040', '\167', '\141', '\040', '\061', '\012',
'\161', '\167', '\120', '\040', '\161', '\165', '\040', '\061',
'\012', '\165', '\105', '\143', '\040', '\143', '\150', '\040',
'\061', '\012', '\155', '\127', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\146', '\172', '\117', '\040', '\163',
'\172', '\040', '\061', '\012', '\142', '\120', '\147', '\040',
'\156', '\147', '\040', '\061', '\012', '\160', '\156', '\127',
'\040', '\141', '\156', '\040', '\061', '\012', '\150', '\107',
'\170', '\040', '\164', '\150', '\040', '\061', '\012', '\126',
'\153', '\153', '\040', '\153', '\141', '\040', '\061', '\012',
'\130', '\162', '\170', '\040', '\145', '\162', '\040', '\061',
'\012', '\147', '\112', '\144', '\040', '\156', '\147', '\040',
'\061', '\012', '\114', '\154', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\126', '\161', '\165', '\040', '\165',
'\156', '\040', '\061', '\012', '\146', '\147', '\110', '\040',
'\156', '\147', '\040', '\061', '\012', '\126', '\143', '\171',
'\040', '\143', '\150', '\040', '\061', '\012', '\150', '\126',
'\143', '\040', '\164', '\150', '\040', '\061', '\012', '\162',
'\167', '\132', '\040', '\145', '\162', '\040', '\061', '\012',
'\130', '\154', '\143', '\040', '\143', '\150', '\040', '\061',
'\012', '\170', '\112', '\144', '\040', '\144', '\145', '\040',
'\061', '\012', '\106', '\156', '\156', '\040', '\141', '\156',
'\040', '\061', '\012', '\131', '\160', '\152', '\040', '\151',
'\152', '\040', '\061', '\012', '\154', '\150', '\112', '\040',
'\164', '\150', '\040', '\061', '\012', '\141', '\125', '\152',
'\040', '\141', '\156', '\040', '\061', '\012', '\154', '\102',
'\160', '\040', '\160', '\162', '\040', '\061', '\012', '\144',
'\154', '\127', '\040', '\154', '\145', '\040', '\061', '\012',
'\160', '\166', '\126', '\040', '\166', '\141', '\040', '\061',
'\012', '\115', '\167', '\162', '\040', '\145', '\162', '\040',
'\061', '\012', '\132', '\167', '\143', '\040', '\143', '\150',
'\040', '\061', '\012', '\167', '\143', '\125', '\040', '\143',
'\150', '\040', '\061', '\012', '\143', '\126', '\161', '\040',
'\143', '\150', '\040', '\061', '\012', '\171', '\143', '\125',
'\040', '\143', '\150', '\040', '\061', '\012', '\114', '\143',
'\161', '\040', '\143', '\150', '\040', '\061', '\012', '\162',
'\166', '\121', '\040', '\145', '\162', '\040', '\061', '\012',
'\145', '\131', '\155', '\040', '\145', '\162', '\040', '\061',
'\012', '\161', '\103', '\156', '\040', '\141', '\156', '\040',
'\061', '\012', '\144', '\102', '\170', '\040', '\144', '\145',
'\040', '\061', '\012', '\111', '\167', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\147', '\115', '\164', '\040',
'\164', '\150', '\040', '\061', '\012', '\142', '\150', '\103',
'\040', '\164', '\150', '\040', '\061', '\012', '\142', '\104',
'\163', '\040', '\163', '\164', '\040', '\061', '\012', '\126',
'\150', '\172', '\040', '\164', '\150', '\040', '\061', '\012',
'\153', '\112', '\172', '\040', '\163', '\172', '\040', '\061',
'\012', '\117', '\150', '\172', '\040', '\164', '\150', '\040',
'\061', '\012', '\153', '\104', '\172', '\040', '\163', '\172',
'\040', '\061', '\012', '\150', '\124', '\156', '\040', '\164',
'\150', '\040', '\061', '\012', '\145', '\161', '\107', '\040',
'\161', '\165', '\040', '\061', '\012', '\147', '\112', '\162',
'\040', '\156', '\147', '\040', '\061', '\012', '\132', '\160',
'\172', '\040', '\163', '\172', '\040', '\061', '\012', '\150',
'\167', '\121', '\040', '\164', '\150', '\040', '\061', '\012',
'\146', '\147', '\131', '\040', '\156', '\147', '\040', '\061',
'\012', '\163', '\144', '\126', '\040', '\163', '\164', '\040',
'\061', '\012', '\154', '\152', '\126', '\040', '\154', '\145',
'\040', '\061', '\012', '\171', '\107', '\147', '\040', '\156',
'\147', '\040', '\061', '\012', '\165', '\127', '\147', '\040',
'\161', '\165', '\040', '\061', '\012', '\163', '\142', '\117',
'\040', '\163', '\164', '\040', '\061', '\012', '\161', '\144',
'\104', '\040', '\161', '\165', '\040', '\061', '\012', '\171',
'\112', '\152', '\040', '\151', '\152', '\040', '\061', '\012',
'\156', '\167', '\161', '\040', '\141', '\156', '\040', '\061',
'\012', '\101', '\160', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\143', '\143', '\113', '\040', '\143', '\150',
'\040', '\061', '\012', '\121', '\167', '\154', '\040', '\154',
'\145', '\040', '\061', '\012', '\157', '\171', '\121', '\040',
'\157', '\156', '\040', '\061', '\012', '\154', '\120', '\167',
'\040', '\154', '\145', '\040', '\061', '\012', '\143', '\131',
'\164', '\040', '\164', '\150', '\040', '\061', '\012', '\142',
'\162', '\107', '\040', '\145', '\162', '\040', '\061', '\012',
'\170', '\153', '\124', '\040', '\153', '\141', '\040', '\061',
'\012', '\144', '\125', '\152', '\040', '\144', '\145', '\040',
'\061', '\012', '\162', '\150', '\122', '\040', '\164', '\150',
'\040', '\061', '\012', '\170', '\120', '\167', '\040', '\167',
'\141', '\040', '\061', '\012', '\170', '\157', '\106', '\040',
'\157', '\156', '\040', '\061', '\012', '\150', '\131', '\152',
'\040', '\164', '\150', '\040', '\061', '\012', '\150', '\131',
'\167', '\040', '\164', '\150', '\040', '\061', '\012', '\154',
'\120', '\156', '\040', '\141', '\156', '\040', '\061', '\012',
'\172', '\103', '\147', '\040', '\156', '\147', '\040', '\061',
'\012', '\163', '\112', '\164', '\040', '\164', '\150', '\040',
'\061', '\012', '\167', '\104', '\163', '\040', '\163', '\164',
'\040', '\061', '\012', '\146', '\126', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\172', '\167', '\127', '\040',
'\163', '\172', '\040', '\061', '\012', '\171', '\114', '\152',
'\040', '\151', '\152', '\040', '\061', '\012', '\141', '\102',
'\170', '\040', '\141', '\156', '\040', '\061', '\012', '\104',
'\166', '\166', '\040', '\166', '\141', '\040', '\061', '\012',
'\164', '\113', '\142', '\040', '\164', '\150', '\040', '\061',
'\012', '\152', '\146', '\107', '\040', '\151', '\152', '\040',
'\061', '\012', '\170', '\115', '\155', '\040', '\155', '\145',
'\040', '\061', '\012', '\142', '\114', '\160', '\040', '\160',
'\162', '\040', '\061', '\012', '\170', '\167', '\127', '\040',
'\167', '\141', '\040', '\061', '\012', '\142', '\172', '\110',
'\040', '\163', '\172', '\040', '\061', '\012', '\143', '\111',
'\167', '\040', '\143', '\150', '\040', '\061', '\012', '\172',
'\144', '\116', '\040', '\163', '\172', '\040', '\061', '\012',
'\107', '\147', '\166', '\040', '\166', '\141', '\040', '\061',
'\012', '\154', '\167', '\126', '\040', '\154', '\145', '\040',
'\061', '\012', '\161', '\171', '\126', '\040', '\161', '\165',
'\040', '\061', '\012', '\166', '\102', '\166', '\040', '\166',
'\141', '\040', '\061', '\012', '\117', '\167', '\155', '\040',
'\155', '\145', '\040', '\061', '\012', '\114', '\164', '\170',
'\040', '\164', '\150', '\040', '\061', '\012', '\155', '\161',
'\105', '\040', '\161', '\165', '\040', '\061', '\012', '\130',
'\152', '\143', '\040', '\143', '\150', '\040', '\061', '\012',
'\160', '\172', '\131', '\040', '\163', '\172', '\040', '\061',
'\012', '\112', '\144', '\163', '\040', '\163', '\164', '\040',
'\061', '\012', '\153', '\115', '\154', '\040', '\154', '\145',
'\040', '\061', '\012', '\104', '\144', '\152', '\040', '\144',
'\145', '\040', '\061', '\012', '\164', '\146', '\130', '\040',
'\164', '\150', '\040', '\061', '\012', '\143', '\161', '\124',
'\040', '\143', '\150', '\040', '\061', '\012', '\142', '\165',
'\107', '\040', '\161', '\165', '\040', '\061', '\012', '\157',
'\110', '\142', '\040', '\160', '\157', '\040', '\061', '\012',
'\166', '\122', '\170', '\040', '\166', '\141', '\040', '\061',
'\012', '\161', '\171', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\153', '\160', '\131', '\040', '\153', '\141',
'\040', '\061', '\012', '\166', '\161', '\116', '\040', '\161',
'\165', '\040', '\061', '\012', '\152', '\116', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\143', '\127', '\142',
'\040', '\143', '\150', '\040', '\061', '\012', '\147', '\142',
'\112', '\040', '\156', '\147', '\040', '\061', '\012', '\157',
'\132', '\167', '\040', '\157', '\156', '\040', '\061', '\012',
'\143', '\102', '\172', '\040', '\143', '\150', '\040', '\061',
'\012', '\120', '\166', '\166', '\040', '\166', '\141', '\040',
'\061', '\012', '\154', '\152', '\111', '\040', '\154', '\145',
'\040', '\061', '\012', '\150', '\166', '\121', '\040', '\164',
'\150', '\040', '\061', '\012', '\153', '\167', '\131', '\040',
'\153', '\141', '\040', '\061', '\012', '\150', '\102', '\147',
'\040', '\164', '\150', '\040', '\061', '\012', '\153', '\144',
'\116', '\040', '\144', '\145', '\040', '\061', '\012', '\171',
'\170', '\110', '\040', '\156', '\171', '\040', '\061', '\012',
'\146', '\170', '\110', '\040', '\146', '\157', '\040', '\061',
'\012', '\164', '\130', '\152', '\040', '\164', '\150', '\040',
'\061', '\012', '\165', '\102', '\170', '\040', '\161', '\165',
'\040', '\061', '\012', '\165', '\112', '\155', '\040', '\161',
'\165', '\040', '\061', '\012', '\107', '\170', '\150', '\040',
'\164', '\150', '\040', '\061', '\012', '\146', '\152', '\113',
'\040', '\151', '\152', '\040', '\061', '\012', '\147', '\161',
'\117', '\040', '\161', '\165', '\040', '\061', '\012', '\144',
'\115', '\164', '\040', '\164', '\150', '\040', '\061', '\012',
'\154', '\126', '\170', '\040', '\154', '\145', '\040', '\061',
'\012', '\122', '\150', '\160', '\040', '\164', '\150', '\040',
'\061', '\012', '\143', '\104', '\156', '\040', '\143', '\150',
'\040', '\061', '\012', '\130', '\153', '\166', '\040', '\153',
'\141', '\040', '\061', '\012', '\172', '\155', '\102', '\040',
'\163', '\172', '\040', '\061', '\012', '\161', '\141', '\131',
'\040', '\141', '\156', '\040', '\061', '\012', '\111', '\166',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\167',
'\155', '\120', '\040', '\155', '\145', '\040', '\061', '\012',
'\142', '\152', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\143', '\155', '\125', '\040', '\143', '\150', '\040',
'\061', '\012', '\163', '\154', '\103', '\040', '\154', '\145',
'\040', '\061', '\012', '\113', '\162', '\170', '\040', '\145',
'\162', '\040', '\061', '\012', '\151', '\126', '\166', '\040',
'\151', '\156', '\040', '\061', '\012', '\132', '\167', '\172',
'\040', '\163', '\172', '\040', '\061', '\012', '\171', '\120',
'\144', '\040', '\144', '\145', '\040', '\061', '\012', '\161',
'\125', '\166', '\040', '\161', '\165', '\040', '\061', '\012',
'\120', '\144', '\172', '\040', '\163', '\172', '\040', '\061',
'\012', '\121', '\172', '\153', '\040', '\163', '\172', '\040',
'\061', '\012', '\172', '\157', '\125', '\040', '\157', '\156',
'\040', '\061', '\012', '\170', '\112', '\146', '\040', '\146',
'\157', '\040', '\061', '\012', '\125', '\144', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\121', '\167', '\152',
'\040', '\151', '\152', '\040', '\061', '\012', '\113', '\166',
'\144', '\040', '\144', '\145', '\040', '\061', '\012', '\166',
'\121', '\167', '\040', '\166', '\141', '\040', '\061', '\012',
'\122', '\144', '\153', '\040', '\144', '\145', '\040', '\061',
'\012', '\163', '\111', '\152', '\040', '\163', '\164', '\040',
'\061', '\012', '\107', '\147', '\164', '\040', '\164', '\150',
'\040', '\061', '\012', '\154', '\116', '\167', '\040', '\154',
'\145', '\040', '\061', '\012', '\161', '\166', '\162', '\040',
'\161', '\165', '\040', '\061', '\012', '\171', '\161', '\104',
'\040', '\161', '\165', '\040', '\061', '\012', '\146', '\130',
'\154', '\040', '\154', '\145', '\040', '\061', '\012', '\152',
'\161', '\147', '\040', '\161', '\165', '\040', '\061', '\012',
'\161', '\155', '\101', '\040', '\161', '\165', '\040', '\061',
'\012', '\124', '\147', '\144', '\040', '\156', '\147', '\040',
'\061', '\012', '\172', '\160', '\117', '\040', '\160', '\157',
'\040', '\061', '\012', '\164', '\105', '\172', '\040', '\164',
'\150', '\040', '\061', '\012', '\102', '\161', '\172', '\040',
'\161', '\165', '\040', '\061', '\012', '\167', '\146', '\114',
'\040', '\167', '\141', '\040', '\061', '\012', '\166', '\131',
'\165', '\040', '\161', '\165', '\040', '\061', '\012', '\104',
'\170', '\167', '\040', '\167', '\141', '\040', '\061', '\012',
'\161', '\127', '\154', '\040', '\161', '\165', '\040', '\061',
'\012', '\122', '\172', '\143', '\040', '\143', '\150', '\040',
'\061', '\012', '\155', '\121', '\157', '\040', '\157', '\156',
'\040', '\061', '\012', '\124', '\164', '\143', '\040', '\164',
'\150', '\040', '\061', '\012', '\164', '\126', '\166', '\040',
'\164', '\150', '\040', '\061', '\012', '\122', '\161', '\156',
'\040', '\141', '\156', '\040', '\061', '\012', '\127', '\143',
'\156', '\040', '\143', '\150', '\040', '\061', '\012', '\116',
'\167', '\165', '\040', '\161', '\165', '\040', '\061', '\012',
'\170', '\157', '\112', '\040', '\157', '\156', '\040', '\061',
'\012', '\166', '\104', '\146', '\040', '\166', '\141', '\040',
'\061', '\012', '\160', '\150', '\110', '\040', '\164', '\150',
'\040', '\061', '\012', '\146', '\112', '\163', '\040', '\163',
'\164', '\040', '\061', '\012', '\120', '\170', '\155', '\040',
'\155', '\145', '\040', '\061', '\012', '\162', '\106', '\142',
'\040', '\145', '\162', '\040', '\061', '\012', '\150', '\154',
'\115', '\040', '\164', '\150', '\040', '\061', '\012', '\155',
'\153', '\130', '\040', '\153', '\141', '\040', '\061', '\012',
'\156', '\156', '\121', '\040', '\141', '\156', '\040', '\061',
'\012', '\130', '\146', '\156', '\040', '\141', '\156', '\040',
'\061', '\012', '\163', '\142', '\132', '\040', '\163', '\164',
'\040', '\061', '\012', '\131', '\171', '\146', '\040', '\156',
'\171', '\040', '\061', '\012', '\102', '\152', '\167', '\040',
'\151', '\152', '\040', '\061', '\012', '\111', '\154', '\170',
'\040', '\154', '\145', '\040', '\061', '\012', '\161', '\160',
'\101', '\040', '\161', '\165', '\040', '\061', '\012', '\115',
'\161', '\143', '\040', '\143', '\150', '\040', '\061', '\012',
'\147', '\161', '\132', '\040', '\161', '\165', '\040', '\061',
'\012', '\163', '\116', '\166', '\040', '\163', '\164', '\040',
'\061', '\012', '\132', '\166', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\153', '\123', '\170', '\040', '\153',
'\141', '\040', '\061', '\012', '\166', '\102', '\144', '\040',
'\144', '\145', '\040', '\061', '\012', '\167', '\166', '\132',
'\040', '\166', '\141', '\040', '\061', '\012', '\125', '\157',
'\145', '\040', '\145', '\162', '\040', '\061', '\012', '\106',
'\152', '\171', '\040', '\151', '\152', '\040', '\061', '\012',
'\172', '\113', '\142', '\040', '\163', '\172', '\040', '\061',
'\012', '\160', '\166', '\111', '\040', '\166', '\141', '\040',
'\061', '\012', '\132', '\154', '\154', '\040', '\154', '\145',
'\040', '\061', '\012', '\150', '\144', '\105', '\040', '\164',
'\150', '\040', '\061', '\012', '\106', '\160', '\166', '\040',
'\166', '\141', '\040', '\061', '\012', '\154', '\150', '\126',
'\040', '\164', '\150', '\040', '\061', '\012', '\162', '\161',
'\121', '\040', '\161', '\165', '\040', '\061', '\012', '\167',
'\152', '\107', '\040', '\151', '\152', '\040', '\061', '\012',
'\160', '\114', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\142', '\160', '\112', '\040', '\160', '\162', '\040',
'\061', '\012', '\167', '\172', '\126', '\040', '\163', '\172',
'\040', '\061', '\012', '\110', '\147', '\161', '\040', '\156',
'\147', '\040', '\061', '\012', '\172', '\150', '\127', '\040',
'\164', '\150', '\040', '\061', '\012', '\114', '\166', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\130', '\150',
'\162', '\040', '\164', '\150', '\040', '\061', '\012', '\161',
'\165', '\131', '\040', '\165', '\156', '\040', '\061', '\012',
'\152', '\161', '\132', '\040', '\161', '\165', '\040', '\061',
'\012', '\166', '\165', '\110', '\040', '\161', '\165', '\040',
'\061', '\012', '\106', '\172', '\152', '\040', '\163', '\172',
'\040', '\061', '\012', '\147', '\172', '\107', '\040', '\156',
'\147', '\040', '\061', '\012', '\164', '\106', '\143', '\040',
'\164', '\150', '\040', '\061', '\012', '\166', '\146', '\105',
'\040', '\166', '\141', '\040', '\061', '\012', '\111', '\147',
'\170', '\040', '\156', '\147', '\040', '\061', '\012', '\146',
'\161', '\131', '\040', '\161', '\165', '\040', '\061', '\012',
'\147', '\131', '\142', '\040', '\156', '\147', '\040', '\061',
'\012', '\154', '\112', '\147', '\040', '\156', '\147', '\040',
'\061', '\012', '\167', '\143', '\117', '\040', '\143', '\150',
'\040', '\061', '\012', '\121', '\166', '\153', '\040', '\153',
'\141', '\040', '\061', '\012', '\124', '\161', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\142', '\144', '\131',
'\040', '\144', '\145', '\040', '\061', '\012', '\167', '\165',
'\124', '\040', '\161', '\165', '\040', '\061', '\012', '\154',
'\110', '\167', '\040', '\154', '\145', '\040', '\061', '\012',
'\172', '\122', '\155', '\040', '\163', '\172', '\040', '\061',
'\012', '\110', '\147', '\167', '\040', '\156', '\147', '\040',
'\061', '\012', '\164', '\120', '\153', '\040', '\164', '\150',
'\040', '\061', '\012', '\112', '\161', '\166', '\040', '\161',
'\165', '\040', '\061', '\012', '\164', '\113', '\170', '\040',
'\164', '\150', '\040', '\061', '\012', '\170', '\160', '\101',
'\040', '\160', '\162', '\040', '\061', '\012', '\142', '\153',
'\111', '\040', '\153', '\141', '\040', '\061', '\012', '\142',
'\123', '\152', '\040', '\151', '\152', '\040', '\061', '\012',
'\155', '\170', '\127', '\040', '\155', '\145', '\040', '\061',
'\012', '\155', '\152', '\122', '\040', '\151', '\152', '\040',
'\061', '\012', '\117', '\151', '\160', '\040', '\151', '\156',
'\040', '\061', '\012', '\167', '\171', '\131', '\040', '\167',
'\141', '\040', '\061', '\012', '\144', '\106', '\143', '\040',
'\143', '\150', '\040', '\061', '\012', '\161', '\104', '\147',
'\040', '\161', '\165', '\040', '\061', '\012', '\167', '\130',
'\160', '\040', '\160', '\162', '\040', '\061', '\012', '\126',
'\142', '\160', '\040', '\160', '\162', '\040', '\061', '\012',
'\152', '\171', '\116', '\040', '\151', '\152', '\040', '\061',
'\012', '\171', '\166', '\120', '\040', '\166', '\141', '\040',
'\061', '\012', '\171', '\126', '\162', '\040', '\145', '\162',
'\040', '\061', '\012', '\141', '\127', '\155', '\040', '\141',
'\156', '\040', '\061', '\012', '\107', '\152', '\153', '\040',
'\151', '\152', '\040', '\061', '\012', '\101', '\160', '\167',
'\040', '\160', '\162', '\040', '\061', '\012', '\132', '\163',
'\167', '\040', '\163', '\164', '\040', '\061', '\012', '\152',
'\121', '\166', '\040', '\151', '\152', '\040', '\061', '\012',
'\152', '\142', '\124', '\040', '\151', '\152', '\040', '\061',
'\012', '\142', '\144', '\102', '\040', '\144', '\145', '\040',
'\061', '\012', '\153', '\143', '\131', '\040', '\143', '\150',
'\040', '\061', '\012', '\162', '\161', '\103', '\040', '\161',
'\165', '\040', '\061', '\012', '\142', '\170', '\104', '\040',
'\142', '\145', '\040', '\061', '\012', '\166', '\154', '\170',
'\040', '\154', '\145', '\040', '\061', '\012', '\153', '\152',
'\112', '\040', '\151', '\152', '\040', '\061', '\012', '\170',
'\161', '\127', '\040', '\161', '\165', '\040', '\061', '\012',
'\172', '\170', '\105', '\040', '\163', '\172', '\040', '\061',
'\012', '\163', '\110', '\146', '\040', '\163', '\164', '\040',
'\061', '\012', '\152', '\165', '\106', '\040', '\161', '\165',
'\040', '\061', '\012', '\153', '\167', '\130', '\040', '\153',
'\141', '\040', '\061', '\012', '\157', '\161', '\127', '\040',
'\161', '\165', '\040', '\061', '\012', '\161', '\127', '\164',
'\040', '\164', '\150', '\040', '\061', '\012', '\146', '\110',
'\143', '\040', '\143', '\150', '\040', '\061', '\012', '\143',
'\110', '\143', '\040', '\143', '\150', '\040', '\061', '\012',
'\112', '\152', '\155', '\040', '\151', '\152', '\040', '\061',
'\012', '\170', '\142', '\101', '\040', '\142', '\145', '\040',
'\061', '\012', '\122', '\161', '\152', '\040', '\161', '\165',
'\040', '\061', '\012', '\111', '\152', '\171', '\040', '\151',
'\152', '\040', '\061', '\012', '\166', '\123', '\170', '\040',
'\166', '\141', '\040', '\061', '\012', '\160', '\126', '\152',
'\040', '\151', '\152', '\040', '\061', '\012', '\162', '\121',
'\170', '\040', '\145', '\162', '\040', '\061', '\012', '\146',
'\155', '\113', '\040', '\155', '\145', '\040', '\061', '\012',
'\146', '\156', '\101', '\040', '\141', '\156', '\040', '\061',
'\012', '\120', '\150', '\166', '\040', '\164', '\150', '\040',
'\061', '\012', '\142', '\150', '\116', '\040', '\164', '\150',
'\040', '\061', '\012', '\110', '\170', '\160', '\040', '\160',
'\162', '\040', '\061', '\012', '\126', '\152', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\154', '\161', '\103',
'\040', '\161', '\165', '\040', '\061', '\012', '\127', '\150',
'\144', '\040', '\164', '\150', '\040', '\061', '\012', '\172',
'\163', '\106', '\040', '\163', '\164', '\040', '\061', '\012',
'\164', '\131', '\164', '\040', '\164', '\150', '\040', '\061',
'\012', '\112', '\172', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\116', '\146', '\146', '\040', '\146', '\157',
'\040', '\061', '\012', '\161', '\130', '\163', '\040', '\161',
'\165', '\040', '\061', '\012', '\170', '\112', '\152', '\040',
'\151', '\152', '\040', '\061', '\012', '\154', '\130', '\156',
'\040', '\141', '\156', '\040', '\061', '\012', '\132', '\160',
'\166', '\040', '\166', '\141', '\040', '\061', '\012', '\161',
'\124', '\150', '\040', '\164', '\150', '\040', '\061', '\012',
'\156', '\160', '\110', '\040', '\141', '\156', '\040', '\061',
'\012', '\153', '\131', '\170', '\040', '\153', '\141', '\040',
'\061', '\012', '\142', '\102', '\163', '\040', '\163', '\164',
'\040', '\061', '\012', '\166', '\105', '\141', '\040', '\141',
'\156', '\040', '\061', '\012', '\160', '\152', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\161', '\111', '\151',
'\040', '\161', '\165', '\040', '\061', '\012', '\106', '\144',
'\153', '\040', '\144', '\145', '\040', '\061', '\012', '\146',
'\116', '\170', '\040', '\146', '\157', '\040', '\061', '\012',
'\117', '\146', '\150', '\040', '\164', '\150', '\040', '\061',
'\012', '\167', '\130', '\145', '\040', '\145', '\162', '\040',
'\061', '\012', '\155', '\166', '\132', '\040', '\166', '\141',
'\040', '\061', '\012', '\103', '\152', '\163', '\040', '\163',
'\164', '\040', '\061', '\012', '\106', '\155', '\155', '\040',
'\155', '\145', '\040', '\061', '\012', '\160', '\153', '\122',
'\040', '\153', '\141', '\040', '\061', '\012', '\172', '\146',
'\132', '\040', '\163', '\172', '\040', '\061', '\012', '\132',
'\160', '\155', '\040', '\155', '\145', '\040', '\061', '\012',
'\143', '\142', '\101', '\040', '\143', '\150', '\040', '\061',
'\012', '\164', '\166', '\131', '\040', '\164', '\150', '\040',
'\061', '\012', '\114', '\155', '\160', '\040', '\155', '\145',
'\040', '\061', '\012', '\147', '\106', '\144', '\040', '\156',
'\147', '\040', '\061', '\012', '\142', '\106', '\170', '\040',
'\142', '\145', '\040', '\061', '\012', '\106', '\152', '\155',
'\040', '\151', '\152', '\040', '\061', '\012', '\167', '\152',
'\106', '\040', '\151', '\152', '\040', '\061', '\012', '\142',
'\152', '\166', '\040', '\151', '\152', '\040', '\061', '\012',
'\144', '\142', '\124', '\040', '\144', '\145', '\040', '\061',
'\012', '\152', '\155', '\121', '\040', '\151', '\152', '\040',
'\061', '\012', '\170', '\106', '\167', '\040', '\167', '\141',
'\040', '\061', '\012', '\143', '\104', '\153', '\040', '\143',
'\150', '\040', '\061', '\012', '\150', '\106', '\172', '\040',
'\164', '\150', '\040', '\061', '\012', '\165', '\107', '\155',
'\040', '\161', '\165', '\040', '\061', '\012', '\131', '\150',
'\170', '\040', '\164', '\150', '\040', '\061', '\012', '\126',
'\164', '\154', '\040', '\164', '\150', '\040', '\061', '\012',
'\141', '\172', '\126', '\040', '\141', '\156', '\040', '\061',
'\012', '\170', '\112', '\163', '\040', '\163', '\164', '\040',
'\061', '\012', '\115', '\170', '\167', '\040', '\167', '\141',
'\040', '\061', '\012', '\166', '\147', '\113', '\040', '\156',
'\147', '\040', '\061', '\012', '\143', '\167', '\121', '\040',
'\143', '\150', '\040', '\061', '\012', '\107', '\156', '\170',
'\040', '\141', '\156', '\040', '\061', '\012', '\154', '\142',
'\120', '\040', '\154', '\145', '\040', '\061', '\012', '\153',
'\144', '\123', '\040', '\144', '\145', '\040', '\061', '\012',
'\153', '\104', '\164', '\040', '\164', '\150', '\040', '\061',
'\012', '\120', '\166', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\171', '\110', '\163', '\040', '\163', '\164',
'\040', '\061', '\012', '\114', '\147', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\130', '\155', '\152', '\040',
'\151', '\152', '\040', '\061', '\012', '\160', '\166', '\101',
'\040', '\166', '\141', '\040', '\061', '\012', '\166', '\125',
'\165', '\040', '\161', '\165', '\040', '\061', '\012', '\121',
'\152', '\165', '\040', '\161', '\165', '\040', '\061', '\012',
'\161', '\104', '\146', '\040', '\161', '\165', '\040', '\061',
'\012', '\107', '\170', '\152', '\040', '\151', '\152', '\040',
'\061', '\012', '\107', '\146', '\172', '\040', '\163', '\172',
'\040', '\061', '\012', '\147', '\142', '\131', '\040', '\156',
'\147', '\040', '\061', '\012', '\123', '\152', '\146', '\040',
'\151', '\152', '\040', '\061', '\012', '\117', '\147', '\167',
'\040', '\156', '\147', '\040', '\061', '\012', '\150', '\107',
'\164', '\040', '\164', '\150', '\040', '\061', '\012', '\142',
'\164', '\124', '\040', '\164', '\150', '\040', '\061', '\012',
'\147', '\167', '\110', '\040', '\156', '\147', '\040', '\061',
'\012', '\115', '\167', '\152', '\040', '\151', '\152', '\040',
'\061', '\012', '\146', '\166', '\125', '\040', '\166', '\141',
'\040', '\061', '\012', '\146', '\162', '\107', '\040', '\145',
'\162', '\040', '\061', '\012', '\143', '\115', '\170', '\040',
'\143', '\150', '\040', '\061', '\012', '\131', '\144', '\166',
'\040', '\144', '\145', '\040', '\061', '\012', '\170', '\153',
'\132', '\040', '\153', '\141', '\040', '\061', '\012', '\146',
'\152', '\114', '\040', '\151', '\152', '\040', '\061', '\012',
'\171', '\120', '\170', '\040', '\156', '\171', '\040', '\061',
'\012', '\144', '\162', '\130', '\040', '\145', '\162', '\040',
'\061', '\012', '\152', '\170', '\122', '\040', '\151', '\152',
'\040', '\061', '\012', '\150', '\131', '\161', '\040', '\164',
'\150', '\040', '\061', '\012', '\170', '\110', '\156', '\040',
'\141', '\156', '\040', '\061', '\012', '\152', '\162', '\120',
'\040', '\145', '\162', '\040', '\061', '\012', '\164', '\143',
'\112', '\040', '\164', '\150', '\040', '\061', '\012', '\161',
'\112', '\172', '\040', '\161', '\165', '\040', '\061', '\012',
'\172', '\125', '\144', '\040', '\163', '\172', '\040', '\061',
'\012', '\152', '\130', '\152', '\040', '\151', '\152', '\040',
'\061', '\012', '\161', '\104', '\144', '\040', '\161', '\165',
'\040', '\061', '\012', '\102', '\152', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\161', '\106', '\172', '\040',
'\163', '\172', '\040', '\061', '\012', '\155', '\170', '\107',
'\040', '\155', '\145', '\040', '\061', '\012', '\170', '\117',
'\144', '\040', '\144', '\145', '\040', '\061', '\012', '\150',
'\147', '\114', '\040', '\164', '\150', '\040', '\061', '\012',
'\143', '\160', '\104', '\040', '\143', '\150', '\040', '\061',
'\012', '\152', '\150', '\123', '\040', '\164', '\150', '\040',
'\061', '\012', '\132', '\161', '\160', '\040', '\161', '\165',
'\040', '\061', '\012', '\171', '\116', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\160', '\110', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\162', '\132', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\127', '\152',
'\171', '\040', '\151', '\152', '\040', '\061', '\012', '\124',
'\146', '\142', '\040', '\142', '\145', '\040', '\061', '\012',
'\116', '\167', '\142', '\040', '\167', '\141', '\040', '\061',
'\012', '\172', '\121', '\153', '\040', '\163', '\172', '\040',
'\061', '\012', '\122', '\153', '\143', '\040', '\143', '\150',
'\040', '\061', '\012', '\121', '\166', '\167', '\040', '\166',
'\141', '\040', '\061', '\012', '\167', '\154', '\112', '\040',
'\154', '\145', '\040', '\061', '\012', '\143', '\106', '\160',
'\040', '\143', '\150', '\040', '\061', '\012', '\157', '\104',
'\142', '\040', '\157', '\156', '\040', '\061', '\012', '\154',
'\163', '\131', '\040', '\154', '\145', '\040', '\061', '\012',
'\132', '\142', '\156', '\040', '\141', '\156', '\040', '\061',
'\012', '\167', '\103', '\144', '\040', '\144', '\145', '\040',
'\061', '\012', '\172', '\170', '\116', '\040', '\163', '\172',
'\040', '\061', '\012', '\142', '\121', '\146', '\040', '\142',
'\145', '\040', '\061', '\012', '\113', '\152', '\171', '\040',
'\151', '\152', '\040', '\061', '\012', '\117', '\166', '\153',
'\040', '\153', '\141', '\040', '\061', '\012', '\143', '\170',
'\101', '\040', '\143', '\150', '\040', '\061', '\012', '\110',
'\161', '\167', '\040', '\161', '\165', '\040', '\061', '\012',
'\150', '\167', '\131', '\040', '\164', '\150', '\040', '\061',
'\012', '\163', '\107', '\166', '\040', '\163', '\164', '\040',
'\061', '\012', '\122', '\167', '\156', '\040', '\141', '\156',
'\040', '\061', '\012', '\172', '\166', '\110', '\040', '\163',
'\172', '\040', '\061', '\012', '\171', '\126', '\167', '\040',
'\167', '\141', '\040', '\061', '\012', '\172', '\155', '\130',
'\040', '\163', '\172', '\040', '\061', '\012', '\161', '\144',
'\115', '\040', '\161', '\165', '\040', '\061', '\012', '\144',
'\112', '\166', '\040', '\144', '\145', '\040', '\061', '\012',
'\167', '\104', '\152', '\040', '\151', '\152', '\040', '\061',
'\012', '\126', '\150', '\155', '\040', '\164', '\150', '\040',
'\061', '\012', '\146', '\114', '\164', '\040', '\164', '\150',
'\040', '\061', '\012', '\142', '\166', '\103', '\040', '\166',
'\141', '\040', '\061', '\012', '\170', '\126', '\156', '\040',
'\141', '\156', '\040', '\061', '\012', '\110', '\146', '\170',
'\040', '\146', '\157', '\040', '\061', '\012', '\164', '\121',
'\154', '\040', '\164', '\150', '\040', '\061', '\012', '\154',
'\150', '\127', '\040', '\164', '\150', '\040', '\061', '\012',
'\157', '\161', '\123', '\040', '\161', '\165', '\040', '\061',
'\012', '\121', '\171', '\141', '\040', '\141', '\156', '\040',
'\061', '\012', '\147', '\132', '\146', '\040', '\156', '\147',
'\040', '\061', '\012', '\142', '\113', '\171', '\040', '\142',
'\145', '\040', '\061', '\012', '\164', '\152', '\130', '\040',
'\164', '\150', '\040', '\061', '\012', '\126', '\153', '\143',
'\040', '\143', '\150', '\040', '\061', '\012', '\171', '\152',
'\166', '\040', '\151', '\152', '\040', '\061', '\012', '\142',
'\147', '\116', '\040', '\156', '\147', '\040', '\061', '\012',
'\154', '\116', '\155', '\040', '\154', '\145', '\040', '\061',
'\012', '\112', '\172', '\154', '\040', '\154', '\145', '\040',
'\061', '\012', '\114', '\167', '\170', '\040', '\167', '\141',
'\040', '\061', '\012', '\166', '\143', '\114', '\040', '\143',
'\150', '\040', '\061', '\012', '\171', '\130', '\150', '\040',
'\164', '\150', '\040', '\061', '\012', '\172', '\164', '\132',
'\040', '\164', '\150', '\040', '\061', '\012', '\171', '\112',
'\170', '\040', '\156', '\171', '\040', '\061', '\012', '\156',
'\160', '\126', '\040', '\141', '\156', '\040', '\061', '\012',
'\163', '\167', '\107', '\040', '\163', '\164', '\040', '\061',
'\012', '\163', '\130', '\156', '\040', '\141', '\156', '\040',
'\061', '\012', '\145', '\112', '\142', '\040', '\145', '\162',
'\040', '\061', '\012', '\144', '\143', '\122', '\040', '\143',
'\150', '\040', '\061', '\012', '\132', '\162', '\147', '\040',
'\156', '\147', '\040', '\061', '\012', '\120', '\147', '\166',
'\040', '\156', '\147', '\040', '\061', '\012', '\170', '\131',
'\162', '\040', '\145', '\162', '\040', '\061', '\012', '\152',
'\154', '\111', '\040', '\154', '\145', '\040', '\061', '\012',
'\106', '\155', '\146', '\040', '\155', '\145', '\040', '\061',
'\012', '\107', '\161', '\153', '\040', '\161', '\165', '\040',
'\061', '\012', '\166', '\154', '\132', '\040', '\154', '\145',
'\040', '\061', '\012', '\103', '\163', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\165', '\121', '\152', '\040',
'\161', '\165', '\040', '\061', '\012', '\154', '\114', '\155',
'\040', '\154', '\145', '\040', '\061', '\012', '\150', '\167',
'\113', '\040', '\164', '\150', '\040', '\061', '\012', '\143',
'\121', '\166', '\040', '\143', '\150', '\040', '\061', '\012',
'\161', '\146', '\110', '\040', '\161', '\165', '\040', '\061',
'\012', '\162', '\122', '\167', '\040', '\145', '\162', '\040',
'\061', '\012', '\141', '\125', '\157', '\040', '\141', '\156',
'\040', '\061', '\012', '\161', '\160', '\105', '\040', '\161',
'\165', '\040', '\061', '\012', '\154', '\120', '\143', '\040',
'\143', '\150', '\040', '\061', '\012', '\144', '\110', '\144',
'\040', '\144', '\145', '\040', '\061', '\012', '\147', '\161',
'\114', '\040', '\161', '\165', '\040', '\061', '\012', '\172',
'\127', '\160', '\040', '\163', '\172', '\040', '\061', '\012',
'\142', '\102', '\161', '\040', '\142', '\145', '\040', '\061',
'\012', '\167', '\127', '\160', '\040', '\160', '\162', '\040',
'\061', '\012', '\143', '\146', '\113', '\040', '\143', '\150',
'\040', '\061', '\012', '\146', '\127', '\170', '\040', '\146',
'\157', '\040', '\061', '\012', '\162', '\166', '\126', '\040',
'\145', '\162', '\040', '\061', '\012', '\172', '\150', '\122',
'\040', '\164', '\150', '\040', '\061', '\012', '\113', '\154',
'\150', '\040', '\164', '\150', '\040', '\061', '\012', '\143',
'\142', '\121', '\040', '\143', '\150', '\040', '\061', '\012',
'\112', '\155', '\147', '\040', '\156', '\147', '\040', '\061',
'\012', '\146', '\120', '\147', '\040', '\156', '\147', '\040',
'\061', '\012', '\121', '\156', '\156', '\040', '\141', '\156',
'\040', '\061', '\012', '\163', '\115', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\141', '\106', '\172', '\040',
'\141', '\156', '\040', '\061', '\012', '\163', '\112', '\163',
'\040', '\163', '\164', '\040', '\061', '\012', '\120', '\167',
'\152', '\040', '\151', '\152', '\040', '\061', '\012', '\152',
'\143', '\114', '\040', '\143', '\150', '\040', '\061', '\012',
'\147', '\155', '\121', '\040', '\156', '\147', '\040', '\061',
'\012', '\131', '\161', '\162', '\040', '\161', '\165', '\040',
'\061', '\012', '\103', '\147', '\172', '\040', '\156', '\147',
'\040', '\061', '\012', '\167', '\161', '\172', '\040', '\161',
'\165', '\040', '\061', '\012', '\146', '\156', '\111', '\040',
'\156', '\164', '\040', '\061', '\012', '\161', '\117', '\164',
'\040', '\164', '\150', '\040', '\061', '\012', '\166', '\171',
'\125', '\040', '\166', '\141', '\040', '\061', '\012', '\167',
'\121', '\172', '\040', '\163', '\172', '\040', '\061', '\012',
'\166', '\125', '\141', '\040', '\141', '\156', '\040', '\061',
'\012', '\170', '\102', '\164', '\040', '\164', '\150', '\040',
'\061', '\012', '\144', '\116', '\155', '\040', '\144', '\145',
'\040', '\061', '\012', '\105', '\167', '\170', '\040', '\167',
'\141', '\040', '\061', '\012', '\171', '\160', '\104', '\040',
'\160', '\162', '\040', '\061', '\012', '\167', '\170', '\114',
'\040', '\167', '\141', '\040', '\061', '\012', '\161', '\145',
'\116', '\040', '\161', '\165', '\040', '\061', '\012', '\166',
'\153', '\102', '\040', '\153', '\141', '\040', '\061', '\012',
'\152', '\102', '\152', '\040', '\151', '\152', '\040', '\061',
'\012', '\147', '\125', '\152', '\040', '\156', '\147', '\040',
'\061', '\012', '\153', '\121', '\153', '\040', '\153', '\141',
'\040', '\061', '\012', '\146', '\167', '\117', '\040', '\167',
'\141', '\040', '\061', '\012', '\161', '\121', '\164', '\040',
'\164', '\150', '\040', '\061', '\012', '\121', '\162', '\154',
'\040', '\145', '\162', '\040', '\061', '\012', '\144', '\124',
'\170', '\040', '\144', '\145', '\040', '\061', '\012', '\146',
'\127', '\144', '\040', '\144', '\145', '\040', '\061', '\012',
'\152', '\170', '\113', '\040', '\151', '\152', '\040', '\061',
'\012', '\146', '\110', '\154', '\040', '\154', '\145', '\040',
'\061', '\012', '\152', '\143', '\131', '\040', '\143', '\150',
'\040', '\061', '\012', '\157', '\112', '\163', '\040', '\157',
'\156', '\040', '\061', '\012', '\163', '\122', '\170', '\040',
'\163', '\164', '\040', '\061', '\012', '\165', '\121', '\147',
'\040', '\161', '\165', '\040', '\061', '\012', '\150', '\150',
'\131', '\040', '\164', '\150', '\040', '\061', '\012', '\163',
'\144', '\116', '\040', '\163', '\164', '\040', '\061', '\012',
'\155', '\170', '\122', '\040', '\155', '\145', '\040', '\061',
'\012', '\130', '\163', '\166', '\040', '\163', '\164', '\040',
'\061', '\012', '\120', '\143', '\161', '\040', '\143', '\150',
'\040', '\061', '\012', '\160', '\153', '\132', '\040', '\153',
'\141', '\040', '\061', '\012', '\172', '\104', '\154', '\040',
'\154', '\145', '\040', '\061', '\012', '\162', '\111', '\150',
'\040', '\164', '\150', '\040', '\061', '\012', '\110', '\156',
'\166', '\040', '\141', '\156', '\040', '\061', '\012', '\152',
'\160', '\101', '\040', '\151', '\152', '\040', '\061', '\012',
'\150', '\132', '\152', '\040', '\164', '\150', '\040', '\061',
'\012', '\132', '\156', '\144', '\040', '\141', '\156', '\040',
'\061', '\012', '\150', '\132', '\144', '\040', '\164', '\150',
'\040', '\061', '\012', '\161', '\162', '\117', '\040', '\161',
'\165', '\040', '\061', '\012', '\123', '\142', '\170', '\040',
'\142', '\145', '\040', '\061', '\012', '\164', '\127', '\160',
'\040', '\164', '\150', '\040', '\061', '\012', '\110', '\160',
'\144', '\040', '\144', '\145', '\040', '\061', '\012', '\110',
'\152', '\172', '\040', '\163', '\172', '\040', '\061', '\012',
'\172', '\143', '\123', '\040', '\143', '\150', '\040', '\061',
'\012', '\153', '\120', '\172', '\040', '\163', '\172', '\040',
'\061', '\012', '\110', '\164', '\161', '\040', '\164', '\150',
'\040', '\061', '\012', '\147', '\143', '\107', '\040', '\143',
'\150', '\040', '\061', '\012', '\130', '\161', '\170', '\040',
'\161', '\165', '\040', '\061', '\012', '\155', '\132', '\143',
'\040', '\143', '\150', '\040', '\061', '\012', '\130', '\172',
'\166', '\040', '\163', '\172', '\040', '\061', '\012', '\113',
'\147', '\167', '\040', '\156', '\147', '\040', '\061', '\012',
'\141', '\125', '\146', '\040', '\141', '\156', '\040', '\061',
'\012', '\131', '\155', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\167', '\143', '\131', '\040', '\143', '\150',
'\040', '\061', '\012', '\157', '\126', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\160', '\144', '\115', '\040',
'\144', '\145', '\040', '\061', '\012', '\166', '\172', '\113',
'\040', '\163', '\172', '\040', '\061', '\012', '\154', '\162',
'\130', '\040', '\145', '\162', '\040', '\061', '\012', '\171',
'\144', '\126', '\040', '\144', '\145', '\040', '\061', '\012',
'\165', '\161', '\120', '\040', '\161', '\165', '\040', '\061',
'\012', '\146', '\155', '\116', '\040', '\155', '\145', '\040',
'\061', '\012', '\117', '\143', '\147', '\040', '\143', '\150',
'\040', '\061', '\012', '\146', '\114', '\153', '\040', '\153',
'\141', '\040', '\061', '\012', '\143', '\112', '\163', '\040',
'\143', '\150', '\040', '\061', '\012', '\165', '\107', '\146',
'\040', '\161', '\165', '\040', '\061', '\012', '\143', '\115',
'\153', '\040', '\143', '\150', '\040', '\061', '\012', '\147',
'\124', '\170', '\040', '\156', '\147', '\040', '\061', '\012',
'\170', '\116', '\143', '\040', '\143', '\150', '\040', '\061',
'\012', '\142', '\110', '\154', '\040', '\154', '\145', '\040',
'\061', '\012', '\165', '\127', '\160', '\040', '\161', '\165',
'\040', '\061', '\012', '\144', '\170', '\114', '\040', '\144',
'\145', '\040', '\061', '\012', '\172', '\170', '\107', '\040',
'\163', '\172', '\040', '\061', '\012', '\144', '\126', '\156',
'\040', '\141', '\156', '\040', '\061', '\012', '\116', '\142',
'\150', '\040', '\164', '\150', '\040', '\061', '\012', '\103',
'\170', '\163', '\040', '\163', '\164', '\040', '\061', '\012',
'\143', '\166', '\107', '\040', '\143', '\150', '\040', '\061',
'\012', '\167', '\103', '\146', '\040', '\167', '\141', '\040',
'\061', '\012', '\153', '\152', '\103', '\040', '\151', '\152',
'\040', '\061', '\012', '\143', '\146', '\131', '\040', '\143',
'\150', '\040', '\061', '\012', '\172', '\143', '\146', '\040',
'\143', '\150', '\040', '\061', '\012', '\144', '\160', '\127',
'\040', '\144', '\145', '\040', '\061', '\012', '\120', '\161',
'\171', '\040', '\161', '\165', '\040', '\061', '\012', '\164',
'\154', '\116', '\040', '\164', '\150', '\040', '\061', '\012',
'\163', '\111', '\151', '\040', '\151', '\156', '\040', '\061',
'\012', '\161', '\170', '\103', '\040', '\161', '\165', '\040',
'\061', '\012', '\113', '\152', '\155', '\040', '\151', '\152',
'\040', '\061', '\012', '\172', '\132', '\153', '\040', '\163',
'\172', '\040', '\061', '\012', '\106', '\153', '\163', '\040',
'\163', '\164', '\040', '\061', '\012', '\147', '\127', '\142',
'\040', '\156', '\147', '\040', '\061', '\012', '\164', '\161',
'\113', '\040', '\164', '\150', '\040', '\061', '\012', '\112',
'\154', '\166', '\040', '\154', '\145', '\040', '\061', '\012',
'\153', '\103', '\153', '\040', '\153', '\141', '\040', '\061',
'\012', '\167', '\150', '\124', '\040', '\164', '\150', '\040',
'\061', '\012', '\117', '\167', '\166', '\040', '\166', '\141',
'\040', '\061', '\012', '\172', '\113', '\155', '\040', '\163',
'\172', '\040', '\061', '\012', '\152', '\161', '\154', '\040',
'\161', '\165', '\040', '\061', '\012', '\164', '\107', '\172',
'\040', '\164', '\150', '\040', '\061', '\012', '\144', '\103',
'\167', '\040', '\144', '\145', '\040', '\061', '\012', '\171',
'\155', '\121', '\040', '\155', '\145', '\040', '\061', '\012',
'\170', '\156', '\106', '\040', '\141', '\156', '\040', '\061',
'\012', '\167', '\165', '\106', '\040', '\161', '\165', '\040',
'\061', '\012', '\160', '\106', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\152', '\171', '\123', '\040', '\151',
'\152', '\040', '\061', '\012', '\160', '\152', '\130', '\040',
'\151', '\152', '\040', '\061', '\012', '\154', '\117', '\152',
'\040', '\154', '\145', '\040', '\061', '\012', '\112', '\155',
'\144', '\040', '\144', '\145', '\040', '\061', '\012', '\132',
'\166', '\172', '\040', '\163', '\172', '\040', '\061', '\012',
'\152', '\161', '\115', '\040', '\161', '\165', '\040', '\061',
'\012', '\152', '\124', '\144', '\040', '\144', '\145', '\040',
'\061', '\012', '\161', '\117', '\151', '\040', '\161', '\165',
'\040', '\061', '\012', '\157', '\112', '\147', '\040', '\156',
'\147', '\040', '\061', '\012', '\115', '\152', '\170', '\040',
'\151', '\152', '\040', '\061', '\012', '\124', '\160', '\142',
'\040', '\160', '\162', '\040', '\061', '\012', '\127', '\164',
'\166', '\040', '\164', '\150', '\040', '\061', '\012', '\152',
'\170', '\117', '\040', '\151', '\152', '\040', '\061', '\012',
'\144', '\102', '\163', '\040', '\163', '\164', '\040', '\061',
'\012', '\164', '\116', '\166', '\040', '\164', '\150', '\040',
'\061', '\012', '\161', '\124', '\142', '\040', '\161', '\165',
'\040', '\061', '\012', '\166', '\156', '\125', '\040', '\141',
'\156', '\040', '\061', '\012', '\172', '\104', '\170', '\040',
'\163', '\172', '\040', '\061', '\012', '\160', '\123', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\170', '\122',
'\155', '\040', '\155', '\145', '\040', '\061', '\012', '\161',
'\125', '\146', '\040', '\161', '\165', '\040', '\061', '\012',
'\155', '\102', '\142', '\040', '\155', '\145', '\040', '\061',
'\012', '\161', '\152', '\111', '\040', '\161', '\165', '\040',
'\061', '\012', '\163', '\111', '\171', '\040', '\163', '\164',
'\040', '\061', '\012', '\144', '\103', '\147', '\040', '\156',
'\147', '\040', '\061', '\012', '\161', '\111', '\170', '\040',
'\161', '\165', '\040', '\061', '\012', '\160', '\132', '\160',
'\040', '\160', '\162', '\040', '\061', '\012', '\161', '\104',
'\164', '\040', '\164', '\150', '\040', '\061', '\012', '\170',
'\162', '\115', '\040', '\145', '\162', '\040', '\061', '\012',
'\165', '\117', '\145', '\040', '\161', '\165', '\040', '\061',
'\012', '\170', '\147', '\117', '\040', '\156', '\147', '\040',
'\061', '\012', '\147', '\162', '\130', '\040', '\156', '\147',
'\040', '\061', '\012', '\120', '\147', '\147', '\040', '\156',
'\147', '\040', '\061', '\012', '\171', '\126', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\161', '\105', '\165',
'\040', '\165', '\156', '\040', '\061', '\012', '\153', '\102',
'\143', '\040', '\143', '\150', '\040', '\061', '\012', '\123',
'\147', '\172', '\040', '\156', '\147', '\040', '\061', '\012',
'\150', '\152', '\130', '\040', '\164', '\150', '\040', '\061',
'\012', '\147', '\117', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\160', '\155', '\127', '\040', '\155', '\145',
'\040', '\061', '\012', '\107', '\156', '\167', '\040', '\141',
'\156', '\040', '\061', '\012', '\170', '\132', '\154', '\040',
'\154', '\145', '\040', '\061', '\012', '\150', '\124', '\144',
'\040', '\164', '\150', '\040', '\061', '\012', '\107', '\146',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\163',
'\114', '\146', '\040', '\163', '\164', '\040', '\061', '\012',
'\120', '\147', '\152', '\040', '\156', '\147', '\040', '\061',
'\012', '\164', '\167', '\106', '\040', '\164', '\150', '\040',
'\061', '\012', '\155', '\104', '\153', '\040', '\153', '\141',
'\040', '\061', '\012', '\161', '\144', '\131', '\040', '\161',
'\165', '\040', '\061', '\012', '\166', '\163', '\132', '\040',
'\163', '\164', '\040', '\061', '\012', '\166', '\143', '\103',
'\040', '\143', '\150', '\040', '\061', '\012', '\104', '\143',
'\152', '\040', '\143', '\150', '\040', '\061', '\012', '\167',
'\125', '\150', '\040', '\164', '\150', '\040', '\061', '\012',
'\161', '\111', '\144', '\040', '\161', '\165', '\040', '\061',
'\012', '\161', '\162', '\132', '\040', '\161', '\165', '\040',
'\061', '\012', '\143', '\142', '\123', '\040', '\143', '\150',
'\040', '\061', '\012', '\130', '\172', '\143', '\040', '\143',
'\150', '\040', '\061', '\012', '\166', '\127', '\152', '\040',
'\151', '\152', '\040', '\061', '\012', '\160', '\166', '\103',
'\040', '\166', '\141', '\040', '\061', '\012', '\112', '\162',
'\167', '\040', '\145', '\162', '\040', '\061', '\012', '\171',
'\170', '\111', '\040', '\156', '\171', '\040', '\061', '\012',
'\144', '\161', '\111', '\040', '\161', '\165', '\040', '\061',
'\012', '\165', '\103', '\155', '\040', '\161', '\165', '\040',
'\061', '\012', '\166', '\130', '\144', '\040', '\144', '\145',
'\040', '\061', '\012', '\127', '\144', '\160', '\040', '\144',
'\145', '\040', '\061', '\012', '\104', '\172', '\143', '\040',
'\143', '\150', '\040', '\061', '\012', '\150', '\144', '\126',
'\040', '\164', '\150', '\040', '\061', '\012', '\161', '\142',
'\117', '\040', '\161', '\165', '\040', '\061', '\012', '\112',
'\167', '\153', '\040', '\153', '\141', '\040', '\061', '\012',
'\127', '\161', '\155', '\040', '\161', '\165', '\040', '\061',
'\012', '\151', '\130', '\167', '\040', '\151', '\156', '\040',
'\061', '\012', '\146', '\131', '\154', '\040', '\154', '\145',
'\040', '\061', '\012', '\161', '\165', '\121', '\040', '\165',
'\156', '\040', '\061', '\012', '\153', '\152', '\104', '\040',
'\151', '\152', '\040', '\061', '\012', '\155', '\111', '\150',
'\040', '\164', '\150', '\040', '\061', '\012', '\170', '\127',
'\167', '\040', '\167', '\141', '\040', '\061', '\012', '\157',
'\103', '\167', '\040', '\157', '\156', '\040', '\061', '\012',
'\132', '\143', '\166', '\040', '\143', '\150', '\040', '\061',
'\012', '\152', '\144', '\116', '\040', '\144', '\145', '\040',
'\061', '\012', '\165', '\131', '\142', '\040', '\161', '\165',
'\040', '\061', '\012', '\123', '\162', '\170', '\040', '\145',
'\162', '\040', '\061', '\012', '\160', '\147', '\125', '\040',
'\156', '\147', '\040', '\061', '\012', '\162', '\121', '\147',
'\040', '\156', '\147', '\040', '\061', '\012', '\155', '\110',
'\146', '\040', '\155', '\145', '\040', '\061', '\012', '\146',
'\102', '\164', '\040', '\164', '\150', '\040', '\061', '\012',
'\152', '\126', '\170', '\040', '\151', '\152', '\040', '\061',
'\012', '\166', '\131', '\143', '\040', '\143', '\150', '\040',
'\061', '\012', '\126', '\147', '\152', '\040', '\156', '\147',
'\040', '\061', '\012', '\161', '\141', '\123', '\040', '\141',
'\156', '\040', '\061', '\012', '\160', '\170', '\127', '\040',
'\160', '\162', '\040', '\061', '\012', '\155', '\156', '\112',
'\040', '\141', '\156', '\040', '\061', '\012', '\102', '\167',
'\167', '\040', '\167', '\141', '\040', '\061', '\012', '\124',
'\161', '\172', '\040', '\161', '\165', '\040', '\061', '\012',
'\152', '\106', '\166', '\040', '\151', '\152', '\040', '\061',
'\012', '\170', '\167', '\115', '\040', '\167', '\141', '\040',
'\061', '\012', '\104', '\161', '\167', '\040', '\161', '\165',
'\040', '\061', '\012', '\155', '\167', '\111', '\040', '\155',
'\145', '\040', '\061', '\012', '\166', '\150', '\127', '\040',
'\164', '\150', '\040', '\061', '\012', '\163', '\161', '\130',
'\040', '\161', '\165', '\040', '\061', '\012', '\164', '\154',
'\122', '\040', '\164', '\150', '\040', '\061', '\012', '\141',
'\102', '\150', '\040', '\164', '\150', '\040', '\061', '\012',
'\161', '\156', '\132', '\040', '\141', '\156', '\040', '\061',
'\012', '\147', '\130', '\147', '\040', '\156', '\147', '\040',
'\061', '\012', '\163', '\103', '\152', '\040', '\163', '\164',
'\040', '\061', '\012', '\147', '\162', '\116', '\040', '\156',
'\147', '\040', '\061', '\012', '\164', '\131', '\166', '\040',
'\164', '\150', '\040', '\061', '\012', '\127', '\167', '\147',
'\040', '\156', '\147', '\040', '\061', '\012', '\146', '\131',
'\151', '\040', '\151', '\156', '\040', '\061', '\012', '\142',
'\164', '\106', '\040', '\164', '\150', '\040', '\061', '\012',
'\167', '\121', '\156', '\040', '\141', '\156', '\040', '\061',
'\012', '\132', '\154', '\164', '\040', '\164', '\150', '\040',
'\061', '\012', '\143', '\112', '\172', '\040', '\143', '\150',
'\040', '\061', '\012', '\130', '\142', '\156', '\040', '\141',
'\156', '\040', '\061', '\012', '\164', '\114', '\155', '\040',
'\164', '\150', '\040', '\061', '\012', '\132', '\154', '\170',
'\040', '\154', '\145', '\040', '\061', '\012', '\116', '\155',
'\152', '\040', '\151', '\152', '\040', '\061', '\012', '\150',
'\143', '\107', '\040', '\164', '\150', '\040', '\061', '\012',
'\127', '\162', '\153', '\040', '\145', '\162', '\040', '\061',
'\012', '\116', '\150', '\143', '\040', '\164', '\150', '\040',
'\061', '\012', '\166', '\161', '\104', '\040', '\161', '\165',
'\040', '\061', '\012', '\165', '\152', '\131', '\040', '\161',
'\165', '\040', '\061', '\012', '\151', '\112', '\144', '\040',
'\151', '\156', '\040', '\061', '\012', '\144', '\114', '\146',
'\040', '\144', '\145', '\040', '\061', '\012', '\143', '\121',
'\156', '\040', '\143', '\150', '\040', '\061', '\012', '\127',
'\146', '\170', '\040', '\146', '\157', '\040', '\061', '\012',
'\150', '\153', '\132', '\040', '\164', '\150', '\040', '\061',
'\012', '\155', '\150', '\103', '\040', '\164', '\150', '\040',
'\061', '\012', '\172', '\115', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\172', '\114', '\172', '\040', '\163',
'\172', '\040', '\061', '\012', '\130', '\147', '\164', '\040',
'\164', '\150', '\040', '\061', '\012', '\161', '\113', '\162',
'\040', '\161', '\165', '\040', '\061', '\012', '\171', '\152',
'\112', '\040', '\151', '\152', '\040', '\061', '\012', '\162',
'\112', '\155', '\040', '\145', '\162', '\040', '\061', '\012',
'\126', '\170', '\143', '\040', '\143', '\150', '\040', '\061',
'\012', '\102', '\170', '\156', '\040', '\141', '\156', '\040',
'\061', '\012', '\143', '\156', '\121', '\040', '\143', '\150',
'\040', '\061', '\012', '\161', '\153', '\121', '\040', '\161',
'\165', '\040', '\061', '\012', '\116', '\154', '\167', '\040',
'\154', '\145', '\040', '\061', '\012', '\150', '\127', '\166',
'\040', '\164', '\150', '\040', '\061', '\012', '\167', '\144',
'\125', '\040', '\144', '\145', '\040', '\061', '\012', '\161',
'\164', '\102', '\040', '\164', '\150', '\040', '\061', '\012',
'\161', '\111', '\145', '\040', '\161', '\165', '\040', '\061',
'\012', '\161', '\145', '\131', '\040', '\161', '\165', '\040',
'\061', '\012', '\132', '\162', '\160', '\040', '\145', '\162',
'\040', '\061', '\012', '\116', '\150', '\144', '\040', '\164',
'\150', '\040', '\061', '\012', '\146', '\104', '\160', '\040',
'\160', '\157', '\040', '\061', '\012', '\103', '\156', '\152',
'\040', '\141', '\156', '\040', '\061', '\012', '\153', '\170',
'\125', '\040', '\153', '\141', '\040', '\061', '\012', '\102',
'\161', '\166', '\040', '\161', '\165', '\040', '\061', '\012',
'\166', '\130', '\162', '\040', '\145', '\162', '\040', '\061',
'\012', '\153', '\102', '\170', '\040', '\153', '\141', '\040',
'\061', '\012', '\146', '\102', '\156', '\040', '\141', '\156',
'\040', '\061', '\012', '\160', '\115', '\170', '\040', '\160',
'\162', '\040', '\061', '\012', '\153', '\170', '\122', '\040',
'\153', '\141', '\040', '\061', '\012', '\114', '\172', '\147',
'\040', '\156', '\147', '\040', '\061', '\012', '\152', '\102',
'\150', '\040', '\164', '\150', '\040', '\061', '\012', '\106',
'\152', '\156', '\040', '\141', '\156', '\040', '\061', '\012',
'\167', '\160', '\103', '\040', '\160', '\162', '\040', '\061',
'\012', '\146', '\113', '\171', '\040', '\156', '\171', '\040',
'\061', '\012', '\150', '\167', '\104', '\040', '\164', '\150',
'\040', '\061', '\012', '\146', '\161', '\146', '\040', '\161',
'\165', '\040', '\061', '\012', '\161', '\102', '\171', '\040',
'\161', '\165', '\040', '\061', '\012', '\131', '\143', '\161',
'\040', '\143', '\150', '\040', '\061', '\012', '\116', '\156',
'\163', '\040', '\141', '\156', '\040', '\061', '\012', '\152',
'\155', '\132', '\040', '\151', '\152', '\040', '\061', '\012',
'\147', '\113', '\167', '\040', '\156', '\147', '\040', '\061',
'\012', '\144', '\161', '\101', '\040', '\161', '\165', '\040',
'\061', '\012', '\102', '\152', '\147', '\040', '\156', '\147',
'\040', '\061', '\012', '\146', '\107', '\170', '\040', '\146',
'\157', '\040', '\061', '\012', '\114', '\156', '\160', '\040',
'\141', '\156', '\040', '\061', '\012', '\167', '\150', '\125',
'\040', '\164', '\150', '\040', '\061', '\012', '\161', '\120',
'\144', '\040', '\161', '\165', '\040', '\061', '\012', '\171',
'\115', '\170', '\040', '\156', '\171', '\040', '\061', '\012',
'\167', '\105', '\152', '\040', '\151', '\152', '\040', '\061',
'\012', '\153', '\155', '\112', '\040', '\153', '\141', '\040',
'\061', '\012', '\121', '\163', '\170', '\040', '\163', '\164',
'\040', '\061', '\012', '\154', '\103', '\167', '\040', '\154',
'\145', '\040', '\061', '\012', '\121', '\161', '\142', '\040',
'\161', '\165', '\040', '\061', '\012', '\150', '\166', '\112',
'\040', '\164', '\150', '\040', '\061', '\012', '\170', '\153',
'\116', '\040', '\153', '\141', '\040', '\061', '\012', '\165',
'\126', '\147', '\040', '\161', '\165', '\040', '\061', '\012',
'\163', '\121', '\155', '\040', '\163', '\164', '\040', '\061',
'\012', '\165', '\112', '\160', '\040', '\161', '\165', '\040',
'\061', '\012', '\131', '\172', '\156', '\040', '\141', '\156',
'\040', '\061', '\012', '\143', '\130', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\163', '\162', '\111', '\040',
'\145', '\162', '\040', '\061', '\012', '\164', '\102', '\172',
'\040', '\164', '\150', '\040', '\061', '\012', '\143', '\122',
'\152', '\040', '\143', '\150', '\040', '\061', '\012', '\171',
'\111', '\167', '\040', '\167', '\141', '\040', '\061', '\012',
'\152', '\110', '\147', '\040', '\156', '\147', '\040', '\061',
'\012', '\170', '\106', '\160', '\040', '\160', '\162', '\040',
'\061', '\012', '\167', '\112', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\161', '\144', '\106', '\040', '\161',
'\165', '\040', '\061', '\012', '\166', '\113', '\166', '\040',
'\166', '\141', '\040', '\061', '\012', '\163', '\110', '\143',
'\040', '\143', '\150', '\040', '\061', '\012', '\150', '\102',
'\146', '\040', '\164', '\150', '\040', '\061', '\012', '\152',
'\104', '\171', '\040', '\151', '\152', '\040', '\061', '\012',
'\107', '\152', '\170', '\040', '\151', '\152', '\040', '\061',
'\012', '\106', '\153', '\144', '\040', '\144', '\145', '\040',
'\061', '\012', '\110', '\150', '\172', '\040', '\164', '\150',
'\040', '\061', '\012', '\170', '\123', '\147', '\040', '\156',
'\147', '\040', '\061', '\012', '\152', '\106', '\146', '\040',
'\151', '\152', '\040', '\061', '\012', '\161', '\166', '\115',
'\040', '\161', '\165', '\040', '\061', '\012', '\157', '\122',
'\167', '\040', '\157', '\156', '\040', '\061', '\012', '\170',
'\147', '\130', '\040', '\156', '\147', '\040', '\061', '\012',
'\147', '\152', '\106', '\040', '\156', '\147', '\040', '\061',
'\012', '\161', '\104', '\172', '\040', '\161', '\165', '\040',
'\061', '\012', '\131', '\143', '\146', '\040', '\143', '\150',
'\040', '\061', '\012', '\130', '\143', '\167', '\040', '\143',
'\150', '\040', '\061', '\012', '\156', '\146', '\121', '\040',
'\141', '\156', '\040', '\061', '\012', '\161', '\107', '\163',
'\040', '\161', '\165', '\040', '\061', '\012', '\153', '\107',
'\163', '\040', '\163', '\164', '\040', '\061', '\012', '\146',
'\170', '\126', '\040', '\146', '\157', '\040', '\061', '\012',
'\151', '\120', '\152', '\040', '\151', '\156', '\040', '\061',
'\012', '\161', '\147', '\120', '\040', '\161', '\165', '\040',
'\061', '\012', '\152', '\111', '\166', '\040', '\151', '\152',
'\040', '\061', '\012', '\126', '\150', '\165', '\040', '\164',
'\150', '\040', '\061', '\012', '\102', '\172', '\152', '\040',
'\163', '\172', '\040', '\061', '\012', '\112', '\166', '\147',
'\040', '\156', '\147', '\040', '\061', '\012', '\126', '\152',
'\146', '\040', '\151', '\152', '\040', '\061', '\012', '\167',
'\124', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\160', '\104', '\167', '\040', '\160', '\162', '\040', '\061',
'\012', '\131', '\163', '\166', '\040', '\163', '\164', '\040',
'\061', '\012', '\172', '\164', '\126', '\040', '\164', '\150',
'\040', '\061', '\012', '\155', '\164', '\132', '\040', '\164',
'\150', '\040', '\061', '\012', '\152', '\106', '\171', '\040',
'\151', '\152', '\040', '\061', '\012', '\147', '\161', '\103',
'\040', '\161', '\165', '\040', '\061', '\012', '\126', '\163',
'\147', '\040', '\156', '\147', '\040', '\061', '\012', '\147',
'\152', '\123', '\040', '\156', '\147', '\040', '\061', '\012',
'\166', '\130', '\172', '\040', '\163', '\172', '\040', '\061',
'\012', '\142', '\160', '\113', '\040', '\160', '\162', '\040',
'\061', '\012', '\156', '\104', '\161', '\040', '\141', '\156',
'\040', '\061', '\012', '\163', '\113', '\170', '\040', '\163',
'\164', '\040', '\061', '\012', '\170', '\131', '\147', '\040',
'\156', '\147', '\040', '\061', '\012', '\146', '\132', '\144',
'\040', '\144', '\145', '\040', '\061', '\012', '\160', '\170',
'\146', '\040', '\160', '\162', '\040', '\061', '\012', '\152',
'\161', '\123', '\040', '\161', '\165', '\040', '\061', '\012',
'\150', '\124', '\142', '\040', '\164', '\150', '\040', '\061',
'\012', '\116', '\153', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\161', '\160', '\110', '\040', '\161', '\165',
'\040', '\061', '\012', '\166', '\105', '\172', '\040', '\163',
'\172', '\040', '\061', '\012', '\166', '\161', '\120', '\040',
'\161', '\165', '\040', '\061', '\012', '\166', '\110', '\167',
'\040', '\166', '\141', '\040', '\061', '\012', '\104', '\153',
'\160', '\040', '\153', '\141', '\040', '\061', '\012', '\143',
'\161', '\131', '\040', '\143', '\150', '\040', '\061', '\012',
'\155', '\161', '\123', '\040', '\161', '\165', '\040', '\061',
'\012', '\163', '\126', '\164', '\040', '\164', '\150', '\040',
'\061', '\012', '\120', '\170', '\150', '\040', '\164', '\150',
'\040', '\061', '\012', '\150', '\170', '\116', '\040', '\164',
'\150', '\040', '\061', '\012', '\171', '\124', '\146', '\040',
'\156', '\171', '\040', '\061', '\012', '\167', '\103', '\152',
'\040', '\151', '\152', '\040', '\061', '\012', '\161', '\121',
'\167', '\040', '\161', '\165', '\040', '\061', '\012', '\126',
'\146', '\166', '\040', '\166', '\141', '\040', '\061', '\012',
'\171', '\121', '\144', '\040', '\144', '\145', '\040', '\061',
'\012', '\147', '\125', '\143', '\040', '\143', '\150', '\040',
'\061', '\012', '\167', '\163', '\121', '\040', '\163', '\164',
'\040', '\061', '\012', '\146', '\107', '\167', '\040', '\167',
'\141', '\040', '\061', '\012', '\167', '\113', '\146', '\040',
'\167', '\141', '\040', '\061', '\012', '\167', '\167', '\102',
'\040', '\167', '\141', '\040', '\061', '\012', '\166', '\106',
'\164', '\040', '\164', '\150', '\040', '\061', '\012', '\164',
'\167', '\121', '\040', '\164', '\150', '\040', '\061', '\012',
'\156', '\162', '\102', '\040', '\141', '\156', '\040', '\061',
'\012', '\154', '\160', '\131', '\040', '\154', '\145', '\040',
'\061', '\012', '\170', '\154', '\122', '\040', '\154', '\145',
'\040', '\061', '\012', '\146', '\144', '\113', '\040', '\144',
'\145', '\040', '\061', '\012', '\145', '\106', '\172', '\040',
'\145', '\162', '\040', '\061', '\012', '\152', '\171', '\121',
'\040', '\151', '\152', '\040', '\061', '\012', '\154', '\167',
'\124', '\040', '\154', '\145', '\040', '\061', '\012', '\170',
'\103', '\167', '\040', '\167', '\141', '\040', '\061', '\012',
'\143', '\147', '\115', '\040', '\143', '\150', '\040', '\061',
'\012', '\167', '\164', '\126', '\040', '\164', '\150', '\040',
'\061', '\012', '\141', '\161', '\112', '\040', '\141', '\156',
'\040', '\061', '\012', '\142', '\130', '\165', '\040', '\161',
'\165', '\040', '\061', '\012', '\161', '\144', '\121', '\040',
'\161', '\165', '\040', '\061', '\012', '\131', '\170', '\144',
'\040', '\144', '\145', '\040', '\061', '\012', '\170', '\143',
'\123', '\040', '\143', '\150', '\040', '\061', '\012', '\156',
'\155', '\126', '\040', '\141', '\156', '\040', '\061', '\012',
'\162', '\121', '\144', '\040', '\145', '\162', '\040', '\061',
'\012', '\107', '\154', '\153', '\040', '\154', '\145', '\040',
'\061', '\012', '\161', '\105', '\155', '\040', '\161', '\165',
'\040', '\061', '\012', '\165', '\166', '\117', '\040', '\161',
'\165', '\040', '\061', '\012', '\163', '\166', '\106', '\040',
'\163', '\164', '\040', '\061', '\012', '\163', '\112', '\170',
'\040', '\163', '\164', '\040', '\061', '\012', '\121', '\171',
'\147', '\040', '\156', '\147', '\040', '\061', '\012', '\155',
'\130', '\150', '\040', '\164', '\150', '\040', '\061', '\012',
'\142', '\164', '\104', '\040', '\164', '\150', '\040', '\061',
'\012', '\167', '\107', '\143', '\040', '\143', '\150', '\040',
'\061', '\012', '\146', '\132', '\157', '\040', '\157', '\156',
'\040', '\061', '\012', '\105', '\166', '\170', '\040', '\166',
'\141', '\040', '\061', '\012', '\166', '\172', '\104', '\040',
'\163', '\172', '\040', '\061', '\012', '\165', '\146', '\103',
'\040', '\161', '\165', '\040', '\061', '\012', '\120', '\170',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\161',
'\144', '\164', '\040', '\164', '\150', '\040', '\061', '\012',
'\162', '\113', '\172', '\040', '\145', '\162', '\040', '\061',
'\012', '\112', '\150', '\150', '\040', '\164', '\150', '\040',
'\061', '\012', '\103', '\170', '\153', '\040', '\153', '\141',
'\040', '\061', '\012', '\161', '\170', '\122', '\040', '\161',
'\165', '\040', '\061', '\012', '\147', '\124', '\154', '\040',
'\156', '\147', '\040', '\061', '\012', '\161', '\107', '\146',
'\040', '\161', '\165', '\040', '\061', '\012', '\167', '\131',
'\150', '\040', '\164', '\150', '\040', '\061', '\012', '\143',
'\105', '\150', '\040', '\164', '\150', '\040', '\061', '\012',
'\142', '\172', '\125', '\040', '\163', '\172', '\040', '\061',
'\012', '\172', '\127', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\162', '\127', '\142', '\040', '\145', '\162',
'\040', '\061', '\012', '\127', '\162', '\160', '\040', '\145',
'\162', '\040', '\061', '\012', '\163', '\114', '\143', '\040',
'\143', '\150', '\040', '\061', '\012', '\112', '\160', '\165',
'\040', '\161', '\165', '\040', '\061', '\012', '\112', '\153',
'\146', '\040', '\153', '\141', '\040', '\061', '\012', '\166',
'\147', '\105', '\040', '\156', '\147', '\040', '\061', '\012',
'\102', '\161', '\153', '\040', '\161', '\165', '\040', '\061',
'\012', '\157', '\121', '\163', '\040', '\157', '\156', '\040',
'\061', '\012', '\153', '\142', '\132', '\040', '\153', '\141',
'\040', '\061', '\012', '\162', '\126', '\146', '\040', '\145',
'\162', '\040', '\061', '\012', '\161', '\114', '\167', '\040',
'\161', '\165', '\040', '\061', '\012', '\114', '\162', '\143',
'\040', '\143', '\150', '\040', '\061', '\012', '\170', '\163',
'\122', '\040', '\163', '\164', '\040', '\061', '\012', '\150',
'\167', '\102', '\040', '\164', '\150', '\040', '\061', '\012',
'\121', '\156', '\153', '\040', '\141', '\156', '\040', '\061',
'\012', '\143', '\120', '\172', '\040', '\143', '\150', '\040',
'\061', '\012', '\125', '\143', '\161', '\040', '\143', '\150',
'\040', '\061', '\012', '\145', '\147', '\112', '\040', '\156',
'\147', '\040', '\061', '\012', '\121', '\171', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\130', '\167', '\162',
'\040', '\160', '\162', '\040', '\061', '\012', '\170', '\146',
'\104', '\040', '\146', '\157', '\040', '\061', '\012', '\167',
'\171', '\110', '\040', '\167', '\141', '\040', '\061', '\012',
'\154', '\102', '\167', '\040', '\154', '\145', '\040', '\061',
'\012', '\115', '\144', '\170', '\040', '\144', '\145', '\040',
'\061', '\012', '\121', '\163', '\171', '\040', '\163', '\164',
'\040', '\061', '\012', '\172', '\161', '\126', '\040', '\161',
'\165', '\040', '\061', '\012', '\166', '\160', '\131', '\040',
'\166', '\141', '\040', '\061', '\012', '\163', '\154', '\131',
'\040', '\154', '\145', '\040', '\061', '\012', '\167', '\147',
'\114', '\040', '\156', '\147', '\040', '\061', '\012', '\163',
'\156', '\116', '\040', '\141', '\156', '\040', '\061', '\012',
'\150', '\126', '\144', '\040', '\164', '\150', '\040', '\061',
'\012', '\171', '\113', '\170', '\040', '\156', '\171', '\040',
'\061', '\012', '\142', '\144', '\127', '\040', '\144', '\145',
'\040', '\061', '\012', '\154', '\161', '\114', '\040', '\161',
'\165', '\040', '\061', '\012', '\171', '\150', '\104', '\040',
'\164', '\150', '\040', '\061', '\012', '\164', '\116', '\172',
'\040', '\164', '\150', '\040', '\061', '\012', '\172', '\112',
'\147', '\040', '\156', '\147', '\040', '\061', '\012', '\153',
'\111', '\170', '\040', '\153', '\141', '\040', '\061', '\012',
'\146', '\110', '\160', '\040', '\160', '\162', '\040', '\061',
'\012', '\171', '\162', '\112', '\040', '\145', '\162', '\040',
'\061', '\012', '\154', '\162', '\122', '\040', '\145', '\162',
'\040', '\061', '\012', '\167', '\172', '\131', '\040', '\163',
'\172', '\040', '\061', '\012', '\160', '\147', '\102', '\040',
'\160', '\162', '\040', '\061', '\012', '\155', '\146', '\103',
'\040', '\155', '\145', '\040', '\061', '\012', '\161', '\153',
'\114', '\040', '\161', '\165', '\040', '\061', '\012', '\152',
'\125', '\165', '\040', '\161', '\165', '\040', '\061', '\012',
'\161', '\103', '\150', '\040', '\164', '\150', '\040', '\061',
'\012', '\172', '\154', '\116', '\040', '\154', '\145', '\040',
'\061', '\012', '\102', '\147', '\152', '\040', '\156', '\147',
'\040', '\061', '\012', '\147', '\143', '\105', '\040', '\143',
'\150', '\040', '\061', '\012', '\172', '\122', '\170', '\040',
'\163', '\172', '\040', '\061', '\012', '\152', '\150', '\116',
'\040', '\164', '\150', '\040', '\061', '\012', '\145', '\107',
'\172', '\040', '\145', '\162', '\040', '\061', '\012', '\106',
'\160', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\127', '\166', '\151', '\040', '\151', '\156', '\040', '\061',
'\012', '\155', '\102', '\146', '\040', '\155', '\145', '\040',
'\061', '\012', '\150', '\150', '\127', '\040', '\164', '\150',
'\040', '\061', '\012', '\157', '\125', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\144', '\170', '\121', '\040',
'\144', '\145', '\040', '\061', '\012', '\127', '\150', '\161',
'\040', '\164', '\150', '\040', '\061', '\012', '\162', '\115',
'\153', '\040', '\145', '\162', '\040', '\061', '\012', '\154',
'\127', '\144', '\040', '\154', '\145', '\040', '\061', '\012',
'\170', '\127', '\172', '\040', '\163', '\172', '\040', '\061',
'\012', '\157', '\121', '\156', '\040', '\141', '\156', '\040',
'\061', '\012', '\155', '\127', '\170', '\040', '\155', '\145',
'\040', '\061', '\012', '\156', '\165', '\126', '\040', '\141',
'\156', '\040', '\061', '\012', '\167', '\127', '\172', '\040',
'\163', '\172', '\040', '\061', '\012', '\150', '\166', '\122',
'\040', '\164', '\150', '\040', '\061', '\012', '\132', '\167',
'\144', '\040', '\144', '\145', '\040', '\061', '\012', '\163',
'\155', '\112', '\040', '\163', '\164', '\040', '\061', '\012',
'\110', '\154', '\150', '\040', '\164', '\150', '\040', '\061',
'\012', '\163', '\112', '\150', '\040', '\164', '\150', '\040',
'\061', '\012', '\172', '\155', '\131', '\040', '\163', '\172',
'\040', '\061', '\012', '\150', '\132', '\156', '\040', '\164',
'\150', '\040', '\061', '\012', '\126', '\152', '\147', '\040',
'\156', '\147', '\040', '\061', '\012', '\112', '\150', '\172',
'\040', '\164', '\150', '\040', '\061', '\012', '\155', '\161',
'\122', '\040', '\161', '\165', '\040', '\061', '\012', '\150',
'\143', '\117', '\040', '\164', '\150', '\040', '\061', '\012',
'\144', '\161', '\114', '\040', '\161', '\165', '\040', '\061',
'\012', '\102', '\146', '\150', '\040', '\164', '\150', '\040',
'\061', '\012', '\160', '\153', '\126', '\040', '\153', '\141',
'\040', '\061', '\012', '\164', '\102', '\170', '\040', '\164',
'\150', '\040', '\061', '\012', '\110', '\153', '\143', '\040',
'\143', '\150', '\040', '\061', '\012', '\113', '\161', '\155',
'\040', '\161', '\165', '\040', '\061', '\012', '\161', '\127',
'\166', '\040', '\161', '\165', '\040', '\061', '\012', '\154',
'\130', '\171', '\040', '\154', '\145', '\040', '\061', '\012',
'\171', '\122', '\144', '\040', '\144', '\145', '\040', '\061',
'\012', '\155', '\152', '\110', '\040', '\151', '\152', '\040',
'\061', '\012', '\161', '\172', '\101', '\040', '\161', '\165',
'\040', '\061', '\012', '\161', '\170', '\155', '\040', '\161',
'\165', '\040', '\061', '\012', '\121', '\166', '\155', '\040',
'\166', '\141', '\040', '\061', '\012', '\147', '\143', '\115',
'\040', '\143', '\150', '\040', '\061', '\012', '\170', '\161',
'\170', '\040', '\161', '\165', '\040', '\061', '\012', '\153',
'\113', '\166', '\040', '\153', '\141', '\040', '\061', '\012',
'\171', '\157', '\130', '\040', '\160', '\157', '\040', '\061',
'\012', '\170', '\162', '\124', '\040', '\145', '\162', '\040',
'\061', '\012', '\143', '\127', '\161', '\040', '\143', '\150',
'\040', '\061', '\012', '\152', '\161', '\127', '\040', '\161',
'\165', '\040', '\061', '\012', '\163', '\127', '\152', '\040',
'\163', '\164', '\040', '\061', '\012', '\123', '\144', '\167',
'\040', '\144', '\145', '\040', '\061', '\012', '\144', '\146',
'\122', '\040', '\144', '\145', '\040', '\061', '\012', '\113',
'\161', '\156', '\040', '\141', '\156', '\040', '\061', '\012',
'\107', '\152', '\144', '\040', '\144', '\157', '\040', '\061',
'\012', '\121', '\142', '\144', '\040', '\144', '\145', '\040',
'\061', '\012', '\171', '\171', '\113', '\040', '\156', '\171',
'\040', '\061', '\012', '\170', '\155', '\130', '\040', '\155',
'\145', '\040', '\061', '\012', '\170', '\165', '\106', '\040',
'\161', '\165', '\040', '\061', '\012', '\171', '\126', '\147',
'\040', '\156', '\147', '\040', '\061', '\012', '\161', '\157',
'\117', '\040', '\161', '\165', '\040', '\061', '\012', '\107',
'\154', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\115', '\153', '\170', '\040', '\153', '\141', '\040', '\061',
'\012', '\170', '\114', '\142', '\040', '\142', '\145', '\040',
'\061', '\012', '\147', '\115', '\162', '\040', '\156', '\147',
'\040', '\061', '\012', '\163', '\103', '\160', '\040', '\163',
'\164', '\040', '\061', '\012', '\142', '\107', '\150', '\040',
'\164', '\150', '\040', '\061', '\012', '\143', '\130', '\157',
'\040', '\143', '\150', '\040', '\061', '\012', '\172', '\124',
'\172', '\040', '\163', '\172', '\040', '\061', '\012', '\161',
'\153', '\103', '\040', '\161', '\165', '\040', '\061', '\012',
'\150', '\124', '\160', '\040', '\164', '\150', '\040', '\061',
'\012', '\161', '\116', '\146', '\040', '\161', '\165', '\040',
'\061', '\012', '\155', '\130', '\153', '\040', '\153', '\141',
'\040', '\061', '\012', '\170', '\143', '\132', '\040', '\143',
'\150', '\040', '\061', '\012', '\152', '\126', '\155', '\040',
'\151', '\152', '\040', '\061', '\012', '\142', '\111', '\151',
'\040', '\151', '\156', '\040', '\061', '\012', '\161', '\156',
'\110', '\040', '\141', '\156', '\040', '\061', '\012', '\156',
'\167', '\103', '\040', '\141', '\156', '\040', '\061', '\012',
'\144', '\123', '\147', '\040', '\156', '\147', '\040', '\061',
'\012', '\161', '\157', '\104', '\040', '\161', '\165', '\040',
'\061', '\012', '\164', '\104', '\170', '\040', '\164', '\150',
'\040', '\061', '\012', '\152', '\144', '\125', '\040', '\144',
'\145', '\040', '\061', '\012', '\130', '\155', '\167', '\040',
'\155', '\145', '\040', '\061', '\012', '\153', '\116', '\150',
'\040', '\164', '\150', '\040', '\061', '\012', '\152', '\131',
'\162', '\040', '\145', '\162', '\040', '\061', '\012', '\131',
'\147', '\160', '\040', '\156', '\147', '\040', '\061', '\012',
'\142', '\154', '\112', '\040', '\154', '\145', '\040', '\061',
'\012', '\155', '\106', '\166', '\040', '\166', '\141', '\040',
'\061', '\012', '\123', '\170', '\162', '\040', '\145', '\162',
'\040', '\061', '\012', '\106', '\172', '\154', '\040', '\154',
'\145', '\040', '\061', '\012', '\152', '\124', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\143', '\111', '\160',
'\040', '\160', '\162', '\040', '\061', '\012', '\141', '\152',
'\131', '\040', '\141', '\156', '\040', '\061', '\012', '\171',
'\131', '\142', '\040', '\142', '\145', '\040', '\061', '\012',
'\162', '\113', '\142', '\040', '\145', '\162', '\040', '\061',
'\012', '\160', '\172', '\102', '\040', '\163', '\172', '\040',
'\061', '\012', '\145', '\111', '\171', '\040', '\145', '\162',
'\040', '\061', '\012', '\167', '\146', '\113', '\040', '\167',
'\141', '\040', '\061', '\012', '\106', '\155', '\150', '\040',
'\164', '\150', '\040', '\061', '\012', '\165', '\146', '\114',
'\040', '\161', '\165', '\040', '\061', '\012', '\130', '\154',
'\155', '\040', '\154', '\145', '\040', '\061', '\012', '\103',
'\172', '\147', '\040', '\156', '\147', '\040', '\061', '\012',
'\154', '\120', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\164', '\161', '\126', '\040', '\164', '\150', '\040',
'\061', '\012', '\167', '\106', '\171', '\040', '\167', '\141',
'\040', '\061', '\012', '\142', '\121', '\143', '\040', '\143',
'\150', '\040', '\061', '\012', '\153', '\126', '\167', '\040',
'\153', '\141', '\040', '\061', '\012', '\156', '\115', '\150',
'\040', '\164', '\150', '\040', '\061', '\012', '\143', '\103',
'\152', '\040', '\143', '\150', '\040', '\061', '\012', '\157',
'\145', '\105', '\040', '\145', '\162', '\040', '\061', '\012',
'\167', '\110', '\146', '\040', '\167', '\141', '\040', '\061',
'\012', '\146', '\116', '\146', '\040', '\146', '\157', '\040',
'\061', '\012', '\155', '\130', '\166', '\040', '\166', '\141',
'\040', '\061', '\012', '\116', '\153', '\147', '\040', '\156',
'\147', '\040', '\061', '\012', '\152', '\127', '\143', '\040',
'\143', '\150', '\040', '\061', '\012', '\172', '\106', '\152',
'\040', '\163', '\172', '\040', '\061', '\012', '\113', '\146',
'\170', '\040', '\146', '\157', '\040', '\061', '\012', '\142',
'\147', '\131', '\040', '\156', '\147', '\040', '\061', '\012',
'\154', '\131', '\172', '\040', '\154', '\145', '\040', '\061',
'\012', '\143', '\147', '\104', '\040', '\143', '\150', '\040',
'\061', '\012', '\160', '\147', '\115', '\040', '\156', '\147',
'\040', '\061', '\012', '\146', '\150', '\110', '\040', '\164',
'\150', '\040', '\061', '\012', '\152', '\162', '\104', '\040',
'\145', '\162', '\040', '\061', '\012', '\152', '\167', '\101',
'\040', '\151', '\152', '\040', '\061', '\012', '\152', '\171',
'\115', '\040', '\151', '\152', '\040', '\061', '\012', '\166',
'\172', '\103', '\040', '\163', '\172', '\040', '\061', '\012',
'\154', '\121', '\144', '\040', '\154', '\145', '\040', '\061',
'\012', '\172', '\143', '\110', '\040', '\143', '\150', '\040',
'\061', '\012', '\154', '\142', '\130', '\040', '\154', '\145',
'\040', '\061', '\012', '\166', '\172', '\107', '\040', '\163',
'\172', '\040', '\061', '\012', '\155', '\123', '\162', '\040',
'\145', '\162', '\040', '\061', '\012', '\170', '\131', '\146',
'\040', '\146', '\157', '\040', '\061', '\012', '\161', '\147',
'\102', '\040', '\161', '\165', '\040', '\061', '\012', '\152',
'\131', '\153', '\040', '\151', '\152', '\040', '\061', '\012',
'\144', '\111', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\167', '\160', '\107', '\040', '\160', '\162', '\040',
'\061', '\012', '\150', '\126', '\153', '\040', '\164', '\150',
'\040', '\061', '\012', '\124', '\152', '\142', '\040', '\151',
'\152', '\040', '\061', '\012', '\172', '\166', '\120', '\040',
'\163', '\172', '\040', '\061', '\012', '\142', '\132', '\147',
'\040', '\156', '\147', '\040', '\061', '\012', '\142', '\106',
'\147', '\040', '\156', '\147', '\040', '\061', '\012', '\153',
'\146', '\125', '\040', '\153', '\141', '\040', '\061', '\012',
'\123', '\170', '\172', '\040', '\163', '\172', '\040', '\061',
'\012', '\146', '\167', '\106', '\040', '\167', '\141', '\040',
'\061', '\012', '\121', '\167', '\147', '\040', '\156', '\147',
'\040', '\061', '\012', '\146', '\127', '\142', '\040', '\142',
'\145', '\040', '\061', '\012', '\152', '\161', '\121', '\040',
'\151', '\152', '\040', '\061', '\012', '\126', '\146', '\170',
'\040', '\146', '\157', '\040', '\061', '\012', '\143', '\112',
'\152', '\040', '\143', '\150', '\040', '\061', '\012', '\172',
'\167', '\112', '\040', '\163', '\172', '\040', '\061', '\012',
'\170', '\102', '\147', '\040', '\156', '\147', '\040', '\061',
'\012', '\104', '\144', '\155', '\040', '\144', '\145', '\040',
'\061', '\012', '\142', '\127', '\166', '\040', '\166', '\141',
'\040', '\061', '\012', '\172', '\160', '\107', '\040', '\163',
'\172', '\040', '\061', '\012', '\170', '\162', '\121', '\040',
'\145', '\162', '\040', '\061', '\012', '\150', '\143', '\123',
'\040', '\164', '\150', '\040', '\061', '\012', '\167', '\110',
'\156', '\040', '\141', '\156', '\040', '\061', '\012', '\150',
'\111', '\171', '\040', '\164', '\150', '\040', '\061', '\012',
'\131', '\170', '\152', '\040', '\151', '\152', '\040', '\061',
'\012', '\163', '\144', '\103', '\040', '\163', '\164', '\040',
'\061', '\012', '\171', '\126', '\165', '\040', '\161', '\165',
'\040', '\061', '\012', '\161', '\152', '\146', '\040', '\161',
'\165', '\040', '\061', '\012', '\124', '\172', '\171', '\040',
'\163', '\172', '\040', '\061', '\012', '\106', '\146', '\156',
'\040', '\141', '\156', '\040', '\061', '\012', '\172', '\172',
'\130', '\040', '\163', '\172', '\040', '\061', '\012', '\110',
'\144', '\170', '\040', '\144', '\145', '\040', '\061', '\012',
'\147', '\114', '\147', '\040', '\156', '\147', '\040', '\061',
'\012', '\131', '\161', '\147', '\040', '\161', '\165', '\040',
'\061', '\012', '\146', '\114', '\142', '\040', '\142', '\145',
'\040', '\061', '\012', '\154', '\121', '\143', '\040', '\143',
'\150', '\040', '\061', '\012', '\166', '\152', '\107', '\040',
'\151', '\152', '\040', '\061', '\012', '\167', '\160', '\114',
'\040', '\160', '\162', '\040', '\061', '\012', '\143', '\112',
'\162', '\040', '\143', '\150', '\040', '\061', '\012', '\141',
'\112', '\161', '\040', '\141', '\156', '\040', '\061', '\012',
'\131', '\156', '\161', '\040', '\141', '\156', '\040', '\061',
'\012', '\127', '\166', '\143', '\040', '\143', '\150', '\040',
'\061', '\012', '\154', '\113', '\171', '\040', '\154', '\145',
'\040', '\061', '\012', '\145', '\131', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\153', '\170', '\114', '\040',
'\153', '\141', '\040', '\061', '\012', '\147', '\103', '\142',
'\040', '\156', '\147', '\040', '\061', '\012', '\163', '\122',
'\144', '\040', '\163', '\164', '\040', '\061', '\012', '\162',
'\115', '\144', '\040', '\145', '\162', '\040', '\061', '\012',
'\102', '\166', '\150', '\040', '\164', '\150', '\040', '\061',
'\012', '\153', '\113', '\147', '\040', '\156', '\147', '\040',
'\061', '\012', '\167', '\154', '\113', '\040', '\154', '\145',
'\040', '\061', '\012', '\155', '\104', '\144', '\040', '\144',
'\145', '\040', '\061', '\012', '\172', '\153', '\112', '\040',
'\163', '\172', '\040', '\061', '\012', '\166', '\122', '\143',
'\040', '\143', '\150', '\040', '\061', '\012', '\130', '\154',
'\150', '\040', '\164', '\150', '\040', '\061', '\012', '\160',
'\122', '\153', '\040', '\153', '\141', '\040', '\061', '\012',
'\170', '\166', '\116', '\040', '\166', '\141', '\040', '\061',
'\012', '\156', '\170', '\111', '\040', '\141', '\156', '\040',
'\061', '\012', '\146', '\103', '\170', '\040', '\146', '\157',
'\040', '\061', '\012', '\131', '\142', '\164', '\040', '\164',
'\150', '\040', '\061', '\012', '\105', '\142', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\142', '\153', '\116',
'\040', '\153', '\141', '\040', '\061', '\012', '\142', '\121',
'\171', '\040', '\142', '\145', '\040', '\061', '\012', '\162',
'\104', '\167', '\040', '\145', '\162', '\040', '\061', '\012',
'\144', '\152', '\112', '\040', '\144', '\145', '\040', '\061',
'\012', '\164', '\155', '\115', '\040', '\164', '\150', '\040',
'\061', '\012', '\156', '\167', '\110', '\040', '\141', '\156',
'\040', '\061', '\012', '\150', '\112', '\172', '\040', '\164',
'\150', '\040', '\061', '\012', '\154', '\143', '\115', '\040',
'\143', '\150', '\040', '\061', '\012', '\157', '\172', '\126',
'\040', '\157', '\156', '\040', '\061', '\012', '\155', '\114',
'\144', '\040', '\144', '\145', '\040', '\061', '\012', '\142',
'\113', '\143', '\040', '\143', '\150', '\040', '\061', '\012',
'\145', '\132', '\146', '\040', '\145', '\162', '\040', '\061',
'\012', '\106', '\150', '\147', '\040', '\164', '\150', '\040',
'\061', '\012', '\132', '\143', '\152', '\040', '\143', '\150',
'\040', '\061', '\012', '\160', '\114', '\162', '\040', '\145',
'\162', '\040', '\061', '\012', '\167', '\161', '\163', '\040',
'\161', '\165', '\040', '\061', '\012', '\142', '\130', '\151',
'\040', '\151', '\156', '\040', '\061', '\012', '\164', '\147',
'\104', '\040', '\164', '\150', '\040', '\061', '\012', '\150',
'\121', '\143', '\040', '\164', '\150', '\040', '\061', '\012',
'\172', '\104', '\160', '\040', '\163', '\172', '\040', '\061',
'\012', '\157', '\104', '\147', '\040', '\156', '\147', '\040',
'\061', '\012', '\163', '\147', '\115', '\040', '\156', '\147',
'\040', '\061', '\012', '\142', '\156', '\104', '\040', '\141',
'\156', '\040', '\061', '\012', '\147', '\110', '\160', '\040',
'\156', '\147', '\040', '\061', '\012', '\127', '\153', '\146',
'\040', '\153', '\141', '\040', '\061', '\012', '\161', '\111',
'\163', '\040', '\161', '\165', '\040', '\061', '\012', '\167',
'\114', '\144', '\040', '\144', '\145', '\040', '\061', '\012',
'\172', '\164', '\116', '\040', '\164', '\150', '\040', '\061',
'\012', '\147', '\144', '\121', '\040', '\156', '\147', '\040',
'\061', '\012', '\167', '\103', '\155', '\040', '\157', '\167',
'\040', '\061', '\012', '\166', '\126', '\146', '\040', '\166',
'\141', '\040', '\061', '\012', '\112', '\155', '\167', '\040',
'\155', '\145', '\040', '\061', '\012', '\150', '\142', '\103',
'\040', '\164', '\150', '\040', '\061', '\012', '\163', '\162',
'\127', '\040', '\145', '\162', '\040', '\061', '\012', '\156',
'\170', '\116', '\040', '\141', '\156', '\040', '\061', '\012',
'\160', '\126', '\163', '\040', '\163', '\164', '\040', '\061',
'\012', '\165', '\127', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\150', '\147', '\115', '\040', '\164', '\150',
'\040', '\061', '\012', '\154', '\102', '\143', '\040', '\143',
'\150', '\040', '\061', '\012', '\167', '\125', '\157', '\040',
'\157', '\156', '\040', '\061', '\012', '\146', '\154', '\110',
'\040', '\154', '\145', '\040', '\061', '\012', '\171', '\127',
'\147', '\040', '\156', '\147', '\040', '\061', '\012', '\152',
'\152', '\116', '\040', '\151', '\152', '\040', '\061', '\012',
'\125', '\167', '\156', '\040', '\141', '\156', '\040', '\061',
'\012', '\156', '\131', '\152', '\040', '\141', '\156', '\040',
'\061', '\012', '\155', '\164', '\116', '\040', '\164', '\150',
'\040', '\061', '\012', '\120', '\147', '\160', '\040', '\156',
'\147', '\040', '\061', '\012', '\172', '\106', '\143', '\040',
'\143', '\150', '\040', '\061', '\012', '\157', '\130', '\172',
'\040', '\157', '\156', '\040', '\061', '\012', '\151', '\103',
'\147', '\040', '\156', '\147', '\040', '\061', '\012', '\114',
'\160', '\143', '\040', '\143', '\150', '\040', '\061', '\012',
'\107', '\161', '\144', '\040', '\161', '\165', '\040', '\061',
'\012', '\162', '\131', '\143', '\040', '\143', '\150', '\040',
'\061', '\012', '\166', '\161', '\101', '\040', '\161', '\165',
'\040', '\061', '\012', '\126', '\150', '\143', '\040', '\164',
'\150', '\040', '\061', '\012', '\172', '\155', '\106', '\040',
'\163', '\172', '\040', '\061', '\012', '\102', '\160', '\143',
'\040', '\143', '\150', '\040', '\061', '\012', '\112', '\146',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\157',
'\130', '\166', '\040', '\157', '\156', '\040', '\061', '\012',
'\154', '\147', '\130', '\040', '\156', '\147', '\040', '\061',
'\012', '\112', '\146', '\170', '\040', '\146', '\157', '\040',
'\061', '\012', '\172', '\160', '\123', '\040', '\163', '\172',
'\040', '\061', '\012', '\147', '\143', '\117', '\040', '\143',
'\150', '\040', '\061', '\012', '\170', '\167', '\121', '\040',
'\167', '\141', '\040', '\061', '\012', '\160', '\153', '\121',
'\040', '\153', '\141', '\040', '\061', '\012', '\167', '\117',
'\143', '\040', '\143', '\150', '\040', '\061', '\012', '\127',
'\147', '\155', '\040', '\156', '\147', '\040', '\061', '\012',
'\143', '\117', '\152', '\040', '\143', '\150', '\040', '\061',
'\012', '\116', '\146', '\164', '\040', '\164', '\150', '\040',
'\061', '\012', '\160', '\161', '\116', '\040', '\161', '\165',
'\040', '\061', '\012', '\161', '\163', '\102', '\040', '\161',
'\165', '\040', '\061', '\012', '\171', '\144', '\110', '\040',
'\144', '\145', '\040', '\061', '\012', '\161', '\122', '\163',
'\040', '\161', '\165', '\040', '\061', '\012', '\171', '\153',
'\130', '\040', '\153', '\141', '\040', '\061', '\012', '\143',
'\104', '\161', '\040', '\143', '\150', '\040', '\061', '\012',
'\155', '\146', '\125', '\040', '\155', '\145', '\040', '\061',
'\012', '\170', '\172', '\115', '\040', '\163', '\172', '\040',
'\061', '\012', '\166', '\107', '\164', '\040', '\164', '\150',
'\040', '\061', '\012', '\146', '\165', '\127', '\040', '\161',
'\165', '\040', '\061', '\012', '\154', '\161', '\107', '\040',
'\161', '\165', '\040', '\061', '\012', '\124', '\161', '\160',
'\040', '\161', '\165', '\040', '\061', '\012', '\172', '\166',
'\104', '\040', '\163', '\172', '\040', '\061', '\012', '\167',
'\127', '\142', '\040', '\167', '\141', '\040', '\061', '\012',
'\106', '\172', '\151', '\040', '\151', '\156', '\040', '\061',
'\012', '\161', '\160', '\113', '\040', '\161', '\165', '\040',
'\061', '\012', '\157', '\171', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\147', '\121', '\145', '\040', '\156',
'\147', '\040', '\061', '\012', '\132', '\155', '\167', '\040',
'\155', '\145', '\040', '\061', '\012', '\161', '\131', '\160',
'\040', '\161', '\165', '\040', '\061', '\012', '\127', '\166',
'\146', '\040', '\166', '\141', '\040', '\061', '\012', '\141',
'\121', '\154', '\040', '\141', '\156', '\040', '\061', '\012',
'\157', '\161', '\117', '\040', '\161', '\165', '\040', '\061',
'\012', '\145', '\161', '\112', '\040', '\161', '\165', '\040',
'\061', '\012', '\156', '\166', '\124', '\040', '\141', '\156',
'\040', '\061', '\012', '\146', '\125', '\153', '\040', '\153',
'\141', '\040', '\061', '\012', '\151', '\142', '\110', '\040',
'\151', '\156', '\040', '\061', '\012', '\152', '\166', '\132',
'\040', '\151', '\152', '\040', '\061', '\012', '\127', '\167',
'\172', '\040', '\163', '\172', '\040', '\061', '\012', '\154',
'\147', '\131', '\040', '\156', '\147', '\040', '\061', '\012',
'\145', '\106', '\160', '\040', '\145', '\162', '\040', '\061',
'\012', '\130', '\147', '\170', '\040', '\156', '\147', '\040',
'\061', '\012', '\146', '\131', '\163', '\040', '\163', '\164',
'\040', '\061', '\012', '\153', '\132', '\163', '\040', '\163',
'\164', '\040', '\061', '\012', '\166', '\160', '\104', '\040',
'\166', '\141', '\040', '\061', '\012', '\161', '\143', '\132',
'\040', '\143', '\150', '\040', '\061', '\012', '\102', '\161',
'\157', '\040', '\161', '\165', '\040', '\061', '\012', '\152',
'\114', '\142', '\040', '\151', '\152', '\040', '\061', '\012',
'\162', '\167', '\130', '\040', '\145', '\162', '\040', '\061',
'\012', '\146', '\171', '\113', '\040', '\156', '\171', '\040',
'\061', '\012', '\123', '\170', '\166', '\040', '\166', '\141',
'\040', '\061', '\012', '\163', '\170', '\132', '\040', '\163',
'\164', '\040', '\061', '\012', '\167', '\153', '\113', '\040',
'\153', '\141', '\040', '\061', '\012', '\171', '\112', '\160',
'\040', '\160', '\162', '\040', '\061', '\012', '\164', '\152',
'\124', '\040', '\164', '\150', '\040', '\061', '\012', '\161',
'\120', '\166', '\040', '\161', '\165', '\040', '\061', '\012',
'\171', '\132', '\152', '\040', '\151', '\152', '\040', '\061',
'\012', '\122', '\162', '\155', '\040', '\145', '\162', '\040',
'\061', '\012', '\156', '\150', '\112', '\040', '\164', '\150',
'\040', '\061', '\012', '\166', '\161', '\112', '\040', '\161',
'\165', '\040', '\061', '\012', '\171', '\170', '\131', '\040',
'\156', '\171', '\040', '\061', '\012', '\166', '\163', '\105',
'\040', '\163', '\164', '\040', '\061', '\012', '\146', '\153',
'\113', '\040', '\153', '\141', '\040', '\061', '\012', '\146',
'\165', '\131', '\040', '\161', '\165', '\040', '\061', '\012',
'\172', '\121', '\157', '\040', '\157', '\156', '\040', '\061',
'\012', '\130', '\166', '\162', '\040', '\145', '\162', '\040',
'\061', '\012', '\155', '\115', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\117', '\161', '\155', '\040', '\161',
'\165', '\040', '\061', '\012', '\104', '\170', '\163', '\040',
'\163', '\164', '\040', '\061', '\012', '\114', '\161', '\141',
'\040', '\141', '\156', '\040', '\061', '\012', '\127', '\156',
'\150', '\040', '\164', '\150', '\040', '\061', '\012', '\152',
'\155', '\107', '\040', '\151', '\152', '\040', '\061', '\012',
'\127', '\161', '\141', '\040', '\141', '\156', '\040', '\061',
'\012', '\155', '\150', '\124', '\040', '\164', '\150', '\040',
'\061', '\012', '\142', '\147', '\132', '\040', '\156', '\147',
'\040', '\061', '\012', '\166', '\155', '\117', '\040', '\166',
'\141', '\040', '\061', '\012', '\172', '\106', '\155', '\040',
'\163', '\172', '\040', '\061', '\012', '\113', '\150', '\153',
'\040', '\164', '\150', '\040', '\061', '\012', '\171', '\161',
'\102', '\040', '\161', '\165', '\040', '\061', '\012', '\156',
'\126', '\166', '\040', '\141', '\156', '\040', '\061', '\012',
'\122', '\146', '\164', '\040', '\164', '\150', '\040', '\061',
'\012', '\172', '\155', '\114', '\040', '\163', '\172', '\040',
'\061', '\012', '\150', '\144', '\104', '\040', '\164', '\150',
'\040', '\061', '\012', '\156', '\127', '\160', '\040', '\141',
'\156', '\040', '\061', '\012', '\166', '\166', '\117', '\040',
'\166', '\141', '\040', '\061', '\012', '\144', '\131', '\160',
'\040', '\144', '\145', '\040', '\061', '\012', '\157', '\150',
'\130', '\040', '\164', '\150', '\040', '\061', '\012', '\161',
'\157', '\125', '\040', '\161', '\165', '\040', '\061', '\012',
'\162', '\152', '\102', '\040', '\145', '\162', '\040', '\061',
'\012', '\104', '\167', '\143', '\040', '\143', '\150', '\040',
'\061', '\012', '\141', '\127', '\161', '\040', '\141', '\156',
'\040', '\061', '\012', '\143', '\154', '\104', '\040', '\143',
'\150', '\040', '\061', '\012', '\126', '\144', '\153', '\040',
'\144', '\145', '\040', '\061', '\012', '\164', '\167', '\115',
'\040', '\164', '\150', '\040', '\061', '\012', '\146', '\132',
'\172', '\040', '\163', '\172', '\040', '\061', '\012', '\167',
'\121', '\160', '\040', '\160', '\162', '\040', '\061', '\012',
'\144', '\167', '\104', '\040', '\144', '\145', '\040', '\061',
'\012', '\151', '\131', '\166', '\040', '\151', '\156', '\040',
'\061', '\012', '\101', '\167', '\166', '\040', '\166', '\141',
'\040', '\061', '\012', '\160', '\147', '\107', '\040', '\156',
'\147', '\040', '\061', '\012', '\130', '\157', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\153', '\162', '\121',
'\040', '\145', '\162', '\040', '\061', '\012', '\126', '\170',
'\147', '\040', '\156', '\147', '\040', '\061', '\012', '\154',
'\167', '\102', '\040', '\154', '\145', '\040', '\061', '\012',
'\120', '\170', '\167', '\040', '\167', '\141', '\040', '\061',
'\012', '\112', '\167', '\146', '\040', '\167', '\141', '\040',
'\061', '\012', '\172', '\114', '\150', '\040', '\164', '\150',
'\040', '\061', '\012', '\142', '\164', '\110', '\040', '\164',
'\150', '\040', '\061', '\012', '\160', '\167', '\131', '\040',
'\160', '\162', '\040', '\061', '\012', '\115', '\152', '\144',
'\040', '\144', '\145', '\040', '\061', '\012', '\130', '\162',
'\150', '\040', '\164', '\150', '\040', '\061', '\012', '\161',
'\130', '\165', '\040', '\165', '\156', '\040', '\061', '\012',
'\105', '\161', '\171', '\040', '\161', '\165', '\040', '\061',
'\012', '\102', '\160', '\171', '\040', '\160', '\162', '\040',
'\061', '\012', '\172', '\156', '\131', '\040', '\141', '\156',
'\040', '\061', '\012', '\122', '\161', '\144', '\040', '\161',
'\165', '\040', '\061', '\012', '\156', '\121', '\146', '\040',
'\141', '\156', '\040', '\061', '\012', '\132', '\166', '\167',
'\040', '\166', '\141', '\040', '\061', '\012', '\172', '\152',
'\117', '\040', '\163', '\172', '\040', '\061', '\012', '\167',
'\116', '\144', '\040', '\144', '\145', '\040', '\061', '\012',
'\154', '\111', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\166', '\115', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\107', '\161', '\164', '\040', '\164', '\150',
'\040', '\061', '\012', '\154', '\115', '\146', '\040', '\154',
'\145', '\040', '\061', '\012', '\112', '\161', '\156', '\040',
'\141', '\156', '\040', '\061', '\012', '\146', '\126', '\167',
'\040', '\167', '\141', '\040', '\061', '\012', '\161', '\166',
'\121', '\040', '\161', '\165', '\040', '\061', '\012', '\145',
'\110', '\153', '\040', '\145', '\162', '\040', '\061', '\012',
'\152', '\142', '\113', '\040', '\151', '\152', '\040', '\061',
'\012', '\146', '\127', '\163', '\040', '\163', '\164', '\040',
'\061', '\012', '\161', '\124', '\153', '\040', '\161', '\165',
'\040', '\061', '\012', '\172', '\156', '\106', '\040', '\141',
'\156', '\040', '\061', '\012', '\171', '\170', '\117', '\040',
'\156', '\171', '\040', '\061', '\012', '\106', '\161', '\162',
'\040', '\161', '\165', '\040', '\061', '\012', '\156', '\106',
'\142', '\040', '\141', '\156', '\040', '\061', '\012', '\157',
'\104', '\160', '\040', '\157', '\156', '\040', '\061', '\012',
'\152', '\125', '\143', '\040', '\143', '\150', '\040', '\061',
'\012', '\161', '\110', '\147', '\040', '\161', '\165', '\040',
'\061', '\012', '\147', '\107', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\161', '\120', '\163', '\040', '\161',
'\165', '\040', '\061', '\012', '\152', '\110', '\166', '\040',
'\151', '\152', '\040', '\061', '\012', '\111', '\167', '\152',
'\040', '\151', '\152', '\040', '\061', '\012', '\166', '\172',
'\126', '\040', '\163', '\172', '\040', '\061', '\012', '\171',
'\125', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\152', '\121', '\164', '\040', '\164', '\150', '\040', '\061',
'\012', '\163', '\106', '\142', '\040', '\163', '\164', '\040',
'\061', '\012', '\114', '\166', '\147', '\040', '\156', '\147',
'\040', '\061', '\012', '\172', '\124', '\164', '\040', '\164',
'\150', '\040', '\061', '\012', '\142', '\166', '\113', '\040',
'\166', '\141', '\040', '\061', '\012', '\103', '\143', '\170',
'\040', '\143', '\150', '\040', '\061', '\012', '\152', '\171',
'\101', '\040', '\151', '\152', '\040', '\061', '\012', '\171',
'\105', '\152', '\040', '\151', '\152', '\040', '\061', '\012',
'\172', '\144', '\107', '\040', '\163', '\172', '\040', '\061',
'\012', '\164', '\161', '\124', '\040', '\164', '\150', '\040',
'\061', '\012', '\161', '\142', '\110', '\040', '\161', '\165',
'\040', '\061', '\012', '\156', '\110', '\144', '\040', '\141',
'\156', '\040', '\061', '\012', '\110', '\150', '\152', '\040',
'\164', '\150', '\040', '\061', '\012', '\152', '\126', '\142',
'\040', '\151', '\152', '\040', '\061', '\012', '\165', '\110',
'\167', '\040', '\165', '\156', '\040', '\061', '\012', '\132',
'\143', '\153', '\040', '\143', '\150', '\040', '\061', '\012',
'\147', '\120', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\155', '\170', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\167', '\110', '\163', '\040', '\163', '\164',
'\040', '\061', '\012', '\146', '\104', '\171', '\040', '\156',
'\171', '\040', '\061', '\012', '\164', '\154', '\126', '\040',
'\164', '\150', '\040', '\061', '\012', '\114', '\163', '\166',
'\040', '\163', '\164', '\040', '\061', '\012', '\172', '\166',
'\106', '\040', '\166', '\141', '\040', '\061', '\012', '\155',
'\161', '\170', '\040', '\161', '\165', '\040', '\061', '\012',
'\156', '\161', '\106', '\040', '\141', '\156', '\040', '\061',
'\012', '\170', '\147', '\115', '\040', '\156', '\147', '\040',
'\061', '\012', '\147', '\171', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\147', '\162', '\112', '\040', '\156',
'\147', '\040', '\061', '\012', '\152', '\123', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\115', '\155', '\167',
'\040', '\155', '\145', '\040', '\061', '\012', '\103', '\147',
'\170', '\040', '\156', '\147', '\040', '\061', '\012', '\122',
'\154', '\162', '\040', '\145', '\162', '\040', '\061', '\012',
'\155', '\166', '\107', '\040', '\166', '\141', '\040', '\061',
'\012', '\146', '\165', '\101', '\040', '\161', '\165', '\040',
'\061', '\012', '\165', '\126', '\150', '\040', '\164', '\150',
'\040', '\061', '\012', '\163', '\115', '\172', '\040', '\163',
'\164', '\040', '\061', '\012', '\167', '\127', '\162', '\040',
'\145', '\162', '\040', '\061', '\012', '\161', '\160', '\104',
'\040', '\161', '\165', '\040', '\061', '\012', '\150', '\121',
'\167', '\040', '\164', '\150', '\040', '\061', '\012', '\170',
'\102', '\143', '\040', '\143', '\150', '\040', '\061', '\012',
'\146', '\143', '\127', '\040', '\143', '\150', '\040', '\061',
'\012', '\150', '\170', '\114', '\040', '\164', '\150', '\040',
'\061', '\012', '\162', '\146', '\113', '\040', '\145', '\162',
'\040', '\061', '\012', '\155', '\106', '\156', '\040', '\141',
'\156', '\040', '\061', '\012', '\121', '\156', '\167', '\040',
'\141', '\156', '\040', '\061', '\012', '\164', '\152', '\102',
'\040', '\164', '\150', '\040', '\061', '\012', '\122', '\153',
'\170', '\040', '\153', '\141', '\040', '\061', '\012', '\163',
'\162', '\105', '\040', '\145', '\162', '\040', '\061', '\012',
'\144', '\162', '\107', '\040', '\145', '\162', '\040', '\061',
'\012', '\103', '\146', '\171', '\040', '\156', '\171', '\040',
'\061', '\012', '\171', '\132', '\167', '\040', '\167', '\141',
'\040', '\061', '\012', '\127', '\170', '\167', '\040', '\167',
'\141', '\040', '\061', '\012', '\172', '\103', '\160', '\040',
'\163', '\172', '\040', '\061', '\012', '\152', '\132', '\164',
'\040', '\164', '\150', '\040', '\061', '\012', '\116', '\161',
'\146', '\040', '\161', '\165', '\040', '\061', '\012', '\152',
'\147', '\117', '\040', '\156', '\147', '\040', '\061', '\012',
'\146', '\127', '\143', '\040', '\143', '\150', '\040', '\061',
'\012', '\161', '\162', '\116', '\040', '\161', '\165', '\040',
'\061', '\012', '\116', '\172', '\152', '\040', '\163', '\172',
'\040', '\061', '\012', '\110', '\152', '\171', '\040', '\151',
'\152', '\040', '\061', '\012', '\125', '\170', '\171', '\040',
'\156', '\171', '\040', '\061', '\012', '\157', '\111', '\171',
'\040', '\157', '\156', '\040', '\061', '\012', '\162', '\146',
'\130', '\040', '\145', '\162', '\040', '\061', '\012', '\157',
'\102', '\167', '\040', '\157', '\156', '\040', '\061', '\012',
'\171', '\171', '\126', '\040', '\156', '\171', '\040', '\061',
'\012', '\121', '\151', '\166', '\040', '\151', '\156', '\040',
'\061', '\012', '\144', '\113', '\150', '\040', '\164', '\150',
'\040', '\061', '\012', '\161', '\104', '\153', '\040', '\161',
'\165', '\040', '\061', '\012', '\164', '\147', '\121', '\040',
'\164', '\150', '\040', '\061', '\012', '\170', '\116', '\167',
'\040', '\167', '\141', '\040', '\061', '\012', '\161', '\144',
'\114', '\040', '\161', '\165', '\040', '\061', '\012', '\157',
'\166', '\131', '\040', '\157', '\156', '\040', '\061', '\012',
'\146', '\142', '\132', '\040', '\142', '\145', '\040', '\061',
'\012', '\161', '\151', '\111', '\040', '\161', '\165', '\040',
'\061', '\012', '\142', '\166', '\124', '\040', '\166', '\141',
'\040', '\061', '\012', '\152', '\131', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\153', '\142', '\113', '\040',
'\153', '\141', '\040', '\061', '\012', '\115', '\146', '\156',
'\040', '\141', '\156', '\040', '\061', '\012', '\122', '\160',
'\144', '\040', '\144', '\145', '\040', '\061', '\012', '\160',
'\110', '\142', '\040', '\160', '\162', '\040', '\061', '\012',
'\161', '\161', '\117', '\040', '\161', '\165', '\040', '\061',
'\012', '\166', '\153', '\126', '\040', '\153', '\141', '\040',
'\061', '\012', '\163', '\127', '\160', '\040', '\163', '\164',
'\040', '\061', '\012', '\153', '\120', '\146', '\040', '\153',
'\141', '\040', '\061', '\012', '\161', '\114', '\171', '\040',
'\161', '\165', '\040', '\061', '\012', '\161', '\157', '\105',
'\040', '\161', '\165', '\040', '\061', '\012', '\167', '\114',
'\150', '\040', '\164', '\150', '\040', '\061', '\012', '\172',
'\150', '\126', '\040', '\164', '\150', '\040', '\061', '\012',
'\142', '\160', '\114', '\040', '\160', '\162', '\040', '\061',
'\012', '\124', '\161', '\146', '\040', '\161', '\165', '\040',
'\061', '\012', '\160', '\172', '\107', '\040', '\163', '\172',
'\040', '\061', '\012', '\153', '\143', '\124', '\040', '\143',
'\150', '\040', '\061', '\012', '\167', '\152', '\130', '\040',
'\151', '\152', '\040', '\061', '\012', '\153', '\120', '\171',
'\040', '\153', '\165', '\040', '\061', '\012', '\146', '\144',
'\102', '\040', '\144', '\145', '\040', '\061', '\012', '\121',
'\170', '\163', '\040', '\163', '\164', '\040', '\061', '\012',
'\147', '\131', '\146', '\040', '\156', '\147', '\040', '\061',
'\012', '\131', '\160', '\170', '\040', '\160', '\162', '\040',
'\061', '\012', '\172', '\123', '\153', '\040', '\163', '\172',
'\040', '\061', '\012', '\164', '\104', '\147', '\040', '\164',
'\150', '\040', '\061', '\012', '\170', '\142', '\112', '\040',
'\142', '\145', '\040', '\061', '\012', '\171', '\146', '\117',
'\040', '\156', '\171', '\040', '\061', '\012', '\165', '\121',
'\146', '\040', '\161', '\165', '\040', '\061', '\012', '\142',
'\160', '\121', '\040', '\160', '\162', '\040', '\061', '\012',
'\144', '\130', '\143', '\040', '\143', '\150', '\040', '\061',
'\012', '\154', '\167', '\120', '\040', '\154', '\145', '\040',
'\061', '\012', '\166', '\124', '\163', '\040', '\163', '\164',
'\040', '\061', '\012', '\112', '\154', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\103', '\161', '\167', '\040',
'\161', '\165', '\040', '\061', '\012', '\142', '\127', '\171',
'\040', '\142', '\145', '\040', '\061', '\012', '\143', '\125',
'\161', '\040', '\143', '\150', '\040', '\061', '\012', '\131',
'\142', '\153', '\040', '\153', '\141', '\040', '\061', '\012',
'\167', '\171', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\152', '\150', '\161', '\040', '\164', '\150', '\040',
'\061', '\012', '\170', '\125', '\171', '\040', '\156', '\171',
'\040', '\061', '\012', '\116', '\143', '\152', '\040', '\143',
'\150', '\040', '\061', '\012', '\153', '\115', '\150', '\040',
'\164', '\150', '\040', '\061', '\012', '\166', '\132', '\171',
'\040', '\166', '\141', '\040', '\061', '\012', '\172', '\143',
'\161', '\040', '\143', '\150', '\040', '\061', '\012', '\121',
'\163', '\162', '\040', '\145', '\162', '\040', '\061', '\012',
'\114', '\150', '\170', '\040', '\164', '\150', '\040', '\061',
'\012', '\107', '\143', '\152', '\040', '\143', '\150', '\040',
'\061', '\012', '\165', '\121', '\164', '\040', '\164', '\150',
'\040', '\061', '\012', '\167', '\131', '\156', '\040', '\141',
'\156', '\040', '\061', '\012', '\144', '\131', '\155', '\040',
'\144', '\145', '\040', '\061', '\012', '\121', '\166', '\170',
'\040', '\166', '\141', '\040', '\061', '\012', '\122', '\143',
'\147', '\040', '\143', '\150', '\040', '\061', '\012', '\161',
'\107', '\172', '\040', '\161', '\165', '\040', '\061', '\012',
'\142', '\170', '\112', '\040', '\142', '\145', '\040', '\061',
'\012', '\152', '\106', '\147', '\040', '\156', '\147', '\040',
'\061', '\012', '\170', '\114', '\160', '\040', '\160', '\162',
'\040', '\061', '\012', '\154', '\104', '\156', '\040', '\141',
'\156', '\040', '\061', '\012', '\167', '\161', '\123', '\040',
'\161', '\165', '\040', '\061', '\012', '\142', '\111', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\164', '\102',
'\155', '\040', '\164', '\150', '\040', '\061', '\012', '\142',
'\121', '\163', '\040', '\163', '\164', '\040', '\061', '\012',
'\172', '\112', '\142', '\040', '\163', '\172', '\040', '\061',
'\012', '\152', '\146', '\112', '\040', '\151', '\152', '\040',
'\061', '\012', '\161', '\124', '\143', '\040', '\143', '\150',
'\040', '\061', '\012', '\153', '\142', '\130', '\040', '\153',
'\141', '\040', '\061', '\012', '\110', '\154', '\172', '\040',
'\154', '\145', '\040', '\061', '\012', '\160', '\165', '\121',
'\040', '\161', '\165', '\040', '\061', '\012', '\150', '\113',
'\142', '\040', '\164', '\150', '\040', '\061', '\012', '\162',
'\102', '\142', '\040', '\145', '\162', '\040', '\061', '\012',
'\166', '\160', '\127', '\040', '\166', '\141', '\040', '\061',
'\012', '\131', '\152', '\153', '\040', '\151', '\152', '\040',
'\061', '\012', '\127', '\156', '\155', '\040', '\141', '\156',
'\040', '\061', '\012', '\160', '\132', '\162', '\040', '\145',
'\162', '\040', '\061', '\012', '\154', '\144', '\132', '\040',
'\154', '\145', '\040', '\061', '\012', '\147', '\115', '\155',
'\040', '\156', '\147', '\040', '\061', '\012', '\160', '\132',
'\146', '\040', '\160', '\151', '\040', '\061', '\012', '\145',
'\131', '\160', '\040', '\145', '\162', '\040', '\061', '\012',
'\166', '\124', '\160', '\040', '\166', '\141', '\040', '\061',
'\012', '\107', '\153', '\143', '\040', '\143', '\150', '\040',
'\061', '\012', '\103', '\147', '\171', '\040', '\156', '\147',
'\040', '\061', '\012', '\161', '\104', '\167', '\040', '\161',
'\165', '\040', '\061', '\012', '\147', '\170', '\127', '\040',
'\156', '\147', '\040', '\061', '\012', '\103', '\167', '\172',
'\040', '\163', '\172', '\040', '\061', '\012', '\152', '\150',
'\131', '\040', '\164', '\150', '\040', '\061', '\012', '\106',
'\166', '\153', '\040', '\153', '\141', '\040', '\061', '\012',
'\156', '\146', '\110', '\040', '\141', '\156', '\040', '\061',
'\012', '\172', '\143', '\127', '\040', '\143', '\150', '\040',
'\061', '\012', '\172', '\147', '\103', '\040', '\156', '\147',
'\040', '\061', '\012', '\104', '\146', '\153', '\040', '\153',
'\141', '\040', '\061', '\012', '\166', '\160', '\112', '\040',
'\166', '\141', '\040', '\061', '\012', '\127', '\160', '\152',
'\040', '\151', '\152', '\040', '\061', '\012', '\163', '\103',
'\142', '\040', '\163', '\164', '\040', '\061', '\012', '\146',
'\147', '\106', '\040', '\156', '\147', '\040', '\061', '\012',
'\164', '\120', '\170', '\040', '\164', '\150', '\040', '\061',
'\012', '\157', '\103', '\160', '\040', '\157', '\156', '\040',
'\061', '\012', '\116', '\162', '\170', '\040', '\145', '\162',
'\040', '\061', '\012', '\110', '\167', '\155', '\040', '\155',
'\145', '\040', '\061', '\012', '\146', '\122', '\160', '\040',
'\160', '\162', '\040', '\061', '\012', '\141', '\145', '\130',
'\040', '\141', '\156', '\040', '\061', '\012', '\152', '\144',
'\111', '\040', '\144', '\145', '\040', '\061', '\012', '\163',
'\102', '\166', '\040', '\163', '\164', '\040', '\061', '\012',
'\166', '\117', '\166', '\040', '\166', '\141', '\040', '\061',
'\012', '\147', '\121', '\164', '\040', '\164', '\150', '\040',
'\061', '\012', '\127', '\155', '\153', '\040', '\153', '\141',
'\040', '\061', '\012', '\120', '\161', '\152', '\040', '\161',
'\165', '\040', '\061', '\012', '\153', '\150', '\126', '\040',
'\164', '\150', '\040', '\061', '\012', '\110', '\153', '\152',
'\040', '\151', '\152', '\040', '\061', '\012', '\150', '\142',
'\102', '\040', '\164', '\150', '\040', '\061', '\012', '\166',
'\172', '\106', '\040', '\163', '\172', '\040', '\061', '\012',
'\131', '\142', '\172', '\040', '\163', '\172', '\040', '\061',
'\012', '\163', '\130', '\142', '\040', '\163', '\164', '\040',
'\061', '\012', '\171', '\121', '\162', '\040', '\145', '\162',
'\040', '\061', '\012', '\150', '\150', '\126', '\040', '\164',
'\150', '\040', '\061', '\012', '\164', '\147', '\127', '\040',
'\164', '\150', '\040', '\061', '\012', '\142', '\130', '\157',
'\040', '\157', '\156', '\040', '\061', '\012', '\116', '\170',
'\160', '\040', '\160', '\162', '\040', '\061', '\012', '\141',
'\117', '\170', '\040', '\141', '\156', '\040', '\061', '\012',
'\172', '\146', '\142', '\040', '\163', '\172', '\040', '\061',
'\012', '\121', '\170', '\160', '\040', '\160', '\162', '\040',
'\061', '\012', '\161', '\167', '\121', '\040', '\161', '\165',
'\040', '\061', '\012', '\146', '\152', '\126', '\040', '\151',
'\152', '\040', '\061', '\012', '\150', '\152', '\131', '\040',
'\151', '\152', '\040', '\061', '\012', '\167', '\164', '\130',
'\040', '\164', '\150', '\040', '\061', '\012', '\152', '\147',
'\125', '\040', '\156', '\147', '\040', '\061', '\012', '\156',
'\115', '\161', '\040', '\141', '\156', '\040', '\061', '\012',
'\116', '\167', '\170', '\040', '\167', '\141', '\040', '\061',
'\012', '\166', '\120', '\147', '\040', '\156', '\147', '\040',
'\061', '\012', '\130', '\146', '\150', '\040', '\164', '\150',
'\040', '\061', '\012', '\171', '\106', '\146', '\040', '\156',
'\171', '\040', '\061', '\012', '\146', '\110', '\172', '\040',
'\163', '\172', '\040', '\061', '\012', '\156', '\132', '\146',
'\040', '\141', '\156', '\040', '\061', '\012', '\152', '\120',
'\164', '\040', '\164', '\150', '\040', '\061', '\012', '\112',
'\147', '\142', '\040', '\156', '\147', '\040', '\061', '\012',
'\170', '\102', '\142', '\040', '\142', '\151', '\040', '\061',
'\012', '\163', '\152', '\117', '\040', '\163', '\164', '\040',
'\061', '\012', '\167', '\104', '\170', '\040', '\167', '\141',
'\040', '\061', '\012', '\156', '\152', '\116', '\040', '\141',
'\156', '\040', '\061', '\012', '\157', '\150', '\106', '\040',
'\164', '\150', '\040', '\061', '\012', '\160', '\161', '\122',
'\040', '\161', '\165', '\040', '\061', '\012', '\106', '\172',
'\167', '\040', '\163', '\172', '\040', '\061', '\012', '\161',
'\162', '\125', '\040', '\161', '\165', '\040', '\061', '\012',
'\143', '\152', '\107', '\040', '\143', '\150', '\040', '\061',
'\012', '\153', '\106', '\166', '\040', '\153', '\141', '\040',
'\061', '\012', '\172', '\121', '\144', '\040', '\163', '\172',
'\040', '\061', '\012', '\166', '\142', '\105', '\040', '\166',
'\151', '\040', '\061', '\012', '\125', '\152', '\164', '\040',
'\164', '\150', '\040', '\061', '\012', '\161', '\111', '\142',
'\040', '\161', '\165', '\040', '\061', '\012', '\143', '\106',
'\164', '\040', '\164', '\150', '\040', '\061', '\012', '\142',
'\166', '\131', '\040', '\166', '\141', '\040', '\061', '\012',
'\123', '\172', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\167', '\154', '\110', '\040', '\154', '\145', '\040',
'\061', '\012', '\161', '\143', '\131', '\040', '\143', '\150',
'\040', '\061', '\012', '\147', '\105', '\167', '\040', '\156',
'\147', '\040', '\061', '\012', '\170', '\150', '\114', '\040',
'\164', '\150', '\040', '\061', '\012', '\153', '\126', '\147',
'\040', '\156', '\147', '\040', '\061', '\012', '\142', '\146',
'\110', '\040', '\142', '\145', '\040', '\061', '\012', '\116',
'\162', '\172', '\040', '\145', '\162', '\040', '\061', '\012',
'\163', '\112', '\156', '\040', '\141', '\156', '\040', '\061',
'\012', '\142', '\127', '\156', '\040', '\141', '\156', '\040',
'\061', '\012', '\156', '\166', '\113', '\040', '\141', '\156',
'\040', '\061', '\012', '\161', '\151', '\110', '\040', '\161',
'\165', '\040', '\061', '\012', '\161', '\142', '\123', '\040',
'\161', '\165', '\040', '\061', '\012', '\166', '\170', '\102',
'\040', '\166', '\141', '\040', '\061', '\012', '\164', '\166',
'\124', '\040', '\164', '\150', '\040', '\061', '\012', '\116',
'\162', '\150', '\040', '\164', '\150', '\040', '\061', '\012',
'\154', '\131', '\170', '\040', '\154', '\145', '\040', '\061',
'\012', '\164', '\153', '\130', '\040', '\164', '\150', '\040',
'\061', '\012', '\107', '\172', '\170', '\040', '\163', '\172',
'\040', '\061', '\012', '\166', '\103', '\170', '\040', '\166',
'\151', '\040', '\061', '\012', '\132', '\142', '\152', '\040',
'\151', '\152', '\040', '\061', '\012', '\155', '\127', '\160',
'\040', '\155', '\145', '\040', '\061', '\012', '\104', '\161',
'\170', '\040', '\161', '\165', '\040', '\061', '\012', '\160',
'\146', '\105', '\040', '\160', '\162', '\040', '\061', '\012',
'\150', '\166', '\127', '\040', '\164', '\150', '\040', '\061',
'\012', '\105', '\157', '\170', '\040', '\157', '\156', '\040',
'\061', '\012', '\144', '\142', '\132', '\040', '\144', '\145',
'\040', '\061', '\012', '\154', '\116', '\142', '\040', '\154',
'\145', '\040', '\061', '\012', '\162', '\124', '\144', '\040',
'\145', '\162', '\040', '\061', '\012', '\154', '\152', '\121',
'\040', '\154', '\145', '\040', '\061', '\012', '\126', '\166',
'\160', '\040', '\166', '\141', '\040', '\061', '\012', '\147',
'\112', '\167', '\040', '\156', '\147', '\040', '\061', '\012',
'\165', '\161', '\127', '\040', '\161', '\165', '\040', '\061',
'\012', '\107', '\152', '\146', '\040', '\151', '\152', '\040',
'\061', '\012', '\160', '\104', '\144', '\040', '\144', '\145',
'\040', '\061', '\012', '\163', '\147', '\121', '\040', '\156',
'\147', '\040', '\061', '\012', '\150', '\153', '\121', '\040',
'\164', '\150', '\040', '\061', '\012', '\146', '\112', '\143',
'\040', '\143', '\150', '\040', '\061', '\012', '\155', '\144',
'\111', '\040', '\144', '\145', '\040', '\061', '\012', '\107',
'\143', '\160', '\040', '\143', '\150', '\040', '\061', '\012',
'\160', '\130', '\141', '\040', '\141', '\156', '\040', '\061',
'\012', '\160', '\121', '\152', '\040', '\151', '\152', '\040',
'\061', '\012', '\142', '\147', '\105', '\040', '\156', '\147',
'\040', '\061', '\012', '\113', '\172', '\166', '\040', '\163',
'\172', '\040', '\061', '\012', '\143', '\120', '\142', '\040',
'\143', '\150', '\040', '\061', '\012', '\110', '\143', '\172',
'\040', '\143', '\150', '\040', '\061', '\012', '\144', '\152',
'\121', '\040', '\144', '\145', '\040', '\061', '\012', '\160',
'\107', '\144', '\040', '\144', '\145', '\040', '\061', '\012',
'\146', '\171', '\105', '\040', '\156', '\171', '\040', '\061',
'\012', '\144', '\102', '\142', '\040', '\144', '\145', '\040',
'\061', '\012', '\145', '\120', '\152', '\040', '\145', '\162',
'\040', '\061', '\012', '\146', '\147', '\117', '\040', '\156',
'\147', '\040', '\061', '\012', '\170', '\122', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\170', '\161', '\113',
'\040', '\161', '\165', '\040', '\061', '\012', '\160', '\113',
'\160', '\040', '\160', '\162', '\040', '\061', '\012', '\170',
'\155', '\131', '\040', '\155', '\145', '\040', '\061', '\012',
'\150', '\147', '\117', '\040', '\164', '\150', '\040', '\061',
'\012', '\167', '\144', '\107', '\040', '\144', '\145', '\040',
'\061', '\012', '\150', '\166', '\132', '\040', '\164', '\150',
'\040', '\061', '\012', '\163', '\162', '\106', '\040', '\145',
'\162', '\040', '\061', '\012', '\102', '\166', '\146', '\040',
'\166', '\151', '\040', '\061', '\012', '\171', '\166', '\104',
'\040', '\166', '\141', '\040', '\061', '\012', '\170', '\126',
'\147', '\040', '\156', '\147', '\040', '\061', '\012', '\146',
'\131', '\147', '\040', '\156', '\147', '\040', '\061', '\012',
'\142', '\161', '\144', '\040', '\161', '\165', '\040', '\061',
'\012', '\145', '\106', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\143', '\167', '\132', '\040', '\143', '\150',
'\040', '\061', '\012', '\143', '\161', '\107', '\040', '\143',
'\150', '\040', '\061', '\012', '\163', '\113', '\160', '\040',
'\163', '\164', '\040', '\061', '\012', '\150', '\112', '\161',
'\040', '\164', '\150', '\040', '\061', '\012', '\166', '\114',
'\144', '\040', '\144', '\145', '\040', '\061', '\012', '\150',
'\144', '\113', '\040', '\164', '\150', '\040', '\061', '\012',
'\160', '\143', '\116', '\040', '\143', '\150', '\040', '\061',
'\012', '\164', '\116', '\146', '\040', '\164', '\150', '\040',
'\061', '\012', '\170', '\154', '\113', '\040', '\154', '\145',
'\040', '\061', '\012', '\162', '\112', '\170', '\040', '\145',
'\162', '\040', '\061', '\012', '\161', '\141', '\116', '\040',
'\141', '\156', '\040', '\061', '\012', '\172', '\113', '\146',
'\040', '\163', '\172', '\040', '\061', '\012', '\163', '\116',
'\146', '\040', '\163', '\164', '\040', '\061', '\012', '\161',
'\120', '\172', '\040', '\161', '\165', '\040', '\061', '\012',
'\142', '\172', '\114', '\040', '\163', '\172', '\040', '\061',
'\012', '\112', '\144', '\167', '\040', '\144', '\145', '\040',
'\061', '\012', '\156', '\122', '\142', '\040', '\141', '\156',
'\040', '\061', '\012', '\152', '\116', '\163', '\040', '\163',
'\164', '\040', '\061', '\012', '\164', '\156', '\126', '\040',
'\164', '\150', '\040', '\061', '\012', '\171', '\156', '\111',
'\040', '\141', '\156', '\040', '\061', '\012', '\164', '\132',
'\160', '\040', '\164', '\150', '\040', '\061', '\012', '\146',
'\132', '\160', '\040', '\160', '\162', '\040', '\061', '\012',
'\167', '\115', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\117', '\156', '\161', '\040', '\141', '\156', '\040',
'\061', '\012', '\172', '\111', '\150', '\040', '\164', '\150',
'\040', '\061', '\012', '\142', '\166', '\110', '\040', '\166',
'\141', '\040', '\061', '\012', '\125', '\166', '\143', '\040',
'\143', '\150', '\040', '\061', '\012', '\172', '\170', '\112',
'\040', '\163', '\172', '\040', '\061', '\012', '\126', '\155',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\165',
'\120', '\155', '\040', '\161', '\165', '\040', '\061', '\012',
'\155', '\167', '\104', '\040', '\155', '\145', '\040', '\061',
'\012', '\152', '\121', '\143', '\040', '\143', '\150', '\040',
'\061', '\012', '\147', '\120', '\153', '\040', '\156', '\147',
'\040', '\061', '\012', '\166', '\146', '\126', '\040', '\166',
'\141', '\040', '\061', '\012', '\124', '\161', '\154', '\040',
'\161', '\165', '\040', '\061', '\012', '\142', '\112', '\154',
'\040', '\154', '\145', '\040', '\061', '\012', '\154', '\167',
'\117', '\040', '\154', '\145', '\040', '\061', '\012', '\167',
'\142', '\107', '\040', '\167', '\141', '\040', '\061', '\012',
'\146', '\124', '\144', '\040', '\144', '\145', '\040', '\061',
'\012', '\130', '\164', '\161', '\040', '\164', '\150', '\040',
'\061', '\012', '\150', '\172', '\130', '\040', '\164', '\150',
'\040', '\061', '\012', '\120', '\172', '\166', '\040', '\163',
'\172', '\040', '\061', '\012', '\120', '\155', '\170', '\040',
'\155', '\145', '\040', '\061', '\012', '\170', '\132', '\155',
'\040', '\155', '\145', '\040', '\061', '\012', '\152', '\103',
'\160', '\040', '\151', '\152', '\040', '\061', '\012', '\142',
'\113', '\155', '\040', '\155', '\145', '\040', '\061', '\012',
'\124', '\155', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\110', '\156', '\146', '\040', '\141', '\156', '\040',
'\061', '\012', '\153', '\152', '\130', '\040', '\151', '\152',
'\040', '\061', '\012', '\166', '\147', '\110', '\040', '\156',
'\147', '\040', '\061', '\012', '\146', '\123', '\155', '\040',
'\155', '\145', '\040', '\061', '\012', '\171', '\154', '\116',
'\040', '\154', '\145', '\040', '\061', '\012', '\147', '\166',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\152',
'\124', '\172', '\040', '\163', '\172', '\040', '\061', '\012',
'\164', '\127', '\167', '\040', '\164', '\150', '\040', '\061',
'\012', '\171', '\167', '\102', '\040', '\167', '\141', '\040',
'\061', '\012', '\142', '\103', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\144', '\116', '\153', '\040', '\144',
'\145', '\040', '\061', '\012', '\171', '\103', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\122', '\170', '\152',
'\040', '\151', '\152', '\040', '\061', '\012', '\156', '\124',
'\161', '\040', '\141', '\156', '\040', '\061', '\012', '\147',
'\106', '\163', '\040', '\156', '\147', '\040', '\061', '\012',
'\130', '\167', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\147', '\112', '\154', '\040', '\156', '\147', '\040',
'\061', '\012', '\166', '\143', '\122', '\040', '\143', '\150',
'\040', '\061', '\012', '\146', '\142', '\124', '\040', '\142',
'\145', '\040', '\061', '\012', '\106', '\143', '\144', '\040',
'\143', '\150', '\040', '\061', '\012', '\127', '\170', '\155',
'\040', '\155', '\145', '\040', '\061', '\012', '\161', '\167',
'\166', '\040', '\161', '\165', '\040', '\061', '\012', '\123',
'\146', '\150', '\040', '\164', '\150', '\040', '\061', '\012',
'\154', '\143', '\113', '\040', '\143', '\150', '\040', '\061',
'\012', '\163', '\142', '\126', '\040', '\163', '\164', '\040',
'\061', '\012', '\146', '\123', '\146', '\040', '\146', '\157',
'\040', '\061', '\012', '\154', '\142', '\102', '\040', '\154',
'\145', '\040', '\061', '\012', '\117', '\143', '\167', '\040',
'\143', '\150', '\040', '\061', '\012', '\152', '\147', '\115',
'\040', '\156', '\147', '\040', '\061', '\012', '\156', '\142',
'\111', '\040', '\141', '\156', '\040', '\061', '\012', '\161',
'\163', '\113', '\040', '\161', '\165', '\040', '\061', '\012',
'\130', '\171', '\146', '\040', '\156', '\171', '\040', '\061',
'\012', '\160', '\170', '\166', '\040', '\166', '\141', '\040',
'\061', '\012', '\155', '\122', '\143', '\040', '\143', '\150',
'\040', '\061', '\012', '\117', '\147', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\172', '\165', '\131', '\040',
'\161', '\165', '\040', '\061', '\012', '\146', '\130', '\165',
'\040', '\161', '\165', '\040', '\061', '\012', '\127', '\142',
'\152', '\040', '\151', '\152', '\040', '\061', '\012', '\124',
'\142', '\167', '\040', '\167', '\141', '\040', '\061', '\012',
'\172', '\162', '\122', '\040', '\145', '\162', '\040', '\061',
'\012', '\147', '\155', '\120', '\040', '\156', '\147', '\040',
'\061', '\012', '\143', '\103', '\155', '\040', '\143', '\150',
'\040', '\061', '\012', '\147', '\164', '\121', '\040', '\164',
'\150', '\040', '\061', '\012', '\160', '\150', '\107', '\040',
'\164', '\150', '\040', '\061', '\012', '\161', '\152', '\126',
'\040', '\161', '\165', '\040', '\061', '\012', '\171', '\147',
'\107', '\040', '\156', '\147', '\040', '\061', '\012', '\167',
'\106', '\142', '\040', '\167', '\141', '\040', '\061', '\012',
'\162', '\161', '\114', '\040', '\161', '\165', '\040', '\061',
'\012', '\161', '\123', '\170', '\040', '\161', '\165', '\040',
'\061', '\012', '\171', '\142', '\113', '\040', '\142', '\145',
'\040', '\061', '\012', '\155', '\161', '\112', '\040', '\161',
'\165', '\040', '\061', '\012', '\121', '\162', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\161', '\144', '\111',
'\040', '\161', '\165', '\040', '\061', '\012', '\142', '\143',
'\107', '\040', '\143', '\150', '\040', '\061', '\012', '\151',
'\106', '\142', '\040', '\151', '\156', '\040', '\061', '\012',
'\155', '\143', '\132', '\040', '\143', '\150', '\040', '\061',
'\012', '\166', '\103', '\172', '\040', '\163', '\172', '\040',
'\061', '\012', '\170', '\110', '\172', '\040', '\164', '\172',
'\040', '\061', '\012', '\150', '\152', '\115', '\040', '\164',
'\150', '\040', '\061', '\012', '\161', '\164', '\114', '\040',
'\164', '\150', '\040', '\061', '\012', '\164', '\155', '\110',
'\040', '\164', '\150', '\040', '\061', '\012', '\163', '\154',
'\104', '\040', '\154', '\145', '\040', '\061', '\012', '\166',
'\122', '\172', '\040', '\163', '\172', '\040', '\061', '\012',
'\147', '\103', '\144', '\040', '\156', '\147', '\040', '\061',
'\012', '\130', '\170', '\143', '\040', '\143', '\150', '\040',
'\061', '\012', '\161', '\113', '\143', '\040', '\143', '\150',
'\040', '\061', '\012', '\163', '\111', '\167', '\040', '\163',
'\164', '\040', '\061', '\012', '\146', '\163', '\131', '\040',
'\163', '\164', '\040', '\061', '\012', '\170', '\162', '\112',
'\040', '\145', '\162', '\040', '\061', '\012', '\164', '\116',
'\163', '\040', '\164', '\150', '\040', '\061', '\012', '\147',
'\142', '\104', '\040', '\156', '\147', '\040', '\061', '\012',
'\167', '\114', '\154', '\040', '\154', '\145', '\040', '\061',
'\012', '\150', '\106', '\146', '\040', '\164', '\150', '\040',
'\061', '\012', '\116', '\170', '\151', '\040', '\151', '\156',
'\040', '\061', '\012', '\146', '\122', '\142', '\040', '\142',
'\145', '\040', '\061', '\012', '\112', '\162', '\142', '\040',
'\145', '\162', '\040', '\061', '\012', '\152', '\105', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\150', '\167',
'\115', '\040', '\164', '\150', '\040', '\061', '\012', '\165',
'\126', '\167', '\040', '\161', '\165', '\040', '\061', '\012',
'\146', '\147', '\116', '\040', '\156', '\147', '\040', '\061',
'\012', '\155', '\101', '\157', '\040', '\157', '\156', '\040',
'\061', '\012', '\120', '\152', '\142', '\040', '\151', '\152',
'\040', '\061', '\012', '\156', '\160', '\120', '\040', '\151',
'\156', '\040', '\061', '\012', '\112', '\143', '\171', '\040',
'\143', '\150', '\040', '\061', '\012', '\171', '\112', '\142',
'\040', '\142', '\151', '\040', '\061', '\012', '\152', '\170',
'\111', '\040', '\151', '\152', '\040', '\061', '\012', '\113',
'\153', '\143', '\040', '\143', '\150', '\040', '\061', '\012',
'\153', '\167', '\126', '\040', '\153', '\141', '\040', '\061',
'\012', '\147', '\122', '\146', '\040', '\156', '\147', '\040',
'\061', '\012', '\127', '\146', '\155', '\040', '\155', '\145',
'\040', '\061', '\012', '\124', '\144', '\160', '\040', '\160',
'\157', '\040', '\061', '\012', '\167', '\105', '\172', '\040',
'\163', '\172', '\040', '\061', '\012', '\114', '\166', '\153',
'\040', '\153', '\141', '\040', '\061', '\012', '\104', '\161',
'\156', '\040', '\141', '\156', '\040', '\061', '\012', '\164',
'\161', '\114', '\040', '\164', '\150', '\040', '\061', '\012',
'\152', '\112', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\166', '\144', '\103', '\040', '\144', '\145', '\040',
'\061', '\012', '\150', '\170', '\125', '\040', '\164', '\150',
'\040', '\061', '\012', '\170', '\125', '\145', '\040', '\145',
'\162', '\040', '\061', '\012', '\164', '\121', '\143', '\040',
'\164', '\150', '\040', '\061', '\012', '\114', '\172', '\153',
'\040', '\163', '\172', '\040', '\061', '\012', '\144', '\124',
'\152', '\040', '\144', '\145', '\040', '\061', '\012', '\124',
'\154', '\172', '\040', '\154', '\145', '\040', '\061', '\012',
'\170', '\121', '\167', '\040', '\167', '\141', '\040', '\061',
'\012', '\106', '\143', '\161', '\040', '\143', '\150', '\040',
'\061', '\012', '\167', '\147', '\105', '\040', '\156', '\147',
'\040', '\061', '\012', '\103', '\153', '\144', '\040', '\144',
'\145', '\040', '\061', '\012', '\171', '\113', '\163', '\040',
'\163', '\164', '\040', '\061', '\012', '\170', '\167', '\123',
'\040', '\167', '\141', '\040', '\061', '\012', '\167', '\122',
'\164', '\040', '\164', '\150', '\040', '\061', '\012', '\147',
'\153', '\113', '\040', '\156', '\147', '\040', '\061', '\012',
'\150', '\121', '\166', '\040', '\164', '\150', '\040', '\061',
'\012', '\163', '\114', '\160', '\040', '\163', '\164', '\040',
'\061', '\012', '\152', '\101', '\151', '\040', '\151', '\156',
'\040', '\061', '\012', '\144', '\155', '\107', '\040', '\144',
'\145', '\040', '\061', '\012', '\152', '\113', '\156', '\040',
'\141', '\156', '\040', '\061', '\012', '\161', '\125', '\142',
'\040', '\161', '\165', '\040', '\061', '\012', '\167', '\130',
'\171', '\040', '\167', '\141', '\040', '\061', '\012', '\142',
'\172', '\112', '\040', '\163', '\172', '\040', '\061', '\012',
'\147', '\172', '\112', '\040', '\156', '\147', '\040', '\061',
'\012', '\150', '\116', '\172', '\040', '\164', '\150', '\040',
'\061', '\012', '\171', '\147', '\131', '\040', '\156', '\147',
'\040', '\061', '\012', '\161', '\150', '\125', '\040', '\164',
'\150', '\040', '\061', '\012', '\141', '\146', '\130', '\040',
'\141', '\156', '\040', '\061', '\012', '\152', '\132', '\167',
'\040', '\151', '\152', '\040', '\061', '\012', '\130', '\144',
'\170', '\040', '\144', '\145', '\040', '\061', '\012', '\124',
'\144', '\170', '\040', '\144', '\145', '\040', '\061', '\012',
'\152', '\116', '\156', '\040', '\141', '\156', '\040', '\061',
'\012', '\166', '\130', '\146', '\040', '\166', '\141', '\040',
'\061', '\012', '\161', '\143', '\105', '\040', '\143', '\150',
'\040', '\061', '\012', '\115', '\156', '\167', '\040', '\141',
'\156', '\040', '\061', '\012', '\161', '\104', '\150', '\040',
'\164', '\150', '\040', '\061', '\012', '\124', '\144', '\152',
'\040', '\144', '\145', '\040', '\061', '\012', '\144', '\147',
'\112', '\040', '\156', '\147', '\040', '\061', '\012', '\163',
'\144', '\122', '\040', '\163', '\164', '\040', '\061', '\012',
'\161', '\107', '\156', '\040', '\141', '\156', '\040', '\061',
'\012', '\115', '\152', '\152', '\040', '\151', '\152', '\040',
'\061', '\012', '\163', '\170', '\110', '\040', '\163', '\164',
'\040', '\061', '\012', '\120', '\160', '\172', '\040', '\163',
'\172', '\040', '\061', '\012', '\147', '\146', '\126', '\040',
'\156', '\147', '\040', '\061', '\012', '\146', '\117', '\171',
'\040', '\156', '\171', '\040', '\061', '\012', '\116', '\166',
'\170', '\040', '\166', '\151', '\040', '\061', '\012', '\161',
'\141', '\126', '\040', '\141', '\156', '\040', '\061', '\012',
'\170', '\152', '\154', '\040', '\154', '\145', '\040', '\061',
'\012', '\170', '\147', '\132', '\040', '\156', '\147', '\040',
'\061', '\012', '\143', '\107', '\166', '\040', '\143', '\150',
'\040', '\061', '\012', '\132', '\170', '\165', '\040', '\161',
'\165', '\040', '\061', '\012', '\115', '\146', '\160', '\040',
'\160', '\162', '\040', '\061', '\012', '\172', '\106', '\160',
'\040', '\163', '\172', '\040', '\061', '\012', '\152', '\147',
'\112', '\040', '\156', '\147', '\040', '\061', '\012', '\142',
'\160', '\107', '\040', '\160', '\162', '\040', '\061', '\012',
'\166', '\113', '\172', '\040', '\163', '\172', '\040', '\061',
'\012', '\150', '\161', '\111', '\040', '\164', '\150', '\040',
'\061', '\012', '\121', '\147', '\167', '\040', '\156', '\147',
'\040', '\061', '\012', '\121', '\171', '\171', '\040', '\156',
'\171', '\040', '\061', '\012', '\152', '\155', '\111', '\040',
'\151', '\152', '\040', '\061', '\012', '\126', '\147', '\144',
'\040', '\156', '\147', '\040', '\061', '\012', '\170', '\103',
'\164', '\040', '\164', '\150', '\040', '\061', '\012', '\171',
'\126', '\163', '\040', '\163', '\164', '\040', '\061', '\012',
'\165', '\105', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\144', '\143', '\116', '\040', '\143', '\150', '\040',
'\061', '\012', '\102', '\172', '\142', '\040', '\163', '\172',
'\040', '\061', '\012', '\147', '\126', '\154', '\040', '\156',
'\147', '\040', '\061', '\012', '\163', '\130', '\147', '\040',
'\156', '\147', '\040', '\061', '\012', '\153', '\121', '\146',
'\040', '\153', '\141', '\040', '\061', '\012', '\154', '\162',
'\131', '\040', '\145', '\162', '\040', '\061', '\012', '\126',
'\164', '\144', '\040', '\164', '\150', '\040', '\061', '\012',
'\156', '\110', '\163', '\040', '\141', '\156', '\040', '\061',
'\012', '\167', '\152', '\116', '\040', '\151', '\152', '\040',
'\061', '\012', '\162', '\172', '\112', '\040', '\145', '\162',
'\040', '\061', '\012', '\163', '\131', '\171', '\040', '\163',
'\164', '\040', '\061', '\012', '\167', '\170', '\121', '\040',
'\167', '\141', '\040', '\061', '\012', '\132', '\164', '\142',
'\040', '\164', '\150', '\040', '\061', '\012', '\164', '\127',
'\146', '\040', '\164', '\150', '\040', '\061', '\012', '\164',
'\103', '\170', '\040', '\164', '\150', '\040', '\061', '\012',
'\141', '\106', '\142', '\040', '\141', '\156', '\040', '\061',
'\012', '\154', '\161', '\146', '\040', '\161', '\165', '\040',
'\061', '\012', '\146', '\145', '\132', '\040', '\145', '\162',
'\040', '\061', '\012', '\146', '\120', '\172', '\040', '\163',
'\172', '\040', '\061', '\012', '\143', '\152', '\131', '\040',
'\143', '\150', '\040', '\061', '\012', '\167', '\113', '\150',
'\040', '\164', '\150', '\040', '\061', '\012', '\121', '\150',
'\171', '\040', '\164', '\150', '\040', '\061', '\012', '\144',
'\103', '\152', '\040', '\144', '\145', '\040', '\061', '\012',
'\142', '\153', '\110', '\040', '\153', '\141', '\040', '\061',
'\012', '\171', '\152', '\104', '\040', '\151', '\152', '\040',
'\061', '\012', '\152', '\124', '\163', '\040', '\163', '\164',
'\040', '\061', '\012', '\150', '\170', '\111', '\040', '\164',
'\150', '\040', '\061', '\012', '\154', '\166', '\113', '\040',
'\166', '\151', '\040', '\061', '\012', '\114', '\167', '\172',
'\040', '\163', '\172', '\040', '\061', '\012', '\163', '\167',
'\121', '\040', '\163', '\164', '\040', '\061', '\012', '\144',
'\124', '\153', '\040', '\144', '\151', '\040', '\061', '\012',
'\146', '\163', '\117', '\040', '\163', '\164', '\040', '\061',
'\012', '\154', '\152', '\105', '\040', '\154', '\145', '\040',
'\061', '\012', '\167', '\152', '\115', '\040', '\151', '\152',
'\040', '\061', '\012', '\165', '\121', '\153', '\040', '\161',
'\165', '\040', '\061', '\012', '\170', '\120', '\147', '\040',
'\156', '\147', '\040', '\061', '\012', '\166', '\155', '\103',
'\040', '\166', '\141', '\040', '\061', '\012', '\161', '\163',
'\104', '\040', '\161', '\165', '\040', '\061', '\012', '\147',
'\104', '\167', '\040', '\156', '\147', '\040', '\061', '\012',
'\167', '\112', '\153', '\040', '\153', '\141', '\040', '\061',
'\012', '\132', '\160', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\131', '\150', '\147', '\040', '\164', '\150',
'\040', '\061', '\012', '\153', '\116', '\143', '\040', '\143',
'\150', '\040', '\061', '\012', '\142', '\127', '\154', '\040',
'\154', '\145', '\040', '\061', '\012', '\106', '\167', '\150',
'\040', '\164', '\150', '\040', '\061', '\012', '\146', '\110',
'\170', '\040', '\146', '\157', '\040', '\061', '\012', '\106',
'\156', '\166', '\040', '\141', '\156', '\040', '\061', '\012',
'\146', '\144', '\114', '\040', '\144', '\145', '\040', '\061',
'\012', '\157', '\161', '\104', '\040', '\161', '\165', '\040',
'\061', '\012', '\141', '\131', '\170', '\040', '\141', '\156',
'\040', '\061', '\012', '\126', '\161', '\170', '\040', '\161',
'\165', '\040', '\061', '\012', '\166', '\113', '\146', '\040',
'\166', '\141', '\040', '\061', '\012', '\103', '\142', '\167',
'\040', '\167', '\141', '\040', '\061', '\012', '\166', '\171',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\143',
'\161', '\132', '\040', '\143', '\150', '\040', '\061', '\012',
'\122', '\146', '\150', '\040', '\164', '\150', '\040', '\061',
'\012', '\123', '\167', '\143', '\040', '\143', '\150', '\040',
'\061', '\012', '\161', '\116', '\151', '\040', '\161', '\165',
'\040', '\061', '\012', '\161', '\157', '\127', '\040', '\161',
'\165', '\040', '\061', '\012', '\152', '\150', '\104', '\040',
'\164', '\150', '\040', '\061', '\012', '\153', '\112', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\147', '\144',
'\106', '\040', '\156', '\147', '\040', '\061', '\012', '\160',
'\166', '\106', '\040', '\166', '\141', '\040', '\061', '\012',
'\143', '\160', '\126', '\040', '\143', '\150', '\040', '\061',
'\012', '\161', '\164', '\103', '\040', '\164', '\150', '\040',
'\061', '\012', '\147', '\127', '\155', '\040', '\156', '\147',
'\040', '\061', '\012', '\147', '\120', '\143', '\040', '\143',
'\150', '\040', '\061', '\012', '\152', '\102', '\163', '\040',
'\163', '\164', '\040', '\061', '\012', '\162', '\154', '\126',
'\040', '\145', '\162', '\040', '\061', '\012', '\147', '\132',
'\143', '\040', '\143', '\150', '\040', '\061', '\012', '\153',
'\124', '\153', '\040', '\153', '\141', '\040', '\061', '\012',
'\150', '\146', '\112', '\040', '\164', '\150', '\040', '\061',
'\012', '\123', '\166', '\166', '\040', '\166', '\141', '\040',
'\061', '\012', '\153', '\155', '\107', '\040', '\153', '\141',
'\040', '\061', '\012', '\163', '\104', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\150', '\107', '\142', '\040',
'\164', '\150', '\040', '\061', '\012', '\102', '\154', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\121', '\162',
'\171', '\040', '\145', '\162', '\040', '\061', '\012', '\150',
'\110', '\172', '\040', '\164', '\150', '\040', '\061', '\012',
'\171', '\114', '\170', '\040', '\156', '\171', '\040', '\061',
'\012', '\154', '\161', '\106', '\040', '\161', '\165', '\040',
'\061', '\012', '\167', '\142', '\102', '\040', '\142', '\151',
'\040', '\061', '\012', '\151', '\131', '\162', '\040', '\151',
'\156', '\040', '\061', '\012', '\167', '\104', '\172', '\040',
'\164', '\172', '\040', '\061', '\012', '\170', '\163', '\112',
'\040', '\163', '\164', '\040', '\061', '\012', '\142', '\172',
'\131', '\040', '\163', '\172', '\040', '\061', '\012', '\160',
'\115', '\167', '\040', '\160', '\162', '\040', '\061', '\012',
'\125', '\165', '\152', '\040', '\161', '\165', '\040', '\061',
'\012', '\150', '\170', '\113', '\040', '\164', '\150', '\040',
'\061', '\012', '\130', '\166', '\146', '\040', '\166', '\141',
'\040', '\061', '\012', '\153', '\162', '\132', '\040', '\145',
'\162', '\040', '\061', '\012', '\146', '\167', '\126', '\040',
'\167', '\141', '\040', '\061', '\012', '\147', '\120', '\167',
'\040', '\156', '\147', '\040', '\061', '\012', '\161', '\126',
'\156', '\040', '\141', '\156', '\040', '\061', '\012', '\121',
'\156', '\161', '\040', '\141', '\156', '\040', '\061', '\012',
'\147', '\104', '\142', '\040', '\156', '\147', '\040', '\061',
'\012', '\150', '\126', '\162', '\040', '\164', '\150', '\040',
'\061', '\012', '\172', '\113', '\150', '\040', '\164', '\150',
'\040', '\061', '\012', '\106', '\170', '\171', '\040', '\156',
'\171', '\040', '\061', '\012', '\157', '\132', '\152', '\040',
'\157', '\156', '\040', '\061', '\012', '\172', '\101', '\171',
'\040', '\163', '\172', '\040', '\061', '\012', '\152', '\115',
'\155', '\040', '\151', '\152', '\040', '\061', '\012', '\155',
'\166', '\111', '\040', '\166', '\141', '\040', '\061', '\012',
'\106', '\167', '\155', '\040', '\155', '\145', '\040', '\061',
'\012', '\172', '\161', '\154', '\040', '\161', '\165', '\040',
'\061', '\012', '\145', '\126', '\166', '\040', '\145', '\162',
'\040', '\061', '\012', '\171', '\127', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\114', '\167', '\153', '\040',
'\153', '\141', '\040', '\061', '\012', '\114', '\155', '\167',
'\040', '\155', '\145', '\040', '\061', '\012', '\166', '\130',
'\142', '\040', '\166', '\141', '\040', '\061', '\012', '\130',
'\150', '\163', '\040', '\164', '\150', '\040', '\061', '\012',
'\150', '\154', '\122', '\040', '\164', '\150', '\040', '\061',
'\012', '\121', '\161', '\167', '\040', '\161', '\165', '\040',
'\061', '\012', '\172', '\142', '\113', '\040', '\163', '\172',
'\040', '\061', '\012', '\120', '\170', '\154', '\040', '\154',
'\145', '\040', '\061', '\012', '\156', '\120', '\155', '\040',
'\141', '\156', '\040', '\061', '\012', '\167', '\121', '\157',
'\040', '\157', '\156', '\040', '\061', '\012', '\104', '\143',
'\142', '\040', '\143', '\150', '\040', '\061', '\012', '\150',
'\152', '\124', '\040', '\164', '\150', '\040', '\061', '\012',
'\162', '\152', '\112', '\040', '\145', '\162', '\040', '\061',
'\012', '\142', '\115', '\143', '\040', '\143', '\150', '\040',
'\061', '\012', '\151', '\131', '\142', '\040', '\151', '\156',
'\040', '\061', '\012', '\106', '\161', '\152', '\040', '\161',
'\165', '\040', '\061', '\012', '\125', '\157', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\130', '\166', '\160',
'\040', '\166', '\141', '\040', '\061', '\012', '\114', '\167',
'\142', '\040', '\167', '\141', '\040', '\061', '\012', '\112',
'\160', '\144', '\040', '\144', '\145', '\040', '\061', '\012',
'\161', '\125', '\147', '\040', '\161', '\165', '\040', '\061',
'\012', '\154', '\112', '\170', '\040', '\154', '\145', '\040',
'\061', '\012', '\130', '\167', '\144', '\040', '\144', '\145',
'\040', '\061', '\012', '\170', '\113', '\146', '\040', '\146',
'\157', '\040', '\061', '\012', '\132', '\156', '\161', '\040',
'\141', '\156', '\040', '\061', '\012', '\161', '\103', '\142',
'\040', '\161', '\165', '\040', '\061', '\012', '\132', '\142',
'\172', '\040', '\163', '\172', '\040', '\061', '\012', '\121',
'\165', '\170', '\040', '\161', '\165', '\040', '\061', '\012',
'\161', '\116', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\146', '\166', '\126', '\040', '\166', '\141', '\040',
'\061', '\012', '\121', '\161', '\172', '\040', '\161', '\165',
'\040', '\061', '\012', '\110', '\144', '\146', '\040', '\144',
'\145', '\040', '\061', '\012', '\171', '\123', '\170', '\040',
'\156', '\171', '\040', '\061', '\012', '\161', '\123', '\155',
'\040', '\161', '\165', '\040', '\061', '\012', '\114', '\150',
'\142', '\040', '\164', '\150', '\040', '\061', '\012', '\115',
'\166', '\146', '\040', '\166', '\141', '\040', '\061', '\012',
'\143', '\104', '\160', '\040', '\143', '\150', '\040', '\061',
'\012', '\142', '\110', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\127', '\155', '\147', '\040', '\156', '\147',
'\040', '\061', '\012', '\171', '\164', '\107', '\040', '\164',
'\150', '\040', '\061', '\012', '\144', '\142', '\112', '\040',
'\144', '\145', '\040', '\061', '\012', '\106', '\146', '\147',
'\040', '\156', '\147', '\040', '\061', '\012', '\150', '\166',
'\115', '\040', '\164', '\150', '\040', '\061', '\012', '\127',
'\161', '\171', '\040', '\161', '\165', '\040', '\061', '\012',
'\147', '\130', '\144', '\040', '\156', '\147', '\040', '\061',
'\012', '\165', '\106', '\147', '\040', '\161', '\165', '\040',
'\061', '\012', '\152', '\160', '\122', '\040', '\151', '\152',
'\040', '\061', '\012', '\130', '\143', '\143', '\040', '\143',
'\150', '\040', '\061', '\012', '\124', '\142', '\160', '\040',
'\160', '\162', '\040', '\061', '\012', '\121', '\167', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\164', '\120',
'\160', '\040', '\164', '\150', '\040', '\061', '\012', '\146',
'\115', '\150', '\040', '\164', '\150', '\040', '\061', '\012',
'\161', '\151', '\126', '\040', '\161', '\165', '\040', '\061',
'\012', '\144', '\143', '\102', '\040', '\143', '\150', '\040',
'\061', '\012', '\144', '\106', '\170', '\040', '\144', '\145',
'\040', '\061', '\012', '\131', '\155', '\152', '\040', '\151',
'\152', '\040', '\061', '\012', '\114', '\144', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\154', '\170', '\126',
'\040', '\154', '\145', '\040', '\061', '\012', '\143', '\103',
'\153', '\040', '\143', '\150', '\040', '\061', '\012', '\150',
'\126', '\170', '\040', '\164', '\150', '\040', '\061', '\012',
'\144', '\154', '\124', '\040', '\154', '\145', '\040', '\061',
'\012', '\153', '\150', '\120', '\040', '\164', '\150', '\040',
'\061', '\012', '\161', '\126', '\147', '\040', '\161', '\165',
'\040', '\061', '\012', '\114', '\152', '\152', '\040', '\151',
'\152', '\040', '\061', '\012', '\172', '\103', '\166', '\040',
'\163', '\172', '\040', '\061', '\012', '\171', '\167', '\126',
'\040', '\167', '\141', '\040', '\061', '\012', '\171', '\142',
'\132', '\040', '\142', '\145', '\040', '\061', '\012', '\166',
'\107', '\150', '\040', '\164', '\150', '\040', '\061', '\012',
'\102', '\166', '\152', '\040', '\151', '\152', '\040', '\061',
'\012', '\132', '\161', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\107', '\167', '\153', '\040', '\153', '\141',
'\040', '\061', '\012', '\161', '\114', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\146', '\153', '\130', '\040',
'\153', '\141', '\040', '\061', '\012', '\116', '\142', '\172',
'\040', '\163', '\172', '\040', '\061', '\012', '\142', '\130',
'\155', '\040', '\155', '\145', '\040', '\061', '\012', '\144',
'\121', '\150', '\040', '\164', '\150', '\040', '\061', '\012',
'\165', '\131', '\144', '\040', '\161', '\165', '\040', '\061',
'\012', '\170', '\131', '\163', '\040', '\163', '\164', '\040',
'\061', '\012', '\172', '\123', '\163', '\040', '\163', '\164',
'\040', '\061', '\012', '\171', '\143', '\132', '\040', '\143',
'\150', '\040', '\061', '\012', '\154', '\156', '\125', '\040',
'\141', '\156', '\040', '\061', '\012', '\164', '\103', '\152',
'\040', '\164', '\150', '\040', '\061', '\012', '\170', '\156',
'\131', '\040', '\141', '\156', '\040', '\061', '\012', '\160',
'\164', '\121', '\040', '\164', '\150', '\040', '\061', '\012',
'\163', '\167', '\117', '\040', '\163', '\164', '\040', '\061',
'\012', '\150', '\130', '\165', '\040', '\164', '\150', '\040',
'\061', '\012', '\155', '\102', '\167', '\040', '\155', '\142',
'\040', '\061', '\012', '\167', '\155', '\106', '\040', '\155',
'\145', '\040', '\061', '\012', '\170', '\112', '\170', '\040',
'\170', '\145', '\040', '\061', '\012', '\144', '\130', '\152',
'\040', '\144', '\145', '\040', '\061', '\012', '\145', '\161',
'\147', '\040', '\161', '\165', '\040', '\061', '\012', '\156',
'\102', '\146', '\040', '\141', '\156', '\040', '\061', '\012',
'\130', '\142', '\144', '\040', '\144', '\145', '\040', '\061',
'\012', '\146', '\143', '\121', '\040', '\143', '\150', '\040',
'\061', '\012', '\170', '\153', '\123', '\040', '\153', '\141',
'\040', '\061', '\012', '\164', '\117', '\161', '\040', '\164',
'\150', '\040', '\061', '\012', '\165', '\121', '\142', '\040',
'\161', '\165', '\040', '\061', '\012', '\143', '\166', '\126',
'\040', '\143', '\150', '\040', '\061', '\012', '\163', '\102',
'\150', '\040', '\164', '\150', '\040', '\061', '\012', '\144',
'\103', '\153', '\040', '\144', '\145', '\040', '\061', '\012',
'\143', '\113', '\166', '\040', '\143', '\150', '\040', '\061',
'\012', '\143', '\126', '\146', '\040', '\143', '\150', '\040',
'\061', '\012', '\167', '\132', '\170', '\040', '\167', '\141',
'\040', '\061', '\012', '\102', '\166', '\155', '\040', '\166',
'\141', '\040', '\061', '\012', '\154', '\161', '\112', '\040',
'\161', '\165', '\040', '\061', '\012', '\146', '\170', '\122',
'\040', '\146', '\157', '\040', '\061', '\012', '\166', '\155',
'\106', '\040', '\166', '\141', '\040', '\061', '\012', '\170',
'\156', '\161', '\040', '\141', '\156', '\040', '\061', '\012',
'\142', '\102', '\147', '\040', '\156', '\147', '\040', '\061',
'\012', '\164', '\120', '\144', '\040', '\164', '\150', '\040',
'\061', '\012', '\146', '\116', '\163', '\040', '\163', '\164',
'\040', '\061', '\012', '\106', '\153', '\160', '\040', '\153',
'\141', '\040', '\061', '\012', '\131', '\171', '\145', '\040',
'\145', '\162', '\040', '\061', '\012', '\125', '\142', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\170', '\172',
'\120', '\040', '\163', '\172', '\040', '\061', '\012', '\146',
'\155', '\121', '\040', '\155', '\145', '\040', '\061', '\012',
'\161', '\143', '\101', '\040', '\143', '\150', '\040', '\061',
'\012', '\171', '\113', '\143', '\040', '\143', '\150', '\040',
'\061', '\012', '\170', '\166', '\132', '\040', '\166', '\141',
'\040', '\061', '\012', '\143', '\142', '\116', '\040', '\143',
'\150', '\040', '\061', '\012', '\171', '\131', '\154', '\040',
'\154', '\145', '\040', '\061', '\012', '\120', '\155', '\167',
'\040', '\155', '\145', '\040', '\061', '\012', '\167', '\106',
'\170', '\040', '\167', '\141', '\040', '\061', '\012', '\150',
'\122', '\150', '\040', '\164', '\150', '\040', '\061', '\012',
'\161', '\160', '\123', '\040', '\161', '\165', '\040', '\061',
'\012', '\126', '\161', '\146', '\040', '\161', '\165', '\040',
'\061', '\012', '\107', '\150', '\147', '\040', '\164', '\150',
'\040', '\061', '\012', '\127', '\166', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\170', '\153', '\103', '\040',
'\153', '\141', '\040', '\061', '\012', '\171', '\164', '\115',
'\040', '\164', '\150', '\040', '\061', '\012', '\114', '\156',
'\150', '\040', '\164', '\150', '\040', '\061', '\012', '\144',
'\170', '\104', '\040', '\144', '\145', '\040', '\061', '\012',
'\142', '\115', '\167', '\040', '\167', '\141', '\040', '\061',
'\012', '\170', '\166', '\125', '\040', '\166', '\141', '\040',
'\061', '\012', '\121', '\172', '\170', '\040', '\163', '\172',
'\040', '\061', '\012', '\163', '\162', '\115', '\040', '\145',
'\162', '\040', '\061', '\012', '\166', '\114', '\147', '\040',
'\156', '\147', '\040', '\061', '\012', '\143', '\107', '\161',
'\040', '\143', '\150', '\040', '\061', '\012', '\126', '\155',
'\171', '\040', '\155', '\145', '\040', '\061', '\012', '\150',
'\143', '\114', '\040', '\164', '\150', '\040', '\061', '\012',
'\160', '\113', '\170', '\040', '\160', '\162', '\040', '\061',
'\012', '\112', '\170', '\163', '\040', '\163', '\164', '\040',
'\061', '\012', '\142', '\154', '\127', '\040', '\154', '\145',
'\040', '\061', '\012', '\160', '\121', '\157', '\040', '\157',
'\156', '\040', '\061', '\012', '\142', '\105', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\146', '\127', '\164',
'\040', '\164', '\150', '\040', '\061', '\012', '\163', '\131',
'\155', '\040', '\163', '\164', '\040', '\061', '\012', '\156',
'\113', '\167', '\040', '\141', '\156', '\040', '\061', '\012',
'\144', '\164', '\106', '\040', '\164', '\150', '\040', '\061',
'\012', '\153', '\124', '\172', '\040', '\163', '\172', '\040',
'\061', '\012', '\145', '\160', '\130', '\040', '\145', '\162',
'\040', '\061', '\012', '\146', '\103', '\160', '\040', '\160',
'\162', '\040', '\061', '\012', '\142', '\106', '\153', '\040',
'\153', '\141', '\040', '\061', '\012', '\122', '\172', '\142',
'\040', '\163', '\172', '\040', '\061', '\012', '\166', '\161',
'\111', '\040', '\161', '\165', '\040', '\061', '\012', '\132',
'\150', '\143', '\040', '\164', '\150', '\040', '\061', '\012',
'\110', '\166', '\166', '\040', '\166', '\141', '\040', '\061',
'\012', '\155', '\126', '\164', '\040', '\164', '\150', '\040',
'\061', '\012', '\111', '\167', '\170', '\040', '\167', '\141',
'\040', '\061', '\012', '\160', '\150', '\122', '\040', '\164',
'\150', '\040', '\061', '\012', '\167', '\116', '\142', '\040',
'\167', '\141', '\040', '\061', '\012', '\146', '\122', '\143',
'\040', '\143', '\150', '\040', '\061', '\012', '\154', '\152',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\154',
'\166', '\131', '\040', '\154', '\145', '\040', '\061', '\012',
'\152', '\143', '\101', '\040', '\143', '\150', '\040', '\061',
'\012', '\144', '\107', '\167', '\040', '\144', '\145', '\040',
'\061', '\012', '\103', '\161', '\156', '\040', '\141', '\156',
'\040', '\061', '\012', '\155', '\102', '\170', '\040', '\155',
'\145', '\040', '\061', '\012', '\115', '\155', '\170', '\040',
'\155', '\145', '\040', '\061', '\012', '\126', '\170', '\141',
'\040', '\141', '\156', '\040', '\061', '\012', '\130', '\150',
'\167', '\040', '\164', '\150', '\040', '\061', '\012', '\145',
'\161', '\113', '\040', '\161', '\165', '\040', '\061', '\012',
'\164', '\103', '\167', '\040', '\164', '\150', '\040', '\061',
'\012', '\172', '\166', '\125', '\040', '\163', '\172', '\040',
'\061', '\012', '\154', '\170', '\121', '\040', '\154', '\145',
'\040', '\061', '\012', '\166', '\115', '\166', '\040', '\166',
'\141', '\040', '\061', '\012', '\147', '\161', '\101', '\040',
'\161', '\165', '\040', '\061', '\012', '\112', '\142', '\156',
'\040', '\141', '\156', '\040', '\061', '\012', '\147', '\103',
'\152', '\040', '\156', '\147', '\040', '\061', '\012', '\157',
'\124', '\146', '\040', '\157', '\156', '\040', '\061', '\012',
'\153', '\142', '\127', '\040', '\153', '\141', '\040', '\061',
'\012', '\161', '\152', '\131', '\040', '\161', '\165', '\040',
'\061', '\012', '\122', '\161', '\146', '\040', '\161', '\165',
'\040', '\061', '\012', '\150', '\131', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\171', '\150', '\105', '\040',
'\164', '\150', '\040', '\061', '\012', '\147', '\131', '\152',
'\040', '\156', '\147', '\040', '\061', '\012', '\152', '\143',
'\111', '\040', '\143', '\150', '\040', '\061', '\012', '\161',
'\166', '\112', '\040', '\161', '\165', '\040', '\061', '\012',
'\161', '\157', '\103', '\040', '\161', '\165', '\040', '\061',
'\012', '\161', '\106', '\143', '\040', '\143', '\150', '\040',
'\061', '\012', '\161', '\161', '\110', '\040', '\161', '\165',
'\040', '\061', '\012', '\116', '\170', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\167', '\126', '\157', '\040',
'\157', '\156', '\040', '\061', '\012', '\172', '\110', '\166',
'\040', '\163', '\172', '\040', '\061', '\012', '\171', '\142',
'\123', '\040', '\142', '\145', '\040', '\061', '\012', '\110',
'\167', '\143', '\040', '\143', '\150', '\040', '\061', '\012',
'\115', '\170', '\141', '\040', '\141', '\156', '\040', '\061',
'\012', '\170', '\153', '\114', '\040', '\153', '\141', '\040',
'\061', '\012', '\161', '\155', '\117', '\040', '\161', '\165',
'\040', '\061', '\012', '\161', '\142', '\122', '\040', '\161',
'\165', '\040', '\061', '\012', '\132', '\146', '\171', '\040',
'\156', '\171', '\040', '\061', '\012', '\122', '\153', '\146',
'\040', '\153', '\141', '\040', '\061', '\012', '\166', '\147',
'\126', '\040', '\156', '\147', '\040', '\061', '\012', '\150',
'\102', '\167', '\040', '\164', '\150', '\040', '\061', '\012',
'\160', '\130', '\170', '\040', '\160', '\162', '\040', '\061',
'\012', '\142', '\162', '\121', '\040', '\145', '\162', '\040',
'\061', '\012', '\146', '\166', '\117', '\040', '\166', '\141',
'\040', '\061', '\012', '\150', '\104', '\143', '\040', '\164',
'\150', '\040', '\061', '\012', '\170', '\121', '\141', '\040',
'\141', '\156', '\040', '\061', '\012', '\167', '\146', '\106',
'\040', '\167', '\141', '\040', '\061', '\012', '\150', '\132',
'\170', '\040', '\164', '\150', '\040', '\061', '\012', '\112',
'\147', '\172', '\040', '\156', '\147', '\040', '\061', '\012',
'\161', '\156', '\131', '\040', '\141', '\156', '\040', '\061',
'\012', '\161', '\130', '\154', '\040', '\154', '\145', '\040',
'\061', '\012', '\145', '\116', '\142', '\040', '\145', '\162',
'\040', '\061', '\012', '\146', '\170', '\123', '\040', '\146',
'\157', '\040', '\061', '\012', '\163', '\116', '\153', '\040',
'\163', '\164', '\040', '\061', '\012', '\155', '\106', '\143',
'\040', '\143', '\150', '\040', '\061', '\012', '\125', '\165',
'\170', '\040', '\161', '\165', '\040', '\061', '\012', '\131',
'\144', '\147', '\040', '\156', '\147', '\040', '\061', '\012',
'\157', '\172', '\127', '\040', '\157', '\156', '\040', '\061',
'\012', '\130', '\172', '\144', '\040', '\144', '\145', '\040',
'\061', '\012', '\112', '\146', '\145', '\040', '\145', '\162',
'\040', '\061', '\012', '\106', '\164', '\170', '\040', '\164',
'\150', '\040', '\061', '\012', '\166', '\172', '\122', '\040',
'\163', '\172', '\040', '\061', '\012', '\167', '\132', '\153',
'\040', '\153', '\141', '\040', '\061', '\012', '\157', '\110',
'\172', '\040', '\157', '\156', '\040', '\061', '\012', '\161',
'\166', '\124', '\040', '\161', '\165', '\040', '\061', '\012',
'\161', '\157', '\101', '\040', '\161', '\165', '\040', '\061',
'\012', '\123', '\144', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\164', '\170', '\127', '\040', '\164', '\150',
'\040', '\061', '\012', '\105', '\147', '\146', '\040', '\156',
'\147', '\040', '\061', '\012', '\144', '\115', '\146', '\040',
'\144', '\145', '\040', '\061', '\012', '\122', '\150', '\150',
'\040', '\164', '\150', '\040', '\061', '\012', '\166', '\122',
'\156', '\040', '\141', '\156', '\040', '\061', '\012', '\165',
'\152', '\130', '\040', '\161', '\165', '\040', '\061', '\012',
'\146', '\122', '\152', '\040', '\151', '\152', '\040', '\061',
'\012', '\147', '\152', '\101', '\040', '\156', '\147', '\040',
'\061', '\012', '\147', '\104', '\147', '\040', '\156', '\147',
'\040', '\061', '\012', '\163', '\155', '\132', '\040', '\163',
'\164', '\040', '\061', '\012', '\152', '\111', '\144', '\040',
'\144', '\145', '\040', '\061', '\012', '\161', '\153', '\115',
'\040', '\161', '\165', '\040', '\061', '\012', '\142', '\113',
'\172', '\040', '\163', '\172', '\040', '\061', '\012', '\163',
'\103', '\147', '\040', '\156', '\147', '\040', '\061', '\012',
'\165', '\124', '\160', '\040', '\161', '\165', '\040', '\061',
'\012', '\154', '\126', '\163', '\040', '\154', '\145', '\040',
'\061', '\012', '\165', '\121', '\157', '\040', '\161', '\165',
'\040', '\061', '\012', '\112', '\146', '\163', '\040', '\163',
'\164', '\040', '\061', '\012', '\166', '\113', '\155', '\040',
'\166', '\141', '\040', '\061', '\012', '\152', '\121', '\150',
'\040', '\164', '\150', '\040', '\061', '\012', '\146', '\125',
'\146', '\040', '\146', '\157', '\040', '\061', '\012', '\165',
'\124', '\146', '\040', '\161', '\165', '\040', '\061', '\012',
'\102', '\156', '\166', '\040', '\141', '\156', '\040', '\061',
'\012', '\164', '\144', '\125', '\040', '\164', '\150', '\040',
'\061', '\012', '\144', '\170', '\131', '\040', '\144', '\145',
'\040', '\061', '\012', '\150', '\147', '\126', '\040', '\164',
'\150', '\040', '\061', '\012', '\132', '\144', '\146', '\040',
'\144', '\145', '\040', '\061', '\012', '\150', '\161', '\123',
'\040', '\164', '\150', '\040', '\061', '\012', '\145', '\112',
'\147', '\040', '\156', '\147', '\040', '\061', '\012', '\161',
'\107', '\165', '\040', '\165', '\156', '\040', '\061', '\012',
'\166', '\155', '\105', '\040', '\166', '\141', '\040', '\061',
'\012', '\147', '\113', '\172', '\040', '\156', '\147', '\040',
'\061', '\012', '\155', '\125', '\147', '\040', '\156', '\147',
'\040', '\061', '\012', '\126', '\152', '\171', '\040', '\151',
'\152', '\040', '\061', '\012', '\165', '\166', '\112', '\040',
'\161', '\165', '\040', '\061', '\012', '\155', '\110', '\162',
'\040', '\145', '\162', '\040', '\061', '\012', '\115', '\150',
'\166', '\040', '\164', '\150', '\040', '\061', '\012', '\172',
'\163', '\132', '\040', '\163', '\164', '\040', '\061', '\012',
'\126', '\172', '\171', '\040', '\163', '\172', '\040', '\061',
'\012', '\152', '\113', '\142', '\040', '\151', '\152', '\040',
'\061', '\012', '\172', '\120', '\160', '\040', '\163', '\172',
'\040', '\061', '\012', '\161', '\147', '\104', '\040', '\161',
'\165', '\040', '\061', '\012', '\130', '\150', '\146', '\040',
'\164', '\150', '\040', '\061', '\012', '\117', '\147', '\160',
'\040', '\156', '\147', '\040', '\061', '\012', '\152', '\167',
'\130', '\040', '\151', '\152', '\040', '\061', '\012', '\154',
'\131', '\171', '\040', '\154', '\145', '\040', '\061', '\012',
'\161', '\172', '\104', '\040', '\161', '\165', '\040', '\061',
'\012', '\167', '\130', '\152', '\040', '\152', '\157', '\040',
'\061', '\012', '\113', '\160', '\170', '\040', '\160', '\162',
'\040', '\061', '\012', '\171', '\144', '\131', '\040', '\144',
'\145', '\040', '\061', '\012', '\166', '\102', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\132', '\160', '\160',
'\040', '\160', '\162', '\040', '\061', '\012', '\142', '\104',
'\144', '\040', '\144', '\145', '\040', '\061', '\012', '\106',
'\152', '\153', '\040', '\151', '\152', '\040', '\061', '\012',
'\153', '\144', '\101', '\040', '\144', '\145', '\040', '\061',
'\012', '\172', '\127', '\164', '\040', '\164', '\150', '\040',
'\061', '\012', '\167', '\123', '\144', '\040', '\144', '\145',
'\040', '\061', '\012', '\153', '\106', '\144', '\040', '\144',
'\145', '\040', '\061', '\012', '\123', '\170', '\154', '\040',
'\154', '\145', '\040', '\061', '\012', '\106', '\166', '\150',
'\040', '\164', '\150', '\040', '\061', '\012', '\160', '\142',
'\122', '\040', '\160', '\162', '\040', '\061', '\012', '\161',
'\162', '\104', '\040', '\161', '\165', '\040', '\061', '\012',
'\166', '\132', '\163', '\040', '\163', '\164', '\040', '\061',
'\012', '\166', '\125', '\155', '\040', '\166', '\141', '\040',
'\061', '\012', '\167', '\105', '\171', '\040', '\167', '\141',
'\040', '\061', '\012', '\152', '\152', '\110', '\040', '\152',
'\157', '\040', '\061', '\012', '\163', '\104', '\147', '\040',
'\156', '\147', '\040', '\061', '\012', '\125', '\152', '\143',
'\040', '\143', '\150', '\040', '\061', '\012', '\153', '\156',
'\111', '\040', '\141', '\156', '\040', '\061', '\012', '\146',
'\117', '\141', '\040', '\141', '\156', '\040', '\061', '\012',
'\103', '\152', '\147', '\040', '\156', '\147', '\040', '\061',
'\012', '\164', '\142', '\126', '\040', '\164', '\150', '\040',
'\061', '\012', '\147', '\161', '\144', '\040', '\161', '\165',
'\040', '\061', '\012', '\145', '\120', '\170', '\040', '\145',
'\162', '\040', '\061', '\012', '\167', '\122', '\155', '\040',
'\155', '\145', '\040', '\061', '\012', '\160', '\166', '\107',
'\040', '\166', '\141', '\040', '\061', '\012', '\121', '\171',
'\154', '\040', '\154', '\145', '\040', '\061', '\012', '\143',
'\167', '\107', '\040', '\143', '\150', '\040', '\061', '\012',
'\104', '\164', '\161', '\040', '\164', '\150', '\040', '\061',
'\012', '\120', '\142', '\172', '\040', '\163', '\172', '\040',
'\061', '\012', '\122', '\147', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\146', '\152', '\125', '\040', '\151',
'\152', '\040', '\061', '\012', '\152', '\112', '\146', '\040',
'\151', '\152', '\040', '\061', '\012', '\122', '\170', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\112', '\164',
'\170', '\040', '\164', '\150', '\040', '\061', '\012', '\161',
'\166', '\132', '\040', '\161', '\165', '\040', '\061', '\012',
'\153', '\113', '\155', '\040', '\153', '\141', '\040', '\061',
'\012', '\150', '\106', '\155', '\040', '\164', '\150', '\040',
'\061', '\012', '\153', '\143', '\130', '\040', '\143', '\150',
'\040', '\061', '\012', '\146', '\116', '\155', '\040', '\155',
'\145', '\040', '\061', '\012', '\142', '\160', '\102', '\040',
'\160', '\162', '\040', '\061', '\012', '\170', '\161', '\131',
'\040', '\161', '\165', '\040', '\061', '\012', '\150', '\131',
'\171', '\040', '\164', '\150', '\040', '\061', '\012', '\147',
'\107', '\160', '\040', '\156', '\147', '\040', '\061', '\012',
'\126', '\146', '\163', '\040', '\163', '\164', '\040', '\061',
'\012', '\167', '\104', '\164', '\040', '\164', '\150', '\040',
'\061', '\012', '\142', '\124', '\163', '\040', '\163', '\164',
'\040', '\061', '\012', '\150', '\146', '\126', '\040', '\164',
'\150', '\040', '\061', '\012', '\161', '\172', '\160', '\040',
'\161', '\165', '\040', '\061', '\012', '\171', '\125', '\166',
'\040', '\166', '\141', '\040', '\061', '\012', '\161', '\107',
'\143', '\040', '\143', '\150', '\040', '\061', '\012', '\126',
'\144', '\154', '\040', '\154', '\145', '\040', '\061', '\012',
'\130', '\152', '\164', '\040', '\164', '\150', '\040', '\061',
'\012', '\153', '\115', '\152', '\040', '\151', '\152', '\040',
'\061', '\012', '\150', '\124', '\147', '\040', '\164', '\150',
'\040', '\061', '\012', '\110', '\154', '\143', '\040', '\143',
'\150', '\040', '\061', '\012', '\164', '\113', '\172', '\040',
'\164', '\150', '\040', '\061', '\012', '\127', '\166', '\164',
'\040', '\164', '\150', '\040', '\061', '\012', '\154', '\115',
'\172', '\040', '\154', '\145', '\040', '\061', '\012', '\115',
'\167', '\170', '\040', '\167', '\141', '\040', '\061', '\012',
'\127', '\154', '\166', '\040', '\154', '\145', '\040', '\061',
'\012', '\170', '\172', '\107', '\040', '\163', '\172', '\040',
'\061', '\012', '\147', '\155', '\104', '\040', '\156', '\147',
'\040', '\061', '\012', '\172', '\117', '\151', '\040', '\151',
'\156', '\040', '\061', '\012', '\142', '\142', '\111', '\040',
'\142', '\145', '\040', '\061', '\012', '\142', '\160', '\111',
'\040', '\160', '\162', '\040', '\061', '\012', '\146', '\121',
'\147', '\040', '\156', '\147', '\040', '\061', '\012', '\160',
'\121', '\166', '\040', '\166', '\141', '\040', '\061', '\012',
'\166', '\105', '\142', '\040', '\166', '\141', '\040', '\061',
'\012', '\152', '\106', '\172', '\040', '\163', '\172', '\040',
'\061', '\012', '\127', '\150', '\146', '\040', '\164', '\150',
'\040', '\061', '\012', '\152', '\166', '\121', '\040', '\151',
'\152', '\040', '\061', '\012', '\161', '\131', '\170', '\040',
'\161', '\165', '\040', '\061', '\012', '\162', '\170', '\115',
'\040', '\145', '\162', '\040', '\061', '\012', '\166', '\120',
'\160', '\040', '\166', '\141', '\040', '\061', '\012', '\146',
'\152', '\104', '\040', '\151', '\152', '\040', '\061', '\012',
'\126', '\167', '\171', '\040', '\167', '\141', '\040', '\061',
'\012', '\131', '\161', '\143', '\040', '\143', '\150', '\040',
'\061', '\012', '\164', '\143', '\127', '\040', '\164', '\150',
'\040', '\061', '\012', '\152', '\131', '\147', '\040', '\156',
'\147', '\040', '\061', '\012', '\147', '\112', '\142', '\040',
'\156', '\147', '\040', '\061', '\012', '\124', '\153', '\143',
'\040', '\143', '\150', '\040', '\061', '\012', '\161', '\150',
'\152', '\040', '\164', '\150', '\040', '\061', '\012', '\152',
'\170', '\106', '\040', '\151', '\152', '\040', '\061', '\012',
'\106', '\160', '\172', '\040', '\163', '\172', '\040', '\061',
'\012', '\153', '\130', '\150', '\040', '\164', '\150', '\040',
'\061', '\012', '\154', '\147', '\132', '\040', '\156', '\147',
'\040', '\061', '\012', '\172', '\156', '\111', '\040', '\141',
'\156', '\040', '\061', '\012', '\161', '\171', '\116', '\040',
'\161', '\165', '\040', '\061', '\012', '\166', '\102', '\152',
'\040', '\151', '\152', '\040', '\061', '\012', '\152', '\123',
'\170', '\040', '\151', '\152', '\040', '\061', '\012', '\143',
'\161', '\111', '\040', '\143', '\150', '\040', '\061', '\012',
'\161', '\131', '\166', '\040', '\161', '\165', '\040', '\061',
'\012', '\132', '\162', '\162', '\040', '\145', '\162', '\040',
'\061', '\012', '\163', '\110', '\162', '\040', '\145', '\162',
'\040', '\061', '\012', '\166', '\162', '\113', '\040', '\145',
'\162', '\040', '\061', '\012', '\160', '\142', '\110', '\040',
'\160', '\162', '\040', '\061', '\012', '\172', '\126', '\150',
'\040', '\164', '\150', '\040', '\061', '\012', '\144', '\121',
'\142', '\040', '\144', '\145', '\040', '\061', '\012', '\154',
'\170', '\106', '\040', '\154', '\145', '\040', '\061', '\012',
'\163', '\147', '\127', '\040', '\156', '\147', '\040', '\061',
'\012', '\107', '\150', '\146', '\040', '\164', '\150', '\040',
'\061', '\012', '\170', '\160', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\161', '\150', '\116', '\040', '\164',
'\150', '\040', '\061', '\012', '\106', '\163', '\146', '\040',
'\163', '\164', '\040', '\061', '\012', '\121', '\147', '\141',
'\040', '\141', '\156', '\040', '\061', '\012', '\122', '\144',
'\160', '\040', '\144', '\145', '\040', '\061', '\012', '\146',
'\166', '\113', '\040', '\166', '\141', '\040', '\061', '\012',
'\131', '\144', '\172', '\040', '\144', '\145', '\040', '\061',
'\012', '\167', '\166', '\127', '\040', '\166', '\141', '\040',
'\061', '\012', '\143', '\120', '\155', '\040', '\143', '\150',
'\040', '\061', '\012', '\143', '\121', '\171', '\040', '\143',
'\150', '\040', '\061', '\012', '\171', '\167', '\106', '\040',
'\167', '\141', '\040', '\061', '\012', '\131', '\160', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\122', '\163',
'\152', '\040', '\163', '\164', '\040', '\061', '\012', '\131',
'\147', '\167', '\040', '\156', '\147', '\040', '\061', '\012',
'\170', '\126', '\160', '\040', '\160', '\162', '\040', '\061',
'\012', '\171', '\170', '\114', '\040', '\156', '\171', '\040',
'\061', '\012', '\131', '\167', '\154', '\040', '\154', '\145',
'\040', '\061', '\012', '\152', '\115', '\143', '\040', '\143',
'\150', '\040', '\061', '\012', '\172', '\124', '\154', '\040',
'\154', '\145', '\040', '\061', '\012', '\141', '\111', '\161',
'\040', '\141', '\156', '\040', '\061', '\012', '\161', '\121',
'\151', '\040', '\161', '\165', '\040', '\061', '\012', '\164',
'\161', '\111', '\040', '\164', '\150', '\040', '\061', '\012',
'\110', '\166', '\160', '\040', '\166', '\141', '\040', '\061',
'\012', '\167', '\121', '\144', '\040', '\144', '\145', '\040',
'\061', '\012', '\150', '\146', '\107', '\040', '\164', '\150',
'\040', '\061', '\012', '\143', '\124', '\144', '\040', '\143',
'\150', '\040', '\061', '\012', '\142', '\146', '\121', '\040',
'\142', '\145', '\040', '\061', '\012', '\113', '\146', '\144',
'\040', '\144', '\145', '\040', '\061', '\012', '\143', '\130',
'\163', '\040', '\143', '\150', '\040', '\061', '\012', '\166',
'\131', '\170', '\040', '\166', '\141', '\040', '\061', '\012',
'\121', '\157', '\143', '\040', '\162', '\157', '\040', '\061',
'\012', '\166', '\162', '\114', '\040', '\145', '\162', '\040',
'\061', '\012', '\160', '\132', '\153', '\040', '\153', '\141',
'\040', '\061', '\012', '\143', '\144', '\130', '\040', '\143',
'\150', '\040', '\061', '\012', '\131', '\147', '\156', '\040',
'\141', '\156', '\040', '\061', '\012', '\154', '\156', '\117',
'\040', '\141', '\156', '\040', '\061', '\012', '\155', '\146',
'\131', '\040', '\155', '\145', '\040', '\061', '\012', '\146',
'\156', '\126', '\040', '\141', '\156', '\040', '\061', '\012',
'\155', '\142', '\132', '\040', '\155', '\145', '\040', '\061',
'\012', '\147', '\142', '\105', '\040', '\156', '\147', '\040',
'\061', '\012', '\170', '\152', '\132', '\040', '\151', '\152',
'\040', '\061', '\012', '\106', '\160', '\171', '\040', '\160',
'\162', '\040', '\061', '\012', '\156', '\160', '\105', '\040',
'\141', '\156', '\040', '\061', '\012', '\122', '\170', '\171',
'\040', '\156', '\171', '\040', '\061', '\012', '\157', '\127',
'\160', '\040', '\157', '\156', '\040', '\061', '\012', '\150',
'\126', '\150', '\040', '\164', '\150', '\040', '\061', '\012',
'\171', '\112', '\146', '\040', '\156', '\171', '\040', '\061',
'\012', '\163', '\121', '\144', '\040', '\163', '\164', '\040',
'\061', '\012', '\132', '\166', '\147', '\040', '\156', '\147',
'\040', '\061', '\012', '\142', '\104', '\155', '\040', '\155',
'\145', '\040', '\061', '\012', '\160', '\114', '\166', '\040',
'\166', '\141', '\040', '\061', '\012', '\167', '\167', '\106',
'\040', '\167', '\141', '\040', '\061', '\012', '\170', '\102',
'\150', '\040', '\164', '\150', '\040', '\061', '\012', '\161',
'\113', '\155', '\040', '\161', '\165', '\040', '\061', '\012',
'\167', '\130', '\170', '\040', '\167', '\141', '\040', '\061',
'\012', '\111', '\165', '\170', '\040', '\161', '\165', '\040',
'\061', '\012', '\144', '\147', '\102', '\040', '\156', '\147',
'\040', '\061', '\012', '\147', '\112', '\160', '\040', '\156',
'\147', '\040', '\061', '\012', '\161', '\147', '\170', '\040',
'\161', '\165', '\040', '\061', '\012', '\146', '\116', '\150',
'\040', '\150', '\157', '\040', '\061', '\012', '\143', '\166',
'\105', '\040', '\143', '\150', '\040', '\061', '\012', '\143',
'\147', '\110', '\040', '\143', '\150', '\040', '\061', '\012',
'\154', '\116', '\163', '\040', '\154', '\145', '\040', '\061',
'\012', '\166', '\104', '\152', '\040', '\151', '\152', '\040',
'\061', '\012', '\172', '\143', '\107', '\040', '\143', '\150',
'\040', '\061', '\012', '\146', '\132', '\156', '\040', '\157',
'\156', '\040', '\061', '\012', '\165', '\125', '\170', '\040',
'\161', '\165', '\040', '\061', '\012', '\143', '\154', '\121',
'\040', '\154', '\145', '\040', '\061', '\012', '\146', '\144',
'\110', '\040', '\144', '\145', '\040', '\061', '\012', '\145',
'\132', '\152', '\040', '\145', '\162', '\040', '\061', '\012',
'\126', '\161', '\143', '\040', '\143', '\150', '\040', '\061',
'\012', '\122', '\143', '\170', '\040', '\143', '\150', '\040',
'\061', '\012', '\152', '\107', '\150', '\040', '\164', '\150',
'\040', '\061', '\012', '\161', '\172', '\115', '\040', '\163',
'\172', '\040', '\061', '\012', '\121', '\160', '\167', '\040',
'\160', '\162', '\040', '\061', '\012', '\123', '\160', '\170',
'\040', '\160', '\162', '\040', '\061', '\012', '\143', '\107',
'\170', '\040', '\143', '\150', '\040', '\061', '\012', '\143',
'\161', '\101', '\040', '\143', '\150', '\040', '\061', '\012',
'\166', '\142', '\113', '\040', '\166', '\141', '\040', '\061',
'\012', '\170', '\145', '\127', '\040', '\145', '\162', '\040',
'\061', '\012', '\166', '\153', '\103', '\040', '\153', '\141',
'\040', '\061', '\012', '\170', '\172', '\102', '\040', '\163',
'\172', '\040', '\061', '\012', '\170', '\165', '\122', '\040',
'\161', '\165', '\040', '\061', '\012', '\117', '\171', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\115', '\161',
'\170', '\040', '\161', '\165', '\040', '\061', '\012', '\161',
'\161', '\152', '\040', '\161', '\165', '\040', '\061', '\012',
'\171', '\161', '\131', '\040', '\161', '\165', '\040', '\061',
'\012', '\143', '\167', '\114', '\040', '\143', '\150', '\040',
'\061', '\012', '\160', '\120', '\164', '\040', '\164', '\150',
'\040', '\061', '\012', '\144', '\123', '\170', '\040', '\144',
'\145', '\040', '\061', '\012', '\144', '\120', '\153', '\040',
'\144', '\145', '\040', '\061', '\012', '\165', '\172', '\110',
'\040', '\161', '\165', '\040', '\061', '\012', '\146', '\166',
'\110', '\040', '\166', '\141', '\040', '\061', '\012', '\160',
'\143', '\110', '\040', '\143', '\150', '\040', '\061', '\012',
'\150', '\154', '\131', '\040', '\154', '\145', '\040', '\061',
'\012', '\161', '\164', '\130', '\040', '\164', '\150', '\040',
'\061', '\012', '\116', '\166', '\163', '\040', '\163', '\164',
'\040', '\061', '\012', '\150', '\166', '\114', '\040', '\164',
'\150', '\040', '\061', '\012', '\172', '\122', '\153', '\040',
'\163', '\172', '\040', '\061', '\012', '\164', '\116', '\152',
'\040', '\164', '\150', '\040', '\061', '\012', '\104', '\142',
'\166', '\040', '\166', '\141', '\040', '\061', '\012', '\152',
'\113', '\143', '\040', '\143', '\150', '\040', '\061', '\012',
'\144', '\113', '\171', '\040', '\144', '\145', '\040', '\061',
'\012', '\171', '\126', '\172', '\040', '\163', '\172', '\040',
'\061', '\012', '\151', '\161', '\112', '\040', '\161', '\165',
'\040', '\061', '\012', '\172', '\147', '\112', '\040', '\156',
'\147', '\040', '\061', '\012', '\145', '\112', '\163', '\040',
'\145', '\162', '\040', '\061', '\012', '\167', '\117', '\170',
'\040', '\167', '\141', '\040', '\061', '\012', '\162', '\130',
'\150', '\040', '\164', '\150', '\040', '\061', '\012', '\110',
'\161', '\160', '\040', '\161', '\165', '\040', '\061', '\012',
'\166', '\127', '\170', '\040', '\166', '\141', '\040', '\061',
'\012', '\142', '\124', '\164', '\040', '\164', '\150', '\040',
'\061', '\012', '\146', '\103', '\171', '\040', '\156', '\171',
'\040', '\061', '\012', '\141', '\117', '\161', '\040', '\141',
'\156', '\040', '\061', '\012', '\157', '\103', '\147', '\040',
'\156', '\147', '\040', '\061', '\012', '\160', '\156', '\105',
'\040', '\141', '\156', '\040', '\061', '\012', '\106', '\167',
'\143', '\040', '\143', '\150', '\040', '\061', '\012', '\172',
'\162', '\124', '\040', '\145', '\162', '\040', '\061', '\012',
'\170', '\110', '\163', '\040', '\163', '\164', '\040', '\061',
'\012', '\171', '\144', '\130', '\040', '\144', '\145', '\040',
'\061', '\012', '\144', '\153', '\126', '\040', '\144', '\145',
'\040', '\061', '\012', '\122', '\161', '\171', '\040', '\161',
'\165', '\040', '\061', '\012', '\132', '\171', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\153', '\130', '\154',
'\040', '\154', '\145', '\040', '\061', '\012', '\157', '\112',
'\164', '\040', '\164', '\150', '\040', '\061', '\012', '\163',
'\170', '\111', '\040', '\163', '\164', '\040', '\061', '\012',
'\161', '\132', '\167', '\040', '\161', '\165', '\040', '\061',
'\012', '\172', '\161', '\170', '\040', '\161', '\165', '\040',
'\061', '\012', '\143', '\154', '\132', '\040', '\143', '\150',
'\040', '\061', '\012', '\163', '\167', '\130', '\040', '\163',
'\172', '\040', '\061', '\012', '\141', '\110', '\167', '\040',
'\141', '\156', '\040', '\061', '\012', '\162', '\127', '\143',
'\040', '\143', '\150', '\040', '\061', '\012', '\143', '\121',
'\160', '\040', '\143', '\150', '\040', '\061', '\012', '\112',
'\167', '\152', '\040', '\151', '\152', '\040', '\061', '\012',
'\161', '\145', '\126', '\040', '\161', '\165', '\040', '\061',
'\012', '\163', '\121', '\152', '\040', '\163', '\164', '\040',
'\061', '\012', '\122', '\160', '\142', '\040', '\160', '\162',
'\040', '\061', '\012', '\155', '\132', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\162', '\102', '\170', '\040',
'\145', '\162', '\040', '\061', '\012', '\155', '\170', '\126',
'\040', '\155', '\145', '\040', '\061', '\012', '\115', '\166',
'\171', '\040', '\156', '\171', '\040', '\061', '\012', '\143',
'\122', '\154', '\040', '\143', '\150', '\040', '\061', '\012',
'\106', '\172', '\166', '\040', '\163', '\172', '\040', '\061',
'\012', '\160', '\102', '\163', '\040', '\163', '\172', '\040',
'\061', '\012', '\152', '\127', '\163', '\040', '\163', '\164',
'\040', '\061', '\012', '\166', '\161', '\113', '\040', '\161',
'\165', '\040', '\061', '\012', '\111', '\170', '\154', '\040',
'\154', '\145', '\040', '\061', '\012', '\171', '\150', '\167',
'\040', '\164', '\150', '\040', '\061', '\012', '\167', '\171',
'\121', '\040', '\167', '\141', '\040', '\061', '\012', '\165',
'\103', '\142', '\040', '\161', '\165', '\040', '\061', '\012',
'\172', '\162', '\106', '\040', '\163', '\172', '\040', '\061',
'\012', '\151', '\171', '\121', '\040', '\151', '\156', '\040',
'\061', '\012', '\161', '\163', '\120', '\040', '\161', '\165',
'\040', '\061', '\012', '\150', '\114', '\162', '\040', '\145',
'\162', '\040', '\061', '\012', '\143', '\166', '\130', '\040',
'\143', '\150', '\040', '\061', '\012', '\123', '\143', '\161',
'\040', '\143', '\150', '\040', '\061', '\012', '\172', '\162',
'\114', '\040', '\145', '\162', '\040', '\061', '\012', '\145',
'\143', '\125', '\040', '\143', '\150', '\040', '\061', '\012',
'\126', '\170', '\172', '\040', '\163', '\172', '\040', '\061',
'\012', '\146', '\103', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\157', '\166', '\130', '\040', '\157', '\156',
'\040', '\061', '\012', '\125', '\161', '\156', '\040', '\141',
'\156', '\040', '\061', '\012', '\163', '\126', '\167', '\040',
'\163', '\164', '\040', '\061', '\012', '\163', '\160', '\130',
'\040', '\163', '\164', '\040', '\061', '\012', '\121', '\153',
'\166', '\040', '\153', '\141', '\040', '\061', '\012', '\146',
'\171', '\127', '\040', '\156', '\171', '\040', '\061', '\012',
'\162', '\102', '\143', '\040', '\143', '\150', '\040', '\061',
'\012', '\155', '\144', '\103', '\040', '\144', '\145', '\040',
'\061', '\012', '\127', '\152', '\153', '\040', '\151', '\152',
'\040', '\061', '\012', '\152', '\131', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\150', '\130', '\161', '\040',
'\164', '\150', '\040', '\061', '\012', '\170', '\153', '\155',
'\040', '\153', '\141', '\040', '\061', '\012', '\150', '\150',
'\125', '\040', '\164', '\150', '\040', '\061', '\012', '\104',
'\166', '\172', '\040', '\163', '\172', '\040', '\061', '\012',
'\164', '\143', '\161', '\040', '\164', '\150', '\040', '\061',
'\012', '\167', '\132', '\171', '\040', '\167', '\141', '\040',
'\061', '\012', '\152', '\164', '\103', '\040', '\164', '\150',
'\040', '\061', '\012', '\161', '\156', '\104', '\040', '\141',
'\156', '\040', '\061', '\012', '\166', '\155', '\102', '\040',
'\166', '\141', '\040', '\061', '\012', '\153', '\152', '\102',
'\040', '\151', '\152', '\040', '\061', '\012', '\143', '\144',
'\107', '\040', '\143', '\150', '\040', '\061', '\012', '\126',
'\153', '\164', '\040', '\164', '\150', '\040', '\061', '\012',
'\150', '\116', '\161', '\040', '\164', '\150', '\040', '\061',
'\012', '\112', '\146', '\164', '\040', '\164', '\150', '\040',
'\061', '\012', '\151', '\127', '\166', '\040', '\151', '\156',
'\040', '\061', '\012', '\127', '\164', '\156', '\040', '\164',
'\150', '\040', '\061', '\012', '\154', '\146', '\105', '\040',
'\154', '\145', '\040', '\061', '\012', '\144', '\132', '\142',
'\040', '\144', '\145', '\040', '\061', '\012', '\145', '\161',
'\121', '\040', '\161', '\165', '\040', '\061', '\012', '\147',
'\125', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\161', '\167', '\114', '\040', '\161', '\165', '\040', '\061',
'\012', '\150', '\125', '\161', '\040', '\164', '\150', '\040',
'\061', '\012', '\150', '\107', '\143', '\040', '\164', '\150',
'\040', '\061', '\012', '\156', '\167', '\130', '\040', '\141',
'\156', '\040', '\061', '\012', '\116', '\142', '\164', '\040',
'\164', '\150', '\040', '\061', '\012', '\152', '\152', '\120',
'\040', '\151', '\152', '\040', '\061', '\012', '\163', '\161',
'\112', '\040', '\161', '\165', '\040', '\061', '\012', '\154',
'\121', '\146', '\040', '\154', '\145', '\040', '\061', '\012',
'\152', '\132', '\172', '\040', '\163', '\172', '\040', '\061',
'\012', '\167', '\127', '\156', '\040', '\141', '\156', '\040',
'\061', '\012', '\115', '\170', '\165', '\040', '\161', '\165',
'\040', '\061', '\012', '\161', '\106', '\151', '\040', '\161',
'\165', '\040', '\061', '\012', '\155', '\152', '\130', '\040',
'\151', '\152', '\040', '\061', '\012', '\166', '\104', '\170',
'\040', '\166', '\141', '\040', '\061', '\012', '\166', '\104',
'\156', '\040', '\141', '\156', '\040', '\061', '\012', '\167',
'\125', '\143', '\040', '\143', '\150', '\040', '\061', '\012',
'\172', '\150', '\125', '\040', '\164', '\150', '\040', '\061',
'\012', '\172', '\110', '\167', '\040', '\163', '\172', '\040',
'\061', '\012', '\124', '\152', '\154', '\040', '\154', '\145',
'\040', '\061', '\012', '\170', '\165', '\130', '\040', '\161',
'\165', '\040', '\061', '\012', '\152', '\132', '\160', '\040',
'\151', '\152', '\040', '\061', '\012', '\167', '\126', '\143',
'\040', '\143', '\150', '\040', '\061', '\012', '\147', '\106',
'\160', '\040', '\156', '\147', '\040', '\061', '\012', '\107',
'\171', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\112', '\154', '\150', '\040', '\164', '\150', '\040', '\061',
'\012', '\102', '\153', '\146', '\040', '\153', '\141', '\040',
'\061', '\012', '\150', '\150', '\112', '\040', '\164', '\150',
'\040', '\061', '\012', '\164', '\166', '\127', '\040', '\164',
'\150', '\040', '\061', '\012', '\142', '\111', '\171', '\040',
'\156', '\171', '\040', '\061', '\012', '\114', '\154', '\147',
'\040', '\156', '\147', '\040', '\061', '\012', '\172', '\112',
'\172', '\040', '\163', '\172', '\040', '\061', '\012', '\161',
'\145', '\121', '\040', '\161', '\165', '\040', '\061', '\012',
'\156', '\154', '\130', '\040', '\141', '\156', '\040', '\061',
'\012', '\164', '\143', '\121', '\040', '\164', '\150', '\040',
'\061', '\012', '\161', '\164', '\125', '\040', '\164', '\150',
'\040', '\061', '\012', '\146', '\153', '\127', '\040', '\153',
'\141', '\040', '\061', '\012', '\147', '\112', '\153', '\040',
'\156', '\147', '\040', '\061', '\012', '\147', '\121', '\171',
'\040', '\156', '\147', '\040', '\061', '\012', '\163', '\120',
'\172', '\040', '\163', '\164', '\040', '\061', '\012', '\142',
'\155', '\117', '\040', '\155', '\145', '\040', '\061', '\012',
'\131', '\164', '\170', '\040', '\164', '\150', '\040', '\061',
'\012', '\171', '\161', '\106', '\040', '\161', '\165', '\040',
'\061', '\012', '\151', '\102', '\153', '\040', '\151', '\156',
'\040', '\061', '\012', '\165', '\172', '\126', '\040', '\161',
'\165', '\040', '\061', '\012', '\170', '\116', '\160', '\040',
'\160', '\162', '\040', '\061', '\012', '\172', '\122', '\172',
'\040', '\163', '\172', '\040', '\061', '\012', '\161', '\110',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\171',
'\165', '\131', '\040', '\161', '\165', '\040', '\061', '\012',
'\152', '\161', '\150', '\040', '\164', '\150', '\040', '\061',
'\012', '\170', '\102', '\144', '\040', '\144', '\145', '\040',
'\061', '\012', '\166', '\166', '\101', '\040', '\166', '\141',
'\040', '\061', '\012', '\145', '\126', '\152', '\040', '\145',
'\162', '\040', '\061', '\012', '\172', '\107', '\160', '\040',
'\163', '\172', '\040', '\061', '\012', '\166', '\143', '\102',
'\040', '\143', '\150', '\040', '\061', '\012', '\153', '\160',
'\110', '\040', '\153', '\141', '\040', '\061', '\012', '\155',
'\104', '\167', '\040', '\155', '\145', '\040', '\061', '\012',
'\166', '\165', '\107', '\040', '\161', '\165', '\040', '\061',
'\012', '\166', '\126', '\171', '\040', '\156', '\171', '\040',
'\061', '\012', '\155', '\172', '\123', '\040', '\163', '\172',
'\040', '\061', '\012', '\152', '\166', '\115', '\040', '\151',
'\152', '\040', '\061', '\012', '\163', '\146', '\126', '\040',
'\163', '\164', '\040', '\061', '\012', '\150', '\121', '\161',
'\040', '\164', '\150', '\040', '\061', '\012', '\167', '\124',
'\155', '\040', '\155', '\145', '\040', '\061', '\012', '\120',
'\154', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\146', '\170', '\112', '\040', '\146', '\157', '\040', '\061',
'\012', '\161', '\121', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\106', '\156', '\167', '\040', '\141', '\156',
'\040', '\061', '\012', '\161', '\112', '\157', '\040', '\161',
'\165', '\040', '\061', '\012', '\116', '\163', '\147', '\040',
'\156', '\147', '\040', '\061', '\012', '\114', '\152', '\170',
'\040', '\151', '\152', '\040', '\061', '\012', '\163', '\122',
'\142', '\040', '\163', '\164', '\040', '\061', '\012', '\160',
'\143', '\131', '\040', '\143', '\150', '\040', '\061', '\012',
'\166', '\126', '\155', '\040', '\166', '\141', '\040', '\061',
'\012', '\163', '\121', '\147', '\040', '\156', '\147', '\040',
'\061', '\012', '\131', '\167', '\172', '\040', '\163', '\172',
'\040', '\061', '\012', '\150', '\161', '\112', '\040', '\164',
'\150', '\040', '\061', '\012', '\163', '\152', '\113', '\040',
'\163', '\164', '\040', '\061', '\012', '\132', '\153', '\163',
'\040', '\163', '\164', '\040', '\061', '\012', '\115', '\152',
'\164', '\040', '\164', '\150', '\040', '\061', '\012', '\104',
'\167', '\150', '\040', '\164', '\150', '\040', '\061', '\012',
'\167', '\142', '\116', '\040', '\167', '\141', '\040', '\061',
'\012', '\155', '\166', '\113', '\040', '\166', '\141', '\040',
'\061', '\012', '\162', '\114', '\160', '\040', '\145', '\162',
'\040', '\061', '\012', '\114', '\142', '\155', '\040', '\155',
'\145', '\040', '\061', '\012', '\167', '\152', '\117', '\040',
'\151', '\152', '\040', '\061', '\012', '\154', '\121', '\172',
'\040', '\154', '\145', '\040', '\061', '\012', '\113', '\167',
'\146', '\040', '\167', '\141', '\040', '\061', '\012', '\161',
'\155', '\102', '\040', '\161', '\165', '\040', '\061', '\012',
'\130', '\142', '\166', '\040', '\166', '\141', '\040', '\061',
'\012', '\143', '\113', '\161', '\040', '\143', '\150', '\040',
'\061', '\012', '\150', '\161', '\122', '\040', '\164', '\150',
'\040', '\061', '\012', '\171', '\126', '\142', '\040', '\142',
'\145', '\040', '\061', '\012', '\170', '\143', '\106', '\040',
'\143', '\150', '\040', '\061', '\012', '\105', '\167', '\166',
'\040', '\166', '\141', '\040', '\061', '\012', '\107', '\160',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\107',
'\142', '\150', '\040', '\164', '\150', '\040', '\061', '\012',
'\171', '\110', '\152', '\040', '\151', '\152', '\040', '\061',
'\012', '\147', '\130', '\153', '\040', '\156', '\147', '\040',
'\061', '\012', '\161', '\117', '\170', '\040', '\161', '\165',
'\040', '\061', '\012', '\113', '\142', '\167', '\040', '\167',
'\141', '\040', '\061', '\012', '\161', '\110', '\170', '\040',
'\161', '\165', '\040', '\061', '\012', '\167', '\152', '\120',
'\040', '\151', '\152', '\040', '\061', '\012', '\152', '\121',
'\154', '\040', '\154', '\145', '\040', '\061', '\012', '\106',
'\146', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\157', '\131', '\142', '\040', '\157', '\156', '\040', '\061',
'\012', '\106', '\161', '\157', '\040', '\161', '\165', '\040',
'\061', '\012', '\167', '\130', '\172', '\040', '\163', '\172',
'\040', '\061', '\012', '\146', '\111', '\160', '\040', '\160',
'\162', '\040', '\061', '\012', '\160', '\115', '\146', '\040',
'\160', '\162', '\040', '\061', '\012', '\156', '\161', '\120',
'\040', '\141', '\156', '\040', '\061', '\012', '\142', '\142',
'\132', '\040', '\142', '\145', '\040', '\061', '\012', '\150',
'\163', '\130', '\040', '\164', '\150', '\040', '\061', '\012',
'\127', '\152', '\162', '\040', '\145', '\162', '\040', '\061',
'\012', '\132', '\161', '\156', '\040', '\141', '\156', '\040',
'\061', '\012', '\120', '\170', '\142', '\040', '\142', '\145',
'\040', '\061', '\012', '\102', '\172', '\163', '\040', '\163',
'\164', '\040', '\061', '\012', '\160', '\142', '\111', '\040',
'\160', '\162', '\040', '\061', '\012', '\131', '\166', '\160',
'\040', '\166', '\141', '\040', '\061', '\012', '\152', '\170',
'\115', '\040', '\151', '\152', '\040', '\061', '\012', '\152',
'\171', '\132', '\040', '\151', '\152', '\040', '\061', '\012',
'\155', '\172', '\112', '\040', '\163', '\172', '\040', '\061',
'\012', '\166', '\131', '\147', '\040', '\156', '\147', '\040',
'\061', '\012', '\161', '\115', '\155', '\040', '\161', '\165',
'\040', '\061', '\012', '\146', '\150', '\114', '\040', '\164',
'\150', '\040', '\061', '\012', '\161', '\117', '\147', '\040',
'\161', '\165', '\040', '\061', '\012', '\115', '\156', '\160',
'\040', '\141', '\156', '\040', '\061', '\012', '\111', '\146',
'\166', '\040', '\166', '\141', '\040', '\061', '\012', '\161',
'\131', '\155', '\040', '\161', '\165', '\040', '\061', '\012',
'\147', '\170', '\166', '\040', '\156', '\147', '\040', '\061',
'\012', '\172', '\146', '\107', '\040', '\163', '\172', '\040',
'\061', '\012', '\146', '\161', '\107', '\040', '\161', '\165',
'\040', '\061', '\012', '\154', '\114', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\150', '\153', '\113', '\040',
'\164', '\150', '\040', '\061', '\012', '\157', '\131', '\153',
'\040', '\157', '\156', '\040', '\061', '\012', '\154', '\122',
'\147', '\040', '\154', '\145', '\040', '\061', '\012', '\154',
'\117', '\170', '\040', '\154', '\145', '\040', '\061', '\012',
'\126', '\170', '\166', '\040', '\166', '\141', '\040', '\061',
'\012', '\161', '\101', '\163', '\040', '\161', '\165', '\040',
'\061', '\012', '\164', '\113', '\153', '\040', '\164', '\150',
'\040', '\061', '\012', '\154', '\150', '\106', '\040', '\164',
'\150', '\040', '\061', '\012', '\144', '\103', '\166', '\040',
'\144', '\145', '\040', '\061', '\012', '\167', '\166', '\131',
'\040', '\166', '\141', '\040', '\061', '\012', '\167', '\151',
'\126', '\040', '\151', '\156', '\040', '\061', '\012', '\143',
'\162', '\106', '\040', '\143', '\150', '\040', '\061', '\012',
'\146', '\105', '\160', '\040', '\160', '\162', '\040', '\061',
'\012', '\122', '\162', '\154', '\040', '\145', '\162', '\040',
'\061', '\012', '\132', '\152', '\171', '\040', '\151', '\152',
'\040', '\061', '\012', '\161', '\142', '\131', '\040', '\161',
'\165', '\040', '\061', '\012', '\153', '\115', '\167', '\040',
'\153', '\141', '\040', '\061', '\012', '\166', '\132', '\151',
'\040', '\151', '\156', '\040', '\061', '\012', '\106', '\170',
'\151', '\040', '\151', '\156', '\040', '\061', '\012', '\172',
'\153', '\123', '\040', '\163', '\172', '\040', '\061', '\012',
'\166', '\113', '\142', '\040', '\166', '\141', '\040', '\061',
'\012', '\172', '\142', '\111', '\040', '\163', '\172', '\040',
'\061', '\012', '\165', '\110', '\147', '\040', '\161', '\165',
'\040', '\061', '\012', '\161', '\172', '\107', '\040', '\161',
'\165', '\040', '\061', '\012', '\152', '\115', '\153', '\040',
'\151', '\152', '\040', '\061', '\012', '\106', '\153', '\143',
'\040', '\143', '\150', '\040', '\061', '\012', '\144', '\113',
'\155', '\040', '\144', '\145', '\040', '\061', '\012', '\156',
'\110', '\150', '\040', '\164', '\150', '\040', '\061', '\012',
'\170', '\107', '\143', '\040', '\143', '\150', '\040', '\061',
'\012', '\161', '\160', '\125', '\040', '\161', '\165', '\040',
'\061', '\012', '\162', '\143', '\125', '\040', '\143', '\150',
'\040', '\061', '\012', '\141', '\127', '\170', '\040', '\141',
'\156', '\040', '\061', '\012', '\170', '\144', '\123', '\040',
'\144', '\145', '\040', '\061', '\012', '\161', '\150', '\126',
'\040', '\164', '\150', '\040', '\061', '\012', '\141', '\110',
'\143', '\040', '\143', '\150', '\040', '\061', '\012', '\166',
'\155', '\111', '\040', '\166', '\141', '\040', '\061', '\012',
'\127', '\143', '\143', '\040', '\143', '\150', '\040', '\061',
'\012', '\172', '\102', '\156', '\040', '\141', '\156', '\040',
'\061', '\012', '\153', '\121', '\145', '\040', '\145', '\162',
'\040', '\061', '\012', '\141', '\167', '\112', '\040', '\141',
'\156', '\040', '\061', '\012', '\170', '\144', '\104', '\040',
'\144', '\145', '\040', '\061', '\012', '\171', '\132', '\170',
'\040', '\156', '\171', '\040', '\061', '\012', '\113', '\153',
'\144', '\040', '\144', '\145', '\040', '\061', '\012', '\167',
'\102', '\172', '\040', '\163', '\172', '\040', '\061', '\012',
'\154', '\172', '\101', '\040', '\154', '\145', '\040', '\061',
'\012', '\171', '\171', '\124', '\040', '\156', '\171', '\040',
'\061', '\012', '\161', '\145', '\113', '\040', '\161', '\165',
'\040', '\061', '\012', '\172', '\160', '\105', '\040', '\163',
'\172', '\040', '\061', '\012', '\172', '\106', '\156', '\040',
'\141', '\156', '\040', '\061', '\012', '\171', '\171', '\107',
'\040', '\156', '\171', '\040', '\061', '\012', '\154', '\114',
'\167', '\040', '\154', '\145', '\040', '\061', '\012', '\142',
'\166', '\123', '\040', '\166', '\141', '\040', '\061', '\012',
'\155', '\166', '\130', '\040', '\166', '\141', '\040', '\061',
'\012', '\150', '\154', '\127', '\040', '\164', '\150', '\040',
'\061', '\012', '\160', '\147', '\130', '\040', '\156', '\147',
'\040', '\061', '\012', '\154', '\121', '\164', '\040', '\164',
'\150', '\040', '\061', '\012', '\171', '\155', '\131', '\040',
'\155', '\145', '\040', '\061', '\012', '\155', '\152', '\112',
'\040', '\151', '\152', '\040', '\061', '\012', '\155', '\126',
'\143', '\040', '\143', '\150', '\040', '\061', '\012', '\130',
'\161', '\163', '\040', '\161', '\165', '\040', '\061', '\012',
'\142', '\113', '\162', '\040', '\145', '\162', '\040', '\061',
'\012', '\142', '\110', '\164', '\040', '\164', '\150', '\040',
'\061', '\012', '\152', '\122', '\166', '\040', '\151', '\152',
'\040', '\061', '\012', '\114', '\160', '\167', '\040', '\160',
'\162', '\040', '\061', '\012', '\172', '\120', '\142', '\040',
'\163', '\172', '\040', '\061', '\012', '\167', '\153', '\122',
'\040', '\153', '\141', '\040', '\061', '\012', '\153', '\170',
'\123', '\040', '\153', '\141', '\040', '\061', '\012', '\152',
'\127', '\146', '\040', '\151', '\152', '\040', '\061', '\012',
'\116', '\153', '\170', '\040', '\153', '\141', '\040', '\061',
'\012', '\113', '\143', '\152', '\040', '\143', '\150', '\040',
'\061', '\012', '\142', '\112', '\142', '\040', '\142', '\145',
'\040', '\061', '\012', '\170', '\167', '\132', '\040', '\167',
'\141', '\040', '\061', '\012', '\122', '\161', '\143', '\040',
'\143', '\150', '\040', '\061', '\012', '\121', '\172', '\147',
'\040', '\156', '\147', '\040', '\061', '\012', '\152', '\167',
'\110', '\040', '\151', '\152', '\040', '\061', '\012', '\104',
'\161', '\144', '\040', '\161', '\165', '\040', '\061', '\012',
'\166', '\114', '\146', '\040', '\166', '\141', '\040', '\061',
'\012', '\150', '\130', '\144', '\040', '\164', '\150', '\040',
'\061', '\012', '\143', '\146', '\104', '\040', '\143', '\150',
'\040', '\061', '\012', '\163', '\152', '\130', '\040', '\163',
'\164', '\040', '\061', '\012', '\150', '\172', '\111', '\040',
'\164', '\150', '\040', '\061', '\012', '\161', '\125', '\144',
'\040', '\161', '\165', '\040', '\061', '\012', '\164', '\123',
'\170', '\040', '\164', '\150', '\040', '\061', '\012', '\150',
'\170', '\101', '\040', '\164', '\150', '\040', '\061', '\012',
'\147', '\170', '\113', '\040', '\156', '\147', '\040', '\061',
'\012', '\150', '\126', '\155', '\040', '\164', '\150', '\040',
'\061', '\012', '\171', '\172', '\130', '\040', '\163', '\172',
'\040', '\061', '\012', '\125', '\143', '\163', '\040', '\143',
'\150', '\040', '\061', '\012', '\161', '\141', '\110', '\040',
'\141', '\156', '\040', '\061', '\012', '\131', '\146', '\171',
'\040', '\156', '\171', '\040', '\061', '\012', '\163', '\112',
'\147', '\040', '\156', '\147', '\040', '\061', '\012', '\151',
'\110', '\160', '\040', '\151', '\156', '\040', '\061', '\012',
'\151', '\171', '\103', '\040', '\151', '\156', '\040', '\061',
'\012', '\124', '\152', '\146', '\040', '\151', '\152', '\040',
'\061', '\012', '\144', '\112', '\160', '\040', '\144', '\145',
'\040', '\061', '\012', '\112', '\147', '\166', '\040', '\156',
'\147', '\040', '\061', '\012', '\165', '\112', '\146', '\040',
'\161', '\165', '\040', '\061', '\012', '\156', '\116', '\154',
'\040', '\141', '\156', '\040', '\061', '\012', '\172', '\144',
'\101', '\040', '\163', '\172', '\040', '\061', '\012', '\170',
'\111', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\161', '\152', '\113', '\040', '\161', '\165', '\040', '\061',
'\012', '\166', '\172', '\131', '\040', '\163', '\172', '\040',
'\061', '\012', '\167', '\161', '\166', '\040', '\161', '\165',
'\040', '\061', '\012', '\130', '\166', '\170', '\040', '\166',
'\141', '\040', '\061', '\012', '\146', '\112', '\162', '\040',
'\145', '\162', '\040', '\061', '\012', '\156', '\161', '\110',
'\040', '\141', '\156', '\040', '\061', '\012', '\161', '\107',
'\144', '\040', '\161', '\165', '\040', '\061', '\012', '\166',
'\121', '\147', '\040', '\156', '\147', '\040', '\061', '\012',
'\151', '\121', '\172', '\040', '\151', '\156', '\040', '\061',
'\012', '\164', '\114', '\156', '\040', '\164', '\150', '\040',
'\061', '\012', '\154', '\126', '\152', '\040', '\154', '\145',
'\040', '\061', '\012', '\166', '\161', '\127', '\040', '\161',
'\165', '\040', '\061', '\012', '\172', '\162', '\116', '\040',
'\145', '\162', '\040', '\061', '\012', '\170', '\113', '\172',
'\040', '\163', '\172', '\040', '\061', '\012', '\167', '\141',
'\126', '\040', '\141', '\156', '\040', '\061', '\012', '\131',
'\144', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\144', '\153', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\146', '\103', '\156', '\040', '\141', '\156', '\040',
'\061', '\012', '\130', '\143', '\171', '\040', '\143', '\150',
'\040', '\061', '\012', '\160', '\111', '\154', '\040', '\154',
'\145', '\040', '\061', '\012', '\150', '\130', '\154', '\040',
'\164', '\150', '\040', '\061', '\012', '\141', '\106', '\163',
'\040', '\141', '\156', '\040', '\061', '\012', '\151', '\167',
'\115', '\040', '\151', '\156', '\040', '\061', '\012', '\107',
'\167', '\170', '\040', '\167', '\141', '\040', '\061', '\012',
'\130', '\154', '\160', '\040', '\154', '\145', '\040', '\061',
'\012', '\121', '\146', '\165', '\040', '\161', '\165', '\040',
'\061', '\012', '\152', '\161', '\105', '\040', '\161', '\165',
'\040', '\061', '\012', '\154', '\161', '\120', '\040', '\161',
'\165', '\040', '\061', '\012', '\153', '\126', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\170', '\161', '\112',
'\040', '\161', '\165', '\040', '\061', '\012', '\115', '\172',
'\146', '\040', '\163', '\172', '\040', '\061', '\012', '\155',
'\116', '\167', '\040', '\155', '\145', '\040', '\061', '\012',
'\127', '\163', '\166', '\040', '\163', '\164', '\040', '\061',
'\012', '\146', '\156', '\115', '\040', '\141', '\156', '\040',
'\061', '\012', '\165', '\123', '\146', '\040', '\161', '\165',
'\040', '\061', '\012', '\150', '\103', '\146', '\040', '\164',
'\150', '\040', '\061', '\012', '\172', '\152', '\110', '\040',
'\163', '\172', '\040', '\061', '\012', '\155', '\124', '\163',
'\040', '\163', '\164', '\040', '\061', '\012', '\152', '\127',
'\172', '\040', '\163', '\172', '\040', '\061', '\012', '\104',
'\170', '\153', '\040', '\153', '\141', '\040', '\061', '\012',
'\132', '\164', '\144', '\040', '\164', '\150', '\040', '\061',
'\012', '\122', '\166', '\166', '\040', '\166', '\141', '\040',
'\061', '\012', '\147', '\102', '\170', '\040', '\156', '\147',
'\040', '\061', '\012', '\114', '\172', '\170', '\040', '\163',
'\172', '\040', '\061', '\012', '\145', '\172', '\125', '\040',
'\145', '\162', '\040', '\061', '\012', '\152', '\161', '\110',
'\040', '\161', '\165', '\040', '\061', '\012', '\122', '\152',
'\150', '\040', '\164', '\150', '\040', '\061', '\012', '\104',
'\143', '\147', '\040', '\143', '\150', '\040', '\061', '\012',
'\142', '\102', '\150', '\040', '\164', '\150', '\040', '\061',
'\012', '\146', '\150', '\117', '\040', '\164', '\150', '\040',
'\061', '\012', '\150', '\160', '\110', '\040', '\164', '\150',
'\040', '\061', '\012', '\132', '\161', '\141', '\040', '\141',
'\156', '\040', '\061', '\012', '\153', '\103', '\170', '\040',
'\153', '\141', '\040', '\061', '\012', '\162', '\122', '\166',
'\040', '\145', '\162', '\040', '\061', '\012', '\144', '\153',
'\132', '\040', '\144', '\145', '\040', '\061', '\012', '\107',
'\147', '\170', '\040', '\156', '\147', '\040', '\061', '\012',
'\160', '\121', '\150', '\040', '\164', '\150', '\040', '\061',
'\012', '\107', '\143', '\166', '\040', '\143', '\150', '\040',
'\061', '\012', '\123', '\143', '\147', '\040', '\143', '\150',
'\040', '\061', '\012', '\166', '\104', '\142', '\040', '\166',
'\141', '\040', '\061', '\012', '\160', '\142', '\104', '\040',
'\160', '\162', '\040', '\061', '\012', '\166', '\105', '\150',
'\040', '\164', '\150', '\040', '\061', '\012', '\166', '\154',
'\105', '\040', '\154', '\145', '\040', '\061', '\012', '\122',
'\152', '\154', '\040', '\154', '\145', '\040', '\061', '\012',
'\154', '\106', '\167', '\040', '\154', '\145', '\040', '\061',
'\012', '\172', '\161', '\116', '\040', '\161', '\165', '\040',
'\061', '\012', '\141', '\120', '\161', '\040', '\141', '\156',
'\040', '\061', '\012', '\147', '\152', '\104', '\040', '\156',
'\147', '\040', '\061', '\012', '\152', '\143', '\105', '\040',
'\143', '\150', '\040', '\061', '\012', '\167', '\123', '\167',
'\040', '\167', '\141', '\040', '\061', '\012', '\104', '\147',
'\152', '\040', '\156', '\147', '\040', '\061', '\012', '\150',
'\165', '\132', '\040', '\164', '\150', '\040', '\061', '\012',
'\147', '\120', '\166', '\040', '\156', '\147', '\040', '\061',
'\012', '\160', '\112', '\152', '\040', '\151', '\152', '\040',
'\061', '\012', '\143', '\121', '\150', '\040', '\164', '\150',
'\040', '\061', '\012', '\155', '\167', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\166', '\160', '\101', '\040',
'\166', '\141', '\040', '\061', '\012', '\150', '\107', '\146',
'\040', '\164', '\150', '\040', '\061', '\012', '\143', '\130',
'\172', '\040', '\143', '\150', '\040', '\061', '\012', '\114',
'\143', '\142', '\040', '\143', '\150', '\040', '\061', '\012',
'\146', '\112', '\155', '\040', '\155', '\145', '\040', '\061',
'\012', '\121', '\172', '\171', '\040', '\163', '\172', '\040',
'\061', '\012', '\172', '\121', '\155', '\040', '\163', '\172',
'\040', '\061', '\012', '\110', '\150', '\156', '\040', '\164',
'\150', '\040', '\061', '\012', '\170', '\144', '\131', '\040',
'\144', '\145', '\040', '\061', '\012', '\165', '\131', '\154',
'\040', '\161', '\165', '\040', '\061', '\012', '\130', '\153',
'\152', '\040', '\151', '\152', '\040', '\061', '\012', '\152',
'\166', '\101', '\040', '\151', '\152', '\040', '\061', '\012',
'\112', '\166', '\160', '\040', '\166', '\141', '\040', '\061',
'\012', '\151', '\167', '\132', '\040', '\151', '\156', '\040',
'\061', '\012', '\172', '\153', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\116', '\150', '\142', '\040', '\164',
'\150', '\040', '\061', '\012', '\153', '\155', '\126', '\040',
'\153', '\141', '\040', '\061', '\012', '\161', '\113', '\144',
'\040', '\161', '\165', '\040', '\061', '\012', '\102', '\143',
'\161', '\040', '\143', '\150', '\040', '\061', '\012', '\160',
'\146', '\131', '\040', '\160', '\162', '\040', '\061', '\012',
'\161', '\125', '\152', '\040', '\161', '\165', '\040', '\061',
'\012', '\147', '\161', '\122', '\040', '\161', '\165', '\040',
'\061', '\012', '\147', '\167', '\117', '\040', '\156', '\147',
'\040', '\061', '\012', '\147', '\130', '\155', '\040', '\156',
'\147', '\040', '\061', '\012', '\152', '\110', '\150', '\040',
'\164', '\150', '\040', '\061', '\012', '\162', '\102', '\156',
'\040', '\141', '\156', '\040', '\061', '\012', '\165', '\120',
'\167', '\040', '\161', '\165', '\040', '\061', '\012', '\160',
'\112', '\153', '\040', '\153', '\141', '\040', '\061', '\012',
'\111', '\160', '\152', '\040', '\151', '\152', '\040', '\061',
'\012', '\171', '\161', '\115', '\040', '\161', '\165', '\040',
'\061', '\012', '\131', '\161', '\156', '\040', '\141', '\156',
'\040', '\061', '\012', '\113', '\142', '\172', '\040', '\163',
'\172', '\040', '\061', '\012', '\166', '\146', '\114', '\040',
'\166', '\141', '\040', '\061', '\012', '\156', '\160', '\132',
'\040', '\141', '\156', '\040', '\061', '\012', '\157', '\161',
'\131', '\040', '\161', '\165', '\040', '\061', '\012', '\132',
'\161', '\146', '\040', '\161', '\165', '\040', '\061', '\012',
'\152', '\172', '\125', '\040', '\163', '\172', '\040', '\061',
'\012', '\166', '\116', '\170', '\040', '\166', '\141', '\040',
'\061', '\012', '\150', '\130', '\146', '\040', '\164', '\150',
'\040', '\061', '\012', '\146', '\103', '\147', '\040', '\156',
'\147', '\040', '\061', '\012', '\156', '\172', '\112', '\040',
'\141', '\156', '\040', '\061', '\012', '\155', '\113', '\152',
'\040', '\151', '\152', '\040', '\061', '\012', '\167', '\155',
'\102', '\040', '\155', '\145', '\040', '\061', '\012', '\127',
'\152', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\104', '\142', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\172', '\130', '\171', '\040', '\163', '\172', '\040',
'\061', '\012', '\170', '\131', '\167', '\040', '\167', '\141',
'\040', '\061', '\012', '\146', '\121', '\146', '\040', '\146',
'\157', '\040', '\061', '\012', '\144', '\161', '\120', '\040',
'\161', '\165', '\040', '\061', '\012', '\113', '\170', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\152', '\144',
'\132', '\040', '\144', '\145', '\040', '\061', '\012', '\161',
'\162', '\130', '\040', '\161', '\165', '\040', '\061', '\012',
'\114', '\170', '\142', '\040', '\142', '\145', '\040', '\061',
'\012', '\171', '\146', '\114', '\040', '\156', '\171', '\040',
'\061', '\012', '\171', '\131', '\155', '\040', '\155', '\145',
'\040', '\061', '\012', '\163', '\142', '\110', '\040', '\163',
'\164', '\040', '\061', '\012', '\167', '\154', '\126', '\040',
'\154', '\145', '\040', '\061', '\012', '\165', '\113', '\160',
'\040', '\161', '\165', '\040', '\061', '\012', '\150', '\150',
'\116', '\040', '\164', '\150', '\040', '\061', '\012', '\130',
'\170', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\152', '\114', '\147', '\040', '\156', '\147', '\040', '\061',
'\012', '\156', '\121', '\150', '\040', '\164', '\150', '\040',
'\061', '\012', '\127', '\161', '\160', '\040', '\161', '\165',
'\040', '\061', '\012', '\116', '\161', '\144', '\040', '\161',
'\165', '\040', '\061', '\012', '\152', '\146', '\104', '\040',
'\151', '\152', '\040', '\061', '\012', '\112', '\156', '\161',
'\040', '\141', '\156', '\040', '\061', '\012', '\102', '\172',
'\156', '\040', '\141', '\156', '\040', '\061', '\012', '\155',
'\112', '\162', '\040', '\145', '\162', '\040', '\061', '\012',
'\161', '\141', '\130', '\040', '\141', '\156', '\040', '\061',
'\012', '\160', '\112', '\167', '\040', '\160', '\162', '\040',
'\061', '\012', '\152', '\110', '\172', '\040', '\163', '\172',
'\040', '\061', '\012', '\171', '\141', '\130', '\040', '\141',
'\156', '\040', '\061', '\012', '\127', '\150', '\163', '\040',
'\164', '\150', '\040', '\061', '\012', '\150', '\131', '\162',
'\040', '\164', '\150', '\040', '\061', '\012', '\164', '\155',
'\123', '\040', '\164', '\150', '\040', '\061', '\012', '\106',
'\150', '\171', '\040', '\164', '\150', '\040', '\061', '\012',
'\107', '\147', '\144', '\040', '\156', '\147', '\040', '\061',
'\012', '\130', '\155', '\171', '\040', '\155', '\145', '\040',
'\061', '\012', '\122', '\161', '\150', '\040', '\164', '\150',
'\040', '\061', '\012', '\106', '\163', '\156', '\040', '\141',
'\156', '\040', '\061', '\012', '\161', '\150', '\101', '\040',
'\164', '\150', '\040', '\061', '\012', '\146', '\150', '\130',
'\040', '\164', '\150', '\040', '\061', '\012', '\110', '\161',
'\170', '\040', '\161', '\165', '\040', '\061', '\012', '\167',
'\111', '\157', '\040', '\157', '\156', '\040', '\061', '\012',
'\111', '\142', '\170', '\040', '\142', '\145', '\040', '\061',
'\012', '\143', '\106', '\170', '\040', '\143', '\150', '\040',
'\061', '\012', '\144', '\122', '\147', '\040', '\156', '\147',
'\040', '\061', '\012', '\163', '\156', '\126', '\040', '\141',
'\156', '\040', '\061', '\012', '\153', '\161', '\172', '\040',
'\161', '\165', '\040', '\061', '\012', '\145', '\161', '\117',
'\040', '\145', '\162', '\040', '\061', '\012', '\107', '\153',
'\172', '\040', '\163', '\172', '\040', '\061', '\012', '\116',
'\156', '\172', '\040', '\141', '\156', '\040', '\061', '\012',
'\171', '\161', '\105', '\040', '\161', '\165', '\040', '\061',
'\012', '\143', '\112', '\150', '\040', '\164', '\150', '\040',
'\061', '\012', '\170', '\166', '\101', '\040', '\166', '\141',
'\040', '\061', '\012', '\161', '\115', '\170', '\040', '\161',
'\165', '\040', '\061', '\012', '\144', '\167', '\123', '\040',
'\144', '\145', '\040', '\061', '\012', '\171', '\101', '\152',
'\040', '\151', '\152', '\040', '\061', '\012', '\170', '\103',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\147',
'\155', '\105', '\040', '\156', '\147', '\040', '\061', '\012',
'\142', '\150', '\120', '\040', '\164', '\150', '\040', '\061',
'\012', '\162', '\167', '\105', '\040', '\145', '\162', '\040',
'\061', '\012', '\130', '\156', '\172', '\040', '\141', '\156',
'\040', '\061', '\012', '\125', '\150', '\167', '\040', '\164',
'\150', '\040', '\061', '\012', '\170', '\156', '\122', '\040',
'\141', '\156', '\040', '\061', '\012', '\156', '\146', '\132',
'\040', '\141', '\156', '\040', '\061', '\012', '\121', '\160',
'\170', '\040', '\160', '\162', '\040', '\061', '\012', '\161',
'\170', '\117', '\040', '\161', '\165', '\040', '\061', '\012',
'\154', '\107', '\164', '\040', '\164', '\150', '\040', '\061',
'\012', '\161', '\122', '\143', '\040', '\143', '\150', '\040',
'\061', '\012', '\122', '\167', '\170', '\040', '\167', '\141',
'\040', '\061', '\012', '\164', '\143', '\115', '\040', '\164',
'\150', '\040', '\061', '\012', '\146', '\102', '\144', '\040',
'\144', '\145', '\040', '\061', '\012', '\122', '\152', '\143',
'\040', '\143', '\150', '\040', '\061', '\012', '\144', '\146',
'\131', '\040', '\144', '\145', '\040', '\061', '\012', '\150',
'\150', '\122', '\040', '\164', '\150', '\040', '\061', '\012',
'\142', '\103', '\152', '\040', '\151', '\152', '\040', '\061',
'\012', '\146', '\161', '\114', '\040', '\161', '\165', '\040',
'\061', '\012', '\154', '\172', '\123', '\040', '\154', '\145',
'\040', '\061', '\012', '\114', '\162', '\155', '\040', '\145',
'\162', '\040', '\061', '\012', '\145', '\161', '\105', '\040',
'\161', '\165', '\040', '\061', '\012', '\166', '\147', '\114',
'\040', '\156', '\147', '\040', '\061', '\012', '\167', '\121',
'\162', '\040', '\145', '\162', '\040', '\061', '\012', '\142',
'\167', '\102', '\040', '\167', '\141', '\040', '\061', '\012',
'\154', '\107', '\146', '\040', '\154', '\145', '\040', '\061',
'\012', '\116', '\167', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\163', '\144', '\125', '\040', '\163', '\164',
'\040', '\061', '\012', '\132', '\170', '\166', '\040', '\166',
'\141', '\040', '\061', '\012', '\171', '\104', '\155', '\040',
'\155', '\145', '\040', '\061', '\012', '\114', '\163', '\167',
'\040', '\163', '\164', '\040', '\061', '\012', '\143', '\116',
'\161', '\040', '\143', '\150', '\040', '\061', '\012', '\104',
'\161', '\143', '\040', '\143', '\150', '\040', '\061', '\012',
'\166', '\114', '\172', '\040', '\163', '\172', '\040', '\061',
'\012', '\144', '\127', '\166', '\040', '\144', '\145', '\040',
'\061', '\012', '\146', '\153', '\121', '\040', '\153', '\141',
'\040', '\061', '\012', '\172', '\152', '\104', '\040', '\163',
'\172', '\040', '\061', '\012', '\171', '\131', '\166', '\040',
'\166', '\141', '\040', '\061', '\012', '\161', '\145', '\124',
'\040', '\161', '\165', '\040', '\061', '\012', '\143', '\166',
'\114', '\040', '\143', '\150', '\040', '\061', '\012', '\167',
'\153', '\101', '\040', '\153', '\141', '\040', '\061', '\012',
'\116', '\166', '\142', '\040', '\166', '\141', '\040', '\061',
'\012', '\144', '\152', '\115', '\040', '\144', '\145', '\040',
'\061', '\012', '\150', '\147', '\113', '\040', '\164', '\150',
'\040', '\061', '\012', '\160', '\130', '\142', '\040', '\160',
'\162', '\040', '\061', '\012', '\124', '\154', '\167', '\040',
'\154', '\145', '\040', '\061', '\012', '\122', '\150', '\172',
'\040', '\150', '\141', '\040', '\061', '\012', '\167', '\153',
'\120', '\040', '\153', '\141', '\040', '\061', '\012', '\167',
'\104', '\153', '\040', '\153', '\141', '\040', '\061', '\012',
'\145', '\106', '\143', '\040', '\143', '\150', '\040', '\061',
'\012', '\145', '\150', '\125', '\040', '\164', '\150', '\040',
'\061', '\012', '\130', '\154', '\171', '\040', '\154', '\145',
'\040', '\061', '\012', '\167', '\170', '\113', '\040', '\167',
'\141', '\040', '\061', '\012', '\144', '\120', '\167', '\040',
'\144', '\145', '\040', '\061', '\012', '\163', '\106', '\144',
'\040', '\163', '\164', '\040', '\061', '\012', '\166', '\143',
'\111', '\040', '\143', '\150', '\040', '\061', '\012', '\106',
'\170', '\144', '\040', '\144', '\145', '\040', '\061', '\012',
'\146', '\166', '\122', '\040', '\166', '\141', '\040', '\061',
'\012', '\152', '\161', '\163', '\040', '\161', '\165', '\040',
'\061', '\012', '\162', '\115', '\152', '\040', '\145', '\162',
'\040', '\061', '\012', '\161', '\142', '\127', '\040', '\161',
'\165', '\040', '\061', '\012', '\153', '\160', '\120', '\040',
'\153', '\141', '\040', '\061', '\012', '\102', '\166', '\167',
'\040', '\166', '\141', '\040', '\061', '\012', '\124', '\155',
'\153', '\040', '\153', '\141', '\040', '\061', '\012', '\150',
'\142', '\120', '\040', '\164', '\150', '\040', '\061', '\012',
'\150', '\115', '\170', '\040', '\164', '\150', '\040', '\061',
'\012', '\152', '\147', '\114', '\040', '\156', '\147', '\040',
'\061', '\012', '\145', '\146', '\125', '\040', '\145', '\162',
'\040', '\061', '\012', '\143', '\121', '\142', '\040', '\143',
'\150', '\040', '\061', '\012', '\155', '\143', '\101', '\040',
'\143', '\150', '\040', '\061', '\012', '\105', '\167', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\170', '\155',
'\126', '\040', '\155', '\145', '\040', '\061', '\012', '\121',
'\143', '\161', '\040', '\143', '\150', '\040', '\061', '\012',
'\155', '\172', '\107', '\040', '\163', '\172', '\040', '\061',
'\012', '\160', '\113', '\155', '\040', '\155', '\145', '\040',
'\061', '\012', '\106', '\167', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\154', '\122', '\156', '\040', '\141',
'\156', '\040', '\061', '\012', '\152', '\120', '\153', '\040',
'\151', '\152', '\040', '\061', '\012', '\152', '\115', '\142',
'\040', '\151', '\152', '\040', '\061', '\012', '\155', '\172',
'\117', '\040', '\163', '\172', '\040', '\061', '\012', '\157',
'\106', '\167', '\040', '\157', '\156', '\040', '\061', '\012',
'\150', '\112', '\142', '\040', '\164', '\150', '\040', '\061',
'\012', '\163', '\126', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\151', '\126', '\172', '\040', '\151', '\156',
'\040', '\061', '\012', '\157', '\161', '\125', '\040', '\161',
'\165', '\040', '\061', '\012', '\142', '\150', '\127', '\040',
'\164', '\150', '\040', '\061', '\012', '\117', '\170', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\155', '\121',
'\153', '\040', '\153', '\141', '\040', '\061', '\012', '\130',
'\146', '\142', '\040', '\142', '\145', '\040', '\061', '\012',
'\143', '\116', '\167', '\040', '\143', '\150', '\040', '\061',
'\012', '\146', '\147', '\132', '\040', '\156', '\147', '\040',
'\061', '\012', '\124', '\166', '\146', '\040', '\166', '\141',
'\040', '\061', '\012', '\163', '\111', '\170', '\040', '\163',
'\164', '\040', '\061', '\012', '\165', '\132', '\163', '\040',
'\161', '\165', '\040', '\061', '\012', '\170', '\172', '\130',
'\040', '\163', '\172', '\040', '\061', '\012', '\131', '\154',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\157',
'\110', '\146', '\040', '\157', '\156', '\040', '\061', '\012',
'\143', '\163', '\125', '\040', '\143', '\150', '\040', '\061',
'\012', '\121', '\172', '\163', '\040', '\163', '\164', '\040',
'\061', '\012', '\102', '\146', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\171', '\112', '\156', '\040', '\141',
'\156', '\040', '\061', '\012', '\160', '\147', '\121', '\040',
'\156', '\147', '\040', '\061', '\012', '\167', '\170', '\153',
'\040', '\153', '\141', '\040', '\061', '\012', '\124', '\156',
'\167', '\040', '\141', '\156', '\040', '\061', '\012', '\142',
'\113', '\170', '\040', '\142', '\145', '\040', '\061', '\012',
'\142', '\161', '\130', '\040', '\161', '\165', '\040', '\061',
'\012', '\121', '\152', '\163', '\040', '\163', '\164', '\040',
'\061', '\012', '\160', '\106', '\150', '\040', '\164', '\150',
'\040', '\061', '\012', '\130', '\166', '\154', '\040', '\154',
'\145', '\040', '\061', '\012', '\153', '\146', '\102', '\040',
'\153', '\141', '\040', '\061', '\012', '\155', '\132', '\154',
'\040', '\154', '\145', '\040', '\061', '\012', '\103', '\163',
'\147', '\040', '\156', '\147', '\040', '\061', '\012', '\166',
'\162', '\112', '\040', '\145', '\162', '\040', '\061', '\012',
'\107', '\146', '\171', '\040', '\156', '\171', '\040', '\061',
'\012', '\152', '\142', '\120', '\040', '\151', '\152', '\040',
'\061', '\012', '\131', '\166', '\154', '\040', '\154', '\145',
'\040', '\061', '\012', '\110', '\170', '\142', '\040', '\142',
'\145', '\040', '\061', '\012', '\154', '\162', '\104', '\040',
'\145', '\162', '\040', '\061', '\012', '\161', '\124', '\154',
'\040', '\161', '\165', '\040', '\061', '\012', '\141', '\102',
'\143', '\040', '\143', '\150', '\040', '\061', '\012', '\146',
'\107', '\142', '\040', '\142', '\145', '\040', '\061', '\012',
'\155', '\150', '\123', '\040', '\164', '\150', '\040', '\061',
'\012', '\172', '\124', '\160', '\040', '\163', '\172', '\040',
'\061', '\012', '\153', '\122', '\144', '\040', '\144', '\145',
'\040', '\061', '\012', '\127', '\160', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\116', '\160', '\152', '\040',
'\151', '\152', '\040', '\061', '\012', '\154', '\167', '\123',
'\040', '\154', '\145', '\040', '\061', '\012', '\155', '\107',
'\155', '\040', '\155', '\145', '\040', '\061', '\012', '\156',
'\161', '\124', '\040', '\141', '\156', '\040', '\061', '\012',
'\125', '\152', '\156', '\040', '\141', '\156', '\040', '\061',
'\012', '\170', '\152', '\117', '\040', '\151', '\152', '\040',
'\061', '\012', '\144', '\115', '\172', '\040', '\163', '\172',
'\040', '\061', '\012', '\167', '\113', '\152', '\040', '\151',
'\152', '\040', '\061', '\012', '\171', '\132', '\162', '\040',
'\145', '\162', '\040', '\061', '\012', '\116', '\152', '\142',
'\040', '\151', '\152', '\040', '\061', '\012', '\131', '\154',
'\162', '\040', '\145', '\162', '\040', '\061', '\012', '\155',
'\126', '\146', '\040', '\155', '\145', '\040', '\061', '\012',
'\147', '\132', '\147', '\040', '\156', '\147', '\040', '\061',
'\012', '\110', '\143', '\142', '\040', '\143', '\150', '\040',
'\061', '\012', '\170', '\143', '\102', '\040', '\143', '\150',
'\040', '\061', '\012', '\153', '\115', '\155', '\040', '\153',
'\141', '\040', '\061', '\012', '\154', '\167', '\103', '\040',
'\154', '\145', '\040', '\061', '\012', '\104', '\156', '\146',
'\040', '\141', '\156', '\040', '\061', '\012', '\150', '\152',
'\127', '\040', '\164', '\150', '\040', '\061', '\012', '\162',
'\124', '\153', '\040', '\145', '\162', '\040', '\061', '\012',
'\126', '\172', '\152', '\040', '\163', '\172', '\040', '\061',
'\012', '\126', '\170', '\171', '\040', '\156', '\171', '\040',
'\061', '\012', '\167', '\154', '\121', '\040', '\154', '\145',
'\040', '\061', '\012', '\116', '\162', '\166', '\040', '\145',
'\162', '\040', '\061', '\012', '\160', '\152', '\120', '\040',
'\151', '\152', '\040', '\061', '\012', '\146', '\167', '\132',
'\040', '\167', '\141', '\040', '\061', '\012', '\164', '\156',
'\127', '\040', '\164', '\150', '\040', '\061', '\012', '\157',
'\112', '\167', '\040', '\157', '\156', '\040', '\061', '\012',
'\153', '\112', '\170', '\040', '\153', '\141', '\040', '\061',
'\012', '\126', '\160', '\152', '\040', '\151', '\152', '\040',
'\061', '\012', '\161', '\101', '\167', '\040', '\161', '\165',
'\040', '\061', '\012', '\121', '\150', '\164', '\040', '\164',
'\150', '\040', '\061', '\012', '\142', '\103', '\156', '\040',
'\141', '\156', '\040', '\061', '\012', '\166', '\162', '\125',
'\040', '\145', '\162', '\040', '\061', '\012', '\150', '\122',
'\143', '\040', '\164', '\150', '\040', '\061', '\012', '\143',
'\154', '\103', '\040', '\143', '\150', '\040', '\061', '\012',
'\162', '\106', '\144', '\040', '\145', '\162', '\040', '\061',
'\012', '\164', '\167', '\110', '\040', '\164', '\150', '\040',
'\061', '\012', '\153', '\103', '\167', '\040', '\153', '\141',
'\040', '\061', '\012', '\155', '\123', '\144', '\040', '\144',
'\145', '\040', '\061', '\012', '\130', '\156', '\167', '\040',
'\141', '\156', '\040', '\061', '\012', '\146', '\130', '\155',
'\040', '\155', '\145', '\040', '\061', '\012', '\124', '\167',
'\146', '\040', '\167', '\141', '\040', '\061', '\012', '\106',
'\167', '\152', '\040', '\151', '\152', '\040', '\061', '\012',
'\142', '\152', '\112', '\040', '\151', '\152', '\040', '\061',
'\012', '\154', '\142', '\121', '\040', '\154', '\145', '\040',
'\061', '\012', '\153', '\166', '\123', '\040', '\153', '\141',
'\040', '\061', '\012', '\123', '\155', '\172', '\040', '\163',
'\172', '\040', '\061', '\012', '\146', '\102', '\160', '\040',
'\160', '\162', '\040', '\061', '\012', '\116', '\172', '\172',
'\040', '\163', '\172', '\040', '\061', '\012', '\142', '\121',
'\160', '\040', '\160', '\162', '\040', '\061', '\012', '\166',
'\114', '\170', '\040', '\166', '\141', '\040', '\061', '\012',
'\150', '\126', '\146', '\040', '\164', '\150', '\040', '\061',
'\012', '\171', '\125', '\152', '\040', '\151', '\152', '\040',
'\061', '\012', '\143', '\132', '\144', '\040', '\143', '\150',
'\040', '\061', '\012', '\147', '\111', '\171', '\040', '\145',
'\147', '\040', '\061', '\012', '\150', '\126', '\161', '\040',
'\164', '\150', '\040', '\061', '\012', '\141', '\121', '\170',
'\040', '\141', '\156', '\040', '\061', '\012', '\121', '\146',
'\166', '\040', '\166', '\141', '\040', '\061', '\012', '\154',
'\113', '\142', '\040', '\154', '\145', '\040', '\061', '\012',
'\172', '\150', '\116', '\040', '\164', '\150', '\040', '\061',
'\012', '\132', '\142', '\155', '\040', '\155', '\145', '\040',
'\061', '\012', '\107', '\143', '\161', '\040', '\143', '\150',
'\040', '\061', '\012', '\147', '\142', '\124', '\040', '\156',
'\147', '\040', '\061', '\012', '\160', '\131', '\153', '\040',
'\153', '\141', '\040', '\061', '\012', '\130', '\166', '\144',
'\040', '\144', '\145', '\040', '\061', '\012', '\170', '\115',
'\154', '\040', '\154', '\145', '\040', '\061', '\012', '\165',
'\110', '\142', '\040', '\161', '\165', '\040', '\061', '\012',
'\142', '\130', '\146', '\040', '\142', '\145', '\040', '\061',
'\012', '\163', '\116', '\143', '\040', '\143', '\150', '\040',
'\061', '\012', '\161', '\126', '\171', '\040', '\161', '\165',
'\040', '\061', '\012', '\143', '\160', '\117', '\040', '\143',
'\150', '\040', '\061', '\012', '\106', '\147', '\142', '\040',
'\156', '\147', '\040', '\061', '\012', '\145', '\127', '\154',
'\040', '\145', '\162', '\040', '\061', '\012', '\153', '\113',
'\144', '\040', '\144', '\145', '\040', '\061', '\012', '\103',
'\142', '\152', '\040', '\151', '\152', '\040', '\061', '\012',
'\155', '\146', '\110', '\040', '\155', '\145', '\040', '\061',
'\012', '\161', '\111', '\141', '\040', '\141', '\156', '\040',
'\061', '\012', '\163', '\146', '\130', '\040', '\163', '\164',
'\040', '\061', '\012', '\163', '\156', '\110', '\040', '\141',
'\156', '\040', '\061', '\012', '\110', '\152', '\147', '\040',
'\156', '\147', '\040', '\061', '\012', '\114', '\155', '\146',
'\040', '\155', '\145', '\040', '\061', '\012', '\170', '\147',
'\146', '\040', '\156', '\147', '\040', '\061', '\012', '\105',
'\166', '\167', '\040', '\166', '\141', '\040', '\061', '\012',
'\167', '\117', '\153', '\040', '\153', '\141', '\040', '\061',
'\012', '\110', '\152', '\146', '\040', '\151', '\152', '\040',
'\061', '\012', '\172', '\165', '\112', '\040', '\161', '\165',
'\040', '\061', '\012', '\146', '\132', '\155', '\040', '\155',
'\145', '\040', '\061', '\012', '\154', '\116', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\170', '\125', '\147',
'\040', '\156', '\147', '\040', '\061', '\012', '\156', '\114',
'\163', '\040', '\141', '\156', '\040', '\061', '\012', '\152',
'\153', '\123', '\040', '\151', '\152', '\040', '\061', '\012',
'\107', '\166', '\160', '\040', '\166', '\141', '\040', '\061',
'\012', '\152', '\120', '\144', '\040', '\144', '\145', '\040',
'\061', '\012', '\171', '\167', '\121', '\040', '\167', '\141',
'\040', '\061', '\012', '\161', '\162', '\107', '\040', '\161',
'\165', '\040', '\061', '\012', '\142', '\142', '\110', '\040',
'\142', '\145', '\040', '\061', '\012', '\147', '\150', '\112',
'\040', '\164', '\150', '\040', '\061', '\012', '\155', '\115',
'\150', '\040', '\164', '\150', '\040', '\061', '\012', '\131',
'\166', '\164', '\040', '\164', '\150', '\040', '\061', '\012',
'\170', '\114', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\102', '\144', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\172', '\112', '\144', '\040', '\163', '\172',
'\040', '\061', '\012', '\170', '\122', '\163', '\040', '\163',
'\164', '\040', '\061', '\012', '\166', '\147', '\120', '\040',
'\156', '\147', '\040', '\061', '\012', '\110', '\150', '\142',
'\040', '\164', '\150', '\040', '\061', '\012', '\156', '\160',
'\114', '\040', '\141', '\156', '\040', '\061', '\012', '\166',
'\106', '\160', '\040', '\166', '\141', '\040', '\061', '\012',
'\150', '\123', '\152', '\040', '\164', '\150', '\040', '\061',
'\012', '\142', '\144', '\103', '\040', '\144', '\145', '\040',
'\061', '\012', '\153', '\107', '\147', '\040', '\156', '\147',
'\040', '\061', '\012', '\153', '\126', '\146', '\040', '\153',
'\141', '\040', '\061', '\012', '\161', '\166', '\120', '\040',
'\161', '\165', '\040', '\061', '\012', '\153', '\167', '\117',
'\040', '\153', '\141', '\040', '\061', '\012', '\112', '\161',
'\164', '\040', '\164', '\150', '\040', '\061', '\012', '\172',
'\127', '\170', '\040', '\163', '\172', '\040', '\061', '\012',
'\163', '\121', '\153', '\040', '\163', '\164', '\040', '\061',
'\012', '\150', '\156', '\126', '\040', '\164', '\150', '\040',
'\061', '\012', '\162', '\162', '\104', '\040', '\145', '\162',
'\040', '\061', '\012', '\152', '\126', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\166', '\166', '\131', '\040',
'\166', '\141', '\040', '\061', '\012', '\142', '\146', '\111',
'\040', '\142', '\145', '\040', '\061', '\012', '\146', '\123',
'\172', '\040', '\163', '\172', '\040', '\061', '\012', '\103',
'\172', '\146', '\040', '\163', '\172', '\040', '\061', '\012',
'\153', '\127', '\154', '\040', '\154', '\145', '\040', '\061',
'\012', '\152', '\112', '\143', '\040', '\143', '\150', '\040',
'\061', '\012', '\107', '\167', '\152', '\040', '\151', '\152',
'\040', '\061', '\012', '\154', '\106', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\126', '\160', '\146', '\040',
'\146', '\157', '\040', '\061', '\012', '\146', '\153', '\126',
'\040', '\153', '\141', '\040', '\061', '\012', '\143', '\131',
'\152', '\040', '\143', '\150', '\040', '\061', '\012', '\155',
'\162', '\127', '\040', '\145', '\162', '\040', '\061', '\012',
'\150', '\102', '\142', '\040', '\164', '\150', '\040', '\061',
'\012', '\150', '\112', '\170', '\040', '\164', '\150', '\040',
'\061', '\012', '\167', '\111', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\143', '\144', '\101', '\040', '\143',
'\150', '\040', '\061', '\012', '\167', '\121', '\171', '\040',
'\167', '\141', '\040', '\061', '\012', '\167', '\103', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\167', '\161',
'\132', '\040', '\161', '\165', '\040', '\061', '\012', '\152',
'\146', '\130', '\040', '\151', '\152', '\040', '\061', '\012',
'\152', '\164', '\107', '\040', '\164', '\150', '\040', '\061',
'\012', '\170', '\153', '\112', '\040', '\153', '\141', '\040',
'\061', '\012', '\121', '\172', '\146', '\040', '\163', '\172',
'\040', '\061', '\012', '\147', '\113', '\163', '\040', '\156',
'\147', '\040', '\061', '\012', '\121', '\172', '\157', '\040',
'\157', '\156', '\040', '\061', '\012', '\142', '\167', '\111',
'\040', '\167', '\141', '\040', '\061', '\012', '\124', '\163',
'\142', '\040', '\163', '\164', '\040', '\061', '\012', '\166',
'\166', '\130', '\040', '\166', '\141', '\040', '\061', '\012',
'\152', '\154', '\122', '\040', '\154', '\145', '\040', '\061',
'\012', '\161', '\154', '\121', '\040', '\161', '\165', '\040',
'\061', '\012', '\144', '\142', '\130', '\040', '\144', '\145',
'\040', '\061', '\012', '\110', '\146', '\143', '\040', '\143',
'\150', '\040', '\061', '\012', '\102', '\163', '\152', '\040',
'\163', '\164', '\040', '\061', '\012', '\131', '\161', '\153',
'\040', '\161', '\165', '\040', '\061', '\012', '\130', '\156',
'\143', '\040', '\143', '\150', '\040', '\061', '\012', '\142',
'\172', '\132', '\040', '\163', '\172', '\040', '\061', '\012',
'\144', '\107', '\164', '\040', '\164', '\150', '\040', '\061',
'\012', '\130', '\147', '\147', '\040', '\156', '\147', '\040',
'\061', '\012', '\152', '\167', '\105', '\040', '\167', '\141',
'\040', '\061', '\012', '\117', '\171', '\143', '\040', '\143',
'\150', '\040', '\061', '\012', '\160', '\121', '\144', '\040',
'\144', '\145', '\040', '\061', '\012', '\152', '\122', '\171',
'\040', '\151', '\152', '\040', '\061', '\012', '\160', '\155',
'\130', '\040', '\155', '\145', '\040', '\061', '\012', '\154',
'\132', '\170', '\040', '\154', '\145', '\040', '\061', '\012',
'\147', '\106', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\155', '\112', '\144', '\040', '\144', '\145', '\040',
'\061', '\012', '\163', '\113', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\111', '\153', '\152', '\040', '\151',
'\152', '\040', '\061', '\012', '\172', '\153', '\107', '\040',
'\163', '\172', '\040', '\061', '\012', '\167', '\107', '\146',
'\040', '\167', '\141', '\040', '\061', '\012', '\161', '\122',
'\160', '\040', '\161', '\165', '\040', '\061', '\012', '\170',
'\104', '\156', '\040', '\141', '\156', '\040', '\061', '\012',
'\147', '\166', '\114', '\040', '\156', '\147', '\040', '\061',
'\012', '\155', '\107', '\170', '\040', '\155', '\145', '\040',
'\061', '\012', '\151', '\111', '\152', '\040', '\151', '\156',
'\040', '\061', '\012', '\107', '\172', '\144', '\040', '\163',
'\172', '\040', '\061', '\012', '\142', '\114', '\170', '\040',
'\142', '\145', '\040', '\061', '\012', '\152', '\125', '\154',
'\040', '\154', '\145', '\040', '\061', '\012', '\121', '\166',
'\143', '\040', '\143', '\150', '\040', '\061', '\012', '\155',
'\126', '\150', '\040', '\164', '\150', '\040', '\061', '\012',
'\165', '\150', '\106', '\040', '\164', '\150', '\040', '\061',
'\012', '\146', '\126', '\153', '\040', '\153', '\141', '\040',
'\061', '\012', '\143', '\156', '\115', '\040', '\143', '\150',
'\040', '\061', '\012', '\165', '\106', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\155', '\130', '\146', '\040',
'\155', '\145', '\040', '\061', '\012', '\162', '\103', '\142',
'\040', '\145', '\162', '\040', '\061', '\012', '\156', '\114',
'\167', '\040', '\141', '\156', '\040', '\061', '\012', '\166',
'\146', '\110', '\040', '\146', '\157', '\040', '\061', '\012',
'\151', '\161', '\126', '\040', '\161', '\165', '\040', '\061',
'\012', '\161', '\150', '\104', '\040', '\164', '\150', '\040',
'\061', '\012', '\163', '\110', '\170', '\040', '\163', '\164',
'\040', '\061', '\012', '\131', '\167', '\171', '\040', '\167',
'\141', '\040', '\061', '\012', '\155', '\104', '\170', '\040',
'\155', '\145', '\040', '\061', '\012', '\143', '\102', '\164',
'\040', '\164', '\150', '\040', '\061', '\012', '\102', '\155',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\170',
'\122', '\143', '\040', '\143', '\150', '\040', '\061', '\012',
'\142', '\123', '\172', '\040', '\163', '\172', '\040', '\061',
'\012', '\166', '\103', '\152', '\040', '\151', '\152', '\040',
'\061', '\012', '\124', '\143', '\166', '\040', '\143', '\150',
'\040', '\061', '\012', '\141', '\132', '\161', '\040', '\141',
'\156', '\040', '\061', '\012', '\112', '\143', '\170', '\040',
'\143', '\150', '\040', '\061', '\012', '\156', '\142', '\106',
'\040', '\141', '\156', '\040', '\061', '\012', '\121', '\172',
'\142', '\040', '\163', '\172', '\040', '\061', '\012', '\166',
'\153', '\121', '\040', '\153', '\141', '\040', '\061', '\012',
'\150', '\172', '\104', '\040', '\164', '\150', '\040', '\061',
'\012', '\170', '\110', '\160', '\040', '\160', '\162', '\040',
'\061', '\012', '\150', '\161', '\130', '\040', '\164', '\150',
'\040', '\061', '\012', '\146', '\105', '\166', '\040', '\166',
'\141', '\040', '\061', '\012', '\171', '\152', '\106', '\040',
'\151', '\152', '\040', '\061', '\012', '\120', '\152', '\153',
'\040', '\151', '\152', '\040', '\061', '\012', '\163', '\146',
'\125', '\040', '\163', '\164', '\040', '\061', '\012', '\142',
'\107', '\143', '\040', '\143', '\150', '\040', '\061', '\012',
'\155', '\143', '\130', '\040', '\143', '\150', '\040', '\061',
'\012', '\160', '\130', '\143', '\040', '\143', '\150', '\040',
'\061', '\012', '\171', '\166', '\123', '\040', '\166', '\141',
'\040', '\061', '\012', '\160', '\115', '\154', '\040', '\154',
'\145', '\040', '\061', '\012', '\167', '\112', '\163', '\040',
'\163', '\164', '\040', '\061', '\012', '\126', '\167', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\171', '\103',
'\167', '\040', '\167', '\141', '\040', '\061', '\012', '\161',
'\144', '\163', '\040', '\161', '\165', '\040', '\061', '\012',
'\162', '\122', '\152', '\040', '\145', '\162', '\040', '\061',
'\012', '\121', '\150', '\166', '\040', '\164', '\150', '\040',
'\061', '\012', '\165', '\143', '\107', '\040', '\143', '\150',
'\040', '\061', '\012', '\157', '\105', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\167', '\121', '\151', '\040',
'\151', '\156', '\040', '\061', '\012', '\154', '\123', '\147',
'\040', '\156', '\147', '\040', '\061', '\012', '\114', '\161',
'\164', '\040', '\164', '\150', '\040', '\061', '\012', '\156',
'\154', '\110', '\040', '\141', '\156', '\040', '\061', '\012',
'\165', '\161', '\107', '\040', '\161', '\165', '\040', '\061',
'\012', '\117', '\141', '\157', '\040', '\141', '\156', '\040',
'\061', '\012', '\150', '\154', '\130', '\040', '\164', '\150',
'\040', '\061', '\012', '\146', '\120', '\167', '\040', '\167',
'\141', '\040', '\061', '\012', '\164', '\111', '\142', '\040',
'\164', '\150', '\040', '\061', '\012', '\172', '\111', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\161', '\155',
'\107', '\040', '\161', '\165', '\040', '\061', '\012', '\170',
'\112', '\155', '\040', '\155', '\145', '\040', '\061', '\012',
'\126', '\147', '\167', '\040', '\156', '\147', '\040', '\061',
'\012', '\125', '\153', '\170', '\040', '\153', '\141', '\040',
'\061', '\012', '\172', '\164', '\110', '\040', '\164', '\150',
'\040', '\061', '\012', '\154', '\150', '\120', '\040', '\164',
'\150', '\040', '\061', '\012', '\112', '\164', '\153', '\040',
'\164', '\150', '\040', '\061', '\012', '\110', '\172', '\144',
'\040', '\163', '\172', '\040', '\061', '\012', '\171', '\170',
'\121', '\040', '\156', '\171', '\040', '\061', '\012', '\156',
'\162', '\120', '\040', '\141', '\156', '\040', '\061', '\012',
'\146', '\110', '\150', '\040', '\164', '\150', '\040', '\061',
'\012', '\131', '\143', '\164', '\040', '\164', '\150', '\040',
'\061', '\012', '\107', '\161', '\141', '\040', '\141', '\156',
'\040', '\061', '\012', '\106', '\147', '\171', '\040', '\156',
'\147', '\040', '\061', '\012', '\157', '\102', '\156', '\040',
'\141', '\156', '\040', '\061', '\012', '\166', '\165', '\103',
'\040', '\161', '\165', '\040', '\061', '\012', '\102', '\156',
'\172', '\040', '\141', '\156', '\040', '\061', '\012', '\166',
'\120', '\165', '\040', '\161', '\165', '\040', '\061', '\012',
'\170', '\106', '\146', '\040', '\146', '\157', '\040', '\061',
'\012', '\152', '\144', '\112', '\040', '\144', '\145', '\040',
'\061', '\012', '\146', '\107', '\146', '\040', '\146', '\157',
'\040', '\061', '\012', '\131', '\152', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\121', '\152', '\160', '\040',
'\151', '\152', '\040', '\061', '\012', '\170', '\124', '\152',
'\040', '\151', '\152', '\040', '\061', '\012', '\166', '\117',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\166',
'\114', '\167', '\040', '\166', '\141', '\040', '\061', '\012',
'\163', '\115', '\146', '\040', '\163', '\164', '\040', '\061',
'\012', '\157', '\126', '\154', '\040', '\157', '\156', '\040',
'\061', '\012', '\143', '\167', '\116', '\040', '\143', '\150',
'\040', '\061', '\012', '\163', '\147', '\122', '\040', '\156',
'\147', '\040', '\061', '\012', '\152', '\152', '\121', '\040',
'\151', '\152', '\040', '\061', '\012', '\167', '\172', '\122',
'\040', '\163', '\172', '\040', '\061', '\012', '\172', '\150',
'\131', '\040', '\164', '\150', '\040', '\061', '\012', '\166',
'\142', '\122', '\040', '\166', '\141', '\040', '\061', '\012',
'\167', '\147', '\127', '\040', '\156', '\147', '\040', '\061',
'\012', '\161', '\167', '\130', '\040', '\161', '\165', '\040',
'\061', '\012', '\116', '\170', '\167', '\040', '\167', '\141',
'\040', '\061', '\012', '\145', '\121', '\157', '\040', '\145',
'\162', '\040', '\061', '\012', '\155', '\121', '\160', '\040',
'\155', '\145', '\040', '\061', '\012', '\113', '\161', '\150',
'\040', '\164', '\150', '\040', '\061', '\012', '\164', '\166',
'\101', '\040', '\164', '\150', '\040', '\061', '\012', '\144',
'\154', '\112', '\040', '\154', '\145', '\040', '\061', '\012',
'\171', '\126', '\170', '\040', '\156', '\171', '\040', '\061',
'\012', '\163', '\120', '\146', '\040', '\163', '\164', '\040',
'\061', '\012', '\144', '\121', '\172', '\040', '\163', '\172',
'\040', '\061', '\012', '\163', '\132', '\142', '\040', '\163',
'\164', '\040', '\061', '\012', '\172', '\150', '\123', '\040',
'\164', '\150', '\040', '\061', '\012', '\153', '\127', '\142',
'\040', '\153', '\141', '\040', '\061', '\012', '\155', '\161',
'\120', '\040', '\161', '\165', '\040', '\061', '\012', '\106',
'\146', '\153', '\040', '\153', '\141', '\040', '\061', '\012',
'\170', '\161', '\154', '\040', '\161', '\165', '\040', '\061',
'\012', '\147', '\161', '\110', '\040', '\161', '\165', '\040',
'\061', '\012', '\124', '\154', '\171', '\040', '\154', '\145',
'\040', '\061', '\012', '\153', '\160', '\114', '\040', '\153',
'\141', '\040', '\061', '\012', '\161', '\105', '\147', '\040',
'\161', '\165', '\040', '\061', '\012', '\142', '\115', '\147',
'\040', '\156', '\147', '\040', '\061', '\012', '\170', '\122',
'\152', '\040', '\151', '\152', '\040', '\061', '\012', '\170',
'\163', '\103', '\040', '\163', '\164', '\040', '\061', '\012',
'\152', '\154', '\123', '\040', '\154', '\145', '\040', '\061',
'\012', '\154', '\172', '\115', '\040', '\154', '\145', '\040',
'\061', '\012', '\120', '\146', '\142', '\040', '\142', '\145',
'\040', '\061', '\012', '\165', '\112', '\166', '\040', '\161',
'\165', '\040', '\061', '\012', '\171', '\126', '\146', '\040',
'\156', '\171', '\040', '\061', '\012', '\132', '\147', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\170', '\142',
'\123', '\040', '\142', '\145', '\040', '\061', '\012', '\157',
'\106', '\150', '\040', '\164', '\150', '\040', '\061', '\012',
'\170', '\166', '\142', '\040', '\166', '\141', '\040', '\061',
'\012', '\150', '\143', '\125', '\040', '\164', '\150', '\040',
'\061', '\012', '\167', '\167', '\125', '\040', '\167', '\141',
'\040', '\061', '\012', '\171', '\103', '\147', '\040', '\156',
'\147', '\040', '\061', '\012', '\155', '\120', '\172', '\040',
'\163', '\172', '\040', '\061', '\012', '\163', '\112', '\144',
'\040', '\163', '\164', '\040', '\061', '\012', '\142', '\155',
'\116', '\040', '\155', '\145', '\040', '\061', '\012', '\165',
'\126', '\143', '\040', '\143', '\150', '\040', '\061', '\012',
'\161', '\144', '\123', '\040', '\161', '\165', '\040', '\061',
'\012', '\126', '\167', '\160', '\040', '\160', '\162', '\040',
'\061', '\012', '\126', '\155', '\154', '\040', '\154', '\145',
'\040', '\061', '\012', '\110', '\161', '\171', '\040', '\161',
'\165', '\040', '\061', '\012', '\114', '\146', '\172', '\040',
'\163', '\172', '\040', '\061', '\012', '\101', '\171', '\152',
'\040', '\151', '\152', '\040', '\061', '\012', '\171', '\170',
'\113', '\040', '\156', '\171', '\040', '\061', '\012', '\110',
'\167', '\166', '\040', '\166', '\141', '\040', '\061', '\012',
'\147', '\111', '\160', '\040', '\156', '\147', '\040', '\061',
'\012', '\132', '\147', '\164', '\040', '\164', '\150', '\040',
'\061', '\012', '\130', '\164', '\167', '\040', '\164', '\150',
'\040', '\061', '\012', '\150', '\114', '\146', '\040', '\164',
'\150', '\040', '\061', '\012', '\116', '\153', '\144', '\040',
'\144', '\145', '\040', '\061', '\012', '\152', '\115', '\163',
'\040', '\163', '\164', '\040', '\061', '\012', '\170', '\106',
'\164', '\040', '\164', '\150', '\040', '\061', '\012', '\170',
'\102', '\167', '\040', '\167', '\141', '\040', '\061', '\012',
'\167', '\110', '\144', '\040', '\144', '\145', '\040', '\061',
'\012', '\121', '\172', '\172', '\040', '\163', '\172', '\040',
'\061', '\012', '\147', '\131', '\164', '\040', '\164', '\150',
'\040', '\061', '\012', '\120', '\166', '\153', '\040', '\153',
'\141', '\040', '\061', '\012', '\160', '\166', '\131', '\040',
'\166', '\141', '\040', '\061', '\012', '\112', '\170', '\164',
'\040', '\164', '\150', '\040', '\061', '\012', '\165', '\147',
'\121', '\040', '\161', '\165', '\040', '\061', '\012', '\114',
'\161', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\170', '\154', '\114', '\040', '\154', '\145', '\040', '\061',
'\012', '\167', '\115', '\142', '\040', '\167', '\141', '\040',
'\061', '\012', '\123', '\142', '\172', '\040', '\163', '\172',
'\040', '\061', '\012', '\166', '\105', '\166', '\040', '\166',
'\141', '\040', '\061', '\012', '\161', '\146', '\172', '\040',
'\161', '\165', '\040', '\061', '\012', '\147', '\143', '\123',
'\040', '\143', '\150', '\040', '\061', '\012', '\164', '\103',
'\161', '\040', '\164', '\150', '\040', '\061', '\012', '\171',
'\110', '\160', '\040', '\160', '\162', '\040', '\061', '\012',
'\172', '\153', '\106', '\040', '\163', '\172', '\040', '\061',
'\012', '\170', '\165', '\113', '\040', '\161', '\165', '\040',
'\061', '\012', '\124', '\142', '\146', '\040', '\142', '\145',
'\040', '\061', '\012', '\111', '\160', '\147', '\040', '\156',
'\147', '\040', '\061', '\012', '\131', '\172', '\153', '\040',
'\163', '\172', '\040', '\061', '\012', '\121', '\167', '\172',
'\040', '\163', '\172', '\040', '\061', '\012', '\160', '\106',
'\152', '\040', '\151', '\152', '\040', '\061', '\012', '\152',
'\120', '\155', '\040', '\151', '\152', '\040', '\061', '\012',
'\104', '\160', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\160', '\112', '\172', '\040', '\163', '\172', '\040',
'\061', '\012', '\167', '\160', '\116', '\040', '\160', '\162',
'\040', '\061', '\012', '\167', '\172', '\105', '\040', '\163',
'\172', '\040', '\061', '\012', '\147', '\161', '\104', '\040',
'\161', '\165', '\040', '\061', '\012', '\130', '\167', '\155',
'\040', '\155', '\145', '\040', '\061', '\012', '\157', '\121',
'\170', '\040', '\157', '\156', '\040', '\061', '\012', '\154',
'\103', '\160', '\040', '\154', '\145', '\040', '\061', '\012',
'\115', '\150', '\153', '\040', '\164', '\150', '\040', '\061',
'\012', '\144', '\124', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\170', '\125', '\167', '\040', '\167', '\141',
'\040', '\061', '\012', '\150', '\147', '\105', '\040', '\164',
'\150', '\040', '\061', '\012', '\147', '\143', '\102', '\040',
'\143', '\150', '\040', '\061', '\012', '\150', '\160', '\112',
'\040', '\164', '\150', '\040', '\061', '\012', '\155', '\161',
'\113', '\040', '\161', '\165', '\040', '\061', '\012', '\147',
'\102', '\156', '\040', '\141', '\156', '\040', '\061', '\012',
'\150', '\111', '\166', '\040', '\164', '\150', '\040', '\061',
'\012', '\154', '\161', '\104', '\040', '\161', '\165', '\040',
'\061', '\012', '\167', '\120', '\170', '\040', '\167', '\141',
'\040', '\061', '\012', '\163', '\115', '\164', '\040', '\164',
'\150', '\040', '\061', '\012', '\171', '\130', '\167', '\040',
'\167', '\141', '\040', '\061', '\012', '\152', '\113', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\114', '\162',
'\172', '\040', '\145', '\162', '\040', '\061', '\012', '\110',
'\167', '\152', '\040', '\151', '\152', '\040', '\061', '\012',
'\171', '\146', '\127', '\040', '\156', '\171', '\040', '\061',
'\012', '\131', '\171', '\165', '\040', '\161', '\165', '\040',
'\061', '\012', '\161', '\131', '\163', '\040', '\161', '\165',
'\040', '\061', '\012', '\171', '\166', '\122', '\040', '\166',
'\141', '\040', '\061', '\012', '\163', '\122', '\172', '\040',
'\163', '\164', '\040', '\061', '\012', '\113', '\171', '\170',
'\040', '\156', '\171', '\040', '\061', '\012', '\156', '\170',
'\122', '\040', '\141', '\156', '\040', '\061', '\012', '\143',
'\144', '\112', '\040', '\143', '\150', '\040', '\061', '\012',
'\116', '\167', '\143', '\040', '\143', '\150', '\040', '\061',
'\012', '\164', '\142', '\105', '\040', '\164', '\150', '\040',
'\061', '\012', '\157', '\145', '\132', '\040', '\145', '\162',
'\040', '\061', '\012', '\142', '\143', '\121', '\040', '\143',
'\150', '\040', '\061', '\012', '\123', '\167', '\142', '\040',
'\167', '\141', '\040', '\061', '\012', '\111', '\153', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\102', '\166',
'\172', '\040', '\163', '\172', '\040', '\061', '\012', '\172',
'\150', '\106', '\040', '\164', '\150', '\040', '\061', '\012',
'\130', '\161', '\171', '\040', '\161', '\165', '\040', '\061',
'\012', '\153', '\113', '\142', '\040', '\153', '\141', '\040',
'\061', '\012', '\127', '\144', '\153', '\040', '\144', '\145',
'\040', '\061', '\012', '\167', '\160', '\120', '\040', '\160',
'\162', '\040', '\061', '\012', '\153', '\121', '\171', '\040',
'\153', '\141', '\040', '\061', '\012', '\102', '\161', '\145',
'\040', '\161', '\165', '\040', '\061', '\012', '\161', '\146',
'\132', '\040', '\161', '\165', '\040', '\061', '\012', '\160',
'\120', '\167', '\040', '\160', '\162', '\040', '\061', '\012',
'\101', '\157', '\150', '\040', '\164', '\150', '\040', '\061',
'\012', '\160', '\154', '\112', '\040', '\154', '\145', '\040',
'\061', '\012', '\131', '\156', '\166', '\040', '\141', '\156',
'\040', '\061', '\012', '\152', '\115', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\142', '\121', '\147', '\040',
'\156', '\147', '\040', '\061', '\012', '\141', '\146', '\115',
'\040', '\141', '\156', '\040', '\061', '\012', '\152', '\166',
'\117', '\040', '\151', '\152', '\040', '\061', '\012', '\145',
'\110', '\146', '\040', '\145', '\162', '\040', '\061', '\012',
'\150', '\121', '\147', '\040', '\164', '\150', '\040', '\061',
'\012', '\153', '\161', '\131', '\040', '\161', '\165', '\040',
'\061', '\012', '\172', '\112', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\160', '\131', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\161', '\145', '\115', '\040',
'\161', '\165', '\040', '\061', '\012', '\113', '\160', '\153',
'\040', '\153', '\141', '\040', '\061', '\012', '\153', '\146',
'\127', '\040', '\153', '\141', '\040', '\061', '\012', '\127',
'\144', '\163', '\040', '\163', '\164', '\040', '\061', '\012',
'\142', '\116', '\143', '\040', '\143', '\150', '\040', '\061',
'\012', '\166', '\102', '\170', '\040', '\166', '\141', '\040',
'\061', '\012', '\163', '\165', '\112', '\040', '\161', '\165',
'\040', '\061', '\012', '\161', '\105', '\170', '\040', '\161',
'\165', '\040', '\061', '\012', '\162', '\146', '\132', '\040',
'\145', '\162', '\040', '\061', '\012', '\157', '\110', '\147',
'\040', '\156', '\147', '\040', '\061', '\012', '\145', '\106',
'\167', '\040', '\145', '\162', '\040', '\061', '\012', '\146',
'\120', '\160', '\040', '\160', '\162', '\040', '\061', '\012',
'\153', '\104', '\142', '\040', '\153', '\141', '\040', '\061',
'\012', '\164', '\132', '\156', '\040', '\164', '\150', '\040',
'\061', '\012', '\144', '\143', '\113', '\040', '\143', '\150',
'\040', '\061', '\012', '\171', '\127', '\166', '\040', '\166',
'\141', '\040', '\061', '\012', '\125', '\170', '\166', '\040',
'\166', '\141', '\040', '\061', '\012', '\171', '\121', '\145',
'\040', '\145', '\162', '\040', '\061', '\012', '\132', '\152',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\127',
'\152', '\166', '\040', '\151', '\152', '\040', '\061', '\012',
'\171', '\147', '\117', '\040', '\156', '\147', '\040', '\061',
'\012', '\157', '\152', '\121', '\040', '\157', '\156', '\040',
'\061', '\012', '\113', '\167', '\143', '\040', '\143', '\150',
'\040', '\061', '\012', '\160', '\106', '\147', '\040', '\156',
'\147', '\040', '\061', '\012', '\163', '\115', '\144', '\040',
'\163', '\164', '\040', '\061', '\012', '\115', '\146', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\115', '\172',
'\171', '\040', '\163', '\172', '\040', '\061', '\012', '\116',
'\167', '\160', '\040', '\160', '\162', '\040', '\061', '\012',
'\171', '\167', '\124', '\040', '\167', '\141', '\040', '\061',
'\012', '\167', '\114', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\110', '\161', '\155', '\040', '\161', '\165',
'\040', '\061', '\012', '\161', '\163', '\103', '\040', '\161',
'\165', '\040', '\061', '\012', '\142', '\116', '\156', '\040',
'\141', '\156', '\040', '\061', '\012', '\142', '\125', '\166',
'\040', '\166', '\141', '\040', '\061', '\012', '\156', '\122',
'\143', '\040', '\143', '\150', '\040', '\061', '\012', '\122',
'\154', '\153', '\040', '\154', '\145', '\040', '\061', '\012',
'\102', '\161', '\160', '\040', '\161', '\165', '\040', '\061',
'\012', '\143', '\146', '\111', '\040', '\143', '\150', '\040',
'\061', '\012', '\155', '\126', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\161', '\107', '\152', '\040', '\161',
'\165', '\040', '\061', '\012', '\166', '\154', '\130', '\040',
'\154', '\145', '\040', '\061', '\012', '\153', '\146', '\107',
'\040', '\153', '\141', '\040', '\061', '\012', '\167', '\126',
'\144', '\040', '\144', '\145', '\040', '\061', '\012', '\143',
'\144', '\105', '\040', '\143', '\150', '\040', '\061', '\012',
'\150', '\172', '\105', '\040', '\164', '\150', '\040', '\061',
'\012', '\104', '\150', '\166', '\040', '\164', '\150', '\040',
'\061', '\012', '\142', '\172', '\152', '\040', '\163', '\172',
'\040', '\061', '\012', '\166', '\166', '\114', '\040', '\166',
'\141', '\040', '\061', '\012', '\142', '\172', '\121', '\040',
'\163', '\172', '\040', '\061', '\012', '\167', '\126', '\142',
'\040', '\167', '\141', '\040', '\061', '\012', '\132', '\170',
'\154', '\040', '\154', '\145', '\040', '\061', '\012', '\172',
'\114', '\167', '\040', '\163', '\172', '\040', '\061', '\012',
'\150', '\124', '\161', '\040', '\164', '\150', '\040', '\061',
'\012', '\126', '\161', '\160', '\040', '\161', '\165', '\040',
'\061', '\012', '\150', '\155', '\127', '\040', '\164', '\150',
'\040', '\061', '\012', '\146', '\154', '\104', '\040', '\154',
'\145', '\040', '\061', '\012', '\113', '\143', '\144', '\040',
'\143', '\150', '\040', '\061', '\012', '\160', '\104', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\153', '\166',
'\131', '\040', '\153', '\141', '\040', '\061', '\012', '\143',
'\121', '\154', '\040', '\143', '\150', '\040', '\061', '\012',
'\111', '\170', '\153', '\040', '\153', '\141', '\040', '\061',
'\012', '\163', '\107', '\146', '\040', '\163', '\164', '\040',
'\061', '\012', '\147', '\106', '\150', '\040', '\164', '\150',
'\040', '\061', '\012', '\122', '\153', '\144', '\040', '\144',
'\145', '\040', '\061', '\012', '\161', '\110', '\154', '\040',
'\161', '\165', '\040', '\061', '\012', '\162', '\103', '\147',
'\040', '\156', '\147', '\040', '\061', '\012', '\161', '\102',
'\156', '\040', '\141', '\156', '\040', '\061', '\012', '\163',
'\112', '\167', '\040', '\163', '\164', '\040', '\061', '\012',
'\143', '\127', '\152', '\040', '\143', '\150', '\040', '\061',
'\012', '\172', '\130', '\160', '\040', '\163', '\172', '\040',
'\061', '\012', '\110', '\150', '\154', '\040', '\164', '\150',
'\040', '\061', '\012', '\150', '\152', '\120', '\040', '\164',
'\150', '\040', '\061', '\012', '\161', '\154', '\132', '\040',
'\161', '\165', '\040', '\061', '\012', '\110', '\170', '\162',
'\040', '\145', '\162', '\040', '\061', '\012', '\172', '\162',
'\105', '\040', '\145', '\162', '\040', '\061', '\012', '\147',
'\153', '\110', '\040', '\156', '\147', '\040', '\061', '\012',
'\165', '\110', '\153', '\040', '\161', '\165', '\040', '\061',
'\012', '\107', '\172', '\155', '\040', '\163', '\172', '\040',
'\061', '\012', '\143', '\102', '\143', '\040', '\143', '\150',
'\040', '\061', '\012', '\172', '\146', '\146', '\040', '\163',
'\172', '\040', '\061', '\012', '\172', '\114', '\163', '\040',
'\163', '\164', '\040', '\061', '\012', '\125', '\161', '\171',
'\040', '\161', '\165', '\040', '\061', '\012', '\166', '\153',
'\104', '\040', '\153', '\141', '\040', '\061', '\012', '\146',
'\161', '\130', '\040', '\161', '\165', '\040', '\061', '\012',
'\150', '\114', '\152', '\040', '\164', '\150', '\040', '\061',
'\012', '\146', '\131', '\165', '\040', '\161', '\165', '\040',
'\061', '\012', '\152', '\113', '\167', '\040', '\151', '\152',
'\040', '\061', '\012', '\152', '\111', '\142', '\040', '\151',
'\152', '\040', '\061', '\012', '\156', '\162', '\125', '\040',
'\141', '\156', '\040', '\061', '\012', '\146', '\106', '\160',
'\040', '\160', '\162', '\040', '\061', '\012', '\163', '\142',
'\103', '\040', '\163', '\164', '\040', '\061', '\012', '\155',
'\107', '\166', '\040', '\166', '\141', '\040', '\061', '\012',
'\146', '\130', '\160', '\040', '\160', '\162', '\040', '\061',
'\012', '\120', '\153', '\166', '\040', '\153', '\141', '\040',
'\061', '\012', '\103', '\161', '\145', '\040', '\161', '\165',
'\040', '\061', '\012', '\143', '\103', '\170', '\040', '\143',
'\150', '\040', '\061', '\012', '\162', '\116', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\132', '\167', '\146',
'\040', '\167', '\141', '\040', '\061', '\012', '\112', '\147',
'\143', '\040', '\143', '\150', '\040', '\061', '\012', '\170',
'\154', '\121', '\040', '\154', '\145', '\040', '\061', '\012',
'\147', '\102', '\172', '\040', '\156', '\147', '\040', '\061',
'\012', '\143', '\111', '\170', '\040', '\143', '\150', '\040',
'\061', '\012', '\157', '\144', '\121', '\040', '\157', '\156',
'\040', '\061', '\012', '\121', '\156', '\172', '\040', '\141',
'\156', '\040', '\061', '\012', '\125', '\172', '\170', '\040',
'\163', '\172', '\040', '\061', '\012', '\112', '\160', '\164',
'\040', '\164', '\150', '\040', '\061', '\012', '\147', '\170',
'\130', '\040', '\156', '\147', '\040', '\061', '\012', '\132',
'\153', '\144', '\040', '\144', '\145', '\040', '\061', '\012',
'\130', '\153', '\153', '\040', '\153', '\141', '\040', '\061',
'\012', '\150', '\122', '\166', '\040', '\164', '\150', '\040',
'\061', '\012', '\171', '\143', '\126', '\040', '\143', '\150',
'\040', '\061', '\012', '\172', '\115', '\155', '\040', '\163',
'\172', '\040', '\061', '\012', '\145', '\102', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\147', '\110', '\144',
'\040', '\156', '\147', '\040', '\061', '\012', '\142', '\170',
'\125', '\040', '\142', '\145', '\040', '\061', '\012', '\170',
'\144', '\113', '\040', '\144', '\145', '\040', '\061', '\012',
'\155', '\121', '\143', '\040', '\143', '\150', '\040', '\061',
'\012', '\164', '\131', '\152', '\040', '\164', '\150', '\040',
'\061', '\012', '\150', '\154', '\106', '\040', '\164', '\150',
'\040', '\061', '\012', '\143', '\122', '\172', '\040', '\143',
'\150', '\040', '\061', '\012', '\154', '\107', '\172', '\040',
'\154', '\145', '\040', '\061', '\012', '\172', '\106', '\172',
'\040', '\172', '\145', '\040', '\061', '\012', '\161', '\117',
'\160', '\040', '\161', '\165', '\040', '\061', '\012', '\107',
'\147', '\143', '\040', '\143', '\150', '\040', '\061', '\012',
'\157', '\107', '\155', '\040', '\157', '\156', '\040', '\061',
'\012', '\130', '\156', '\160', '\040', '\141', '\156', '\040',
'\061', '\012', '\167', '\131', '\147', '\040', '\156', '\147',
'\040', '\061', '\012', '\167', '\165', '\112', '\040', '\161',
'\165', '\040', '\061', '\012', '\163', '\116', '\163', '\040',
'\163', '\164', '\040', '\061', '\012', '\172', '\161', '\125',
'\040', '\161', '\165', '\040', '\061', '\012', '\153', '\103',
'\160', '\040', '\153', '\141', '\040', '\061', '\012', '\127',
'\150', '\167', '\040', '\164', '\150', '\040', '\061', '\012',
'\156', '\121', '\170', '\040', '\141', '\156', '\040', '\061',
'\012', '\166', '\167', '\101', '\040', '\166', '\141', '\040',
'\061', '\012', '\126', '\143', '\147', '\040', '\143', '\150',
'\040', '\061', '\012', '\153', '\127', '\152', '\040', '\151',
'\152', '\040', '\061', '\012', '\110', '\161', '\144', '\040',
'\161', '\165', '\040', '\061', '\012', '\103', '\160', '\171',
'\040', '\160', '\162', '\040', '\061', '\012', '\172', '\143',
'\114', '\040', '\143', '\150', '\040', '\061', '\012', '\143',
'\146', '\106', '\040', '\143', '\150', '\040', '\061', '\012',
'\153', '\130', '\156', '\040', '\141', '\156', '\040', '\061',
'\012', '\141', '\130', '\152', '\040', '\141', '\156', '\040',
'\061', '\012', '\123', '\167', '\153', '\040', '\153', '\141',
'\040', '\061', '\012', '\146', '\150', '\161', '\040', '\164',
'\150', '\040', '\061', '\012', '\126', '\170', '\151', '\040',
'\151', '\156', '\040', '\061', '\012', '\107', '\161', '\165',
'\040', '\165', '\156', '\040', '\061', '\012', '\125', '\170',
'\144', '\040', '\144', '\145', '\040', '\061', '\012', '\172',
'\144', '\113', '\040', '\163', '\172', '\040', '\061', '\012',
'\150', '\132', '\161', '\040', '\164', '\150', '\040', '\061',
'\012', '\155', '\167', '\112', '\040', '\155', '\145', '\040',
'\061', '\012', '\143', '\166', '\104', '\040', '\143', '\150',
'\040', '\061', '\012', '\154', '\142', '\132', '\040', '\154',
'\145', '\040', '\061', '\012', '\120', '\172', '\154', '\040',
'\154', '\145', '\040', '\061', '\012', '\150', '\144', '\117',
'\040', '\164', '\150', '\040', '\061', '\012', '\150', '\112',
'\156', '\040', '\164', '\150', '\040', '\061', '\012', '\161',
'\127', '\160', '\040', '\161', '\165', '\040', '\061', '\012',
'\144', '\130', '\171', '\040', '\144', '\145', '\040', '\061',
'\012', '\146', '\165', '\125', '\040', '\161', '\165', '\040',
'\061', '\012', '\146', '\130', '\171', '\040', '\156', '\171',
'\040', '\061', '\012', '\170', '\156', '\114', '\040', '\141',
'\156', '\040', '\061', '\012', '\147', '\115', '\146', '\040',
'\156', '\147', '\040', '\061', '\012', '\162', '\116', '\146',
'\040', '\145', '\162', '\040', '\061', '\012', '\170', '\121',
'\150', '\040', '\164', '\150', '\040', '\061', '\012', '\153',
'\161', '\110', '\040', '\161', '\165', '\040', '\061', '\012',
'\162', '\106', '\172', '\040', '\145', '\162', '\040', '\061',
'\012', '\166', '\160', '\124', '\040', '\166', '\141', '\040',
'\061', '\012', '\116', '\167', '\171', '\040', '\167', '\141',
'\040', '\061', '\012', '\171', '\161', '\101', '\040', '\161',
'\165', '\040', '\061', '\012', '\166', '\150', '\117', '\040',
'\164', '\150', '\040', '\061', '\012', '\153', '\126', '\150',
'\040', '\164', '\150', '\040', '\061', '\012', '\156', '\131',
'\142', '\040', '\141', '\156', '\040', '\061', '\012', '\152',
'\166', '\116', '\040', '\151', '\152', '\040', '\061', '\012',
'\142', '\111', '\146', '\040', '\142', '\145', '\040', '\061',
'\012', '\161', '\161', '\123', '\040', '\161', '\165', '\040',
'\061', '\012', '\152', '\142', '\106', '\040', '\151', '\152',
'\040', '\061', '\012', '\147', '\115', '\153', '\040', '\156',
'\147', '\040', '\061', '\012', '\142', '\124', '\144', '\040',
'\144', '\145', '\040', '\061', '\012', '\122', '\150', '\144',
'\040', '\164', '\150', '\040', '\061', '\012', '\164', '\127',
'\161', '\040', '\164', '\150', '\040', '\061', '\012', '\147',
'\114', '\172', '\040', '\156', '\147', '\040', '\061', '\012',
'\146', '\163', '\104', '\040', '\163', '\164', '\040', '\061',
'\012', '\165', '\115', '\164', '\040', '\164', '\150', '\040',
'\061', '\012', '\171', '\110', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\130', '\147', '\152', '\040', '\156',
'\147', '\040', '\061', '\012', '\114', '\155', '\155', '\040',
'\155', '\145', '\040', '\061', '\012', '\166', '\153', '\125',
'\040', '\153', '\141', '\040', '\061', '\012', '\154', '\101',
'\170', '\040', '\154', '\145', '\040', '\061', '\012', '\113',
'\172', '\144', '\040', '\163', '\172', '\040', '\061', '\012',
'\150', '\113', '\155', '\040', '\164', '\150', '\040', '\061',
'\012', '\153', '\121', '\144', '\040', '\144', '\145', '\040',
'\061', '\012', '\147', '\106', '\143', '\040', '\143', '\150',
'\040', '\061', '\012', '\167', '\171', '\130', '\040', '\167',
'\141', '\040', '\061', '\012', '\172', '\146', '\125', '\040',
'\163', '\172', '\040', '\061', '\012', '\170', '\160', '\125',
'\040', '\160', '\162', '\040', '\061', '\012', '\171', '\167',
'\112', '\040', '\167', '\141', '\040', '\061', '\012', '\101',
'\171', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\147', '\111', '\165', '\040', '\161', '\165', '\040', '\061',
'\012', '\172', '\165', '\121', '\040', '\161', '\165', '\040',
'\061', '\012', '\126', '\146', '\156', '\040', '\141', '\156',
'\040', '\061', '\012', '\166', '\102', '\156', '\040', '\141',
'\156', '\040', '\061', '\012', '\110', '\164', '\171', '\040',
'\164', '\150', '\040', '\061', '\012', '\147', '\122', '\166',
'\040', '\156', '\147', '\040', '\061', '\012', '\160', '\124',
'\142', '\040', '\160', '\162', '\040', '\061', '\012', '\125',
'\161', '\170', '\040', '\161', '\165', '\040', '\061', '\012',
'\166', '\124', '\156', '\040', '\141', '\156', '\040', '\061',
'\012', '\166', '\112', '\143', '\040', '\143', '\150', '\040',
'\061', '\012', '\125', '\151', '\167', '\040', '\151', '\156',
'\040', '\061', '\012', '\112', '\154', '\160', '\040', '\154',
'\145', '\040', '\061', '\012', '\172', '\120', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\162', '\103', '\170',
'\040', '\145', '\162', '\040', '\061', '\012', '\154', '\161',
'\123', '\040', '\161', '\165', '\040', '\061', '\012', '\172',
'\154', '\132', '\040', '\154', '\145', '\040', '\061', '\012',
'\172', '\117', '\167', '\040', '\163', '\172', '\040', '\061',
'\012', '\153', '\154', '\113', '\040', '\154', '\145', '\040',
'\061', '\012', '\153', '\146', '\121', '\040', '\153', '\141',
'\040', '\061', '\012', '\165', '\112', '\170', '\040', '\161',
'\165', '\040', '\061', '\012', '\160', '\153', '\120', '\040',
'\153', '\141', '\040', '\061', '\012', '\107', '\161', '\172',
'\040', '\161', '\165', '\040', '\061', '\012', '\112', '\154',
'\143', '\040', '\143', '\150', '\040', '\061', '\012', '\171',
'\171', '\104', '\040', '\156', '\171', '\040', '\061', '\012',
'\152', '\150', '\130', '\040', '\164', '\150', '\040', '\061',
'\012', '\143', '\162', '\126', '\040', '\143', '\150', '\040',
'\061', '\012', '\104', '\167', '\167', '\040', '\167', '\141',
'\040', '\061', '\012', '\171', '\152', '\167', '\040', '\151',
'\152', '\040', '\061', '\012', '\161', '\160', '\130', '\040',
'\161', '\165', '\040', '\061', '\012', '\121', '\155', '\144',
'\040', '\144', '\145', '\040', '\061', '\012', '\171', '\127',
'\172', '\040', '\163', '\172', '\040', '\061', '\012', '\167',
'\120', '\144', '\040', '\144', '\145', '\040', '\061', '\012',
'\125', '\161', '\153', '\040', '\161', '\165', '\040', '\061',
'\012', '\156', '\142', '\122', '\040', '\141', '\156', '\040',
'\061', '\012', '\131', '\144', '\143', '\040', '\143', '\150',
'\040', '\061', '\012', '\161', '\121', '\154', '\040', '\161',
'\165', '\040', '\061', '\012', '\160', '\155', '\104', '\040',
'\155', '\145', '\040', '\061', '\012', '\112', '\153', '\152',
'\040', '\153', '\141', '\040', '\061', '\012', '\152', '\124',
'\153', '\040', '\153', '\141', '\040', '\061', '\012', '\167',
'\131', '\146', '\040', '\167', '\141', '\040', '\061', '\012',
'\132', '\172', '\170', '\040', '\163', '\172', '\040', '\061',
'\012', '\162', '\153', '\121', '\040', '\145', '\162', '\040',
'\061', '\012', '\142', '\104', '\160', '\040', '\160', '\162',
'\040', '\061', '\012', '\161', '\123', '\163', '\040', '\161',
'\165', '\040', '\061', '\012', '\147', '\130', '\162', '\040',
'\156', '\147', '\040', '\061', '\012', '\143', '\132', '\142',
'\040', '\143', '\150', '\040', '\061', '\012', '\116', '\147',
'\160', '\040', '\156', '\147', '\040', '\061', '\012', '\150',
'\161', '\121', '\040', '\164', '\150', '\040', '\061', '\012',
'\127', '\166', '\167', '\040', '\166', '\141', '\040', '\061',
'\012', '\127', '\142', '\167', '\040', '\167', '\141', '\040',
'\061', '\012', '\167', '\166', '\113', '\040', '\166', '\141',
'\040', '\061', '\012', '\143', '\112', '\146', '\040', '\143',
'\150', '\040', '\061', '\012', '\115', '\167', '\144', '\040',
'\144', '\145', '\040', '\061', '\012', '\144', '\144', '\112',
'\040', '\144', '\145', '\040', '\061', '\012', '\151', '\167',
'\105', '\040', '\151', '\156', '\040', '\061', '\012', '\142',
'\170', '\130', '\040', '\142', '\145', '\040', '\061', '\012',
'\152', '\170', '\124', '\040', '\151', '\152', '\040', '\061',
'\012', '\131', '\143', '\156', '\040', '\143', '\150', '\040',
'\061', '\012', '\167', '\115', '\146', '\040', '\167', '\141',
'\040', '\061', '\012', '\142', '\161', '\104', '\040', '\161',
'\165', '\040', '\061', '\012', '\171', '\161', '\111', '\040',
'\161', '\165', '\040', '\061', '\012', '\144', '\122', '\152',
'\040', '\144', '\145', '\040', '\061', '\012', '\167', '\131',
'\171', '\040', '\167', '\141', '\040', '\061', '\012', '\124',
'\170', '\172', '\040', '\163', '\172', '\040', '\061', '\012',
'\166', '\162', '\116', '\040', '\145', '\162', '\040', '\061',
'\012', '\161', '\126', '\165', '\040', '\165', '\156', '\040',
'\061', '\012', '\155', '\122', '\152', '\040', '\151', '\152',
'\040', '\061', '\012', '\106', '\152', '\170', '\040', '\151',
'\152', '\040', '\061', '\012', '\146', '\171', '\121', '\040',
'\156', '\171', '\040', '\061', '\012', '\170', '\145', '\111',
'\040', '\145', '\162', '\040', '\061', '\012', '\127', '\161',
'\146', '\040', '\161', '\165', '\040', '\061', '\012', '\112',
'\154', '\171', '\040', '\154', '\145', '\040', '\061', '\012',
'\152', '\104', '\142', '\040', '\151', '\152', '\040', '\061',
'\012', '\131', '\172', '\165', '\040', '\161', '\165', '\040',
'\061', '\012', '\102', '\170', '\155', '\040', '\155', '\145',
'\040', '\061', '\012', '\167', '\114', '\152', '\040', '\151',
'\152', '\040', '\061', '\012', '\142', '\161', '\143', '\040',
'\143', '\150', '\040', '\061', '\012', '\163', '\147', '\113',
'\040', '\156', '\147', '\040', '\061', '\012', '\153', '\161',
'\127', '\040', '\161', '\165', '\040', '\061', '\012', '\132',
'\163', '\156', '\040', '\141', '\156', '\040', '\061', '\012',
'\106', '\161', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\162', '\130', '\172', '\040', '\145', '\162', '\040',
'\061', '\012', '\154', '\112', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\152', '\105', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\156', '\103', '\142', '\040',
'\141', '\156', '\040', '\061', '\012', '\130', '\162', '\144',
'\040', '\145', '\162', '\040', '\061', '\012', '\122', '\172',
'\150', '\040', '\164', '\150', '\040', '\061', '\012', '\147',
'\146', '\127', '\040', '\156', '\147', '\040', '\061', '\012',
'\130', '\164', '\154', '\040', '\164', '\150', '\040', '\061',
'\012', '\155', '\124', '\170', '\040', '\155', '\145', '\040',
'\061', '\012', '\165', '\146', '\101', '\040', '\161', '\165',
'\040', '\061', '\012', '\167', '\152', '\121', '\040', '\151',
'\152', '\040', '\061', '\012', '\170', '\154', '\127', '\040',
'\154', '\145', '\040', '\061', '\012', '\144', '\161', '\110',
'\040', '\161', '\165', '\040', '\061', '\012', '\170', '\150',
'\115', '\040', '\164', '\150', '\040', '\061', '\012', '\130',
'\167', '\164', '\040', '\164', '\150', '\040', '\061', '\012',
'\144', '\156', '\127', '\040', '\141', '\156', '\040', '\061',
'\012', '\122', '\146', '\172', '\040', '\163', '\172', '\040',
'\061', '\012', '\146', '\113', '\160', '\040', '\160', '\162',
'\040', '\061', '\012', '\153', '\106', '\167', '\040', '\153',
'\141', '\040', '\061', '\012', '\121', '\165', '\166', '\040',
'\161', '\165', '\040', '\061', '\012', '\155', '\130', '\167',
'\040', '\155', '\145', '\040', '\061', '\012', '\126', '\153',
'\167', '\040', '\153', '\141', '\040', '\061', '\012', '\164',
'\106', '\150', '\040', '\143', '\150', '\040', '\061', '\012',
'\150', '\111', '\165', '\040', '\164', '\150', '\040', '\061',
'\012', '\154', '\124', '\146', '\040', '\154', '\145', '\040',
'\061', '\012', '\115', '\167', '\166', '\040', '\166', '\141',
'\040', '\061', '\012', '\167', '\166', '\124', '\040', '\166',
'\141', '\040', '\061', '\012', '\153', '\113', '\160', '\040',
'\153', '\141', '\040', '\061', '\012', '\164', '\122', '\166',
'\040', '\164', '\150', '\040', '\061', '\012', '\167', '\130',
'\157', '\040', '\157', '\156', '\040', '\061', '\012', '\166',
'\172', '\114', '\040', '\163', '\172', '\040', '\061', '\012',
'\112', '\143', '\146', '\040', '\143', '\150', '\040', '\061',
'\012', '\124', '\142', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\152', '\144', '\121', '\040', '\144', '\145',
'\040', '\061', '\012', '\122', '\142', '\170', '\040', '\142',
'\145', '\040', '\061', '\012', '\112', '\162', '\155', '\040',
'\145', '\162', '\040', '\061', '\012', '\163', '\122', '\152',
'\040', '\163', '\164', '\040', '\061', '\012', '\172', '\127',
'\172', '\040', '\163', '\172', '\040', '\061', '\012', '\161',
'\156', '\105', '\040', '\141', '\156', '\040', '\061', '\012',
'\113', '\143', '\146', '\040', '\143', '\150', '\040', '\061',
'\012', '\121', '\161', '\155', '\040', '\161', '\165', '\040',
'\061', '\012', '\146', '\160', '\111', '\040', '\160', '\162',
'\040', '\061', '\012', '\151', '\116', '\167', '\040', '\151',
'\156', '\040', '\061', '\012', '\165', '\152', '\105', '\040',
'\161', '\165', '\040', '\061', '\012', '\161', '\110', '\166',
'\040', '\161', '\165', '\040', '\061', '\012', '\112', '\166',
'\170', '\040', '\166', '\141', '\040', '\061', '\012', '\150',
'\110', '\143', '\040', '\164', '\150', '\040', '\061', '\012',
'\146', '\166', '\112', '\040', '\166', '\141', '\040', '\061',
'\012', '\156', '\161', '\131', '\040', '\141', '\156', '\040',
'\061', '\012', '\167', '\160', '\105', '\040', '\167', '\141',
'\040', '\061', '\012', '\110', '\167', '\163', '\040', '\163',
'\164', '\040', '\061', '\012', '\170', '\172', '\111', '\040',
'\163', '\172', '\040', '\061', '\012', '\103', '\147', '\147',
'\040', '\156', '\147', '\040', '\061', '\012', '\143', '\127',
'\144', '\040', '\143', '\150', '\040', '\061', '\012', '\161',
'\165', '\126', '\040', '\165', '\156', '\040', '\061', '\012',
'\142', '\152', '\116', '\040', '\151', '\152', '\040', '\061',
'\012', '\170', '\121', '\160', '\040', '\160', '\162', '\040',
'\061', '\012', '\142', '\170', '\105', '\040', '\142', '\145',
'\040', '\061', '\012', '\165', '\126', '\153', '\040', '\161',
'\165', '\040', '\061', '\012', '\127', '\162', '\154', '\040',
'\145', '\162', '\040', '\061', '\012', '\114', '\162', '\170',
'\040', '\145', '\162', '\040', '\061', '\012', '\111', '\167',
'\154', '\040', '\154', '\145', '\040', '\061', '\012', '\141',
'\161', '\102', '\040', '\141', '\156', '\040', '\061', '\012',
'\126', '\143', '\160', '\040', '\143', '\150', '\040', '\061',
'\012', '\127', '\167', '\164', '\040', '\164', '\150', '\040',
'\061', '\012', '\141', '\107', '\170', '\040', '\141', '\156',
'\040', '\061', '\012', '\146', '\120', '\156', '\040', '\141',
'\156', '\040', '\061', '\012', '\155', '\106', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\161', '\147', '\144',
'\040', '\161', '\165', '\040', '\061', '\012', '\132', '\163',
'\144', '\040', '\163', '\164', '\040', '\061', '\012', '\126',
'\170', '\163', '\040', '\163', '\172', '\040', '\061', '\012',
'\113', '\150', '\161', '\040', '\164', '\150', '\040', '\061',
'\012', '\167', '\123', '\163', '\040', '\163', '\164', '\040',
'\061', '\012', '\157', '\107', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\131', '\172', '\166', '\040', '\163',
'\172', '\040', '\061', '\012', '\144', '\161', '\130', '\040',
'\161', '\165', '\040', '\061', '\012', '\155', '\160', '\121',
'\040', '\155', '\145', '\040', '\061', '\012', '\113', '\143',
'\160', '\040', '\143', '\150', '\040', '\061', '\012', '\163',
'\167', '\104', '\040', '\163', '\164', '\040', '\061', '\012',
'\162', '\132', '\147', '\040', '\156', '\147', '\040', '\061',
'\012', '\152', '\131', '\155', '\040', '\151', '\152', '\040',
'\061', '\012', '\165', '\112', '\154', '\040', '\161', '\165',
'\040', '\061', '\012', '\166', '\127', '\166', '\040', '\166',
'\141', '\040', '\061', '\012', '\163', '\166', '\117', '\040',
'\163', '\164', '\040', '\061', '\012', '\160', '\106', '\144',
'\040', '\144', '\145', '\040', '\061', '\012', '\131', '\152',
'\170', '\040', '\151', '\152', '\040', '\061', '\012', '\164',
'\160', '\111', '\040', '\164', '\150', '\040', '\061', '\012',
'\144', '\126', '\164', '\040', '\164', '\150', '\040', '\061',
'\012', '\163', '\116', '\155', '\040', '\163', '\164', '\040',
'\061', '\012', '\154', '\113', '\164', '\040', '\164', '\150',
'\040', '\061', '\012', '\156', '\166', '\125', '\040', '\141',
'\156', '\040', '\061', '\012', '\110', '\170', '\146', '\040',
'\146', '\157', '\040', '\061', '\012', '\160', '\165', '\127',
'\040', '\161', '\165', '\040', '\061', '\012', '\167', '\112',
'\147', '\040', '\156', '\147', '\040', '\061', '\012', '\147',
'\170', '\122', '\040', '\156', '\147', '\040', '\061', '\012',
'\146', '\101', '\147', '\040', '\156', '\147', '\040', '\061',
'\012', '\131', '\161', '\145', '\040', '\161', '\165', '\040',
'\061', '\012', '\120', '\167', '\172', '\040', '\163', '\172',
'\040', '\061', '\012', '\150', '\155', '\103', '\040', '\164',
'\150', '\040', '\061', '\012', '\171', '\154', '\112', '\040',
'\154', '\145', '\040', '\061', '\012', '\155', '\161', '\124',
'\040', '\161', '\165', '\040', '\061', '\012', '\143', '\103',
'\146', '\040', '\143', '\150', '\040', '\061', '\012', '\160',
'\132', '\147', '\040', '\156', '\147', '\040', '\061', '\012',
'\141', '\106', '\170', '\040', '\141', '\156', '\040', '\061',
'\012', '\157', '\131', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\146', '\120', '\152', '\040', '\151', '\152',
'\040', '\061', '\012', '\144', '\112', '\164', '\040', '\164',
'\150', '\040', '\061', '\012', '\170', '\167', '\156', '\040',
'\141', '\156', '\040', '\061', '\012', '\103', '\143', '\142',
'\040', '\143', '\150', '\040', '\061', '\012', '\167', '\106',
'\156', '\040', '\141', '\156', '\040', '\061', '\012', '\167',
'\162', '\131', '\040', '\145', '\162', '\040', '\061', '\012',
'\103', '\144', '\150', '\040', '\164', '\150', '\040', '\061',
'\012', '\150', '\114', '\143', '\040', '\164', '\150', '\040',
'\061', '\012', '\132', '\170', '\147', '\040', '\156', '\147',
'\040', '\061', '\012', '\115', '\170', '\143', '\040', '\143',
'\150', '\040', '\061', '\012', '\150', '\143', '\131', '\040',
'\164', '\150', '\040', '\061', '\012', '\172', '\126', '\167',
'\040', '\163', '\172', '\040', '\061', '\012', '\150', '\153',
'\126', '\040', '\164', '\150', '\040', '\061', '\012', '\164',
'\170', '\105', '\040', '\164', '\150', '\040', '\061', '\012',
'\171', '\166', '\124', '\040', '\166', '\141', '\040', '\061',
'\012', '\115', '\154', '\167', '\040', '\154', '\145', '\040',
'\061', '\012', '\172', '\164', '\106', '\040', '\164', '\150',
'\040', '\061', '\012', '\146', '\107', '\144', '\040', '\144',
'\145', '\040', '\061', '\012', '\172', '\152', '\105', '\040',
'\163', '\172', '\040', '\061', '\012', '\147', '\152', '\115',
'\040', '\156', '\147', '\040', '\061', '\012', '\152', '\167',
'\120', '\040', '\151', '\152', '\040', '\061', '\012', '\113',
'\170', '\164', '\040', '\164', '\150', '\040', '\061', '\012',
'\171', '\106', '\147', '\040', '\156', '\147', '\040', '\061',
'\012', '\127', '\143', '\147', '\040', '\143', '\150', '\040',
'\061', '\012', '\164', '\150', '\132', '\040', '\143', '\150',
'\040', '\061', '\012', '\150', '\172', '\121', '\040', '\164',
'\150', '\040', '\061', '\012', '\112', '\164', '\147', '\040',
'\164', '\150', '\040', '\061', '\012', '\171', '\166', '\113',
'\040', '\166', '\141', '\040', '\061', '\012', '\172', '\126',
'\172', '\040', '\163', '\172', '\040', '\061', '\012', '\120',
'\167', '\142', '\040', '\167', '\141', '\040', '\061', '\012',
'\170', '\161', '\104', '\040', '\161', '\165', '\040', '\061',
'\012', '\165', '\171', '\121', '\040', '\161', '\165', '\040',
'\061', '\012', '\147', '\103', '\155', '\040', '\156', '\147',
'\040', '\061', '\012', '\172', '\152', '\125', '\040', '\163',
'\172', '\040', '\061', '\012', '\170', '\107', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\115', '\161', '\171',
'\040', '\161', '\165', '\040', '\061', '\012', '\117', '\143',
'\170', '\040', '\143', '\150', '\040', '\061', '\012', '\163',
'\161', '\115', '\040', '\161', '\165', '\040', '\061', '\012',
'\154', '\122', '\142', '\040', '\154', '\145', '\040', '\061',
'\012', '\164', '\146', '\125', '\040', '\164', '\150', '\040',
'\061', '\012', '\166', '\132', '\147', '\040', '\156', '\147',
'\040', '\061', '\012', '\146', '\132', '\143', '\040', '\143',
'\150', '\040', '\061', '\012', '\147', '\160', '\132', '\040',
'\156', '\147', '\040', '\061', '\012', '\106', '\160', '\146',
'\040', '\160', '\162', '\040', '\061', '\012', '\161', '\164',
'\121', '\040', '\164', '\150', '\040', '\061', '\012', '\155',
'\150', '\132', '\040', '\164', '\150', '\040', '\061', '\012',
'\142', '\161', '\106', '\040', '\161', '\165', '\040', '\061',
'\012', '\146', '\147', '\107', '\040', '\156', '\147', '\040',
'\061', '\012', '\167', '\157', '\124', '\040', '\157', '\156',
'\040', '\061', '\012', '\172', '\123', '\142', '\040', '\163',
'\172', '\040', '\061', '\012', '\167', '\170', '\123', '\040',
'\167', '\141', '\040', '\061', '\012', '\127', '\162', '\146',
'\040', '\145', '\162', '\040', '\061', '\012', '\117', '\161',
'\153', '\040', '\161', '\165', '\040', '\061', '\012', '\170',
'\114', '\143', '\040', '\143', '\150', '\040', '\061', '\012',
'\121', '\172', '\152', '\040', '\163', '\172', '\040', '\061',
'\012', '\167', '\130', '\153', '\040', '\153', '\141', '\040',
'\061', '\012', '\164', '\144', '\130', '\040', '\164', '\150',
'\040', '\061', '\012', '\112', '\161', '\143', '\040', '\143',
'\150', '\040', '\061', '\012', '\146', '\130', '\153', '\040',
'\153', '\141', '\040', '\061', '\012', '\153', '\102', '\144',
'\040', '\144', '\145', '\040', '\061', '\012', '\151', '\161',
'\127', '\040', '\161', '\165', '\040', '\061', '\012', '\117',
'\143', '\142', '\040', '\143', '\150', '\040', '\061', '\012',
'\146', '\125', '\157', '\040', '\157', '\156', '\040', '\061',
'\012', '\152', '\130', '\153', '\040', '\151', '\152', '\040',
'\061', '\012', '\150', '\142', '\111', '\040', '\164', '\150',
'\040', '\061', '\012', '\132', '\143', '\147', '\040', '\143',
'\150', '\040', '\061', '\012', '\172', '\167', '\123', '\040',
'\167', '\141', '\040', '\061', '\012', '\143', '\126', '\155',
'\040', '\143', '\150', '\040', '\061', '\012', '\166', '\167',
'\152', '\040', '\151', '\152', '\040', '\061', '\012', '\147',
'\167', '\107', '\040', '\156', '\147', '\040', '\061', '\012',
'\172', '\163', '\115', '\040', '\163', '\164', '\040', '\061',
'\012', '\120', '\161', '\157', '\040', '\161', '\165', '\040',
'\061', '\012', '\150', '\120', '\152', '\040', '\164', '\150',
'\040', '\061', '\012', '\146', '\167', '\107', '\040', '\167',
'\141', '\040', '\061', '\012', '\130', '\167', '\150', '\040',
'\164', '\150', '\040', '\061', '\012', '\127', '\167', '\150',
'\040', '\164', '\150', '\040', '\061', '\012', '\126', '\161',
'\167', '\040', '\161', '\165', '\040', '\061', '\012', '\166',
'\155', '\131', '\040', '\166', '\141', '\040', '\061', '\012',
'\165', '\166', '\106', '\040', '\161', '\165', '\040', '\061',
'\012', '\164', '\146', '\113', '\040', '\164', '\150', '\040',
'\061', '\012', '\130', '\142', '\147', '\040', '\156', '\147',
'\040', '\061', '\012', '\116', '\146', '\156', '\040', '\141',
'\156', '\040', '\061', '\012', '\167', '\160', '\110', '\040',
'\160', '\162', '\040', '\061', '\012', '\171', '\112', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\167', '\161',
'\117', '\040', '\161', '\165', '\040', '\061', '\012', '\156',
'\143', '\126', '\040', '\143', '\150', '\040', '\061', '\012',
'\167', '\147', '\115', '\040', '\156', '\147', '\040', '\061',
'\012', '\146', '\121', '\153', '\040', '\153', '\141', '\040',
'\061', '\012', '\150', '\166', '\113', '\040', '\164', '\150',
'\040', '\061', '\012', '\161', '\114', '\162', '\040', '\161',
'\165', '\040', '\061', '\012', '\127', '\143', '\145', '\040',
'\143', '\150', '\040', '\061', '\012', '\153', '\106', '\156',
'\040', '\141', '\156', '\040', '\061', '\012', '\162', '\102',
'\155', '\040', '\145', '\162', '\040', '\061', '\012', '\155',
'\144', '\126', '\040', '\144', '\145', '\040', '\061', '\012',
'\152', '\106', '\143', '\040', '\143', '\150', '\040', '\061',
'\012', '\153', '\156', '\130', '\040', '\141', '\156', '\040',
'\061', '\012', '\156', '\115', '\146', '\040', '\141', '\156',
'\040', '\061', '\012', '\163', '\103', '\143', '\040', '\143',
'\150', '\040', '\061', '\012', '\160', '\103', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\165', '\112', '\164',
'\040', '\164', '\150', '\040', '\061', '\012', '\103', '\146',
'\153', '\040', '\153', '\141', '\040', '\061', '\012', '\103',
'\170', '\142', '\040', '\142', '\145', '\040', '\061', '\012',
'\146', '\117', '\167', '\040', '\167', '\141', '\040', '\061',
'\012', '\141', '\112', '\172', '\040', '\141', '\156', '\040',
'\061', '\012', '\147', '\114', '\164', '\040', '\164', '\150',
'\040', '\061', '\012', '\142', '\155', '\130', '\040', '\155',
'\145', '\040', '\061', '\012', '\131', '\146', '\157', '\040',
'\157', '\156', '\040', '\061', '\012', '\144', '\112', '\146',
'\040', '\144', '\145', '\040', '\061', '\012', '\105', '\141',
'\171', '\040', '\141', '\156', '\040', '\061', '\012', '\161',
'\123', '\144', '\040', '\161', '\165', '\040', '\061', '\012',
'\155', '\152', '\121', '\040', '\151', '\152', '\040', '\061',
'\012', '\160', '\116', '\153', '\040', '\153', '\141', '\040',
'\061', '\012', '\116', '\166', '\150', '\040', '\164', '\150',
'\040', '\061', '\012', '\170', '\153', '\130', '\040', '\153',
'\141', '\040', '\061', '\012', '\112', '\167', '\170', '\040',
'\167', '\141', '\040', '\061', '\012', '\152', '\166', '\114',
'\040', '\151', '\152', '\040', '\061', '\012', '\146', '\160',
'\110', '\040', '\160', '\162', '\040', '\061', '\012', '\160',
'\170', '\117', '\040', '\160', '\162', '\040', '\061', '\012',
'\166', '\120', '\170', '\040', '\166', '\141', '\040', '\061',
'\012', '\144', '\127', '\165', '\040', '\161', '\165', '\040',
'\061', '\012', '\150', '\142', '\122', '\040', '\164', '\150',
'\040', '\061', '\012', '\167', '\157', '\105', '\040', '\157',
'\156', '\040', '\061', '\012', '\147', '\164', '\130', '\040',
'\164', '\150', '\040', '\061', '\012', '\142', '\146', '\106',
'\040', '\142', '\145', '\040', '\061', '\012', '\155', '\166',
'\127', '\040', '\166', '\141', '\040', '\061', '\012', '\170',
'\163', '\115', '\040', '\163', '\164', '\040', '\061', '\012',
'\167', '\114', '\166', '\040', '\166', '\141', '\040', '\061',
'\012', '\167', '\110', '\150', '\040', '\164', '\150', '\040',
'\061', '\012', '\163', '\103', '\156', '\040', '\141', '\156',
'\040', '\061', '\012', '\160', '\114', '\167', '\040', '\160',
'\162', '\040', '\061', '\012', '\153', '\130', '\167', '\040',
'\153', '\141', '\040', '\061', '\012', '\170', '\126', '\154',
'\040', '\154', '\145', '\040', '\061', '\012', '\150', '\103',
'\143', '\040', '\164', '\150', '\040', '\061', '\012', '\157',
'\125', '\153', '\040', '\157', '\156', '\040', '\061', '\012',
'\172', '\143', '\106', '\040', '\143', '\150', '\040', '\061',
'\012', '\163', '\115', '\166', '\040', '\163', '\164', '\040',
'\061', '\012', '\144', '\162', '\132', '\040', '\145', '\162',
'\040', '\061', '\012', '\167', '\146', '\117', '\040', '\167',
'\141', '\040', '\061', '\012', '\171', '\106', '\166', '\040',
'\166', '\141', '\040', '\061', '\012', '\150', '\130', '\141',
'\040', '\164', '\150', '\040', '\061', '\012', '\161', '\115',
'\165', '\040', '\165', '\156', '\040', '\061', '\012', '\146',
'\103', '\166', '\040', '\166', '\141', '\040', '\061', '\012',
'\146', '\167', '\103', '\040', '\167', '\141', '\040', '\061',
'\012', '\157', '\124', '\147', '\040', '\156', '\147', '\040',
'\061', '\012', '\106', '\153', '\155', '\040', '\153', '\141',
'\040', '\061', '\012', '\145', '\121', '\164', '\040', '\164',
'\150', '\040', '\061', '\012', '\120', '\170', '\144', '\040',
'\144', '\145', '\040', '\061', '\012', '\153', '\152', '\107',
'\040', '\151', '\152', '\040', '\061', '\012', '\164', '\107',
'\163', '\040', '\164', '\150', '\040', '\061', '\012', '\144',
'\161', '\102', '\040', '\161', '\165', '\040', '\061', '\012',
'\146', '\155', '\130', '\040', '\155', '\145', '\040', '\061',
'\012', '\170', '\131', '\151', '\040', '\151', '\156', '\040',
'\061', '\012', '\153', '\111', '\153', '\040', '\153', '\141',
'\040', '\061', '\012', '\166', '\104', '\144', '\040', '\144',
'\145', '\040', '\061', '\012', '\153', '\166', '\103', '\040',
'\153', '\141', '\040', '\061', '\012', '\161', '\164', '\132',
'\040', '\164', '\150', '\040', '\061', '\012', '\146', '\120',
'\143', '\040', '\143', '\150', '\040', '\061', '\012', '\144',
'\160', '\116', '\040', '\144', '\145', '\040', '\061', '\012',
'\150', '\116', '\162', '\040', '\164', '\150', '\040', '\061',
'\012', '\132', '\156', '\152', '\040', '\141', '\156', '\040',
'\061', '\012', '\110', '\153', '\145', '\040', '\145', '\162',
'\040', '\061', '\012', '\111', '\161', '\160', '\040', '\161',
'\165', '\040', '\061', '\012', '\167', '\146', '\116', '\040',
'\167', '\141', '\040', '\061', '\012', '\126', '\150', '\170',
'\040', '\164', '\150', '\040', '\061', '\012', '\104', '\147',
'\153', '\040', '\156', '\147', '\040', '\061', '\012', '\155',
'\153', '\121', '\040', '\153', '\141', '\040', '\061', '\012',
'\127', '\170', '\144', '\040', '\144', '\145', '\040', '\061',
'\012', '\111', '\143', '\170', '\040', '\143', '\150', '\040',
'\061', '\012', '\171', '\131', '\164', '\040', '\164', '\150',
'\040', '\061', '\012', '\164', '\161', '\170', '\040', '\164',
'\150', '\040', '\061', '\012', '\132', '\166', '\146', '\040',
'\166', '\141', '\040', '\061', '\012', '\163', '\170', '\125',
'\040', '\163', '\164', '\040', '\061', '\012', '\114', '\161',
'\153', '\040', '\161', '\165', '\040', '\061', '\012', '\156',
'\146', '\111', '\040', '\141', '\156', '\040', '\061', '\012',
'\152', '\171', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\127', '\166', '\156', '\040', '\141', '\156', '\040',
'\061', '\012', '\123', '\144', '\166', '\040', '\144', '\145',
'\040', '\061', '\012', '\165', '\131', '\143', '\040', '\143',
'\150', '\040', '\061', '\012', '\121', '\147', '\155', '\040',
'\156', '\147', '\040', '\061', '\012', '\143', '\130', '\141',
'\040', '\143', '\150', '\040', '\061', '\012', '\167', '\102',
'\170', '\040', '\167', '\141', '\040', '\061', '\012', '\160',
'\131', '\170', '\040', '\160', '\162', '\040', '\061', '\012',
'\152', '\127', '\154', '\040', '\154', '\145', '\040', '\061',
'\012', '\113', '\146', '\167', '\040', '\167', '\141', '\040',
'\061', '\012', '\161', '\152', '\112', '\040', '\161', '\165',
'\040', '\061', '\012', '\120', '\152', '\152', '\040', '\151',
'\152', '\040', '\061', '\012', '\141', '\152', '\130', '\040',
'\141', '\156', '\040', '\061', '\012', '\163', '\130', '\144',
'\040', '\163', '\164', '\040', '\061', '\012', '\170', '\110',
'\147', '\040', '\156', '\147', '\040', '\061', '\012', '\170',
'\150', '\101', '\040', '\164', '\150', '\040', '\061', '\012',
'\162', '\107', '\155', '\040', '\145', '\162', '\040', '\061',
'\012', '\121', '\164', '\155', '\040', '\164', '\150', '\040',
'\061', '\012', '\163', '\162', '\131', '\040', '\145', '\162',
'\040', '\061', '\012', '\161', '\120', '\170', '\040', '\161',
'\165', '\040', '\061', '\012', '\167', '\122', '\172', '\040',
'\163', '\172', '\040', '\061', '\012', '\167', '\117', '\147',
'\040', '\167', '\141', '\040', '\061', '\012', '\146', '\114',
'\147', '\040', '\156', '\147', '\040', '\061', '\012', '\150',
'\121', '\164', '\040', '\164', '\150', '\040', '\061', '\012',
'\152', '\150', '\127', '\040', '\164', '\150', '\040', '\061',
'\012', '\103', '\167', '\153', '\040', '\153', '\141', '\040',
'\061', '\012', '\172', '\127', '\154', '\040', '\154', '\145',
'\040', '\061', '\012', '\167', '\112', '\143', '\040', '\143',
'\150', '\040', '\061', '\012', '\120', '\170', '\166', '\040',
'\166', '\141', '\040', '\061', '\012', '\156', '\160', '\111',
'\040', '\141', '\156', '\040', '\061', '\012', '\154', '\156',
'\127', '\040', '\141', '\156', '\040', '\061', '\012', '\153',
'\161', '\171', '\040', '\161', '\165', '\040', '\061', '\012',
'\171', '\167', '\147', '\040', '\156', '\147', '\040', '\061',
'\012', '\163', '\103', '\144', '\040', '\163', '\164', '\040',
'\061', '\012', '\161', '\146', '\106', '\040', '\161', '\165',
'\040', '\061', '\012', '\161', '\160', '\147', '\040', '\161',
'\165', '\040', '\061', '\012', '\115', '\142', '\170', '\040',
'\142', '\145', '\040', '\061', '\012', '\156', '\167', '\116',
'\040', '\141', '\156', '\040', '\061', '\012', '\167', '\114',
'\163', '\040', '\163', '\164', '\040', '\061', '\012', '\127',
'\143', '\166', '\040', '\143', '\150', '\040', '\061', '\012',
'\126', '\166', '\162', '\040', '\145', '\162', '\040', '\061',
'\012', '\126', '\153', '\170', '\040', '\153', '\141', '\040',
'\061', '\012', '\144', '\155', '\125', '\040', '\144', '\145',
'\040', '\061', '\012', '\146', '\107', '\163', '\040', '\163',
'\164', '\040', '\061', '\012', '\147', '\112', '\172', '\040',
'\156', '\147', '\040', '\061', '\012', '\144', '\106', '\172',
'\040', '\163', '\172', '\040', '\061', '\012', '\161', '\103',
'\146', '\040', '\161', '\165', '\040', '\061', '\012', '\154',
'\166', '\127', '\040', '\154', '\145', '\040', '\061', '\012',
'\123', '\166', '\142', '\040', '\166', '\141', '\040', '\061',
'\012', '\170', '\112', '\162', '\040', '\145', '\162', '\040',
'\061', '\012', '\165', '\132', '\146', '\040', '\161', '\165',
'\040', '\061', '\012', '\124', '\152', '\143', '\040', '\143',
'\150', '\040', '\061', '\012', '\160', '\111', '\152', '\040',
'\151', '\152', '\040', '\061', '\012', '\142', '\126', '\147',
'\040', '\156', '\147', '\040', '\061', '\012', '\166', '\144',
'\117', '\040', '\144', '\145', '\040', '\061', '\012', '\154',
'\124', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\142', '\115', '\150', '\040', '\164', '\150', '\040', '\061',
'\012', '\156', '\104', '\155', '\040', '\141', '\156', '\040',
'\061', '\012', '\124', '\172', '\142', '\040', '\163', '\172',
'\040', '\061', '\012', '\160', '\103', '\167', '\040', '\160',
'\162', '\040', '\061', '\012', '\121', '\153', '\147', '\040',
'\156', '\147', '\040', '\061', '\012', '\146', '\160', '\131',
'\040', '\160', '\162', '\040', '\061', '\012', '\171', '\121',
'\152', '\040', '\151', '\152', '\040', '\061', '\012', '\161',
'\151', '\103', '\040', '\161', '\165', '\040', '\061', '\012',
'\155', '\121', '\151', '\040', '\151', '\156', '\040', '\061',
'\012', '\167', '\125', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\153', '\126', '\152', '\040', '\151', '\152',
'\040', '\061', '\012', '\164', '\152', '\121', '\040', '\164',
'\150', '\040', '\061', '\012', '\155', '\130', '\152', '\040',
'\151', '\152', '\040', '\061', '\012', '\130', '\146', '\144',
'\040', '\144', '\145', '\040', '\061', '\012', '\143', '\147',
'\111', '\040', '\143', '\150', '\040', '\061', '\012', '\120',
'\153', '\152', '\040', '\151', '\152', '\040', '\061', '\012',
'\152', '\152', '\106', '\040', '\151', '\152', '\040', '\061',
'\012', '\152', '\162', '\112', '\040', '\145', '\162', '\040',
'\061', '\012', '\161', '\167', '\132', '\040', '\161', '\165',
'\040', '\061', '\012', '\122', '\164', '\172', '\040', '\164',
'\150', '\040', '\061', '\012', '\146', '\110', '\142', '\040',
'\142', '\145', '\040', '\061', '\012', '\110', '\147', '\170',
'\040', '\156', '\147', '\040', '\061', '\012', '\104', '\172',
'\146', '\040', '\163', '\172', '\040', '\061', '\012', '\143',
'\142', '\105', '\040', '\143', '\150', '\040', '\061', '\012',
'\130', '\146', '\163', '\040', '\163', '\164', '\040', '\061',
'\012', '\122', '\152', '\155', '\040', '\151', '\152', '\040',
'\061', '\012', '\146', '\155', '\131', '\040', '\155', '\145',
'\040', '\061', '\012', '\167', '\131', '\152', '\040', '\151',
'\152', '\040', '\061', '\012', '\165', '\106', '\160', '\040',
'\161', '\165', '\040', '\061', '\012', '\166', '\127', '\155',
'\040', '\166', '\141', '\040', '\061', '\012', '\171', '\126',
'\143', '\040', '\143', '\150', '\040', '\061', '\012', '\143',
'\147', '\114', '\040', '\143', '\150', '\040', '\061', '\012',
'\172', '\155', '\122', '\040', '\163', '\172', '\040', '\061',
'\012', '\172', '\146', '\102', '\040', '\163', '\172', '\040',
'\061', '\012', '\172', '\156', '\110', '\040', '\141', '\156',
'\040', '\061', '\012', '\150', '\147', '\107', '\040', '\164',
'\150', '\040', '\061', '\012', '\170', '\165', '\105', '\040',
'\161', '\165', '\040', '\061', '\012', '\102', '\163', '\154',
'\040', '\154', '\145', '\040', '\061', '\012', '\157', '\127',
'\170', '\040', '\157', '\156', '\040', '\061', '\012', '\120',
'\152', '\154', '\040', '\154', '\145', '\040', '\061', '\012',
'\112', '\144', '\146', '\040', '\144', '\145', '\040', '\061',
'\012', '\130', '\155', '\160', '\040', '\155', '\145', '\040',
'\061', '\012', '\163', '\147', '\117', '\040', '\156', '\147',
'\040', '\061', '\012', '\150', '\103', '\152', '\040', '\164',
'\150', '\040', '\061', '\012', '\167', '\164', '\122', '\040',
'\164', '\150', '\040', '\061', '\012', '\146', '\104', '\163',
'\040', '\163', '\164', '\040', '\061', '\012', '\142', '\121',
'\142', '\040', '\142', '\145', '\040', '\061', '\012', '\161',
'\165', '\115', '\040', '\165', '\156', '\040', '\061', '\012',
'\146', '\114', '\154', '\040', '\154', '\145', '\040', '\061',
'\012', '\116', '\150', '\160', '\040', '\164', '\150', '\040',
'\061', '\012', '\172', '\156', '\125', '\040', '\141', '\156',
'\040', '\061', '\012', '\163', '\144', '\123', '\040', '\163',
'\164', '\040', '\061', '\012', '\167', '\127', '\165', '\040',
'\161', '\165', '\040', '\061', '\012', '\164', '\106', '\161',
'\040', '\164', '\150', '\040', '\061', '\012', '\143', '\106',
'\161', '\040', '\143', '\150', '\040', '\061', '\012', '\127',
'\167', '\154', '\040', '\154', '\145', '\040', '\061', '\012',
'\114', '\161', '\171', '\040', '\161', '\165', '\040', '\061',
'\012', '\156', '\161', '\121', '\040', '\141', '\156', '\040',
'\061', '\012', '\172', '\155', '\104', '\040', '\163', '\172',
'\040', '\061', '\012', '\107', '\171', '\170', '\040', '\156',
'\171', '\040', '\061', '\012', '\142', '\153', '\122', '\040',
'\153', '\141', '\040', '\061', '\012', '\154', '\121', '\167',
'\040', '\154', '\145', '\040', '\061', '\012', '\120', '\161',
'\155', '\040', '\161', '\165', '\040', '\061', '\012', '\106',
'\167', '\153', '\040', '\153', '\141', '\040', '\061', '\012',
'\164', '\110', '\164', '\040', '\164', '\150', '\040', '\061',
'\012', '\152', '\171', '\114', '\040', '\151', '\152', '\040',
'\061', '\012', '\161', '\170', '\101', '\040', '\161', '\165',
'\040', '\061', '\012', '\155', '\162', '\103', '\040', '\145',
'\162', '\040', '\061', '\012', '\161', '\172', '\114', '\040',
'\161', '\165', '\040', '\061', '\012', '\152', '\112', '\147',
'\040', '\156', '\147', '\040', '\061', '\012', '\152', '\146',
'\123', '\040', '\151', '\152', '\040', '\061', '\012', '\161',
'\115', '\150', '\040', '\164', '\150', '\040', '\061', '\012',
'\155', '\154', '\126', '\040', '\154', '\145', '\040', '\061',
'\012', '\142', '\153', '\112', '\040', '\153', '\141', '\040',
'\061', '\012', '\153', '\156', '\110', '\040', '\141', '\156',
'\040', '\061', '\012', '\125', '\161', '\164', '\040', '\164',
'\150', '\040', '\061', '\012', '\143', '\165', '\106', '\040',
'\143', '\150', '\040', '\061', '\012', '\151', '\131', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\146', '\125',
'\145', '\040', '\145', '\162', '\040', '\061', '\012', '\163',
'\102', '\142', '\040', '\163', '\164', '\040', '\061', '\012',
'\116', '\150', '\170', '\040', '\164', '\150', '\040', '\061',
'\012', '\162', '\150', '\120', '\040', '\164', '\150', '\040',
'\061', '\012', '\144', '\127', '\160', '\040', '\144', '\145',
'\040', '\061', '\012', '\131', '\166', '\146', '\040', '\166',
'\141', '\040', '\061', '\012', '\122', '\170', '\162', '\040',
'\145', '\162', '\040', '\061', '\012', '\153', '\172', '\107',
'\040', '\163', '\172', '\040', '\061', '\012', '\170', '\165',
'\132', '\040', '\161', '\165', '\040', '\061', '\012', '\170',
'\166', '\104', '\040', '\166', '\141', '\040', '\061', '\012',
'\146', '\167', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\150', '\152', '\112', '\040', '\164', '\150', '\040',
'\061', '\012', '\153', '\132', '\162', '\040', '\145', '\162',
'\040', '\061', '\012', '\166', '\112', '\156', '\040', '\141',
'\156', '\040', '\061', '\012', '\170', '\156', '\117', '\040',
'\141', '\156', '\040', '\061', '\012', '\166', '\143', '\101',
'\040', '\143', '\150', '\040', '\061', '\012', '\155', '\146',
'\113', '\040', '\155', '\145', '\040', '\061', '\012', '\166',
'\152', '\123', '\040', '\151', '\152', '\040', '\061', '\012',
'\116', '\166', '\160', '\040', '\166', '\141', '\040', '\061',
'\012', '\144', '\146', '\102', '\040', '\144', '\145', '\040',
'\061', '\012', '\121', '\163', '\142', '\040', '\163', '\164',
'\040', '\061', '\012', '\144', '\130', '\160', '\040', '\160',
'\162', '\040', '\061', '\012', '\172', '\122', '\154', '\040',
'\154', '\145', '\040', '\061', '\012', '\105', '\152', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\141', '\107',
'\172', '\040', '\141', '\156', '\040', '\061', '\012', '\156',
'\110', '\147', '\040', '\141', '\156', '\040', '\061', '\012',
'\142', '\166', '\101', '\040', '\166', '\141', '\040', '\061',
'\012', '\102', '\146', '\144', '\040', '\144', '\145', '\040',
'\061', '\012', '\172', '\126', '\147', '\040', '\156', '\147',
'\040', '\061', '\012', '\172', '\163', '\131', '\040', '\163',
'\164', '\040', '\061', '\012', '\150', '\126', '\172', '\040',
'\164', '\150', '\040', '\061', '\012', '\120', '\152', '\155',
'\040', '\151', '\152', '\040', '\061', '\012', '\163', '\130',
'\151', '\040', '\151', '\156', '\040', '\061', '\012', '\151',
'\113', '\152', '\040', '\151', '\156', '\040', '\061', '\012',
'\161', '\141', '\105', '\040', '\141', '\156', '\040', '\061',
'\012', '\103', '\146', '\152', '\040', '\151', '\152', '\040',
'\061', '\012', '\172', '\115', '\143', '\040', '\143', '\150',
'\040', '\061', '\012', '\155', '\147', '\132', '\040', '\156',
'\147', '\040', '\061', '\012', '\166', '\147', '\101', '\040',
'\156', '\147', '\040', '\061', '\012', '\151', '\167', '\112',
'\040', '\151', '\156', '\040', '\061', '\012', '\166', '\107',
'\170', '\040', '\166', '\141', '\040', '\061', '\012', '\164',
'\146', '\131', '\040', '\164', '\150', '\040', '\061', '\012',
'\154', '\152', '\110', '\040', '\154', '\145', '\040', '\061',
'\012', '\172', '\107', '\152', '\040', '\163', '\172', '\040',
'\061', '\012', '\142', '\155', '\113', '\040', '\155', '\145',
'\040', '\061', '\012', '\156', '\125', '\161', '\040', '\141',
'\156', '\040', '\061', '\012', '\172', '\122', '\164', '\040',
'\164', '\150', '\040', '\061', '\012', '\164', '\107', '\152',
'\040', '\164', '\150', '\040', '\061', '\012', '\172', '\126',
'\144', '\040', '\163', '\172', '\040', '\061', '\012', '\152',
'\123', '\162', '\040', '\145', '\162', '\040', '\061', '\012',
'\146', '\116', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\170', '\124', '\147', '\040', '\156', '\147', '\040',
'\061', '\012', '\156', '\161', '\105', '\040', '\141', '\156',
'\040', '\061', '\012', '\127', '\156', '\147', '\040', '\141',
'\156', '\040', '\061', '\012', '\172', '\126', '\166', '\040',
'\163', '\172', '\040', '\061', '\012', '\147', '\126', '\163',
'\040', '\156', '\147', '\040', '\061', '\012', '\146', '\116',
'\144', '\040', '\144', '\145', '\040', '\061', '\012', '\161',
'\116', '\167', '\040', '\161', '\165', '\040', '\061', '\012',
'\132', '\156', '\143', '\040', '\143', '\150', '\040', '\061',
'\012', '\165', '\112', '\163', '\040', '\161', '\165', '\040',
'\061', '\012', '\171', '\166', '\112', '\040', '\166', '\141',
'\040', '\061', '\012', '\170', '\154', '\115', '\040', '\154',
'\145', '\040', '\061', '\012', '\112', '\172', '\143', '\040',
'\143', '\150', '\040', '\061', '\012', '\166', '\122', '\150',
'\040', '\164', '\150', '\040', '\061', '\012', '\146', '\143',
'\113', '\040', '\143', '\150', '\040', '\061', '\012', '\167',
'\126', '\156', '\040', '\141', '\156', '\040', '\061', '\012',
'\162', '\127', '\167', '\040', '\145', '\162', '\040', '\061',
'\012', '\143', '\110', '\153', '\040', '\143', '\150', '\040',
'\061', '\012', '\166', '\117', '\170', '\040', '\166', '\141',
'\040', '\061', '\012', '\151', '\125', '\141', '\040', '\141',
'\156', '\040', '\061', '\012', '\156', '\127', '\156', '\040',
'\141', '\156', '\040', '\061', '\012', '\172', '\161', '\132',
'\040', '\161', '\165', '\040', '\061', '\012', '\170', '\106',
'\152', '\040', '\151', '\152', '\040', '\061', '\012', '\156',
'\103', '\147', '\040', '\141', '\156', '\040', '\061', '\012',
'\146', '\131', '\152', '\040', '\151', '\152', '\040', '\061',
'\012', '\126', '\163', '\170', '\040', '\163', '\164', '\040',
'\061', '\012', '\155', '\164', '\115', '\040', '\164', '\150',
'\040', '\061', '\012', '\155', '\150', '\107', '\040', '\164',
'\150', '\040', '\061', '\012', '\152', '\164', '\116', '\040',
'\164', '\150', '\040', '\061', '\012', '\150', '\143', '\103',
'\040', '\164', '\150', '\040', '\061', '\012', '\116', '\167',
'\153', '\040', '\153', '\141', '\040', '\061', '\012', '\144',
'\130', '\165', '\040', '\161', '\165', '\040', '\061', '\012',
'\155', '\112', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\170', '\163', '\117', '\040', '\163', '\164', '\040',
'\061', '\012', '\161', '\122', '\156', '\040', '\141', '\156',
'\040', '\061', '\012', '\122', '\156', '\152', '\040', '\141',
'\156', '\040', '\061', '\012', '\153', '\155', '\120', '\040',
'\153', '\141', '\040', '\061', '\012', '\130', '\164', '\147',
'\040', '\164', '\150', '\040', '\061', '\012', '\107', '\166',
'\150', '\040', '\164', '\150', '\040', '\061', '\012', '\152',
'\161', '\166', '\040', '\161', '\165', '\040', '\061', '\012',
'\143', '\126', '\154', '\040', '\143', '\150', '\040', '\061',
'\012', '\143', '\144', '\111', '\040', '\143', '\150', '\040',
'\061', '\012', '\172', '\144', '\105', '\040', '\163', '\172',
'\040', '\061', '\012', '\150', '\132', '\153', '\040', '\164',
'\150', '\040', '\061', '\012', '\102', '\144', '\170', '\040',
'\144', '\145', '\040', '\061', '\012', '\150', '\110', '\156',
'\040', '\164', '\150', '\040', '\061', '\012', '\150', '\153',
'\107', '\040', '\164', '\150', '\040', '\061', '\012', '\166',
'\170', '\112', '\040', '\166', '\141', '\040', '\061', '\012',
'\154', '\162', '\101', '\040', '\145', '\162', '\040', '\061',
'\012', '\154', '\162', '\124', '\040', '\145', '\162', '\040',
'\061', '\012', '\150', '\152', '\126', '\040', '\164', '\150',
'\040', '\061', '\012', '\161', '\142', '\111', '\040', '\161',
'\165', '\040', '\061', '\012', '\155', '\124', '\147', '\040',
'\156', '\147', '\040', '\061', '\012', '\146', '\155', '\126',
'\040', '\155', '\145', '\040', '\061', '\012', '\162', '\104',
'\153', '\040', '\145', '\162', '\040', '\061', '\012', '\144',
'\116', '\144', '\040', '\144', '\145', '\040', '\061', '\012',
'\107', '\172', '\152', '\040', '\163', '\172', '\040', '\061',
'\012', '\141', '\126', '\152', '\040', '\141', '\156', '\040',
'\061', '\012', '\166', '\116', '\162', '\040', '\145', '\162',
'\040', '\061', '\012', '\153', '\130', '\141', '\040', '\141',
'\156', '\040', '\061', '\012', '\162', '\107', '\163', '\040',
'\145', '\162', '\040', '\061', '\012', '\170', '\141', '\130',
'\040', '\141', '\156', '\040', '\061', '\012', '\143', '\162',
'\107', '\040', '\143', '\150', '\040', '\061', '\012', '\161',
'\112', '\141', '\040', '\141', '\156', '\040', '\061', '\012',
'\152', '\104', '\164', '\040', '\164', '\150', '\040', '\061',
'\012', '\115', '\146', '\170', '\040', '\146', '\157', '\040',
'\061', '\012', '\170', '\105', '\141', '\040', '\141', '\156',
'\040', '\061', '\012', '\121', '\166', '\172', '\040', '\163',
'\172', '\040', '\061', '\012', '\167', '\122', '\147', '\040',
'\156', '\147', '\040', '\061', '\012', '\160', '\106', '\143',
'\040', '\143', '\150', '\040', '\061', '\012', '\103', '\160',
'\166', '\040', '\166', '\141', '\040', '\061', '\012', '\162',
'\112', '\153', '\040', '\145', '\162', '\040', '\061', '\012',
'\146', '\142', '\121', '\040', '\142', '\145', '\040', '\061',
'\012', '\130', '\172', '\147', '\040', '\156', '\147', '\040',
'\061', '\012', '\161', '\106', '\171', '\040', '\161', '\165',
'\040', '\061', '\012', '\132', '\146', '\152', '\040', '\151',
'\152', '\040', '\061', '\012', '\164', '\167', '\105', '\040',
'\164', '\150', '\040', '\061', '\012', '\117', '\141', '\161',
'\040', '\141', '\156', '\040', '\061', '\012', '\171', '\163',
'\131', '\040', '\163', '\164', '\040', '\061', '\012', '\167',
'\144', '\132', '\040', '\144', '\145', '\040', '\061', '\012',
'\147', '\155', '\117', '\040', '\156', '\147', '\040', '\061',
'\012', '\167', '\107', '\156', '\040', '\141', '\156', '\040',
'\061', '\012', '\167', '\122', '\153', '\040', '\153', '\141',
'\040', '\061', '\012', '\147', '\161', '\123', '\040', '\161',
'\165', '\040', '\061', '\012', '\101', '\147', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\124', '\167', '\166',
'\040', '\166', '\141', '\040', '\061', '\012', '\121', '\156',
'\166', '\040', '\141', '\156', '\040', '\061', '\012', '\142',
'\126', '\166', '\040', '\166', '\141', '\040', '\061', '\012',
'\143', '\104', '\167', '\040', '\143', '\150', '\040', '\061',
'\012', '\164', '\107', '\161', '\040', '\164', '\150', '\040',
'\061', '\012', '\146', '\142', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\124', '\166', '\167', '\040', '\166',
'\141', '\040', '\061', '\012', '\155', '\116', '\166', '\040',
'\166', '\141', '\040', '\061', '\012', '\144', '\164', '\105',
'\040', '\164', '\150', '\040', '\061', '\012', '\160', '\172',
'\120', '\040', '\163', '\172', '\040', '\061', '\012', '\126',
'\163', '\167', '\040', '\163', '\172', '\040', '\061', '\012',
'\161', '\107', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\161', '\120', '\143', '\040', '\143', '\150', '\040',
'\061', '\012', '\161', '\171', '\103', '\040', '\161', '\165',
'\040', '\061', '\012', '\156', '\170', '\106', '\040', '\141',
'\156', '\040', '\061', '\012', '\152', '\104', '\154', '\040',
'\154', '\145', '\040', '\061', '\012', '\152', '\110', '\164',
'\040', '\164', '\150', '\040', '\061', '\012', '\146', '\170',
'\132', '\040', '\146', '\157', '\040', '\061', '\012', '\163',
'\121', '\143', '\040', '\143', '\150', '\040', '\061', '\012',
'\156', '\155', '\110', '\040', '\141', '\156', '\040', '\061',
'\012', '\170', '\162', '\104', '\040', '\145', '\162', '\040',
'\061', '\012', '\150', '\115', '\150', '\040', '\164', '\150',
'\040', '\061', '\012', '\166', '\110', '\153', '\040', '\153',
'\141', '\040', '\061', '\012', '\150', '\155', '\123', '\040',
'\164', '\150', '\040', '\061', '\012', '\130', '\144', '\164',
'\040', '\164', '\150', '\040', '\061', '\012', '\130', '\167',
'\154', '\040', '\154', '\145', '\040', '\061', '\012', '\165',
'\112', '\162', '\040', '\161', '\165', '\040', '\061', '\012',
'\163', '\120', '\153', '\040', '\163', '\164', '\040', '\061',
'\012', '\130', '\152', '\160', '\040', '\151', '\152', '\040',
'\061', '\012', '\125', '\161', '\151', '\040', '\161', '\165',
'\040', '\061', '\012', '\153', '\147', '\104', '\040', '\156',
'\147', '\040', '\061', '\012', '\152', '\147', '\111', '\040',
'\156', '\147', '\040', '\061', '\012', '\165', '\106', '\167',
'\040', '\161', '\165', '\040', '\061', '\012', '\170', '\116',
'\144', '\040', '\144', '\145', '\040', '\061', '\012', '\144',
'\150', '\111', '\040', '\164', '\150', '\040', '\061', '\012',
'\114', '\170', '\157', '\040', '\157', '\156', '\040', '\061',
'\012', '\123', '\146', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\172', '\122', '\160', '\040', '\163', '\172',
'\040', '\061', '\012', '\170', '\167', '\113', '\040', '\167',
'\141', '\040', '\061', '\012', '\146', '\155', '\102', '\040',
'\155', '\145', '\040', '\061', '\012', '\166', '\162', '\126',
'\040', '\145', '\162', '\040', '\061', '\012', '\161', '\123',
'\146', '\040', '\161', '\165', '\040', '\061', '\012', '\152',
'\120', '\156', '\040', '\141', '\156', '\040', '\061', '\012',
'\110', '\142', '\160', '\040', '\160', '\162', '\040', '\061',
'\012', '\142', '\112', '\164', '\040', '\164', '\150', '\040',
'\061', '\012', '\154', '\161', '\121', '\040', '\161', '\165',
'\040', '\061', '\012', '\170', '\123', '\144', '\040', '\144',
'\145', '\040', '\061', '\012', '\144', '\115', '\153', '\040',
'\144', '\145', '\040', '\061', '\012', '\166', '\126', '\172',
'\040', '\163', '\172', '\040', '\061', '\012', '\166', '\153',
'\113', '\040', '\153', '\141', '\040', '\061', '\012', '\130',
'\144', '\163', '\040', '\144', '\145', '\040', '\061', '\012',
'\171', '\142', '\102', '\040', '\142', '\145', '\040', '\061',
'\012', '\147', '\160', '\105', '\040', '\156', '\147', '\040',
'\061', '\012', '\161', '\143', '\103', '\040', '\143', '\150',
'\040', '\061', '\012', '\160', '\170', '\114', '\040', '\160',
'\162', '\040', '\061', '\012', '\147', '\120', '\155', '\040',
'\156', '\147', '\040', '\061', '\012', '\102', '\160', '\144',
'\040', '\144', '\145', '\040', '\061', '\012', '\144', '\160',
'\102', '\040', '\144', '\145', '\040', '\061', '\012', '\152',
'\154', '\112', '\040', '\154', '\145', '\040', '\061', '\012',
'\160', '\153', '\103', '\040', '\153', '\141', '\040', '\061',
'\012', '\171', '\160', '\120', '\040', '\160', '\162', '\040',
'\061', '\012', '\116', '\161', '\155', '\040', '\161', '\165',
'\040', '\061', '\012', '\164', '\147', '\132', '\040', '\164',
'\150', '\040', '\061', '\012', '\105', '\161', '\157', '\040',
'\161', '\165', '\040', '\061', '\012', '\144', '\122', '\153',
'\040', '\144', '\145', '\040', '\061', '\012', '\125', '\142',
'\143', '\040', '\143', '\150', '\040', '\061', '\012', '\170',
'\150', '\131', '\040', '\164', '\150', '\040', '\061', '\012',
'\154', '\112', '\144', '\040', '\154', '\145', '\040', '\061',
'\012', '\160', '\166', '\116', '\040', '\166', '\141', '\040',
'\061', '\012', '\121', '\146', '\143', '\040', '\143', '\150',
'\040', '\061', '\012', '\104', '\142', '\167', '\040', '\167',
'\141', '\040', '\061', '\012', '\163', '\106', '\143', '\040',
'\143', '\150', '\040', '\061', '\012', '\167', '\153', '\130',
'\040', '\153', '\141', '\040', '\061', '\012', '\170', '\160',
'\122', '\040', '\160', '\162', '\040', '\061', '\012', '\160',
'\152', '\112', '\040', '\151', '\152', '\040', '\061', '\012',
'\147', '\153', '\121', '\040', '\156', '\147', '\040', '\061',
'\012', '\162', '\115', '\146', '\040', '\145', '\162', '\040',
'\061', '\012', '\112', '\163', '\156', '\040', '\141', '\156',
'\040', '\061', '\012', '\170', '\117', '\167', '\040', '\167',
'\141', '\040', '\061', '\012', '\104', '\161', '\165', '\040',
'\165', '\156', '\040', '\061', '\012', '\156', '\142', '\112',
'\040', '\141', '\156', '\040', '\061', '\012', '\147', '\166',
'\106', '\040', '\156', '\147', '\040', '\061', '\012', '\106',
'\156', '\160', '\040', '\141', '\156', '\040', '\061', '\012',
'\152', '\160', '\126', '\040', '\151', '\152', '\040', '\061',
'\012', '\161', '\164', '\104', '\040', '\164', '\150', '\040',
'\061', '\012', '\165', '\105', '\152', '\040', '\161', '\165',
'\040', '\061', '\012', '\171', '\150', '\131', '\040', '\164',
'\150', '\040', '\061', '\012', '\117', '\150', '\161', '\040',
'\164', '\150', '\040', '\061', '\012', '\156', '\130', '\171',
'\040', '\141', '\156', '\040', '\061', '\012', '\160', '\144',
'\125', '\040', '\144', '\145', '\040', '\061', '\012', '\155',
'\104', '\172', '\040', '\163', '\172', '\040', '\061', '\012',
'\151', '\126', '\153', '\040', '\151', '\156', '\040', '\061',
'\012', '\110', '\161', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\170', '\160', '\132', '\040', '\160', '\157',
'\040', '\061', '\012', '\141', '\145', '\125', '\040', '\141',
'\156', '\040', '\061', '\012', '\163', '\152', '\132', '\040',
'\163', '\164', '\040', '\061', '\012', '\163', '\107', '\160',
'\040', '\163', '\164', '\040', '\061', '\012', '\127', '\161',
'\156', '\040', '\141', '\156', '\040', '\061', '\012', '\170',
'\161', '\123', '\040', '\161', '\165', '\040', '\061', '\012',
'\112', '\152', '\143', '\040', '\143', '\150', '\040', '\061',
'\012', '\161', '\120', '\160', '\040', '\161', '\165', '\040',
'\061', '\012', '\163', '\130', '\172', '\040', '\163', '\164',
'\040', '\061', '\012', '\170', '\166', '\120', '\040', '\166',
'\141', '\040', '\061', '\012', '\127', '\142', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\164', '\152', '\113',
'\040', '\164', '\150', '\040', '\061', '\012', '\154', '\150',
'\110', '\040', '\164', '\150', '\040', '\061', '\012', '\150',
'\161', '\126', '\040', '\164', '\150', '\040', '\061', '\012',
'\144', '\131', '\146', '\040', '\144', '\145', '\040', '\061',
'\012', '\160', '\106', '\153', '\040', '\153', '\141', '\040',
'\061', '\012', '\163', '\106', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\165', '\110', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\166', '\150', '\101', '\040',
'\164', '\150', '\040', '\061', '\012', '\152', '\154', '\105',
'\040', '\154', '\145', '\040', '\061', '\012', '\163', '\161',
'\102', '\040', '\161', '\165', '\040', '\061', '\012', '\161',
'\156', '\162', '\040', '\141', '\156', '\040', '\061', '\012',
'\106', '\170', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\172', '\110', '\156', '\040', '\141', '\156', '\040',
'\061', '\012', '\160', '\144', '\102', '\040', '\144', '\145',
'\040', '\061', '\012', '\167', '\110', '\143', '\040', '\143',
'\150', '\040', '\061', '\012', '\120', '\170', '\152', '\040',
'\151', '\152', '\040', '\061', '\012', '\147', '\110', '\170',
'\040', '\156', '\147', '\040', '\061', '\012', '\156', '\161',
'\112', '\040', '\141', '\156', '\040', '\061', '\012', '\157',
'\161', '\130', '\040', '\161', '\165', '\040', '\061', '\012',
'\130', '\142', '\171', '\040', '\142', '\145', '\040', '\061',
'\012', '\164', '\142', '\111', '\040', '\164', '\150', '\040',
'\061', '\012', '\153', '\123', '\146', '\040', '\153', '\141',
'\040', '\061', '\012', '\166', '\150', '\104', '\040', '\164',
'\150', '\040', '\061', '\012', '\161', '\110', '\152', '\040',
'\161', '\165', '\040', '\061', '\012', '\116', '\160', '\170',
'\040', '\160', '\162', '\040', '\061', '\012', '\121', '\172',
'\160', '\040', '\163', '\172', '\040', '\061', '\012', '\170',
'\151', '\125', '\040', '\151', '\156', '\040', '\061', '\012',
'\162', '\152', '\132', '\040', '\145', '\162', '\040', '\061',
'\012', '\167', '\152', '\125', '\040', '\151', '\152', '\040',
'\061', '\012', '\152', '\164', '\102', '\040', '\164', '\150',
'\040', '\061', '\012', '\131', '\147', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\141', '\121', '\146', '\040',
'\141', '\156', '\040', '\061', '\012', '\170', '\127', '\165',
'\040', '\161', '\165', '\040', '\061', '\012', '\141', '\126',
'\146', '\040', '\141', '\156', '\040', '\061', '\012', '\160',
'\121', '\170', '\040', '\160', '\162', '\040', '\061', '\012',
'\114', '\156', '\167', '\040', '\141', '\156', '\040', '\061',
'\012', '\161', '\127', '\141', '\040', '\141', '\156', '\040',
'\061', '\012', '\165', '\110', '\160', '\040', '\161', '\165',
'\040', '\061', '\012', '\114', '\166', '\160', '\040', '\166',
'\141', '\040', '\061', '\012', '\112', '\170', '\160', '\040',
'\160', '\162', '\040', '\061', '\012', '\172', '\110', '\153',
'\040', '\163', '\172', '\040', '\061', '\012', '\167', '\166',
'\125', '\040', '\166', '\141', '\040', '\061', '\012', '\127',
'\161', '\150', '\040', '\164', '\150', '\040', '\061', '\012',
'\150', '\126', '\163', '\040', '\164', '\150', '\040', '\061',
'\012', '\130', '\147', '\171', '\040', '\156', '\147', '\040',
'\061', '\012', '\144', '\132', '\152', '\040', '\144', '\145',
'\040', '\061', '\012', '\165', '\103', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\107', '\170', '\154', '\040',
'\154', '\145', '\040', '\061', '\012', '\110', '\154', '\147',
'\040', '\156', '\147', '\040', '\061', '\012', '\127', '\161',
'\144', '\040', '\161', '\165', '\040', '\061', '\012', '\104',
'\170', '\172', '\040', '\163', '\172', '\040', '\061', '\012',
'\150', '\144', '\116', '\040', '\164', '\150', '\040', '\061',
'\012', '\160', '\166', '\115', '\040', '\166', '\141', '\040',
'\061', '\012', '\127', '\170', '\153', '\040', '\153', '\141',
'\040', '\061', '\012', '\161', '\127', '\144', '\040', '\161',
'\165', '\040', '\061', '\012', '\146', '\151', '\117', '\040',
'\151', '\156', '\040', '\061', '\012', '\146', '\104', '\167',
'\040', '\167', '\141', '\040', '\061', '\012', '\142', '\110',
'\152', '\040', '\151', '\152', '\040', '\061', '\012', '\151',
'\126', '\150', '\040', '\164', '\150', '\040', '\061', '\012',
'\120', '\155', '\147', '\040', '\156', '\147', '\040', '\061',
'\012', '\146', '\130', '\143', '\040', '\143', '\150', '\040',
'\061', '\012', '\170', '\146', '\114', '\040', '\146', '\157',
'\040', '\061', '\012', '\171', '\107', '\143', '\040', '\143',
'\150', '\040', '\061', '\012', '\171', '\102', '\156', '\040',
'\141', '\156', '\040', '\061', '\012', '\150', '\103', '\153',
'\040', '\164', '\150', '\040', '\061', '\012', '\114', '\154',
'\153', '\040', '\154', '\145', '\040', '\061', '\012', '\171',
'\115', '\150', '\040', '\164', '\150', '\040', '\061', '\012',
'\161', '\162', '\131', '\040', '\161', '\165', '\040', '\061',
'\012', '\147', '\144', '\130', '\040', '\156', '\147', '\040',
'\061', '\012', '\161', '\170', '\107', '\040', '\161', '\165',
'\040', '\061', '\012', '\132', '\155', '\164', '\040', '\164',
'\150', '\040', '\061', '\012', '\122', '\172', '\167', '\040',
'\163', '\172', '\040', '\061', '\012', '\156', '\102', '\144',
'\040', '\141', '\156', '\040', '\061', '\012', '\155', '\127',
'\154', '\040', '\154', '\145', '\040', '\061', '\012', '\170',
'\165', '\111', '\040', '\161', '\165', '\040', '\061', '\012',
'\152', '\171', '\106', '\040', '\151', '\152', '\040', '\061',
'\012', '\142', '\126', '\165', '\040', '\161', '\165', '\040',
'\061', '\012', '\171', '\147', '\120', '\040', '\156', '\147',
'\040', '\061', '\012', '\144', '\106', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\152', '\106', '\155', '\040',
'\151', '\152', '\040', '\061', '\012', '\122', '\155', '\154',
'\040', '\154', '\145', '\040', '\061', '\012', '\153', '\154',
'\110', '\040', '\154', '\145', '\040', '\061', '\012', '\126',
'\146', '\146', '\040', '\146', '\157', '\040', '\061', '\012',
'\113', '\172', '\153', '\040', '\163', '\172', '\040', '\061',
'\012', '\114', '\150', '\166', '\040', '\164', '\150', '\040',
'\061', '\012', '\143', '\123', '\152', '\040', '\143', '\150',
'\040', '\061', '\012', '\121', '\162', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\165', '\102', '\167', '\040',
'\161', '\165', '\040', '\061', '\012', '\163', '\103', '\153',
'\040', '\153', '\141', '\040', '\061', '\012', '\161', '\171',
'\123', '\040', '\161', '\165', '\040', '\061', '\012', '\143',
'\130', '\165', '\040', '\143', '\150', '\040', '\061', '\012',
'\167', '\146', '\115', '\040', '\167', '\141', '\040', '\061',
'\012', '\153', '\144', '\113', '\040', '\144', '\145', '\040',
'\061', '\012', '\143', '\130', '\152', '\040', '\143', '\150',
'\040', '\061', '\012', '\143', '\164', '\132', '\040', '\164',
'\150', '\040', '\061', '\012', '\146', '\152', '\111', '\040',
'\151', '\152', '\040', '\061', '\012', '\143', '\147', '\123',
'\040', '\143', '\150', '\040', '\061', '\012', '\155', '\167',
'\114', '\040', '\155', '\145', '\040', '\061', '\012', '\153',
'\172', '\125', '\040', '\163', '\172', '\040', '\061', '\012',
'\143', '\132', '\162', '\040', '\143', '\150', '\040', '\061',
'\012', '\146', '\161', '\125', '\040', '\161', '\165', '\040',
'\061', '\012', '\161', '\112', '\151', '\040', '\161', '\165',
'\040', '\061', '\012', '\147', '\104', '\144', '\040', '\156',
'\147', '\040', '\061', '\012', '\142', '\113', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\141', '\125', '\167',
'\040', '\141', '\156', '\040', '\061', '\012', '\163', '\170',
'\105', '\040', '\163', '\164', '\040', '\061', '\012', '\155',
'\170', '\125', '\040', '\155', '\145', '\040', '\061', '\012',
'\143', '\167', '\131', '\040', '\143', '\150', '\040', '\061',
'\012', '\146', '\160', '\103', '\040', '\160', '\162', '\040',
'\061', '\012', '\163', '\122', '\167', '\040', '\163', '\164',
'\040', '\061', '\012', '\113', '\153', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\167', '\170', '\101', '\040',
'\167', '\141', '\040', '\061', '\012', '\147', '\121', '\146',
'\040', '\156', '\147', '\040', '\061', '\012', '\160', '\120',
'\142', '\040', '\160', '\162', '\040', '\061', '\012', '\110',
'\167', '\165', '\040', '\153', '\165', '\040', '\061', '\012',
'\163', '\165', '\130', '\040', '\161', '\165', '\040', '\061',
'\012', '\154', '\161', '\131', '\040', '\161', '\165', '\040',
'\061', '\012', '\163', '\170', '\127', '\040', '\163', '\164',
'\040', '\061', '\012', '\141', '\106', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\154', '\127', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\160', '\142', '\132',
'\040', '\160', '\162', '\040', '\061', '\012', '\142', '\161',
'\155', '\040', '\161', '\165', '\040', '\061', '\012', '\153',
'\112', '\153', '\040', '\153', '\141', '\040', '\061', '\012',
'\161', '\164', '\124', '\040', '\164', '\150', '\040', '\061',
'\012', '\172', '\115', '\144', '\040', '\163', '\172', '\040',
'\061', '\012', '\150', '\107', '\163', '\040', '\164', '\150',
'\040', '\061', '\012', '\170', '\154', '\110', '\040', '\154',
'\145', '\040', '\061', '\012', '\144', '\155', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\130', '\162', '\153',
'\040', '\145', '\162', '\040', '\061', '\012', '\117', '\143',
'\146', '\040', '\143', '\150', '\040', '\061', '\012', '\155',
'\113', '\143', '\040', '\143', '\150', '\040', '\061', '\012',
'\172', '\162', '\101', '\040', '\145', '\162', '\040', '\061',
'\012', '\147', '\170', '\105', '\040', '\156', '\147', '\040',
'\061', '\012', '\161', '\127', '\165', '\040', '\165', '\156',
'\040', '\061', '\012', '\170', '\121', '\146', '\040', '\146',
'\157', '\040', '\061', '\012', '\130', '\157', '\172', '\040',
'\157', '\156', '\040', '\061', '\012', '\146', '\155', '\120',
'\040', '\155', '\145', '\040', '\061', '\012', '\153', '\144',
'\104', '\040', '\144', '\145', '\040', '\061', '\012', '\142',
'\102', '\172', '\040', '\163', '\172', '\040', '\061', '\012',
'\167', '\160', '\101', '\040', '\160', '\162', '\040', '\061',
'\012', '\156', '\115', '\142', '\040', '\141', '\156', '\040',
'\061', '\012', '\164', '\110', '\161', '\040', '\164', '\150',
'\040', '\061', '\012', '\152', '\115', '\164', '\040', '\164',
'\150', '\040', '\061', '\012', '\123', '\166', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\152', '\115', '\154',
'\040', '\154', '\145', '\040', '\061', '\012', '\167', '\102',
'\143', '\040', '\143', '\150', '\040', '\061', '\012', '\171',
'\155', '\130', '\040', '\155', '\145', '\040', '\061', '\012',
'\150', '\143', '\102', '\040', '\164', '\150', '\040', '\061',
'\012', '\142', '\162', '\125', '\040', '\145', '\162', '\040',
'\061', '\012', '\160', '\141', '\130', '\040', '\141', '\156',
'\040', '\061', '\012', '\150', '\144', '\107', '\040', '\164',
'\150', '\040', '\061', '\012', '\106', '\167', '\160', '\040',
'\160', '\162', '\040', '\061', '\012', '\163', '\142', '\131',
'\040', '\163', '\164', '\040', '\061', '\012', '\155', '\150',
'\102', '\040', '\164', '\150', '\040', '\061', '\012', '\160',
'\146', '\132', '\040', '\160', '\162', '\040', '\061', '\012',
'\126', '\155', '\150', '\040', '\164', '\150', '\040', '\061',
'\012', '\163', '\103', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\132', '\146', '\167', '\040', '\167', '\141',
'\040', '\061', '\012', '\114', '\152', '\155', '\040', '\151',
'\152', '\040', '\061', '\012', '\160', '\161', '\107', '\040',
'\161', '\165', '\040', '\061', '\012', '\144', '\160', '\113',
'\040', '\144', '\145', '\040', '\061', '\012', '\164', '\146',
'\107', '\040', '\164', '\150', '\040', '\061', '\012', '\151',
'\152', '\122', '\040', '\151', '\156', '\040', '\061', '\012',
'\151', '\112', '\171', '\040', '\151', '\156', '\040', '\061',
'\012', '\161', '\146', '\116', '\040', '\161', '\165', '\040',
'\061', '\012', '\143', '\162', '\123', '\040', '\143', '\150',
'\040', '\061', '\012', '\143', '\147', '\124', '\040', '\143',
'\150', '\040', '\061', '\012', '\167', '\117', '\164', '\040',
'\164', '\150', '\040', '\061', '\012', '\146', '\156', '\105',
'\040', '\141', '\156', '\040', '\061', '\012', '\150', '\127',
'\160', '\040', '\164', '\150', '\040', '\061', '\012', '\132',
'\160', '\167', '\040', '\160', '\162', '\040', '\061', '\012',
'\167', '\144', '\117', '\040', '\144', '\145', '\040', '\061',
'\012', '\166', '\131', '\171', '\040', '\166', '\141', '\040',
'\061', '\012', '\161', '\162', '\111', '\040', '\161', '\165',
'\040', '\061', '\012', '\144', '\155', '\106', '\040', '\144',
'\145', '\040', '\061', '\012', '\152', '\150', '\112', '\040',
'\164', '\150', '\040', '\061', '\012', '\167', '\110', '\162',
'\040', '\145', '\162', '\040', '\061', '\012', '\112', '\172',
'\142', '\040', '\163', '\172', '\040', '\061', '\012', '\146',
'\105', '\171', '\040', '\156', '\171', '\040', '\061', '\012',
'\150', '\150', '\132', '\040', '\164', '\150', '\040', '\061',
'\012', '\167', '\160', '\121', '\040', '\160', '\162', '\040',
'\061', '\012', '\161', '\131', '\147', '\040', '\161', '\165',
'\040', '\061', '\012', '\161', '\164', '\131', '\040', '\164',
'\150', '\040', '\061', '\012', '\113', '\144', '\170', '\040',
'\144', '\145', '\040', '\061', '\012', '\161', '\146', '\152',
'\040', '\161', '\165', '\040', '\061', '\012', '\122', '\142',
'\166', '\040', '\166', '\141', '\040', '\061', '\012', '\142',
'\142', '\117', '\040', '\142', '\145', '\040', '\061', '\012',
'\130', '\143', '\156', '\040', '\143', '\150', '\040', '\061',
'\012', '\153', '\103', '\144', '\040', '\144', '\145', '\040',
'\061', '\012', '\107', '\143', '\170', '\040', '\143', '\150',
'\040', '\061', '\012', '\172', '\155', '\103', '\040', '\163',
'\172', '\040', '\061', '\012', '\167', '\112', '\154', '\040',
'\154', '\145', '\040', '\061', '\012', '\161', '\104', '\143',
'\040', '\143', '\150', '\040', '\061', '\012', '\112', '\172',
'\162', '\040', '\145', '\162', '\040', '\061', '\012', '\131',
'\162', '\167', '\040', '\145', '\162', '\040', '\061', '\012',
'\113', '\163', '\170', '\040', '\163', '\164', '\040', '\061',
'\012', '\165', '\113', '\170', '\040', '\161', '\165', '\040',
'\061', '\012', '\152', '\123', '\143', '\040', '\143', '\150',
'\040', '\061', '\012', '\114', '\152', '\172', '\040', '\163',
'\172', '\040', '\061', '\012', '\170', '\144', '\102', '\040',
'\144', '\145', '\040', '\061', '\012', '\172', '\127', '\142',
'\040', '\163', '\172', '\040', '\061', '\012', '\166', '\167',
'\131', '\040', '\166', '\141', '\040', '\061', '\012', '\166',
'\115', '\144', '\040', '\144', '\145', '\040', '\061', '\012',
'\144', '\142', '\110', '\040', '\144', '\145', '\040', '\061',
'\012', '\121', '\163', '\165', '\040', '\161', '\165', '\040',
'\061', '\012', '\167', '\110', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\147', '\112', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\167', '\132', '\160', '\040',
'\160', '\162', '\040', '\061', '\012', '\142', '\164', '\117',
'\040', '\164', '\150', '\040', '\061', '\012', '\130', '\155',
'\166', '\040', '\166', '\141', '\040', '\061', '\012', '\161',
'\160', '\144', '\040', '\161', '\165', '\040', '\061', '\012',
'\112', '\156', '\167', '\040', '\141', '\156', '\040', '\061',
'\012', '\166', '\154', '\104', '\040', '\154', '\145', '\040',
'\061', '\012', '\170', '\143', '\130', '\040', '\143', '\150',
'\040', '\061', '\012', '\131', '\166', '\166', '\040', '\166',
'\141', '\040', '\061', '\012', '\132', '\146', '\164', '\040',
'\164', '\150', '\040', '\061', '\012', '\110', '\161', '\172',
'\040', '\161', '\165', '\040', '\061', '\012', '\170', '\161',
'\115', '\040', '\161', '\165', '\040', '\061', '\012', '\110',
'\164', '\150', '\040', '\143', '\150', '\040', '\061', '\012',
'\172', '\164', '\114', '\040', '\164', '\150', '\040', '\061',
'\012', '\151', '\117', '\152', '\040', '\151', '\156', '\040',
'\061', '\012', '\143', '\111', '\172', '\040', '\143', '\150',
'\040', '\061', '\012', '\150', '\150', '\103', '\040', '\164',
'\150', '\040', '\061', '\012', '\164', '\166', '\130', '\040',
'\164', '\150', '\040', '\061', '\012', '\106', '\147', '\153',
'\040', '\156', '\147', '\040', '\061', '\012', '\155', '\152',
'\103', '\040', '\151', '\152', '\040', '\061', '\012', '\117',
'\152', '\160', '\040', '\151', '\152', '\040', '\061', '\012',
'\153', '\166', '\111', '\040', '\153', '\141', '\040', '\061',
'\012', '\172', '\161', '\142', '\040', '\161', '\165', '\040',
'\061', '\012', '\161', '\161', '\127', '\040', '\161', '\165',
'\040', '\061', '\012', '\151', '\110', '\147', '\040', '\156',
'\147', '\040', '\061', '\012', '\152', '\170', '\112', '\040',
'\151', '\152', '\040', '\061', '\012', '\107', '\142', '\172',
'\040', '\163', '\172', '\040', '\061', '\012', '\156', '\121',
'\143', '\040', '\143', '\150', '\040', '\061', '\012', '\160',
'\130', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\152', '\104', '\144', '\040', '\144', '\145', '\040', '\061',
'\012', '\161', '\121', '\162', '\040', '\161', '\165', '\040',
'\061', '\012', '\166', '\112', '\170', '\040', '\166', '\141',
'\040', '\061', '\012', '\172', '\142', '\131', '\040', '\163',
'\172', '\040', '\061', '\012', '\146', '\122', '\155', '\040',
'\155', '\145', '\040', '\061', '\012', '\161', '\105', '\154',
'\040', '\161', '\165', '\040', '\061', '\012', '\157', '\141',
'\132', '\040', '\141', '\156', '\040', '\061', '\012', '\166',
'\152', '\106', '\040', '\151', '\152', '\040', '\061', '\012',
'\154', '\161', '\130', '\040', '\161', '\165', '\040', '\061',
'\012', '\160', '\123', '\144', '\040', '\144', '\145', '\040',
'\061', '\012', '\142', '\130', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\152', '\112', '\166', '\040', '\151',
'\152', '\040', '\061', '\012', '\127', '\162', '\166', '\040',
'\145', '\162', '\040', '\061', '\012', '\113', '\160', '\167',
'\040', '\160', '\162', '\040', '\061', '\012', '\170', '\141',
'\131', '\040', '\141', '\156', '\040', '\061', '\012', '\152',
'\103', '\166', '\040', '\151', '\152', '\040', '\061', '\012',
'\146', '\142', '\122', '\040', '\142', '\145', '\040', '\061',
'\012', '\160', '\124', '\160', '\040', '\160', '\162', '\040',
'\061', '\012', '\167', '\144', '\111', '\040', '\144', '\145',
'\040', '\061', '\012', '\161', '\146', '\121', '\040', '\161',
'\165', '\040', '\061', '\012', '\122', '\162', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\144', '\142', '\106',
'\040', '\144', '\145', '\040', '\061', '\012', '\142', '\172',
'\106', '\040', '\163', '\172', '\040', '\061', '\012', '\161',
'\167', '\117', '\040', '\161', '\165', '\040', '\061', '\012',
'\166', '\162', '\131', '\040', '\145', '\162', '\040', '\061',
'\012', '\164', '\167', '\111', '\040', '\164', '\150', '\040',
'\061', '\012', '\172', '\114', '\146', '\040', '\163', '\172',
'\040', '\061', '\012', '\142', '\126', '\143', '\040', '\143',
'\150', '\040', '\061', '\012', '\130', '\156', '\154', '\040',
'\141', '\156', '\040', '\061', '\012', '\127', '\147', '\142',
'\040', '\156', '\147', '\040', '\061', '\012', '\146', '\165',
'\123', '\040', '\161', '\165', '\040', '\061', '\012', '\166',
'\111', '\146', '\040', '\166', '\141', '\040', '\061', '\012',
'\124', '\167', '\164', '\040', '\164', '\150', '\040', '\061',
'\012', '\156', '\113', '\144', '\040', '\141', '\156', '\040',
'\061', '\012', '\104', '\153', '\150', '\040', '\164', '\150',
'\040', '\061', '\012', '\165', '\102', '\144', '\040', '\161',
'\165', '\040', '\061', '\012', '\153', '\117', '\172', '\040',
'\153', '\141', '\040', '\061', '\012', '\172', '\117', '\152',
'\040', '\163', '\172', '\040', '\061', '\012', '\156', '\172',
'\105', '\040', '\141', '\156', '\040', '\061', '\012', '\132',
'\142', '\150', '\040', '\164', '\150', '\040', '\061', '\012',
'\161', '\115', '\147', '\040', '\161', '\165', '\040', '\061',
'\012', '\147', '\146', '\103', '\040', '\156', '\147', '\040',
'\061', '\012', '\166', '\147', '\104', '\040', '\156', '\147',
'\040', '\061', '\012', '\171', '\164', '\103', '\040', '\164',
'\150', '\040', '\061', '\012', '\155', '\161', '\115', '\040',
'\161', '\165', '\040', '\061', '\012', '\113', '\152', '\156',
'\040', '\141', '\156', '\040', '\061', '\012', '\170', '\142',
'\130', '\040', '\142', '\145', '\040', '\061', '\012', '\172',
'\146', '\110', '\040', '\163', '\172', '\040', '\061', '\012',
'\155', '\167', '\110', '\040', '\155', '\145', '\040', '\061',
'\012', '\172', '\121', '\142', '\040', '\163', '\172', '\040',
'\061', '\012', '\107', '\172', '\153', '\040', '\163', '\172',
'\040', '\061', '\012', '\161', '\163', '\127', '\040', '\161',
'\165', '\040', '\061', '\012', '\153', '\116', '\163', '\040',
'\163', '\164', '\040', '\061', '\012', '\114', '\161', '\172',
'\040', '\161', '\165', '\040', '\061', '\012', '\156', '\155',
'\127', '\040', '\141', '\156', '\040', '\061', '\012', '\161',
'\116', '\170', '\040', '\161', '\165', '\040', '\061', '\012',
'\172', '\143', '\121', '\040', '\143', '\150', '\040', '\061',
'\012', '\161', '\115', '\172', '\040', '\161', '\165', '\040',
'\061', '\012', '\167', '\107', '\172', '\040', '\163', '\172',
'\040', '\061', '\012', '\165', '\103', '\144', '\040', '\161',
'\165', '\040', '\061', '\012', '\102', '\160', '\166', '\040',
'\160', '\162', '\040', '\061', '\012', '\161', '\116', '\145',
'\040', '\161', '\165', '\040', '\061', '\012', '\142', '\160',
'\120', '\040', '\160', '\162', '\040', '\061', '\012', '\154',
'\130', '\146', '\040', '\154', '\145', '\040', '\061', '\012',
'\143', '\114', '\161', '\040', '\143', '\150', '\040', '\061',
'\012', '\160', '\144', '\130', '\040', '\144', '\145', '\040',
'\061', '\012', '\161', '\172', '\125', '\040', '\161', '\165',
'\040', '\061', '\012', '\113', '\170', '\144', '\040', '\144',
'\145', '\040', '\061', '\012', '\152', '\166', '\106', '\040',
'\151', '\152', '\040', '\061', '\012', '\162', '\106', '\156',
'\040', '\141', '\156', '\040', '\061', '\012', '\105', '\164',
'\161', '\040', '\164', '\150', '\040', '\061', '\012', '\172',
'\131', '\150', '\040', '\164', '\150', '\040', '\061', '\012',
'\113', '\163', '\166', '\040', '\163', '\164', '\040', '\061',
'\012', '\146', '\112', '\153', '\040', '\153', '\141', '\040',
'\061', '\012', '\146', '\153', '\103', '\040', '\153', '\141',
'\040', '\061', '\012', '\155', '\170', '\113', '\040', '\155',
'\145', '\040', '\061', '\012', '\146', '\142', '\172', '\040',
'\163', '\172', '\040', '\061', '\012', '\166', '\162', '\127',
'\040', '\145', '\162', '\040', '\061', '\012', '\155', '\120',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\171',
'\102', '\164', '\040', '\164', '\150', '\040', '\061', '\012',
'\151', '\103', '\146', '\040', '\151', '\156', '\040', '\061',
'\012', '\163', '\162', '\110', '\040', '\145', '\162', '\040',
'\061', '\012', '\150', '\152', '\102', '\040', '\164', '\150',
'\040', '\061', '\012', '\146', '\143', '\107', '\040', '\143',
'\150', '\040', '\061', '\012', '\106', '\164', '\147', '\040',
'\164', '\150', '\040', '\061', '\012', '\165', '\102', '\160',
'\040', '\161', '\165', '\040', '\061', '\012', '\171', '\161',
'\124', '\040', '\161', '\165', '\040', '\061', '\012', '\144',
'\152', '\106', '\040', '\144', '\145', '\040', '\061', '\012',
'\164', '\147', '\125', '\040', '\164', '\150', '\040', '\061',
'\012', '\127', '\162', '\152', '\040', '\145', '\162', '\040',
'\061', '\012', '\170', '\106', '\143', '\040', '\143', '\150',
'\040', '\061', '\012', '\171', '\143', '\103', '\040', '\143',
'\150', '\040', '\061', '\012', '\145', '\161', '\101', '\040',
'\161', '\165', '\040', '\061', '\012', '\160', '\142', '\107',
'\040', '\160', '\162', '\040', '\061', '\012', '\103', '\167',
'\150', '\040', '\164', '\150', '\040', '\061', '\012', '\146',
'\104', '\153', '\040', '\153', '\141', '\040', '\061', '\012',
'\167', '\124', '\172', '\040', '\163', '\172', '\040', '\061',
'\012', '\170', '\162', '\127', '\040', '\145', '\162', '\040',
'\061', '\012', '\153', '\121', '\163', '\040', '\163', '\164',
'\040', '\061', '\012', '\167', '\115', '\154', '\040', '\154',
'\145', '\040', '\061', '\012', '\171', '\103', '\156', '\040',
'\156', '\144', '\040', '\061', '\012', '\145', '\107', '\160',
'\040', '\145', '\162', '\040', '\061', '\012', '\165', '\120',
'\166', '\040', '\161', '\165', '\040', '\061', '\012', '\127',
'\161', '\145', '\040', '\161', '\165', '\040', '\061', '\012',
'\171', '\151', '\111', '\040', '\151', '\156', '\040', '\061',
'\012', '\162', '\161', '\106', '\040', '\161', '\165', '\040',
'\061', '\012', '\113', '\152', '\163', '\040', '\163', '\164',
'\040', '\061', '\012', '\154', '\167', '\113', '\040', '\154',
'\145', '\040', '\061', '\012', '\146', '\152', '\121', '\040',
'\151', '\152', '\040', '\061', '\012', '\165', '\111', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\144', '\170',
'\122', '\040', '\144', '\145', '\040', '\061', '\012', '\107',
'\161', '\152', '\040', '\161', '\165', '\040', '\061', '\012',
'\156', '\114', '\142', '\040', '\141', '\156', '\040', '\061',
'\012', '\147', '\122', '\144', '\040', '\156', '\147', '\040',
'\061', '\012', '\161', '\171', '\166', '\040', '\161', '\165',
'\040', '\061', '\012', '\167', '\164', '\132', '\040', '\164',
'\150', '\040', '\061', '\012', '\143', '\122', '\153', '\040',
'\143', '\150', '\040', '\061', '\012', '\151', '\113', '\146',
'\040', '\151', '\156', '\040', '\061', '\012', '\150', '\142',
'\113', '\040', '\164', '\150', '\040', '\061', '\012', '\162',
'\161', '\124', '\040', '\161', '\165', '\040', '\061', '\012',
'\170', '\155', '\106', '\040', '\155', '\145', '\040', '\061',
'\012', '\166', '\110', '\164', '\040', '\164', '\150', '\040',
'\061', '\012', '\164', '\161', '\116', '\040', '\164', '\150',
'\040', '\061', '\012', '\166', '\114', '\166', '\040', '\166',
'\141', '\040', '\061', '\012', '\170', '\166', '\112', '\040',
'\166', '\141', '\040', '\061', '\012', '\142', '\147', '\112',
'\040', '\156', '\147', '\040', '\061', '\012', '\121', '\152',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\114',
'\166', '\142', '\040', '\166', '\141', '\040', '\061', '\012',
'\110', '\170', '\147', '\040', '\156', '\147', '\040', '\061',
'\012', '\164', '\126', '\161', '\040', '\164', '\150', '\040',
'\061', '\012', '\162', '\150', '\132', '\040', '\164', '\150',
'\040', '\061', '\012', '\163', '\154', '\114', '\040', '\154',
'\145', '\040', '\061', '\012', '\153', '\144', '\110', '\040',
'\144', '\145', '\040', '\061', '\012', '\113', '\146', '\142',
'\040', '\142', '\145', '\040', '\061', '\012', '\104', '\146',
'\150', '\040', '\164', '\150', '\040', '\061', '\012', '\103',
'\161', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\156', '\121', '\153', '\040', '\141', '\156', '\040', '\061',
'\012', '\127', '\156', '\172', '\040', '\141', '\156', '\040',
'\061', '\012', '\116', '\152', '\152', '\040', '\151', '\152',
'\040', '\061', '\012', '\142', '\112', '\146', '\040', '\142',
'\145', '\040', '\061', '\012', '\167', '\122', '\150', '\040',
'\164', '\150', '\040', '\061', '\012', '\104', '\160', '\142',
'\040', '\160', '\162', '\040', '\061', '\012', '\163', '\120',
'\152', '\040', '\163', '\164', '\040', '\061', '\012', '\132',
'\160', '\156', '\040', '\141', '\156', '\040', '\061', '\012',
'\155', '\120', '\152', '\040', '\151', '\152', '\040', '\061',
'\012', '\121', '\143', '\154', '\040', '\143', '\150', '\040',
'\061', '\012', '\172', '\103', '\144', '\040', '\163', '\172',
'\040', '\061', '\012', '\171', '\162', '\103', '\040', '\145',
'\162', '\040', '\061', '\012', '\150', '\103', '\142', '\040',
'\164', '\150', '\040', '\061', '\012', '\141', '\102', '\166',
'\040', '\141', '\156', '\040', '\061', '\012', '\171', '\165',
'\107', '\040', '\161', '\165', '\040', '\061', '\012', '\146',
'\143', '\116', '\040', '\143', '\150', '\040', '\061', '\012',
'\142', '\132', '\160', '\040', '\160', '\162', '\040', '\061',
'\012', '\107', '\164', '\146', '\040', '\164', '\150', '\040',
'\061', '\012', '\167', '\142', '\127', '\040', '\167', '\141',
'\040', '\061', '\012', '\166', '\120', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\126', '\164', '\152', '\040',
'\164', '\150', '\040', '\061', '\012', '\153', '\127', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\112', '\142',
'\155', '\040', '\155', '\145', '\040', '\061', '\012', '\127',
'\155', '\142', '\040', '\155', '\145', '\040', '\061', '\012',
'\160', '\170', '\131', '\040', '\160', '\162', '\040', '\061',
'\012', '\150', '\121', '\170', '\040', '\164', '\150', '\040',
'\061', '\012', '\164', '\116', '\156', '\040', '\164', '\150',
'\040', '\061', '\012', '\161', '\144', '\170', '\040', '\161',
'\165', '\040', '\061', '\012', '\143', '\131', '\166', '\040',
'\143', '\150', '\040', '\061', '\012', '\172', '\154', '\130',
'\040', '\154', '\145', '\040', '\061', '\012', '\162', '\167',
'\106', '\040', '\145', '\162', '\040', '\061', '\012', '\143',
'\132', '\155', '\040', '\143', '\150', '\040', '\061', '\012',
'\171', '\142', '\112', '\040', '\142', '\145', '\040', '\061',
'\012', '\161', '\141', '\102', '\040', '\141', '\156', '\040',
'\061', '\012', '\164', '\126', '\152', '\040', '\164', '\150',
'\040', '\061', '\012', '\172', '\125', '\147', '\040', '\156',
'\147', '\040', '\061', '\012', '\143', '\146', '\103', '\040',
'\143', '\150', '\040', '\061', '\012', '\150', '\170', '\102',
'\040', '\164', '\150', '\040', '\061', '\012', '\124', '\142',
'\172', '\040', '\163', '\172', '\040', '\061', '\012', '\157',
'\106', '\156', '\040', '\141', '\156', '\040', '\061', '\012',
'\142', '\124', '\160', '\040', '\160', '\162', '\040', '\061',
'\012', '\150', '\102', '\153', '\040', '\164', '\150', '\040',
'\061', '\012', '\150', '\121', '\145', '\040', '\164', '\150',
'\040', '\061', '\012', '\161', '\102', '\145', '\040', '\144',
'\145', '\040', '\061', '\012', '\144', '\160', '\103', '\040',
'\144', '\145', '\040', '\061', '\012', '\153', '\160', '\127',
'\040', '\153', '\141', '\040', '\061', '\012', '\132', '\153',
'\152', '\040', '\151', '\152', '\040', '\061', '\012', '\116',
'\167', '\156', '\040', '\141', '\156', '\040', '\061', '\012',
'\147', '\162', '\103', '\040', '\156', '\147', '\040', '\061',
'\012', '\165', '\130', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\125', '\157', '\171', '\040', '\157', '\156',
'\040', '\061', '\012', '\132', '\146', '\165', '\040', '\161',
'\165', '\040', '\061', '\012', '\170', '\113', '\142', '\040',
'\142', '\145', '\040', '\061', '\012', '\150', '\123', '\142',
'\040', '\164', '\150', '\040', '\061', '\012', '\142', '\120',
'\143', '\040', '\143', '\150', '\040', '\061', '\012', '\161',
'\143', '\147', '\040', '\143', '\150', '\040', '\061', '\012',
'\170', '\111', '\165', '\040', '\161', '\165', '\040', '\061',
'\012', '\147', '\102', '\166', '\040', '\156', '\147', '\040',
'\061', '\012', '\147', '\132', '\155', '\040', '\155', '\145',
'\040', '\061', '\012', '\161', '\120', '\165', '\040', '\165',
'\156', '\040', '\061', '\012', '\102', '\146', '\160', '\040',
'\160', '\162', '\040', '\061', '\012', '\162', '\170', '\103',
'\040', '\145', '\162', '\040', '\061', '\012', '\163', '\114',
'\153', '\040', '\163', '\164', '\040', '\061', '\012', '\150',
'\107', '\152', '\040', '\164', '\150', '\040', '\061', '\012',
'\161', '\166', '\122', '\040', '\161', '\165', '\040', '\061',
'\012', '\161', '\160', '\122', '\040', '\161', '\165', '\040',
'\061', '\012', '\166', '\116', '\156', '\040', '\141', '\156',
'\040', '\061', '\012', '\104', '\146', '\164', '\040', '\164',
'\150', '\040', '\061', '\012', '\156', '\122', '\161', '\040',
'\141', '\156', '\040', '\061', '\012', '\153', '\150', '\122',
'\040', '\164', '\150', '\040', '\061', '\012', '\160', '\161',
'\120', '\040', '\161', '\165', '\040', '\061', '\012', '\164',
'\116', '\160', '\040', '\164', '\150', '\040', '\061', '\012',
'\126', '\167', '\164', '\040', '\164', '\150', '\040', '\061',
'\012', '\170', '\167', '\101', '\040', '\167', '\141', '\040',
'\061', '\012', '\167', '\115', '\156', '\040', '\141', '\156',
'\040', '\061', '\012', '\123', '\156', '\161', '\040', '\141',
'\156', '\040', '\061', '\012', '\144', '\146', '\104', '\040',
'\144', '\145', '\040', '\061', '\012', '\166', '\107', '\167',
'\040', '\166', '\141', '\040', '\061', '\012', '\130', '\161',
'\142', '\040', '\161', '\165', '\040', '\061', '\012', '\113',
'\167', '\167', '\040', '\167', '\141', '\040', '\061', '\012',
'\121', '\150', '\170', '\040', '\164', '\150', '\040', '\061',
'\012', '\117', '\171', '\170', '\040', '\156', '\171', '\040',
'\061', '\012', '\144', '\166', '\102', '\040', '\144', '\145',
'\040', '\061', '\012', '\163', '\126', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\110', '\143', '\156', '\040',
'\143', '\150', '\040', '\061', '\012', '\163', '\142', '\125',
'\040', '\163', '\164', '\040', '\061', '\012', '\146', '\106',
'\167', '\040', '\167', '\141', '\040', '\061', '\012', '\153',
'\146', '\124', '\040', '\153', '\141', '\040', '\061', '\012',
'\162', '\166', '\127', '\040', '\145', '\162', '\040', '\061',
'\012', '\131', '\170', '\167', '\040', '\167', '\141', '\040',
'\061', '\012', '\156', '\106', '\153', '\040', '\141', '\156',
'\040', '\061', '\012', '\114', '\161', '\144', '\040', '\161',
'\165', '\040', '\061', '\012', '\150', '\157', '\121', '\040',
'\164', '\150', '\040', '\061', '\012', '\116', '\146', '\152',
'\040', '\151', '\152', '\040', '\061', '\012', '\147', '\162',
'\110', '\040', '\156', '\147', '\040', '\061', '\012', '\143',
'\112', '\153', '\040', '\143', '\150', '\040', '\061', '\012',
'\120', '\156', '\166', '\040', '\141', '\156', '\040', '\061',
'\012', '\116', '\161', '\170', '\040', '\161', '\165', '\040',
'\061', '\012', '\171', '\146', '\105', '\040', '\156', '\171',
'\040', '\061', '\012', '\153', '\155', '\111', '\040', '\153',
'\141', '\040', '\061', '\012', '\107', '\155', '\172', '\040',
'\163', '\172', '\040', '\061', '\012', '\142', '\170', '\123',
'\040', '\142', '\145', '\040', '\061', '\012', '\161', '\165',
'\125', '\040', '\165', '\156', '\040', '\061', '\012', '\161',
'\131', '\146', '\040', '\161', '\165', '\040', '\061', '\012',
'\172', '\113', '\167', '\040', '\163', '\172', '\040', '\061',
'\012', '\167', '\150', '\113', '\040', '\164', '\150', '\040',
'\061', '\012', '\157', '\146', '\131', '\040', '\157', '\156',
'\040', '\061', '\012', '\160', '\162', '\110', '\040', '\145',
'\162', '\040', '\061', '\012', '\152', '\130', '\172', '\040',
'\163', '\172', '\040', '\061', '\012', '\166', '\121', '\155',
'\040', '\166', '\141', '\040', '\061', '\012', '\151', '\127',
'\170', '\040', '\151', '\156', '\040', '\061', '\012', '\142',
'\172', '\103', '\040', '\163', '\172', '\040', '\061', '\012',
'\156', '\131', '\170', '\040', '\141', '\156', '\040', '\061',
'\012', '\161', '\141', '\113', '\040', '\141', '\156', '\040',
'\061', '\012', '\107', '\147', '\142', '\040', '\156', '\147',
'\040', '\061', '\012', '\172', '\123', '\146', '\040', '\163',
'\172', '\040', '\061', '\012', '\162', '\121', '\172', '\040',
'\145', '\162', '\040', '\061', '\012', '\150', '\153', '\127',
'\040', '\164', '\150', '\040', '\061', '\012', '\126', '\156',
'\154', '\040', '\141', '\156', '\040', '\061', '\012', '\107',
'\164', '\144', '\040', '\164', '\150', '\040', '\061', '\012',
'\162', '\115', '\167', '\040', '\145', '\162', '\040', '\061',
'\012', '\167', '\166', '\130', '\040', '\166', '\141', '\040',
'\061', '\012', '\152', '\171', '\125', '\040', '\151', '\152',
'\040', '\061', '\012', '\121', '\161', '\160', '\040', '\161',
'\165', '\040', '\061', '\012', '\110', '\156', '\161', '\040',
'\141', '\156', '\040', '\061', '\012', '\142', '\106', '\142',
'\040', '\142', '\145', '\040', '\061', '\012', '\161', '\153',
'\110', '\040', '\161', '\165', '\040', '\061', '\012', '\127',
'\143', '\153', '\040', '\143', '\150', '\040', '\061', '\012',
'\146', '\115', '\167', '\040', '\167', '\141', '\040', '\061',
'\012', '\172', '\147', '\105', '\040', '\156', '\147', '\040',
'\061', '\012', '\157', '\112', '\172', '\040', '\157', '\156',
'\040', '\061', '\012', '\170', '\166', '\110', '\040', '\166',
'\141', '\040', '\061', '\012', '\150', '\121', '\171', '\040',
'\164', '\150', '\040', '\061', '\012', '\143', '\131', '\146',
'\040', '\143', '\150', '\040', '\061', '\012', '\143', '\170',
'\104', '\040', '\143', '\150', '\040', '\061', '\012', '\171',
'\104', '\163', '\040', '\163', '\164', '\040', '\061', '\012',
'\161', '\102', '\150', '\040', '\164', '\150', '\040', '\061',
'\012', '\143', '\112', '\170', '\040', '\143', '\150', '\040',
'\061', '\012', '\144', '\120', '\152', '\040', '\144', '\145',
'\040', '\061', '\012', '\167', '\127', '\144', '\040', '\144',
'\145', '\040', '\061', '\012', '\162', '\110', '\156', '\040',
'\141', '\156', '\040', '\061', '\012', '\151', '\171', '\115',
'\040', '\151', '\156', '\040', '\061', '\012', '\171', '\170',
'\104', '\040', '\156', '\171', '\040', '\061', '\012', '\153',
'\120', '\143', '\040', '\143', '\150', '\040', '\061', '\012',
'\143', '\130', '\166', '\040', '\143', '\150', '\040', '\061',
'\012', '\116', '\155', '\147', '\040', '\156', '\147', '\040',
'\061', '\012', '\166', '\153', '\116', '\040', '\153', '\141',
'\040', '\061', '\012', '\154', '\106', '\152', '\040', '\154',
'\145', '\040', '\061', '\012', '\171', '\155', '\125', '\040',
'\155', '\145', '\040', '\061', '\012', '\160', '\132', '\166',
'\040', '\166', '\141', '\040', '\061', '\012', '\147', '\132',
'\164', '\040', '\164', '\150', '\040', '\061', '\012', '\112',
'\161', '\171', '\040', '\161', '\165', '\040', '\061', '\012',
'\161', '\101', '\172', '\040', '\161', '\165', '\040', '\061',
'\012', '\102', '\143', '\171', '\040', '\143', '\150', '\040',
'\061', '\012', '\160', '\161', '\152', '\040', '\161', '\165',
'\040', '\061', '\012', '\143', '\161', '\105', '\040', '\143',
'\150', '\040', '\061', '\012', '\122', '\167', '\166', '\040',
'\166', '\141', '\040', '\061', '\012', '\143', '\162', '\115',
'\040', '\143', '\150', '\040', '\061', '\012', '\101', '\170',
'\172', '\040', '\163', '\172', '\040', '\061', '\012', '\132',
'\152', '\160', '\040', '\151', '\152', '\040', '\061', '\012',
'\171', '\170', '\106', '\040', '\156', '\171', '\040', '\061',
'\012', '\166', '\132', '\150', '\040', '\164', '\150', '\040',
'\061', '\012', '\163', '\120', '\142', '\040', '\163', '\164',
'\040', '\061', '\012', '\166', '\103', '\163', '\040', '\163',
'\164', '\040', '\061', '\012', '\146', '\121', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\161', '\131', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\150', '\102',
'\160', '\040', '\164', '\150', '\040', '\061', '\012', '\112',
'\142', '\153', '\040', '\153', '\141', '\040', '\061', '\012',
'\147', '\161', '\113', '\040', '\161', '\165', '\040', '\061',
'\012', '\153', '\162', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\103', '\146', '\172', '\040', '\163', '\172',
'\040', '\061', '\012', '\155', '\142', '\112', '\040', '\155',
'\145', '\040', '\061', '\012', '\146', '\122', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\111', '\167', '\166',
'\040', '\166', '\141', '\040', '\061', '\012', '\165', '\106',
'\156', '\040', '\141', '\156', '\040', '\061', '\012', '\143',
'\131', '\172', '\040', '\143', '\150', '\040', '\061', '\012',
'\161', '\104', '\142', '\040', '\161', '\165', '\040', '\061',
'\012', '\170', '\110', '\144', '\040', '\144', '\145', '\040',
'\061', '\012', '\161', '\155', '\111', '\040', '\161', '\165',
'\040', '\061', '\012', '\171', '\143', '\105', '\040', '\143',
'\150', '\040', '\061', '\012', '\115', '\150', '\146', '\040',
'\164', '\150', '\040', '\061', '\012', '\151', '\165', '\105',
'\040', '\161', '\165', '\040', '\061', '\012', '\147', '\130',
'\146', '\040', '\156', '\147', '\040', '\061', '\012', '\154',
'\120', '\171', '\040', '\154', '\145', '\040', '\061', '\012',
'\142', '\120', '\166', '\040', '\166', '\141', '\040', '\061',
'\012', '\152', '\130', '\150', '\040', '\164', '\150', '\040',
'\061', '\012', '\147', '\117', '\170', '\040', '\156', '\147',
'\040', '\061', '\012', '\116', '\155', '\166', '\040', '\166',
'\141', '\040', '\061', '\012', '\170', '\104', '\147', '\040',
'\156', '\147', '\040', '\061', '\012', '\103', '\167', '\144',
'\040', '\144', '\145', '\040', '\061', '\012', '\154', '\152',
'\120', '\040', '\154', '\145', '\040', '\061', '\012', '\167',
'\161', '\126', '\040', '\161', '\165', '\040', '\061', '\012',
'\156', '\162', '\105', '\040', '\141', '\156', '\040', '\061',
'\012', '\113', '\155', '\167', '\040', '\155', '\145', '\040',
'\061', '\012', '\147', '\112', '\164', '\040', '\164', '\150',
'\040', '\061', '\012', '\164', '\147', '\102', '\040', '\164',
'\150', '\040', '\061', '\012', '\170', '\172', '\122', '\040',
'\163', '\172', '\040', '\061', '\012', '\166', '\112', '\162',
'\040', '\145', '\162', '\040', '\061', '\012', '\141', '\125',
'\151', '\040', '\141', '\156', '\040', '\061', '\012', '\171',
'\156', '\131', '\040', '\141', '\156', '\040', '\061', '\012',
'\142', '\132', '\166', '\040', '\166', '\141', '\040', '\061',
'\012', '\146', '\106', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\123', '\170', '\147', '\040', '\156', '\147',
'\040', '\061', '\012', '\161', '\101', '\143', '\040', '\143',
'\150', '\040', '\061', '\012', '\151', '\132', '\166', '\040',
'\151', '\156', '\040', '\061', '\012', '\152', '\130', '\165',
'\040', '\161', '\165', '\040', '\061', '\012', '\147', '\160',
'\122', '\040', '\156', '\147', '\040', '\061', '\012', '\167',
'\126', '\154', '\040', '\154', '\145', '\040', '\061', '\012',
'\144', '\116', '\152', '\040', '\144', '\145', '\040', '\061',
'\012', '\146', '\102', '\167', '\040', '\167', '\141', '\040',
'\061', '\012', '\115', '\152', '\171', '\040', '\151', '\152',
'\040', '\061', '\012', '\153', '\152', '\132', '\040', '\151',
'\152', '\040', '\061', '\012', '\164', '\114', '\163', '\040',
'\164', '\150', '\040', '\061', '\012', '\151', '\131', '\152',
'\040', '\151', '\156', '\040', '\061', '\012', '\167', '\142',
'\117', '\040', '\167', '\141', '\040', '\061', '\012', '\161',
'\130', '\142', '\040', '\161', '\165', '\040', '\061', '\012',
'\165', '\112', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\161', '\113', '\164', '\040', '\164', '\150', '\040',
'\061', '\012', '\166', '\152', '\117', '\040', '\151', '\152',
'\040', '\061', '\012', '\167', '\165', '\104', '\040', '\161',
'\165', '\040', '\061', '\012', '\142', '\154', '\121', '\040',
'\154', '\145', '\040', '\061', '\012', '\171', '\146', '\102',
'\040', '\156', '\171', '\040', '\061', '\012', '\121', '\163',
'\153', '\040', '\163', '\164', '\040', '\061', '\012', '\125',
'\167', '\155', '\040', '\155', '\145', '\040', '\061', '\012',
'\132', '\161', '\147', '\040', '\161', '\165', '\040', '\061',
'\012', '\156', '\155', '\131', '\040', '\141', '\156', '\040',
'\061', '\012', '\160', '\130', '\167', '\040', '\160', '\162',
'\040', '\061', '\012', '\171', '\126', '\152', '\040', '\151',
'\152', '\040', '\061', '\012', '\147', '\111', '\167', '\040',
'\156', '\147', '\040', '\061', '\012', '\110', '\170', '\153',
'\040', '\153', '\141', '\040', '\061', '\012', '\120', '\147',
'\171', '\040', '\156', '\147', '\040', '\061', '\012', '\154',
'\121', '\166', '\040', '\154', '\145', '\040', '\061', '\012',
'\142', '\156', '\113', '\040', '\141', '\156', '\040', '\061',
'\012', '\170', '\164', '\132', '\040', '\164', '\150', '\040',
'\061', '\012', '\121', '\143', '\145', '\040', '\143', '\150',
'\040', '\061', '\012', '\116', '\152', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\155', '\166', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\115', '\167', '\172',
'\040', '\163', '\172', '\040', '\061', '\012', '\107', '\164',
'\156', '\040', '\164', '\150', '\040', '\061', '\012', '\146',
'\112', '\150', '\040', '\164', '\150', '\040', '\061', '\012',
'\166', '\112', '\172', '\040', '\163', '\172', '\040', '\061',
'\012', '\147', '\104', '\153', '\040', '\156', '\147', '\040',
'\061', '\012', '\144', '\114', '\167', '\040', '\144', '\145',
'\040', '\061', '\012', '\157', '\145', '\125', '\040', '\145',
'\162', '\040', '\061', '\012', '\143', '\166', '\131', '\040',
'\143', '\150', '\040', '\061', '\012', '\107', '\142', '\142',
'\040', '\142', '\145', '\040', '\061', '\012', '\124', '\161',
'\144', '\040', '\161', '\165', '\040', '\061', '\012', '\141',
'\124', '\160', '\040', '\141', '\156', '\040', '\061', '\012',
'\131', '\167', '\147', '\040', '\156', '\147', '\040', '\061',
'\012', '\152', '\144', '\124', '\040', '\144', '\145', '\040',
'\061', '\012', '\127', '\153', '\155', '\040', '\153', '\141',
'\040', '\061', '\012', '\160', '\170', '\101', '\040', '\160',
'\162', '\040', '\061', '\012', '\166', '\104', '\154', '\040',
'\154', '\145', '\040', '\061', '\012', '\163', '\146', '\104',
'\040', '\163', '\164', '\040', '\061', '\012', '\162', '\161',
'\126', '\040', '\161', '\165', '\040', '\061', '\012', '\143',
'\110', '\142', '\040', '\143', '\150', '\040', '\061', '\012',
'\151', '\126', '\143', '\040', '\143', '\150', '\040', '\061',
'\012', '\115', '\146', '\150', '\040', '\164', '\150', '\040',
'\061', '\012', '\163', '\126', '\155', '\040', '\163', '\164',
'\040', '\061', '\012', '\156', '\172', '\122', '\040', '\141',
'\156', '\040', '\061', '\012', '\121', '\166', '\163', '\040',
'\163', '\164', '\040', '\061', '\012', '\153', '\132', '\147',
'\040', '\156', '\147', '\040', '\061', '\012', '\127', '\156',
'\167', '\040', '\141', '\156', '\040', '\061', '\012', '\161',
'\132', '\142', '\040', '\161', '\165', '\040', '\061', '\012',
'\107', '\166', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\166', '\120', '\153', '\040', '\153', '\141', '\040',
'\061', '\012', '\123', '\170', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\166', '\116', '\147', '\040', '\156',
'\147', '\040', '\061', '\012', '\161', '\162', '\110', '\040',
'\161', '\165', '\040', '\061', '\012', '\146', '\114', '\143',
'\040', '\143', '\150', '\040', '\061', '\012', '\167', '\126',
'\163', '\040', '\163', '\164', '\040', '\061', '\012', '\161',
'\105', '\150', '\040', '\164', '\150', '\040', '\061', '\012',
'\165', '\161', '\103', '\040', '\161', '\165', '\040', '\061',
'\012', '\164', '\132', '\170', '\040', '\164', '\150', '\040',
'\061', '\012', '\171', '\150', '\111', '\040', '\164', '\150',
'\040', '\061', '\012', '\167', '\116', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\162', '\106', '\152', '\040',
'\145', '\162', '\040', '\061', '\012', '\170', '\120', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\160', '\161',
'\127', '\040', '\161', '\165', '\040', '\061', '\012', '\120',
'\152', '\143', '\040', '\143', '\150', '\040', '\061', '\012',
'\152', '\131', '\152', '\040', '\151', '\152', '\040', '\061',
'\012', '\160', '\106', '\166', '\040', '\166', '\141', '\040',
'\061', '\012', '\166', '\114', '\162', '\040', '\145', '\162',
'\040', '\061', '\012', '\154', '\161', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\170', '\112', '\147', '\040',
'\156', '\147', '\040', '\061', '\012', '\154', '\126', '\172',
'\040', '\154', '\145', '\040', '\061', '\012', '\143', '\132',
'\143', '\040', '\143', '\150', '\040', '\061', '\012', '\150',
'\143', '\106', '\040', '\164', '\150', '\040', '\061', '\012',
'\165', '\150', '\112', '\040', '\164', '\150', '\040', '\061',
'\012', '\143', '\114', '\152', '\040', '\143', '\150', '\040',
'\061', '\012', '\161', '\171', '\127', '\040', '\161', '\165',
'\040', '\061', '\012', '\172', '\150', '\124', '\040', '\164',
'\150', '\040', '\061', '\012', '\155', '\164', '\113', '\040',
'\164', '\150', '\040', '\061', '\012', '\160', '\122', '\142',
'\040', '\160', '\162', '\040', '\061', '\012', '\142', '\103',
'\170', '\040', '\142', '\145', '\040', '\061', '\012', '\156',
'\112', '\146', '\040', '\141', '\156', '\040', '\061', '\012',
'\152', '\167', '\106', '\040', '\151', '\152', '\040', '\061',
'\012', '\120', '\144', '\152', '\040', '\144', '\145', '\040',
'\061', '\012', '\152', '\170', '\105', '\040', '\151', '\152',
'\040', '\061', '\012', '\163', '\154', '\132', '\040', '\154',
'\145', '\040', '\061', '\012', '\114', '\170', '\156', '\040',
'\141', '\156', '\040', '\061', '\012', '\172', '\156', '\114',
'\040', '\141', '\156', '\040', '\061', '\012', '\155', '\172',
'\126', '\040', '\163', '\172', '\040', '\061', '\012', '\154',
'\107', '\161', '\040', '\154', '\145', '\040', '\061', '\012',
'\121', '\142', '\167', '\040', '\167', '\141', '\040', '\061',
'\012', '\152', '\142', '\131', '\040', '\151', '\152', '\040',
'\061', '\012', '\172', '\123', '\155', '\040', '\163', '\172',
'\040', '\061', '\012', '\121', '\161', '\170', '\040', '\161',
'\165', '\040', '\061', '\012', '\171', '\160', '\122', '\040',
'\160', '\162', '\040', '\061', '\012', '\147', '\103', '\143',
'\040', '\143', '\150', '\040', '\061', '\012', '\131', '\166',
'\170', '\040', '\166', '\141', '\040', '\061', '\012', '\151',
'\150', '\111', '\040', '\164', '\150', '\040', '\061', '\012',
'\132', '\146', '\170', '\040', '\146', '\157', '\040', '\061',
'\012', '\156', '\152', '\111', '\040', '\156', '\144', '\040',
'\061', '\012', '\131', '\160', '\164', '\040', '\164', '\150',
'\040', '\061', '\012', '\154', '\170', '\124', '\040', '\154',
'\145', '\040', '\061', '\012', '\146', '\126', '\166', '\040',
'\166', '\141', '\040', '\061', '\012', '\112', '\172', '\155',
'\040', '\163', '\172', '\040', '\061', '\012', '\152', '\170',
'\101', '\040', '\151', '\152', '\040', '\061', '\012', '\147',
'\104', '\154', '\040', '\156', '\147', '\040', '\061', '\012',
'\105', '\141', '\161', '\040', '\141', '\156', '\040', '\061',
'\012', '\121', '\143', '\156', '\040', '\141', '\156', '\040',
'\061', '\012', '\172', '\107', '\142', '\040', '\163', '\172',
'\040', '\061', '\012', '\152', '\114', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\161', '\153', '\130', '\040',
'\161', '\165', '\040', '\061', '\012', '\167', '\142', '\113',
'\040', '\167', '\141', '\040', '\061', '\012', '\156', '\116',
'\170', '\040', '\141', '\156', '\040', '\061', '\012', '\163',
'\161', '\127', '\040', '\161', '\165', '\040', '\061', '\012',
'\167', '\122', '\170', '\040', '\167', '\141', '\040', '\061',
'\012', '\170', '\162', '\125', '\040', '\145', '\162', '\040',
'\061', '\012', '\146', '\156', '\121', '\040', '\141', '\156',
'\040', '\061', '\012', '\153', '\172', '\102', '\040', '\163',
'\172', '\040', '\061', '\012', '\122', '\143', '\156', '\040',
'\143', '\150', '\040', '\061', '\012', '\161', '\142', '\114',
'\040', '\161', '\165', '\040', '\061', '\012', '\163', '\162',
'\104', '\040', '\145', '\162', '\040', '\061', '\012', '\126',
'\170', '\165', '\040', '\161', '\165', '\040', '\061', '\012',
'\161', '\166', '\106', '\040', '\161', '\165', '\040', '\061',
'\012', '\167', '\112', '\162', '\040', '\145', '\162', '\040',
'\061', '\012', '\131', '\170', '\147', '\040', '\156', '\147',
'\040', '\061', '\012', '\161', '\151', '\131', '\040', '\161',
'\165', '\040', '\061', '\012', '\146', '\115', '\143', '\040',
'\143', '\150', '\040', '\061', '\012', '\150', '\142', '\131',
'\040', '\164', '\150', '\040', '\061', '\012', '\150', '\147',
'\110', '\040', '\164', '\150', '\040', '\061', '\012', '\144',
'\155', '\123', '\040', '\144', '\145', '\040', '\061', '\012',
'\152', '\124', '\156', '\040', '\141', '\156', '\040', '\061',
'\012', '\132', '\152', '\155', '\040', '\151', '\152', '\040',
'\061', '\012', '\116', '\152', '\154', '\040', '\154', '\145',
'\040', '\061', '\012', '\144', '\161', '\126', '\040', '\161',
'\165', '\040', '\061', '\012', '\131', '\152', '\150', '\040',
'\164', '\150', '\040', '\061', '\012', '\162', '\113', '\167',
'\040', '\145', '\162', '\040', '\061', '\012', '\143', '\170',
'\125', '\040', '\143', '\150', '\040', '\061', '\012', '\103',
'\153', '\152', '\040', '\151', '\152', '\040', '\061', '\012',
'\172', '\146', '\112', '\040', '\163', '\172', '\040', '\061',
'\012', '\171', '\164', '\106', '\040', '\164', '\150', '\040',
'\061', '\012', '\170', '\162', '\120', '\040', '\145', '\162',
'\040', '\061', '\012', '\161', '\105', '\152', '\040', '\161',
'\165', '\040', '\061', '\012', '\162', '\170', '\117', '\040',
'\145', '\162', '\040', '\061', '\012', '\162', '\132', '\156',
'\040', '\141', '\156', '\040', '\061', '\012', '\142', '\132',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\143',
'\130', '\161', '\040', '\143', '\150', '\040', '\061', '\012',
'\167', '\166', '\104', '\040', '\166', '\141', '\040', '\061',
'\012', '\150', '\143', '\130', '\040', '\164', '\150', '\040',
'\061', '\012', '\172', '\153', '\117', '\040', '\163', '\172',
'\040', '\061', '\012', '\150', '\116', '\170', '\040', '\164',
'\150', '\040', '\061', '\012', '\167', '\106', '\147', '\040',
'\156', '\147', '\040', '\061', '\012', '\153', '\130', '\165',
'\040', '\161', '\165', '\040', '\061', '\012', '\126', '\153',
'\156', '\040', '\141', '\156', '\040', '\061', '\012', '\107',
'\152', '\172', '\040', '\163', '\172', '\040', '\061', '\012',
'\121', '\143', '\144', '\040', '\143', '\150', '\040', '\061',
'\012', '\171', '\166', '\106', '\040', '\166', '\141', '\040',
'\061', '\012', '\170', '\106', '\170', '\040', '\170', '\145',
'\040', '\061', '\012', '\144', '\123', '\152', '\040', '\144',
'\145', '\040', '\061', '\012', '\170', '\120', '\142', '\040',
'\142', '\145', '\040', '\061', '\012', '\157', '\106', '\160',
'\040', '\157', '\156', '\040', '\061', '\012', '\161', '\101',
'\153', '\040', '\161', '\165', '\040', '\061', '\012', '\162',
'\161', '\125', '\040', '\161', '\165', '\040', '\061', '\012',
'\160', '\107', '\166', '\040', '\166', '\141', '\040', '\061',
'\012', '\150', '\172', '\103', '\040', '\164', '\150', '\040',
'\061', '\012', '\161', '\111', '\153', '\040', '\161', '\165',
'\040', '\061', '\012', '\114', '\150', '\154', '\040', '\164',
'\150', '\040', '\061', '\012', '\106', '\167', '\142', '\040',
'\167', '\141', '\040', '\061', '\012', '\160', '\147', '\105',
'\040', '\156', '\147', '\040', '\061', '\012', '\101', '\167',
'\172', '\040', '\163', '\172', '\040', '\061', '\012', '\146',
'\102', '\153', '\040', '\153', '\141', '\040', '\061', '\012',
'\170', '\113', '\144', '\040', '\144', '\145', '\040', '\061',
'\012', '\120', '\146', '\167', '\040', '\167', '\141', '\040',
'\061', '\012', '\165', '\161', '\113', '\040', '\161', '\165',
'\040', '\061', '\012', '\160', '\112', '\143', '\040', '\143',
'\150', '\040', '\061', '\012', '\142', '\124', '\143', '\040',
'\143', '\150', '\040', '\061', '\012', '\164', '\127', '\147',
'\040', '\164', '\150', '\040', '\061', '\012', '\147', '\144',
'\116', '\040', '\156', '\147', '\040', '\061', '\012', '\152',
'\162', '\116', '\040', '\145', '\162', '\040', '\061', '\012',
'\153', '\154', '\123', '\040', '\154', '\145', '\040', '\061',
'\012', '\161', '\105', '\151', '\040', '\161', '\165', '\040',
'\061', '\012', '\163', '\106', '\156', '\040', '\141', '\156',
'\040', '\061', '\012', '\164', '\161', '\122', '\040', '\164',
'\150', '\040', '\061', '\012', '\106', '\156', '\155', '\040',
'\141', '\156', '\040', '\061', '\012', '\150', '\130', '\166',
'\040', '\164', '\150', '\040', '\061', '\012', '\146', '\170',
'\116', '\040', '\146', '\157', '\040', '\061', '\012', '\142',
'\166', '\114', '\040', '\166', '\141', '\040', '\061', '\012',
'\157', '\107', '\146', '\040', '\157', '\156', '\040', '\061',
'\012', '\150', '\132', '\155', '\040', '\164', '\150', '\040',
'\061', '\012', '\171', '\146', '\110', '\040', '\156', '\171',
'\040', '\061', '\012', '\144', '\143', '\105', '\040', '\143',
'\150', '\040', '\061', '\012', '\160', '\147', '\127', '\040',
'\156', '\147', '\040', '\061', '\012', '\167', '\162', '\102',
'\040', '\145', '\162', '\040', '\061', '\012', '\153', '\127',
'\155', '\040', '\153', '\141', '\040', '\061', '\012', '\123',
'\150', '\170', '\040', '\164', '\150', '\040', '\061', '\012',
'\164', '\167', '\120', '\040', '\164', '\150', '\040', '\061',
'\012', '\121', '\166', '\144', '\040', '\144', '\145', '\040',
'\061', '\012', '\121', '\147', '\165', '\040', '\161', '\165',
'\040', '\061', '\012', '\160', '\112', '\164', '\040', '\164',
'\150', '\040', '\061', '\012', '\172', '\116', '\166', '\040',
'\163', '\172', '\040', '\061', '\012', '\110', '\160', '\150',
'\040', '\164', '\150', '\040', '\061', '\012', '\153', '\154',
'\106', '\040', '\154', '\145', '\040', '\061', '\012', '\166',
'\161', '\172', '\040', '\161', '\165', '\040', '\061', '\012',
'\163', '\147', '\107', '\040', '\156', '\147', '\040', '\061',
'\012', '\153', '\144', '\132', '\040', '\144', '\145', '\040',
'\061', '\012', '\145', '\152', '\130', '\040', '\145', '\162',
'\040', '\061', '\012', '\120', '\170', '\165', '\040', '\161',
'\165', '\040', '\061', '\012', '\160', '\166', '\124', '\040',
'\166', '\141', '\040', '\061', '\012', '\113', '\161', '\170',
'\040', '\161', '\165', '\040', '\061', '\012', '\121', '\155',
'\142', '\040', '\155', '\145', '\040', '\061', '\012', '\170',
'\106', '\153', '\040', '\153', '\141', '\040', '\061', '\012',
'\167', '\121', '\142', '\040', '\167', '\141', '\040', '\061',
'\012', '\120', '\147', '\170', '\040', '\156', '\147', '\040',
'\061', '\012', '\171', '\160', '\114', '\040', '\160', '\162',
'\040', '\061', '\012', '\142', '\167', '\105', '\040', '\167',
'\141', '\040', '\061', '\012', '\170', '\110', '\164', '\040',
'\164', '\150', '\040', '\061', '\012', '\153', '\126', '\172',
'\040', '\163', '\172', '\040', '\061', '\012', '\152', '\155',
'\106', '\040', '\151', '\152', '\040', '\061', '\012', '\111',
'\170', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\161', '\171', '\120', '\040', '\161', '\165', '\040', '\061',
'\012', '\162', '\126', '\166', '\040', '\145', '\162', '\040',
'\061', '\012', '\131', '\164', '\167', '\040', '\164', '\150',
'\040', '\061', '\012', '\161', '\160', '\132', '\040', '\161',
'\165', '\040', '\061', '\012', '\164', '\160', '\132', '\040',
'\164', '\150', '\040', '\061', '\012', '\172', '\152', '\130',
'\040', '\163', '\172', '\040', '\061', '\012', '\113', '\150',
'\147', '\040', '\164', '\150', '\040', '\061', '\012', '\161',
'\146', '\126', '\040', '\161', '\165', '\040', '\061', '\012',
'\112', '\172', '\170', '\040', '\163', '\172', '\040', '\061',
'\012', '\153', '\124', '\152', '\040', '\151', '\152', '\040',
'\061', '\012', '\102', '\172', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\156', '\152', '\122', '\040', '\141',
'\156', '\040', '\061', '\012', '\143', '\147', '\127', '\040',
'\143', '\150', '\040', '\061', '\012', '\143', '\155', '\111',
'\040', '\143', '\150', '\040', '\061', '\012', '\153', '\103',
'\142', '\040', '\153', '\141', '\040', '\061', '\012', '\160',
'\131', '\160', '\040', '\160', '\162', '\040', '\061', '\012',
'\166', '\153', '\132', '\040', '\153', '\141', '\040', '\061',
'\012', '\167', '\166', '\153', '\040', '\153', '\141', '\040',
'\061', '\012', '\126', '\146', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\156', '\154', '\132', '\040', '\141',
'\156', '\040', '\061', '\012', '\161', '\116', '\152', '\040',
'\161', '\165', '\040', '\061', '\012', '\162', '\103', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\153', '\142',
'\126', '\040', '\153', '\141', '\040', '\061', '\012', '\104',
'\161', '\152', '\040', '\161', '\165', '\040', '\061', '\012',
'\142', '\162', '\104', '\040', '\145', '\162', '\040', '\061',
'\012', '\154', '\142', '\107', '\040', '\154', '\145', '\040',
'\061', '\012', '\170', '\150', '\106', '\040', '\164', '\150',
'\040', '\061', '\012', '\153', '\170', '\132', '\040', '\153',
'\141', '\040', '\061', '\012', '\111', '\165', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\171', '\106', '\170',
'\040', '\156', '\171', '\040', '\061', '\012', '\161', '\126',
'\154', '\040', '\161', '\165', '\040', '\061', '\012', '\154',
'\143', '\107', '\040', '\143', '\150', '\040', '\061', '\012',
'\166', '\127', '\162', '\040', '\145', '\162', '\040', '\061',
'\012', '\141', '\102', '\161', '\040', '\141', '\156', '\040',
'\061', '\012', '\171', '\112', '\153', '\040', '\153', '\141',
'\040', '\061', '\012', '\143', '\172', '\114', '\040', '\143',
'\150', '\040', '\061', '\012', '\152', '\111', '\165', '\040',
'\161', '\165', '\040', '\061', '\012', '\166', '\125', '\154',
'\040', '\154', '\145', '\040', '\061', '\012', '\160', '\132',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\166',
'\164', '\127', '\040', '\164', '\150', '\040', '\061', '\012',
'\121', '\170', '\167', '\040', '\167', '\141', '\040', '\061',
'\012', '\144', '\131', '\166', '\040', '\144', '\145', '\040',
'\061', '\012', '\151', '\161', '\110', '\040', '\161', '\165',
'\040', '\061', '\012', '\130', '\167', '\163', '\040', '\163',
'\164', '\040', '\061', '\012', '\146', '\104', '\152', '\040',
'\151', '\152', '\040', '\061', '\012', '\170', '\126', '\172',
'\040', '\163', '\172', '\040', '\061', '\012', '\144', '\113',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\166',
'\146', '\121', '\040', '\166', '\141', '\040', '\061', '\012',
'\150', '\166', '\104', '\040', '\164', '\150', '\040', '\061',
'\012', '\167', '\144', '\131', '\040', '\144', '\145', '\040',
'\061', '\012', '\110', '\172', '\172', '\040', '\163', '\172',
'\040', '\061', '\012', '\143', '\131', '\163', '\040', '\143',
'\150', '\040', '\061', '\012', '\106', '\164', '\152', '\040',
'\164', '\150', '\040', '\061', '\012', '\144', '\160', '\125',
'\040', '\144', '\145', '\040', '\061', '\012', '\114', '\154',
'\144', '\040', '\154', '\145', '\040', '\061', '\012', '\107',
'\161', '\167', '\040', '\161', '\165', '\040', '\061', '\012',
'\153', '\144', '\122', '\040', '\144', '\145', '\040', '\061',
'\012', '\166', '\130', '\147', '\040', '\156', '\147', '\040',
'\061', '\012', '\161', '\163', '\131', '\040', '\161', '\165',
'\040', '\061', '\012', '\152', '\116', '\146', '\040', '\151',
'\152', '\040', '\061', '\012', '\121', '\152', '\152', '\040',
'\151', '\152', '\040', '\061', '\012', '\160', '\126', '\154',
'\040', '\154', '\145', '\040', '\061', '\012', '\112', '\155',
'\170', '\040', '\155', '\145', '\040', '\061', '\012', '\160',
'\104', '\152', '\040', '\151', '\152', '\040', '\061', '\012',
'\151', '\102', '\143', '\040', '\143', '\150', '\040', '\061',
'\012', '\153', '\114', '\152', '\040', '\151', '\152', '\040',
'\061', '\012', '\170', '\156', '\107', '\040', '\141', '\156',
'\040', '\061', '\012', '\166', '\124', '\154', '\040', '\154',
'\145', '\040', '\061', '\012', '\116', '\144', '\147', '\040',
'\156', '\147', '\040', '\061', '\012', '\160', '\161', '\125',
'\040', '\161', '\165', '\040', '\061', '\012', '\125', '\141',
'\167', '\040', '\141', '\156', '\040', '\061', '\012', '\146',
'\172', '\116', '\040', '\163', '\172', '\040', '\061', '\012',
'\147', '\116', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\153', '\152', '\115', '\040', '\151', '\152', '\040',
'\061', '\012', '\154', '\156', '\113', '\040', '\141', '\156',
'\040', '\061', '\012', '\172', '\170', '\142', '\040', '\163',
'\172', '\040', '\061', '\012', '\153', '\143', '\123', '\040',
'\143', '\150', '\040', '\061', '\012', '\156', '\152', '\115',
'\040', '\141', '\156', '\040', '\061', '\012', '\107', '\144',
'\167', '\040', '\144', '\145', '\040', '\061', '\012', '\154',
'\156', '\132', '\040', '\141', '\156', '\040', '\061', '\012',
'\131', '\147', '\152', '\040', '\156', '\147', '\040', '\061',
'\012', '\150', '\113', '\144', '\040', '\164', '\150', '\040',
'\061', '\012', '\147', '\160', '\124', '\040', '\156', '\147',
'\040', '\061', '\012', '\171', '\161', '\120', '\040', '\161',
'\165', '\040', '\061', '\012', '\151', '\152', '\130', '\040',
'\151', '\156', '\040', '\061', '\012', '\152', '\107', '\146',
'\040', '\151', '\152', '\040', '\061', '\012', '\142', '\170',
'\111', '\040', '\142', '\145', '\040', '\061', '\012', '\166',
'\130', '\170', '\040', '\166', '\141', '\040', '\061', '\012',
'\126', '\162', '\167', '\040', '\145', '\162', '\040', '\061',
'\012', '\103', '\167', '\170', '\040', '\167', '\141', '\040',
'\061', '\012', '\156', '\102', '\150', '\040', '\164', '\150',
'\040', '\061', '\012', '\161', '\166', '\171', '\040', '\161',
'\165', '\040', '\061', '\012', '\163', '\170', '\102', '\040',
'\163', '\164', '\040', '\061', '\012', '\155', '\126', '\153',
'\040', '\153', '\141', '\040', '\061', '\012', '\103', '\172',
'\170', '\040', '\163', '\172', '\040', '\061', '\012', '\146',
'\171', '\126', '\040', '\156', '\171', '\040', '\061', '\012',
'\143', '\130', '\167', '\040', '\143', '\150', '\040', '\061',
'\012', '\121', '\156', '\146', '\040', '\141', '\156', '\040',
'\061', '\012', '\131', '\161', '\144', '\040', '\161', '\165',
'\040', '\061', '\012', '\154', '\161', '\110', '\040', '\161',
'\165', '\040', '\061', '\012', '\144', '\142', '\131', '\040',
'\144', '\145', '\040', '\061', '\012', '\123', '\161', '\142',
'\040', '\161', '\165', '\040', '\061', '\012', '\113', '\161',
'\167', '\040', '\161', '\165', '\040', '\061', '\012', '\172',
'\160', '\112', '\040', '\163', '\172', '\040', '\061', '\012',
'\143', '\142', '\115', '\040', '\143', '\150', '\040', '\061',
'\012', '\172', '\106', '\147', '\040', '\156', '\147', '\040',
'\061', '\012', '\163', '\113', '\142', '\040', '\163', '\164',
'\040', '\061', '\012', '\161', '\162', '\113', '\040', '\161',
'\165', '\040', '\061', '\012', '\172', '\112', '\143', '\040',
'\143', '\150', '\040', '\061', '\012', '\156', '\122', '\156',
'\040', '\141', '\156', '\040', '\061', '\012', '\146', '\161',
'\116', '\040', '\161', '\165', '\040', '\061', '\012', '\150',
'\146', '\101', '\040', '\164', '\150', '\040', '\061', '\012',
'\161', '\157', '\107', '\040', '\161', '\165', '\040', '\061',
'\012', '\117', '\167', '\172', '\040', '\163', '\172', '\040',
'\061', '\012', '\156', '\154', '\107', '\040', '\141', '\156',
'\040', '\061', '\012', '\167', '\111', '\170', '\040', '\167',
'\141', '\040', '\061', '\012', '\161', '\162', '\120', '\040',
'\161', '\165', '\040', '\061', '\012', '\116', '\167', '\147',
'\040', '\156', '\147', '\040', '\061', '\012', '\161', '\141',
'\127', '\040', '\141', '\156', '\040', '\061', '\012', '\150',
'\143', '\124', '\040', '\164', '\150', '\040', '\061', '\012',
'\167', '\153', '\102', '\040', '\153', '\141', '\040', '\061',
'\012', '\116', '\144', '\164', '\040', '\164', '\150', '\040',
'\061', '\012', '\113', '\172', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\147', '\170', '\102', '\040', '\156',
'\147', '\040', '\061', '\012', '\102', '\152', '\172', '\040',
'\163', '\172', '\040', '\061', '\012', '\166', '\124', '\146',
'\040', '\166', '\141', '\040', '\061', '\012', '\152', '\106',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\161',
'\115', '\145', '\040', '\161', '\165', '\040', '\061', '\012',
'\165', '\146', '\121', '\040', '\161', '\165', '\040', '\061',
'\012', '\156', '\160', '\107', '\040', '\141', '\156', '\040',
'\061', '\012', '\165', '\132', '\153', '\040', '\161', '\165',
'\040', '\061', '\012', '\161', '\124', '\167', '\040', '\161',
'\165', '\040', '\061', '\012', '\107', '\154', '\167', '\040',
'\154', '\145', '\040', '\061', '\012', '\113', '\161', '\161',
'\040', '\161', '\165', '\040', '\061', '\012', '\103', '\170',
'\162', '\040', '\145', '\162', '\040', '\061', '\012', '\152',
'\132', '\163', '\040', '\163', '\164', '\040', '\061', '\012',
'\123', '\161', '\166', '\040', '\161', '\165', '\040', '\061',
'\012', '\171', '\120', '\155', '\040', '\155', '\145', '\040',
'\061', '\012', '\145', '\121', '\152', '\040', '\145', '\162',
'\040', '\061', '\012', '\141', '\111', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\147', '\104', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\154', '\111', '\160',
'\040', '\154', '\145', '\040', '\061', '\012', '\152', '\116',
'\152', '\040', '\151', '\152', '\040', '\061', '\012', '\161',
'\117', '\144', '\040', '\161', '\165', '\040', '\061', '\012',
'\166', '\153', '\115', '\040', '\153', '\141', '\040', '\061',
'\012', '\166', '\106', '\171', '\040', '\166', '\141', '\040',
'\061', '\012', '\143', '\146', '\126', '\040', '\143', '\150',
'\040', '\061', '\012', '\113', '\152', '\150', '\040', '\164',
'\150', '\040', '\061', '\012', '\147', '\153', '\120', '\040',
'\156', '\147', '\040', '\061', '\012', '\162', '\112', '\143',
'\040', '\143', '\150', '\040', '\061', '\012', '\165', '\120',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\157',
'\172', '\121', '\040', '\157', '\156', '\040', '\061', '\012',
'\104', '\154', '\153', '\040', '\154', '\145', '\040', '\061',
'\012', '\166', '\130', '\150', '\040', '\164', '\150', '\040',
'\061', '\012', '\153', '\164', '\131', '\040', '\164', '\150',
'\040', '\061', '\012', '\166', '\127', '\171', '\040', '\166',
'\141', '\040', '\061', '\012', '\147', '\121', '\166', '\040',
'\156', '\147', '\040', '\061', '\012', '\131', '\167', '\167',
'\040', '\167', '\141', '\040', '\061', '\012', '\124', '\160',
'\172', '\040', '\163', '\172', '\040', '\061', '\012', '\121',
'\150', '\143', '\040', '\164', '\150', '\040', '\061', '\012',
'\170', '\165', '\124', '\040', '\161', '\165', '\040', '\061',
'\012', '\156', '\142', '\123', '\040', '\141', '\156', '\040',
'\061', '\012', '\172', '\121', '\147', '\040', '\156', '\147',
'\040', '\061', '\012', '\166', '\147', '\132', '\040', '\156',
'\147', '\040', '\061', '\012', '\160', '\125', '\157', '\040',
'\157', '\156', '\040', '\061', '\012', '\165', '\127', '\142',
'\040', '\161', '\165', '\040', '\061', '\012', '\155', '\115',
'\146', '\040', '\155', '\145', '\040', '\061', '\012', '\132',
'\143', '\144', '\040', '\143', '\150', '\040', '\061', '\012',
'\151', '\102', '\160', '\040', '\151', '\156', '\040', '\061',
'\012', '\146', '\167', '\160', '\040', '\160', '\162', '\040',
'\061', '\012', '\172', '\131', '\146', '\040', '\163', '\172',
'\040', '\061', '\012', '\167', '\103', '\160', '\040', '\160',
'\162', '\040', '\061', '\012', '\103', '\161', '\171', '\040',
'\161', '\165', '\040', '\061', '\012', '\143', '\152', '\106',
'\040', '\143', '\150', '\040', '\061', '\012', '\107', '\146',
'\150', '\040', '\164', '\150', '\040', '\061', '\012', '\155',
'\143', '\127', '\040', '\143', '\150', '\040', '\061', '\012',
'\143', '\161', '\126', '\040', '\143', '\150', '\040', '\061',
'\012', '\165', '\112', '\144', '\040', '\161', '\165', '\040',
'\061', '\012', '\151', '\125', '\152', '\040', '\151', '\156',
'\040', '\061', '\012', '\166', '\153', '\122', '\040', '\153',
'\141', '\040', '\061', '\012', '\167', '\147', '\111', '\040',
'\156', '\147', '\040', '\061', '\012', '\166', '\125', '\147',
'\040', '\156', '\147', '\040', '\061', '\012', '\127', '\144',
'\156', '\040', '\144', '\145', '\040', '\061', '\012', '\163',
'\152', '\106', '\040', '\163', '\164', '\040', '\061', '\012',
'\164', '\120', '\166', '\040', '\164', '\150', '\040', '\061',
'\012', '\170', '\122', '\156', '\040', '\141', '\156', '\040',
'\061', '\012', '\153', '\154', '\126', '\040', '\154', '\145',
'\040', '\061', '\012', '\163', '\142', '\115', '\040', '\163',
'\164', '\040', '\061', '\012', '\155', '\146', '\124', '\040',
'\155', '\145', '\040', '\061', '\012', '\144', '\142', '\126',
'\040', '\144', '\145', '\040', '\061', '\012', '\106', '\155',
'\156', '\040', '\141', '\156', '\040', '\061', '\012', '\147',
'\146', '\125', '\040', '\156', '\147', '\040', '\061', '\012',
'\143', '\142', '\102', '\040', '\143', '\150', '\040', '\061',
'\012', '\131', '\170', '\172', '\040', '\163', '\172', '\040',
'\061', '\012', '\113', '\170', '\153', '\040', '\153', '\141',
'\040', '\061', '\012', '\104', '\167', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\167', '\147', '\130', '\040',
'\156', '\147', '\040', '\061', '\012', '\163', '\120', '\166',
'\040', '\163', '\164', '\040', '\061', '\012', '\166', '\110',
'\144', '\040', '\144', '\145', '\040', '\061', '\012', '\156',
'\142', '\110', '\040', '\141', '\156', '\040', '\061', '\012',
'\143', '\106', '\156', '\040', '\141', '\156', '\040', '\061',
'\012', '\161', '\161', '\130', '\040', '\161', '\165', '\040',
'\061', '\012', '\152', '\106', '\145', '\040', '\145', '\162',
'\040', '\061', '\012', '\161', '\105', '\142', '\040', '\161',
'\165', '\040', '\061', '\012', '\144', '\106', '\150', '\040',
'\164', '\150', '\040', '\061', '\012', '\165', '\105', '\157',
'\040', '\161', '\165', '\040', '\061', '\012', '\154', '\143',
'\111', '\040', '\143', '\150', '\040', '\061', '\012', '\142',
'\115', '\155', '\040', '\155', '\145', '\040', '\061', '\012',
'\172', '\132', '\167', '\040', '\163', '\172', '\040', '\061',
'\012', '\150', '\152', '\117', '\040', '\164', '\150', '\040',
'\061', '\012', '\150', '\113', '\170', '\040', '\164', '\150',
'\040', '\061', '\012', '\152', '\147', '\103', '\040', '\156',
'\147', '\040', '\061', '\012', '\143', '\156', '\114', '\040',
'\141', '\156', '\040', '\061', '\012', '\106', '\144', '\147',
'\040', '\156', '\147', '\040', '\061', '\012', '\142', '\107',
'\146', '\040', '\142', '\145', '\040', '\061', '\012', '\123',
'\152', '\172', '\040', '\163', '\172', '\040', '\061', '\012',
'\142', '\115', '\152', '\040', '\151', '\152', '\040', '\061',
'\012', '\166', '\130', '\167', '\040', '\166', '\141', '\040',
'\061', '\012', '\107', '\146', '\146', '\040', '\146', '\157',
'\040', '\061', '\012', '\103', '\167', '\167', '\040', '\167',
'\141', '\040', '\061', '\012', '\152', '\163', '\121', '\040',
'\163', '\164', '\040', '\061', '\012', '\132', '\147', '\166',
'\040', '\156', '\147', '\040', '\061', '\012', '\154', '\120',
'\146', '\040', '\154', '\145', '\040', '\061', '\012', '\156',
'\155', '\121', '\040', '\141', '\156', '\040', '\061', '\012',
'\126', '\144', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\154', '\143', '\130', '\040', '\143', '\150', '\040',
'\061', '\012', '\147', '\152', '\124', '\040', '\156', '\147',
'\040', '\061', '\012', '\155', '\167', '\105', '\040', '\155',
'\145', '\040', '\061', '\012', '\161', '\114', '\155', '\040',
'\161', '\165', '\040', '\061', '\012', '\143', '\110', '\161',
'\040', '\143', '\150', '\040', '\061', '\012', '\130', '\164',
'\156', '\040', '\164', '\150', '\040', '\061', '\012', '\116',
'\164', '\161', '\040', '\164', '\150', '\040', '\061', '\012',
'\147', '\127', '\153', '\040', '\156', '\147', '\040', '\061',
'\012', '\120', '\161', '\144', '\040', '\161', '\165', '\040',
'\061', '\012', '\161', '\160', '\120', '\040', '\161', '\165',
'\040', '\061', '\012', '\163', '\122', '\146', '\040', '\163',
'\164', '\040', '\061', '\012', '\161', '\160', '\114', '\040',
'\161', '\165', '\040', '\061', '\012', '\143', '\156', '\104',
'\040', '\141', '\156', '\040', '\061', '\012', '\161', '\160',
'\107', '\040', '\161', '\165', '\040', '\061', '\012', '\144',
'\172', '\123', '\040', '\163', '\172', '\040', '\061', '\012',
'\164', '\132', '\142', '\040', '\164', '\150', '\040', '\061',
'\012', '\171', '\147', '\115', '\040', '\156', '\147', '\040',
'\061', '\012', '\142', '\170', '\103', '\040', '\142', '\145',
'\040', '\061', '\012', '\144', '\146', '\125', '\040', '\144',
'\145', '\040', '\061', '\012', '\142', '\155', '\102', '\040',
'\155', '\145', '\040', '\061', '\012', '\154', '\102', '\172',
'\040', '\154', '\145', '\040', '\061', '\012', '\147', '\112',
'\170', '\040', '\156', '\147', '\040', '\061', '\012', '\131',
'\153', '\166', '\040', '\153', '\141', '\040', '\061', '\012',
'\132', '\144', '\153', '\040', '\144', '\145', '\040', '\061',
'\012', '\167', '\156', '\121', '\040', '\141', '\156', '\040',
'\061', '\012', '\164', '\132', '\152', '\040', '\164', '\150',
'\040', '\061', '\012', '\132', '\172', '\155', '\040', '\163',
'\172', '\040', '\061', '\012', '\126', '\146', '\150', '\040',
'\164', '\150', '\040', '\061', '\012', '\115', '\167', '\143',
'\040', '\143', '\150', '\040', '\061', '\012', '\162', '\125',
'\157', '\040', '\157', '\156', '\040', '\061', '\012', '\161',
'\167', '\160', '\040', '\161', '\165', '\040', '\061', '\012',
'\164', '\143', '\111', '\040', '\164', '\150', '\040', '\061',
'\012', '\164', '\146', '\104', '\040', '\164', '\150', '\040',
'\061', '\012', '\165', '\157', '\132', '\040', '\161', '\165',
'\040', '\061', '\012', '\146', '\103', '\167', '\040', '\167',
'\141', '\040', '\061', '\012', '\151', '\121', '\161', '\040',
'\161', '\165', '\040', '\061', '\012', '\161', '\102', '\147',
'\040', '\161', '\165', '\040', '\061', '\012', '\163', '\126',
'\142', '\040', '\163', '\164', '\040', '\061', '\012', '\160',
'\152', '\125', '\040', '\151', '\152', '\040', '\061', '\012',
'\163', '\143', '\121', '\040', '\143', '\150', '\040', '\061',
'\012', '\160', '\161', '\121', '\040', '\161', '\165', '\040',
'\061', '\012', '\163', '\166', '\132', '\040', '\163', '\164',
'\040', '\061', '\012', '\132', '\160', '\152', '\040', '\151',
'\152', '\040', '\061', '\012', '\160', '\151', '\126', '\040',
'\151', '\156', '\040', '\061', '\012', '\153', '\142', '\120',
'\040', '\153', '\141', '\040', '\061', '\012', '\167', '\161',
'\115', '\040', '\161', '\165', '\040', '\061', '\012', '\162',
'\126', '\142', '\040', '\145', '\162', '\040', '\061', '\012',
'\161', '\132', '\162', '\040', '\161', '\165', '\040', '\061',
'\012', '\150', '\170', '\117', '\040', '\164', '\150', '\040',
'\061', '\012', '\167', '\124', '\156', '\040', '\141', '\156',
'\040', '\061', '\012', '\112', '\172', '\146', '\040', '\163',
'\172', '\040', '\061', '\012', '\121', '\152', '\142', '\040',
'\151', '\152', '\040', '\061', '\012', '\165', '\131', '\166',
'\040', '\161', '\165', '\040', '\061', '\012', '\160', '\167',
'\113', '\040', '\160', '\162', '\040', '\061', '\012', '\150',
'\166', '\110', '\040', '\164', '\150', '\040', '\061', '\012',
'\104', '\161', '\145', '\040', '\161', '\165', '\040', '\061',
'\012', '\160', '\146', '\111', '\040', '\160', '\162', '\040',
'\061', '\012', '\155', '\150', '\126', '\040', '\164', '\150',
'\040', '\061', '\012', '\152', '\147', '\105', '\040', '\156',
'\147', '\040', '\061', '\012', '\162', '\143', '\121', '\040',
'\143', '\150', '\040', '\061', '\012', '\153', '\155', '\124',
'\040', '\153', '\141', '\040', '\061', '\012', '\127', '\172',
'\152', '\040', '\163', '\172', '\040', '\061', '\012', '\170',
'\116', '\163', '\040', '\163', '\164', '\040', '\061', '\012',
'\120', '\142', '\152', '\040', '\151', '\152', '\040', '\061',
'\012', '\172', '\166', '\102', '\040', '\163', '\172', '\040',
'\061', '\012', '\170', '\150', '\112', '\040', '\164', '\150',
'\040', '\061', '\012', '\163', '\166', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\116', '\166', '\156', '\040',
'\141', '\156', '\040', '\061', '\012', '\163', '\167', '\132',
'\040', '\163', '\164', '\040', '\061', '\012', '\152', '\147',
'\106', '\040', '\156', '\147', '\040', '\061', '\012', '\155',
'\146', '\114', '\040', '\155', '\145', '\040', '\061', '\012',
'\172', '\153', '\114', '\040', '\163', '\172', '\040', '\061',
'\012', '\152', '\126', '\160', '\040', '\151', '\152', '\040',
'\061', '\012', '\104', '\153', '\152', '\040', '\151', '\152',
'\040', '\061', '\012', '\170', '\165', '\131', '\040', '\161',
'\165', '\040', '\061', '\012', '\150', '\110', '\161', '\040',
'\164', '\150', '\040', '\061', '\012', '\143', '\123', '\146',
'\040', '\143', '\150', '\040', '\061', '\012', '\112', '\172',
'\144', '\040', '\163', '\172', '\040', '\061', '\012', '\154',
'\161', '\125', '\040', '\161', '\165', '\040', '\061', '\012',
'\161', '\115', '\144', '\040', '\161', '\165', '\040', '\061',
'\012', '\121', '\147', '\152', '\040', '\156', '\147', '\040',
'\061', '\012', '\146', '\170', '\153', '\040', '\153', '\141',
'\040', '\061', '\012', '\164', '\122', '\164', '\040', '\164',
'\150', '\040', '\061', '\012', '\172', '\106', '\153', '\040',
'\163', '\172', '\040', '\061', '\012', '\161', '\105', '\157',
'\040', '\161', '\165', '\040', '\061', '\012', '\166', '\157',
'\131', '\040', '\157', '\156', '\040', '\061', '\012', '\101',
'\167', '\152', '\040', '\151', '\152', '\040', '\061', '\012',
'\124', '\170', '\152', '\040', '\151', '\152', '\040', '\061',
'\012', '\143', '\111', '\147', '\040', '\143', '\150', '\040',
'\061', '\012', '\170', '\125', '\165', '\040', '\161', '\165',
'\040', '\061', '\012', '\163', '\122', '\162', '\040', '\145',
'\162', '\040', '\061', '\012', '\112', '\170', '\156', '\040',
'\141', '\156', '\040', '\061', '\012', '\151', '\120', '\146',
'\040', '\151', '\156', '\040', '\061', '\012', '\145', '\152',
'\131', '\040', '\145', '\162', '\040', '\061', '\012', '\130',
'\164', '\163', '\040', '\164', '\150', '\040', '\061', '\012',
'\160', '\146', '\124', '\040', '\160', '\162', '\040', '\061',
'\012', '\120', '\161', '\141', '\040', '\141', '\156', '\040',
'\061', '\012', '\172', '\163', '\126', '\040', '\163', '\164',
'\040', '\061', '\012', '\171', '\160', '\103', '\040', '\160',
'\162', '\040', '\061', '\012', '\167', '\115', '\163', '\040',
'\163', '\164', '\040', '\061', '\012', '\161', '\105', '\143',
'\040', '\143', '\150', '\040', '\061', '\012', '\166', '\170',
'\131', '\040', '\166', '\141', '\040', '\061', '\012', '\146',
'\125', '\147', '\040', '\156', '\147', '\040', '\061', '\012',
'\104', '\146', '\146', '\040', '\146', '\157', '\040', '\061',
'\012', '\147', '\161', '\121', '\040', '\161', '\165', '\040',
'\061', '\012', '\172', '\115', '\166', '\040', '\163', '\172',
'\040', '\061', '\012', '\166', '\112', '\151', '\040', '\151',
'\156', '\040', '\061', '\012', '\146', '\120', '\166', '\040',
'\166', '\141', '\040', '\061', '\012', '\144', '\114', '\172',
'\040', '\163', '\172', '\040', '\061', '\012', '\143', '\144',
'\115', '\040', '\143', '\150', '\040', '\061', '\012', '\147',
'\116', '\170', '\040', '\156', '\147', '\040', '\061', '\012',
'\141', '\107', '\166', '\040', '\141', '\156', '\040', '\061',
'\012', '\166', '\166', '\104', '\040', '\166', '\141', '\040',
'\061', '\012', '\144', '\112', '\150', '\040', '\164', '\150',
'\040', '\061', '\012', '\162', '\170', '\131', '\040', '\145',
'\162', '\040', '\061', '\012', '\162', '\127', '\152', '\040',
'\145', '\162', '\040', '\061', '\012', '\120', '\166', '\170',
'\040', '\166', '\141', '\040', '\061', '\012', '\162', '\150',
'\104', '\040', '\164', '\150', '\040', '\061', '\012', '\172',
'\122', '\144', '\040', '\163', '\172', '\040', '\061', '\012',
'\113', '\147', '\166', '\040', '\156', '\147', '\040', '\061',
'\012', '\130', '\166', '\171', '\040', '\166', '\141', '\040',
'\061', '\012', '\153', '\132', '\152', '\040', '\151', '\152',
'\040', '\061', '\012', '\153', '\160', '\113', '\040', '\153',
'\141', '\040', '\061', '\012', '\120', '\146', '\156', '\040',
'\141', '\156', '\040', '\061', '\012', '\167', '\125', '\145',
'\040', '\145', '\162', '\040', '\061', '\012', '\167', '\127',
'\170', '\040', '\167', '\141', '\040', '\061', '\012', '\152',
'\120', '\167', '\040', '\151', '\152', '\040', '\061', '\012',
'\147', '\114', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\151', '\112', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\147', '\120', '\170', '\040', '\156', '\147',
'\040', '\061', '\012', '\152', '\110', '\144', '\040', '\144',
'\145', '\040', '\061', '\012', '\166', '\112', '\142', '\040',
'\166', '\141', '\040', '\061', '\012', '\170', '\150', '\102',
'\040', '\164', '\150', '\040', '\061', '\012', '\170', '\121',
'\166', '\040', '\166', '\141', '\040', '\061', '\012', '\105',
'\157', '\141', '\040', '\141', '\156', '\040', '\061', '\012',
'\160', '\152', '\117', '\040', '\151', '\152', '\040', '\061',
'\012', '\171', '\106', '\152', '\040', '\151', '\152', '\040',
'\061', '\012', '\163', '\130', '\157', '\040', '\157', '\156',
'\040', '\061', '\012', '\167', '\142', '\131', '\040', '\167',
'\141', '\040', '\061', '\012', '\143', '\152', '\117', '\040',
'\143', '\150', '\040', '\061', '\012', '\155', '\154', '\132',
'\040', '\154', '\145', '\040', '\061', '\012', '\142', '\116',
'\166', '\040', '\166', '\141', '\040', '\061', '\012', '\153',
'\152', '\120', '\040', '\151', '\152', '\040', '\061', '\012',
'\171', '\130', '\156', '\040', '\141', '\156', '\040', '\061',
'\012', '\161', '\126', '\152', '\040', '\161', '\165', '\040',
'\061', '\012', '\146', '\116', '\166', '\040', '\166', '\141',
'\040', '\061', '\012', '\147', '\152', '\127', '\040', '\156',
'\147', '\040', '\061', '\012', '\156', '\130', '\152', '\040',
'\141', '\156', '\040', '\061', '\012', '\144', '\161', '\112',
'\040', '\161', '\165', '\040', '\061', '\012', '\110', '\156',
'\150', '\040', '\164', '\150', '\040', '\061', '\012', '\121',
'\171', '\153', '\040', '\153', '\141', '\040', '\061', '\012',
'\153', '\166', '\102', '\040', '\153', '\141', '\040', '\061',
'\012', '\161', '\171', '\102', '\040', '\161', '\165', '\040',
'\061', '\012', '\155', '\104', '\164', '\040', '\164', '\150',
'\040', '\061', '\012', '\172', '\147', '\120', '\040', '\156',
'\147', '\040', '\061', '\012', '\132', '\172', '\153', '\040',
'\163', '\172', '\040', '\061', '\012', '\146', '\115', '\153',
'\040', '\153', '\141', '\040', '\061', '\012', '\170', '\172',
'\131', '\040', '\163', '\172', '\040', '\061', '\012', '\161',
'\142', '\124', '\040', '\161', '\165', '\040', '\061', '\012',
'\170', '\117', '\164', '\040', '\164', '\150', '\040', '\061',
'\012', '\170', '\163', '\101', '\040', '\163', '\164', '\040',
'\061', '\012', '\147', '\114', '\152', '\040', '\156', '\147',
'\040', '\061', '\012', '\172', '\170', '\110', '\040', '\163',
'\172', '\040', '\061', '\012', '\143', '\114', '\155', '\040',
'\143', '\150', '\040', '\061', '\012', '\104', '\156', '\153',
'\040', '\141', '\156', '\040', '\061', '\012', '\172', '\111',
'\165', '\040', '\161', '\165', '\040', '\061', '\012', '\153',
'\160', '\112', '\040', '\153', '\141', '\040', '\061', '\012',
'\170', '\162', '\113', '\040', '\145', '\162', '\040', '\061',
'\012', '\145', '\111', '\142', '\040', '\145', '\162', '\040',
'\061', '\012', '\112', '\142', '\160', '\040', '\160', '\162',
'\040', '\061', '\012', '\102', '\161', '\147', '\040', '\161',
'\165', '\040', '\061', '\012', '\164', '\130', '\147', '\040',
'\164', '\150', '\040', '\061', '\012', '\132', '\152', '\153',
'\040', '\151', '\152', '\040', '\061', '\012', '\144', '\122',
'\144', '\040', '\144', '\145', '\040', '\061', '\012', '\164',
'\152', '\132', '\040', '\164', '\150', '\040', '\061', '\012',
'\150', '\121', '\154', '\040', '\164', '\150', '\040', '\061',
'\012', '\151', '\171', '\127', '\040', '\151', '\156', '\040',
'\061', '\012', '\112', '\167', '\144', '\040', '\144', '\145',
'\040', '\061', '\012', '\161', '\132', '\164', '\040', '\164',
'\150', '\040', '\061', '\012', '\143', '\112', '\160', '\040',
'\143', '\150', '\040', '\061', '\012', '\152', '\102', '\147',
'\040', '\156', '\147', '\040', '\061', '\012', '\172', '\162',
'\107', '\040', '\145', '\162', '\040', '\061', '\012', '\150',
'\127', '\146', '\040', '\164', '\150', '\040', '\061', '\012',
'\132', '\144', '\163', '\040', '\163', '\164', '\040', '\061',
'\012', '\161', '\163', '\132', '\040', '\161', '\165', '\040',
'\061', '\012', '\143', '\121', '\170', '\040', '\143', '\150',
'\040', '\061', '\012', '\143', '\143', '\116', '\040', '\143',
'\150', '\040', '\061', '\012', '\171', '\167', '\115', '\040',
'\167', '\141', '\040', '\061', '\012', '\147', '\142', '\130',
'\040', '\156', '\147', '\040', '\061', '\012', '\164', '\146',
'\124', '\040', '\164', '\150', '\040', '\061', '\012', '\166',
'\167', '\164', '\040', '\164', '\150', '\040', '\061', '\012',
'\121', '\142', '\160', '\040', '\160', '\162', '\040', '\061',
'\012', '\171', '\145', '\131', '\040', '\145', '\162', '\040',
'\061', '\012', '\141', '\125', '\142', '\040', '\141', '\156',
'\040', '\061', '\012', '\161', '\110', '\167', '\040', '\161',
'\165', '\040', '\061', '\012', '\106', '\150', '\161', '\040',
'\164', '\150', '\040', '\061', '\012', '\106', '\156', '\147',
'\040', '\141', '\156', '\040', '\061', '\012', '\154', '\166',
'\111', '\040', '\154', '\145', '\040', '\061', '\012', '\152',
'\103', '\146', '\040', '\151', '\152', '\040', '\061', '\012',
'\150', '\161', '\110', '\040', '\164', '\150', '\040', '\061',
'\012', '\164', '\124', '\161', '\040', '\164', '\150', '\040',
'\061', '\012', '\163', '\146', '\111', '\040', '\163', '\164',
'\040', '\061', '\012', '\166', '\163', '\115', '\040', '\163',
'\164', '\040', '\061', '\012', '\154', '\104', '\160', '\040',
'\154', '\145', '\040', '\061', '\012', '\167', '\112', '\142',
'\040', '\167', '\141', '\040', '\061', '\012', '\142', '\150',
'\130', '\040', '\164', '\150', '\040', '\061', '\012', '\162',
'\122', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\161', '\164', '\123', '\040', '\164', '\150', '\040', '\061',
'\012', '\132', '\167', '\160', '\040', '\160', '\162', '\040',
'\061', '\012', '\112', '\142', '\150', '\040', '\164', '\150',
'\040', '\061', '\012', '\150', '\110', '\142', '\040', '\164',
'\150', '\040', '\061', '\012', '\160', '\104', '\171', '\040',
'\160', '\162', '\040', '\061', '\012', '\163', '\152', '\104',
'\040', '\163', '\164', '\040', '\061', '\012', '\117', '\171',
'\160', '\040', '\160', '\162', '\040', '\061', '\012', '\161',
'\167', '\104', '\040', '\161', '\165', '\040', '\061', '\012',
'\152', '\142', '\104', '\040', '\151', '\152', '\040', '\061',
'\012', '\166', '\160', '\107', '\040', '\166', '\141', '\040',
'\061', '\012', '\127', '\152', '\142', '\040', '\151', '\152',
'\040', '\061', '\012', '\166', '\160', '\102', '\040', '\166',
'\141', '\040', '\061', '\012', '\141', '\130', '\161', '\040',
'\141', '\156', '\040', '\061', '\012', '\155', '\127', '\172',
'\040', '\163', '\172', '\040', '\061', '\012', '\161', '\110',
'\151', '\040', '\161', '\165', '\040', '\061', '\012', '\146',
'\171', '\116', '\040', '\156', '\171', '\040', '\061', '\012',
'\155', '\142', '\121', '\040', '\155', '\145', '\040', '\061',
'\012', '\171', '\167', '\103', '\040', '\167', '\141', '\040',
'\061', '\012', '\157', '\126', '\147', '\040', '\156', '\147',
'\040', '\061', '\012', '\170', '\155', '\132', '\040', '\155',
'\145', '\040', '\061', '\012', '\163', '\154', '\117', '\040',
'\154', '\145', '\040', '\061', '\012', '\146', '\130', '\156',
'\040', '\141', '\156', '\040', '\061', '\012', '\153', '\131',
'\163', '\040', '\163', '\164', '\040', '\061', '\012', '\160',
'\126', '\165', '\040', '\161', '\165', '\040', '\061', '\012',
'\142', '\153', '\125', '\040', '\153', '\141', '\040', '\061',
'\012', '\102', '\162', '\161', '\040', '\161', '\165', '\040',
'\061', '\012', '\161', '\103', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\130', '\143', '\170', '\040', '\143',
'\150', '\040', '\061', '\012', '\172', '\115', '\164', '\040',
'\164', '\150', '\040', '\061', '\012', '\143', '\122', '\167',
'\040', '\143', '\150', '\040', '\061', '\012', '\147', '\172',
'\121', '\040', '\156', '\147', '\040', '\061', '\012', '\121',
'\142', '\147', '\040', '\156', '\147', '\040', '\061', '\012',
'\152', '\165', '\125', '\040', '\161', '\165', '\040', '\061',
'\012', '\170', '\123', '\172', '\040', '\163', '\172', '\040',
'\061', '\012', '\126', '\147', '\172', '\040', '\156', '\147',
'\040', '\061', '\012', '\157', '\115', '\167', '\040', '\157',
'\156', '\040', '\061', '\012', '\146', '\160', '\105', '\040',
'\160', '\162', '\040', '\061', '\012', '\170', '\152', '\130',
'\040', '\151', '\152', '\040', '\061', '\012', '\161', '\103',
'\147', '\040', '\161', '\165', '\040', '\061', '\012', '\172',
'\167', '\115', '\040', '\163', '\172', '\040', '\061', '\012',
'\165', '\121', '\154', '\040', '\161', '\165', '\040', '\061',
'\012', '\161', '\120', '\153', '\040', '\161', '\165', '\040',
'\061', '\012', '\160', '\152', '\104', '\040', '\151', '\152',
'\040', '\061', '\012', '\121', '\172', '\155', '\040', '\163',
'\172', '\040', '\061', '\012', '\163', '\111', '\160', '\040',
'\163', '\164', '\040', '\061', '\012', '\165', '\157', '\107',
'\040', '\161', '\165', '\040', '\061', '\012', '\162', '\126',
'\154', '\040', '\145', '\162', '\040', '\061', '\012', '\143',
'\142', '\113', '\040', '\143', '\150', '\040', '\061', '\012',
'\150', '\130', '\155', '\040', '\164', '\150', '\040', '\061',
'\012', '\113', '\163', '\146', '\040', '\163', '\164', '\040',
'\061', '\012', '\153', '\142', '\106', '\040', '\153', '\141',
'\040', '\061', '\012', '\167', '\102', '\155', '\040', '\155',
'\145', '\040', '\061', '\012', '\151', '\131', '\164', '\040',
'\164', '\150', '\040', '\061', '\012', '\163', '\147', '\110',
'\040', '\156', '\147', '\040', '\061', '\012', '\107', '\172',
'\166', '\040', '\163', '\172', '\040', '\061', '\012', '\171',
'\166', '\105', '\040', '\166', '\141', '\040', '\061', '\012',
'\170', '\113', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\163', '\127', '\146', '\040', '\163', '\164', '\040',
'\061', '\012', '\172', '\102', '\143', '\040', '\143', '\150',
'\040', '\061', '\012', '\171', '\153', '\110', '\040', '\153',
'\141', '\040', '\061', '\012', '\166', '\152', '\110', '\040',
'\151', '\152', '\040', '\061', '\012', '\167', '\150', '\111',
'\040', '\164', '\150', '\040', '\061', '\012', '\166', '\120',
'\152', '\040', '\151', '\152', '\040', '\061', '\012', '\132',
'\150', '\164', '\040', '\164', '\150', '\040', '\061', '\012',
'\151', '\112', '\170', '\040', '\151', '\156', '\040', '\061',
'\012', '\143', '\132', '\164', '\040', '\164', '\150', '\040',
'\061', '\012', '\144', '\161', '\125', '\040', '\161', '\165',
'\040', '\061', '\012', '\150', '\115', '\144', '\040', '\164',
'\150', '\040', '\061', '\012', '\143', '\125', '\152', '\040',
'\143', '\150', '\040', '\061', '\012', '\166', '\115', '\147',
'\040', '\156', '\147', '\040', '\061', '\012', '\160', '\143',
'\112', '\040', '\143', '\150', '\040', '\061', '\012', '\102',
'\143', '\155', '\040', '\143', '\150', '\040', '\061', '\012',
'\152', '\130', '\151', '\040', '\151', '\156', '\040', '\061',
'\012', '\170', '\157', '\111', '\040', '\157', '\156', '\040',
'\061', '\012', '\132', '\153', '\161', '\040', '\161', '\165',
'\040', '\061', '\012', '\130', '\172', '\162', '\040', '\145',
'\162', '\040', '\061', '\012', '\171', '\172', '\115', '\040',
'\163', '\172', '\040', '\061', '\012', '\161', '\152', '\130',
'\040', '\161', '\165', '\040', '\061', '\012', '\155', '\116',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\150',
'\160', '\130', '\040', '\164', '\150', '\040', '\061', '\012',
'\146', '\102', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\164', '\130', '\144', '\040', '\164', '\150', '\040',
'\061', '\012', '\130', '\153', '\151', '\040', '\151', '\156',
'\040', '\061', '\012', '\110', '\163', '\161', '\040', '\161',
'\165', '\040', '\061', '\012', '\142', '\161', '\125', '\040',
'\161', '\165', '\040', '\061', '\012', '\163', '\147', '\106',
'\040', '\156', '\147', '\040', '\061', '\012', '\144', '\120',
'\143', '\040', '\143', '\150', '\040', '\061', '\012', '\112',
'\170', '\151', '\040', '\151', '\156', '\040', '\061', '\012',
'\125', '\147', '\160', '\040', '\156', '\147', '\040', '\061',
'\012', '\122', '\170', '\151', '\040', '\151', '\156', '\040',
'\061', '\012', '\113', '\167', '\155', '\040', '\155', '\145',
'\040', '\061', '\012', '\172', '\153', '\104', '\040', '\163',
'\172', '\040', '\061', '\012', '\122', '\161', '\154', '\040',
'\161', '\165', '\040', '\061', '\012', '\160', '\112', '\142',
'\040', '\160', '\162', '\040', '\061', '\012', '\146', '\143',
'\126', '\040', '\143', '\150', '\040', '\061', '\012', '\151',
'\126', '\144', '\040', '\151', '\156', '\040', '\061', '\012',
'\142', '\102', '\160', '\040', '\142', '\145', '\040', '\061',
'\012', '\117', '\152', '\167', '\040', '\151', '\152', '\040',
'\061', '\012', '\166', '\132', '\154', '\040', '\154', '\145',
'\040', '\061', '\012', '\111', '\171', '\152', '\040', '\151',
'\152', '\040', '\061', '\012', '\146', '\153', '\125', '\040',
'\153', '\141', '\040', '\061', '\012', '\113', '\143', '\161',
'\040', '\143', '\150', '\040', '\061', '\012', '\144', '\102',
'\161', '\040', '\161', '\165', '\040', '\061', '\012', '\115',
'\161', '\161', '\040', '\161', '\165', '\040', '\061', '\012',
'\151', '\115', '\147', '\040', '\156', '\147', '\040', '\061',
'\012', '\127', '\167', '\163', '\040', '\163', '\164', '\040',
'\061', '\012', '\164', '\161', '\130', '\040', '\164', '\150',
'\040', '\061', '\012', '\170', '\150', '\104', '\040', '\164',
'\150', '\040', '\061', '\012', '\162', '\116', '\154', '\040',
'\145', '\162', '\040', '\061', '\012', '\160', '\127', '\144',
'\040', '\144', '\145', '\040', '\061', '\012', '\152', '\162',
'\126', '\040', '\145', '\162', '\040', '\061', '\012', '\102',
'\155', '\152', '\040', '\151', '\152', '\040', '\061', '\012',
'\110', '\155', '\161', '\040', '\161', '\165', '\040', '\061',
'\012', '\166', '\154', '\110', '\040', '\154', '\145', '\040',
'\061', '\012', '\115', '\170', '\142', '\040', '\142', '\145',
'\040', '\061', '\012', '\171', '\171', '\123', '\040', '\156',
'\171', '\040', '\061', '\012', '\161', '\166', '\127', '\040',
'\161', '\165', '\040', '\061', '\012', '\146', '\166', '\130',
'\040', '\166', '\141', '\040', '\061', '\012', '\126', '\146',
'\145', '\040', '\145', '\162', '\040', '\061', '\012', '\103',
'\144', '\167', '\040', '\144', '\145', '\040', '\061', '\012',
'\113', '\147', '\145', '\040', '\156', '\147', '\040', '\061',
'\012', '\121', '\145', '\152', '\040', '\145', '\162', '\040',
'\061', '\012', '\162', '\166', '\132', '\040', '\145', '\162',
'\040', '\061', '\012', '\166', '\172', '\111', '\040', '\163',
'\172', '\040', '\061', '\012', '\144', '\104', '\156', '\040',
'\141', '\156', '\040', '\061', '\012', '\156', '\167', '\123',
'\040', '\141', '\156', '\040', '\061', '\012', '\121', '\143',
'\142', '\040', '\143', '\150', '\040', '\061', '\012', '\167',
'\153', '\126', '\040', '\153', '\141', '\040', '\061', '\012',
'\165', '\103', '\170', '\040', '\161', '\165', '\040', '\061',
'\012', '\111', '\147', '\153', '\040', '\156', '\147', '\040',
'\061', '\012', '\126', '\160', '\155', '\040', '\155', '\145',
'\040', '\061', '\012', '\150', '\102', '\155', '\040', '\164',
'\150', '\040', '\061', '\012', '\160', '\144', '\121', '\040',
'\144', '\145', '\040', '\061', '\012', '\146', '\147', '\121',
'\040', '\156', '\147', '\040', '\061', '\012', '\171', '\121',
'\155', '\040', '\155', '\145', '\040', '\061', '\012', '\147',
'\170', '\110', '\040', '\156', '\147', '\040', '\061', '\012',
'\160', '\161', '\113', '\040', '\161', '\165', '\040', '\061',
'\012', '\154', '\122', '\143', '\040', '\143', '\150', '\040',
'\061', '\012', '\130', '\144', '\166', '\040', '\144', '\145',
'\040', '\061', '\012', '\150', '\104', '\172', '\040', '\164',
'\150', '\040', '\061', '\012', '\144', '\106', '\167', '\040',
'\144', '\145', '\040', '\061', '\012', '\161', '\121', '\165',
'\040', '\165', '\156', '\040', '\061', '\012', '\170', '\142',
'\104', '\040', '\142', '\145', '\040', '\061', '\012', '\161',
'\155', '\105', '\040', '\161', '\165', '\040', '\061', '\012',
'\155', '\127', '\155', '\040', '\155', '\145', '\040', '\061',
'\012', '\152', '\102', '\142', '\040', '\151', '\152', '\040',
'\061', '\012', '\152', '\130', '\164', '\040', '\164', '\150',
'\040', '\061', '\012', '\146', '\170', '\125', '\040', '\146',
};
extern const int ksizeofUniversalAmbigsFile = sizeof(kUniversalAmbigsFile);
} // namespace tesseract
| 1080228-arabicocr11 | ccutil/universalambigs.cpp | C++ | asf20 | 1,409,683 |
///////////////////////////////////////////////////////////////////////
// File: unicharset.h
// Description: Unicode character/ligature set class.
// Author: Thomas Kielbus
// Created: Wed Jun 28 17:05:01 PDT 2006
//
// (C) Copyright 2006, Google Inc.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
///////////////////////////////////////////////////////////////////////
#ifndef TESSERACT_CCUTIL_UNICHARSET_H__
#define TESSERACT_CCUTIL_UNICHARSET_H__
#include "errcode.h"
#include "genericvector.h"
#include "helpers.h"
#include "serialis.h"
#include "strngs.h"
#include "tesscallback.h"
#include "unichar.h"
#include "unicharmap.h"
// Enum holding special values of unichar_id. Every unicharset has these.
// Warning! Keep in sync with kSpecialUnicharCodes.
enum SpecialUnicharCodes {
UNICHAR_SPACE,
UNICHAR_JOINED,
UNICHAR_BROKEN,
SPECIAL_UNICHAR_CODES_COUNT
};
class CHAR_FRAGMENT {
public:
// Minimum number of characters used for fragment representation.
static const int kMinLen = 6;
// Maximum number of characters used for fragment representation.
static const int kMaxLen = 3 + UNICHAR_LEN + 2;
// Maximum number of fragments per character.
static const int kMaxChunks = 5;
// Setters and Getters.
inline void set_all(const char *unichar, int pos, int total, bool natural) {
set_unichar(unichar);
set_pos(pos);
set_total(total);
set_natural(natural);
}
inline void set_unichar(const char *uch) {
strncpy(this->unichar, uch, UNICHAR_LEN);
this->unichar[UNICHAR_LEN] = '\0';
}
inline void set_pos(int p) { this->pos = p; }
inline void set_total(int t) { this->total = t; }
inline const char* get_unichar() const { return this->unichar; }
inline int get_pos() const { return this->pos; }
inline int get_total() const { return this->total; }
// Returns the string that represents a fragment
// with the given unichar, pos and total.
static STRING to_string(const char *unichar, int pos, int total,
bool natural);
// Returns the string that represents this fragment.
STRING to_string() const {
return to_string(unichar, pos, total, natural);
}
// Checks whether a fragment has the same unichar,
// position and total as the given inputs.
inline bool equals(const char *other_unichar,
int other_pos, int other_total) const {
return (strcmp(this->unichar, other_unichar) == 0 &&
this->pos == other_pos && this->total == other_total);
}
inline bool equals(const CHAR_FRAGMENT *other) const {
return this->equals(other->get_unichar(),
other->get_pos(),
other->get_total());
}
// Checks whether a given fragment is a continuation of this fragment.
// Assumes that the given fragment pointer is not NULL.
inline bool is_continuation_of(const CHAR_FRAGMENT *fragment) const {
return (strcmp(this->unichar, fragment->get_unichar()) == 0 &&
this->total == fragment->get_total() &&
this->pos == fragment->get_pos() + 1);
}
// Returns true if this fragment is a beginning fragment.
inline bool is_beginning() const { return this->pos == 0; }
// Returns true if this fragment is an ending fragment.
inline bool is_ending() const { return this->pos == this->total-1; }
// Returns true if the fragment was a separate component to begin with,
// ie did not need chopping to be isolated, but may have been separated
// out from a multi-outline blob.
inline bool is_natural() const { return natural; }
void set_natural(bool value) { natural = value; }
// Parses the string to see whether it represents a character fragment
// (rather than a regular character). If so, allocates memory for a new
// CHAR_FRAGMENT instance and fills it in with the corresponding fragment
// information. Fragments are of the form:
// |m|1|2, meaning chunk 1 of 2 of character m, or
// |:|1n2, meaning chunk 1 of 2 of character :, and no chopping was needed
// to divide the parts, as they were already separate connected components.
//
// If parsing succeeded returns the pointer to the allocated CHAR_FRAGMENT
// instance, otherwise (if the string does not represent a fragment or it
// looks like it does, but parsing it as a fragment fails) returns NULL.
//
// Note: The caller is responsible for deallocating memory
// associated with the returned pointer.
static CHAR_FRAGMENT *parse_from_string(const char *str);
private:
char unichar[UNICHAR_LEN + 1];
// True if the fragment was a separate component to begin with,
// ie did not need chopping to be isolated, but may have been separated
// out from a multi-outline blob.
bool natural;
inT16 pos; // fragment position in the character
inT16 total; // total number of fragments in the character
};
// The UNICHARSET class is an utility class for Tesseract that holds the
// set of characters that are used by the engine. Each character is identified
// by a unique number, from 0 to (size - 1).
class UNICHARSET {
public:
// Custom list of characters and their ligature forms (UTF8)
// These map to unicode values in the private use area (PUC) and are supported
// by only few font families (eg. Wyld, Adobe Caslon Pro).
static const char* kCustomLigatures[][2];
// List of strings for the SpecialUnicharCodes. Keep in sync with the enum.
static const char* kSpecialUnicharCodes[SPECIAL_UNICHAR_CODES_COUNT];
// ICU 2.0 UCharDirection enum (from third_party/icu/include/unicode/uchar.h)
enum Direction {
U_LEFT_TO_RIGHT = 0,
U_RIGHT_TO_LEFT = 1,
U_EUROPEAN_NUMBER = 2,
U_EUROPEAN_NUMBER_SEPARATOR = 3,
U_EUROPEAN_NUMBER_TERMINATOR = 4,
U_ARABIC_NUMBER = 5,
U_COMMON_NUMBER_SEPARATOR = 6,
U_BLOCK_SEPARATOR = 7,
U_SEGMENT_SEPARATOR = 8,
U_WHITE_SPACE_NEUTRAL = 9,
U_OTHER_NEUTRAL = 10,
U_LEFT_TO_RIGHT_EMBEDDING = 11,
U_LEFT_TO_RIGHT_OVERRIDE = 12,
U_RIGHT_TO_LEFT_ARABIC = 13,
U_RIGHT_TO_LEFT_EMBEDDING = 14,
U_RIGHT_TO_LEFT_OVERRIDE = 15,
U_POP_DIRECTIONAL_FORMAT = 16,
U_DIR_NON_SPACING_MARK = 17,
U_BOUNDARY_NEUTRAL = 18,
U_CHAR_DIRECTION_COUNT
};
// Create an empty UNICHARSET
UNICHARSET();
~UNICHARSET();
// Return the UNICHAR_ID of a given unichar representation within the
// UNICHARSET.
const UNICHAR_ID unichar_to_id(const char* const unichar_repr) const;
// Return the UNICHAR_ID of a given unichar representation within the
// UNICHARSET. Only the first length characters from unichar_repr are used.
const UNICHAR_ID unichar_to_id(const char* const unichar_repr,
int length) const;
// Return the minimum number of bytes that matches a legal UNICHAR_ID,
// while leaving the rest of the string encodable. Returns 0 if the
// beginning of the string is not encodable.
// WARNING: this function now encodes the whole string for precision.
// Use encode_string in preference to repeatedly calling step.
int step(const char* str) const;
// As step except constraining the search to unichar-ids that are
// self-normalized. Unlike step, does not encode the whole string, therefore
// should be used on short strings (like those obtained from
// get_normed_unichar.)
int normed_step(const char* str) const;
// Return whether the given UTF-8 string is encodable with this UNICHARSET.
// If not encodable, write the first byte offset which cannot be converted
// into the second (return) argument.
bool encodable_string(const char *str, int *first_bad_position) const;
// Encodes the given UTF-8 string with this UNICHARSET.
// Any part of the string that cannot be encoded (because the utf8 can't
// be broken up into pieces that are in the unicharset) then:
// if give_up_on_failure, stops and returns a partial encoding,
// else continues and inserts an INVALID_UNICHAR_ID in the returned encoding.
// Returns true if the encoding succeeds completely, false if there is at
// least one failure.
// If lengths is not NULL, then it is filled with the corresponding
// byte length of each encoded UNICHAR_ID.
// If encoded_length is not NULL then on return it contains the length of
// str that was encoded. (if give_up_on_failure the location of the first
// failure, otherwise strlen(str).)
bool encode_string(const char* str, bool give_up_on_failure,
GenericVector<UNICHAR_ID>* encoding,
GenericVector<char>* lengths,
int* encoded_length) const;
// Return the unichar representation corresponding to the given UNICHAR_ID
// within the UNICHARSET.
const char* const id_to_unichar(UNICHAR_ID id) const;
// Return the UTF8 representation corresponding to the given UNICHAR_ID after
// resolving any private encodings internal to Tesseract. This method is
// preferrable to id_to_unichar for outputting text that will be visible to
// external applications.
const char* const id_to_unichar_ext(UNICHAR_ID id) const;
// Return a STRING that reformats the utf8 str into the str followed
// by its hex unicodes.
static STRING debug_utf8_str(const char* str);
// Return a STRING containing debug information on the unichar, including
// the id_to_unichar, its hex unicodes and the properties.
STRING debug_str(UNICHAR_ID id) const;
STRING debug_str(const char * unichar_repr) const {
return debug_str(unichar_to_id(unichar_repr));
}
// Add a unichar representation to the set.
void unichar_insert(const char* const unichar_repr);
// Return true if the given unichar id exists within the set.
// Relies on the fact that unichar ids are contiguous in the unicharset.
bool contains_unichar_id(UNICHAR_ID unichar_id) const {
return unichar_id != INVALID_UNICHAR_ID && unichar_id < size_used &&
unichar_id >= 0;
}
// Return true if the given unichar representation exists within the set.
bool contains_unichar(const char* const unichar_repr) const;
bool contains_unichar(const char* const unichar_repr, int length) const;
// Return true if the given unichar representation corresponds to the given
// UNICHAR_ID within the set.
bool eq(UNICHAR_ID unichar_id, const char* const unichar_repr) const;
// Delete CHAR_FRAGMENTs stored in properties of unichars array.
void delete_pointers_in_unichars() {
for (int i = 0; i < size_used; ++i) {
if (unichars[i].properties.fragment != NULL) {
delete unichars[i].properties.fragment;
unichars[i].properties.fragment = NULL;
}
}
}
// Clear the UNICHARSET (all the previous data is lost).
void clear() {
if (script_table != NULL) {
for (int i = 0; i < script_table_size_used; ++i)
delete[] script_table[i];
delete[] script_table;
script_table = NULL;
script_table_size_used = 0;
}
if (unichars != NULL) {
delete_pointers_in_unichars();
delete[] unichars;
unichars = NULL;
}
script_table_size_reserved = 0;
size_reserved = 0;
size_used = 0;
ids.clear();
top_bottom_set_ = false;
script_has_upper_lower_ = false;
script_has_xheight_ = false;
null_sid_ = 0;
common_sid_ = 0;
latin_sid_ = 0;
cyrillic_sid_ = 0;
greek_sid_ = 0;
han_sid_ = 0;
hiragana_sid_ = 0;
katakana_sid_ = 0;
}
// Return the size of the set (the number of different UNICHAR it holds).
int size() const {
return size_used;
}
// Reserve enough memory space for the given number of UNICHARS
void reserve(int unichars_number);
// Opens the file indicated by filename and saves unicharset to that file.
// Returns true if the operation is successful.
bool save_to_file(const char * const filename) const {
FILE* file = fopen(filename, "w+b");
if (file == NULL) return false;
bool result = save_to_file(file);
fclose(file);
return result;
}
// Saves the content of the UNICHARSET to the given file.
// Returns true if the operation is successful.
bool save_to_file(FILE *file) const {
STRING str;
if (!save_to_string(&str)) return false;
if (fwrite(&str[0], str.length(), 1, file) != 1) return false;
return true;
}
bool save_to_file(tesseract::TFile *file) const {
STRING str;
if (!save_to_string(&str)) return false;
if (file->FWrite(&str[0], str.length(), 1) != 1) return false;
return true;
}
// Saves the content of the UNICHARSET to the given STRING.
// Returns true if the operation is successful.
bool save_to_string(STRING *str) const;
// Load a unicharset from a unicharset file that has been loaded into
// the given memory buffer.
// Returns true if the operation is successful.
bool load_from_inmemory_file(const char* const memory, int mem_size,
bool skip_fragments);
// Returns true if the operation is successful.
bool load_from_inmemory_file(const char* const memory, int mem_size) {
return load_from_inmemory_file(memory, mem_size, false);
}
// Opens the file indicated by filename and loads the UNICHARSET
// from the given file. The previous data is lost.
// Returns true if the operation is successful.
bool load_from_file(const char* const filename, bool skip_fragments) {
FILE* file = fopen(filename, "rb");
if (file == NULL) return false;
bool result = load_from_file(file, skip_fragments);
fclose(file);
return result;
}
// returns true if the operation is successful.
bool load_from_file(const char* const filename) {
return load_from_file(filename, false);
}
// Loads the UNICHARSET from the given file. The previous data is lost.
// Returns true if the operation is successful.
bool load_from_file(FILE *file, bool skip_fragments);
bool load_from_file(FILE *file) { return load_from_file(file, false); }
bool load_from_file(tesseract::TFile *file, bool skip_fragments);
// Sets up internal data after loading the file, based on the char
// properties. Called from load_from_file, but also needs to be run
// during set_unicharset_properties.
void post_load_setup();
// Returns true if right_to_left scripts are significant in the unicharset,
// but without being so sensitive that "universal" unicharsets containing
// characters from many scripts, like orientation and script detection,
// look like they are right_to_left.
bool major_right_to_left() const;
// Set a whitelist and/or blacklist of characters to recognize.
// An empty or NULL whitelist enables everything (minus any blacklist).
// An empty or NULL blacklist disables nothing.
// An empty or NULL unblacklist has no effect.
// The blacklist overrides the whitelist.
// The unblacklist overrides the blacklist.
// Each list is a string of utf8 character strings. Boundaries between
// unicharset units are worked out automatically, and characters not in
// the unicharset are silently ignored.
void set_black_and_whitelist(const char* blacklist, const char* whitelist,
const char* unblacklist);
// Set the isalpha property of the given unichar to the given value.
void set_isalpha(UNICHAR_ID unichar_id, bool value) {
unichars[unichar_id].properties.isalpha = value;
}
// Set the islower property of the given unichar to the given value.
void set_islower(UNICHAR_ID unichar_id, bool value) {
unichars[unichar_id].properties.islower = value;
}
// Set the isupper property of the given unichar to the given value.
void set_isupper(UNICHAR_ID unichar_id, bool value) {
unichars[unichar_id].properties.isupper = value;
}
// Set the isdigit property of the given unichar to the given value.
void set_isdigit(UNICHAR_ID unichar_id, bool value) {
unichars[unichar_id].properties.isdigit = value;
}
// Set the ispunctuation property of the given unichar to the given value.
void set_ispunctuation(UNICHAR_ID unichar_id, bool value) {
unichars[unichar_id].properties.ispunctuation = value;
}
// Set the isngram property of the given unichar to the given value.
void set_isngram(UNICHAR_ID unichar_id, bool value) {
unichars[unichar_id].properties.isngram = value;
}
// Set the script name of the given unichar to the given value.
// Value is copied and thus can be a temporary;
void set_script(UNICHAR_ID unichar_id, const char* value) {
unichars[unichar_id].properties.script_id = add_script(value);
}
// Set other_case unichar id in the properties for the given unichar id.
void set_other_case(UNICHAR_ID unichar_id, UNICHAR_ID other_case) {
unichars[unichar_id].properties.other_case = other_case;
}
// Set the direction property of the given unichar to the given value.
void set_direction(UNICHAR_ID unichar_id, UNICHARSET::Direction value) {
unichars[unichar_id].properties.direction = value;
}
// Set mirror unichar id in the properties for the given unichar id.
void set_mirror(UNICHAR_ID unichar_id, UNICHAR_ID mirror) {
unichars[unichar_id].properties.mirror = mirror;
}
// Record normalized version of unichar with the given unichar_id.
void set_normed(UNICHAR_ID unichar_id, const char* normed) {
unichars[unichar_id].properties.normed = normed;
unichars[unichar_id].properties.normed_ids.truncate(0);
}
// Sets the normed_ids vector from the normed string. normed_ids is not
// stored in the file, and needs to be set when the UNICHARSET is loaded.
void set_normed_ids(UNICHAR_ID unichar_id);
// Return the isalpha property of the given unichar.
bool get_isalpha(UNICHAR_ID unichar_id) const {
if (INVALID_UNICHAR_ID == unichar_id) return false;
ASSERT_HOST(contains_unichar_id(unichar_id));
return unichars[unichar_id].properties.isalpha;
}
// Return the islower property of the given unichar.
bool get_islower(UNICHAR_ID unichar_id) const {
if (INVALID_UNICHAR_ID == unichar_id) return false;
ASSERT_HOST(contains_unichar_id(unichar_id));
return unichars[unichar_id].properties.islower;
}
// Return the isupper property of the given unichar.
bool get_isupper(UNICHAR_ID unichar_id) const {
if (INVALID_UNICHAR_ID == unichar_id) return false;
ASSERT_HOST(contains_unichar_id(unichar_id));
return unichars[unichar_id].properties.isupper;
}
// Return the isdigit property of the given unichar.
bool get_isdigit(UNICHAR_ID unichar_id) const {
if (INVALID_UNICHAR_ID == unichar_id) return false;
ASSERT_HOST(contains_unichar_id(unichar_id));
return unichars[unichar_id].properties.isdigit;
}
// Return the ispunctuation property of the given unichar.
bool get_ispunctuation(UNICHAR_ID unichar_id) const {
if (INVALID_UNICHAR_ID == unichar_id) return false;
ASSERT_HOST(contains_unichar_id(unichar_id));
return unichars[unichar_id].properties.ispunctuation;
}
// Return the isngram property of the given unichar.
bool get_isngram(UNICHAR_ID unichar_id) const {
if (INVALID_UNICHAR_ID == unichar_id) return false;
ASSERT_HOST(contains_unichar_id(unichar_id));
return unichars[unichar_id].properties.isngram;
}
// Returns whether the unichar id represents a unicode value in the private
// use area.
bool get_isprivate(UNICHAR_ID unichar_id) const;
// Returns true if the ids have useful min/max top/bottom values.
bool top_bottom_useful() const {
return top_bottom_set_;
}
// Sets all ranges to empty, so they can be expanded to set the values.
void set_ranges_empty();
// Sets all the properties for this unicharset given a src_unicharset with
// everything set. The unicharsets don't have to be the same, and graphemes
// are correctly accounted for.
void SetPropertiesFromOther(const UNICHARSET& src) {
PartialSetPropertiesFromOther(0, src);
}
// Sets properties from Other, starting only at the given index.
void PartialSetPropertiesFromOther(int start_index, const UNICHARSET& src);
// Expands the tops and bottoms and widths for this unicharset given a
// src_unicharset with ranges in it. The unicharsets don't have to be the
// same, and graphemes are correctly accounted for.
void ExpandRangesFromOther(const UNICHARSET& src);
// Makes this a copy of src. Clears this completely first, so the automattic
// ids will not be present in this if not in src.
void CopyFrom(const UNICHARSET& src);
// For each id in src, if it does not occur in this, add it, as in
// SetPropertiesFromOther, otherwise expand the ranges, as in
// ExpandRangesFromOther.
void AppendOtherUnicharset(const UNICHARSET& src);
// Returns true if the acceptable ranges of the tops of the characters do
// not overlap, making their x-height calculations distinct.
bool SizesDistinct(UNICHAR_ID id1, UNICHAR_ID id2) const;
// Returns the min and max bottom and top of the given unichar in
// baseline-normalized coordinates, ie, where the baseline is
// kBlnBaselineOffset and the meanline is kBlnBaselineOffset + kBlnXHeight
// (See normalis.h for the definitions).
void get_top_bottom(UNICHAR_ID unichar_id,
int* min_bottom, int* max_bottom,
int* min_top, int* max_top) const {
if (INVALID_UNICHAR_ID == unichar_id) {
*min_bottom = *min_top = 0;
*max_bottom = *max_top = 256; // kBlnCellHeight
return;
}
ASSERT_HOST(contains_unichar_id(unichar_id));
*min_bottom = unichars[unichar_id].properties.min_bottom;
*max_bottom = unichars[unichar_id].properties.max_bottom;
*min_top = unichars[unichar_id].properties.min_top;
*max_top = unichars[unichar_id].properties.max_top;
}
void set_top_bottom(UNICHAR_ID unichar_id,
int min_bottom, int max_bottom,
int min_top, int max_top) {
unichars[unichar_id].properties.min_bottom =
static_cast<uinT8>(ClipToRange(min_bottom, 0, MAX_UINT8));
unichars[unichar_id].properties.max_bottom =
static_cast<uinT8>(ClipToRange(max_bottom, 0, MAX_UINT8));
unichars[unichar_id].properties.min_top =
static_cast<uinT8>(ClipToRange(min_top, 0, MAX_UINT8));
unichars[unichar_id].properties.max_top =
static_cast<uinT8>(ClipToRange(max_top, 0, MAX_UINT8));
}
// Returns the width range of the given unichar in baseline-normalized
// coordinates, ie, where the baseline is kBlnBaselineOffset and the
// meanline is kBlnBaselineOffset + kBlnXHeight.
// (See normalis.h for the definitions).
void get_width_range(UNICHAR_ID unichar_id,
int* min_width, int* max_width) const {
if (INVALID_UNICHAR_ID == unichar_id) {
*min_width = 0;
*max_width = 256; // kBlnCellHeight;
return;
}
ASSERT_HOST(contains_unichar_id(unichar_id));
*min_width = unichars[unichar_id].properties.min_width;
*max_width = unichars[unichar_id].properties.max_width;
}
void set_width_range(UNICHAR_ID unichar_id, int min_width, int max_width) {
unichars[unichar_id].properties.min_width =
static_cast<inT16>(ClipToRange(min_width, 0, MAX_INT16));
unichars[unichar_id].properties.max_width =
static_cast<inT16>(ClipToRange(max_width, 0, MAX_INT16));
}
// Returns the range of the x-bearing of the given unichar in
// baseline-normalized coordinates, ie, where the baseline is
// kBlnBaselineOffset and the meanline is kBlnBaselineOffset + kBlnXHeight.
// (See normalis.h for the definitions).
void get_bearing_range(UNICHAR_ID unichar_id,
int* min_bearing, int* max_bearing) const {
if (INVALID_UNICHAR_ID == unichar_id) {
*min_bearing = *max_bearing = 0;
return;
}
ASSERT_HOST(contains_unichar_id(unichar_id));
*min_bearing = unichars[unichar_id].properties.min_bearing;
*max_bearing = unichars[unichar_id].properties.max_bearing;
}
void set_bearing_range(UNICHAR_ID unichar_id,
int min_bearing, int max_bearing) {
unichars[unichar_id].properties.min_bearing =
static_cast<inT16>(ClipToRange(min_bearing, 0, MAX_INT16));
unichars[unichar_id].properties.max_bearing =
static_cast<inT16>(ClipToRange(max_bearing, 0, MAX_INT16));
}
// Returns the range of the x-advance of the given unichar in
// baseline-normalized coordinates, ie, where the baseline is
// kBlnBaselineOffset and the meanline is kBlnBaselineOffset + kBlnXHeight.
// (See normalis.h for the definitions).
void get_advance_range(UNICHAR_ID unichar_id,
int* min_advance, int* max_advance) const {
if (INVALID_UNICHAR_ID == unichar_id) {
*min_advance = *max_advance = 0;
return;
}
ASSERT_HOST(contains_unichar_id(unichar_id));
*min_advance = unichars[unichar_id].properties.min_advance;
*max_advance = unichars[unichar_id].properties.max_advance;
}
void set_advance_range(UNICHAR_ID unichar_id,
int min_advance, int max_advance) {
unichars[unichar_id].properties.min_advance =
static_cast<inT16>(ClipToRange(min_advance, 0, MAX_INT16));
unichars[unichar_id].properties.max_advance =
static_cast<inT16>(ClipToRange(max_advance, 0, MAX_INT16));
}
// Return the script name of the given unichar.
// The returned pointer will always be the same for the same script, it's
// managed by unicharset and thus MUST NOT be deleted
int get_script(UNICHAR_ID unichar_id) const {
if (INVALID_UNICHAR_ID == unichar_id) return null_sid_;
ASSERT_HOST(contains_unichar_id(unichar_id));
return unichars[unichar_id].properties.script_id;
}
// Return the character properties, eg. alpha/upper/lower/digit/punct,
// as a bit field of unsigned int.
unsigned int get_properties(UNICHAR_ID unichar_id) const;
// Return the character property as a single char. If a character has
// multiple attributes, the main property is defined by the following order:
// upper_case : 'A'
// lower_case : 'a'
// alpha : 'x'
// digit : '0'
// punctuation: 'p'
char get_chartype(UNICHAR_ID unichar_id) const;
// Get other_case unichar id in the properties for the given unichar id.
UNICHAR_ID get_other_case(UNICHAR_ID unichar_id) const {
if (INVALID_UNICHAR_ID == unichar_id) return INVALID_UNICHAR_ID;
ASSERT_HOST(contains_unichar_id(unichar_id));
return unichars[unichar_id].properties.other_case;
}
// Returns the direction property of the given unichar.
Direction get_direction(UNICHAR_ID unichar_id) const {
if (INVALID_UNICHAR_ID == unichar_id) return UNICHARSET::U_OTHER_NEUTRAL;
ASSERT_HOST(contains_unichar_id(unichar_id));
return unichars[unichar_id].properties.direction;
}
// Get mirror unichar id in the properties for the given unichar id.
UNICHAR_ID get_mirror(UNICHAR_ID unichar_id) const {
if (INVALID_UNICHAR_ID == unichar_id) return INVALID_UNICHAR_ID;
ASSERT_HOST(contains_unichar_id(unichar_id));
return unichars[unichar_id].properties.mirror;
}
// Returns UNICHAR_ID of the corresponding lower-case unichar.
UNICHAR_ID to_lower(UNICHAR_ID unichar_id) const {
if (INVALID_UNICHAR_ID == unichar_id) return INVALID_UNICHAR_ID;
ASSERT_HOST(contains_unichar_id(unichar_id));
if (unichars[unichar_id].properties.islower) return unichar_id;
return unichars[unichar_id].properties.other_case;
}
// Returns UNICHAR_ID of the corresponding upper-case unichar.
UNICHAR_ID to_upper(UNICHAR_ID unichar_id) const {
if (INVALID_UNICHAR_ID == unichar_id) return INVALID_UNICHAR_ID;
ASSERT_HOST(contains_unichar_id(unichar_id));
if (unichars[unichar_id].properties.isupper) return unichar_id;
return unichars[unichar_id].properties.other_case;
}
// Returns true if this UNICHARSET has the special codes in
// SpecialUnicharCodes available. If false then there are normal unichars
// at these codes and they should not be used.
bool has_special_codes() const {
return get_fragment(UNICHAR_BROKEN) != NULL &&
strcmp(id_to_unichar(UNICHAR_BROKEN),
kSpecialUnicharCodes[UNICHAR_BROKEN]) == 0;
}
// Return a pointer to the CHAR_FRAGMENT class if the given
// unichar id represents a character fragment.
const CHAR_FRAGMENT *get_fragment(UNICHAR_ID unichar_id) const {
if (INVALID_UNICHAR_ID == unichar_id) return NULL;
ASSERT_HOST(contains_unichar_id(unichar_id));
return unichars[unichar_id].properties.fragment;
}
// Return the isalpha property of the given unichar representation.
bool get_isalpha(const char* const unichar_repr) const {
return get_isalpha(unichar_to_id(unichar_repr));
}
// Return the islower property of the given unichar representation.
bool get_islower(const char* const unichar_repr) const {
return get_islower(unichar_to_id(unichar_repr));
}
// Return the isupper property of the given unichar representation.
bool get_isupper(const char* const unichar_repr) const {
return get_isupper(unichar_to_id(unichar_repr));
}
// Return the isdigit property of the given unichar representation.
bool get_isdigit(const char* const unichar_repr) const {
return get_isdigit(unichar_to_id(unichar_repr));
}
// Return the ispunctuation property of the given unichar representation.
bool get_ispunctuation(const char* const unichar_repr) const {
return get_ispunctuation(unichar_to_id(unichar_repr));
}
// Return the character properties, eg. alpha/upper/lower/digit/punct,
// of the given unichar representation
unsigned int get_properties(const char* const unichar_repr) const {
return get_properties(unichar_to_id(unichar_repr));
}
char get_chartype(const char* const unichar_repr) const {
return get_chartype(unichar_to_id(unichar_repr));
}
// Return the script name of the given unichar representation.
// The returned pointer will always be the same for the same script, it's
// managed by unicharset and thus MUST NOT be deleted
int get_script(const char* const unichar_repr) const {
return get_script(unichar_to_id(unichar_repr));
}
// Return a pointer to the CHAR_FRAGMENT class struct if the given
// unichar representation represents a character fragment.
const CHAR_FRAGMENT *get_fragment(const char* const unichar_repr) const {
if (unichar_repr == NULL || unichar_repr[0] == '\0' ||
!ids.contains(unichar_repr)) {
return NULL;
}
return get_fragment(unichar_to_id(unichar_repr));
}
// Return the isalpha property of the given unichar representation.
// Only the first length characters from unichar_repr are used.
bool get_isalpha(const char* const unichar_repr,
int length) const {
return get_isalpha(unichar_to_id(unichar_repr, length));
}
// Return the islower property of the given unichar representation.
// Only the first length characters from unichar_repr are used.
bool get_islower(const char* const unichar_repr,
int length) const {
return get_islower(unichar_to_id(unichar_repr, length));
}
// Return the isupper property of the given unichar representation.
// Only the first length characters from unichar_repr are used.
bool get_isupper(const char* const unichar_repr,
int length) const {
return get_isupper(unichar_to_id(unichar_repr, length));
}
// Return the isdigit property of the given unichar representation.
// Only the first length characters from unichar_repr are used.
bool get_isdigit(const char* const unichar_repr,
int length) const {
return get_isdigit(unichar_to_id(unichar_repr, length));
}
// Return the ispunctuation property of the given unichar representation.
// Only the first length characters from unichar_repr are used.
bool get_ispunctuation(const char* const unichar_repr,
int length) const {
return get_ispunctuation(unichar_to_id(unichar_repr, length));
}
// Returns normalized version of unichar with the given unichar_id.
const char *get_normed_unichar(UNICHAR_ID unichar_id) const {
return unichars[unichar_id].properties.normed.string();
}
// Returns a vector of UNICHAR_IDs that represent the ids of the normalized
// version of the given id. There may be more than one UNICHAR_ID in the
// vector if unichar_id represents a ligature.
const GenericVector<UNICHAR_ID>& normed_ids(UNICHAR_ID unichar_id) const {
return unichars[unichar_id].properties.normed_ids;
}
// Return the script name of the given unichar representation.
// Only the first length characters from unichar_repr are used.
// The returned pointer will always be the same for the same script, it's
// managed by unicharset and thus MUST NOT be deleted
int get_script(const char* const unichar_repr,
int length) const {
return get_script(unichar_to_id(unichar_repr, length));
}
// Return the (current) number of scripts in the script table
int get_script_table_size() const {
return script_table_size_used;
}
// Return the script string from its id
const char* get_script_from_script_id(int id) const {
if (id >= script_table_size_used || id < 0)
return null_script;
return script_table[id];
}
// Returns the id from the name of the script, or 0 if script is not found.
// Note that this is an expensive operation since it involves iteratively
// comparing strings in the script table. To avoid dependency on STL, we
// won't use a hash. Instead, the calling function can use this to lookup
// and save the ID for relevant scripts for fast comparisons later.
int get_script_id_from_name(const char* script_name) const;
// Return true if the given script is the null script
bool is_null_script(const char* script) const {
return script == null_script;
}
// Uniquify the given script. For two scripts a and b, if strcmp(a, b) == 0,
// then the returned pointer will be the same.
// The script parameter is copied and thus can be a temporary.
int add_script(const char* script);
// Return the enabled property of the given unichar.
bool get_enabled(UNICHAR_ID unichar_id) const {
return unichars[unichar_id].properties.enabled;
}
int null_sid() const { return null_sid_; }
int common_sid() const { return common_sid_; }
int latin_sid() const { return latin_sid_; }
int cyrillic_sid() const { return cyrillic_sid_; }
int greek_sid() const { return greek_sid_; }
int han_sid() const { return han_sid_; }
int hiragana_sid() const { return hiragana_sid_; }
int katakana_sid() const { return katakana_sid_; }
int default_sid() const { return default_sid_; }
// Returns true if the unicharset has the concept of upper/lower case.
bool script_has_upper_lower() const {
return script_has_upper_lower_;
}
// Returns true if the unicharset has the concept of x-height.
// script_has_xheight can be true even if script_has_upper_lower is not,
// when the script has a sufficiently predominant top line with ascenders,
// such as Devanagari and Thai.
bool script_has_xheight() const {
return script_has_xheight_;
}
private:
struct UNICHAR_PROPERTIES {
UNICHAR_PROPERTIES();
// Initializes all properties to sensible default values.
void Init();
// Sets all ranges wide open. Initialization default in case there are
// no useful values available.
void SetRangesOpen();
// Sets all ranges to empty. Used before expanding with font-based data.
void SetRangesEmpty();
// Returns true if any of the top/bottom/width/bearing/advance ranges is
// emtpy.
bool AnyRangeEmpty() const;
// Expands the ranges with the ranges from the src properties.
void ExpandRangesFrom(const UNICHAR_PROPERTIES& src);
// Copies the properties from src into this.
void CopyFrom(const UNICHAR_PROPERTIES& src);
bool isalpha;
bool islower;
bool isupper;
bool isdigit;
bool ispunctuation;
bool isngram;
bool enabled;
// Possible limits of the top and bottom of the bounding box in
// baseline-normalized coordinates, ie, where the baseline is
// kBlnBaselineOffset and the meanline is kBlnBaselineOffset + kBlnXHeight
// (See normalis.h for the definitions).
uinT8 min_bottom;
uinT8 max_bottom;
uinT8 min_top;
uinT8 max_top;
// Limits on the widths of bounding box, also in baseline-normalized coords.
inT16 min_width;
inT16 max_width;
// Limits on the x-bearing and advance, also in baseline-normalized coords.
inT16 min_bearing;
inT16 max_bearing;
inT16 min_advance;
inT16 max_advance;
int script_id;
UNICHAR_ID other_case; // id of the corresponding upper/lower case unichar
Direction direction; // direction of this unichar
// Mirror property is useful for reverse DAWG lookup for words in
// right-to-left languages (e.g. "(word)" would be in
// '[open paren]' 'w' 'o' 'r' 'd' '[close paren]' in a UTF8 string.
// However, what we want in our DAWG is
// '[open paren]', 'd', 'r', 'o', 'w', '[close paren]' not
// '[close paren]', 'd', 'r', 'o', 'w', '[open paren]'.
UNICHAR_ID mirror;
// A string of unichar_ids that represent the corresponding normed string.
// For awkward characters like em-dash, this gives hyphen.
// For ligatures, this gives the string of normal unichars.
GenericVector<UNICHAR_ID> normed_ids;
STRING normed; // normalized version of this unichar
// Contains meta information about the fragment if a unichar represents
// a fragment of a character, otherwise should be set to NULL.
// It is assumed that character fragments are added to the unicharset
// after the corresponding 'base' characters.
CHAR_FRAGMENT *fragment;
};
struct UNICHAR_SLOT {
char representation[UNICHAR_LEN + 1];
UNICHAR_PROPERTIES properties;
};
// Internal recursive version of encode_string above.
// str is the start of the whole string.
// str_index is the current position in str.
// str_length is the length of str.
// encoding is a working encoding of str.
// lengths is a working set of lengths of each element of encoding.
// best_total_length is the longest length of str that has been successfully
// encoded so far.
// On return:
// best_encoding contains the encoding that used the longest part of str.
// best_lengths (may be null) contains the lengths of best_encoding.
void encode_string(const char* str, int str_index, int str_length,
GenericVector<UNICHAR_ID>* encoding,
GenericVector<char>* lengths,
int* best_total_length,
GenericVector<UNICHAR_ID>* best_encoding,
GenericVector<char>* best_lengths) const;
// Gets the properties for a grapheme string, combining properties for
// multiple characters in a meaningful way where possible.
// Returns false if no valid match was found in the unicharset.
// NOTE that script_id, mirror, and other_case refer to this unicharset on
// return and will need redirecting if the target unicharset is different.
bool GetStrProperties(const char* utf8_str,
UNICHAR_PROPERTIES* props) const;
// Load ourselves from a "file" where our only interface to the file is
// an implementation of fgets(). This is the parsing primitive accessed by
// the public routines load_from_file() and load_from_inmemory_file().
bool load_via_fgets(TessResultCallback2<char *, char *, int> *fgets_cb,
bool skip_fragments);
UNICHAR_SLOT* unichars;
UNICHARMAP ids;
int size_used;
int size_reserved;
char** script_table;
int script_table_size_used;
int script_table_size_reserved;
const char* null_script;
// True if the unichars have their tops/bottoms set.
bool top_bottom_set_;
// True if the unicharset has significant upper/lower case chars.
bool script_has_upper_lower_;
// True if the unicharset has a significant mean-line with significant
// ascenders above that.
bool script_has_xheight_;
// A few convenient script name-to-id mapping without using hash.
// These are initialized when unicharset file is loaded. Anything
// missing from this list can be looked up using get_script_id_from_name.
int null_sid_;
int common_sid_;
int latin_sid_;
int cyrillic_sid_;
int greek_sid_;
int han_sid_;
int hiragana_sid_;
int katakana_sid_;
// The most frequently occurring script in the charset.
int default_sid_;
};
#endif // TESSERACT_CCUTIL_UNICHARSET_H__
| 1080228-arabicocr11 | ccutil/unicharset.h | C++ | asf20 | 41,411 |
/******************************************************************************
** Filename: Host.h
** Purpose: This is the system independent typedefs and defines
** Author: MN, JG, MD
** Version: 5.4.1
** History: 11/7/94 MCD received the modification that Lennart made
** to port to 32 bit world and modify this file so that it
** will be shared between platform.
** 11/9/94 MCD Make MSW32 subset of MSW. Now MSW means
** MicroSoft Window and MSW32 means the 32 bit worlds
** of MicroSoft Window. Therefore you want the environment
** to be MicroSoft Window and in the 32 bit world -
** _WIN32 must be defined by your compiler.
** 11/30/94 MCD Incorporated comments received for more
** readability and the missing typedef for FLOAT.
** 12/1/94 MCD Added PFVOID typedef
** 5/1/95 MCD. Made many changes based on the inputs.
** Changes:
** 1) Rearrange the #ifdef so that there're definitions for
** particular platforms.
** 2) Took out the #define for computer and environment
** that developer can uncomment
** 3) Added __OLDCODE__ where the defines will be
** obsoleted in the next version and advise not to use.
** 4) Added the definitions for the following:
** FILE_HANDLE, MEMORY_HANDLE, BOOL8,
** MAX_INT8, MAX_INT16, MAX_INT32, MAX_UINT8
** MAX_UINT16, MAX_UINT32, MAX_FLOAT32
** 06/19/96 MCD. Took out MAX_FLOAT32
** 07/15/96 MCD. Fixed the comments error
** Add back BOOL8.
**
** (c) Copyright Hewlett-Packard Company, 1988-1996.
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
** http://www.apache.org/licenses/LICENSE-2.0
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*/
#ifndef __HOST__
#define __HOST__
/******************************************************************************
** IMPORTANT!!! **
** **
** Defines either _WIN32, __MAC__, __UNIX__, __OS2__, __PM__ to
** use the specified definitions indicated below in the preprocessor settings. **
** **
** Also define either __FarProc__ or __FarData__ and __MOTO__ to use the
** specified definitions indicated below in the preprocessor settings. **
** **
** If a preprocessor settings is not allow in the compiler that is being use,
** then it is recommended that a "platform.h" is created with the definition
** of the computer and/or operating system.
******************************************************************************/
#include "platform.h"
/* _WIN32 */
#ifdef _WIN32
#include <windows.h>
#include <winbase.h> // winbase.h contains windows.h
#endif
/********************************************************/
/* __MAC__ */
#ifdef __MAC__
#include <Types.h>
/*----------------------------*/
/*----------------------------*/
#endif
/********************************************************/
#if defined(__UNIX__) || defined( __DOS__ ) || defined(__OS2__) || defined(__PM__)
/*----------------------------*/
/* FarProc and FarData */
/*----------------------------*/
/*----------------------------*/
#endif
/*****************************************************************************
**
** Standard GHC Definitions
**
*****************************************************************************/
#ifdef __MOTO__
#define __NATIVE__ MOTO
#else
#define __NATIVE__ INTEL
#endif
//typedef HANDLE FD* PHANDLE;
// definitions of portable data types (numbers and characters)
typedef SIGNED char inT8;
typedef unsigned char uinT8;
typedef short inT16;
typedef unsigned short uinT16;
typedef int inT32;
typedef unsigned int uinT32;
#if (_MSC_VER >= 1200) //%%% vkr for VC 6.0
typedef INT64 inT64;
typedef UINT64 uinT64;
#else
typedef long long int inT64;
typedef unsigned long long int uinT64;
#endif //%%% vkr for VC 6.0
typedef float FLOAT32;
typedef double FLOAT64;
typedef unsigned char BOOL8;
#define INT32FORMAT "%d"
#define INT64FORMAT "%lld"
#define MAX_INT8 0x7f
#define MAX_INT16 0x7fff
#define MAX_INT32 0x7fffffff
#define MAX_UINT8 0xff
#define MAX_UINT16 0xffff
#define MAX_UINT32 0xffffffff
#define MAX_FLOAT32 ((float)3.40282347e+38)
#define MIN_INT8 0x80
#define MIN_INT16 0x8000
#define MIN_INT32 static_cast<int>(0x80000000)
#define MIN_UINT8 0x00
#define MIN_UINT16 0x0000
#define MIN_UINT32 0x00000000
#define MIN_FLOAT32 ((float)1.17549435e-38)
// Defines
#ifndef TRUE
#define TRUE 1
#endif
#ifndef FALSE
#define FALSE 0
#endif
#ifndef NULL
#define NULL 0L
#endif
// Return true if x is within tolerance of y
template<class T> bool NearlyEqual(T x, T y, T tolerance) {
T diff = x - y;
return diff <= tolerance && -diff <= tolerance;
}
#endif
| 1080228-arabicocr11 | ccutil/host.h | C++ | asf20 | 6,293 |
/**********************************************************************
* File: clst.h (Formerly clist.h)
* Description: CONS cell list module include file.
* Author: Phil Cheatle
* Created: Mon Jan 28 08:33:13 GMT 1991
*
* (C) Copyright 1991, Hewlett-Packard Ltd.
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
** http://www.apache.org/licenses/LICENSE-2.0
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*
**********************************************************************/
#ifndef CLST_H
#define CLST_H
#include <stdio.h>
#include "host.h"
#include "serialis.h"
#include "lsterr.h"
class CLIST_ITERATOR;
/**********************************************************************
* CLASS - CLIST_LINK
*
* Generic link class for singly linked CONS cell lists
*
* Note: No destructor - elements are assumed to be destroyed EITHER after
* they have been extracted from a list OR by the CLIST destructor which
* walks the list.
**********************************************************************/
class DLLSYM CLIST_LINK
{
friend class CLIST_ITERATOR;
friend class CLIST;
CLIST_LINK *next;
void *data;
public:
CLIST_LINK() { //constructor
data = next = NULL;
}
CLIST_LINK( //copy constructor
const CLIST_LINK &) { //dont copy link
data = next = NULL;
}
void operator= ( //dont copy links
const CLIST_LINK &) {
data = next = NULL;
}
};
/**********************************************************************
* CLASS - CLIST
*
* Generic list class for singly linked CONS cell lists
**********************************************************************/
class DLLSYM CLIST
{
friend class CLIST_ITERATOR;
CLIST_LINK *last; //End of list
//(Points to head)
CLIST_LINK *First() { // return first
return last != NULL ? last->next : NULL;
}
public:
CLIST() { //constructor
last = NULL;
}
~CLIST () { //destructor
shallow_clear();
}
void internal_deep_clear ( //destroy all links
void (*zapper) (void *)); //ptr to zapper functn
void shallow_clear(); //clear list but dont
//delete data elements
bool empty() const { //is list empty?
return !last;
}
bool singleton() const {
return last != NULL ? (last == last->next) : false;
}
void shallow_copy( //dangerous!!
CLIST *from_list) { //beware destructors!!
last = from_list->last;
}
void assign_to_sublist( //to this list
CLIST_ITERATOR *start_it, //from list start
CLIST_ITERATOR *end_it); //from list end
inT32 length() const; //# elements in list
void sort ( //sort elements
int comparator ( //comparison routine
const void *, const void *));
// Assuming list has been sorted already, insert new_data to
// keep the list sorted according to the same comparison function.
// Comparision function is the same as used by sort, i.e. uses double
// indirection. Time is O(1) to add to beginning or end.
// Time is linear to add pre-sorted items to an empty list.
// If unique, then don't add duplicate entries.
// Returns true if the element was added to the list.
bool add_sorted(int comparator(const void*, const void*),
bool unique, void* new_data);
// Assuming that the minuend and subtrahend are already sorted with
// the same comparison function, shallow clears this and then copies
// the set difference minuend - subtrahend to this, being the elements
// of minuend that do not compare equal to anything in subtrahend.
// If unique is true, any duplicates in minuend are also eliminated.
void set_subtract(int comparator(const void*, const void*), bool unique,
CLIST* minuend, CLIST* subtrahend);
};
/***********************************************************************
* CLASS - CLIST_ITERATOR
*
* Generic iterator class for singly linked lists with embedded links
**********************************************************************/
class DLLSYM CLIST_ITERATOR
{
friend void CLIST::assign_to_sublist(CLIST_ITERATOR *, CLIST_ITERATOR *);
CLIST *list; //List being iterated
CLIST_LINK *prev; //prev element
CLIST_LINK *current; //current element
CLIST_LINK *next; //next element
BOOL8 ex_current_was_last; //current extracted
//was end of list
BOOL8 ex_current_was_cycle_pt; //current extracted
//was cycle point
CLIST_LINK *cycle_pt; //point we are cycling
//the list to.
BOOL8 started_cycling; //Have we moved off
//the start?
CLIST_LINK *extract_sublist( //from this current...
CLIST_ITERATOR *other_it); //to other current
public:
CLIST_ITERATOR() { //constructor
list = NULL;
} //unassigned list
CLIST_ITERATOR( //constructor
CLIST *list_to_iterate);
void set_to_list( //change list
CLIST *list_to_iterate);
void add_after_then_move( //add after current &
void *new_data); //move to new
void add_after_stay_put( //add after current &
void *new_data); //stay at current
void add_before_then_move( //add before current &
void *new_data); //move to new
void add_before_stay_put( //add before current &
void *new_data); //stay at current
void add_list_after( //add a list &
CLIST *list_to_add); //stay at current
void add_list_before( //add a list &
CLIST *list_to_add); //move to it 1st item
void *data() { //get current data
#ifndef NDEBUG
if (!list)
NO_LIST.error ("CLIST_ITERATOR::data", ABORT, NULL);
if (!current)
NULL_DATA.error ("CLIST_ITERATOR::data", ABORT, NULL);
#endif
return current->data;
}
void *data_relative( //get data + or - ...
inT8 offset); //offset from current
void *forward(); //move to next element
void *extract(); //remove from list
void *move_to_first(); //go to start of list
void *move_to_last(); //go to end of list
void mark_cycle_pt(); //remember current
BOOL8 empty() { //is list empty?
#ifndef NDEBUG
if (!list)
NO_LIST.error ("CLIST_ITERATOR::empty", ABORT, NULL);
#endif
return list->empty ();
}
BOOL8 current_extracted() { //current extracted?
return !current;
}
BOOL8 at_first(); //Current is first?
BOOL8 at_last(); //Current is last?
BOOL8 cycled_list(); //Completed a cycle?
void add_to_end( //add at end &
void *new_data); //dont move
void exchange( //positions of 2 links
CLIST_ITERATOR *other_it); //other iterator
inT32 length(); //# elements in list
void sort ( //sort elements
int comparator ( //comparison routine
const void *, const void *));
};
/***********************************************************************
* CLIST_ITERATOR::set_to_list
*
* (Re-)initialise the iterator to point to the start of the list_to_iterate
* over.
**********************************************************************/
inline void CLIST_ITERATOR::set_to_list( //change list
CLIST *list_to_iterate) {
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("CLIST_ITERATOR::set_to_list", ABORT, NULL);
if (!list_to_iterate)
BAD_PARAMETER.error ("CLIST_ITERATOR::set_to_list", ABORT,
"list_to_iterate is NULL");
#endif
list = list_to_iterate;
prev = list->last;
current = list->First ();
next = current != NULL ? current->next : NULL;
cycle_pt = NULL; //await explicit set
started_cycling = FALSE;
ex_current_was_last = FALSE;
ex_current_was_cycle_pt = FALSE;
}
/***********************************************************************
* CLIST_ITERATOR::CLIST_ITERATOR
*
* CONSTRUCTOR - set iterator to specified list;
**********************************************************************/
inline CLIST_ITERATOR::CLIST_ITERATOR(CLIST *list_to_iterate) {
set_to_list(list_to_iterate);
}
/***********************************************************************
* CLIST_ITERATOR::add_after_then_move
*
* Add a new element to the list after the current element and move the
* iterator to the new element.
**********************************************************************/
inline void CLIST_ITERATOR::add_after_then_move( // element to add
void *new_data) {
CLIST_LINK *new_element;
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("CLIST_ITERATOR::add_after_then_move", ABORT, NULL);
if (!list)
NO_LIST.error ("CLIST_ITERATOR::add_after_then_move", ABORT, NULL);
if (!new_data)
BAD_PARAMETER.error ("CLIST_ITERATOR::add_after_then_move", ABORT,
"new_data is NULL");
#endif
new_element = new CLIST_LINK;
new_element->data = new_data;
if (list->empty ()) {
new_element->next = new_element;
list->last = new_element;
prev = next = new_element;
}
else {
new_element->next = next;
if (current) { //not extracted
current->next = new_element;
prev = current;
if (current == list->last)
list->last = new_element;
}
else { //current extracted
prev->next = new_element;
if (ex_current_was_last)
list->last = new_element;
if (ex_current_was_cycle_pt)
cycle_pt = new_element;
}
}
current = new_element;
}
/***********************************************************************
* CLIST_ITERATOR::add_after_stay_put
*
* Add a new element to the list after the current element but do not move
* the iterator to the new element.
**********************************************************************/
inline void CLIST_ITERATOR::add_after_stay_put( // element to add
void *new_data) {
CLIST_LINK *new_element;
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("CLIST_ITERATOR::add_after_stay_put", ABORT, NULL);
if (!list)
NO_LIST.error ("CLIST_ITERATOR::add_after_stay_put", ABORT, NULL);
if (!new_data)
BAD_PARAMETER.error ("CLIST_ITERATOR::add_after_stay_put", ABORT,
"new_data is NULL");
#endif
new_element = new CLIST_LINK;
new_element->data = new_data;
if (list->empty ()) {
new_element->next = new_element;
list->last = new_element;
prev = next = new_element;
ex_current_was_last = FALSE;
current = NULL;
}
else {
new_element->next = next;
if (current) { //not extracted
current->next = new_element;
if (prev == current)
prev = new_element;
if (current == list->last)
list->last = new_element;
}
else { //current extracted
prev->next = new_element;
if (ex_current_was_last) {
list->last = new_element;
ex_current_was_last = FALSE;
}
}
next = new_element;
}
}
/***********************************************************************
* CLIST_ITERATOR::add_before_then_move
*
* Add a new element to the list before the current element and move the
* iterator to the new element.
**********************************************************************/
inline void CLIST_ITERATOR::add_before_then_move( // element to add
void *new_data) {
CLIST_LINK *new_element;
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("CLIST_ITERATOR::add_before_then_move", ABORT, NULL);
if (!list)
NO_LIST.error ("CLIST_ITERATOR::add_before_then_move", ABORT, NULL);
if (!new_data)
BAD_PARAMETER.error ("CLIST_ITERATOR::add_before_then_move", ABORT,
"new_data is NULL");
#endif
new_element = new CLIST_LINK;
new_element->data = new_data;
if (list->empty ()) {
new_element->next = new_element;
list->last = new_element;
prev = next = new_element;
}
else {
prev->next = new_element;
if (current) { //not extracted
new_element->next = current;
next = current;
}
else { //current extracted
new_element->next = next;
if (ex_current_was_last)
list->last = new_element;
if (ex_current_was_cycle_pt)
cycle_pt = new_element;
}
}
current = new_element;
}
/***********************************************************************
* CLIST_ITERATOR::add_before_stay_put
*
* Add a new element to the list before the current element but dont move the
* iterator to the new element.
**********************************************************************/
inline void CLIST_ITERATOR::add_before_stay_put( // element to add
void *new_data) {
CLIST_LINK *new_element;
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("CLIST_ITERATOR::add_before_stay_put", ABORT, NULL);
if (!list)
NO_LIST.error ("CLIST_ITERATOR::add_before_stay_put", ABORT, NULL);
if (!new_data)
BAD_PARAMETER.error ("CLIST_ITERATOR::add_before_stay_put", ABORT,
"new_data is NULL");
#endif
new_element = new CLIST_LINK;
new_element->data = new_data;
if (list->empty ()) {
new_element->next = new_element;
list->last = new_element;
prev = next = new_element;
ex_current_was_last = TRUE;
current = NULL;
}
else {
prev->next = new_element;
if (current) { //not extracted
new_element->next = current;
if (next == current)
next = new_element;
}
else { //current extracted
new_element->next = next;
if (ex_current_was_last)
list->last = new_element;
}
prev = new_element;
}
}
/***********************************************************************
* CLIST_ITERATOR::add_list_after
*
* Insert another list to this list after the current element but dont move the
* iterator.
**********************************************************************/
inline void CLIST_ITERATOR::add_list_after(CLIST *list_to_add) {
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("CLIST_ITERATOR::add_list_after", ABORT, NULL);
if (!list)
NO_LIST.error ("CLIST_ITERATOR::add_list_after", ABORT, NULL);
if (!list_to_add)
BAD_PARAMETER.error ("CLIST_ITERATOR::add_list_after", ABORT,
"list_to_add is NULL");
#endif
if (!list_to_add->empty ()) {
if (list->empty ()) {
list->last = list_to_add->last;
prev = list->last;
next = list->First ();
ex_current_was_last = TRUE;
current = NULL;
}
else {
if (current) { //not extracted
current->next = list_to_add->First ();
if (current == list->last)
list->last = list_to_add->last;
list_to_add->last->next = next;
next = current->next;
}
else { //current extracted
prev->next = list_to_add->First ();
if (ex_current_was_last) {
list->last = list_to_add->last;
ex_current_was_last = FALSE;
}
list_to_add->last->next = next;
next = prev->next;
}
}
list_to_add->last = NULL;
}
}
/***********************************************************************
* CLIST_ITERATOR::add_list_before
*
* Insert another list to this list before the current element. Move the
* iterator to the start of the inserted elements
* iterator.
**********************************************************************/
inline void CLIST_ITERATOR::add_list_before(CLIST *list_to_add) {
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("CLIST_ITERATOR::add_list_before", ABORT, NULL);
if (!list)
NO_LIST.error ("CLIST_ITERATOR::add_list_before", ABORT, NULL);
if (!list_to_add)
BAD_PARAMETER.error ("CLIST_ITERATOR::add_list_before", ABORT,
"list_to_add is NULL");
#endif
if (!list_to_add->empty ()) {
if (list->empty ()) {
list->last = list_to_add->last;
prev = list->last;
current = list->First ();
next = current->next;
ex_current_was_last = FALSE;
}
else {
prev->next = list_to_add->First ();
if (current) { //not extracted
list_to_add->last->next = current;
}
else { //current extracted
list_to_add->last->next = next;
if (ex_current_was_last)
list->last = list_to_add->last;
if (ex_current_was_cycle_pt)
cycle_pt = prev->next;
}
current = prev->next;
next = current->next;
}
list_to_add->last = NULL;
}
}
/***********************************************************************
* CLIST_ITERATOR::extract
*
* Do extraction by removing current from the list, deleting the cons cell
* and returning the data to the caller, but NOT updating the iterator. (So
* that any calling loop can do this.) The iterator's current points to
* NULL. If the data is to be deleted, this is the callers responsibility.
**********************************************************************/
inline void *CLIST_ITERATOR::extract() {
void *extracted_data;
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("CLIST_ITERATOR::extract", ABORT, NULL);
if (!list)
NO_LIST.error ("CLIST_ITERATOR::extract", ABORT, NULL);
if (!current) //list empty or
//element extracted
NULL_CURRENT.error ("CLIST_ITERATOR::extract",
ABORT, NULL);
#endif
if (list->singleton()) {
// Special case where we do need to change the iterator.
prev = next = list->last = NULL;
} else {
prev->next = next; //remove from list
if (current == list->last) {
list->last = prev;
ex_current_was_last = TRUE;
} else {
ex_current_was_last = FALSE;
}
}
// Always set ex_current_was_cycle_pt so an add/forward will work in a loop.
ex_current_was_cycle_pt = (current == cycle_pt) ? TRUE : FALSE;
extracted_data = current->data;
delete(current); //destroy CONS cell
current = NULL;
return extracted_data;
}
/***********************************************************************
* CLIST_ITERATOR::move_to_first()
*
* Move current so that it is set to the start of the list.
* Return data just in case anyone wants it.
**********************************************************************/
inline void *CLIST_ITERATOR::move_to_first() {
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("CLIST_ITERATOR::move_to_first", ABORT, NULL);
if (!list)
NO_LIST.error ("CLIST_ITERATOR::move_to_first", ABORT, NULL);
#endif
current = list->First ();
prev = list->last;
next = current != NULL ? current->next : NULL;
return current != NULL ? current->data : NULL;
}
/***********************************************************************
* CLIST_ITERATOR::mark_cycle_pt()
*
* Remember the current location so that we can tell whether we've returned
* to this point later.
*
* If the current point is deleted either now, or in the future, the cycle
* point will be set to the next item which is set to current. This could be
* by a forward, add_after_then_move or add_after_then_move.
**********************************************************************/
inline void CLIST_ITERATOR::mark_cycle_pt() {
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("CLIST_ITERATOR::mark_cycle_pt", ABORT, NULL);
if (!list)
NO_LIST.error ("CLIST_ITERATOR::mark_cycle_pt", ABORT, NULL);
#endif
if (current)
cycle_pt = current;
else
ex_current_was_cycle_pt = TRUE;
started_cycling = FALSE;
}
/***********************************************************************
* CLIST_ITERATOR::at_first()
*
* Are we at the start of the list?
*
**********************************************************************/
inline BOOL8 CLIST_ITERATOR::at_first() {
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("CLIST_ITERATOR::at_first", ABORT, NULL);
if (!list)
NO_LIST.error ("CLIST_ITERATOR::at_first", ABORT, NULL);
#endif
//we're at a deleted
return ((list->empty ()) || (current == list->First ()) || ((current == NULL) &&
(prev == list->last) && //NON-last pt between
!ex_current_was_last)); //first and last
}
/***********************************************************************
* CLIST_ITERATOR::at_last()
*
* Are we at the end of the list?
*
**********************************************************************/
inline BOOL8 CLIST_ITERATOR::at_last() {
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("CLIST_ITERATOR::at_last", ABORT, NULL);
if (!list)
NO_LIST.error ("CLIST_ITERATOR::at_last", ABORT, NULL);
#endif
//we're at a deleted
return ((list->empty ()) || (current == list->last) || ((current == NULL) &&
(prev == list->last) && //last point between
ex_current_was_last)); //first and last
}
/***********************************************************************
* CLIST_ITERATOR::cycled_list()
*
* Have we returned to the cycle_pt since it was set?
*
**********************************************************************/
inline BOOL8 CLIST_ITERATOR::cycled_list() {
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("CLIST_ITERATOR::cycled_list", ABORT, NULL);
if (!list)
NO_LIST.error ("CLIST_ITERATOR::cycled_list", ABORT, NULL);
#endif
return ((list->empty ()) || ((current == cycle_pt) && started_cycling));
}
/***********************************************************************
* CLIST_ITERATOR::length()
*
* Return the length of the list
*
**********************************************************************/
inline inT32 CLIST_ITERATOR::length() {
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("CLIST_ITERATOR::length", ABORT, NULL);
if (!list)
NO_LIST.error ("CLIST_ITERATOR::length", ABORT, NULL);
#endif
return list->length ();
}
/***********************************************************************
* CLIST_ITERATOR::sort()
*
* Sort the elements of the list, then reposition at the start.
*
**********************************************************************/
inline void
CLIST_ITERATOR::sort ( //sort elements
int comparator ( //comparison routine
const void *, const void *)) {
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("CLIST_ITERATOR::sort", ABORT, NULL);
if (!list)
NO_LIST.error ("CLIST_ITERATOR::sort", ABORT, NULL);
#endif
list->sort (comparator);
move_to_first();
}
/***********************************************************************
* CLIST_ITERATOR::add_to_end
*
* Add a new element to the end of the list without moving the iterator.
* This is provided because a single linked list cannot move to the last as
* the iterator couldn't set its prev pointer. Adding to the end is
* essential for implementing
queues.
**********************************************************************/
inline void CLIST_ITERATOR::add_to_end( // element to add
void *new_data) {
CLIST_LINK *new_element;
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("CLIST_ITERATOR::add_to_end", ABORT, NULL);
if (!list)
NO_LIST.error ("CLIST_ITERATOR::add_to_end", ABORT, NULL);
if (!new_data)
BAD_PARAMETER.error ("CLIST_ITERATOR::add_to_end", ABORT,
"new_data is NULL");
#endif
if (this->at_last ()) {
this->add_after_stay_put (new_data);
}
else {
if (this->at_first ()) {
this->add_before_stay_put (new_data);
list->last = prev;
}
else { //Iteratr is elsewhere
new_element = new CLIST_LINK;
new_element->data = new_data;
new_element->next = list->last->next;
list->last->next = new_element;
list->last = new_element;
}
}
}
/***********************************************************************
QUOTE_IT MACRO DEFINITION
===========================
Replace <parm> with "<parm>". <parm> may be an arbitrary number of tokens
***********************************************************************/
#define QUOTE_IT( parm ) #parm
/***********************************************************************
CLISTIZE( CLASSNAME ) MACRO DEFINITION
======================================
CLASSNAME is assumed to be the name of a class to be used in a CONS list
NOTE: Because we dont use virtual functions in the list code, the list code
will NOT work correctly for classes derived from this.
The macro generates:
- An element deletion function: CLASSNAME##_c1_zapper
- An element copier function:
CLASSNAME##_c1_copier
- A CLIST subclass: CLASSNAME##_CLIST
- A CLIST_ITERATOR subclass:
CLASSNAME##_C_IT
NOTE: Generated names do NOT clash with those generated by ELISTIZE,
ELIST2ISE and CLIST2IZE
Two macros are provided: CLISTIZE and CLISTIZEH
The ...IZEH macros just define the class names for use in .h files
The ...IZE macros define the code use in .c files
***********************************************************************/
/***********************************************************************
CLISTIZEH( CLASSNAME ) MACRO
CLISTIZEH is a concatenation of 3 fragments CLISTIZEH_A, CLISTIZEH_B and
CLISTIZEH_C.
***********************************************************************/
#define CLISTIZEH_A( CLASSNAME ) \
\
extern DLLSYM void CLASSNAME##_c1_zapper( /*delete a link*/ \
void* link); /*link to delete*/ \
\
extern DLLSYM void* CLASSNAME##_c1_copier( /*deep copy a link*/ \
void* old_element); /*source link */
#define CLISTIZEH_B( CLASSNAME ) \
\
/*********************************************************************** \
* CLASS - CLASSNAME##_CLIST \
* \
* List class for class CLASSNAME \
* \
**********************************************************************/ \
\
class DLLSYM CLASSNAME##_CLIST : public CLIST \
{ \
public: \
CLASSNAME##_CLIST():CLIST() {} \
/* constructor */ \
\
CLASSNAME##_CLIST( /* dont construct */ \
const CLASSNAME##_CLIST&) /*by initial assign*/ \
{ DONT_CONSTRUCT_LIST_BY_COPY.error( QUOTE_IT( CLASSNAME##_CLIST ), \
ABORT, NULL ); } \
\
void deep_clear() /* delete elements */ \
{ CLIST::internal_deep_clear( &CLASSNAME##_c1_zapper ); } \
\
void operator=( /* prevent assign */ \
const CLASSNAME##_CLIST&) \
{ DONT_ASSIGN_LISTS.error( QUOTE_IT( CLASSNAME##_CLIST ), \
ABORT, NULL ); }
#define CLISTIZEH_C( CLASSNAME ) \
\
}; \
\
\
\
/*********************************************************************** \
* CLASS - CLASSNAME##_C_IT \
* \
* Iterator class for class CLASSNAME##_CLIST \
* \
* Note: We don't need to coerce pointers to member functions input \
* parameters as these are automatically converted to the type of the base \
* type. ("A ptr to a class may be converted to a pointer to a public base \
* class of that class") \
**********************************************************************/ \
\
class DLLSYM CLASSNAME##_C_IT : public CLIST_ITERATOR \
{ \
public: \
CLASSNAME##_C_IT():CLIST_ITERATOR(){} \
\
CLASSNAME##_C_IT( \
CLASSNAME##_CLIST* list):CLIST_ITERATOR(list){} \
\
CLASSNAME* data() \
{ return (CLASSNAME*) CLIST_ITERATOR::data(); } \
\
CLASSNAME* data_relative( \
inT8 offset) \
{ return (CLASSNAME*) CLIST_ITERATOR::data_relative( offset ); } \
\
CLASSNAME* forward() \
{ return (CLASSNAME*) CLIST_ITERATOR::forward(); } \
\
CLASSNAME* extract() \
{ return (CLASSNAME*) CLIST_ITERATOR::extract(); } \
\
CLASSNAME* move_to_first() \
{ return (CLASSNAME*) CLIST_ITERATOR::move_to_first(); } \
\
CLASSNAME* move_to_last() \
{ return (CLASSNAME*) CLIST_ITERATOR::move_to_last(); } \
};
#define CLISTIZEH( CLASSNAME ) \
\
CLISTIZEH_A( CLASSNAME ) \
\
CLISTIZEH_B( CLASSNAME ) \
\
CLISTIZEH_C( CLASSNAME )
/***********************************************************************
CLISTIZE( CLASSNAME ) MACRO
***********************************************************************/
#define CLISTIZE( CLASSNAME ) \
\
/*********************************************************************** \
* CLASSNAME##_c1_zapper \
* \
* A function which can delete a CLASSNAME element. This is passed to the \
* generic deep_clear list member function so that when a list is cleared the \
* elements on the list are properly destroyed from the base class, even \
* though we dont use a virtual destructor function. \
**********************************************************************/ \
\
DLLSYM void CLASSNAME##_c1_zapper( /*delete a link*/ \
void* link) /*link to delete*/ \
{ \
delete (CLASSNAME *) link; \
} \
#endif
| 1080228-arabicocr11 | ccutil/clst.h | C++ | asf20 | 31,193 |
/**********************************************************************
* File: memry.h (Formerly memory.h)
* Description: Header file for basic memory allocation/deallocation.
* Author: Ray Smith
* Created: Tue May 8 16:03:48 BST 1990
*
* (C) Copyright 1990, Hewlett-Packard Ltd.
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
** http://www.apache.org/licenses/LICENSE-2.0
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*
**********************************************************************/
#ifndef MEMRY_H
#define MEMRY_H
#include <stddef.h>
#include "host.h"
// allocate string
extern char *alloc_string(inT32 count);
// free a string.
extern void free_string(char *string);
// allocate memory
extern void *alloc_struct(inT32 count, const char *name = NULL);
// free a structure.
extern void free_struct(void *deadstruct, inT32, const char *name = NULL);
// get some memory
extern void *alloc_mem(inT32 count);
// get some memory initialized to 0.
extern void *alloc_big_zeros(inT32 count);
// free mem from alloc_mem
extern void free_mem(void *oldchunk);
// free mem from alloc_big_zeros
extern void free_big_mem(void *oldchunk);
#endif
| 1080228-arabicocr11 | ccutil/memry.h | C | asf20 | 1,626 |
/**********************************************************************
* File: serialis.h (Formerly serialmac.h)
* Description: Inline routines and macros for serialisation functions
* Author: Phil Cheatle
* Created: Tue Oct 08 08:33:12 BST 1991
*
* (C) Copyright 1990, Hewlett-Packard Ltd.
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
** http://www.apache.org/licenses/LICENSE-2.0
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*
**********************************************************************/
#ifndef SERIALIS_H
#define SERIALIS_H
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include "host.h"
template <typename T> class GenericVector;
class STRING;
/***********************************************************************
QUOTE_IT MACRO DEFINITION
===========================
Replace <parm> with "<parm>". <parm> may be an arbitrary number of tokens
***********************************************************************/
#define QUOTE_IT( parm ) #parm
namespace tesseract {
// Function to read a GenericVector<char> from a whole file.
// Returns false on failure.
typedef bool (*FileReader)(const STRING& filename, GenericVector<char>* data);
// Function to write a GenericVector<char> to a whole file.
// Returns false on failure.
typedef bool (*FileWriter)(const GenericVector<char>& data,
const STRING& filename);
// Simple file class.
// Allows for portable file input from memory and from foreign file systems.
class TFile {
public:
TFile();
~TFile();
// All the Open methods load the whole file into memory for reading.
// Opens a file with a supplied reader, or NULL to use the default.
// Note that mixed read/write is not supported.
bool Open(const STRING& filename, FileReader reader);
// From an existing memory buffer.
bool Open(const char* data, int size);
// From an open file and an end offset.
bool Open(FILE* fp, inT64 end_offset);
// Reads a line like fgets. Returns NULL on EOF, otherwise buffer.
// Reads at most buffer_size bytes, including '\0' terminator, even if
// the line is longer. Does nothing if buffer_size <= 0.
// To use fscanf use FGets and sscanf.
char* FGets(char* buffer, int buffer_size);
// Replicates fread, returning the number of items read.
int FRead(void* buffer, int size, int count);
// Resets the TFile as if it has been Opened, but nothing read.
// Only allowed while reading!
void Rewind();
// Open for writing. Either supply a non-NULL data with OpenWrite before
// calling FWrite, (no close required), or supply a NULL data to OpenWrite
// and call CloseWrite to write to a file after the FWrites.
void OpenWrite(GenericVector<char>* data);
bool CloseWrite(const STRING& filename, FileWriter writer);
// Replicates fwrite, returning the number of items written.
// To use fprintf, use snprintf and FWrite.
int FWrite(const void* buffer, int size, int count);
private:
// The number of bytes used so far.
int offset_;
// The buffered data from the file.
GenericVector<char>* data_;
// True if the data_ pointer is owned by *this.
bool data_is_owned_;
// True if the TFile is open for writing.
bool is_writing_;
};
} // namespace tesseract.
#endif
| 1080228-arabicocr11 | ccutil/serialis.h | C++ | asf20 | 3,691 |
AUTOMAKE_OPTIONS = subdir-objects
SUBDIRS =
AM_CXXFLAGS =
if !NO_TESSDATA_PREFIX
AM_CXXFLAGS += -DTESSDATA_PREFIX=@datadir@/
endif
if VISIBILITY
AM_CXXFLAGS += -fvisibility=hidden -fvisibility-inlines-hidden
AM_CPPFLAGS += -DTESS_EXPORTS
endif
include_HEADERS = \
basedir.h errcode.h fileerr.h genericvector.h helpers.h host.h memry.h \
ndminx.h params.h ocrclass.h platform.h serialis.h strngs.h \
tesscallback.h unichar.h unicharmap.h unicharset.h
noinst_HEADERS = \
ambigs.h bits16.h bitvector.h ccutil.h clst.h doubleptr.h elst2.h \
elst.h genericheap.h globaloc.h hashfn.h indexmapbidi.h kdpair.h lsterr.h \
nwmain.h object_cache.h qrsequence.h secname.h sorthelper.h stderr.h \
scanutils.h tessdatamanager.h tprintf.h unicity_table.h unicodes.h \
universalambigs.h
if !USING_MULTIPLELIBS
noinst_LTLIBRARIES = libtesseract_ccutil.la
else
lib_LTLIBRARIES = libtesseract_ccutil.la
libtesseract_ccutil_la_LDFLAGS = -version-info $(GENERIC_LIBRARY_VERSION)
endif
libtesseract_ccutil_la_SOURCES = \
ambigs.cpp basedir.cpp bits16.cpp bitvector.cpp \
ccutil.cpp clst.cpp \
elst2.cpp elst.cpp errcode.cpp \
globaloc.cpp indexmapbidi.cpp \
mainblk.cpp memry.cpp \
serialis.cpp strngs.cpp scanutils.cpp \
tessdatamanager.cpp tprintf.cpp \
unichar.cpp unicharmap.cpp unicharset.cpp unicodes.cpp \
params.cpp universalambigs.cpp
if T_WIN
AM_CPPFLAGS += -I$(top_srcdir)/vs2008/port -DWINDLLNAME=\"lib@GENERIC_LIBRARY_NAME@\"
noinst_HEADERS += ../vs2010/port/strtok_r.h
libtesseract_ccutil_la_SOURCES += ../vs2010/port/strtok_r.cpp
endif
| 1080228-arabicocr11 | ccutil/Makefile.am | Makefile | asf20 | 1,595 |
///////////////////////////////////////////////////////////////////////
// File: UnicityTable.h
// Description: a class to uniquify objects, manipulating them using integers
// ids.
// Author: Samuel Charron
//
// (C) Copyright 2006, Google Inc.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
///////////////////////////////////////////////////////////////////////
#ifndef TESSERACT_CCUTIL_UNICITY_TABLE_H_
#define TESSERACT_CCUTIL_UNICITY_TABLE_H_
#include "tesscallback.h"
#include "errcode.h"
#include "genericvector.h"
// A class to uniquify objects, manipulating them using integers ids.
// T requirements:
// operator= to add an element
// default-constructible: allocating the internal table will call the default
// constructor.
template <typename T>
class UnicityTable {
public:
UnicityTable();
/// Clear the structures and deallocate internal structures.
~UnicityTable();
/// Reserve some memory. If there is size or more elements, the table will
/// then allocate size * 2 elements.
void reserve(int size);
/// Return the size used.
int size() const;
/// Return the object from an id.
const T &get(int id) const;
// Return the pointer to an object with the given id.
T *get_mutable(int id);
/// Return the id of the T object.
/// This method NEEDS a compare_callback to be passed to
/// set_compare_callback.
int get_id(T object) const;
/// Return true if T is in the table
bool contains(T object) const;
/// Return true if the id is valid
T contains_id(int id) const;
/// Add an element in the table
int push_back(T object);
/// Add a callback to be called to delete the elements when the table took
/// their ownership.
void set_clear_callback(TessCallback1<T>* cb);
/// Add a callback to be called to compare the elements when needed (contains,
/// get_id, ...)
void set_compare_callback(TessResultCallback2<bool, T const &, T const &>* cb);
/// Clear the table, calling the callback function if any.
/// All the owned Callbacks are also deleted.
/// If you don't want the Callbacks to be deleted, before calling clear, set
/// the callback to NULL.
void clear();
/// This method clear the current object, then, does a shallow copy of
/// its argument, and finally invalidate its argument.
void move(UnicityTable<T>* from);
/// Read/Write the table to a file. This does _NOT_ read/write the callbacks.
/// The Callback given must be permanent since they will be called more than
/// once. The given callback will be deleted at the end.
/// Returns false on read/write error.
bool write(FILE* f, TessResultCallback2<bool, FILE*, T const &>* cb) const;
/// swap is used to switch the endianness.
bool read(FILE* f, TessResultCallback3<bool, FILE*, T*, bool>* cb, bool swap);
private:
GenericVector<T> table_;
// Mutable because Run method is not const
mutable TessResultCallback2<bool, T const &, T const &>* compare_cb_;
};
template <typename T>
class UnicityTableEqEq : public UnicityTable<T> {
public:
UnicityTableEqEq() {
UnicityTable<T>::set_compare_callback(
NewPermanentTessCallback(tesseract::cmp_eq<T>));
}
};
template <typename T>
UnicityTable<T>::UnicityTable() :
compare_cb_(0) {
}
template <typename T>
UnicityTable<T>::~UnicityTable() {
clear();
}
template <typename T>
int UnicityTable<T>::size() const{
return table_.size();
}
// Reserve some memory. If there is size or more elements, the table will
// then allocate size * 2 elements.
template <typename T>
void UnicityTable<T>::reserve(int size) {
table_.reserve(size);
}
// Return the object from an id.
template <typename T>
const T &UnicityTable<T>::get(int id) const {
return table_.get(id);
}
// Returns the pointer to the object with the given id.
template <typename T>
T *UnicityTable<T>::get_mutable(int id) {
return &(table_.get(id));
}
// Return true if the id is valid
template <typename T>
T UnicityTable<T>::contains_id(int id) const {
return table_.contains_index(id);
}
// Return the id of the T object.
template <typename T>
int UnicityTable<T>::get_id(T object) const {
return table_.get_index(object);
}
// Return true if T is in the table
template <typename T>
bool UnicityTable<T>::contains(T object) const {
return get_id(object) != -1;
}
// Add an element in the table
template <typename T>
int UnicityTable<T>::push_back(T object) {
int idx = get_id(object);
if (idx == -1) {
idx = table_.push_back(object);
}
return idx;
}
// Add a callback to be called to delete the elements when the table took
// their ownership.
template <typename T>
void UnicityTable<T>::set_clear_callback(TessCallback1<T>* cb) {
table_.set_clear_callback(cb);
}
// Add a callback to be called to delete the elements when the table took
// their ownership.
template <typename T>
void UnicityTable<T>::set_compare_callback(TessResultCallback2<bool, T const &, T const &>* cb) {
table_.set_compare_callback(cb);
compare_cb_ = cb;
}
// Clear the table, calling the callback function if any.
template <typename T>
void UnicityTable<T>::clear() {
table_.clear();
}
template <typename T>
bool UnicityTable<T>::write(
FILE* f, TessResultCallback2<bool, FILE*, T const &>* cb) const {
return table_.write(f, cb);
}
template <typename T>
bool UnicityTable<T>::read(
FILE* f, TessResultCallback3<bool, FILE*, T*, bool>* cb, bool swap) {
return table_.read(f, cb, swap);
}
// This method clear the current object, then, does a shallow copy of
// its argument, and finally invalidate its argument.
template <typename T>
void UnicityTable<T>::move(UnicityTable<T>* from) {
table_.move(&from->table_);
}
#endif // TESSERACT_CCUTIL_UNICITY_TABLE_H_
| 1080228-arabicocr11 | ccutil/unicity_table.h | C++ | asf20 | 6,232 |
/* Redundant. Delete me. */
| 1080228-arabicocr11 | ccutil/secname.h | C | asf20 | 28 |
/**********************************************************************
* File: errcode.h (Formerly error.h)
* Description: Header file for generic error handler class
* Author: Ray Smith
* Created: Tue May 1 16:23:36 BST 1990
*
* (C) Copyright 1990, Hewlett-Packard Ltd.
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
** http://www.apache.org/licenses/LICENSE-2.0
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*
**********************************************************************/
#ifndef GLOBALOC_H
#define GLOBALOC_H
#include "host.h"
// Saves a clone of the given pix, and notes its resolution in thread-specific
// data, so that the image can be written prior to a crash.
struct Pix;
void SavePixForCrash(int resolution, Pix* pix);
void signal_exit(int signal_code);
void err_exit();
void set_global_loc_code(int loc_code);
void set_global_subloc_code(int loc_code);
void set_global_subsubloc_code(int loc_code);
#endif
| 1080228-arabicocr11 | ccutil/globaloc.h | C | asf20 | 1,410 |
// Copyright 2011 Google Inc. All Rights Reserved.
// Author: rays@google.com (Ray Smith)
///////////////////////////////////////////////////////////////////////
// File: bitvector.cpp
// Description: Class replacement for BITVECTOR.
// Author: Ray Smith
// Created: Mon Jan 10 17:45:01 PST 2011
//
// (C) Copyright 2011, Google Inc.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
///////////////////////////////////////////////////////////////////////
#include "bitvector.h"
#include <string.h>
#include "helpers.h"
#include "ndminx.h"
namespace tesseract {
// Fast lookup table to get the first least significant set bit in a byte.
// For zero, the table has 255, but since it is a special case, most code
// that uses this table will check for zero before looking up lsb_index_.
const uinT8 BitVector::lsb_index_[256] = {
255, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,
4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,
5, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,
4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,
6, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,
4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,
5, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,
4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,
7, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,
4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,
5, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,
4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,
6, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,
4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,
5, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,
4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0
};
// Fast lookup table to get the residual bits after zeroing the first (lowest)
// set bit in a byte.
const uinT8 BitVector::lsb_eroded_[256] = {
0, 0, 0, 0x2, 0, 0x4, 0x4, 0x6,
0, 0x8, 0x8, 0x0a, 0x08, 0x0c, 0x0c, 0x0e,
0, 0x10, 0x10, 0x12, 0x10, 0x14, 0x14, 0x16,
0x10, 0x18, 0x18, 0x1a, 0x18, 0x1c, 0x1c, 0x1e,
0, 0x20, 0x20, 0x22, 0x20, 0x24, 0x24, 0x26,
0x20, 0x28, 0x28, 0x2a, 0x28, 0x2c, 0x2c, 0x2e,
0x20, 0x30, 0x30, 0x32, 0x30, 0x34, 0x34, 0x36,
0x30, 0x38, 0x38, 0x3a, 0x38, 0x3c, 0x3c, 0x3e,
0, 0x40, 0x40, 0x42, 0x40, 0x44, 0x44, 0x46,
0x40, 0x48, 0x48, 0x4a, 0x48, 0x4c, 0x4c, 0x4e,
0x40, 0x50, 0x50, 0x52, 0x50, 0x54, 0x54, 0x56,
0x50, 0x58, 0x58, 0x5a, 0x58, 0x5c, 0x5c, 0x5e,
0x40, 0x60, 0x60, 0x62, 0x60, 0x64, 0x64, 0x66,
0x60, 0x68, 0x68, 0x6a, 0x68, 0x6c, 0x6c, 0x6e,
0x60, 0x70, 0x70, 0x72, 0x70, 0x74, 0x74, 0x76,
0x70, 0x78, 0x78, 0x7a, 0x78, 0x7c, 0x7c, 0x7e,
0, 0x80, 0x80, 0x82, 0x80, 0x84, 0x84, 0x86,
0x80, 0x88, 0x88, 0x8a, 0x88, 0x8c, 0x8c, 0x8e,
0x80, 0x90, 0x90, 0x92, 0x90, 0x94, 0x94, 0x96,
0x90, 0x98, 0x98, 0x9a, 0x98, 0x9c, 0x9c, 0x9e,
0x80, 0xa0, 0xa0, 0xa2, 0xa0, 0xa4, 0xa4, 0xa6,
0xa0, 0xa8, 0xa8, 0xaa, 0xa8, 0xac, 0xac, 0xae,
0xa0, 0xb0, 0xb0, 0xb2, 0xb0, 0xb4, 0xb4, 0xb6,
0xb0, 0xb8, 0xb8, 0xba, 0xb8, 0xbc, 0xbc, 0xbe,
0x80, 0xc0, 0xc0, 0xc2, 0xc0, 0xc4, 0xc4, 0xc6,
0xc0, 0xc8, 0xc8, 0xca, 0xc8, 0xcc, 0xcc, 0xce,
0xc0, 0xd0, 0xd0, 0xd2, 0xd0, 0xd4, 0xd4, 0xd6,
0xd0, 0xd8, 0xd8, 0xda, 0xd8, 0xdc, 0xdc, 0xde,
0xc0, 0xe0, 0xe0, 0xe2, 0xe0, 0xe4, 0xe4, 0xe6,
0xe0, 0xe8, 0xe8, 0xea, 0xe8, 0xec, 0xec, 0xee,
0xe0, 0xf0, 0xf0, 0xf2, 0xf0, 0xf4, 0xf4, 0xf6,
0xf0, 0xf8, 0xf8, 0xfa, 0xf8, 0xfc, 0xfc, 0xfe
};
// Fast lookup table to give the number of set bits in a byte.
const int BitVector::hamming_table_[256] = {
0, 1, 1, 2, 1, 2, 2, 3, 1, 2, 2, 3, 2, 3, 3, 4,
1, 2, 2, 3, 2, 3, 3, 4, 2, 3, 3, 4, 3, 4, 4, 5,
1, 2, 2, 3, 2, 3, 3, 4, 2, 3, 3, 4, 3, 4, 4, 5,
2, 3, 3, 4, 3, 4, 4, 5, 3, 4, 4, 5, 4, 5, 5, 6,
1, 2, 2, 3, 2, 3, 3, 4, 2, 3, 3, 4, 3, 4, 4, 5,
2, 3, 3, 4, 3, 4, 4, 5, 3, 4, 4, 5, 4, 5, 5, 6,
2, 3, 3, 4, 3, 4, 4, 5, 3, 4, 4, 5, 4, 5, 5, 6,
3, 4, 4, 5, 4, 5, 5, 6, 4, 5, 5, 6, 5, 6, 6, 7,
1, 2, 2, 3, 2, 3, 3, 4, 2, 3, 3, 4, 3, 4, 4, 5,
2, 3, 3, 4, 3, 4, 4, 5, 3, 4, 4, 5, 4, 5, 5, 6,
2, 3, 3, 4, 3, 4, 4, 5, 3, 4, 4, 5, 4, 5, 5, 6,
3, 4, 4, 5, 4, 5, 5, 6, 4, 5, 5, 6, 5, 6, 6, 7,
2, 3, 3, 4, 3, 4, 4, 5, 3, 4, 4, 5, 4, 5, 5, 6,
3, 4, 4, 5, 4, 5, 5, 6, 4, 5, 5, 6, 5, 6, 6, 7,
3, 4, 4, 5, 4, 5, 5, 6, 4, 5, 5, 6, 5, 6, 6, 7,
4, 5, 5, 6, 5, 6, 6, 7, 5, 6, 6, 7, 6, 7, 7, 8
};
BitVector::BitVector() : bit_size_(0), array_(NULL) {}
BitVector::BitVector(int length) : bit_size_(length) {
array_ = new uinT32[WordLength()];
SetAllFalse();
}
BitVector::BitVector(const BitVector& src) : bit_size_(src.bit_size_) {
array_ = new uinT32[WordLength()];
memcpy(array_, src.array_, ByteLength());
}
BitVector& BitVector::operator=(const BitVector& src) {
Alloc(src.bit_size_);
memcpy(array_, src.array_, ByteLength());
return *this;
}
BitVector::~BitVector() {
delete [] array_;
}
// Initializes the array to length * false.
void BitVector::Init(int length) {
Alloc(length);
SetAllFalse();
}
// Writes to the given file. Returns false in case of error.
bool BitVector::Serialize(FILE* fp) const {
if (fwrite(&bit_size_, sizeof(bit_size_), 1, fp) != 1) return false;
int wordlen = WordLength();
if (static_cast<int>(fwrite(array_, sizeof(*array_), wordlen, fp)) != wordlen)
return false;
return true;
}
// Reads from the given file. Returns false in case of error.
// If swap is true, assumes a big/little-endian swap is needed.
bool BitVector::DeSerialize(bool swap, FILE* fp) {
uinT32 new_bit_size;
if (fread(&new_bit_size, sizeof(new_bit_size), 1, fp) != 1) return false;
if (swap) {
ReverseN(&new_bit_size, sizeof(new_bit_size));
}
Alloc(new_bit_size);
int wordlen = WordLength();
if (static_cast<int>(fread(array_, sizeof(*array_), wordlen, fp)) != wordlen)
return false;
if (swap) {
for (int i = 0; i < wordlen; ++i)
ReverseN(&array_[i], sizeof(array_[i]));
}
return true;
}
void BitVector::SetAllFalse() {
memset(array_, 0, ByteLength());
}
void BitVector::SetAllTrue() {
memset(array_, ~0, ByteLength());
}
// Returns the index of the next set bit after the given index.
// Useful for quickly iterating through the set bits in a sparse vector.
int BitVector::NextSetBit(int prev_bit) const {
// Move on to the next bit.
int next_bit = prev_bit + 1;
if (next_bit >= bit_size_) return -1;
// Check the remains of the word containing the next_bit first.
int next_word = WordIndex(next_bit);
int bit_index = next_word * kBitFactor;
int word_end = bit_index + kBitFactor;
uinT32 word = array_[next_word];
uinT8 byte = word & 0xff;
while (bit_index < word_end) {
if (bit_index + 8 > next_bit && byte != 0) {
while (bit_index + lsb_index_[byte] < next_bit && byte != 0)
byte = lsb_eroded_[byte];
if (byte != 0)
return bit_index + lsb_index_[byte];
}
word >>= 8;
bit_index += 8;
byte = word & 0xff;
}
// next_word didn't contain a 1, so find the next word with set bit.
++next_word;
int wordlen = WordLength();
while (next_word < wordlen && (word = array_[next_word]) == 0) {
++next_word;
bit_index += kBitFactor;
}
if (bit_index >= bit_size_) return -1;
// Find the first non-zero byte within the word.
while ((word & 0xff) == 0) {
word >>= 8;
bit_index += 8;
}
return bit_index + lsb_index_[word & 0xff];
}
// Returns the number of set bits in the vector.
int BitVector::NumSetBits() const {
int wordlen = WordLength();
int total_bits = 0;
for (int w = 0; w < wordlen; ++w) {
uinT32 word = array_[w];
for (int i = 0; i < 4; ++i) {
total_bits += hamming_table_[word & 0xff];
word >>= 8;
}
}
return total_bits;
}
// Logical in-place operations on whole bit vectors. Tries to do something
// sensible if they aren't the same size, but they should be really.
void BitVector::operator|=(const BitVector& other) {
int length = MIN(WordLength(), other.WordLength());
for (int w = 0; w < length; ++w)
array_[w] |= other.array_[w];
}
void BitVector::operator&=(const BitVector& other) {
int length = MIN(WordLength(), other.WordLength());
for (int w = 0; w < length; ++w)
array_[w] &= other.array_[w];
for (int w = WordLength() - 1; w >= length; --w)
array_[w] = 0;
}
void BitVector::operator^=(const BitVector& other) {
int length = MIN(WordLength(), other.WordLength());
for (int w = 0; w < length; ++w)
array_[w] ^= other.array_[w];
}
// Set subtraction *this = v1 - v2.
void BitVector::SetSubtract(const BitVector& v1, const BitVector& v2) {
Alloc(v1.size());
int length = MIN(v1.WordLength(), v2.WordLength());
for (int w = 0; w < length; ++w)
array_[w] = v1.array_[w] ^ (v1.array_[w] & v2.array_[w]);
for (int w = WordLength() - 1; w >= length; --w)
array_[w] = v1.array_[w];
}
// Allocates memory for a vector of the given length.
// Reallocates if the array is a different size, larger or smaller.
void BitVector::Alloc(int length) {
int initial_wordlength = WordLength();
bit_size_ = length;
int new_wordlength = WordLength();
if (new_wordlength != initial_wordlength) {
delete [] array_;
array_ = new uinT32[new_wordlength];
}
}
} // namespace tesseract.
| 1080228-arabicocr11 | ccutil/bitvector.cpp | C++ | asf20 | 9,679 |
// Copyright 2006 Google Inc.
// All Rights Reserved.
// Author: renn
//
// The fscanf, vfscanf and creat functions are implemented so that their
// functionality is mostly like their stdio counterparts. However, currently
// these functions do not use any buffering, making them rather slow.
// File streams are thus processed one character at a time.
// Although the implementations of the scanf functions do lack a few minor
// features, they should be sufficient for their use in tesseract.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#include <ctype.h>
#include <math.h>
#include <stdarg.h>
#include <stddef.h>
#include <string.h>
#include <limits.h>
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include "scanutils.h"
#include "tprintf.h"
// workaround for "'off_t' was not declared in this scope" with -std=c++11
#if !defined(off_t) && !defined(__APPLE__) && !defined(__CYGWIN__)
typedef long off_t;
#endif // off_t
enum Flags {
FL_SPLAT = 0x01, // Drop the value, do not assign
FL_INV = 0x02, // Character-set with inverse
FL_WIDTH = 0x04, // Field width specified
FL_MINUS = 0x08, // Negative number
};
enum Ranks {
RANK_CHAR = -2,
RANK_SHORT = -1,
RANK_INT = 0,
RANK_LONG = 1,
RANK_LONGLONG = 2,
RANK_PTR = INT_MAX // Special value used for pointers
};
const enum Ranks kMinRank = RANK_CHAR;
const enum Ranks kMaxRank = RANK_LONGLONG;
const enum Ranks kIntMaxRank = RANK_LONGLONG;
const enum Ranks kSizeTRank = RANK_LONG;
const enum Ranks kPtrDiffRank = RANK_LONG;
enum Bail {
BAIL_NONE = 0, // No error condition
BAIL_EOF, // Hit EOF
BAIL_ERR // Conversion mismatch
};
// Helper functions ------------------------------------------------------------
inline size_t LongBit() {
return CHAR_BIT * sizeof(long);
}
static inline int
SkipSpace(FILE *s) {
int p;
while (isspace(p = fgetc(s)));
ungetc(p, s); // Make sure next char is available for reading
return p;
}
static inline void
SetBit(unsigned long *bitmap, unsigned int bit) {
bitmap[bit/LongBit()] |= 1UL << (bit%LongBit());
}
static inline int
TestBit(unsigned long *bitmap, unsigned int bit) {
return static_cast<int>(bitmap[bit/LongBit()] >> (bit%LongBit())) & 1;
}
static inline int DigitValue(int ch, int base) {
if (ch >= '0' && ch <= '9') {
if (base >= 10 || ch <= '7')
return ch-'0';
} else if (ch >= 'A' && ch <= 'Z' && base == 16) {
return ch-'A'+10;
} else if (ch >= 'a' && ch <= 'z' && base == 16) {
return ch-'a'+10;
}
return -1;
}
// IO (re-)implementations -----------------------------------------------------
uintmax_t streamtoumax(FILE* s, int base) {
int minus = 0;
uintmax_t v = 0;
int d, c = 0;
for (c = fgetc(s);
isspace(static_cast<unsigned char>(c)) && (c != EOF);
c = fgetc(s)) {}
// Single optional + or -
if (c == '-' || c == '+') {
minus = (c == '-');
c = fgetc(s);
}
// Assign correct base
if (base == 0) {
if (c == '0') {
c = fgetc(s);
if (c == 'x' || c == 'X') {
base = 16;
c = fgetc(s);
} else {
base = 8;
}
}
} else if (base == 16) {
if (c == '0') {
c = fgetc(s);
if (c == 'x' || c == 'X') c = fgetc(s);
}
}
// Actual number parsing
for (; (c != EOF) && (d = DigitValue(c, base)) >= 0; c = fgetc(s))
v = v*base + d;
ungetc(c, s);
return minus ? -v : v;
}
double streamtofloat(FILE* s) {
int minus = 0;
int v = 0;
int d, c = 0;
int k = 1;
int w = 0;
for (c = fgetc(s);
isspace(static_cast<unsigned char>(c)) && (c != EOF);
c = fgetc(s));
// Single optional + or -
if (c == '-' || c == '+') {
minus = (c == '-');
c = fgetc(s);
}
// Actual number parsing
for (; c != EOF && (d = DigitValue(c, 10)) >= 0; c = fgetc(s))
v = v*10 + d;
if (c == '.') {
for (c = fgetc(s); c != EOF && (d = DigitValue(c, 10)) >= 0; c = fgetc(s)) {
w = w*10 + d;
k *= 10;
}
}
double f = static_cast<double>(v)
+ static_cast<double>(w) / static_cast<double>(k);
if (c == 'e' || c == 'E') {
c = fgetc(s);
int expsign = 1;
if (c == '-' || c == '+') {
expsign = (c == '-') ? -1 : 1;
c = fgetc(s);
}
int exponent = 0;
for (; (c != EOF) && (d = DigitValue(c, 10)) >= 0; c = fgetc(s)) {
exponent = exponent * 10 + d;
}
exponent *= expsign;
f *= pow(10.0, static_cast<double>(exponent));
}
ungetc(c, s);
return minus ? -f : f;
}
double strtofloat(const char* s) {
int minus = 0;
int v = 0;
int d;
int k = 1;
int w = 0;
while(*s && isspace(static_cast<unsigned char>(*s))) s++;
// Single optional + or -
if (*s == '-' || *s == '+') {
minus = (*s == '-');
s++;
}
// Actual number parsing
for (; *s && (d = DigitValue(*s, 10)) >= 0; s++)
v = v*10 + d;
if (*s == '.') {
for (++s; *s && (d = DigitValue(*s, 10)) >= 0; s++) {
w = w*10 + d;
k *= 10;
}
}
if (*s == 'e' || *s == 'E')
tprintf("WARNING: Scientific Notation not supported!");
double f = static_cast<double>(v)
+ static_cast<double>(w) / static_cast<double>(k);
return minus ? -f : f;
}
static int tvfscanf(FILE* stream, const char *format, va_list ap);
int tfscanf(FILE* stream, const char *format, ...) {
va_list ap;
int rv;
va_start(ap, format);
rv = tvfscanf(stream, format, ap);
va_end(ap);
return rv;
}
#ifdef EMBEDDED
int fscanf(FILE* stream, const char *format, ...) {
va_list ap;
int rv;
va_start(ap, format);
rv = tvfscanf(stream, format, ap);
va_end(ap);
return rv;
}
int vfscanf(FILE* stream, const char *format, ...) {
va_list ap;
int rv;
va_start(ap, format);
rv = tvfscanf(stream, format, ap);
va_end(ap);
return rv;
}
#endif
static int tvfscanf(FILE* stream, const char *format, va_list ap) {
const char *p = format;
char ch;
int q = 0;
uintmax_t val = 0;
int rank = RANK_INT; // Default rank
unsigned int width = UINT_MAX;
int base;
int flags = 0;
enum {
ST_NORMAL, // Ground state
ST_FLAGS, // Special flags
ST_WIDTH, // Field width
ST_MODIFIERS, // Length or conversion modifiers
ST_MATCH_INIT, // Initial state of %[ sequence
ST_MATCH, // Main state of %[ sequence
ST_MATCH_RANGE, // After - in a %[ sequence
} state = ST_NORMAL;
char *sarg = NULL; // %s %c or %[ string argument
enum Bail bail = BAIL_NONE;
int sign;
int converted = 0; // Successful conversions
unsigned long matchmap[((1 << CHAR_BIT)+(CHAR_BIT * sizeof(long) - 1)) /
(CHAR_BIT * sizeof(long))];
int matchinv = 0; // Is match map inverted?
unsigned char range_start = 0;
off_t start_off = ftell(stream);
// Skip leading spaces
SkipSpace(stream);
while ((ch = *p++) && !bail) {
switch (state) {
case ST_NORMAL:
if (ch == '%') {
state = ST_FLAGS;
flags = 0; rank = RANK_INT; width = UINT_MAX;
} else if (isspace(static_cast<unsigned char>(ch))) {
SkipSpace(stream);
} else {
if (fgetc(stream) != ch)
bail = BAIL_ERR; // Match failure
}
break;
case ST_FLAGS:
if (ch == '*') {
flags |= FL_SPLAT;
} else if ('0' <= ch && ch <= '9') {
width = (ch-'0');
state = ST_WIDTH;
flags |= FL_WIDTH;
} else {
state = ST_MODIFIERS;
p--; // Process this character again
}
break;
case ST_WIDTH:
if (ch >= '0' && ch <= '9') {
width = width*10+(ch-'0');
} else {
state = ST_MODIFIERS;
p--; // Process this character again
}
break;
case ST_MODIFIERS:
switch (ch) {
// Length modifiers - nonterminal sequences
case 'h':
rank--; // Shorter rank
break;
case 'l':
rank++; // Longer rank
break;
case 'j':
rank = kIntMaxRank;
break;
case 'z':
rank = kSizeTRank;
break;
case 't':
rank = kPtrDiffRank;
break;
case 'L':
case 'q':
rank = RANK_LONGLONG; // long double/long long
break;
default:
// Output modifiers - terminal sequences
state = ST_NORMAL; // Next state will be normal
if (rank < kMinRank) // Canonicalize rank
rank = kMinRank;
else if (rank > kMaxRank)
rank = kMaxRank;
switch (ch) {
case 'P': // Upper case pointer
case 'p': // Pointer
rank = RANK_PTR;
base = 0; sign = 0;
goto scan_int;
case 'i': // Base-independent integer
base = 0; sign = 1;
goto scan_int;
case 'd': // Decimal integer
base = 10; sign = 1;
goto scan_int;
case 'o': // Octal integer
base = 8; sign = 0;
goto scan_int;
case 'u': // Unsigned decimal integer
base = 10; sign = 0;
goto scan_int;
case 'x': // Hexadecimal integer
case 'X':
base = 16; sign = 0;
goto scan_int;
case 'n': // Number of characters consumed
val = ftell(stream) - start_off;
goto set_integer;
scan_int:
q = SkipSpace(stream);
if ( q <= 0 ) {
bail = BAIL_EOF;
break;
}
val = streamtoumax(stream, base);
// fall through
set_integer:
if (!(flags & FL_SPLAT)) {
converted++;
switch(rank) {
case RANK_CHAR:
*va_arg(ap, unsigned char *)
= static_cast<unsigned char>(val);
break;
case RANK_SHORT:
*va_arg(ap, unsigned short *)
= static_cast<unsigned short>(val);
break;
case RANK_INT:
*va_arg(ap, unsigned int *)
= static_cast<unsigned int>(val);
break;
case RANK_LONG:
*va_arg(ap, unsigned long *)
= static_cast<unsigned long>(val);
break;
case RANK_LONGLONG:
*va_arg(ap, unsigned long long *)
= static_cast<unsigned long long>(val);
break;
case RANK_PTR:
*va_arg(ap, void **)
= reinterpret_cast<void *>(static_cast<uintptr_t>(val));
break;
}
}
break;
case 'f': // Preliminary float value parsing
case 'g':
case 'G':
case 'e':
case 'E':
q = SkipSpace(stream);
if (q <= 0) {
bail = BAIL_EOF;
break;
}
{
double fval = streamtofloat(stream);
if (!(flags & FL_SPLAT)) {
if (rank == RANK_INT)
*va_arg(ap, float *) = static_cast<float>(fval);
else if (rank == RANK_LONG)
*va_arg(ap, double *) = static_cast<double>(fval);
converted++;
}
}
break;
case 'c': // Character
width = (flags & FL_WIDTH) ? width : 1; // Default width == 1
sarg = va_arg(ap, char *);
while (width--) {
if ((q = fgetc(stream)) <= 0) {
bail = BAIL_EOF;
break;
}
if (!(flags & FL_SPLAT)) {
*sarg++ = q;
converted++;
}
}
break;
case 's': // String
{
char *sp;
sp = sarg = va_arg(ap, char *);
while (width--) {
q = fgetc(stream);
if (isspace(static_cast<unsigned char>(q)) || q <= 0) {
ungetc(q, stream);
break;
}
if (!(flags & FL_SPLAT)) *sp = q;
sp++;
}
if (sarg == sp) {
bail = BAIL_EOF;
} else if (!(flags & FL_SPLAT)) {
*sp = '\0'; // Terminate output
converted++;
} else {
}
}
break;
case '[': // Character range
sarg = va_arg(ap, char *);
state = ST_MATCH_INIT;
matchinv = 0;
memset(matchmap, 0, sizeof matchmap);
break;
case '%': // %% sequence
if (fgetc(stream) != '%' )
bail = BAIL_ERR;
break;
default: // Anything else
bail = BAIL_ERR; // Unknown sequence
break;
}
}
break;
case ST_MATCH_INIT: // Initial state for %[ match
if (ch == '^' && !(flags & FL_INV)) {
matchinv = 1;
} else {
SetBit(matchmap, static_cast<unsigned char>(ch));
state = ST_MATCH;
}
break;
case ST_MATCH: // Main state for %[ match
if (ch == ']') {
goto match_run;
} else if (ch == '-') {
range_start = static_cast<unsigned char>(ch);
state = ST_MATCH_RANGE;
} else {
SetBit(matchmap, static_cast<unsigned char>(ch));
}
break;
case ST_MATCH_RANGE: // %[ match after -
if (ch == ']') {
SetBit(matchmap, static_cast<unsigned char>('-'));
goto match_run;
} else {
int i;
for (i = range_start ; i < (static_cast<unsigned char>(ch)) ; i++)
SetBit(matchmap, i);
state = ST_MATCH;
}
break;
match_run: // Match expression finished
char* oarg = sarg;
while (width) {
q = fgetc(stream);
unsigned char qc = static_cast<unsigned char>(q);
if (q <= 0 || !(TestBit(matchmap, qc)^matchinv)) {
ungetc(q, stream);
break;
}
if (!(flags & FL_SPLAT)) *sarg = q;
sarg++;
}
if (oarg == sarg) {
bail = (q <= 0) ? BAIL_EOF : BAIL_ERR;
} else if (!(flags & FL_SPLAT)) {
*sarg = '\0';
converted++;
}
break;
}
}
if (bail == BAIL_EOF && !converted)
converted = -1; // Return EOF (-1)
return converted;
}
#ifdef EMBEDDED
int creat(const char *pathname, mode_t mode) {
return open(pathname, O_CREAT | O_TRUNC | O_WRONLY, mode);
}
#endif // EMBEDDED
| 1080228-arabicocr11 | ccutil/scanutils.cpp | C++ | asf20 | 15,671 |
///////////////////////////////////////////////////////////////////////
// File: unicharset.cpp
// Description: Unicode character/ligature set class.
// Author: Thomas Kielbus
// Created: Wed Jun 28 17:05:01 PDT 2006
//
// (C) Copyright 2006, Google Inc.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
///////////////////////////////////////////////////////////////////////
#include "unicharset.h"
#include <assert.h>
#include <stdio.h>
#include <string.h>
#include "params.h"
#include "serialis.h"
#include "tesscallback.h"
#include "tprintf.h"
#include "unichar.h"
// Special character used in representing character fragments.
static const char kSeparator = '|';
// Special character used in representing 'natural' character fragments.
static const char kNaturalFlag = 'n';
static const int ISALPHA_MASK = 0x1;
static const int ISLOWER_MASK = 0x2;
static const int ISUPPER_MASK = 0x4;
static const int ISDIGIT_MASK = 0x8;
static const int ISPUNCTUATION_MASK = 0x10;
// Y coordinate threshold for determining cap-height vs x-height.
// TODO(rays) Bring the global definition down to the ccutil library level,
// so this constant is relative to some other constants.
static const int kMeanlineThreshold = 220;
// Let C be the number of alpha chars for which all tops exceed
// kMeanlineThreshold, and X the number of alpha chars for which all
// tops are below kMeanlineThreshold, then if X > C *
// kMinXHeightFraction and C > X * kMinCapHeightFraction or more than
// half the alpha characters have upper or lower case, then the
// unicharset "has x-height".
const double kMinXHeightFraction = 0.25;
const double kMinCapHeightFraction = 0.05;
/*static */
const char* UNICHARSET::kCustomLigatures[][2] = {
{"ct", "\uE003"}, // c + t -> U+E003
{"ſh", "\uE006"}, // long-s + h -> U+E006
{"ſi", "\uE007"}, // long-s + i -> U+E007
{"ſl", "\uE008"}, // long-s + l -> U+E008
{"ſſ", "\uE009"}, // long-s + long-s -> U+E009
{NULL, NULL}
};
// List of strings for the SpecialUnicharCodes. Keep in sync with the enum.
const char* UNICHARSET::kSpecialUnicharCodes[SPECIAL_UNICHAR_CODES_COUNT] = {
" ",
"Joined",
"|Broken|0|1"
};
UNICHARSET::UNICHAR_PROPERTIES::UNICHAR_PROPERTIES() {
Init();
}
// Initialize all properties to sensible default values.
void UNICHARSET::UNICHAR_PROPERTIES::Init() {
isalpha = false;
islower = false;
isupper = false;
isdigit = false;
ispunctuation = false;
isngram = false;
enabled = false;
SetRangesOpen();
script_id = 0;
other_case = 0;
mirror = 0;
normed = "";
direction = UNICHARSET::U_LEFT_TO_RIGHT;
fragment = NULL;
}
// Sets all ranges wide open. Initialization default in case there are
// no useful values available.
void UNICHARSET::UNICHAR_PROPERTIES::SetRangesOpen() {
min_bottom = 0;
max_bottom = MAX_UINT8;
min_top = 0;
max_top = MAX_UINT8;
min_width = 0;
max_width = MAX_INT16;
min_bearing = 0;
max_bearing = MAX_INT16;
min_advance = 0;
max_advance = MAX_INT16;
}
// Sets all ranges to empty. Used before expanding with font-based data.
void UNICHARSET::UNICHAR_PROPERTIES::SetRangesEmpty() {
min_bottom = MAX_UINT8;
max_bottom = 0;
min_top = MAX_UINT8;
max_top = 0;
min_width = MAX_INT16;
max_width = 0;
min_bearing = MAX_INT16;
max_bearing = 0;
min_advance = MAX_INT16;
max_advance = 0;
}
// Returns true if any of the top/bottom/width/bearing/advance ranges is
// emtpy.
bool UNICHARSET::UNICHAR_PROPERTIES::AnyRangeEmpty() const {
return min_bottom > max_bottom || min_top > max_top ||
min_width > max_width || min_bearing > max_bearing ||
min_advance > max_advance;
}
// Expands the ranges with the ranges from the src properties.
void UNICHARSET::UNICHAR_PROPERTIES::ExpandRangesFrom(
const UNICHAR_PROPERTIES& src) {
UpdateRange(src.min_bottom, &min_bottom, &max_bottom);
UpdateRange(src.max_bottom, &min_bottom, &max_bottom);
UpdateRange(src.min_top, &min_top, &max_top);
UpdateRange(src.max_top, &min_top, &max_top);
UpdateRange(src.min_width, &min_width, &max_width);
UpdateRange(src.max_width, &min_width, &max_width);
UpdateRange(src.min_bearing, &min_bearing, &max_bearing);
UpdateRange(src.max_bearing, &min_bearing, &max_bearing);
UpdateRange(src.min_advance, &min_advance, &max_advance);
UpdateRange(src.max_advance, &min_advance, &max_advance);
}
// Copies the properties from src into this.
void UNICHARSET::UNICHAR_PROPERTIES::CopyFrom(const UNICHAR_PROPERTIES& src) {
// Apart from the fragment, everything else can be done with a default copy.
CHAR_FRAGMENT* saved_fragment = fragment;
*this = src; // Bitwise copy.
fragment = saved_fragment;
}
UNICHARSET::UNICHARSET() :
unichars(NULL),
ids(),
size_used(0),
size_reserved(0),
script_table(NULL),
script_table_size_used(0),
null_script("NULL") {
clear();
for (int i = 0; i < SPECIAL_UNICHAR_CODES_COUNT; ++i) {
unichar_insert(kSpecialUnicharCodes[i]);
if (i == UNICHAR_JOINED)
set_isngram(i, true);
}
}
UNICHARSET::~UNICHARSET() {
clear();
}
void UNICHARSET::reserve(int unichars_number) {
if (unichars_number > size_reserved) {
UNICHAR_SLOT* unichars_new = new UNICHAR_SLOT[unichars_number];
for (int i = 0; i < size_used; ++i)
unichars_new[i] = unichars[i];
for (int j = size_used; j < unichars_number; ++j) {
unichars_new[j].properties.script_id = add_script(null_script);
}
delete[] unichars;
unichars = unichars_new;
size_reserved = unichars_number;
}
}
const UNICHAR_ID
UNICHARSET::unichar_to_id(const char* const unichar_repr) const {
return ids.contains(unichar_repr) ?
ids.unichar_to_id(unichar_repr) : INVALID_UNICHAR_ID;
}
const UNICHAR_ID UNICHARSET::unichar_to_id(const char* const unichar_repr,
int length) const {
assert(length > 0 && length <= UNICHAR_LEN);
return ids.contains(unichar_repr, length) ?
ids.unichar_to_id(unichar_repr, length) : INVALID_UNICHAR_ID;
}
// Return the minimum number of bytes that matches a legal UNICHAR_ID,
// while leaving the rest of the string encodable. Returns 0 if the
// beginning of the string is not encodable.
// WARNING: this function now encodes the whole string for precision.
// Use encode_string in preference to repeatedly calling step.
int UNICHARSET::step(const char* str) const {
GenericVector<UNICHAR_ID> encoding;
GenericVector<char> lengths;
encode_string(str, true, &encoding, &lengths, NULL);
if (encoding.empty() || encoding[0] == INVALID_UNICHAR_ID) return 0;
return lengths[0];
}
// As step except constraining the search to unichar-ids that are
// self-normalized. Unlike step, does not encode the whole string, therefore
// should be used on short strings (like those obtained from
// get_normed_unichar.)
int UNICHARSET::normed_step(const char* str) const {
// Find the length of the first matching unicharset member.
int length = ids.minmatch(str);
if (length == 0)
return 0; // Empty string or illegal char.
while (length <= UNICHAR_LEN) {
if (ids.contains(str, length)) {
int matched_id = unichar_to_id(str, length);
const GenericVector<UNICHAR_ID>& matched_norms = normed_ids(matched_id);
bool good_start = matched_norms.size() == 1 &&
matched_norms[0] == matched_id;
if (str[length] == '\0') {
return good_start ? length : 0;
}
if (normed_step(str + length) > 0)
return length; // This length works!
} else if (str[length] == '\0') {
return 0; // Ran out of string.
}
++length;
}
return 0;
}
// Return whether the given UTF-8 string is encodable with this UNICHARSET.
// If not encodable, write the first byte offset which cannot be converted
// into the second (return) argument.
bool UNICHARSET::encodable_string(const char *str,
int *first_bad_position) const {
GenericVector<UNICHAR_ID> encoding;
return encode_string(str, true, &encoding, NULL, first_bad_position);
}
// Encodes the given UTF-8 string with this UNICHARSET.
// Returns true if the encoding succeeds completely, false if there is at
// least one INVALID_UNICHAR_ID in the returned encoding, but in this case
// the rest of the string is still encoded.
// If lengths is not NULL, then it is filled with the corresponding
// byte length of each encoded UNICHAR_ID.
bool UNICHARSET::encode_string(const char* str, bool give_up_on_failure,
GenericVector<UNICHAR_ID>* encoding,
GenericVector<char>* lengths,
int* encoded_length) const {
GenericVector<UNICHAR_ID> working_encoding;
GenericVector<char> working_lengths;
GenericVector<char> best_lengths;
encoding->truncate(0); // Just in case str is empty.
int str_length = strlen(str);
int str_pos = 0;
bool perfect = true;
while (str_pos < str_length) {
encode_string(str, str_pos, str_length, &working_encoding, &working_lengths,
&str_pos, encoding, &best_lengths);
if (str_pos < str_length) {
// This is a non-match. Skip one utf-8 character.
perfect = false;
if (give_up_on_failure) break;
int step = UNICHAR::utf8_step(str + str_pos);
if (step == 0) step = 1;
encoding->push_back(INVALID_UNICHAR_ID);
best_lengths.push_back(step);
str_pos += step;
working_encoding = *encoding;
working_lengths = best_lengths;
}
}
if (lengths != NULL) *lengths = best_lengths;
if (encoded_length != NULL) *encoded_length = str_pos;
return perfect;
}
const char* const UNICHARSET::id_to_unichar(UNICHAR_ID id) const {
if (id == INVALID_UNICHAR_ID) {
return INVALID_UNICHAR;
}
ASSERT_HOST(id < this->size());
return unichars[id].representation;
}
const char* const UNICHARSET::id_to_unichar_ext(UNICHAR_ID id) const {
if (id == INVALID_UNICHAR_ID) {
return INVALID_UNICHAR;
}
ASSERT_HOST(id < this->size());
// Resolve from the kCustomLigatures table if this is a private encoding.
if (get_isprivate(id)) {
const char* ch = id_to_unichar(id);
for (int i = 0; kCustomLigatures[i][0] != NULL; ++i) {
if (!strcmp(ch, kCustomLigatures[i][1])) {
return kCustomLigatures[i][0];
}
}
}
// Otherwise return the stored representation.
return unichars[id].representation;
}
// Return a STRING that reformats the utf8 str into the str followed
// by its hex unicodes.
STRING UNICHARSET::debug_utf8_str(const char* str) {
STRING result = str;
result += " [";
int step = 1;
// Chop into unicodes and code each as hex.
for (int i = 0; str[i] != '\0'; i += step) {
char hex[sizeof(int) * 2 + 1];
step = UNICHAR::utf8_step(str + i);
if (step == 0) {
step = 1;
sprintf(hex, "%x", str[i]);
} else {
UNICHAR ch(str + i, step);
sprintf(hex, "%x", ch.first_uni());
}
result += hex;
result += " ";
}
result += "]";
return result;
}
// Return a STRING containing debug information on the unichar, including
// the id_to_unichar, its hex unicodes and the properties.
STRING UNICHARSET::debug_str(UNICHAR_ID id) const {
if (id == INVALID_UNICHAR_ID) return STRING(id_to_unichar(id));
const CHAR_FRAGMENT *fragment = this->get_fragment(id);
if (fragment) {
return fragment->to_string();
}
const char* str = id_to_unichar(id);
STRING result = debug_utf8_str(str);
// Append a for lower alpha, A for upper alpha, and x if alpha but neither.
if (get_isalpha(id)) {
if (get_islower(id))
result += "a";
else if (get_isupper(id))
result += "A";
else
result += "x";
}
// Append 0 if a digit.
if (get_isdigit(id)) {
result += "0";
}
// Append p is a punctuation symbol.
if (get_ispunctuation(id)) {
result += "p";
}
return result;
}
// Sets the normed_ids vector from the normed string. normed_ids is not
// stored in the file, and needs to be set when the UNICHARSET is loaded.
void UNICHARSET::set_normed_ids(UNICHAR_ID unichar_id) {
unichars[unichar_id].properties.normed_ids.truncate(0);
int length = unichars[unichar_id].properties.normed.length();
const char* normed_str = unichars[unichar_id].properties.normed.string();
int step = 0;
for (int offset = 0; offset < length; offset+= step) {
step = normed_step(normed_str + offset);
if (step == 0) {
unichars[unichar_id].properties.normed_ids.truncate(0);
unichars[unichar_id].properties.normed_ids.push_back(unichar_id);
break;
}
int normed_id = unichar_to_id(normed_str + offset, step);
ASSERT_HOST(normed_id >= 0);
unichars[unichar_id].properties.normed_ids.push_back(normed_id);
}
}
// Returns whether the unichar id represents a unicode value in the private use
// area. We use this range only internally to represent uncommon ligatures
// (eg. 'ct') that do not have regular unicode values.
bool UNICHARSET::get_isprivate(UNICHAR_ID unichar_id) const {
UNICHAR uc(id_to_unichar(unichar_id), -1);
int uni = uc.first_uni();
return (uni >= 0xE000 && uni <= 0xF8FF);
}
// Sets all ranges to empty, so they can be expanded to set the values.
void UNICHARSET::set_ranges_empty() {
for (int id = 0; id < size_used; ++id) {
unichars[id].properties.SetRangesEmpty();
}
}
// Sets all the properties for this unicharset given a src unicharset with
// everything set. The unicharsets don't have to be the same, and graphemes
// are correctly accounted for.
void UNICHARSET::PartialSetPropertiesFromOther(int start_index,
const UNICHARSET& src) {
for (int ch = start_index; ch < size_used; ++ch) {
const char* utf8 = id_to_unichar(ch);
UNICHAR_PROPERTIES properties;
if (src.GetStrProperties(utf8, &properties)) {
// Setup the script_id, other_case, and mirror properly.
const char* script = src.get_script_from_script_id(properties.script_id);
properties.script_id = add_script(script);
const char* other_case = src.id_to_unichar(properties.other_case);
if (contains_unichar(other_case)) {
properties.other_case = unichar_to_id(other_case);
} else {
properties.other_case = ch;
}
const char* mirror_str = src.id_to_unichar(properties.mirror);
if (contains_unichar(mirror_str)) {
properties.mirror = unichar_to_id(mirror_str);
} else {
properties.mirror = ch;
}
unichars[ch].properties.CopyFrom(properties);
set_normed_ids(ch);
} else {
tprintf("Failed to get properties for index %d = %s\n", ch, utf8);
}
}
}
// Expands the tops and bottoms and widths for this unicharset given a
// src unicharset with ranges in it. The unicharsets don't have to be the
// same, and graphemes are correctly accounted for.
void UNICHARSET::ExpandRangesFromOther(const UNICHARSET& src) {
for (int ch = 0; ch < size_used; ++ch) {
const char* utf8 = id_to_unichar(ch);
UNICHAR_PROPERTIES properties;
if (src.GetStrProperties(utf8, &properties)) {
// Expand just the ranges from properties.
unichars[ch].properties.ExpandRangesFrom(properties);
}
}
}
// Makes this a copy of src. Clears this completely first, so the automatic
// ids will not be present in this if not in src. Does NOT reorder the set!
void UNICHARSET::CopyFrom(const UNICHARSET& src) {
clear();
for (int ch = 0; ch < src.size_used; ++ch) {
const UNICHAR_PROPERTIES& src_props = src.unichars[ch].properties;
const char* utf8 = src.id_to_unichar(ch);
unichar_insert(utf8);
unichars[ch].properties.ExpandRangesFrom(src_props);
}
// Set properties, including mirror and other_case, WITHOUT reordering
// the unicharset.
PartialSetPropertiesFromOther(0, src);
}
// For each id in src, if it does not occur in this, add it, as in
// SetPropertiesFromOther, otherwise expand the ranges, as in
// ExpandRangesFromOther.
void UNICHARSET::AppendOtherUnicharset(const UNICHARSET& src) {
int initial_used = size_used;
for (int ch = 0; ch < src.size_used; ++ch) {
const UNICHAR_PROPERTIES& src_props = src.unichars[ch].properties;
const char* utf8 = src.id_to_unichar(ch);
if (strcmp(utf8, " ") != 0 && src_props.AnyRangeEmpty()) {
// Only use fully valid entries.
tprintf("Bad properties for index %d, char %s: "
"%d,%d %d,%d %d,%d %d,%d %d,%d\n",
ch, utf8, src_props.min_bottom, src_props.max_bottom,
src_props.min_top, src_props.max_top,
src_props.min_width, src_props.max_width,
src_props.min_bearing, src_props.max_bearing,
src_props.min_advance, src_props.max_advance);
continue;
}
int id = size_used;
if (contains_unichar(utf8)) {
id = unichar_to_id(utf8);
// Just expand current ranges.
unichars[id].properties.ExpandRangesFrom(src_props);
} else {
unichar_insert(utf8);
unichars[id].properties.SetRangesEmpty();
}
}
// Set properties, including mirror and other_case, WITHOUT reordering
// the unicharset.
PartialSetPropertiesFromOther(initial_used, src);
}
// Returns true if the acceptable ranges of the tops of the characters do
// not overlap, making their x-height calculations distinct.
bool UNICHARSET::SizesDistinct(UNICHAR_ID id1, UNICHAR_ID id2) const {
int overlap = MIN(unichars[id1].properties.max_top,
unichars[id2].properties.max_top) -
MAX(unichars[id1].properties.min_top,
unichars[id2].properties.min_top);
return overlap <= 0;
}
// Internal recursive version of encode_string above.
// Seeks to encode the given string as a sequence of UNICHAR_IDs such that
// each UNICHAR_ID uses the least possible part of the utf8 str.
// It does this by depth-first tail recursion on increasing length matches
// to the UNICHARSET, saving the first encountered result that encodes the
// maximum total length of str. It stops on a failure to encode to make
// the overall process of encoding a partially failed string more efficient.
// See unicharset.h for definition of the args.
void UNICHARSET::encode_string(const char* str, int str_index, int str_length,
GenericVector<UNICHAR_ID>* encoding,
GenericVector<char>* lengths,
int* best_total_length,
GenericVector<UNICHAR_ID>* best_encoding,
GenericVector<char>* best_lengths) const {
if (str_index > *best_total_length) {
// This is the best result so far.
*best_total_length = str_index;
*best_encoding = *encoding;
if (best_lengths != NULL)
*best_lengths = *lengths;
}
if (str_index == str_length) return;
int encoding_index = encoding->size();
// Find the length of the first matching unicharset member.
int length = ids.minmatch(str + str_index);
if (length == 0 || str_index + length > str_length) return;
do {
if (ids.contains(str + str_index, length)) {
// Successful encoding so far.
UNICHAR_ID id = ids.unichar_to_id(str + str_index, length);
encoding->push_back(id);
lengths->push_back(length);
encode_string(str, str_index + length, str_length, encoding, lengths,
best_total_length, best_encoding, best_lengths);
if (*best_total_length == str_length)
return; // Tail recursion success!
// Failed with that length, truncate back and try again.
encoding->truncate(encoding_index);
lengths->truncate(encoding_index);
}
int step = UNICHAR::utf8_step(str + str_index + length);
if (step == 0) step = 1;
length += step;
} while (length <= UNICHAR_LEN && str_index + length <= str_length);
}
// Gets the properties for a grapheme string, combining properties for
// multiple characters in a meaningful way where possible.
// Returns false if no valid match was found in the unicharset.
// NOTE that script_id, mirror, and other_case refer to this unicharset on
// return and will need translation if the target unicharset is different.
bool UNICHARSET::GetStrProperties(const char* utf8_str,
UNICHAR_PROPERTIES* props) const {
props->Init();
props->SetRangesEmpty();
props->min_advance = 0;
props->max_advance = 0;
int total_unicodes = 0;
GenericVector<UNICHAR_ID> encoding;
if (!encode_string(utf8_str, true, &encoding, NULL, NULL))
return false; // Some part was invalid.
for (int i = 0; i < encoding.size(); ++i) {
int id = encoding[i];
const UNICHAR_PROPERTIES& src_props = unichars[id].properties;
// Logical OR all the bools.
if (src_props.isalpha) props->isalpha = true;
if (src_props.islower) props->islower = true;
if (src_props.isupper) props->isupper = true;
if (src_props.isdigit) props->isdigit = true;
if (src_props.ispunctuation) props->ispunctuation = true;
if (src_props.isngram) props->isngram = true;
if (src_props.enabled) props->enabled = true;
// Min/max the tops/bottoms.
UpdateRange(src_props.min_bottom, &props->min_bottom, &props->max_bottom);
UpdateRange(src_props.max_bottom, &props->min_bottom, &props->max_bottom);
UpdateRange(src_props.min_top, &props->min_top, &props->max_top);
UpdateRange(src_props.max_top, &props->min_top, &props->max_top);
int bearing = ClipToRange(props->min_advance + src_props.min_bearing,
-MAX_INT16, MAX_INT16);
if (total_unicodes == 0 || bearing < props->min_bearing)
props->min_bearing = bearing;
bearing = ClipToRange(props->max_advance + src_props.max_bearing,
-MAX_INT16, MAX_INT16);
if (total_unicodes == 0 || bearing < props->max_bearing)
props->max_bearing = bearing;
props->min_advance = ClipToRange(props->min_advance + src_props.min_advance,
-MAX_INT16, MAX_INT16);
props->max_advance = ClipToRange(props->max_advance + src_props.max_advance,
-MAX_INT16, MAX_INT16);
// With a single width, just use the widths stored in the unicharset.
props->min_width = src_props.min_width;
props->max_width = src_props.max_width;
// Use the first script id, other_case, mirror, direction.
// Note that these will need translation, except direction.
if (total_unicodes == 0) {
props->script_id = src_props.script_id;
props->other_case = src_props.other_case;
props->mirror = src_props.mirror;
props->direction = src_props.direction;
}
// The normed string for the compound character is the concatenation of
// the normed versions of the individual characters.
props->normed += src_props.normed;
++total_unicodes;
}
if (total_unicodes > 1) {
// Estimate the total widths from the advance - bearing.
props->min_width = ClipToRange(props->min_advance - props->max_bearing,
-MAX_INT16, MAX_INT16);
props->max_width = ClipToRange(props->max_advance - props->min_bearing,
-MAX_INT16, MAX_INT16);
}
return total_unicodes > 0;
}
// TODO(rays) clean-up the order of functions to match unicharset.h.
unsigned int UNICHARSET::get_properties(UNICHAR_ID id) const {
unsigned int properties = 0;
if (this->get_isalpha(id))
properties |= ISALPHA_MASK;
if (this->get_islower(id))
properties |= ISLOWER_MASK;
if (this->get_isupper(id))
properties |= ISUPPER_MASK;
if (this->get_isdigit(id))
properties |= ISDIGIT_MASK;
if (this->get_ispunctuation(id))
properties |= ISPUNCTUATION_MASK;
return properties;
}
char UNICHARSET::get_chartype(UNICHAR_ID id) const {
if (this->get_isupper(id)) return 'A';
if (this->get_islower(id)) return 'a';
if (this->get_isalpha(id)) return 'x';
if (this->get_isdigit(id)) return '0';
if (this->get_ispunctuation(id)) return 'p';
return 0;
}
void UNICHARSET::unichar_insert(const char* const unichar_repr) {
if (!ids.contains(unichar_repr)) {
if (strlen(unichar_repr) > UNICHAR_LEN) {
fprintf(stderr, "Utf8 buffer too big, size=%d for %s\n",
int(strlen(unichar_repr)), unichar_repr);
return;
}
if (size_used == size_reserved) {
if (size_used == 0)
reserve(8);
else
reserve(2 * size_used);
}
strcpy(unichars[size_used].representation, unichar_repr);
this->set_script(size_used, null_script);
// If the given unichar_repr represents a fragmented character, set
// fragment property to a pointer to CHAR_FRAGMENT class instance with
// information parsed from the unichar representation. Use the script
// of the base unichar for the fragmented character if possible.
CHAR_FRAGMENT *frag = CHAR_FRAGMENT::parse_from_string(unichar_repr);
this->unichars[size_used].properties.fragment = frag;
if (frag != NULL && this->contains_unichar(frag->get_unichar())) {
this->unichars[size_used].properties.script_id =
this->get_script(frag->get_unichar());
}
this->unichars[size_used].properties.enabled = true;
ids.insert(unichar_repr, size_used);
++size_used;
}
}
bool UNICHARSET::contains_unichar(const char* const unichar_repr) const {
return ids.contains(unichar_repr);
}
bool UNICHARSET::contains_unichar(const char* const unichar_repr,
int length) const {
if (length == 0) {
return false;
}
return ids.contains(unichar_repr, length);
}
bool UNICHARSET::eq(UNICHAR_ID unichar_id,
const char* const unichar_repr) const {
return strcmp(this->id_to_unichar(unichar_id), unichar_repr) == 0;
}
bool UNICHARSET::save_to_string(STRING *str) const {
const int kFileBufSize = 1024;
char buffer[kFileBufSize + 1];
snprintf(buffer, kFileBufSize, "%d\n", this->size());
*str = buffer;
for (UNICHAR_ID id = 0; id < this->size(); ++id) {
int min_bottom, max_bottom, min_top, max_top;
get_top_bottom(id, &min_bottom, &max_bottom, &min_top, &max_top);
int min_width, max_width;
get_width_range(id, &min_width, &max_width);
int min_bearing, max_bearing;
get_bearing_range(id, &min_bearing, &max_bearing);
int min_advance, max_advance;
get_advance_range(id, &min_advance, &max_advance);
unsigned int properties = this->get_properties(id);
if (strcmp(this->id_to_unichar(id), " ") == 0) {
snprintf(buffer, kFileBufSize, "%s %x %s %d\n", "NULL", properties,
this->get_script_from_script_id(this->get_script(id)),
this->get_other_case(id));
} else {
snprintf(buffer, kFileBufSize,
"%s %x %d,%d,%d,%d,%d,%d,%d,%d,%d,%d %s %d %d %d %s\t# %s\n",
this->id_to_unichar(id), properties,
min_bottom, max_bottom, min_top, max_top, min_width, max_width,
min_bearing, max_bearing, min_advance, max_advance,
this->get_script_from_script_id(this->get_script(id)),
this->get_other_case(id), this->get_direction(id),
this->get_mirror(id), this->get_normed_unichar(id),
this->debug_str(id).string());
}
*str += buffer;
}
return true;
}
// TODO(rays) Replace with TFile everywhere.
class InMemoryFilePointer {
public:
InMemoryFilePointer(const char *memory, int mem_size)
: memory_(memory), fgets_ptr_(memory), mem_size_(mem_size) { }
char *fgets(char *orig_dst, int size) {
const char *src_end = memory_ + mem_size_;
char *dst_end = orig_dst + size - 1;
if (size < 1) {
return fgets_ptr_ < src_end ? orig_dst : NULL;
}
char *dst = orig_dst;
char ch = '^';
while (fgets_ptr_ < src_end && dst < dst_end && ch != '\n') {
ch = *dst++ = *fgets_ptr_++;
}
*dst = 0;
return (dst == orig_dst) ? NULL : orig_dst;
}
private:
const char *memory_;
const char *fgets_ptr_;
const int mem_size_;
};
bool UNICHARSET::load_from_inmemory_file(
const char *memory, int mem_size, bool skip_fragments) {
InMemoryFilePointer mem_fp(memory, mem_size);
TessResultCallback2<char *, char *, int> *fgets_cb =
NewPermanentTessCallback(&mem_fp, &InMemoryFilePointer::fgets);
bool success = load_via_fgets(fgets_cb, skip_fragments);
delete fgets_cb;
return success;
}
class LocalFilePointer {
public:
LocalFilePointer(FILE *stream) : fp_(stream) {}
char *fgets(char *dst, int size) {
return ::fgets(dst, size, fp_);
}
private:
FILE *fp_;
};
bool UNICHARSET::load_from_file(FILE *file, bool skip_fragments) {
LocalFilePointer lfp(file);
TessResultCallback2<char *, char *, int> *fgets_cb =
NewPermanentTessCallback(&lfp, &LocalFilePointer::fgets);
bool success = load_via_fgets(fgets_cb, skip_fragments);
delete fgets_cb;
return success;
}
bool UNICHARSET::load_from_file(tesseract::TFile *file, bool skip_fragments) {
TessResultCallback2<char *, char *, int> *fgets_cb =
NewPermanentTessCallback(file, &tesseract::TFile::FGets);
bool success = load_via_fgets(fgets_cb, skip_fragments);
delete fgets_cb;
return success;
}
bool UNICHARSET::load_via_fgets(
TessResultCallback2<char *, char *, int> *fgets_cb,
bool skip_fragments) {
int unicharset_size;
char buffer[256];
this->clear();
if (fgets_cb->Run(buffer, sizeof(buffer)) == NULL ||
sscanf(buffer, "%d", &unicharset_size) != 1) {
return false;
}
this->reserve(unicharset_size);
for (UNICHAR_ID id = 0; id < unicharset_size; ++id) {
char unichar[256];
unsigned int properties;
char script[64];
strcpy(script, null_script);
int min_bottom = 0;
int max_bottom = MAX_UINT8;
int min_top = 0;
int max_top = MAX_UINT8;
int min_width = 0;
int max_width = MAX_INT16;
int min_bearing = 0;
int max_bearing = MAX_INT16;
int min_advance = 0;
int max_advance = MAX_INT16;
// TODO(eger): check that this default it ok
// after enabling BiDi iterator for Arabic+Cube.
int direction = UNICHARSET::U_LEFT_TO_RIGHT;
UNICHAR_ID other_case = id;
UNICHAR_ID mirror = id;
char normed[64];
int v = -1;
if (fgets_cb->Run(buffer, sizeof (buffer)) == NULL ||
((v = sscanf(buffer,
"%s %x %d,%d,%d,%d,%d,%d,%d,%d,%d,%d %63s %d %d %d %63s",
unichar, &properties,
&min_bottom, &max_bottom, &min_top, &max_top,
&min_width, &max_width, &min_bearing, &max_bearing,
&min_advance, &max_advance, script, &other_case,
&direction, &mirror, normed)) != 17 &&
(v = sscanf(buffer,
"%s %x %d,%d,%d,%d,%d,%d,%d,%d,%d,%d %63s %d %d %d",
unichar, &properties,
&min_bottom, &max_bottom, &min_top, &max_top,
&min_width, &max_width, &min_bearing, &max_bearing,
&min_advance, &max_advance,
script, &other_case, &direction, &mirror)) != 16 &&
(v = sscanf(buffer, "%s %x %d,%d,%d,%d %63s %d %d %d",
unichar, &properties,
&min_bottom, &max_bottom, &min_top, &max_top,
script, &other_case, &direction, &mirror)) != 10 &&
(v = sscanf(buffer, "%s %x %d,%d,%d,%d %63s %d", unichar, &properties,
&min_bottom, &max_bottom, &min_top, &max_top,
script, &other_case)) != 8 &&
(v = sscanf(buffer, "%s %x %63s %d", unichar, &properties,
script, &other_case)) != 4 &&
(v = sscanf(buffer, "%s %x %63s",
unichar, &properties, script)) != 3 &&
(v = sscanf(buffer, "%s %x", unichar, &properties)) != 2)) {
return false;
}
// Skip fragments if needed.
CHAR_FRAGMENT *frag = NULL;
if (skip_fragments && (frag = CHAR_FRAGMENT::parse_from_string(unichar))) {
int num_pieces = frag->get_total();
delete frag;
// Skip multi-element fragments, but keep singles like UNICHAR_BROKEN in.
if (num_pieces > 1)
continue;
}
// Insert unichar into unicharset and set its properties.
if (strcmp(unichar, "NULL") == 0)
this->unichar_insert(" ");
else
this->unichar_insert(unichar);
this->set_isalpha(id, properties & ISALPHA_MASK);
this->set_islower(id, properties & ISLOWER_MASK);
this->set_isupper(id, properties & ISUPPER_MASK);
this->set_isdigit(id, properties & ISDIGIT_MASK);
this->set_ispunctuation(id, properties & ISPUNCTUATION_MASK);
this->set_isngram(id, false);
this->set_script(id, script);
this->unichars[id].properties.enabled = true;
this->set_top_bottom(id, min_bottom, max_bottom, min_top, max_top);
this->set_width_range(id, min_width, max_width);
this->set_bearing_range(id, min_bearing, max_bearing);
this->set_advance_range(id, min_advance, max_advance);
this->set_direction(id, static_cast<UNICHARSET::Direction>(direction));
ASSERT_HOST(other_case < unicharset_size);
this->set_other_case(id, (v>3) ? other_case : id);
ASSERT_HOST(mirror < unicharset_size);
this->set_mirror(id, (v>8) ? mirror : id);
this->set_normed(id, (v>16) ? normed : unichar);
}
post_load_setup();
return true;
}
// Sets up internal data after loading the file, based on the char
// properties. Called from load_from_file, but also needs to be run
// during set_unicharset_properties.
void UNICHARSET::post_load_setup() {
// Number of alpha chars with the case property minus those without,
// in order to determine that half the alpha chars have case.
int net_case_alphas = 0;
int x_height_alphas = 0;
int cap_height_alphas = 0;
top_bottom_set_ = false;
for (UNICHAR_ID id = 0; id < size_used; ++id) {
int min_bottom = 0;
int max_bottom = MAX_UINT8;
int min_top = 0;
int max_top = MAX_UINT8;
get_top_bottom(id, &min_bottom, &max_bottom, &min_top, &max_top);
if (min_top > 0)
top_bottom_set_ = true;
if (get_isalpha(id)) {
if (get_islower(id) || get_isupper(id))
++net_case_alphas;
else
--net_case_alphas;
if (min_top < kMeanlineThreshold && max_top < kMeanlineThreshold)
++x_height_alphas;
else if (min_top > kMeanlineThreshold && max_top > kMeanlineThreshold)
++cap_height_alphas;
}
set_normed_ids(id);
}
script_has_upper_lower_ = net_case_alphas > 0;
script_has_xheight_ = script_has_upper_lower_ ||
(x_height_alphas > cap_height_alphas * kMinXHeightFraction &&
cap_height_alphas > x_height_alphas * kMinCapHeightFraction);
null_sid_ = get_script_id_from_name(null_script);
ASSERT_HOST(null_sid_ == 0);
common_sid_ = get_script_id_from_name("Common");
latin_sid_ = get_script_id_from_name("Latin");
cyrillic_sid_ = get_script_id_from_name("Cyrillic");
greek_sid_ = get_script_id_from_name("Greek");
han_sid_ = get_script_id_from_name("Han");
hiragana_sid_ = get_script_id_from_name("Hiragana");
katakana_sid_ = get_script_id_from_name("Katakana");
// Compute default script. Use the highest-counting alpha script, that is
// not the common script, as that still contains some "alphas".
int* script_counts = new int[script_table_size_used];
memset(script_counts, 0, sizeof(*script_counts) * script_table_size_used);
for (int id = 0; id < size_used; ++id) {
if (get_isalpha(id)) {
++script_counts[get_script(id)];
}
}
default_sid_ = 0;
for (int s = 1; s < script_table_size_used; ++s) {
if (script_counts[s] > script_counts[default_sid_] && s != common_sid_)
default_sid_ = s;
}
delete [] script_counts;
}
// Returns true if right_to_left scripts are significant in the unicharset,
// but without being so sensitive that "universal" unicharsets containing
// characters from many scripts, like orientation and script detection,
// look like they are right_to_left.
bool UNICHARSET::major_right_to_left() const {
int ltr_count = 0;
int rtl_count = 0;
for (int id = 0; id < size_used; ++id) {
int dir = get_direction(id);
if (dir == UNICHARSET::U_LEFT_TO_RIGHT) ltr_count++;
if (dir == UNICHARSET::U_RIGHT_TO_LEFT ||
dir == UNICHARSET::U_RIGHT_TO_LEFT_ARABIC ||
dir == UNICHARSET::U_ARABIC_NUMBER) rtl_count++;
}
return rtl_count > ltr_count;
}
// Set a whitelist and/or blacklist of characters to recognize.
// An empty or NULL whitelist enables everything (minus any blacklist).
// An empty or NULL blacklist disables nothing.
// An empty or NULL blacklist has no effect.
void UNICHARSET::set_black_and_whitelist(const char* blacklist,
const char* whitelist,
const char* unblacklist) {
bool def_enabled = whitelist == NULL || whitelist[0] == '\0';
// Set everything to default
for (int ch = 0; ch < size_used; ++ch)
unichars[ch].properties.enabled = def_enabled;
if (!def_enabled) {
// Enable the whitelist.
GenericVector<UNICHAR_ID> encoding;
encode_string(whitelist, false, &encoding, NULL, NULL);
for (int i = 0; i < encoding.size(); ++i) {
if (encoding[i] != INVALID_UNICHAR_ID)
unichars[encoding[i]].properties.enabled = true;
}
}
if (blacklist != NULL && blacklist[0] != '\0') {
// Disable the blacklist.
GenericVector<UNICHAR_ID> encoding;
encode_string(blacklist, false, &encoding, NULL, NULL);
for (int i = 0; i < encoding.size(); ++i) {
if (encoding[i] != INVALID_UNICHAR_ID)
unichars[encoding[i]].properties.enabled = false;
}
}
if (unblacklist != NULL && unblacklist[0] != '\0') {
// Re-enable the unblacklist.
GenericVector<UNICHAR_ID> encoding;
encode_string(unblacklist, false, &encoding, NULL, NULL);
for (int i = 0; i < encoding.size(); ++i) {
if (encoding[i] != INVALID_UNICHAR_ID)
unichars[encoding[i]].properties.enabled = true;
}
}
}
int UNICHARSET::add_script(const char* script) {
for (int i = 0; i < script_table_size_used; ++i) {
if (strcmp(script, script_table[i]) == 0)
return i;
}
if (script_table_size_reserved == 0) {
script_table_size_reserved = 8;
script_table = new char*[script_table_size_reserved];
}
if (script_table_size_used + 1 >= script_table_size_reserved) {
char** new_script_table = new char*[script_table_size_reserved * 2];
memcpy(new_script_table, script_table, script_table_size_reserved * sizeof(char*));
delete[] script_table;
script_table = new_script_table;
script_table_size_reserved = 2 * script_table_size_reserved;
}
script_table[script_table_size_used] = new char[strlen(script) + 1];
strcpy(script_table[script_table_size_used], script);
return script_table_size_used++;
}
// Returns the string that represents a fragment
// with the given unichar, pos and total.
STRING CHAR_FRAGMENT::to_string(const char *unichar, int pos, int total,
bool natural) {
if (total == 1) return STRING(unichar);
STRING result = "";
result += kSeparator;
result += unichar;
char buffer[kMaxLen];
snprintf(buffer, kMaxLen, "%c%d%c%d", kSeparator, pos,
natural ? kNaturalFlag : kSeparator, total);
result += buffer;
return result;
}
CHAR_FRAGMENT *CHAR_FRAGMENT::parse_from_string(const char *string) {
const char *ptr = string;
int len = strlen(string);
if (len < kMinLen || *ptr != kSeparator) {
return NULL; // this string can not represent a fragment
}
ptr++; // move to the next character
int step = 0;
while ((ptr + step) < (string + len) && *(ptr + step) != kSeparator) {
step += UNICHAR::utf8_step(ptr + step);
}
if (step == 0 || step > UNICHAR_LEN) {
return NULL; // no character for unichar or the character is too long
}
char unichar[UNICHAR_LEN + 1];
strncpy(unichar, ptr, step);
unichar[step] = '\0'; // null terminate unichar
ptr += step; // move to the next fragment separator
int pos = 0;
int total = 0;
bool natural = false;
char *end_ptr = NULL;
for (int i = 0; i < 2; i++) {
if (ptr > string + len || *ptr != kSeparator) {
if (i == 1 && *ptr == kNaturalFlag)
natural = true;
else
return NULL; // Failed to parse fragment representation.
}
ptr++; // move to the next character
i == 0 ? pos = static_cast<int>(strtol(ptr, &end_ptr, 10))
: total = static_cast<int>(strtol(ptr, &end_ptr, 10));
ptr = end_ptr;
}
if (ptr != string + len) {
return NULL; // malformed fragment representation
}
CHAR_FRAGMENT *fragment = new CHAR_FRAGMENT();
fragment->set_all(unichar, pos, total, natural);
return fragment;
}
int UNICHARSET::get_script_id_from_name(const char* script_name) const {
for (int i = 0; i < script_table_size_used; ++i) {
if (strcmp(script_name, script_table[i]) == 0)
return i;
}
return 0; // 0 is always the null_script
}
| 1080228-arabicocr11 | ccutil/unicharset.cpp | C++ | asf20 | 41,668 |
///////////////////////////////////////////////////////////////////////
// File: ambigs.cc
// Description: Functions for dealing with ambiguities
// (training and recognition).
// Author: Daria Antonova
// Created: Mon Feb 5 11:26:43 PDT 2009
//
// (C) Copyright 2008, Google Inc.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
///////////////////////////////////////////////////////////////////////
#include "ambigs.h"
#include <stdio.h>
#include "helpers.h"
#include "universalambigs.h"
#if defined _WIN32 || defined(__CYGWIN__)
#ifndef __GNUC__
#define strtok_r strtok_s
#else
#include "strtok_r.h"
#endif /* __GNUC__ */
#endif /* _WIN32 __CYGWIN__*/
namespace tesseract {
// Maximum line size:
// 10 for sizes of ambigs, tabs, abmig type and newline
// UNICHAR_LEN * (MAX_AMBIG_SIZE + 1) for each part of the ambig
const int kMaxAmbigStringSize = UNICHAR_LEN * (MAX_AMBIG_SIZE + 1);
AmbigSpec::AmbigSpec() {
wrong_ngram[0] = INVALID_UNICHAR_ID;
correct_fragments[0] = INVALID_UNICHAR_ID;
correct_ngram_id = INVALID_UNICHAR_ID;
type = NOT_AMBIG;
wrong_ngram_size = 0;
}
ELISTIZE(AmbigSpec);
// Initializes the ambigs by adding a NULL pointer to each table.
void UnicharAmbigs::InitUnicharAmbigs(const UNICHARSET& unicharset,
bool use_ambigs_for_adaption) {
for (int i = 0; i < unicharset.size(); ++i) {
replace_ambigs_.push_back(NULL);
dang_ambigs_.push_back(NULL);
one_to_one_definite_ambigs_.push_back(NULL);
if (use_ambigs_for_adaption) {
ambigs_for_adaption_.push_back(NULL);
reverse_ambigs_for_adaption_.push_back(NULL);
}
}
}
// Loads the universal ambigs that are useful for any language.
void UnicharAmbigs::LoadUniversal(const UNICHARSET& encoder_set,
UNICHARSET* unicharset) {
TFile file;
if (!file.Open(kUniversalAmbigsFile, ksizeofUniversalAmbigsFile)) return;
LoadUnicharAmbigs(encoder_set, &file, 0, false, unicharset);
}
void UnicharAmbigs::LoadUnicharAmbigs(const UNICHARSET& encoder_set,
TFile *ambig_file,
int debug_level,
bool use_ambigs_for_adaption,
UNICHARSET *unicharset) {
int i, j;
UnicharIdVector *adaption_ambigs_entry;
if (debug_level) tprintf("Reading ambiguities\n");
int test_ambig_part_size;
int replacement_ambig_part_size;
// The space for buffer is allocated on the heap to avoid
// GCC frame size warning.
const int kBufferSize = 10 + 2 * kMaxAmbigStringSize;
char *buffer = new char[kBufferSize];
char replacement_string[kMaxAmbigStringSize];
UNICHAR_ID test_unichar_ids[MAX_AMBIG_SIZE + 1];
int line_num = 0;
int type = NOT_AMBIG;
// Determine the version of the ambigs file.
int version = 0;
ASSERT_HOST(ambig_file->FGets(buffer, kBufferSize) != NULL &&
strlen(buffer) > 0);
if (*buffer == 'v') {
version = static_cast<int>(strtol(buffer+1, NULL, 10));
++line_num;
} else {
ambig_file->Rewind();
}
while (ambig_file->FGets(buffer, kBufferSize) != NULL) {
chomp_string(buffer);
if (debug_level > 2) tprintf("read line %s\n", buffer);
++line_num;
if (!ParseAmbiguityLine(line_num, version, debug_level, encoder_set,
buffer, &test_ambig_part_size, test_unichar_ids,
&replacement_ambig_part_size,
replacement_string, &type)) continue;
// Construct AmbigSpec and add it to the appropriate AmbigSpec_LIST.
AmbigSpec *ambig_spec = new AmbigSpec();
if (!InsertIntoTable((type == REPLACE_AMBIG) ? replace_ambigs_
: dang_ambigs_,
test_ambig_part_size, test_unichar_ids,
replacement_ambig_part_size, replacement_string, type,
ambig_spec, unicharset))
continue;
// Update one_to_one_definite_ambigs_.
if (test_ambig_part_size == 1 &&
replacement_ambig_part_size == 1 && type == DEFINITE_AMBIG) {
if (one_to_one_definite_ambigs_[test_unichar_ids[0]] == NULL) {
one_to_one_definite_ambigs_[test_unichar_ids[0]] = new UnicharIdVector();
}
one_to_one_definite_ambigs_[test_unichar_ids[0]]->push_back(
ambig_spec->correct_ngram_id);
}
// Update ambigs_for_adaption_.
if (use_ambigs_for_adaption) {
GenericVector<UNICHAR_ID> encoding;
// Silently ignore invalid strings, as before, so it is safe to use a
// universal ambigs file.
if (unicharset->encode_string(replacement_string, true, &encoding,
NULL, NULL)) {
for (i = 0; i < test_ambig_part_size; ++i) {
if (ambigs_for_adaption_[test_unichar_ids[i]] == NULL) {
ambigs_for_adaption_[test_unichar_ids[i]] = new UnicharIdVector();
}
adaption_ambigs_entry = ambigs_for_adaption_[test_unichar_ids[i]];
for (int r = 0; r < encoding.size(); ++r) {
UNICHAR_ID id_to_insert = encoding[r];
ASSERT_HOST(id_to_insert != INVALID_UNICHAR_ID);
// Add the new unichar id to adaption_ambigs_entry (only if the
// vector does not already contain it) keeping it in sorted order.
for (j = 0; j < adaption_ambigs_entry->size() &&
(*adaption_ambigs_entry)[j] > id_to_insert; ++j);
if (j < adaption_ambigs_entry->size()) {
if ((*adaption_ambigs_entry)[j] != id_to_insert) {
adaption_ambigs_entry->insert(id_to_insert, j);
}
} else {
adaption_ambigs_entry->push_back(id_to_insert);
}
}
}
}
}
}
delete[] buffer;
// Fill in reverse_ambigs_for_adaption from ambigs_for_adaption vector.
if (use_ambigs_for_adaption) {
for (i = 0; i < ambigs_for_adaption_.size(); ++i) {
adaption_ambigs_entry = ambigs_for_adaption_[i];
if (adaption_ambigs_entry == NULL) continue;
for (j = 0; j < adaption_ambigs_entry->size(); ++j) {
UNICHAR_ID ambig_id = (*adaption_ambigs_entry)[j];
if (reverse_ambigs_for_adaption_[ambig_id] == NULL) {
reverse_ambigs_for_adaption_[ambig_id] = new UnicharIdVector();
}
reverse_ambigs_for_adaption_[ambig_id]->push_back(i);
}
}
}
// Print what was read from the input file.
if (debug_level > 1) {
for (int tbl = 0; tbl < 2; ++tbl) {
const UnicharAmbigsVector &print_table =
(tbl == 0) ? replace_ambigs_ : dang_ambigs_;
for (i = 0; i < print_table.size(); ++i) {
AmbigSpec_LIST *lst = print_table[i];
if (lst == NULL) continue;
if (!lst->empty()) {
tprintf("%s Ambiguities for %s:\n",
(tbl == 0) ? "Replaceable" : "Dangerous",
unicharset->debug_str(i).string());
}
AmbigSpec_IT lst_it(lst);
for (lst_it.mark_cycle_pt(); !lst_it.cycled_list(); lst_it.forward()) {
AmbigSpec *ambig_spec = lst_it.data();
tprintf("wrong_ngram:");
UnicharIdArrayUtils::print(ambig_spec->wrong_ngram, *unicharset);
tprintf("correct_fragments:");
UnicharIdArrayUtils::print(ambig_spec->correct_fragments, *unicharset);
}
}
}
if (use_ambigs_for_adaption) {
for (int vec_id = 0; vec_id < 2; ++vec_id) {
const GenericVector<UnicharIdVector *> &vec = (vec_id == 0) ?
ambigs_for_adaption_ : reverse_ambigs_for_adaption_;
for (i = 0; i < vec.size(); ++i) {
adaption_ambigs_entry = vec[i];
if (adaption_ambigs_entry != NULL) {
tprintf("%sAmbigs for adaption for %s:\n",
(vec_id == 0) ? "" : "Reverse ",
unicharset->debug_str(i).string());
for (j = 0; j < adaption_ambigs_entry->size(); ++j) {
tprintf("%s ", unicharset->debug_str(
(*adaption_ambigs_entry)[j]).string());
}
tprintf("\n");
}
}
}
}
}
}
bool UnicharAmbigs::ParseAmbiguityLine(
int line_num, int version, int debug_level, const UNICHARSET &unicharset,
char *buffer, int *test_ambig_part_size, UNICHAR_ID *test_unichar_ids,
int *replacement_ambig_part_size, char *replacement_string, int *type) {
if (version > 1) {
// Simpler format is just wrong-string correct-string type\n.
STRING input(buffer);
GenericVector<STRING> fields;
input.split(' ', &fields);
if (fields.size() != 3) {
if (debug_level) tprintf(kIllegalMsg, line_num);
return false;
}
// Encode wrong-string.
GenericVector<UNICHAR_ID> unichars;
if (!unicharset.encode_string(fields[0].string(), true, &unichars, NULL,
NULL)) {
return false;
}
*test_ambig_part_size = unichars.size();
if (*test_ambig_part_size > MAX_AMBIG_SIZE) {
if (debug_level)
tprintf("Too many unichars in ambiguity on line %d\n", line_num);
return false;
}
// Copy encoded string to output.
for (int i = 0; i < unichars.size(); ++i)
test_unichar_ids[i] = unichars[i];
test_unichar_ids[unichars.size()] = INVALID_UNICHAR_ID;
// Encode replacement-string to check validity.
if (!unicharset.encode_string(fields[1].string(), true, &unichars, NULL,
NULL)) {
return false;
}
*replacement_ambig_part_size = unichars.size();
if (*replacement_ambig_part_size > MAX_AMBIG_SIZE) {
if (debug_level)
tprintf("Too many unichars in ambiguity on line %d\n", line_num);
return false;
}
if (sscanf(fields[2].string(), "%d", type) != 1) {
if (debug_level) tprintf(kIllegalMsg, line_num);
return false;
}
snprintf(replacement_string, kMaxAmbigStringSize, "%s", fields[1].string());
return true;
}
int i;
char *token;
char *next_token;
if (!(token = strtok_r(buffer, kAmbigDelimiters, &next_token)) ||
!sscanf(token, "%d", test_ambig_part_size) ||
*test_ambig_part_size <= 0) {
if (debug_level) tprintf(kIllegalMsg, line_num);
return false;
}
if (*test_ambig_part_size > MAX_AMBIG_SIZE) {
if (debug_level)
tprintf("Too many unichars in ambiguity on line %d\n", line_num);
return false;
}
for (i = 0; i < *test_ambig_part_size; ++i) {
if (!(token = strtok_r(NULL, kAmbigDelimiters, &next_token))) break;
if (!unicharset.contains_unichar(token)) {
if (debug_level) tprintf(kIllegalUnicharMsg, token);
break;
}
test_unichar_ids[i] = unicharset.unichar_to_id(token);
}
test_unichar_ids[i] = INVALID_UNICHAR_ID;
if (i != *test_ambig_part_size ||
!(token = strtok_r(NULL, kAmbigDelimiters, &next_token)) ||
!sscanf(token, "%d", replacement_ambig_part_size) ||
*replacement_ambig_part_size <= 0) {
if (debug_level) tprintf(kIllegalMsg, line_num);
return false;
}
if (*replacement_ambig_part_size > MAX_AMBIG_SIZE) {
if (debug_level)
tprintf("Too many unichars in ambiguity on line %d\n", line_num);
return false;
}
replacement_string[0] = '\0';
for (i = 0; i < *replacement_ambig_part_size; ++i) {
if (!(token = strtok_r(NULL, kAmbigDelimiters, &next_token))) break;
strcat(replacement_string, token);
if (!unicharset.contains_unichar(token)) {
if (debug_level) tprintf(kIllegalUnicharMsg, token);
break;
}
}
if (i != *replacement_ambig_part_size) {
if (debug_level) tprintf(kIllegalMsg, line_num);
return false;
}
if (version > 0) {
// The next field being true indicates that the abiguity should
// always be substituted (e.g. '' should always be changed to ").
// For such "certain" n -> m ambigs tesseract will insert character
// fragments for the n pieces in the unicharset. AmbigsFound()
// will then replace the incorrect ngram with the character
// fragments of the correct character (or ngram if m > 1).
// Note that if m > 1, an ngram will be inserted into the
// modified word, not the individual unigrams. Tesseract
// has limited support for ngram unichar (e.g. dawg permuter).
if (!(token = strtok_r(NULL, kAmbigDelimiters, &next_token)) ||
!sscanf(token, "%d", type)) {
if (debug_level) tprintf(kIllegalMsg, line_num);
return false;
}
}
return true;
}
bool UnicharAmbigs::InsertIntoTable(
UnicharAmbigsVector &table, int test_ambig_part_size,
UNICHAR_ID *test_unichar_ids, int replacement_ambig_part_size,
const char *replacement_string, int type,
AmbigSpec *ambig_spec, UNICHARSET *unicharset) {
ambig_spec->type = static_cast<AmbigType>(type);
if (test_ambig_part_size == 1 && replacement_ambig_part_size == 1 &&
unicharset->to_lower(test_unichar_ids[0]) ==
unicharset->to_lower(unicharset->unichar_to_id(replacement_string))) {
ambig_spec->type = CASE_AMBIG;
}
ambig_spec->wrong_ngram_size =
UnicharIdArrayUtils::copy(test_unichar_ids, ambig_spec->wrong_ngram);
// Since we need to maintain a constant number of unichar positions in
// order to construct ambig_blob_choices vector in NoDangerousAmbig(), for
// each n->m ambiguity we will have to place n character fragments of the
// correct ngram into the corresponding positions in the vector (e.g. given
// "vvvvw" and vvvv->ww we will place v and |ww|0|4 into position 0, v and
// |ww|1|4 into position 1 and so on. The correct ngram is reconstructed
// from fragments by dawg_permute_and_select().
// Insert the corresponding correct ngram into the unicharset.
// Unicharset code assumes that the "base" ngram is inserted into
// the unicharset before fragments of this ngram are inserted.
unicharset->unichar_insert(replacement_string);
ambig_spec->correct_ngram_id =
unicharset->unichar_to_id(replacement_string);
if (replacement_ambig_part_size > 1) {
unicharset->set_isngram(ambig_spec->correct_ngram_id, true);
}
// Add the corresponding fragments of the wrong ngram to unicharset.
int i;
for (i = 0; i < test_ambig_part_size; ++i) {
UNICHAR_ID unichar_id;
if (test_ambig_part_size == 1) {
unichar_id = ambig_spec->correct_ngram_id;
} else {
STRING frag_str = CHAR_FRAGMENT::to_string(
replacement_string, i, test_ambig_part_size, false);
unicharset->unichar_insert(frag_str.string());
unichar_id = unicharset->unichar_to_id(frag_str.string());
}
ambig_spec->correct_fragments[i] = unichar_id;
}
ambig_spec->correct_fragments[i] = INVALID_UNICHAR_ID;
// Add AmbigSpec for this ambiguity to the corresponding AmbigSpec_LIST.
// Keep AmbigSpec_LISTs sorted by AmbigSpec.wrong_ngram.
if (table[test_unichar_ids[0]] == NULL) {
table[test_unichar_ids[0]] = new AmbigSpec_LIST();
}
if (table[test_unichar_ids[0]]->add_sorted(
AmbigSpec::compare_ambig_specs, true, ambig_spec))
return true;
delete ambig_spec;
return false;
}
} // namespace tesseract
| 1080228-arabicocr11 | ccutil/ambigs.cpp | C++ | asf20 | 15,730 |
///////////////////////////////////////////////////////////////////////
// File: unichar.cpp
// Description: Unicode character/ligature class.
// Author: Ray Smith
// Created: Wed Jun 28 17:05:01 PDT 2006
//
// (C) Copyright 2006, Google Inc.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
///////////////////////////////////////////////////////////////////////
#include "unichar.h"
#include "errcode.h"
#include "genericvector.h"
#include "tprintf.h"
#define UNI_MAX_LEGAL_UTF32 0x0010FFFF
// Construct from a utf8 string. If len<0 then the string is null terminated.
// If the string is too long to fit in the UNICHAR then it takes only what
// will fit. Checks for illegal input and stops at an illegal sequence.
// The resulting UNICHAR may be empty.
UNICHAR::UNICHAR(const char* utf8_str, int len) {
int total_len = 0;
int step = 0;
if (len < 0) {
for (len = 0; len < UNICHAR_LEN && utf8_str[len] != 0; ++len);
}
for (total_len = 0; total_len < len; total_len += step) {
step = utf8_step(utf8_str + total_len);
if (total_len + step > UNICHAR_LEN)
break; // Too long.
if (step == 0)
break; // Illegal first byte.
int i;
for (i = 1; i < step; ++i)
if ((utf8_str[total_len + i] & 0xc0) != 0x80)
break;
if (i < step)
break; // Illegal surrogate
}
memcpy(chars, utf8_str, total_len);
if (total_len < UNICHAR_LEN) {
chars[UNICHAR_LEN - 1] = total_len;
while (total_len < UNICHAR_LEN - 1)
chars[total_len++] = 0;
}
}
// Construct from a single UCS4 character. Illegal values are ignored,
// resulting in an empty UNICHAR.
UNICHAR::UNICHAR(int unicode) {
const int bytemask = 0xBF;
const int bytemark = 0x80;
if (unicode < 0x80) {
chars[UNICHAR_LEN - 1] = 1;
chars[2] = 0;
chars[1] = 0;
chars[0] = static_cast<char>(unicode);
} else if (unicode < 0x800) {
chars[UNICHAR_LEN - 1] = 2;
chars[2] = 0;
chars[1] = static_cast<char>((unicode | bytemark) & bytemask);
unicode >>= 6;
chars[0] = static_cast<char>(unicode | 0xc0);
} else if (unicode < 0x10000) {
chars[UNICHAR_LEN - 1] = 3;
chars[2] = static_cast<char>((unicode | bytemark) & bytemask);
unicode >>= 6;
chars[1] = static_cast<char>((unicode | bytemark) & bytemask);
unicode >>= 6;
chars[0] = static_cast<char>(unicode | 0xe0);
} else if (unicode <= UNI_MAX_LEGAL_UTF32) {
chars[UNICHAR_LEN - 1] = 4;
chars[3] = static_cast<char>((unicode | bytemark) & bytemask);
unicode >>= 6;
chars[2] = static_cast<char>((unicode | bytemark) & bytemask);
unicode >>= 6;
chars[1] = static_cast<char>((unicode | bytemark) & bytemask);
unicode >>= 6;
chars[0] = static_cast<char>(unicode | 0xf0);
} else {
memset(chars, 0, UNICHAR_LEN);
}
}
// Get the first character as UCS-4.
int UNICHAR::first_uni() const {
static const int utf8_offsets[5] = {
0, 0, 0x3080, 0xE2080, 0x3C82080
};
int uni = 0;
int len = utf8_step(chars);
const char* src = chars;
switch (len) {
default:
break;
case 4:
uni += static_cast<unsigned char>(*src++);
uni <<= 6;
case 3:
uni += static_cast<unsigned char>(*src++);
uni <<= 6;
case 2:
uni += static_cast<unsigned char>(*src++);
uni <<= 6;
case 1:
uni += static_cast<unsigned char>(*src++);
}
uni -= utf8_offsets[len];
return uni;
}
// Get a terminated UTF8 string: Must delete[] it after use.
char* UNICHAR::utf8_str() const {
int len = utf8_len();
char* str = new char[len + 1];
memcpy(str, chars, len);
str[len] = 0;
return str;
}
// Get the number of bytes in the first character of the given utf8 string.
int UNICHAR::utf8_step(const char* utf8_str) {
static const char utf8_bytes[256] = {
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,
3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, 4,4,4,4,4,4,4,4,0,0,0,0,0,0,0,0
};
return utf8_bytes[static_cast<unsigned char>(*utf8_str)];
}
UNICHAR::const_iterator& UNICHAR::const_iterator::operator++() {
ASSERT_HOST(it_ != NULL);
int step = utf8_step(it_);
if (step == 0) {
tprintf("ERROR: Illegal UTF8 encountered.\n");
for (int i = 0; i < 5 && it_[i] != '\0'; ++i) {
tprintf("Index %d char = 0x%x\n", i, it_[i]);
}
step = 1;
}
it_ += step;
return *this;
}
int UNICHAR::const_iterator::operator*() const {
ASSERT_HOST(it_ != NULL);
const int len = utf8_step(it_);
if (len == 0) {
tprintf("WARNING: Illegal UTF8 encountered\n");
return ' ';
}
UNICHAR uch(it_, len);
return uch.first_uni();
}
int UNICHAR::const_iterator::get_utf8(char* utf8_output) const {
ASSERT_HOST(it_ != NULL);
const int len = utf8_step(it_);
if (len == 0) {
tprintf("WARNING: Illegal UTF8 encountered\n");
utf8_output[0] = ' ';
return 1;
}
strncpy(utf8_output, it_, len);
return len;
}
int UNICHAR::const_iterator::utf8_len() const {
ASSERT_HOST(it_ != NULL);
const int len = utf8_step(it_);
if (len == 0) {
tprintf("WARNING: Illegal UTF8 encountered\n");
return 1;
}
return len;
}
bool UNICHAR::const_iterator::is_legal() const {
return utf8_step(it_) > 0;
}
UNICHAR::const_iterator UNICHAR::begin(const char* utf8_str, const int len) {
return UNICHAR::const_iterator(utf8_str);
}
UNICHAR::const_iterator UNICHAR::end(const char* utf8_str, const int len) {
return UNICHAR::const_iterator(utf8_str + len);
}
// Converts a utf-8 string to a vector of unicodes.
void UNICHAR::UTF8ToUnicode(const char* utf8_str,
GenericVector<int>* unicodes) {
const int utf8_length = strlen(utf8_str);
const_iterator end_it(end(utf8_str, utf8_length));
for (const_iterator it(begin(utf8_str, utf8_length)); it != end_it; ++it) {
unicodes->push_back(*it);
}
}
| 1080228-arabicocr11 | ccutil/unichar.cpp | C++ | asf20 | 6,721 |
/**********************************************************************
* File: lsterr.h (Formerly listerr.h)
* Description: Errors shared by list modules
* Author: Phil Cheatle
* Created: Wed Jan 23 09:10:35 GMT 1991
*
* (C) Copyright 1990, Hewlett-Packard Ltd.
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
** http://www.apache.org/licenses/LICENSE-2.0
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*
**********************************************************************/
#include "errcode.h" //must be last include
#ifndef LSTERR_H
#define LSTERR_H
const ERRCODE DONT_CONSTRUCT_LIST_BY_COPY =
"Can't create a list by assignment";
const ERRCODE DONT_ASSIGN_LISTS = "Can't assign to lists";
const ERRCODE SERIALISE_LINKS = "Attempted to (de)serialise a link element";
#ifndef NDEBUG
const ERRCODE NO_LIST = "Iterator not set to a list";
const ERRCODE NULL_OBJECT = "List found this = NULL!";
const ERRCODE NULL_DATA = "List would have returned a NULL data pointer";
const ERRCODE NULL_CURRENT = "List current position is NULL";
const ERRCODE NULL_NEXT = "Next element on the list is NULL";
const ERRCODE NULL_PREV = "Previous element on the list is NULL";
const ERRCODE EMPTY_LIST = "List is empty";
const ERRCODE BAD_PARAMETER = "List parameter error";
const ERRCODE STILL_LINKED =
"Attemting to add an element with non NULL links, to a list";
#endif
#endif
| 1080228-arabicocr11 | ccutil/lsterr.h | C | asf20 | 1,819 |
/**********************************************************************
* File: basedir.c (Formerly getpath.c)
* Description: Find the directory location of the current executable using PATH.
* Author: Ray Smith
* Created: Mon Jul 09 09:06:39 BST 1990
*
* (C) Copyright 1990, Hewlett-Packard Ltd.
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
** http://www.apache.org/licenses/LICENSE-2.0
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*
**********************************************************************/
#include "basedir.h"
#include <stdlib.h>
// Assuming that code_path is the name of some file in a desired directory,
// returns the given code_path stripped back to the last slash, leaving
// the last slash in place. If there is no slash, returns ./ assuming that
// the input was the name of something in the current directory.
// Useful for getting to the directory of argv[0], but does not search
// any paths.
TESS_API void truncate_path(const char *code_path, STRING* trunc_path) {
int trunc_index = -1;
if (code_path != NULL) {
const char* last_slash = strrchr(code_path, '/');
if (last_slash != NULL && last_slash + 1 - code_path > trunc_index)
trunc_index = last_slash + 1 - code_path;
last_slash = strrchr(code_path, '\\');
if (last_slash != NULL && last_slash + 1 - code_path > trunc_index)
trunc_index = last_slash + 1 - code_path;
}
*trunc_path = code_path;
if (trunc_index >= 0)
trunc_path->truncate_at(trunc_index);
else
*trunc_path = "./";
}
| 1080228-arabicocr11 | ccutil/basedir.cpp | C++ | asf20 | 1,976 |
/**********************************************************************
* File: bits16.h (Formerly bits8.h)
* Description: Code for 8 bit field class.
* Author: Phil Cheatle
* Created: Thu Oct 17 10:10:05 BST 1991
*
* (C) Copyright 1991, Hewlett-Packard Ltd.
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
** http://www.apache.org/licenses/LICENSE-2.0
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*
**********************************************************************/
#ifndef BITS16_H
#define BITS16_H
#include "host.h"
class DLLSYM BITS16
{
public:
uinT16 val;
BITS16() {
val = 0;
} // constructor
BITS16( // constructor
uinT16 init); // initial val
void turn_on_bit( // flip specified bit
uinT8 bit_num) { // bit to flip 0..7
val = val | 01 << bit_num;
};
void turn_off_bit( // flip specified bit
uinT8 bit_num) { // bit to flip 0..7
val = val & ~(01 << bit_num);
};
void set_bit( // flip specified bit
uinT8 bit_num, // bit to flip 0..7
BOOL8 value) { // value to flip to
if (value)
val = val | 01 << bit_num;
else
val = val & ~(01 << bit_num);
};
BOOL8 bit( // access bit
uinT8 bit_num) const { // bit to access
return (val >> bit_num) & 01;
};
};
#endif
| 1080228-arabicocr11 | ccutil/bits16.h | C++ | asf20 | 1,954 |
/* -*-C-*-
********************************************************************************
*
* File: helpers.h
* Description: General utility functions
* Author: Daria Antonova
* Created: Wed Apr 8 14:37:00 2009
* Language: C++
* Package: N/A
* Status: Reusable Software Component
*
* (c) Copyright 2009, Google Inc.
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
** http://www.apache.org/licenses/LICENSE-2.0
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*
********************************************************************************/
#ifndef TESSERACT_CCUTIL_HELPERS_H_
#define TESSERACT_CCUTIL_HELPERS_H_
#include <stdio.h>
#include <string.h>
#include "host.h"
// TODO(rays) Put the rest of the helpers in the namespace.
namespace tesseract {
// A simple linear congruential random number generator, using Knuth's
// constants from:
// http://en.wikipedia.org/wiki/Linear_congruential_generator.
class TRand {
public:
TRand() : seed_(1) {}
// Sets the seed to the given value.
void set_seed(uinT64 seed) {
seed_ = seed;
}
// Returns an integer in the range 0 to MAX_INT32.
inT32 IntRand() {
Iterate();
return seed_ >> 33;
}
// Returns a floating point value in the range [-range, range].
double SignedRand(double range) {
return range * 2.0 * IntRand() / MAX_INT32 - range;
}
// Returns a floating point value in the range [0, range].
double UnsignedRand(double range) {
return range * IntRand() / MAX_INT32;
}
private:
// Steps the generator to the next value.
void Iterate() {
seed_ *= 6364136223846793005;
seed_ += 1442695040888963407;
}
// The current value of the seed.
uinT64 seed_;
};
} // namespace tesseract
// Remove newline (if any) at the end of the string.
inline void chomp_string(char *str) {
int last_index = strlen(str) - 1;
while (last_index >= 0 &&
(str[last_index] == '\n' || str[last_index] == '\r')) {
str[last_index--] = '\0';
}
}
// Advance the current pointer of the file if it points to a newline character.
inline void SkipNewline(FILE *file) {
if (fgetc(file) != '\n') fseek(file, -1, SEEK_CUR);
}
// Swaps the two args pointed to by the pointers.
// Operator= and copy constructor must work on T.
template<typename T> inline void Swap(T* p1, T* p2) {
T tmp(*p2);
*p2 = *p1;
*p1 = tmp;
}
// qsort function to sort 2 floats.
inline int sort_floats(const void *arg1, const void *arg2) {
float diff = *((float *) arg1) - *((float *) arg2);
if (diff > 0) {
return 1;
} else if (diff < 0) {
return -1;
} else {
return 0;
}
}
// return the smallest multiple of block_size greater than or equal to n.
inline int RoundUp(int n, int block_size) {
return block_size * ((n + block_size - 1) / block_size);
}
// Clip a numeric value to the interval [lower_bound, upper_bound].
template<typename T>
inline T ClipToRange(const T& x, const T& lower_bound, const T& upper_bound) {
if (x < lower_bound)
return lower_bound;
if (x > upper_bound)
return upper_bound;
return x;
}
// Extend the range [lower_bound, upper_bound] to include x.
template<typename T1, typename T2>
inline void UpdateRange(const T1& x, T2* lower_bound, T2* upper_bound) {
if (x < *lower_bound)
*lower_bound = x;
if (x > *upper_bound)
*upper_bound = x;
}
// Decrease lower_bound to be <= x_lo AND increase upper_bound to be >= x_hi.
template<typename T1, typename T2>
inline void UpdateRange(const T1& x_lo, const T1& x_hi,
T2* lower_bound, T2* upper_bound) {
if (x_lo < *lower_bound)
*lower_bound = x_lo;
if (x_hi > *upper_bound)
*upper_bound = x_hi;
}
// Intersect the range [*lower2, *upper2] with the range [lower1, upper1],
// putting the result back in [*lower2, *upper2].
// If non-intersecting ranges are given, we end up with *lower2 > *upper2.
template<typename T>
inline void IntersectRange(const T& lower1, const T& upper1,
T* lower2, T* upper2) {
if (lower1 > *lower2)
*lower2 = lower1;
if (upper1 < *upper2)
*upper2 = upper1;
}
// Proper modulo arithmetic operator. Returns a mod b that works for -ve a.
// For any integer a and positive b, returns r : 0<=r<b and a=n*b + r for
// some integer n.
inline int Modulo(int a, int b) {
return (a % b + b) % b;
}
// Integer division operator with rounding that works for negative input.
// Returns a divided by b, rounded to the nearest integer, without double
// counting at 0. With simple rounding 1/3 = 0, 0/3 = 0 -1/3 = 0, -2/3 = 0,
// -3/3 = 0 and -4/3 = -1.
// I want 1/3 = 0, 0/3 = 0, -1/3 = 0, -2/3 = -1, -3/3 = -1 and -4/3 = -1.
inline int DivRounded(int a, int b) {
if (b < 0) return -DivRounded(a, -b);
return a >= 0 ? (a + b / 2) / b : (a - b / 2) / b;
}
// Return a double cast to int with rounding.
inline int IntCastRounded(double x) {
return x >= 0.0 ? static_cast<int>(x + 0.5) : -static_cast<int>(-x + 0.5);
}
// Reverse the order of bytes in a n byte quantity for big/little-endian switch.
inline void ReverseN(void* ptr, int num_bytes) {
char *cptr = reinterpret_cast<char *>(ptr);
int halfsize = num_bytes / 2;
for (int i = 0; i < halfsize; ++i) {
char tmp = cptr[i];
cptr[i] = cptr[num_bytes - 1 - i];
cptr[num_bytes - 1 - i] = tmp;
}
}
// Reverse the order of bytes in a 16 bit quantity for big/little-endian switch.
inline void Reverse16(void *ptr) {
ReverseN(ptr, 2);
}
// Reverse the order of bytes in a 32 bit quantity for big/little-endian switch.
inline void Reverse32(void *ptr) {
ReverseN(ptr, 4);
}
// Reverse the order of bytes in a 64 bit quantity for big/little-endian switch.
inline void Reverse64(void* ptr) {
ReverseN(ptr, 8);
}
#endif // TESSERACT_CCUTIL_HELPERS_H_
| 1080228-arabicocr11 | ccutil/helpers.h | C | asf20 | 6,198 |
/**********************************************************************
* File: elst.h (Formerly elist.h)
* Description: Embedded list module include file.
* Author: Phil Cheatle
* Created: Mon Jan 07 08:35:34 GMT 1991
*
* (C) Copyright 1991, Hewlett-Packard Ltd.
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
** http://www.apache.org/licenses/LICENSE-2.0
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*
**********************************************************************/
#ifndef ELST_H
#define ELST_H
#include <stdio.h>
#include "host.h"
#include "serialis.h"
#include "lsterr.h"
class ELIST_ITERATOR;
/**********************************************************************
This module implements list classes and iterators.
The following list types and iterators are provided:
List type List Class Iterator Class Element Class
--------- ---------- -------------- -------------
Embedded list ELIST
ELIST_ITERATOR
ELIST_LINK
(Single linked)
Embedded list ELIST2
ELIST2_ITERATOR
ELIST2_LINK
(Double linked)
Cons List CLIST
CLIST_ITERATOR
CLIST_LINK
(Single linked)
Cons List CLIST2
CLIST2_ITERATOR
CLIST2_LINK
(Double linked)
An embedded list is where the list pointers are provided by a generic class.
Data types to be listed inherit from the generic class. Data is thus linked
in only ONE list at any one time.
A cons list has a separate structure for a "cons cell". This contains the
list pointer(s) AND a pointer to the data structure held on the list. A
structure can be on many cons lists at the same time, and the structure does
not need to inherit from any generic class in order to be on the list.
The implementation of lists is very careful about space and speed overheads.
This is why many embedded lists are provided. The same concerns mean that
in-line type coercion is done, rather than use virtual functions. This is
cumbersome in that each data type to be listed requires its own iterator and
list class - though macros can gererate these. It also prevents heterogenous
lists.
**********************************************************************/
/**********************************************************************
* CLASS - ELIST_LINK
*
* Generic link class for singly linked lists with embedded links
*
* Note: No destructor - elements are assumed to be destroyed EITHER after
* they have been extracted from a list OR by the ELIST destructor which
* walks the list.
**********************************************************************/
class DLLSYM ELIST_LINK
{
friend class ELIST_ITERATOR;
friend class ELIST;
ELIST_LINK *next;
public:
ELIST_LINK() {
next = NULL;
}
//constructor
ELIST_LINK(const ELIST_LINK &) { // don't copy link.
next = NULL;
}
void operator= ( //dont copy links
const ELIST_LINK &) {
next = NULL;
}
};
/**********************************************************************
* CLASS - ELIST
*
* Generic list class for singly linked lists with embedded links
**********************************************************************/
class DLLSYM ELIST
{
friend class ELIST_ITERATOR;
ELIST_LINK *last; //End of list
//(Points to head)
ELIST_LINK *First() { // return first
return last ? last->next : NULL;
}
public:
ELIST() { //constructor
last = NULL;
}
void internal_clear ( //destroy all links
//ptr to zapper functn
void (*zapper) (ELIST_LINK *));
bool empty() const { //is list empty?
return !last;
}
bool singleton() const {
return last ? (last == last->next) : false;
}
void shallow_copy( //dangerous!!
ELIST *from_list) { //beware destructors!!
last = from_list->last;
}
//ptr to copier functn
void internal_deep_copy (ELIST_LINK * (*copier) (ELIST_LINK *),
const ELIST * list); //list being copied
void assign_to_sublist( //to this list
ELIST_ITERATOR *start_it, //from list start
ELIST_ITERATOR *end_it); //from list end
inT32 length() const; // # elements in list
void sort ( //sort elements
int comparator ( //comparison routine
const void *, const void *));
// Assuming list has been sorted already, insert new_link to
// keep the list sorted according to the same comparison function.
// Comparision function is the same as used by sort, i.e. uses double
// indirection. Time is O(1) to add to beginning or end.
// Time is linear to add pre-sorted items to an empty list.
// If unique is set to true and comparator() returns 0 (an entry with the
// same information as the one contained in new_link is already in the
// list) - new_link is not added to the list and the function returns the
// pointer to the identical entry that already exists in the list
// (otherwise the function returns new_link).
ELIST_LINK *add_sorted_and_find(int comparator(const void*, const void*),
bool unique, ELIST_LINK* new_link);
// Same as above, but returns true if the new entry was inserted, false
// if the identical entry already existed in the list.
bool add_sorted(int comparator(const void*, const void*),
bool unique, ELIST_LINK* new_link) {
return (add_sorted_and_find(comparator, unique, new_link) == new_link);
}
};
/***********************************************************************
* CLASS - ELIST_ITERATOR
*
* Generic iterator class for singly linked lists with embedded links
**********************************************************************/
class DLLSYM ELIST_ITERATOR
{
friend void ELIST::assign_to_sublist(ELIST_ITERATOR *, ELIST_ITERATOR *);
ELIST *list; //List being iterated
ELIST_LINK *prev; //prev element
ELIST_LINK *current; //current element
ELIST_LINK *next; //next element
bool ex_current_was_last; //current extracted
//was end of list
bool ex_current_was_cycle_pt; //current extracted
//was cycle point
ELIST_LINK *cycle_pt; //point we are cycling
//the list to.
bool started_cycling; //Have we moved off
//the start?
ELIST_LINK *extract_sublist( //from this current...
ELIST_ITERATOR *other_it); //to other current
public:
ELIST_ITERATOR() { //constructor
list = NULL;
} //unassigned list
explicit ELIST_ITERATOR(ELIST *list_to_iterate);
void set_to_list( //change list
ELIST *list_to_iterate);
void add_after_then_move( //add after current &
ELIST_LINK *new_link); //move to new
void add_after_stay_put( //add after current &
ELIST_LINK *new_link); //stay at current
void add_before_then_move( //add before current &
ELIST_LINK *new_link); //move to new
void add_before_stay_put( //add before current &
ELIST_LINK *new_link); //stay at current
void add_list_after( //add a list &
ELIST *list_to_add); //stay at current
void add_list_before( //add a list &
ELIST *list_to_add); //move to it 1st item
ELIST_LINK *data() { //get current data
#ifndef NDEBUG
if (!list)
NO_LIST.error ("ELIST_ITERATOR::data", ABORT, NULL);
if (!current)
NULL_DATA.error ("ELIST_ITERATOR::data", ABORT, NULL);
#endif
return current;
}
ELIST_LINK *data_relative( //get data + or - ...
inT8 offset); //offset from current
ELIST_LINK *forward(); //move to next element
ELIST_LINK *extract(); //remove from list
ELIST_LINK *move_to_first(); //go to start of list
ELIST_LINK *move_to_last(); //go to end of list
void mark_cycle_pt(); //remember current
bool empty() { //is list empty?
#ifndef NDEBUG
if (!list)
NO_LIST.error ("ELIST_ITERATOR::empty", ABORT, NULL);
#endif
return list->empty ();
}
bool current_extracted() { //current extracted?
return !current;
}
bool at_first(); //Current is first?
bool at_last(); //Current is last?
bool cycled_list(); //Completed a cycle?
void add_to_end( //add at end &
ELIST_LINK *new_link); //dont move
void exchange( //positions of 2 links
ELIST_ITERATOR *other_it); //other iterator
inT32 length(); //# elements in list
void sort ( //sort elements
int comparator ( //comparison routine
const void *, const void *));
};
/***********************************************************************
* ELIST_ITERATOR::set_to_list
*
* (Re-)initialise the iterator to point to the start of the list_to_iterate
* over.
**********************************************************************/
inline void ELIST_ITERATOR::set_to_list( //change list
ELIST *list_to_iterate) {
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("ELIST_ITERATOR::set_to_list", ABORT, NULL);
if (!list_to_iterate)
BAD_PARAMETER.error ("ELIST_ITERATOR::set_to_list", ABORT,
"list_to_iterate is NULL");
#endif
list = list_to_iterate;
prev = list->last;
current = list->First ();
next = current ? current->next : NULL;
cycle_pt = NULL; //await explicit set
started_cycling = FALSE;
ex_current_was_last = FALSE;
ex_current_was_cycle_pt = FALSE;
}
/***********************************************************************
* ELIST_ITERATOR::ELIST_ITERATOR
*
* CONSTRUCTOR - set iterator to specified list;
**********************************************************************/
inline ELIST_ITERATOR::ELIST_ITERATOR(ELIST *list_to_iterate) {
set_to_list(list_to_iterate);
}
/***********************************************************************
* ELIST_ITERATOR::add_after_then_move
*
* Add a new element to the list after the current element and move the
* iterator to the new element.
**********************************************************************/
inline void ELIST_ITERATOR::add_after_then_move( // element to add
ELIST_LINK *new_element) {
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("ELIST_ITERATOR::add_after_then_move", ABORT, NULL);
if (!list)
NO_LIST.error ("ELIST_ITERATOR::add_after_then_move", ABORT, NULL);
if (!new_element)
BAD_PARAMETER.error ("ELIST_ITERATOR::add_after_then_move", ABORT,
"new_element is NULL");
if (new_element->next)
STILL_LINKED.error ("ELIST_ITERATOR::add_after_then_move", ABORT, NULL);
#endif
if (list->empty ()) {
new_element->next = new_element;
list->last = new_element;
prev = next = new_element;
}
else {
new_element->next = next;
if (current) { //not extracted
current->next = new_element;
prev = current;
if (current == list->last)
list->last = new_element;
}
else { //current extracted
prev->next = new_element;
if (ex_current_was_last)
list->last = new_element;
if (ex_current_was_cycle_pt)
cycle_pt = new_element;
}
}
current = new_element;
}
/***********************************************************************
* ELIST_ITERATOR::add_after_stay_put
*
* Add a new element to the list after the current element but do not move
* the iterator to the new element.
**********************************************************************/
inline void ELIST_ITERATOR::add_after_stay_put( // element to add
ELIST_LINK *new_element) {
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("ELIST_ITERATOR::add_after_stay_put", ABORT, NULL);
if (!list)
NO_LIST.error ("ELIST_ITERATOR::add_after_stay_put", ABORT, NULL);
if (!new_element)
BAD_PARAMETER.error ("ELIST_ITERATOR::add_after_stay_put", ABORT,
"new_element is NULL");
if (new_element->next)
STILL_LINKED.error ("ELIST_ITERATOR::add_after_stay_put", ABORT, NULL);
#endif
if (list->empty ()) {
new_element->next = new_element;
list->last = new_element;
prev = next = new_element;
ex_current_was_last = FALSE;
current = NULL;
}
else {
new_element->next = next;
if (current) { //not extracted
current->next = new_element;
if (prev == current)
prev = new_element;
if (current == list->last)
list->last = new_element;
}
else { //current extracted
prev->next = new_element;
if (ex_current_was_last) {
list->last = new_element;
ex_current_was_last = FALSE;
}
}
next = new_element;
}
}
/***********************************************************************
* ELIST_ITERATOR::add_before_then_move
*
* Add a new element to the list before the current element and move the
* iterator to the new element.
**********************************************************************/
inline void ELIST_ITERATOR::add_before_then_move( // element to add
ELIST_LINK *new_element) {
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("ELIST_ITERATOR::add_before_then_move", ABORT, NULL);
if (!list)
NO_LIST.error ("ELIST_ITERATOR::add_before_then_move", ABORT, NULL);
if (!new_element)
BAD_PARAMETER.error ("ELIST_ITERATOR::add_before_then_move", ABORT,
"new_element is NULL");
if (new_element->next)
STILL_LINKED.error ("ELIST_ITERATOR::add_before_then_move", ABORT, NULL);
#endif
if (list->empty ()) {
new_element->next = new_element;
list->last = new_element;
prev = next = new_element;
}
else {
prev->next = new_element;
if (current) { //not extracted
new_element->next = current;
next = current;
}
else { //current extracted
new_element->next = next;
if (ex_current_was_last)
list->last = new_element;
if (ex_current_was_cycle_pt)
cycle_pt = new_element;
}
}
current = new_element;
}
/***********************************************************************
* ELIST_ITERATOR::add_before_stay_put
*
* Add a new element to the list before the current element but dont move the
* iterator to the new element.
**********************************************************************/
inline void ELIST_ITERATOR::add_before_stay_put( // element to add
ELIST_LINK *new_element) {
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("ELIST_ITERATOR::add_before_stay_put", ABORT, NULL);
if (!list)
NO_LIST.error ("ELIST_ITERATOR::add_before_stay_put", ABORT, NULL);
if (!new_element)
BAD_PARAMETER.error ("ELIST_ITERATOR::add_before_stay_put", ABORT,
"new_element is NULL");
if (new_element->next)
STILL_LINKED.error ("ELIST_ITERATOR::add_before_stay_put", ABORT, NULL);
#endif
if (list->empty ()) {
new_element->next = new_element;
list->last = new_element;
prev = next = new_element;
ex_current_was_last = TRUE;
current = NULL;
}
else {
prev->next = new_element;
if (current) { //not extracted
new_element->next = current;
if (next == current)
next = new_element;
}
else { //current extracted
new_element->next = next;
if (ex_current_was_last)
list->last = new_element;
}
prev = new_element;
}
}
/***********************************************************************
* ELIST_ITERATOR::add_list_after
*
* Insert another list to this list after the current element but dont move the
* iterator.
**********************************************************************/
inline void ELIST_ITERATOR::add_list_after(ELIST *list_to_add) {
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("ELIST_ITERATOR::add_list_after", ABORT, NULL);
if (!list)
NO_LIST.error ("ELIST_ITERATOR::add_list_after", ABORT, NULL);
if (!list_to_add)
BAD_PARAMETER.error ("ELIST_ITERATOR::add_list_after", ABORT,
"list_to_add is NULL");
#endif
if (!list_to_add->empty ()) {
if (list->empty ()) {
list->last = list_to_add->last;
prev = list->last;
next = list->First ();
ex_current_was_last = TRUE;
current = NULL;
}
else {
if (current) { //not extracted
current->next = list_to_add->First ();
if (current == list->last)
list->last = list_to_add->last;
list_to_add->last->next = next;
next = current->next;
}
else { //current extracted
prev->next = list_to_add->First ();
if (ex_current_was_last) {
list->last = list_to_add->last;
ex_current_was_last = FALSE;
}
list_to_add->last->next = next;
next = prev->next;
}
}
list_to_add->last = NULL;
}
}
/***********************************************************************
* ELIST_ITERATOR::add_list_before
*
* Insert another list to this list before the current element. Move the
* iterator to the start of the inserted elements
* iterator.
**********************************************************************/
inline void ELIST_ITERATOR::add_list_before(ELIST *list_to_add) {
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("ELIST_ITERATOR::add_list_before", ABORT, NULL);
if (!list)
NO_LIST.error ("ELIST_ITERATOR::add_list_before", ABORT, NULL);
if (!list_to_add)
BAD_PARAMETER.error ("ELIST_ITERATOR::add_list_before", ABORT,
"list_to_add is NULL");
#endif
if (!list_to_add->empty ()) {
if (list->empty ()) {
list->last = list_to_add->last;
prev = list->last;
current = list->First ();
next = current->next;
ex_current_was_last = FALSE;
}
else {
prev->next = list_to_add->First ();
if (current) { //not extracted
list_to_add->last->next = current;
}
else { //current extracted
list_to_add->last->next = next;
if (ex_current_was_last)
list->last = list_to_add->last;
if (ex_current_was_cycle_pt)
cycle_pt = prev->next;
}
current = prev->next;
next = current->next;
}
list_to_add->last = NULL;
}
}
/***********************************************************************
* ELIST_ITERATOR::extract
*
* Do extraction by removing current from the list, returning it to the
* caller, but NOT updating the iterator. (So that any calling loop can do
* this.) The iterator's current points to NULL. If the extracted element
* is to be deleted, this is the callers responsibility.
**********************************************************************/
inline ELIST_LINK *ELIST_ITERATOR::extract() {
ELIST_LINK *extracted_link;
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("ELIST_ITERATOR::extract", ABORT, NULL);
if (!list)
NO_LIST.error ("ELIST_ITERATOR::extract", ABORT, NULL);
if (!current) //list empty or
//element extracted
NULL_CURRENT.error ("ELIST_ITERATOR::extract",
ABORT, NULL);
#endif
if (list->singleton()) {
// Special case where we do need to change the iterator.
prev = next = list->last = NULL;
} else {
prev->next = next; //remove from list
if (current == list->last) {
list->last = prev;
ex_current_was_last = TRUE;
} else {
ex_current_was_last = FALSE;
}
}
// Always set ex_current_was_cycle_pt so an add/forward will work in a loop.
ex_current_was_cycle_pt = (current == cycle_pt) ? TRUE : FALSE;
extracted_link = current;
extracted_link->next = NULL; //for safety
current = NULL;
return extracted_link;
}
/***********************************************************************
* ELIST_ITERATOR::move_to_first()
*
* Move current so that it is set to the start of the list.
* Return data just in case anyone wants it.
**********************************************************************/
inline ELIST_LINK *ELIST_ITERATOR::move_to_first() {
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("ELIST_ITERATOR::move_to_first", ABORT, NULL);
if (!list)
NO_LIST.error ("ELIST_ITERATOR::move_to_first", ABORT, NULL);
#endif
current = list->First ();
prev = list->last;
next = current ? current->next : NULL;
return current;
}
/***********************************************************************
* ELIST_ITERATOR::mark_cycle_pt()
*
* Remember the current location so that we can tell whether we've returned
* to this point later.
*
* If the current point is deleted either now, or in the future, the cycle
* point will be set to the next item which is set to current. This could be
* by a forward, add_after_then_move or add_after_then_move.
**********************************************************************/
inline void ELIST_ITERATOR::mark_cycle_pt() {
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("ELIST_ITERATOR::mark_cycle_pt", ABORT, NULL);
if (!list)
NO_LIST.error ("ELIST_ITERATOR::mark_cycle_pt", ABORT, NULL);
#endif
if (current)
cycle_pt = current;
else
ex_current_was_cycle_pt = TRUE;
started_cycling = FALSE;
}
/***********************************************************************
* ELIST_ITERATOR::at_first()
*
* Are we at the start of the list?
*
**********************************************************************/
inline bool ELIST_ITERATOR::at_first() {
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("ELIST_ITERATOR::at_first", ABORT, NULL);
if (!list)
NO_LIST.error ("ELIST_ITERATOR::at_first", ABORT, NULL);
#endif
//we're at a deleted
return ((list->empty ()) || (current == list->First ()) || ((current == NULL) &&
(prev == list->last) && //NON-last pt between
!ex_current_was_last)); //first and last
}
/***********************************************************************
* ELIST_ITERATOR::at_last()
*
* Are we at the end of the list?
*
**********************************************************************/
inline bool ELIST_ITERATOR::at_last() {
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("ELIST_ITERATOR::at_last", ABORT, NULL);
if (!list)
NO_LIST.error ("ELIST_ITERATOR::at_last", ABORT, NULL);
#endif
//we're at a deleted
return ((list->empty ()) || (current == list->last) || ((current == NULL) &&
(prev == list->last) && //last point between
ex_current_was_last)); //first and last
}
/***********************************************************************
* ELIST_ITERATOR::cycled_list()
*
* Have we returned to the cycle_pt since it was set?
*
**********************************************************************/
inline bool ELIST_ITERATOR::cycled_list() {
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("ELIST_ITERATOR::cycled_list", ABORT, NULL);
if (!list)
NO_LIST.error ("ELIST_ITERATOR::cycled_list", ABORT, NULL);
#endif
return ((list->empty ()) || ((current == cycle_pt) && started_cycling));
}
/***********************************************************************
* ELIST_ITERATOR::length()
*
* Return the length of the list
*
**********************************************************************/
inline inT32 ELIST_ITERATOR::length() {
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("ELIST_ITERATOR::length", ABORT, NULL);
if (!list)
NO_LIST.error ("ELIST_ITERATOR::length", ABORT, NULL);
#endif
return list->length ();
}
/***********************************************************************
* ELIST_ITERATOR::sort()
*
* Sort the elements of the list, then reposition at the start.
*
**********************************************************************/
inline void
ELIST_ITERATOR::sort ( //sort elements
int comparator ( //comparison routine
const void *, const void *)) {
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("ELIST_ITERATOR::sort", ABORT, NULL);
if (!list)
NO_LIST.error ("ELIST_ITERATOR::sort", ABORT, NULL);
#endif
list->sort (comparator);
move_to_first();
}
/***********************************************************************
* ELIST_ITERATOR::add_to_end
*
* Add a new element to the end of the list without moving the iterator.
* This is provided because a single linked list cannot move to the last as
* the iterator couldn't set its prev pointer. Adding to the end is
* essential for implementing
queues.
**********************************************************************/
inline void ELIST_ITERATOR::add_to_end( // element to add
ELIST_LINK *new_element) {
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("ELIST_ITERATOR::add_to_end", ABORT, NULL);
if (!list)
NO_LIST.error ("ELIST_ITERATOR::add_to_end", ABORT, NULL);
if (!new_element)
BAD_PARAMETER.error ("ELIST_ITERATOR::add_to_end", ABORT,
"new_element is NULL");
if (new_element->next)
STILL_LINKED.error ("ELIST_ITERATOR::add_to_end", ABORT, NULL);
#endif
if (this->at_last ()) {
this->add_after_stay_put (new_element);
}
else {
if (this->at_first ()) {
this->add_before_stay_put (new_element);
list->last = new_element;
}
else { //Iteratr is elsewhere
new_element->next = list->last->next;
list->last->next = new_element;
list->last = new_element;
}
}
}
/***********************************************************************
******************** MACROS **************************************
***********************************************************************/
/***********************************************************************
QUOTE_IT MACRO DEFINITION
===========================
Replace <parm> with "<parm>". <parm> may be an arbitrary number of tokens
***********************************************************************/
#define QUOTE_IT( parm ) #parm
/***********************************************************************
ELISTIZE( CLASSNAME ) MACRO
============================
CLASSNAME is assumed to be the name of a class which has a baseclass of
ELIST_LINK.
NOTE: Because we dont use virtual functions in the list code, the list code
will NOT work correctly for classes derived from this.
The macros generate:
- An element deletion function: CLASSNAME##_zapper
- An E_LIST subclass: CLASSNAME##_LIST
- An E_LIST_ITERATOR subclass: CLASSNAME##_IT
NOTE: Generated names are DELIBERATELY designed to clash with those for
ELIST2IZE but NOT with those for CLISTIZE and CLIST2IZE
Two macros are provided: ELISTIZE and ELISTIZEH.
The ...IZEH macros just define the class names for use in .h files
The ...IZE macros define the code use in .c files
***********************************************************************/
/***********************************************************************
ELISTIZEH( CLASSNAME ) MACRO
ELISTIZEH is a concatenation of 3 fragments ELISTIZEH_A, ELISTIZEH_B and
ELISTIZEH_C.
***********************************************************************/
#define ELISTIZEH_A(CLASSNAME) \
\
extern DLLSYM void CLASSNAME##_zapper(ELIST_LINK* link);
#define ELISTIZEH_B(CLASSNAME) \
\
/*********************************************************************** \
* CLASS - CLASSNAME##_LIST \
* \
* List class for class CLASSNAME \
* \
**********************************************************************/ \
\
class DLLSYM CLASSNAME##_LIST : public ELIST { \
public: \
CLASSNAME##_LIST():ELIST() {} \
\
void clear() { /* delete elements */\
ELIST::internal_clear(&CLASSNAME##_zapper); \
} \
\
~CLASSNAME##_LIST() { \
clear(); \
} \
\
/* Become a deep copy of src_list*/ \
void deep_copy(const CLASSNAME##_LIST* src_list, \
CLASSNAME* (*copier)(const CLASSNAME*)); \
\
private: \
/* Prevent assign and copy construction. */ \
CLASSNAME##_LIST(const CLASSNAME##_LIST&) { \
DONT_CONSTRUCT_LIST_BY_COPY.error(QUOTE_IT(CLASSNAME##_LIST), ABORT, NULL);\
} \
void operator=(const CLASSNAME##_LIST&) { \
DONT_ASSIGN_LISTS.error(QUOTE_IT(CLASSNAME##_LIST), ABORT, NULL ); \
} \
#define ELISTIZEH_C( CLASSNAME ) \
}; \
\
\
\
/*********************************************************************** \
* CLASS - CLASSNAME##_IT \
* \
* Iterator class for class CLASSNAME##_LIST \
* \
* Note: We don't need to coerce pointers to member functions input \
* parameters as these are automatically converted to the type of the base \
* type. ("A ptr to a class may be converted to a pointer to a public base \
* class of that class") \
**********************************************************************/ \
\
class DLLSYM CLASSNAME##_IT : public ELIST_ITERATOR { \
public: \
CLASSNAME##_IT():ELIST_ITERATOR(){} \
\
/* TODO(rays) This constructor should be explicit, but that means changing \
hundreds of incorrect initializations of iterators that use = over () */ \
CLASSNAME##_IT(CLASSNAME##_LIST* list) : ELIST_ITERATOR(list) {} \
\
CLASSNAME* data() { \
return reinterpret_cast<CLASSNAME*>(ELIST_ITERATOR::data()); \
} \
\
CLASSNAME* data_relative(inT8 offset) { \
return reinterpret_cast<CLASSNAME*>(ELIST_ITERATOR::data_relative(offset));\
} \
\
CLASSNAME* forward() { \
return reinterpret_cast<CLASSNAME*>(ELIST_ITERATOR::forward()); \
} \
\
CLASSNAME* extract() { \
return reinterpret_cast<CLASSNAME*>(ELIST_ITERATOR::extract()); \
} \
\
CLASSNAME* move_to_first() { \
return reinterpret_cast<CLASSNAME*>(ELIST_ITERATOR::move_to_first()); \
} \
\
CLASSNAME* move_to_last() { \
return reinterpret_cast<CLASSNAME*>(ELIST_ITERATOR::move_to_last()); \
} \
};
#define ELISTIZEH( CLASSNAME ) \
\
ELISTIZEH_A( CLASSNAME ) \
\
ELISTIZEH_B( CLASSNAME ) \
\
ELISTIZEH_C( CLASSNAME )
/***********************************************************************
ELISTIZE( CLASSNAME ) MACRO
***********************************************************************/
#define ELISTIZE(CLASSNAME) \
\
/*********************************************************************** \
* CLASSNAME##_zapper \
* \
* A function which can delete a CLASSNAME element. This is passed to the \
* generic clear list member function so that when a list is cleared the \
* elements on the list are properly destroyed from the base class, even \
* though we dont use a virtual destructor function. \
**********************************************************************/ \
\
DLLSYM void CLASSNAME##_zapper(ELIST_LINK* link) { \
delete reinterpret_cast<CLASSNAME*>(link); \
} \
\
/* Become a deep copy of src_list*/ \
void CLASSNAME##_LIST::deep_copy(const CLASSNAME##_LIST* src_list, \
CLASSNAME* (*copier)(const CLASSNAME*)) { \
\
CLASSNAME##_IT from_it(const_cast<CLASSNAME##_LIST*>(src_list)); \
CLASSNAME##_IT to_it(this); \
\
for (from_it.mark_cycle_pt(); !from_it.cycled_list(); from_it.forward()) \
to_it.add_after_then_move((*copier)(from_it.data())); \
}
#endif
| 1080228-arabicocr11 | ccutil/elst.h | C++ | asf20 | 38,488 |
// Copyright 2006 Google Inc.
// All Rights Reserved.
// Author: renn
//
// Contains file io functions (mainly for file parsing), that might not be
// available, on embedded devices, or that have an incomplete implementation
// there.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef TESSERACT_CCUTIL_SCANUTILS_H_
#define TESSERACT_CCUTIL_SCANUTILS_H_
#include <stdint.h>
#include <stddef.h>
#include <stdio.h>
#include <sys/stat.h>
/**
* fscanf variant to ensure correct reading regardless of locale.
*
* tfscanf parse a file stream according to the given format. See the fscanf
* manpage for more information, as this function attempts to mimic its
* behavior.
*
* @note Note that scientific floating-point notation is not supported.
*
*/
int tfscanf(FILE* stream, const char *format, ...);
#ifdef EMBEDDED
// Attempts to parse the given file stream s as an integer of the base
// 'base'. Returns the first successfully parsed integer as a uintmax_t, or
// 0, if none was found.
uintmax_t streamtoumax(FILE* s, int base);
// Parse a file stream according to the given format. See the fscanf manpage
// for more information, as this function attempts to mimic its behavior.
// Note that scientific loating-point notation is not supported.
int fscanf(FILE* stream, const char *format, ...);
// Parse a file stream according to the given format. See the fscanf manpage
// for more information, as this function attempts to mimic its behavior.
// Note that scientific loating-point notation is not supported.
int vfscanf(FILE* stream, const char *format, va_list ap);
// Create a file at the specified path. See the creat manpage for more
// information, as this function attempts to mimic its behavior.
int creat(const char *pathname, mode_t mode);
// Convert the specified C-String to a float. Returns the first parsed float,
// or 0.0 if no floating point value could be found. Note that scientific
// floating-point notation is not supported.
double strtofloat(const char* s);
#endif // EMBEDDED
#endif // TESSERACT_CCUTIL_SCANUTILS_H_
| 1080228-arabicocr11 | ccutil/scanutils.h | C | asf20 | 2,570 |
/**********************************************************************
* File: stderr.h (Formerly stderrs.h)
* Description: File defining error messages fundamental of commonly used.
* Author: Ray Smith
* Created: Fri Aug 10 15:23:14 BST 1990
*
* (C) Copyright 1990, Hewlett-Packard Ltd.
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
** http://www.apache.org/licenses/LICENSE-2.0
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*
**********************************************************************/
#ifndef STDERR_H
#define STDERR_H
#include "errcode.h"
const ERRCODE MEMORY_OUT = "Out of memory";
#endif
| 1080228-arabicocr11 | ccutil/stderr.h | C | asf20 | 1,080 |
///////////////////////////////////////////////////////////////////////
// File: unicharmap.h
// Description: Unicode character/ligature to integer id class.
// Author: Thomas Kielbus
// Created: Wed Jun 28 17:05:01 PDT 2006
//
// (C) Copyright 2006, Google Inc.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
///////////////////////////////////////////////////////////////////////
#ifndef TESSERACT_CCUTIL_UNICHARMAP_H__
#define TESSERACT_CCUTIL_UNICHARMAP_H__
#include "unichar.h"
// A UNICHARMAP stores unique unichars. Each of them is associated with one
// UNICHAR_ID.
class UNICHARMAP {
public:
// Create an empty UNICHARMAP
UNICHARMAP();
~UNICHARMAP();
// Insert the given unichar represention in the UNICHARMAP and associate it
// with the given id. The length of the representation MUST be non-zero.
void insert(const char* const unichar_repr, UNICHAR_ID id);
// Return the id associated with the given unichar representation,
// this representation MUST exist within the UNICHARMAP.
// The length of the representation MUST be non-zero.
UNICHAR_ID unichar_to_id(const char* const unichar_repr) const;
// Return the id associated with the given unichar representation,
// this representation MUST exist within the UNICHARMAP. The first
// length characters (maximum) from unichar_repr are used. The length
// MUST be non-zero.
UNICHAR_ID unichar_to_id(const char* const unichar_repr, int length) const;
// Return true if the given unichar representation is already present in the
// UNICHARMAP. The length of the representation MUST be non-zero.
bool contains(const char* const unichar_repr) const;
// Return true if the given unichar representation is already present in the
// UNICHARMAP. The first length characters (maximum) from unichar_repr are
// used. The length MUST be non-zero.
bool contains(const char* const unichar_repr, int length) const;
// Return the minimum number of characters that must be used from this string
// to obtain a match in the UNICHARMAP.
int minmatch(const char* const unichar_repr) const;
// Clear the UNICHARMAP. All previous data is lost.
void clear();
private:
// The UNICHARMAP is represented as a tree whose nodes are of type
// UNICHARMAP_NODE.
struct UNICHARMAP_NODE {
UNICHARMAP_NODE();
~UNICHARMAP_NODE();
UNICHARMAP_NODE* children;
UNICHAR_ID id;
};
UNICHARMAP_NODE* nodes;
};
#endif // TESSERACT_CCUTIL_UNICHARMAP_H__
| 1080228-arabicocr11 | ccutil/unicharmap.h | C++ | asf20 | 2,991 |
// Copyright 2012 Google Inc. All Rights Reserved.
// Author: rays@google.com (Ray Smith)
///////////////////////////////////////////////////////////////////////
// File: kdpair.h
// Description: Template pair class like STL pair but geared towards
// the Key+Data design pattern in which some data needs
// to be sorted or kept in a heap sorted on some separate key.
// Author: Ray Smith.
// Created: Thu Mar 15 14:48:05 PDT 2012
//
// (C) Copyright 2012, Google Inc.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
///////////////////////////////////////////////////////////////////////
#ifndef TESSERACT_CCUTIL_KDPAIR_H_
#define TESSERACT_CCUTIL_KDPAIR_H_
#include "genericvector.h"
namespace tesseract {
// A useful base struct to facilitate the common operation of sorting a vector
// of simple or smart-pointer data using a separate key. Similar to STL pair.
template <typename Key, typename Data>
struct KDPair {
KDPair() {}
KDPair(Key k, Data d) : data(d), key(k) {}
int operator==(const KDPair<Key, Data>& other) const {
return key == other.key;
}
// WARNING! Keep data as the first element! KDPairInc and KDPairDec depend
// on the order of these elements so they can downcast pointers appropriately
// for use by GenericHeap::Reshuffle.
Data data;
Key key;
};
// Specialization of KDPair to provide operator< for sorting in increasing order
// and recasting of data pointers for use with DoublePtr.
template <typename Key, typename Data>
struct KDPairInc : public KDPair<Key, Data> {
KDPairInc() {}
KDPairInc(Key k, Data d) : KDPair<Key, Data>(k, d) {}
// Operator< facilitates sorting in increasing order.
int operator<(const KDPairInc<Key, Data>& other) const {
return this->key < other.key;
}
// Returns the input Data pointer recast to a KDPairInc pointer.
// Just casts a pointer to the first element to a pointer to the whole struct.
static KDPairInc* RecastDataPointer(Data* data_ptr) {
return reinterpret_cast<KDPairInc*>(data_ptr);
}
};
// Specialization of KDPair to provide operator< for sorting in decreasing order
// and recasting of data pointers for use with DoublePtr.
template <typename Key, typename Data>
struct KDPairDec : public KDPair<Key, Data> {
KDPairDec() {}
KDPairDec(Key k, Data d) : KDPair<Key, Data>(k, d) {}
// Operator< facilitates sorting in decreasing order by using operator> on
// the key values.
int operator<(const KDPairDec<Key, Data>& other) const {
return this->key > other.key;
}
// Returns the input Data pointer recast to a KDPairDec pointer.
// Just casts a pointer to the first element to a pointer to the whole struct.
static KDPairDec* RecastDataPointer(Data* data_ptr) {
return reinterpret_cast<KDPairDec*>(data_ptr);
}
};
// A useful base class to facilitate the common operation of sorting a vector
// of owned pointer data using a separate key. This class owns its data pointer,
// deleting it when it has finished with it, and providing copy constructor and
// operator= that have move semantics so that the data does not get copied and
// only a single instance of KDPtrPair holds a specific data pointer.
template <typename Key, typename Data>
class KDPtrPair {
public:
KDPtrPair() : data_(NULL) {}
KDPtrPair(Key k, Data* d) : data_(d), key_(k) {}
// Copy constructor steals the pointer from src and NULLs it in src, thereby
// moving the (single) ownership of the data.
KDPtrPair(KDPtrPair& src) : data_(src.data_), key_(src.key_) {
src.data_ = NULL;
}
// Destructor deletes data, assuming it is the sole owner.
~KDPtrPair() {
delete this->data_;
this->data_ = NULL;
}
// Operator= steals the pointer from src and NULLs it in src, thereby
// moving the (single) ownership of the data.
void operator=(KDPtrPair& src) {
delete this->data_;
this->data_ = src.data_;
src.data_ = NULL;
this->key_ = src.key_;
}
int operator==(const KDPtrPair<Key, Data>& other) const {
return key_ == other.key_;
}
// Accessors.
const Key& key() const {
return key_;
}
void set_key(const Key& new_key) {
key_ = new_key;
}
const Data* data() const {
return data_;
}
// Sets the data pointer, taking ownership of the data.
void set_data(Data* new_data) {
delete data_;
data_ = new_data;
}
// Relinquishes ownership of the data pointer (setting it to NULL).
Data* extract_data() {
Data* result = data_;
data_ = NULL;
return result;
}
private:
// Data members are private to keep deletion of data_ encapsulated.
Data* data_;
Key key_;
};
// Specialization of KDPtrPair to provide operator< for sorting in increasing
// order.
template <typename Key, typename Data>
struct KDPtrPairInc : public KDPtrPair<Key, Data> {
// Since we are doing non-standard stuff we have to duplicate *all* the
// constructors and operator=.
KDPtrPairInc() : KDPtrPair<Key, Data>() {}
KDPtrPairInc(Key k, Data* d) : KDPtrPair<Key, Data>(k, d) {}
KDPtrPairInc(KDPtrPairInc& src) : KDPtrPair<Key, Data>(src) {}
void operator=(KDPtrPairInc& src) {
KDPtrPair<Key, Data>::operator=(src);
}
// Operator< facilitates sorting in increasing order.
int operator<(const KDPtrPairInc<Key, Data>& other) const {
return this->key() < other.key();
}
};
// Specialization of KDPtrPair to provide operator< for sorting in decreasing
// order.
template <typename Key, typename Data>
struct KDPtrPairDec : public KDPtrPair<Key, Data> {
// Since we are doing non-standard stuff we have to duplicate *all* the
// constructors and operator=.
KDPtrPairDec() : KDPtrPair<Key, Data>() {}
KDPtrPairDec(Key k, Data* d) : KDPtrPair<Key, Data>(k, d) {}
KDPtrPairDec(KDPtrPairDec& src) : KDPtrPair<Key, Data>(src) {}
void operator=(KDPtrPairDec& src) {
KDPtrPair<Key, Data>::operator=(src);
}
// Operator< facilitates sorting in decreasing order by using operator> on
// the key values.
int operator<(const KDPtrPairDec<Key, Data>& other) const {
return this->key() > other.key();
}
};
// Specialization for a pair of ints in increasing order.
typedef KDPairInc<int, int> IntKDPair;
// Vector of IntKDPair.
class KDVector : public GenericVector<IntKDPair> {
// TODO(rays) Add some code to manipulate a KDVector. For now there
// is nothing and this class is effectively a specialization typedef.
};
} // namespace tesseract
#endif // TESSERACT_CCUTIL_KDPAIR_H_
| 1080228-arabicocr11 | ccutil/kdpair.h | C++ | asf20 | 6,974 |
/**********************************************************************
* File: elst2.c (Formerly elist2.c)
* Description: Doubly linked embedded list code not in the include file.
* Author: Phil Cheatle
* Created: Wed Jan 23 11:04:47 GMT 1991
*
* (C) Copyright 1991, Hewlett-Packard Ltd.
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
** http://www.apache.org/licenses/LICENSE-2.0
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*
**********************************************************************/
#include <stdlib.h>
#include "host.h"
#include "elst2.h"
/***********************************************************************
* MEMBER FUNCTIONS OF CLASS: ELIST2
* =================================
**********************************************************************/
/***********************************************************************
* ELIST2::internal_clear
*
* Used by the destructor and the "clear" member function of derived list
* classes to destroy all the elements on the list.
* The calling function passes a "zapper" function which can be called to
* delete each element of the list, regardless of its derived type. This
* technique permits a generic clear function to destroy elements of
* different derived types correctly, without requiring virtual functions and
* the consequential memory overhead.
**********************************************************************/
void
ELIST2::internal_clear ( //destroy all links
void (*zapper) (ELIST2_LINK *)) {
//ptr to zapper functn
ELIST2_LINK *ptr;
ELIST2_LINK *next;
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("ELIST2::internal_clear", ABORT, NULL);
#endif
if (!empty ()) {
ptr = last->next; //set to first
last->next = NULL; //break circle
last = NULL; //set list empty
while (ptr) {
next = ptr->next;
zapper(ptr);
ptr = next;
}
}
}
/***********************************************************************
* ELIST2::assign_to_sublist
*
* The list is set to a sublist of another list. "This" list must be empty
* before this function is invoked. The two iterators passed must refer to
* the same list, different from "this" one. The sublist removed is the
* inclusive list from start_it's current position to end_it's current
* position. If this range passes over the end of the source list then the
* source list has its end set to the previous element of start_it. The
* extracted sublist is unaffected by the end point of the source list, its
* end point is always the end_it position.
**********************************************************************/
void ELIST2::assign_to_sublist( //to this list
ELIST2_ITERATOR *start_it, //from list start
ELIST2_ITERATOR *end_it) { //from list end
const ERRCODE LIST_NOT_EMPTY =
"Destination list must be empty before extracting a sublist";
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("ELIST2::assign_to_sublist", ABORT, NULL);
#endif
if (!empty ())
LIST_NOT_EMPTY.error ("ELIST2.assign_to_sublist", ABORT, NULL);
last = start_it->extract_sublist (end_it);
}
/***********************************************************************
* ELIST2::length
*
* Return count of elements on list
**********************************************************************/
inT32 ELIST2::length() const { // count elements
ELIST2_ITERATOR it(const_cast<ELIST2*>(this));
inT32 count = 0;
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("ELIST2::length", ABORT, NULL);
#endif
for (it.mark_cycle_pt (); !it.cycled_list (); it.forward ())
count++;
return count;
}
/***********************************************************************
* ELIST2::sort
*
* Sort elements on list
* NB If you dont like the const declarations in the comparator, coerce yours:
* ( int (*)(const void *, const void *)
**********************************************************************/
void
ELIST2::sort ( //sort elements
int comparator ( //comparison routine
const void *, const void *)) {
ELIST2_ITERATOR it(this);
inT32 count;
ELIST2_LINK **base; //ptr array to sort
ELIST2_LINK **current;
inT32 i;
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("ELIST2::sort", ABORT, NULL);
#endif
/* Allocate an array of pointers, one per list element */
count = length ();
base = (ELIST2_LINK **) malloc (count * sizeof (ELIST2_LINK *));
/* Extract all elements, putting the pointers in the array */
current = base;
for (it.mark_cycle_pt (); !it.cycled_list (); it.forward ()) {
*current = it.extract ();
current++;
}
/* Sort the pointer array */
qsort ((char *) base, count, sizeof (*base), comparator);
/* Rebuild the list from the sorted pointers */
current = base;
for (i = 0; i < count; i++) {
it.add_to_end (*current);
current++;
}
free(base);
}
// Assuming list has been sorted already, insert new_link to
// keep the list sorted according to the same comparison function.
// Comparision function is the same as used by sort, i.e. uses double
// indirection. Time is O(1) to add to beginning or end.
// Time is linear to add pre-sorted items to an empty list.
void ELIST2::add_sorted(int comparator(const void*, const void*),
ELIST2_LINK* new_link) {
// Check for adding at the end.
if (last == NULL || comparator(&last, &new_link) < 0) {
if (last == NULL) {
new_link->next = new_link;
new_link->prev = new_link;
} else {
new_link->next = last->next;
new_link->prev = last;
last->next = new_link;
new_link->next->prev = new_link;
}
last = new_link;
} else {
// Need to use an iterator.
ELIST2_ITERATOR it(this);
for (it.mark_cycle_pt(); !it.cycled_list(); it.forward()) {
ELIST2_LINK* link = it.data();
if (comparator(&link, &new_link) > 0)
break;
}
if (it.cycled_list())
it.add_to_end(new_link);
else
it.add_before_then_move(new_link);
}
}
/***********************************************************************
* MEMBER FUNCTIONS OF CLASS: ELIST2_ITERATOR
* ==========================================
**********************************************************************/
/***********************************************************************
* ELIST2_ITERATOR::forward
*
* Move the iterator to the next element of the list.
* REMEMBER: ALL LISTS ARE CIRCULAR.
**********************************************************************/
ELIST2_LINK *ELIST2_ITERATOR::forward() {
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("ELIST2_ITERATOR::forward", ABORT, NULL);
if (!list)
NO_LIST.error ("ELIST2_ITERATOR::forward", ABORT, NULL);
#endif
if (list->empty ())
return NULL;
if (current) { //not removed so
//set previous
prev = current;
started_cycling = TRUE;
// In case next is deleted by another iterator, get it from the current.
current = current->next;
}
else {
if (ex_current_was_cycle_pt)
cycle_pt = next;
current = next;
}
next = current->next;
#ifndef NDEBUG
if (!current)
NULL_DATA.error ("ELIST2_ITERATOR::forward", ABORT, NULL);
if (!next)
NULL_NEXT.error ("ELIST2_ITERATOR::forward", ABORT,
"This is: %p Current is: %p", this, current);
#endif
return current;
}
/***********************************************************************
* ELIST2_ITERATOR::backward
*
* Move the iterator to the previous element of the list.
* REMEMBER: ALL LISTS ARE CIRCULAR.
**********************************************************************/
ELIST2_LINK *ELIST2_ITERATOR::backward() {
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("ELIST2_ITERATOR::backward", ABORT, NULL);
if (!list)
NO_LIST.error ("ELIST2_ITERATOR::backward", ABORT, NULL);
#endif
if (list->empty ())
return NULL;
if (current) { //not removed so
//set previous
next = current;
started_cycling = TRUE;
// In case prev is deleted by another iterator, get it from current.
current = current->prev;
} else {
if (ex_current_was_cycle_pt)
cycle_pt = prev;
current = prev;
}
prev = current->prev;
#ifndef NDEBUG
if (!current)
NULL_DATA.error ("ELIST2_ITERATOR::backward", ABORT, NULL);
if (!prev)
NULL_PREV.error ("ELIST2_ITERATOR::backward", ABORT,
"This is: %p Current is: %p", this, current);
#endif
return current;
}
/***********************************************************************
* ELIST2_ITERATOR::data_relative
*
* Return the data pointer to the element "offset" elements from current.
* (This function can't be INLINEd because it contains a loop)
**********************************************************************/
ELIST2_LINK *ELIST2_ITERATOR::data_relative( //get data + or - ..
inT8 offset) { //offset from current
ELIST2_LINK *ptr;
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("ELIST2_ITERATOR::data_relative", ABORT, NULL);
if (!list)
NO_LIST.error ("ELIST2_ITERATOR::data_relative", ABORT, NULL);
if (list->empty ())
EMPTY_LIST.error ("ELIST2_ITERATOR::data_relative", ABORT, NULL);
#endif
if (offset < 0)
for (ptr = current ? current : next; offset++ < 0; ptr = ptr->prev);
else
for (ptr = current ? current : prev; offset-- > 0; ptr = ptr->next);
#ifndef NDEBUG
if (!ptr)
NULL_DATA.error ("ELIST2_ITERATOR::data_relative", ABORT, NULL);
#endif
return ptr;
}
/***********************************************************************
* ELIST2_ITERATOR::exchange()
*
* Given another iterator, whose current element is a different element on
* the same list list OR an element of another list, exchange the two current
* elements. On return, each iterator points to the element which was the
* other iterators current on entry.
* (This function hasn't been in-lined because its a bit big!)
**********************************************************************/
void ELIST2_ITERATOR::exchange( //positions of 2 links
ELIST2_ITERATOR *other_it) { //other iterator
const ERRCODE DONT_EXCHANGE_DELETED =
"Can't exchange deleted elements of lists";
ELIST2_LINK *old_current;
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("ELIST2_ITERATOR::exchange", ABORT, NULL);
if (!list)
NO_LIST.error ("ELIST2_ITERATOR::exchange", ABORT, NULL);
if (!other_it)
BAD_PARAMETER.error ("ELIST2_ITERATOR::exchange", ABORT, "other_it NULL");
if (!(other_it->list))
NO_LIST.error ("ELIST2_ITERATOR::exchange", ABORT, "other_it");
#endif
/* Do nothing if either list is empty or if both iterators reference the same
link */
if ((list->empty ()) ||
(other_it->list->empty ()) || (current == other_it->current))
return;
/* Error if either current element is deleted */
if (!current || !other_it->current)
DONT_EXCHANGE_DELETED.error ("ELIST2_ITERATOR.exchange", ABORT, NULL);
/* Now handle the 4 cases: doubleton list; non-doubleton adjacent elements
(other before this); non-doubleton adjacent elements (this before other);
non-adjacent elements. */
//adjacent links
if ((next == other_it->current) ||
(other_it->next == current)) {
//doubleton list
if ((next == other_it->current) &&
(other_it->next == current)) {
prev = next = current;
other_it->prev = other_it->next = other_it->current;
}
else { //non-doubleton with
//adjacent links
//other before this
if (other_it->next == current) {
other_it->prev->next = current;
other_it->current->next = next;
other_it->current->prev = current;
current->next = other_it->current;
current->prev = other_it->prev;
next->prev = other_it->current;
other_it->next = other_it->current;
prev = current;
}
else { //this before other
prev->next = other_it->current;
current->next = other_it->next;
current->prev = other_it->current;
other_it->current->next = current;
other_it->current->prev = prev;
other_it->next->prev = current;
next = current;
other_it->prev = other_it->current;
}
}
}
else { //no overlap
prev->next = other_it->current;
current->next = other_it->next;
current->prev = other_it->prev;
next->prev = other_it->current;
other_it->prev->next = current;
other_it->current->next = next;
other_it->current->prev = prev;
other_it->next->prev = current;
}
/* update end of list pointer when necessary (remember that the 2 iterators
may iterate over different lists!) */
if (list->last == current)
list->last = other_it->current;
if (other_it->list->last == other_it->current)
other_it->list->last = current;
if (current == cycle_pt)
cycle_pt = other_it->cycle_pt;
if (other_it->current == other_it->cycle_pt)
other_it->cycle_pt = cycle_pt;
/* The actual exchange - in all cases*/
old_current = current;
current = other_it->current;
other_it->current = old_current;
}
/***********************************************************************
* ELIST2_ITERATOR::extract_sublist()
*
* This is a private member, used only by ELIST2::assign_to_sublist.
* Given another iterator for the same list, extract the links from THIS to
* OTHER inclusive, link them into a new circular list, and return a
* pointer to the last element.
* (Can't inline this function because it contains a loop)
**********************************************************************/
ELIST2_LINK *ELIST2_ITERATOR::extract_sublist( //from this current
ELIST2_ITERATOR *other_it) { //to other current
#ifndef NDEBUG
const ERRCODE BAD_EXTRACTION_PTS =
"Can't extract sublist from points on different lists";
const ERRCODE DONT_EXTRACT_DELETED =
"Can't extract a sublist marked by deleted points";
#endif
const ERRCODE BAD_SUBLIST = "Can't find sublist end point in original list";
ELIST2_ITERATOR temp_it = *this;
ELIST2_LINK *end_of_new_list;
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("ELIST2_ITERATOR::extract_sublist", ABORT, NULL);
if (!other_it)
BAD_PARAMETER.error ("ELIST2_ITERATOR::extract_sublist", ABORT,
"other_it NULL");
if (!list)
NO_LIST.error ("ELIST2_ITERATOR::extract_sublist", ABORT, NULL);
if (list != other_it->list)
BAD_EXTRACTION_PTS.error ("ELIST2_ITERATOR.extract_sublist", ABORT, NULL);
if (list->empty ())
EMPTY_LIST.error ("ELIST2_ITERATOR::extract_sublist", ABORT, NULL);
if (!current || !other_it->current)
DONT_EXTRACT_DELETED.error ("ELIST2_ITERATOR.extract_sublist", ABORT,
NULL);
#endif
ex_current_was_last = other_it->ex_current_was_last = FALSE;
ex_current_was_cycle_pt = FALSE;
other_it->ex_current_was_cycle_pt = FALSE;
temp_it.mark_cycle_pt ();
do { //walk sublist
if (temp_it.cycled_list ()) //cant find end pt
BAD_SUBLIST.error ("ELIST2_ITERATOR.extract_sublist", ABORT, NULL);
if (temp_it.at_last ()) {
list->last = prev;
ex_current_was_last = other_it->ex_current_was_last = TRUE;
}
if (temp_it.current == cycle_pt)
ex_current_was_cycle_pt = TRUE;
if (temp_it.current == other_it->cycle_pt)
other_it->ex_current_was_cycle_pt = TRUE;
temp_it.forward ();
}
//do INCLUSIVE list
while (temp_it.prev != other_it->current);
//circularise sublist
other_it->current->next = current;
//circularise sublist
current->prev = other_it->current;
end_of_new_list = other_it->current;
//sublist = whole list
if (prev == other_it->current) {
list->last = NULL;
prev = current = next = NULL;
other_it->prev = other_it->current = other_it->next = NULL;
}
else {
prev->next = other_it->next;
other_it->next->prev = prev;
current = other_it->current = NULL;
next = other_it->next;
other_it->prev = prev;
}
return end_of_new_list;
}
| 1080228-arabicocr11 | ccutil/elst2.cpp | C++ | asf20 | 17,322 |
/**********************************************************************
* File: strngs.c (Formerly strings.c)
* Description: STRING class functions.
* Author: Ray Smith
* Created: Fri Feb 15 09:13:30 GMT 1991
*
* (C) Copyright 1991, Hewlett-Packard Ltd.
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
** http://www.apache.org/licenses/LICENSE-2.0
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*
**********************************************************************/
#include "strngs.h"
#include <assert.h>
#include "genericvector.h"
#include "helpers.h"
#include "serialis.h"
#include "tprintf.h"
using tesseract::TFile;
// Size of buffer needed to host the decimal representation of the maximum
// possible length of an int (in 64 bits), being -<20 digits>.
const int kMaxIntSize = 22;
// Size of buffer needed to host the decimal representation of the maximum
// possible length of a %.8g being -0.12345678e+999<nul> = 15.
const int kMaxDoubleSize = 15;
/**********************************************************************
* STRING_HEADER provides metadata about the allocated buffer,
* including total capacity and how much used (strlen with '\0').
*
* The implementation hides this header at the start of the data
* buffer and appends the string on the end to keep sizeof(STRING)
* unchanged from earlier versions so serialization is not affected.
*
* The collection of MACROS provide different implementations depending
* on whether the string keeps track of its strlen or not so that this
* feature can be added in later when consumers dont modifify the string
**********************************************************************/
// Smallest string to allocate by default
const int kMinCapacity = 16;
char* STRING::AllocData(int used, int capacity) {
data_ = (STRING_HEADER *)alloc_string(capacity + sizeof(STRING_HEADER));
// header is the metadata for this memory block
STRING_HEADER* header = GetHeader();
header->capacity_ = capacity;
header->used_ = used;
return GetCStr();
}
void STRING::DiscardData() {
free_string((char *)data_);
}
// This is a private method; ensure FixHeader is called (or used_ is well defined)
// beforehand
char* STRING::ensure_cstr(inT32 min_capacity) {
STRING_HEADER* orig_header = GetHeader();
if (min_capacity <= orig_header->capacity_)
return ((char *)this->data_) + sizeof(STRING_HEADER);
// if we are going to grow bigger, than double our existing
// size, but if that still is not big enough then keep the
// requested capacity
if (min_capacity < 2 * orig_header->capacity_)
min_capacity = 2 * orig_header->capacity_;
int alloc = sizeof(STRING_HEADER) + min_capacity;
STRING_HEADER* new_header = (STRING_HEADER*)(alloc_string(alloc));
memcpy(&new_header[1], GetCStr(), orig_header->used_);
new_header->capacity_ = min_capacity;
new_header->used_ = orig_header->used_;
// free old memory, then rebind to new memory
DiscardData();
data_ = new_header;
assert(InvariantOk());
return ((char *)data_) + sizeof(STRING_HEADER);
}
// This is const, but is modifying a mutable field
// this way it can be used on const or non-const instances.
void STRING::FixHeader() const {
const STRING_HEADER* header = GetHeader();
if (header->used_ < 0)
header->used_ = strlen(GetCStr()) + 1;
}
STRING::STRING() {
// Empty STRINGs contain just the "\0".
memcpy(AllocData(1, kMinCapacity), "", 1);
}
STRING::STRING(const STRING& str) {
str.FixHeader();
const STRING_HEADER* str_header = str.GetHeader();
int str_used = str_header->used_;
char *this_cstr = AllocData(str_used, str_used);
memcpy(this_cstr, str.GetCStr(), str_used);
assert(InvariantOk());
}
STRING::STRING(const char* cstr) {
if (cstr == NULL) {
// Empty STRINGs contain just the "\0".
memcpy(AllocData(1, kMinCapacity), "", 1);
} else {
int len = strlen(cstr) + 1;
char* this_cstr = AllocData(len, len);
memcpy(this_cstr, cstr, len);
}
assert(InvariantOk());
}
STRING::STRING(const char *data, int length) {
if (data == NULL) {
// Empty STRINGs contain just the "\0".
memcpy(AllocData(1, kMinCapacity), "", 1);
} else {
char* this_cstr = AllocData(length + 1, length + 1);
memcpy(this_cstr, data, length);
this_cstr[length] = '\0';
}
}
STRING::~STRING() {
DiscardData();
}
// TODO(rays) Change all callers to use TFile and remove the old functions.
// Writes to the given file. Returns false in case of error.
bool STRING::Serialize(FILE* fp) const {
inT32 len = length();
if (fwrite(&len, sizeof(len), 1, fp) != 1) return false;
if (static_cast<int>(fwrite(GetCStr(), 1, len, fp)) != len) return false;
return true;
}
// Writes to the given file. Returns false in case of error.
bool STRING::Serialize(TFile* fp) const {
inT32 len = length();
if (fp->FWrite(&len, sizeof(len), 1) != 1) return false;
if (fp->FWrite(GetCStr(), 1, len) != len) return false;
return true;
}
// Reads from the given file. Returns false in case of error.
// If swap is true, assumes a big/little-endian swap is needed.
bool STRING::DeSerialize(bool swap, FILE* fp) {
inT32 len;
if (fread(&len, sizeof(len), 1, fp) != 1) return false;
if (swap)
ReverseN(&len, sizeof(len));
truncate_at(len);
if (static_cast<int>(fread(GetCStr(), 1, len, fp)) != len) return false;
return true;
}
// Reads from the given file. Returns false in case of error.
// If swap is true, assumes a big/little-endian swap is needed.
bool STRING::DeSerialize(bool swap, TFile* fp) {
inT32 len;
if (fp->FRead(&len, sizeof(len), 1) != 1) return false;
if (swap)
ReverseN(&len, sizeof(len));
truncate_at(len);
if (fp->FRead(GetCStr(), 1, len) != len) return false;
return true;
}
BOOL8 STRING::contains(const char c) const {
return (c != '\0') && (strchr (GetCStr(), c) != NULL);
}
inT32 STRING::length() const {
FixHeader();
return GetHeader()->used_ - 1;
}
const char* STRING::string() const {
const STRING_HEADER* header = GetHeader();
if (header->used_ == 0)
return NULL;
// mark header length unreliable because tesseract might
// cast away the const and mutate the string directly.
header->used_ = -1;
return GetCStr();
}
const char* STRING::c_str() const {
return string();
}
/******
* The STRING_IS_PROTECTED interface adds additional support to migrate
* code that needs to modify the STRING in ways not otherwise supported
* without violating encapsulation.
*
* Also makes the [] operator return a const so it is immutable
*/
#if STRING_IS_PROTECTED
const char& STRING::operator[](inT32 index) const {
return GetCStr()[index];
}
void STRING::insert_range(inT32 index, const char* str, int len) {
// if index is outside current range, then also grow size of string
// to accmodate the requested range.
STRING_HEADER* this_header = GetHeader();
int used = this_header->used_;
if (index > used)
used = index;
char* this_cstr = ensure_cstr(used + len + 1);
if (index < used) {
// move existing string from index to '\0' inclusive.
memmove(this_cstr + index + len,
this_cstr + index,
this_header->used_ - index);
} else if (len > 0) {
// We are going to overwrite previous null terminator, so write the new one.
this_cstr[this_header->used_ + len - 1] = '\0';
// If the old header did not have the terminator,
// then we need to account for it now that we've added it.
// Otherwise it was already accounted for; we just moved it.
if (this_header->used_ == 0)
++this_header->used_;
}
// Write new string to index.
// The string is already terminated from the conditions above.
memcpy(this_cstr + index, str, len);
this_header->used_ += len;
assert(InvariantOk());
}
void STRING::erase_range(inT32 index, int len) {
char* this_cstr = GetCStr();
STRING_HEADER* this_header = GetHeader();
memcpy(this_cstr+index, this_cstr+index+len,
this_header->used_ - index - len);
this_header->used_ -= len;
assert(InvariantOk());
}
#else
void STRING::truncate_at(inT32 index) {
ASSERT_HOST(index >= 0);
FixHeader();
char* this_cstr = ensure_cstr(index + 1);
this_cstr[index] = '\0';
GetHeader()->used_ = index + 1;
assert(InvariantOk());
}
char& STRING::operator[](inT32 index) const {
// Code is casting away this const and mutating the string,
// so mark used_ as -1 to flag it unreliable.
GetHeader()->used_ = -1;
return ((char *)GetCStr())[index];
}
#endif
void STRING::split(const char c, GenericVector<STRING> *splited) {
int start_index = 0;
int len = length();
for (int i = 0; i < len; i++) {
if ((*this)[i] == c) {
if (i != start_index) {
(*this)[i] = '\0';
splited->push_back(STRING(GetCStr() + start_index, i - start_index));
(*this)[i] = c;
}
start_index = i + 1;
}
}
if (len != start_index) {
splited->push_back(STRING(GetCStr() + start_index, len - start_index));
}
}
BOOL8 STRING::operator==(const STRING& str) const {
FixHeader();
str.FixHeader();
const STRING_HEADER* str_header = str.GetHeader();
const STRING_HEADER* this_header = GetHeader();
int this_used = this_header->used_;
int str_used = str_header->used_;
return (this_used == str_used)
&& (memcmp(GetCStr(), str.GetCStr(), this_used) == 0);
}
BOOL8 STRING::operator!=(const STRING& str) const {
FixHeader();
str.FixHeader();
const STRING_HEADER* str_header = str.GetHeader();
const STRING_HEADER* this_header = GetHeader();
int this_used = this_header->used_;
int str_used = str_header->used_;
return (this_used != str_used)
|| (memcmp(GetCStr(), str.GetCStr(), this_used) != 0);
}
BOOL8 STRING::operator!=(const char* cstr) const {
FixHeader();
const STRING_HEADER* this_header = GetHeader();
if (cstr == NULL)
return this_header->used_ > 1; // either '\0' or NULL
else {
inT32 length = strlen(cstr) + 1;
return (this_header->used_ != length)
|| (memcmp(GetCStr(), cstr, length) != 0);
}
}
STRING& STRING::operator=(const STRING& str) {
str.FixHeader();
const STRING_HEADER* str_header = str.GetHeader();
int str_used = str_header->used_;
GetHeader()->used_ = 0; // clear since ensure doesnt need to copy data
char* this_cstr = ensure_cstr(str_used);
STRING_HEADER* this_header = GetHeader();
memcpy(this_cstr, str.GetCStr(), str_used);
this_header->used_ = str_used;
assert(InvariantOk());
return *this;
}
STRING & STRING::operator+=(const STRING& str) {
FixHeader();
str.FixHeader();
const STRING_HEADER* str_header = str.GetHeader();
const char* str_cstr = str.GetCStr();
int str_used = str_header->used_;
int this_used = GetHeader()->used_;
char* this_cstr = ensure_cstr(this_used + str_used);
STRING_HEADER* this_header = GetHeader(); // after ensure for realloc
if (this_used > 1) {
memcpy(this_cstr + this_used - 1, str_cstr, str_used);
this_header->used_ += str_used - 1; // overwrite '\0'
} else {
memcpy(this_cstr, str_cstr, str_used);
this_header->used_ = str_used;
}
assert(InvariantOk());
return *this;
}
void STRING::add_str_int(const char* str, int number) {
if (str != NULL)
*this += str;
// Allow space for the maximum possible length of inT64.
char num_buffer[kMaxIntSize];
snprintf(num_buffer, kMaxIntSize - 1, "%d", number);
num_buffer[kMaxIntSize - 1] = '\0';
*this += num_buffer;
}
// Appends the given string and double (as a %.8g) to this.
void STRING::add_str_double(const char* str, double number) {
if (str != NULL)
*this += str;
// Allow space for the maximum possible length of %8g.
char num_buffer[kMaxDoubleSize];
snprintf(num_buffer, kMaxDoubleSize - 1, "%.8g", number);
num_buffer[kMaxDoubleSize - 1] = '\0';
*this += num_buffer;
}
STRING & STRING::operator=(const char* cstr) {
STRING_HEADER* this_header = GetHeader();
if (cstr) {
int len = strlen(cstr) + 1;
this_header->used_ = 0; // dont bother copying data if need to realloc
char* this_cstr = ensure_cstr(len);
this_header = GetHeader(); // for realloc
memcpy(this_cstr, cstr, len);
this_header->used_ = len;
} else {
// Reallocate to same state as default constructor.
DiscardData();
// Empty STRINGs contain just the "\0".
memcpy(AllocData(1, kMinCapacity), "", 1);
}
assert(InvariantOk());
return *this;
}
void STRING::assign(const char *cstr, int len) {
STRING_HEADER* this_header = GetHeader();
this_header->used_ = 0; // dont bother copying data if need to realloc
char* this_cstr = ensure_cstr(len + 1); // +1 for '\0'
this_header = GetHeader(); // for realloc
memcpy(this_cstr, cstr, len);
this_cstr[len] = '\0';
this_header->used_ = len + 1;
assert(InvariantOk());
}
STRING STRING::operator+(const STRING& str) const {
STRING result(*this);
result += str;
assert(InvariantOk());
return result;
}
STRING STRING::operator+(const char ch) const {
STRING result;
FixHeader();
const STRING_HEADER* this_header = GetHeader();
int this_used = this_header->used_;
char* result_cstr = result.ensure_cstr(this_used + 1);
STRING_HEADER* result_header = result.GetHeader();
int result_used = result_header->used_;
// copies '\0' but we'll overwrite that
memcpy(result_cstr, GetCStr(), this_used);
result_cstr[result_used] = ch; // overwrite old '\0'
result_cstr[result_used + 1] = '\0'; // append on '\0'
++result_header->used_;
assert(InvariantOk());
return result;
}
STRING& STRING::operator+=(const char *str) {
if (!str || !*str) // empty string has no effect
return *this;
FixHeader();
int len = strlen(str) + 1;
int this_used = GetHeader()->used_;
char* this_cstr = ensure_cstr(this_used + len);
STRING_HEADER* this_header = GetHeader(); // after ensure for realloc
// if we had non-empty string then append overwriting old '\0'
// otherwise replace
if (this_used > 0) {
memcpy(this_cstr + this_used - 1, str, len);
this_header->used_ += len - 1;
} else {
memcpy(this_cstr, str, len);
this_header->used_ = len;
}
assert(InvariantOk());
return *this;
}
STRING& STRING::operator+=(const char ch) {
if (ch == '\0')
return *this;
FixHeader();
int this_used = GetHeader()->used_;
char* this_cstr = ensure_cstr(this_used + 1);
STRING_HEADER* this_header = GetHeader();
if (this_used > 0)
--this_used; // undo old empty null if there was one
this_cstr[this_used++] = ch; // append ch to end
this_cstr[this_used++] = '\0'; // append '\0' after ch
this_header->used_ = this_used;
assert(InvariantOk());
return *this;
}
| 1080228-arabicocr11 | ccutil/strngs.cpp | C++ | asf20 | 15,141 |
/**********************************************************************
* File: clst.c (Formerly clist.c)
* Description: CONS cell list handling code which is not in the include file.
* Author: Phil Cheatle
* Created: Mon Jan 28 08:33:13 GMT 1991
*
* (C) Copyright 1991, Hewlett-Packard Ltd.
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
** http://www.apache.org/licenses/LICENSE-2.0
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*
**********************************************************************/
#include <stdlib.h>
#include "clst.h"
/***********************************************************************
* MEMBER FUNCTIONS OF CLASS: CLIST
* ================================
**********************************************************************/
/***********************************************************************
* CLIST::internal_deep_clear
*
* Used by the "deep_clear" member function of derived list
* classes to destroy all the elements on the list.
* The calling function passes a "zapper" function which can be called to
* delete each data element of the list, regardless of its class. This
* technique permits a generic clear function to destroy elements of
* different derived types correctly, without requiring virtual functions and
* the consequential memory overhead.
**********************************************************************/
void
CLIST::internal_deep_clear ( //destroy all links
void (*zapper) (void *)) { //ptr to zapper functn
CLIST_LINK *ptr;
CLIST_LINK *next;
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("CLIST::internal_deep_clear", ABORT, NULL);
#endif
if (!empty ()) {
ptr = last->next; //set to first
last->next = NULL; //break circle
last = NULL; //set list empty
while (ptr) {
next = ptr->next;
zapper (ptr->data);
delete(ptr);
ptr = next;
}
}
}
/***********************************************************************
* CLIST::shallow_clear
*
* Used by the destructor and the "shallow_clear" member function of derived
* list classes to destroy the list.
* The data elements are NOT destroyed.
*
**********************************************************************/
void CLIST::shallow_clear() { //destroy all links
CLIST_LINK *ptr;
CLIST_LINK *next;
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("CLIST::shallow_clear", ABORT, NULL);
#endif
if (!empty ()) {
ptr = last->next; //set to first
last->next = NULL; //break circle
last = NULL; //set list empty
while (ptr) {
next = ptr->next;
delete(ptr);
ptr = next;
}
}
}
/***********************************************************************
* CLIST::assign_to_sublist
*
* The list is set to a sublist of another list. "This" list must be empty
* before this function is invoked. The two iterators passed must refer to
* the same list, different from "this" one. The sublist removed is the
* inclusive list from start_it's current position to end_it's current
* position. If this range passes over the end of the source list then the
* source list has its end set to the previous element of start_it. The
* extracted sublist is unaffected by the end point of the source list, its
* end point is always the end_it position.
**********************************************************************/
void CLIST::assign_to_sublist( //to this list
CLIST_ITERATOR *start_it, //from list start
CLIST_ITERATOR *end_it) { //from list end
const ERRCODE LIST_NOT_EMPTY =
"Destination list must be empty before extracting a sublist";
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("CLIST::assign_to_sublist", ABORT, NULL);
#endif
if (!empty ())
LIST_NOT_EMPTY.error ("CLIST.assign_to_sublist", ABORT, NULL);
last = start_it->extract_sublist (end_it);
}
/***********************************************************************
* CLIST::length
*
* Return count of elements on list
**********************************************************************/
inT32 CLIST::length() const { //count elements
CLIST_ITERATOR it(const_cast<CLIST*>(this));
inT32 count = 0;
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("CLIST::length", ABORT, NULL);
#endif
for (it.mark_cycle_pt(); !it.cycled_list(); it.forward())
count++;
return count;
}
/***********************************************************************
* CLIST::sort
*
* Sort elements on list
**********************************************************************/
void
CLIST::sort ( //sort elements
int comparator ( //comparison routine
const void *, const void *)) {
CLIST_ITERATOR it(this);
inT32 count;
void **base; //ptr array to sort
void **current;
inT32 i;
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("CLIST::sort", ABORT, NULL);
#endif
/* Allocate an array of pointers, one per list element */
count = length ();
base = (void **) malloc (count * sizeof (void *));
/* Extract all elements, putting the pointers in the array */
current = base;
for (it.mark_cycle_pt (); !it.cycled_list (); it.forward ()) {
*current = it.extract ();
current++;
}
/* Sort the pointer array */
qsort ((char *) base, count, sizeof (*base), comparator);
/* Rebuild the list from the sorted pointers */
current = base;
for (i = 0; i < count; i++) {
it.add_to_end (*current);
current++;
}
free(base);
}
// Assuming list has been sorted already, insert new_data to
// keep the list sorted according to the same comparison function.
// Comparision function is the same as used by sort, i.e. uses double
// indirection. Time is O(1) to add to beginning or end.
// Time is linear to add pre-sorted items to an empty list.
// If unique, then don't add duplicate entries.
// Returns true if the element was added to the list.
bool CLIST::add_sorted(int comparator(const void*, const void*),
bool unique, void* new_data) {
// Check for adding at the end.
if (last == NULL || comparator(&last->data, &new_data) < 0) {
CLIST_LINK* new_element = new CLIST_LINK;
new_element->data = new_data;
if (last == NULL) {
new_element->next = new_element;
} else {
new_element->next = last->next;
last->next = new_element;
}
last = new_element;
return true;
} else if (!unique || last->data != new_data) {
// Need to use an iterator.
CLIST_ITERATOR it(this);
for (it.mark_cycle_pt(); !it.cycled_list(); it.forward()) {
void* data = it.data();
if (data == new_data && unique)
return false;
if (comparator(&data, &new_data) > 0)
break;
}
if (it.cycled_list())
it.add_to_end(new_data);
else
it.add_before_then_move(new_data);
return true;
}
return false;
}
// Assuming that the minuend and subtrahend are already sorted with
// the same comparison function, shallow clears this and then copies
// the set difference minuend - subtrahend to this, being the elements
// of minuend that do not compare equal to anything in subtrahend.
// If unique is true, any duplicates in minuend are also eliminated.
void CLIST::set_subtract(int comparator(const void*, const void*),
bool unique,
CLIST* minuend, CLIST* subtrahend) {
shallow_clear();
CLIST_ITERATOR m_it(minuend);
CLIST_ITERATOR s_it(subtrahend);
// Since both lists are sorted, finding the subtras that are not
// minus is a case of a parallel iteration.
for (m_it.mark_cycle_pt(); !m_it.cycled_list(); m_it.forward()) {
void* minu = m_it.data();
void* subtra = NULL;
if (!s_it.empty()) {
subtra = s_it.data();
while (!s_it.at_last() &&
comparator(&subtra, &minu) < 0) {
s_it.forward();
subtra = s_it.data();
}
}
if (subtra == NULL || comparator(&subtra, &minu) != 0)
add_sorted(comparator, unique, minu);
}
}
/***********************************************************************
* MEMBER FUNCTIONS OF CLASS: CLIST_ITERATOR
* =========================================
**********************************************************************/
/***********************************************************************
* CLIST_ITERATOR::forward
*
* Move the iterator to the next element of the list.
* REMEMBER: ALL LISTS ARE CIRCULAR.
**********************************************************************/
void *CLIST_ITERATOR::forward() {
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("CLIST_ITERATOR::forward", ABORT, NULL);
if (!list)
NO_LIST.error ("CLIST_ITERATOR::forward", ABORT, NULL);
#endif
if (list->empty ())
return NULL;
if (current) { //not removed so
//set previous
prev = current;
started_cycling = TRUE;
// In case next is deleted by another iterator, get next from current.
current = current->next;
} else {
if (ex_current_was_cycle_pt)
cycle_pt = next;
current = next;
}
next = current->next;
#ifndef NDEBUG
if (!current)
NULL_DATA.error ("CLIST_ITERATOR::forward", ABORT, NULL);
if (!next)
NULL_NEXT.error ("CLIST_ITERATOR::forward", ABORT,
"This is: %p Current is: %p", this, current);
#endif
return current->data;
}
/***********************************************************************
* CLIST_ITERATOR::data_relative
*
* Return the data pointer to the element "offset" elements from current.
* "offset" must not be less than -1.
* (This function can't be INLINEd because it contains a loop)
**********************************************************************/
void *CLIST_ITERATOR::data_relative( //get data + or - ...
inT8 offset) { //offset from current
CLIST_LINK *ptr;
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("CLIST_ITERATOR::data_relative", ABORT, NULL);
if (!list)
NO_LIST.error ("CLIST_ITERATOR::data_relative", ABORT, NULL);
if (list->empty ())
EMPTY_LIST.error ("CLIST_ITERATOR::data_relative", ABORT, NULL);
if (offset < -1)
BAD_PARAMETER.error ("CLIST_ITERATOR::data_relative", ABORT,
"offset < -l");
#endif
if (offset == -1)
ptr = prev;
else
for (ptr = current ? current : prev; offset-- > 0; ptr = ptr->next);
#ifndef NDEBUG
if (!ptr)
NULL_DATA.error ("CLIST_ITERATOR::data_relative", ABORT, NULL);
#endif
return ptr->data;
}
/***********************************************************************
* CLIST_ITERATOR::move_to_last()
*
* Move current so that it is set to the end of the list.
* Return data just in case anyone wants it.
* (This function can't be INLINEd because it contains a loop)
**********************************************************************/
void *CLIST_ITERATOR::move_to_last() {
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("CLIST_ITERATOR::move_to_last", ABORT, NULL);
if (!list)
NO_LIST.error ("CLIST_ITERATOR::move_to_last", ABORT, NULL);
#endif
while (current != list->last)
forward();
if (current == NULL)
return NULL;
else
return current->data;
}
/***********************************************************************
* CLIST_ITERATOR::exchange()
*
* Given another iterator, whose current element is a different element on
* the same list list OR an element of another list, exchange the two current
* elements. On return, each iterator points to the element which was the
* other iterators current on entry.
* (This function hasn't been in-lined because its a bit big!)
**********************************************************************/
void CLIST_ITERATOR::exchange( //positions of 2 links
CLIST_ITERATOR *other_it) { //other iterator
const ERRCODE DONT_EXCHANGE_DELETED =
"Can't exchange deleted elements of lists";
CLIST_LINK *old_current;
#ifndef NDEBUG
if (!this)
NULL_OBJECT.error ("CLIST_ITERATOR::exchange", ABORT, NULL);
if (!list)
NO_LIST.error ("CLIST_ITERATOR::exchange", ABORT, NULL);
if (!other_it)
BAD_PARAMETER.error ("CLIST_ITERATOR::exchange", ABORT, "other_it NULL");
if (!(other_it->list))
NO_LIST.error ("CLIST_ITERATOR::exchange", ABORT, "other_it");
#endif
/* Do nothing if either list is empty or if both iterators reference the same
link */
if ((list->empty ()) ||
(other_it->list->empty ()) || (current == other_it->current))
return;
/* Error if either current element is deleted */
if (!current || !other_it->current)
DONT_EXCHANGE_DELETED.error ("CLIST_ITERATOR.exchange", ABORT, NULL);
/* Now handle the 4 cases: doubleton list; non-doubleton adjacent elements
(other before this); non-doubleton adjacent elements (this before other);
non-adjacent elements. */
//adjacent links
if ((next == other_it->current) ||
(other_it->next == current)) {
//doubleton list
if ((next == other_it->current) &&
(other_it->next == current)) {
prev = next = current;
other_it->prev = other_it->next = other_it->current;
}
else { //non-doubleton with
//adjacent links
//other before this
if (other_it->next == current) {
other_it->prev->next = current;
other_it->current->next = next;
current->next = other_it->current;
other_it->next = other_it->current;
prev = current;
}
else { //this before other
prev->next = other_it->current;
current->next = other_it->next;
other_it->current->next = current;
next = current;
other_it->prev = other_it->current;
}
}
}
else { //no overlap
prev->next = other_it->current;
current->next = other_it->next;
other_it->prev->next = current;
other_it->current->next = next;
}
/* update end of list pointer when necessary (remember that the 2 iterators
may iterate over different lists!) */
if (list->last == current)
list->last = other_it->current;
if (other_it->list->last == other_it->current)
other_it->list->last = current;
if (current == cycle_pt)
cycle_pt = other_it->cycle_pt;
if (other_it->current == other_it->cycle_pt)
other_it->cycle_pt = cycle_pt;
/* The actual exchange - in all cases*/
old_current = current;
current = other_it->current;
other_it->current = old_current;
}
/***********************************************************************
* CLIST_ITERATOR::extract_sublist()
*
* This is a private member, used only by CLIST::assign_to_sublist.
* Given another iterator for the same list, extract the links from THIS to
* OTHER inclusive, link them into a new circular list, and return a
* pointer to the last element.
* (Can't inline this function because it contains a loop)
**********************************************************************/
CLIST_LINK *CLIST_ITERATOR::extract_sublist( //from this current
CLIST_ITERATOR *other_it) { //to other current
CLIST_ITERATOR temp_it = *this;
CLIST_LINK *end_of_new_list;
const ERRCODE BAD_SUBLIST = "Can't find sublist end point in original list";
#ifndef NDEBUG
const ERRCODE BAD_EXTRACTION_PTS =
"Can't extract sublist from points on different lists";
const ERRCODE DONT_EXTRACT_DELETED =
"Can't extract a sublist marked by deleted points";
if (!this)
NULL_OBJECT.error ("CLIST_ITERATOR::extract_sublist", ABORT, NULL);
if (!other_it)
BAD_PARAMETER.error ("CLIST_ITERATOR::extract_sublist", ABORT,
"other_it NULL");
if (!list)
NO_LIST.error ("CLIST_ITERATOR::extract_sublist", ABORT, NULL);
if (list != other_it->list)
BAD_EXTRACTION_PTS.error ("CLIST_ITERATOR.extract_sublist", ABORT, NULL);
if (list->empty ())
EMPTY_LIST.error ("CLIST_ITERATOR::extract_sublist", ABORT, NULL);
if (!current || !other_it->current)
DONT_EXTRACT_DELETED.error ("CLIST_ITERATOR.extract_sublist", ABORT,
NULL);
#endif
ex_current_was_last = other_it->ex_current_was_last = FALSE;
ex_current_was_cycle_pt = FALSE;
other_it->ex_current_was_cycle_pt = FALSE;
temp_it.mark_cycle_pt ();
do { //walk sublist
if (temp_it.cycled_list ()) //cant find end pt
BAD_SUBLIST.error ("CLIST_ITERATOR.extract_sublist", ABORT, NULL);
if (temp_it.at_last ()) {
list->last = prev;
ex_current_was_last = other_it->ex_current_was_last = TRUE;
}
if (temp_it.current == cycle_pt)
ex_current_was_cycle_pt = TRUE;
if (temp_it.current == other_it->cycle_pt)
other_it->ex_current_was_cycle_pt = TRUE;
temp_it.forward ();
}
while (temp_it.prev != other_it->current);
//circularise sublist
other_it->current->next = current;
end_of_new_list = other_it->current;
//sublist = whole list
if (prev == other_it->current) {
list->last = NULL;
prev = current = next = NULL;
other_it->prev = other_it->current = other_it->next = NULL;
}
else {
prev->next = other_it->next;
current = other_it->current = NULL;
next = other_it->next;
other_it->prev = prev;
}
return end_of_new_list;
}
| 1080228-arabicocr11 | ccutil/clst.cpp | C++ | asf20 | 18,289 |
///////////////////////////////////////////////////////////////////////
// File: genericvector.h
// Description: Generic vector class
// Author: Daria Antonova
// Created: Mon Jun 23 11:26:43 PDT 2008
//
// (C) Copyright 2007, Google Inc.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
///////////////////////////////////////////////////////////////////////
//
#ifndef TESSERACT_CCUTIL_GENERICVECTOR_H_
#define TESSERACT_CCUTIL_GENERICVECTOR_H_
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include "tesscallback.h"
#include "errcode.h"
#include "helpers.h"
#include "ndminx.h"
#include "serialis.h"
#include "strngs.h"
// Use PointerVector<T> below in preference to GenericVector<T*>, as that
// provides automatic deletion of pointers, [De]Serialize that works, and
// sort that works.
template <typename T>
class GenericVector {
public:
GenericVector() {
init(kDefaultVectorSize);
}
GenericVector(int size, T init_val) {
init(size);
init_to_size(size, init_val);
}
// Copy
GenericVector(const GenericVector& other) {
this->init(other.size());
this->operator+=(other);
}
GenericVector<T> &operator+=(const GenericVector& other);
GenericVector<T> &operator=(const GenericVector& other);
~GenericVector();
// Reserve some memory.
void reserve(int size);
// Double the size of the internal array.
void double_the_size();
// Resizes to size and sets all values to t.
void init_to_size(int size, T t);
// Resizes to size without any initialization.
void resize_no_init(int size) {
reserve(size);
size_used_ = size;
}
// Return the size used.
int size() const {
return size_used_;
}
int size_reserved() const {
return size_reserved_;
}
int length() const {
return size_used_;
}
// Return true if empty.
bool empty() const {
return size_used_ == 0;
}
// Return the object from an index.
T &get(int index) const;
T &back() const;
T &operator[](int index) const;
// Returns the last object and removes it.
T pop_back();
// Return the index of the T object.
// This method NEEDS a compare_callback to be passed to
// set_compare_callback.
int get_index(T object) const;
// Return true if T is in the array
bool contains(T object) const;
// Return true if the index is valid
T contains_index(int index) const;
// Push an element in the end of the array
int push_back(T object);
void operator+=(T t);
// Push an element in the end of the array if the same
// element is not already contained in the array.
int push_back_new(T object);
// Push an element in the front of the array
// Note: This function is O(n)
int push_front(T object);
// Set the value at the given index
void set(T t, int index);
// Insert t at the given index, push other elements to the right.
void insert(T t, int index);
// Removes an element at the given index and
// shifts the remaining elements to the left.
void remove(int index);
// Truncates the array to the given size by removing the end.
// If the current size is less, the array is not expanded.
void truncate(int size) {
if (size < size_used_)
size_used_ = size;
}
// Add a callback to be called to delete the elements when the array took
// their ownership.
void set_clear_callback(TessCallback1<T>* cb);
// Add a callback to be called to compare the elements when needed (contains,
// get_id, ...)
void set_compare_callback(TessResultCallback2<bool, T const &, T const &>* cb);
// Clear the array, calling the clear callback function if any.
// All the owned callbacks are also deleted.
// If you don't want the callbacks to be deleted, before calling clear, set
// the callback to NULL.
void clear();
// Delete objects pointed to by data_[i]
void delete_data_pointers();
// This method clears the current object, then, does a shallow copy of
// its argument, and finally invalidates its argument.
// Callbacks are moved to the current object;
void move(GenericVector<T>* from);
// Read/Write the array to a file. This does _NOT_ read/write the callbacks.
// The callback given must be permanent since they will be called more than
// once. The given callback will be deleted at the end.
// If the callbacks are NULL, then the data is simply read/written using
// fread (and swapping)/fwrite.
// Returns false on error or if the callback returns false.
// DEPRECATED. Use [De]Serialize[Classes] instead.
bool write(FILE* f, TessResultCallback2<bool, FILE*, T const &>* cb) const;
bool read(FILE* f, TessResultCallback3<bool, FILE*, T*, bool>* cb, bool swap);
// Writes a vector of simple types to the given file. Assumes that bitwise
// read/write of T will work. Returns false in case of error.
// TODO(rays) Change all callers to use TFile and remove deprecated methods.
bool Serialize(FILE* fp) const;
bool Serialize(tesseract::TFile* fp) const;
// Reads a vector of simple types from the given file. Assumes that bitwise
// read/write will work with ReverseN according to sizeof(T).
// Returns false in case of error.
// If swap is true, assumes a big/little-endian swap is needed.
bool DeSerialize(bool swap, FILE* fp);
bool DeSerialize(bool swap, tesseract::TFile* fp);
// Writes a vector of classes to the given file. Assumes the existence of
// bool T::Serialize(FILE* fp) const that returns false in case of error.
// Returns false in case of error.
bool SerializeClasses(FILE* fp) const;
bool SerializeClasses(tesseract::TFile* fp) const;
// Reads a vector of classes from the given file. Assumes the existence of
// bool T::Deserialize(bool swap, FILE* fp) that returns false in case of
// error. Also needs T::T() and T::T(constT&), as init_to_size is used in
// this function. Returns false in case of error.
// If swap is true, assumes a big/little-endian swap is needed.
bool DeSerializeClasses(bool swap, FILE* fp);
bool DeSerializeClasses(bool swap, tesseract::TFile* fp);
// Allocates a new array of double the current_size, copies over the
// information from data to the new location, deletes data and returns
// the pointed to the new larger array.
// This function uses memcpy to copy the data, instead of invoking
// operator=() for each element like double_the_size() does.
static T *double_the_size_memcpy(int current_size, T *data) {
T *data_new = new T[current_size * 2];
memcpy(data_new, data, sizeof(T) * current_size);
delete[] data;
return data_new;
}
// Reverses the elements of the vector.
void reverse() {
for (int i = 0; i < size_used_ / 2; ++i)
Swap(&data_[i], &data_[size_used_ - 1 - i]);
}
// Sorts the members of this vector using the less than comparator (cmp_lt),
// which compares the values. Useful for GenericVectors to primitive types.
// Will not work so great for pointers (unless you just want to sort some
// pointers). You need to provide a specialization to sort_cmp to use
// your type.
void sort();
// Sort the array into the order defined by the qsort function comparator.
// The comparator function is as defined by qsort, ie. it receives pointers
// to two Ts and returns negative if the first element is to appear earlier
// in the result and positive if it is to appear later, with 0 for equal.
void sort(int (*comparator)(const void*, const void*)) {
qsort(data_, size_used_, sizeof(*data_), comparator);
}
// Searches the array (assuming sorted in ascending order, using sort()) for
// an element equal to target and returns true if it is present.
// Use binary_search to get the index of target, or its nearest candidate.
bool bool_binary_search(const T& target) const {
int index = binary_search(target);
if (index >= size_used_)
return false;
return data_[index] == target;
}
// Searches the array (assuming sorted in ascending order, using sort()) for
// an element equal to target and returns the index of the best candidate.
// The return value is conceptually the largest index i such that
// data_[i] <= target or 0 if target < the whole vector.
// NOTE that this function uses operator> so really the return value is
// the largest index i such that data_[i] > target is false.
int binary_search(const T& target) const {
int bottom = 0;
int top = size_used_;
do {
int middle = (bottom + top) / 2;
if (data_[middle] > target)
top = middle;
else
bottom = middle;
}
while (top - bottom > 1);
return bottom;
}
// Compact the vector by deleting elements using operator!= on basic types.
// The vector must be sorted.
void compact_sorted() {
if (size_used_ == 0)
return;
// First element is in no matter what, hence the i = 1.
int last_write = 0;
for (int i = 1; i < size_used_; ++i) {
// Finds next unique item and writes it.
if (data_[last_write] != data_[i])
data_[++last_write] = data_[i];
}
// last_write is the index of a valid data cell, so add 1.
size_used_ = last_write + 1;
}
// Compact the vector by deleting elements for which delete_cb returns
// true. delete_cb is a permanent callback and will be deleted.
void compact(TessResultCallback1<bool, int>* delete_cb) {
int new_size = 0;
int old_index = 0;
// Until the callback returns true, the elements stay the same.
while (old_index < size_used_ && !delete_cb->Run(old_index++))
++new_size;
// Now just copy anything else that gets false from delete_cb.
for (; old_index < size_used_; ++old_index) {
if (!delete_cb->Run(old_index)) {
data_[new_size++] = data_[old_index];
}
}
size_used_ = new_size;
delete delete_cb;
}
T dot_product(const GenericVector<T>& other) const {
T result = static_cast<T>(0);
for (int i = MIN(size_used_, other.size_used_) - 1; i >= 0; --i)
result += data_[i] * other.data_[i];
return result;
}
// Returns the index of what would be the target_index_th item in the array
// if the members were sorted, without actually sorting. Members are
// shuffled around, but it takes O(n) time.
// NOTE: uses operator< and operator== on the members.
int choose_nth_item(int target_index) {
// Make sure target_index is legal.
if (target_index < 0)
target_index = 0; // ensure legal
else if (target_index >= size_used_)
target_index = size_used_ - 1;
unsigned int seed = 1;
return choose_nth_item(target_index, 0, size_used_, &seed);
}
// Swaps the elements with the given indices.
void swap(int index1, int index2) {
if (index1 != index2) {
T tmp = data_[index1];
data_[index1] = data_[index2];
data_[index2] = tmp;
}
}
// Returns true if all elements of *this are within the given range.
// Only uses operator<
bool WithinBounds(const T& rangemin, const T& rangemax) const {
for (int i = 0; i < size_used_; ++i) {
if (data_[i] < rangemin || rangemax < data_[i])
return false;
}
return true;
}
protected:
// Internal recursive version of choose_nth_item.
int choose_nth_item(int target_index, int start, int end, unsigned int* seed);
// Init the object, allocating size memory.
void init(int size);
// We are assuming that the object generally placed in thie
// vector are small enough that for efficiency it makes sence
// to start with a larger initial size.
static const int kDefaultVectorSize = 4;
inT32 size_used_;
inT32 size_reserved_;
T* data_;
TessCallback1<T>* clear_cb_;
// Mutable because Run method is not const
mutable TessResultCallback2<bool, T const &, T const &>* compare_cb_;
};
namespace tesseract {
// Function to read a GenericVector<char> from a whole file.
// Returns false on failure.
typedef bool (*FileReader)(const STRING& filename, GenericVector<char>* data);
// Function to write a GenericVector<char> to a whole file.
// Returns false on failure.
typedef bool (*FileWriter)(const GenericVector<char>& data,
const STRING& filename);
// The default FileReader loads the whole file into the vector of char,
// returning false on error.
inline bool LoadDataFromFile(const STRING& filename,
GenericVector<char>* data) {
FILE* fp = fopen(filename.string(), "rb");
if (fp == NULL) return false;
fseek(fp, 0, SEEK_END);
size_t size = ftell(fp);
fseek(fp, 0, SEEK_SET);
// Pad with a 0, just in case we treat the result as a string.
data->init_to_size(size + 1, 0);
bool result = fread(&(*data)[0], 1, size, fp) == size;
fclose(fp);
return result;
}
// The default FileWriter writes the vector of char to the filename file,
// returning false on error.
inline bool SaveDataToFile(const GenericVector<char>& data,
const STRING& filename) {
FILE* fp = fopen(filename.string(), "wb");
if (fp == NULL) return false;
bool result =
static_cast<int>(fwrite(&data[0], 1, data.size(), fp)) == data.size();
fclose(fp);
return result;
}
template <typename T>
bool cmp_eq(T const & t1, T const & t2) {
return t1 == t2;
}
// Used by sort()
// return < 0 if t1 < t2
// return 0 if t1 == t2
// return > 0 if t1 > t2
template <typename T>
int sort_cmp(const void* t1, const void* t2) {
const T* a = static_cast<const T *> (t1);
const T* b = static_cast<const T *> (t2);
if (*a < *b) {
return -1;
} else if (*b < *a) {
return 1;
} else {
return 0;
}
}
// Used by PointerVector::sort()
// return < 0 if t1 < t2
// return 0 if t1 == t2
// return > 0 if t1 > t2
template <typename T>
int sort_ptr_cmp(const void* t1, const void* t2) {
const T* a = *reinterpret_cast<T * const *>(t1);
const T* b = *reinterpret_cast<T * const *>(t2);
if (*a < *b) {
return -1;
} else if (*b < *a) {
return 1;
} else {
return 0;
}
}
// Subclass for a vector of pointers. Use in preference to GenericVector<T*>
// as it provides automatic deletion and correct serialization, with the
// corollary that all copy operations are deep copies of the pointed-to objects.
template<typename T>
class PointerVector : public GenericVector<T*> {
public:
PointerVector() : GenericVector<T*>() { }
explicit PointerVector(int size) : GenericVector<T*>(size) { }
~PointerVector() {
// Clear must be called here, even though it is called again by the base,
// as the base will call the wrong clear.
clear();
}
// Copy must be deep, as the pointers will be automatically deleted on
// destruction.
PointerVector(const PointerVector& other) {
this->init(other.size());
this->operator+=(other);
}
PointerVector<T>& operator+=(const PointerVector& other) {
this->reserve(this->size_used_ + other.size_used_);
for (int i = 0; i < other.size(); ++i) {
this->push_back(new T(*other.data_[i]));
}
return *this;
}
PointerVector<T>& operator=(const PointerVector& other) {
this->truncate(0);
this->operator+=(other);
return *this;
}
// Removes an element at the given index and
// shifts the remaining elements to the left.
void remove(int index) {
delete GenericVector<T*>::data_[index];
GenericVector<T*>::remove(index);
}
// Truncates the array to the given size by removing the end.
// If the current size is less, the array is not expanded.
void truncate(int size) {
for (int i = size; i < GenericVector<T*>::size_used_; ++i)
delete GenericVector<T*>::data_[i];
GenericVector<T*>::truncate(size);
}
// Compact the vector by deleting elements for which delete_cb returns
// true. delete_cb is a permanent callback and will be deleted.
void compact(TessResultCallback1<bool, const T*>* delete_cb) {
int new_size = 0;
int old_index = 0;
// Until the callback returns true, the elements stay the same.
while (old_index < GenericVector<T*>::size_used_ &&
!delete_cb->Run(GenericVector<T*>::data_[old_index++]))
++new_size;
// Now just copy anything else that gets false from delete_cb.
for (; old_index < GenericVector<T*>::size_used_; ++old_index) {
if (!delete_cb->Run(GenericVector<T*>::data_[old_index])) {
GenericVector<T*>::data_[new_size++] =
GenericVector<T*>::data_[old_index];
} else {
delete GenericVector<T*>::data_[old_index];
}
}
GenericVector<T*>::size_used_ = new_size;
delete delete_cb;
}
// Clear the array, calling the clear callback function if any.
// All the owned callbacks are also deleted.
// If you don't want the callbacks to be deleted, before calling clear, set
// the callback to NULL.
void clear() {
GenericVector<T*>::delete_data_pointers();
GenericVector<T*>::clear();
}
// Writes a vector of (pointers to) classes to the given file. Assumes the
// existence of bool T::Serialize(FILE*) const that returns false in case of
// error. There is no Serialize for simple types, as you would have a
// normal GenericVector of those.
// Returns false in case of error.
bool Serialize(FILE* fp) const {
inT32 used = GenericVector<T*>::size_used_;
if (fwrite(&used, sizeof(used), 1, fp) != 1) return false;
for (int i = 0; i < used; ++i) {
inT8 non_null = GenericVector<T*>::data_[i] != NULL;
if (fwrite(&non_null, sizeof(non_null), 1, fp) != 1) return false;
if (non_null && !GenericVector<T*>::data_[i]->Serialize(fp)) return false;
}
return true;
}
bool Serialize(TFile* fp) const {
inT32 used = GenericVector<T*>::size_used_;
if (fp->FWrite(&used, sizeof(used), 1) != 1) return false;
for (int i = 0; i < used; ++i) {
inT8 non_null = GenericVector<T*>::data_[i] != NULL;
if (fp->FWrite(&non_null, sizeof(non_null), 1) != 1) return false;
if (non_null && !GenericVector<T*>::data_[i]->Serialize(fp)) return false;
}
return true;
}
// Reads a vector of (pointers to) classes to the given file. Assumes the
// existence of bool T::DeSerialize(bool, Tfile*) const that returns false in
// case of error. There is no Serialize for simple types, as you would have a
// normal GenericVector of those.
// If swap is true, assumes a big/little-endian swap is needed.
// Also needs T::T(), as new T is used in this function.
// Returns false in case of error.
bool DeSerialize(bool swap, FILE* fp) {
inT32 reserved;
if (fread(&reserved, sizeof(reserved), 1, fp) != 1) return false;
if (swap) Reverse32(&reserved);
GenericVector<T*>::reserve(reserved);
truncate(0);
for (int i = 0; i < reserved; ++i) {
inT8 non_null;
if (fread(&non_null, sizeof(non_null), 1, fp) != 1) return false;
T* item = NULL;
if (non_null) {
item = new T;
if (!item->DeSerialize(swap, fp)) {
delete item;
return false;
}
this->push_back(item);
} else {
// Null elements should keep their place in the vector.
this->push_back(NULL);
}
}
return true;
}
bool DeSerialize(bool swap, TFile* fp) {
inT32 reserved;
if (fp->FRead(&reserved, sizeof(reserved), 1) != 1) return false;
if (swap) Reverse32(&reserved);
GenericVector<T*>::reserve(reserved);
truncate(0);
for (int i = 0; i < reserved; ++i) {
inT8 non_null;
if (fp->FRead(&non_null, sizeof(non_null), 1) != 1) return false;
T* item = NULL;
if (non_null) {
item = new T;
if (!item->DeSerialize(swap, fp)) {
delete item;
return false;
}
this->push_back(item);
} else {
// Null elements should keep their place in the vector.
this->push_back(NULL);
}
}
return true;
}
// Sorts the items pointed to by the members of this vector using
// t::operator<().
void sort() {
sort(&sort_ptr_cmp<T>);
}
};
} // namespace tesseract
// A useful vector that uses operator== to do comparisons.
template <typename T>
class GenericVectorEqEq : public GenericVector<T> {
public:
GenericVectorEqEq() {
GenericVector<T>::set_compare_callback(
NewPermanentTessCallback(tesseract::cmp_eq<T>));
}
GenericVectorEqEq(int size) : GenericVector<T>(size) {
GenericVector<T>::set_compare_callback(
NewPermanentTessCallback(tesseract::cmp_eq<T>));
}
};
template <typename T>
void GenericVector<T>::init(int size) {
size_used_ = 0;
size_reserved_ = 0;
data_ = 0;
clear_cb_ = 0;
compare_cb_ = 0;
reserve(size);
}
template <typename T>
GenericVector<T>::~GenericVector() {
clear();
}
// Reserve some memory. If the internal array contains elements, they are
// copied.
template <typename T>
void GenericVector<T>::reserve(int size) {
if (size_reserved_ >= size || size <= 0)
return;
T* new_array = new T[size];
for (int i = 0; i < size_used_; ++i)
new_array[i] = data_[i];
if (data_ != NULL) delete[] data_;
data_ = new_array;
size_reserved_ = size;
}
template <typename T>
void GenericVector<T>::double_the_size() {
if (size_reserved_ == 0) {
reserve(kDefaultVectorSize);
}
else {
reserve(2 * size_reserved_);
}
}
// Resizes to size and sets all values to t.
template <typename T>
void GenericVector<T>::init_to_size(int size, T t) {
reserve(size);
size_used_ = size;
for (int i = 0; i < size; ++i)
data_[i] = t;
}
// Return the object from an index.
template <typename T>
T &GenericVector<T>::get(int index) const {
ASSERT_HOST(index >= 0 && index < size_used_);
return data_[index];
}
template <typename T>
T &GenericVector<T>::operator[](int index) const {
assert(index >= 0 && index < size_used_);
return data_[index];
}
template <typename T>
T &GenericVector<T>::back() const {
ASSERT_HOST(size_used_ > 0);
return data_[size_used_ - 1];
}
// Returns the last object and removes it.
template <typename T>
T GenericVector<T>::pop_back() {
ASSERT_HOST(size_used_ > 0);
return data_[--size_used_];
}
// Return the object from an index.
template <typename T>
void GenericVector<T>::set(T t, int index) {
ASSERT_HOST(index >= 0 && index < size_used_);
data_[index] = t;
}
// Shifts the rest of the elements to the right to make
// space for the new elements and inserts the given element
// at the specified index.
template <typename T>
void GenericVector<T>::insert(T t, int index) {
ASSERT_HOST(index >= 0 && index <= size_used_);
if (size_reserved_ == size_used_)
double_the_size();
for (int i = size_used_; i > index; --i) {
data_[i] = data_[i-1];
}
data_[index] = t;
size_used_++;
}
// Removes an element at the given index and
// shifts the remaining elements to the left.
template <typename T>
void GenericVector<T>::remove(int index) {
ASSERT_HOST(index >= 0 && index < size_used_);
for (int i = index; i < size_used_ - 1; ++i) {
data_[i] = data_[i+1];
}
size_used_--;
}
// Return true if the index is valindex
template <typename T>
T GenericVector<T>::contains_index(int index) const {
return index >= 0 && index < size_used_;
}
// Return the index of the T object.
template <typename T>
int GenericVector<T>::get_index(T object) const {
for (int i = 0; i < size_used_; ++i) {
ASSERT_HOST(compare_cb_ != NULL);
if (compare_cb_->Run(object, data_[i]))
return i;
}
return -1;
}
// Return true if T is in the array
template <typename T>
bool GenericVector<T>::contains(T object) const {
return get_index(object) != -1;
}
// Add an element in the array
template <typename T>
int GenericVector<T>::push_back(T object) {
int index = 0;
if (size_used_ == size_reserved_)
double_the_size();
index = size_used_++;
data_[index] = object;
return index;
}
template <typename T>
int GenericVector<T>::push_back_new(T object) {
int index = get_index(object);
if (index >= 0)
return index;
return push_back(object);
}
// Add an element in the array (front)
template <typename T>
int GenericVector<T>::push_front(T object) {
if (size_used_ == size_reserved_)
double_the_size();
for (int i = size_used_; i > 0; --i)
data_[i] = data_[i-1];
data_[0] = object;
++size_used_;
return 0;
}
template <typename T>
void GenericVector<T>::operator+=(T t) {
push_back(t);
}
template <typename T>
GenericVector<T> &GenericVector<T>::operator+=(const GenericVector& other) {
this->reserve(size_used_ + other.size_used_);
for (int i = 0; i < other.size(); ++i) {
this->operator+=(other.data_[i]);
}
return *this;
}
template <typename T>
GenericVector<T> &GenericVector<T>::operator=(const GenericVector& other) {
this->truncate(0);
this->operator+=(other);
return *this;
}
// Add a callback to be called to delete the elements when the array took
// their ownership.
template <typename T>
void GenericVector<T>::set_clear_callback(TessCallback1<T>* cb) {
clear_cb_ = cb;
}
// Add a callback to be called to delete the elements when the array took
// their ownership.
template <typename T>
void GenericVector<T>::set_compare_callback(
TessResultCallback2<bool, T const &, T const &>* cb) {
compare_cb_ = cb;
}
// Clear the array, calling the callback function if any.
template <typename T>
void GenericVector<T>::clear() {
if (size_reserved_ > 0) {
if (clear_cb_ != NULL)
for (int i = 0; i < size_used_; ++i)
clear_cb_->Run(data_[i]);
delete[] data_;
data_ = NULL;
size_used_ = 0;
size_reserved_ = 0;
}
if (clear_cb_ != NULL) {
delete clear_cb_;
clear_cb_ = NULL;
}
if (compare_cb_ != NULL) {
delete compare_cb_;
compare_cb_ = NULL;
}
}
template <typename T>
void GenericVector<T>::delete_data_pointers() {
for (int i = 0; i < size_used_; ++i)
if (data_[i]) {
delete data_[i];
}
}
template <typename T>
bool GenericVector<T>::write(
FILE* f, TessResultCallback2<bool, FILE*, T const &>* cb) const {
if (fwrite(&size_reserved_, sizeof(size_reserved_), 1, f) != 1) return false;
if (fwrite(&size_used_, sizeof(size_used_), 1, f) != 1) return false;
if (cb != NULL) {
for (int i = 0; i < size_used_; ++i) {
if (!cb->Run(f, data_[i])) {
delete cb;
return false;
}
}
delete cb;
} else {
if (fwrite(data_, sizeof(T), size_used_, f) != size_used_) return false;
}
return true;
}
template <typename T>
bool GenericVector<T>::read(FILE* f,
TessResultCallback3<bool, FILE*, T*, bool>* cb,
bool swap) {
inT32 reserved;
if (fread(&reserved, sizeof(reserved), 1, f) != 1) return false;
if (swap) Reverse32(&reserved);
reserve(reserved);
if (fread(&size_used_, sizeof(size_used_), 1, f) != 1) return false;
if (swap) Reverse32(&size_used_);
if (cb != NULL) {
for (int i = 0; i < size_used_; ++i) {
if (!cb->Run(f, data_ + i, swap)) {
delete cb;
return false;
}
}
delete cb;
} else {
if (fread(data_, sizeof(T), size_used_, f) != size_used_) return false;
if (swap) {
for (int i = 0; i < size_used_; ++i)
ReverseN(&data_[i], sizeof(T));
}
}
return true;
}
// Writes a vector of simple types to the given file. Assumes that bitwise
// read/write of T will work. Returns false in case of error.
template <typename T>
bool GenericVector<T>::Serialize(FILE* fp) const {
if (fwrite(&size_used_, sizeof(size_used_), 1, fp) != 1) return false;
if (fwrite(data_, sizeof(*data_), size_used_, fp) != size_used_) return false;
return true;
}
template <typename T>
bool GenericVector<T>::Serialize(tesseract::TFile* fp) const {
if (fp->FWrite(&size_used_, sizeof(size_used_), 1) != 1) return false;
if (fp->FWrite(data_, sizeof(*data_), size_used_) != size_used_) return false;
return true;
}
// Reads a vector of simple types from the given file. Assumes that bitwise
// read/write will work with ReverseN according to sizeof(T).
// Returns false in case of error.
// If swap is true, assumes a big/little-endian swap is needed.
template <typename T>
bool GenericVector<T>::DeSerialize(bool swap, FILE* fp) {
inT32 reserved;
if (fread(&reserved, sizeof(reserved), 1, fp) != 1) return false;
if (swap) Reverse32(&reserved);
reserve(reserved);
size_used_ = reserved;
if (fread(data_, sizeof(T), size_used_, fp) != size_used_) return false;
if (swap) {
for (int i = 0; i < size_used_; ++i)
ReverseN(&data_[i], sizeof(data_[i]));
}
return true;
}
template <typename T>
bool GenericVector<T>::DeSerialize(bool swap, tesseract::TFile* fp) {
inT32 reserved;
if (fp->FRead(&reserved, sizeof(reserved), 1) != 1) return false;
if (swap) Reverse32(&reserved);
reserve(reserved);
size_used_ = reserved;
if (fp->FRead(data_, sizeof(T), size_used_) != size_used_) return false;
if (swap) {
for (int i = 0; i < size_used_; ++i)
ReverseN(&data_[i], sizeof(data_[i]));
}
return true;
}
// Writes a vector of classes to the given file. Assumes the existence of
// bool T::Serialize(FILE* fp) const that returns false in case of error.
// Returns false in case of error.
template <typename T>
bool GenericVector<T>::SerializeClasses(FILE* fp) const {
if (fwrite(&size_used_, sizeof(size_used_), 1, fp) != 1) return false;
for (int i = 0; i < size_used_; ++i) {
if (!data_[i].Serialize(fp)) return false;
}
return true;
}
template <typename T>
bool GenericVector<T>::SerializeClasses(tesseract::TFile* fp) const {
if (fp->FWrite(&size_used_, sizeof(size_used_), 1) != 1) return false;
for (int i = 0; i < size_used_; ++i) {
if (!data_[i].Serialize(fp)) return false;
}
return true;
}
// Reads a vector of classes from the given file. Assumes the existence of
// bool T::Deserialize(bool swap, FILE* fp) that returns false in case of
// error. Alse needs T::T() and T::T(constT&), as init_to_size is used in
// this function. Returns false in case of error.
// If swap is true, assumes a big/little-endian swap is needed.
template <typename T>
bool GenericVector<T>::DeSerializeClasses(bool swap, FILE* fp) {
uinT32 reserved;
if (fread(&reserved, sizeof(reserved), 1, fp) != 1) return false;
if (swap) Reverse32(&reserved);
T empty;
init_to_size(reserved, empty);
for (int i = 0; i < reserved; ++i) {
if (!data_[i].DeSerialize(swap, fp)) return false;
}
return true;
}
template <typename T>
bool GenericVector<T>::DeSerializeClasses(bool swap, tesseract::TFile* fp) {
uinT32 reserved;
if (fp->FRead(&reserved, sizeof(reserved), 1) != 1) return false;
if (swap) Reverse32(&reserved);
T empty;
init_to_size(reserved, empty);
for (int i = 0; i < reserved; ++i) {
if (!data_[i].DeSerialize(swap, fp)) return false;
}
return true;
}
// This method clear the current object, then, does a shallow copy of
// its argument, and finally invalidates its argument.
template <typename T>
void GenericVector<T>::move(GenericVector<T>* from) {
this->clear();
this->data_ = from->data_;
this->size_reserved_ = from->size_reserved_;
this->size_used_ = from->size_used_;
this->compare_cb_ = from->compare_cb_;
this->clear_cb_ = from->clear_cb_;
from->data_ = NULL;
from->clear_cb_ = NULL;
from->compare_cb_ = NULL;
from->size_used_ = 0;
from->size_reserved_ = 0;
}
template <typename T>
void GenericVector<T>::sort() {
sort(&tesseract::sort_cmp<T>);
}
// Internal recursive version of choose_nth_item.
// The algorithm used comes from "Algorithms" by Sedgewick:
// http://books.google.com/books/about/Algorithms.html?id=idUdqdDXqnAC
// The principle is to choose a random pivot, and move everything less than
// the pivot to its left, and everything greater than the pivot to the end
// of the array, then recurse on the part that contains the desired index, or
// just return the answer if it is in the equal section in the middle.
// The random pivot guarantees average linear time for the same reason that
// n times vector::push_back takes linear time on average.
// target_index, start and and end are all indices into the full array.
// Seed is a seed for rand_r for thread safety purposes. Its value is
// unimportant as the random numbers do not affect the result except
// between equal answers.
template <typename T>
int GenericVector<T>::choose_nth_item(int target_index, int start, int end,
unsigned int* seed) {
// Number of elements to process.
int num_elements = end - start;
// Trivial cases.
if (num_elements <= 1)
return start;
if (num_elements == 2) {
if (data_[start] < data_[start + 1]) {
return target_index > start ? start + 1 : start;
} else {
return target_index > start ? start : start + 1;
}
}
// Place the pivot at start.
#ifndef rand_r // _MSC_VER, ANDROID
srand(*seed);
#define rand_r(seed) rand()
#endif // _MSC_VER
int pivot = rand_r(seed) % num_elements + start;
swap(pivot, start);
// The invariant condition here is that items [start, next_lesser) are less
// than the pivot (which is at index next_lesser) and items
// [prev_greater, end) are greater than the pivot, with items
// [next_lesser, prev_greater) being equal to the pivot.
int next_lesser = start;
int prev_greater = end;
for (int next_sample = start + 1; next_sample < prev_greater;) {
if (data_[next_sample] < data_[next_lesser]) {
swap(next_lesser++, next_sample++);
} else if (data_[next_sample] == data_[next_lesser]) {
++next_sample;
} else {
swap(--prev_greater, next_sample);
}
}
// Now the invariant is set up, we recurse on just the section that contains
// the desired index.
if (target_index < next_lesser)
return choose_nth_item(target_index, start, next_lesser, seed);
else if (target_index < prev_greater)
return next_lesser; // In equal bracket.
else
return choose_nth_item(target_index, prev_greater, end, seed);
}
#endif // TESSERACT_CCUTIL_GENERICVECTOR_H_
| 1080228-arabicocr11 | ccutil/genericvector.h | C++ | asf20 | 34,579 |
/**********************************************************************
* File: tprintf.h
* Description: Trace version of printf - portable between UX and NT
* Author: Phil Cheatle
* Created: Wed Jun 28 15:01:15 BST 1995
*
* (C) Copyright 1995, Hewlett-Packard Ltd.
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
** http://www.apache.org/licenses/LICENSE-2.0
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*
**********************************************************************/
#ifndef TESSERACT_CCUTIL_TPRINTF_H
#define TESSERACT_CCUTIL_TPRINTF_H
#include "params.h"
extern DLLSYM STRING_VAR_H(debug_file, "",
"File to send tprintf output to");
extern DLLSYM BOOL_VAR_H(debug_window_on, TRUE,
"Send tprintf to window unless file set");
// Main logging function.
#define tprintf(...) tprintf_internal(__VA_ARGS__)
extern TESS_API void tprintf_internal( // Trace printf
const char *format, ...); // Message
#endif // define TESSERACT_CCUTIL_TPRINTF_H
| 1080228-arabicocr11 | ccutil/tprintf.h | C | asf20 | 1,484 |
/**********************************************************************
* File: bits16.h (Formerly bits8.h)
* Description: Code for 8 bit field class.
* Author: Phil Cheatle
* Created: Thu Oct 17 10:10:05 BST 1991
*
* (C) Copyright 1991, Hewlett-Packard Ltd.
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
** http://www.apache.org/licenses/LICENSE-2.0
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*
**********************************************************************/
#include "bits16.h"
/**********************************************************************
* Constructor. Something to get it past the compiler as almost all inlined.
*
**********************************************************************/
BITS16::BITS16( // constructor
uinT16 init) { // initial val
val = init;
}
| 1080228-arabicocr11 | ccutil/bits16.cpp | C++ | asf20 | 1,275 |
/**********************************************************************
* File: memry.c (Formerly memory.c)
* Description: Memory allocation with builtin safety checks.
* Author: Ray Smith
* Created: Wed Jan 22 09:43:33 GMT 1992
*
* (C) Copyright 1992, Hewlett-Packard Ltd.
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
** http://www.apache.org/licenses/LICENSE-2.0
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*
**********************************************************************/
#include "memry.h"
#include <stdlib.h>
// With improvements in OS memory allocators, internal memory management
// is no longer required, so all these functions now map to their malloc
// family equivalents.
// TODO(rays) further cleanup by redirecting calls to new and creating proper
// constructors.
char *alloc_string(inT32 count) {
// Round up the amount allocated to a multiple of 4
return static_cast<char*>(malloc((count + 3) & ~3));
}
void free_string(char *string) {
free(string);
}
void* alloc_struct(inT32 count, const char *) {
return malloc(count);
}
void free_struct(void *deadstruct, inT32, const char *) {
free(deadstruct);
}
void *alloc_mem(inT32 count) {
return malloc(static_cast<size_t>(count));
}
void *alloc_big_zeros(inT32 count) {
return calloc(static_cast<size_t>(count), 1);
}
void free_mem(void *oldchunk) {
free(oldchunk);
}
void free_big_mem(void *oldchunk) {
free(oldchunk);
}
| 1080228-arabicocr11 | ccutil/memry.cpp | C++ | asf20 | 1,881 |
///////////////////////////////////////////////////////////////////////
// File: ambigs.h
// Description: Constants, flags, functions for dealing with
// ambiguities (training and recognition).
// Author: Daria Antonova
// Created: Mon Aug 23 11:26:43 PDT 2008
//
// (C) Copyright 2008, Google Inc.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
///////////////////////////////////////////////////////////////////////
#ifndef TESSERACT_CCUTIL_AMBIGS_H_
#define TESSERACT_CCUTIL_AMBIGS_H_
#include "elst.h"
#include "tprintf.h"
#include "unichar.h"
#include "unicharset.h"
#include "genericvector.h"
#define MAX_AMBIG_SIZE 10
namespace tesseract {
typedef GenericVector<UNICHAR_ID> UnicharIdVector;
static const int kUnigramAmbigsBufferSize = 1000;
static const char kAmbigNgramSeparator[] = { ' ', '\0' };
static const char kAmbigDelimiters[] = "\t ";
static const char kIllegalMsg[] =
"Illegal ambiguity specification on line %d\n";
static const char kIllegalUnicharMsg[] =
"Illegal unichar %s in ambiguity specification\n";
enum AmbigType {
NOT_AMBIG, // the ngram pair is not ambiguous
REPLACE_AMBIG, // ocred ngram should always be substituted with correct
DEFINITE_AMBIG, // add correct ngram to the classifier results (1-1)
SIMILAR_AMBIG, // use pairwise classifier for ocred/correct pair (1-1)
CASE_AMBIG, // this is a case ambiguity (1-1)
AMBIG_TYPE_COUNT // number of enum entries
};
// A collection of utility functions for arrays of UNICHAR_IDs that are
// terminated by INVALID_UNICHAR_ID.
class UnicharIdArrayUtils {
public:
// Compares two arrays of unichar ids. Returns -1 if the length of array1 is
// less than length of array2, if any array1[i] is less than array2[i].
// Returns 0 if the arrays are equal, 1 otherwise.
// The function assumes that the arrays are terminated by INVALID_UNICHAR_ID.
static inline int compare(const UNICHAR_ID array1[],
const UNICHAR_ID array2[]) {
const UNICHAR_ID *ptr1 = array1;
const UNICHAR_ID *ptr2 = array2;
while (*ptr1 != INVALID_UNICHAR_ID && *ptr2 != INVALID_UNICHAR_ID) {
if (*ptr1 != *ptr2) return *ptr1 < *ptr2 ? -1 : 1;
++ptr1;
++ptr2;
}
if (*ptr1 == INVALID_UNICHAR_ID && *ptr2 == INVALID_UNICHAR_ID) return 0;
return *ptr1 == INVALID_UNICHAR_ID ? -1 : 1;
}
// Look uid in the vector of uids. If found, the index of the matched
// element is returned. Otherwise, it returns -1.
static inline int find_in(const UnicharIdVector& uid_vec,
const UNICHAR_ID uid) {
for (int i = 0; i < uid_vec.size(); ++i)
if (uid_vec[i] == uid) return i;
return -1;
}
// Copies UNICHAR_IDs from dst to src. Returns the number of ids copied.
// The function assumes that the arrays are terminated by INVALID_UNICHAR_ID
// and that dst has enough space for all the elements from src.
static inline int copy(const UNICHAR_ID src[], UNICHAR_ID dst[]) {
int i = 0;
do {
dst[i] = src[i];
} while (dst[i++] != INVALID_UNICHAR_ID);
return i - 1;
}
// Prints unichars corresponding to the unichar_ids in the given array.
// The function assumes that array is terminated by INVALID_UNICHAR_ID.
static inline void print(const UNICHAR_ID array[],
const UNICHARSET &unicharset) {
const UNICHAR_ID *ptr = array;
if (*ptr == INVALID_UNICHAR_ID) tprintf("[Empty]");
while (*ptr != INVALID_UNICHAR_ID) {
tprintf("%s ", unicharset.id_to_unichar(*ptr++));
}
tprintf("( ");
ptr = array;
while (*ptr != INVALID_UNICHAR_ID) tprintf("%d ", *ptr++);
tprintf(")\n");
}
};
// AMBIG_SPEC_LIST stores a list of dangerous ambigs that
// start with the same unichar (e.g. r->t rn->m rr1->m).
class AmbigSpec : public ELIST_LINK {
public:
AmbigSpec();
~AmbigSpec() {}
// Comparator function for sorting AmbigSpec_LISTs. The lists will
// be sorted by their wrong_ngram arrays. Example of wrong_ngram vectors
// in a a sorted AmbigSpec_LIST: [9 1 3], [9 3 4], [9 8], [9, 8 1].
static int compare_ambig_specs(const void *spec1, const void *spec2) {
const AmbigSpec *s1 =
*reinterpret_cast<const AmbigSpec * const *>(spec1);
const AmbigSpec *s2 =
*reinterpret_cast<const AmbigSpec * const *>(spec2);
int result = UnicharIdArrayUtils::compare(s1->wrong_ngram, s2->wrong_ngram);
if (result != 0) return result;
return UnicharIdArrayUtils::compare(s1->correct_fragments,
s2->correct_fragments);
}
UNICHAR_ID wrong_ngram[MAX_AMBIG_SIZE + 1];
UNICHAR_ID correct_fragments[MAX_AMBIG_SIZE + 1];
UNICHAR_ID correct_ngram_id;
AmbigType type;
int wrong_ngram_size;
};
ELISTIZEH(AmbigSpec);
// AMBIG_TABLE[i] stores a set of ambiguities whose
// wrong ngram starts with unichar id i.
typedef GenericVector<AmbigSpec_LIST *> UnicharAmbigsVector;
class UnicharAmbigs {
public:
UnicharAmbigs() {}
~UnicharAmbigs() {
replace_ambigs_.delete_data_pointers();
dang_ambigs_.delete_data_pointers();
one_to_one_definite_ambigs_.delete_data_pointers();
}
const UnicharAmbigsVector &dang_ambigs() const { return dang_ambigs_; }
const UnicharAmbigsVector &replace_ambigs() const { return replace_ambigs_; }
// Initializes the ambigs by adding a NULL pointer to each table.
void InitUnicharAmbigs(const UNICHARSET& unicharset,
bool use_ambigs_for_adaption);
// Loads the universal ambigs that are useful for any language.
void LoadUniversal(const UNICHARSET& encoder_set, UNICHARSET* unicharset);
// Fills in two ambiguity tables (replaceable and dangerous) with information
// read from the ambigs file. An ambiguity table is an array of lists.
// The array is indexed by a class id. Each entry in the table provides
// a list of potential ambiguities which can start with the corresponding
// character. For example the ambiguity "rn -> m", would be located in the
// table at index of unicharset.unichar_to_id('r').
// In 1-1 ambiguities (e.g. s -> S, 1 -> I) are recorded in
// one_to_one_definite_ambigs_. This vector is also indexed by the class id
// of the wrong part of the ambiguity and each entry contains a vector of
// unichar ids that are ambiguous to it.
// encoder_set is used to encode the ambiguity strings, undisturbed by new
// unichar_ids that may be created by adding the ambigs.
void LoadUnicharAmbigs(const UNICHARSET& encoder_set,
TFile *ambigs_file, int debug_level,
bool use_ambigs_for_adaption, UNICHARSET *unicharset);
// Returns definite 1-1 ambigs for the given unichar id.
inline const UnicharIdVector *OneToOneDefiniteAmbigs(
UNICHAR_ID unichar_id) const {
if (one_to_one_definite_ambigs_.empty()) return NULL;
return one_to_one_definite_ambigs_[unichar_id];
}
// Returns a pointer to the vector with all unichar ids that appear in the
// 'correct' part of the ambiguity pair when the given unichar id appears
// in the 'wrong' part of the ambiguity. E.g. if DangAmbigs file consist of
// m->rn,rn->m,m->iii, UnicharAmbigsForAdaption() called with unichar id of
// m will return a pointer to a vector with unichar ids of r,n,i.
inline const UnicharIdVector *AmbigsForAdaption(
UNICHAR_ID unichar_id) const {
if (ambigs_for_adaption_.empty()) return NULL;
return ambigs_for_adaption_[unichar_id];
}
// Similar to the above, but return the vector of unichar ids for which
// the given unichar_id is an ambiguity (appears in the 'wrong' part of
// some ambiguity pair).
inline const UnicharIdVector *ReverseAmbigsForAdaption(
UNICHAR_ID unichar_id) const {
if (reverse_ambigs_for_adaption_.empty()) return NULL;
return reverse_ambigs_for_adaption_[unichar_id];
}
private:
bool ParseAmbiguityLine(int line_num, int version, int debug_level,
const UNICHARSET &unicharset, char *buffer,
int *test_ambig_part_size,
UNICHAR_ID *test_unichar_ids,
int *replacement_ambig_part_size,
char *replacement_string, int *type);
bool InsertIntoTable(UnicharAmbigsVector &table,
int test_ambig_part_size, UNICHAR_ID *test_unichar_ids,
int replacement_ambig_part_size,
const char *replacement_string, int type,
AmbigSpec *ambig_spec, UNICHARSET *unicharset);
UnicharAmbigsVector dang_ambigs_;
UnicharAmbigsVector replace_ambigs_;
GenericVector<UnicharIdVector *> one_to_one_definite_ambigs_;
GenericVector<UnicharIdVector *> ambigs_for_adaption_;
GenericVector<UnicharIdVector *> reverse_ambigs_for_adaption_;
};
} // namespace tesseract
#endif // TESSERACT_CCUTIL_AMBIGS_H_
| 1080228-arabicocr11 | ccutil/ambigs.h | C++ | asf20 | 9,451 |
/**********************************************************************
* File: nwmain.h
* Description: Tool to declare main, making windows invisible.
* Author: Ray Smith
* Created: Fri Sep 07 13:27:50 MDT 1995
*
* (C) Copyright 1995, Hewlett-Packard Co.
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
** http://www.apache.org/licenses/LICENSE-2.0
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*
**********************************************************************/
#ifndef RUNMAIN_H
#define RUNMAIN_H
#include "host.h"
#include "params.h"
#define DECLARE_MAIN(ARGC,ARGV)\
STRING_VAR(init_config_file,"config","Config file to read on startup");\
REALLY_DECLARE_MAIN(ARGC,ARGV)
#define DECLARE_MAIN_CONFIG(ARGC,ARGV,NAME)\
STRING_VAR(init_config_file,NAME,"Config file to read on startup");\
REALLY_DECLARE_MAIN(ARGC,ARGV)
#ifndef __UNIX__
#define REALLY_DECLARE_MAIN(ARGC,ARGV)\
\
/**********************************************************************\
* parse_args\
*\
* Turn a list of args into a new list of args with each separate\
* whitespace spaced string being an arg.\
**********************************************************************/\
\
inT32 parse_args( /*refine arg list*/\
inT32 argc, /*no of input args*/\
char *argv[], /*input args*/\
char *arglist[] /*output args*/\
)\
{\
inT32 argcount; /*converted argc*/\
char *testchar; /*char in option string*/\
inT32 arg; /*current argument*/\
\
argcount=0; /*no of options*/\
for (arg=0;arg<argc;arg++)\
{\
testchar=argv[arg]; /*start of arg*/\
do\
{\
while (*testchar\
&& (*testchar==' ' || *testchar=='"' || *testchar=='\n' || *testchar=='\t'))\
testchar++; /*skip white space*/\
if (*testchar)\
{\
arglist[argcount++]=testchar; /*new arg*/\
do\
{\
for (testchar++;*testchar\
&& *testchar!=' ' && *testchar!='"' && *testchar!='\n' && *testchar!='\t';\
testchar++); /*skip to white space*/\
}\
while (*testchar=='"' && testchar[1]!=' ' && testchar[1]!='\0' && testchar[1]!='\n' && testchar[1]!='\t');\
if (*testchar)\
*testchar++='\0'; /*turn to separate args*/\
}\
}\
while (*testchar);\
}\
return argcount; /*new number of args*/\
}\
\
inT32 global_exit_code;\
inT32 real_main(inT32,const char**);\
\
inT32 run_main( /*the main thread*/\
CWinApp* theapp /*arguments*/\
)\
{\
char **argv;\
char *argsin[2];\
inT32 argc;\
inT32 exit_code;\
\
argsin[0]=strdup(theapp->m_pszExeName);\
argsin[1]=strdup(theapp->m_lpCmdLine);\
/*allocate memory for the args. There can never be more than half*/\
/*the total number of characters in the arguments.*/\
argv=(char**)malloc(((strlen(argsin[0])+strlen(argsin[1]))/2+1)*sizeof(char*));\
\
/*now construct argv as it should be for C.*/\
argc=parse_args(2,argsin,argv);\
\
/*call main(argc,argv) here*/\
exit_code=real_main(argc,(const char **)argv);\
\
\
/*now get rid of the main app window*/\
if (theapp!=NULL && theapp->m_pMainWnd!=NULL)\
PostMessage(theapp->m_pMainWnd->m_hWnd,WM_QUIT,0,0);\
free(argsin[0]);\
free(argsin[1]);\
free(argv);\
global_exit_code=exit_code;\
return exit_code;\
}\
\
inT32 real_main(inT32 ARGC,const char* ARGV[])\
#else
#define REALLY_DECLARE_MAIN(ARGC,ARGV)\
\
/**********************************************************************\
* parse_args\
*\
* Turn a list of args into a new list of args with each separate\
* whitespace spaced string being an arg.\
**********************************************************************/\
\
inT32 parse_args( /*refine arg list*/\
inT32 argc, /*no of input args*/\
char *argv[], /*input args*/\
char *arglist[] /*output args*/\
)\
{\
inT32 argcount; /*converted argc*/\
char *testchar; /*char in option string*/\
inT32 arg; /*current argument*/\
\
argcount=0; /*no of options*/\
for (arg=0;arg<argc;arg++)\
{\
testchar=argv[arg]; /*start of arg*/\
do\
{\
while (*testchar\
&& (*testchar==' ' || *testchar=='"' || *testchar=='\n' || *testchar=='\t'))\
testchar++; /*skip white space*/\
if (*testchar)\
{\
arglist[argcount++]=testchar; /*new arg*/\
do\
{\
for (testchar++;*testchar\
&& *testchar!=' ' && *testchar!='"' && *testchar!='\n' && *testchar!='\t';\
testchar++); /*skip to white space*/\
}\
while (*testchar=='"' && testchar[1]!=' ' && testchar[1]!='\0' && testchar[1]!='\n' && testchar[1]!='\t');\
if (*testchar)\
*testchar++='\0'; /*turn to separate args*/\
}\
}\
while (*testchar);\
}\
return argcount; /*new number of args*/\
}\
\
inT32 main(inT32 ARGC,const char* ARGV[])\
#endif
#else
#error "NOT allowed to include nwmain.h or runmain.h twice!!"
#endif
| 1080228-arabicocr11 | ccutil/nwmain.h | C | asf20 | 5,362 |
///////////////////////////////////////////////////////////////////////
// File: sorthelper.h
// Description: Generic sort and maxfinding class.
// Author: Ray Smith
// Created: Thu May 20 17:48:21 PDT 2010
//
// (C) Copyright 2010, Google Inc.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
///////////////////////////////////////////////////////////////////////
#ifndef TESSERACT_CCUTIL_SORTHELPER_H_
#define TESSERACT_CCUTIL_SORTHELPER_H_
#include <stdlib.h>
#include "genericvector.h"
// Generic class to provide functions based on a <value,count> pair.
// T is the value type.
// The class keeps a count of each value and can return the most frequent
// value or a sorted array of the values with counts.
// Note that this class uses linear search for adding. It is better
// to use the STATS class to get the mode of a large number of values
// in a small space. SortHelper is better to get the mode of a small number
// of values from a large space.
// T must have a copy constructor.
template <typename T>
class SortHelper {
public:
// Simple pair class to hold the values and counts.
template<typename PairT> struct SortPair {
PairT value;
int count;
};
// qsort function to sort by decreasing count.
static int SortPairsByCount(const void* v1, const void* v2) {
const SortPair<T>* p1 = reinterpret_cast<const SortPair<T>*>(v1);
const SortPair<T>* p2 = reinterpret_cast<const SortPair<T>*>(v2);
return p2->count - p1->count;
}
// qsort function to sort by decreasing value.
static int SortPairsByValue(const void* v1, const void* v2) {
const SortPair<T>* p1 = reinterpret_cast<const SortPair<T>*>(v1);
const SortPair<T>* p2 = reinterpret_cast<const SortPair<T>*>(v2);
if (p2->value - p1->value < 0) return -1;
if (p2->value - p1->value > 0) return 1;
return 0;
}
// Constructor takes a hint of the array size, but it need not be accurate.
explicit SortHelper(int sizehint) {
counts_.reserve(sizehint);
}
// Add a value that may be a duplicate of an existing value.
// Uses a linear search.
void Add(T value, int count) {
// Linear search for value.
for (int i = 0; i < counts_.size(); ++i) {
if (counts_[i].value == value) {
counts_[i].count += count;
return;
}
}
SortPair<T> new_pair = {value, count};
counts_.push_back(SortPair<T>(new_pair));
}
// Returns the frequency of the most frequent value.
// If max_value is not NULL, returns the most frequent value.
// If the array is empty, returns -MAX_INT32 and max_value is unchanged.
int MaxCount(T* max_value) const {
int best_count = -MAX_INT32;
for (int i = 0; i < counts_.size(); ++i) {
if (counts_[i].count > best_count) {
best_count = counts_[i].count;
if (max_value != NULL)
*max_value = counts_[i].value;
}
}
return best_count;
}
// Returns the data array sorted by decreasing frequency.
const GenericVector<SortPair<T> >& SortByCount() {
counts_.sort(&SortPairsByCount);
return counts_;
}
// Returns the data array sorted by decreasing value.
const GenericVector<SortPair<T> >& SortByValue() {
counts_.sort(&SortPairsByValue);
return counts_;
}
private:
GenericVector<SortPair<T> > counts_;
};
#endif // TESSERACT_CCUTIL_SORTHELPER_H_.
| 1080228-arabicocr11 | ccutil/sorthelper.h | C++ | asf20 | 3,853 |
/**********************************************************************
* File: unicodes.h
* Description: Unicode related machinery
* Author: David Eger
* Created: Wed Jun 15 16:37:50 PST 2011
*
* (C) Copyright 2011, Google, Inc.
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
** http://www.apache.org/licenses/LICENSE-2.0
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*
**********************************************************************/
#ifndef TESSERACT_CCUTIL_UNICODES_H__
#define TESSERACT_CCUTIL_UNICODES_H__
namespace tesseract {
extern const char *kUTF8LineSeparator;
extern const char *kUTF8ParagraphSeparator;
extern const char *kLRM; // Left-to-Right Mark
extern const char *kRLM; // Right-to-Left Mark
extern const char *kRLE; // Right-to-Left Embedding
extern const char *kPDF; // Pop Directional Formatting
// The following are confusable internal word punctuation symbols
// which we normalize to the first variant when matching in dawgs.
extern const char *kHyphenLikeUTF8[];
extern const char *kApostropheLikeUTF8[];
} // namespace
#endif // TESSERACT_CCUTIL_UNICODES_H__
| 1080228-arabicocr11 | ccutil/unicodes.h | C++ | asf20 | 1,544 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="generator" content="AsciiDoc 8.5.2" />
<title>WORDLIST2DAWG(1)</title>
<style type="text/css">
/* Debug borders */
p, li, dt, dd, div, pre, h1, h2, h3, h4, h5, h6 {
/*
border: 1px solid red;
*/
}
body {
margin: 1em 5% 1em 5%;
}
a {
color: blue;
text-decoration: underline;
}
a:visited {
color: fuchsia;
}
em {
font-style: italic;
color: navy;
}
strong {
font-weight: bold;
color: #083194;
}
tt {
color: navy;
}
h1, h2, h3, h4, h5, h6 {
color: #527bbd;
font-family: sans-serif;
margin-top: 1.2em;
margin-bottom: 0.5em;
line-height: 1.3;
}
h1, h2, h3 {
border-bottom: 2px solid silver;
}
h2 {
padding-top: 0.5em;
}
h3 {
float: left;
}
h3 + * {
clear: left;
}
div.sectionbody {
font-family: serif;
margin-left: 0;
}
hr {
border: 1px solid silver;
}
p {
margin-top: 0.5em;
margin-bottom: 0.5em;
}
ul, ol, li > p {
margin-top: 0;
}
pre {
padding: 0;
margin: 0;
}
span#author {
color: #527bbd;
font-family: sans-serif;
font-weight: bold;
font-size: 1.1em;
}
span#email {
}
span#revnumber, span#revdate, span#revremark {
font-family: sans-serif;
}
div#footer {
font-family: sans-serif;
font-size: small;
border-top: 2px solid silver;
padding-top: 0.5em;
margin-top: 4.0em;
}
div#footer-text {
float: left;
padding-bottom: 0.5em;
}
div#footer-badges {
float: right;
padding-bottom: 0.5em;
}
div#preamble {
margin-top: 1.5em;
margin-bottom: 1.5em;
}
div.tableblock, div.imageblock, div.exampleblock, div.verseblock,
div.quoteblock, div.literalblock, div.listingblock, div.sidebarblock,
div.admonitionblock {
margin-top: 1.0em;
margin-bottom: 1.5em;
}
div.admonitionblock {
margin-top: 2.0em;
margin-bottom: 2.0em;
margin-right: 10%;
color: #606060;
}
div.content { /* Block element content. */
padding: 0;
}
/* Block element titles. */
div.title, caption.title {
color: #527bbd;
font-family: sans-serif;
font-weight: bold;
text-align: left;
margin-top: 1.0em;
margin-bottom: 0.5em;
}
div.title + * {
margin-top: 0;
}
td div.title:first-child {
margin-top: 0.0em;
}
div.content div.title:first-child {
margin-top: 0.0em;
}
div.content + div.title {
margin-top: 0.0em;
}
div.sidebarblock > div.content {
background: #ffffee;
border: 1px solid silver;
padding: 0.5em;
}
div.listingblock > div.content {
border: 1px solid silver;
background: #f4f4f4;
padding: 0.5em;
}
div.quoteblock, div.verseblock {
padding-left: 1.0em;
margin-left: 1.0em;
margin-right: 10%;
border-left: 5px solid #dddddd;
color: #777777;
}
div.quoteblock > div.attribution {
padding-top: 0.5em;
text-align: right;
}
div.verseblock > div.content {
white-space: pre;
}
div.verseblock > div.attribution {
padding-top: 0.75em;
text-align: left;
}
/* DEPRECATED: Pre version 8.2.7 verse style literal block. */
div.verseblock + div.attribution {
text-align: left;
}
div.admonitionblock .icon {
vertical-align: top;
font-size: 1.1em;
font-weight: bold;
text-decoration: underline;
color: #527bbd;
padding-right: 0.5em;
}
div.admonitionblock td.content {
padding-left: 0.5em;
border-left: 3px solid #dddddd;
}
div.exampleblock > div.content {
border-left: 3px solid #dddddd;
padding-left: 0.5em;
}
div.imageblock div.content { padding-left: 0; }
span.image img { border-style: none; }
a.image:visited { color: white; }
dl {
margin-top: 0.8em;
margin-bottom: 0.8em;
}
dt {
margin-top: 0.5em;
margin-bottom: 0;
font-style: normal;
color: navy;
}
dd > *:first-child {
margin-top: 0.1em;
}
ul, ol {
list-style-position: outside;
}
ol.arabic {
list-style-type: decimal;
}
ol.loweralpha {
list-style-type: lower-alpha;
}
ol.upperalpha {
list-style-type: upper-alpha;
}
ol.lowerroman {
list-style-type: lower-roman;
}
ol.upperroman {
list-style-type: upper-roman;
}
div.compact ul, div.compact ol,
div.compact p, div.compact p,
div.compact div, div.compact div {
margin-top: 0.1em;
margin-bottom: 0.1em;
}
div.tableblock > table {
border: 3px solid #527bbd;
}
thead, p.table.header {
font-family: sans-serif;
font-weight: bold;
}
tfoot {
font-weight: bold;
}
td > div.verse {
white-space: pre;
}
p.table {
margin-top: 0;
}
/* Because the table frame attribute is overriden by CSS in most browsers. */
div.tableblock > table[frame="void"] {
border-style: none;
}
div.tableblock > table[frame="hsides"] {
border-left-style: none;
border-right-style: none;
}
div.tableblock > table[frame="vsides"] {
border-top-style: none;
border-bottom-style: none;
}
div.hdlist {
margin-top: 0.8em;
margin-bottom: 0.8em;
}
div.hdlist tr {
padding-bottom: 15px;
}
dt.hdlist1.strong, td.hdlist1.strong {
font-weight: bold;
}
td.hdlist1 {
vertical-align: top;
font-style: normal;
padding-right: 0.8em;
color: navy;
}
td.hdlist2 {
vertical-align: top;
}
div.hdlist.compact tr {
margin: 0;
padding-bottom: 0;
}
.comment {
background: yellow;
}
.footnote, .footnoteref {
font-size: 0.8em;
}
span.footnote, span.footnoteref {
vertical-align: super;
}
#footnotes {
margin: 20px 0 20px 0;
padding: 7px 0 0 0;
}
#footnotes div.footnote {
margin: 0 0 5px 0;
}
#footnotes hr {
border: none;
border-top: 1px solid silver;
height: 1px;
text-align: left;
margin-left: 0;
width: 20%;
min-width: 100px;
}
@media print {
div#footer-badges { display: none; }
}
div#toc {
margin-bottom: 2.5em;
}
div#toctitle {
color: #527bbd;
font-family: sans-serif;
font-size: 1.1em;
font-weight: bold;
margin-top: 1.0em;
margin-bottom: 0.1em;
}
div.toclevel1, div.toclevel2, div.toclevel3, div.toclevel4 {
margin-top: 0;
margin-bottom: 0;
}
div.toclevel2 {
margin-left: 2em;
font-size: 0.9em;
}
div.toclevel3 {
margin-left: 4em;
font-size: 0.9em;
}
div.toclevel4 {
margin-left: 6em;
font-size: 0.9em;
}
/* Overrides for manpage documents */
h1 {
padding-top: 0.5em;
padding-bottom: 0.5em;
border-top: 2px solid silver;
border-bottom: 2px solid silver;
}
h2 {
border-style: none;
}
div.sectionbody {
margin-left: 5%;
}
@media print {
div#toc { display: none; }
}
/* Workarounds for IE6's broken and incomplete CSS2. */
div.sidebar-content {
background: #ffffee;
border: 1px solid silver;
padding: 0.5em;
}
div.sidebar-title, div.image-title {
color: #527bbd;
font-family: sans-serif;
font-weight: bold;
margin-top: 0.0em;
margin-bottom: 0.5em;
}
div.listingblock div.content {
border: 1px solid silver;
background: #f4f4f4;
padding: 0.5em;
}
div.quoteblock-attribution {
padding-top: 0.5em;
text-align: right;
}
div.verseblock-content {
white-space: pre;
}
div.verseblock-attribution {
padding-top: 0.75em;
text-align: left;
}
div.exampleblock-content {
border-left: 3px solid #dddddd;
padding-left: 0.5em;
}
/* IE6 sets dynamically generated links as visited. */
div#toc a:visited { color: blue; }
</style>
<script type="text/javascript">
/*<+'])');
// Function that scans the DOM tree for header elements (the DOM2
// nodeIterator API would be a better technique but not supported by all
// browsers).
var iterate = function (el) {
for (var i = el.firstChild; i != null; i = i.nextSibling) {
if (i.nodeType == 1 /* Node.ELEMENT_NODE */) {
var mo = re.exec(i.tagName);
if (mo && (i.getAttribute("class") || i.getAttribute("className")) != "float") {
result[result.length] = new TocEntry(i, getText(i), mo[1]-1);
}
iterate(i);
}
}
}
iterate(el);
return result;
}
var toc = document.getElementById("toc");
var entries = tocEntries(document.getElementById("content"), toclevels);
for (var i = 0; i < entries.length; ++i) {
var entry = entries[i];
if (entry.element.id == "")
entry.element.id = "_toc_" + i;
var a = document.createElement("a");
a.href = "#" + entry.element.id;
a.appendChild(document.createTextNode(entry.text));
var div = document.createElement("div");
div.appendChild(a);
div.className = "toclevel" + entry.toclevel;
toc.appendChild(div);
}
if (entries.length == 0)
toc.parentNode.removeChild(toc);
},
/////////////////////////////////////////////////////////////////////
// Footnotes generator
/////////////////////////////////////////////////////////////////////
/* Based on footnote generation code from:
* http://www.brandspankingnew.net/archive/2005/07/format_footnote.html
*/
footnotes: function () {
var cont = document.getElementById("content");
var noteholder = document.getElementById("footnotes");
var spans = cont.getElementsByTagName("span");
var refs = {};
var n = 0;
for (i=0; i<spans.length; i++) {
if (spans[i].className == "footnote") {
n++;
// Use [\s\S] in place of . so multi-line matches work.
// Because JavaScript has no s (dotall) regex flag.
note = spans[i].innerHTML.match(/\s*\[([\s\S]*)]\s*/)[1];
noteholder.innerHTML +=
"<div class='footnote' id='_footnote_" + n + "'>" +
"<a href='#_footnoteref_" + n + "' title='Return to text'>" +
n + "</a>. " + note + "</div>";
spans[i].innerHTML =
"[<a id='_footnoteref_" + n + "' href='#_footnote_" + n +
"' title='View footnote' class='footnote'>" + n + "</a>]";
var id =spans[i].getAttribute("id");
if (id != null) refs["#"+id] = n;
}
}
if (n == 0)
noteholder.parentNode.removeChild(noteholder);
else {
// Process footnoterefs.
for (i=0; i<spans.length; i++) {
if (spans[i].className == "footnoteref") {
var href = spans[i].getElementsByTagName("a")[0].getAttribute("href");
href = href.match(/#.*/)[0]; // Because IE return full URL.
n = refs[href];
spans[i].innerHTML =
"[<a href='#_footnote_" + n +
"' title='View footnote' class='footnote'>" + n + "</a>]";
}
}
}
}
}
/*]]>*/
</script>
</head>
<body>
<div id="header">
<h1>
WORDLIST2DAWG(1) Manual Page
</h1>
<h2>NAME</h2>
<div class="sectionbody">
<p>wordlist2dawg -
convert a wordlist to a DAWG for Tesseract
</p>
</div>
</div>
<div id="content">
<h2 id="_synopsis">SYNOPSIS</h2>
<div class="sectionbody">
<div class="paragraph"><p><strong>wordlist2dawg</strong> <em>WORDLIST</em> <em>DAWG</em> <em>lang.unicharset</em></p></div>
<div class="paragraph"><p><strong>wordlist2dawg</strong> -t <em>WORDLIST</em> <em>DAWG</em> <em>lang.unicharset</em></p></div>
<div class="paragraph"><p><strong>wordlist2dawg</strong> -r 1 <em>WORDLIST</em> <em>DAWG</em> <em>lang.unicharset</em></p></div>
<div class="paragraph"><p><strong>wordlist2dawg</strong> -r 2 <em>WORDLIST</em> <em>DAWG</em> <em>lang.unicharset</em></p></div>
<div class="paragraph"><p><strong>wordlist2dawg</strong> -l <short> <long> <em>WORDLIST</em> <em>DAWG</em> <em>lang.unicharset</em></p></div>
</div>
<h2 id="_description">DESCRIPTION</h2>
<div class="sectionbody">
<div class="paragraph"><p>wordlist2dawg(1) converts a wordlist to a Directed Acyclic Word Graph
(DAWG) for use with Tesseract. A DAWG is a compressed, space and time
efficient representation of a word list.</p></div>
</div>
<h2 id="_options">OPTIONS</h2>
<div class="sectionbody">
<div class="paragraph"><p>-t
Verify that a given dawg file is equivalent to a given wordlist.</p></div>
<div class="paragraph"><p>-r 1
Reverse a word if it contains an RTL character.</p></div>
<div class="paragraph"><p>-r 2
Reverse all words.</p></div>
<div class="paragraph"><p>-l <short> <long>
Produce a file with several dawgs in it, one each for words
of length <short>, <short+1>,… <long></p></div>
</div>
<h2 id="_arguments">ARGUMENTS</h2>
<div class="sectionbody">
<div class="paragraph"><p><em>WORDLIST</em>
A plain text file in UTF-8, one word per line.</p></div>
<div class="paragraph"><p><em>DAWG</em>
The output DAWG to write.</p></div>
<div class="paragraph"><p><em>lang.unicharset</em>
The unicharset of the language. This is the unicharset
generated by mftraining(1).</p></div>
</div>
<h2 id="_see_also">SEE ALSO</h2>
<div class="sectionbody">
<div class="paragraph"><p>tesseract(1), combine_tessdata(1), dawg2wordlist(1)</p></div>
<div class="paragraph"><p><a href="http://code.google.com/p/tesseract-ocr/wiki/TrainingTesseract3">http://code.google.com/p/tesseract-ocr/wiki/TrainingTesseract3</a></p></div>
</div>
<h2 id="_copying">COPYING</h2>
<div class="sectionbody">
<div class="paragraph"><p>Copyright (C) 2006 Google, Inc.
Licensed under the Apache License, Version 2.0</p></div>
</div>
<h2 id="_author">AUTHOR</h2>
<div class="sectionbody">
<div class="paragraph"><p>The Tesseract OCR engine was written by Ray Smith and his research groups
at Hewlett Packard (1985-1995) and Google (2006-present).</p></div>
</div>
</div>
<div id="footnotes"><hr /></div>
<div id="footer">
<div id="footer-text">
Last updated 2012-02-07 13:43:35 PDT
</div>
</div>
</body>
</html>
| 1080228-arabicocr11 | doc/wordlist2dawg.1.html | HTML | asf20 | 15,184 |
'\" t
.\" Title: unicharset_extractor
.\" Author: [see the "AUTHOR" section]
.\" Generator: DocBook XSL Stylesheets v1.75.2 <http://docbook.sf.net/>
.\" Date: 02/09/2012
.\" Manual: \ \&
.\" Source: \ \&
.\" Language: English
.\"
.TH "UNICHARSET_EXTRACTOR" "1" "02/09/2012" "\ \&" "\ \&"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.\" http://bugs.debian.org/507673
.\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.ie \n(.g .ds Aq \(aq
.el .ds Aq '
.\" -----------------------------------------------------------------
.\" * set default formatting
.\" -----------------------------------------------------------------
.\" disable hyphenation
.nh
.\" disable justification (adjust text to left margin only)
.ad l
.\" -----------------------------------------------------------------
.\" * MAIN CONTENT STARTS HERE *
.\" -----------------------------------------------------------------
.SH "NAME"
unicharset_extractor \- extract unicharset from Tesseract boxfiles
.SH "SYNOPSIS"
.sp
\fBunicharset_extractor\fR \fI[\-D dir]\fR \fIFILE\fR\&...
.SH "DESCRIPTION"
.sp
Tesseract needs to know the set of possible characters it can output\&. To generate the unicharset data file, use the unicharset_extractor program on the same training pages bounding box files as used for clustering:
.sp
.if n \{\
.RS 4
.\}
.nf
unicharset_extractor fontfile_1\&.box fontfile_2\&.box \&.\&.\&.
.fi
.if n \{\
.RE
.\}
.sp
The unicharset will be put into the file \fIdir/unicharset\fR, or simply \fI\&./unicharset\fR if no output directory is provided\&.
.sp
Tesseract also needs to have access to character properties isalpha, isdigit, isupper, islower, ispunctuation\&. all of this auxilury data and more is encoded in this file\&. (See unicharset(5))
.sp
If your system supports the wctype functions, these values will be set automatically by unicharset_extractor and there is no need to edit the unicharset file\&. On some older systems (eg Windows 95), the unicharset file must be edited by hand to add these property description codes\&.
.sp
\fBNOTE\fR The unicharset file must be regenerated whenever inttemp, normproto and pffmtable are generated (i\&.e\&. they must all be recreated when the box file is changed) as they have to be in sync\&. This is made easier than in previous versions by running unicharset_extractor before mftraining and cntraining, and giving the unicharset to mftraining\&.
.SH "SEE ALSO"
.sp
tesseract(1), unicharset(5)
.sp
\m[blue]\fBhttp://code\&.google\&.com/p/tesseract\-ocr/wiki/TrainingTesseract3\fR\m[]
.SH "HISTORY"
.sp
unicharset_extractor first appeared in Tesseract 2\&.00\&.
.SH "COPYING"
.sp
Copyright (C) 2006, Google Inc\&. Licensed under the Apache License, Version 2\&.0
.SH "AUTHOR"
.sp
The Tesseract OCR engine was written by Ray Smith and his research groups at Hewlett Packard (1985\-1995) and Google (2006\-present)\&.
| 1080228-arabicocr11 | doc/unicharset_extractor.1 | Roff Manpage | asf20 | 3,166 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="generator" content="AsciiDoc 8.5.2" />
<title>UNICHARSET_EXTRACTOR(1)</title>
<style type="text/css">
/* Debug borders */
p, li, dt, dd, div, pre, h1, h2, h3, h4, h5, h6 {
/*
border: 1px solid red;
*/
}
body {
margin: 1em 5% 1em 5%;
}
a {
color: blue;
text-decoration: underline;
}
a:visited {
color: fuchsia;
}
em {
font-style: italic;
color: navy;
}
strong {
font-weight: bold;
color: #083194;
}
tt {
color: navy;
}
h1, h2, h3, h4, h5, h6 {
color: #527bbd;
font-family: sans-serif;
margin-top: 1.2em;
margin-bottom: 0.5em;
line-height: 1.3;
}
h1, h2, h3 {
border-bottom: 2px solid silver;
}
h2 {
padding-top: 0.5em;
}
h3 {
float: left;
}
h3 + * {
clear: left;
}
div.sectionbody {
font-family: serif;
margin-left: 0;
}
hr {
border: 1px solid silver;
}
p {
margin-top: 0.5em;
margin-bottom: 0.5em;
}
ul, ol, li > p {
margin-top: 0;
}
pre {
padding: 0;
margin: 0;
}
span#author {
color: #527bbd;
font-family: sans-serif;
font-weight: bold;
font-size: 1.1em;
}
span#email {
}
span#revnumber, span#revdate, span#revremark {
font-family: sans-serif;
}
div#footer {
font-family: sans-serif;
font-size: small;
border-top: 2px solid silver;
padding-top: 0.5em;
margin-top: 4.0em;
}
div#footer-text {
float: left;
padding-bottom: 0.5em;
}
div#footer-badges {
float: right;
padding-bottom: 0.5em;
}
div#preamble {
margin-top: 1.5em;
margin-bottom: 1.5em;
}
div.tableblock, div.imageblock, div.exampleblock, div.verseblock,
div.quoteblock, div.literalblock, div.listingblock, div.sidebarblock,
div.admonitionblock {
margin-top: 1.0em;
margin-bottom: 1.5em;
}
div.admonitionblock {
margin-top: 2.0em;
margin-bottom: 2.0em;
margin-right: 10%;
color: #606060;
}
div.content { /* Block element content. */
padding: 0;
}
/* Block element titles. */
div.title, caption.title {
color: #527bbd;
font-family: sans-serif;
font-weight: bold;
text-align: left;
margin-top: 1.0em;
margin-bottom: 0.5em;
}
div.title + * {
margin-top: 0;
}
td div.title:first-child {
margin-top: 0.0em;
}
div.content div.title:first-child {
margin-top: 0.0em;
}
div.content + div.title {
margin-top: 0.0em;
}
div.sidebarblock > div.content {
background: #ffffee;
border: 1px solid silver;
padding: 0.5em;
}
div.listingblock > div.content {
border: 1px solid silver;
background: #f4f4f4;
padding: 0.5em;
}
div.quoteblock, div.verseblock {
padding-left: 1.0em;
margin-left: 1.0em;
margin-right: 10%;
border-left: 5px solid #dddddd;
color: #777777;
}
div.quoteblock > div.attribution {
padding-top: 0.5em;
text-align: right;
}
div.verseblock > div.content {
white-space: pre;
}
div.verseblock > div.attribution {
padding-top: 0.75em;
text-align: left;
}
/* DEPRECATED: Pre version 8.2.7 verse style literal block. */
div.verseblock + div.attribution {
text-align: left;
}
div.admonitionblock .icon {
vertical-align: top;
font-size: 1.1em;
font-weight: bold;
text-decoration: underline;
color: #527bbd;
padding-right: 0.5em;
}
div.admonitionblock td.content {
padding-left: 0.5em;
border-left: 3px solid #dddddd;
}
div.exampleblock > div.content {
border-left: 3px solid #dddddd;
padding-left: 0.5em;
}
div.imageblock div.content { padding-left: 0; }
span.image img { border-style: none; }
a.image:visited { color: white; }
dl {
margin-top: 0.8em;
margin-bottom: 0.8em;
}
dt {
margin-top: 0.5em;
margin-bottom: 0;
font-style: normal;
color: navy;
}
dd > *:first-child {
margin-top: 0.1em;
}
ul, ol {
list-style-position: outside;
}
ol.arabic {
list-style-type: decimal;
}
ol.loweralpha {
list-style-type: lower-alpha;
}
ol.upperalpha {
list-style-type: upper-alpha;
}
ol.lowerroman {
list-style-type: lower-roman;
}
ol.upperroman {
list-style-type: upper-roman;
}
div.compact ul, div.compact ol,
div.compact p, div.compact p,
div.compact div, div.compact div {
margin-top: 0.1em;
margin-bottom: 0.1em;
}
div.tableblock > table {
border: 3px solid #527bbd;
}
thead, p.table.header {
font-family: sans-serif;
font-weight: bold;
}
tfoot {
font-weight: bold;
}
td > div.verse {
white-space: pre;
}
p.table {
margin-top: 0;
}
/* Because the table frame attribute is overriden by CSS in most browsers. */
div.tableblock > table[frame="void"] {
border-style: none;
}
div.tableblock > table[frame="hsides"] {
border-left-style: none;
border-right-style: none;
}
div.tableblock > table[frame="vsides"] {
border-top-style: none;
border-bottom-style: none;
}
div.hdlist {
margin-top: 0.8em;
margin-bottom: 0.8em;
}
div.hdlist tr {
padding-bottom: 15px;
}
dt.hdlist1.strong, td.hdlist1.strong {
font-weight: bold;
}
td.hdlist1 {
vertical-align: top;
font-style: normal;
padding-right: 0.8em;
color: navy;
}
td.hdlist2 {
vertical-align: top;
}
div.hdlist.compact tr {
margin: 0;
padding-bottom: 0;
}
.comment {
background: yellow;
}
.footnote, .footnoteref {
font-size: 0.8em;
}
span.footnote, span.footnoteref {
vertical-align: super;
}
#footnotes {
margin: 20px 0 20px 0;
padding: 7px 0 0 0;
}
#footnotes div.footnote {
margin: 0 0 5px 0;
}
#footnotes hr {
border: none;
border-top: 1px solid silver;
height: 1px;
text-align: left;
margin-left: 0;
width: 20%;
min-width: 100px;
}
@media print {
div#footer-badges { display: none; }
}
div#toc {
margin-bottom: 2.5em;
}
div#toctitle {
color: #527bbd;
font-family: sans-serif;
font-size: 1.1em;
font-weight: bold;
margin-top: 1.0em;
margin-bottom: 0.1em;
}
div.toclevel1, div.toclevel2, div.toclevel3, div.toclevel4 {
margin-top: 0;
margin-bottom: 0;
}
div.toclevel2 {
margin-left: 2em;
font-size: 0.9em;
}
div.toclevel3 {
margin-left: 4em;
font-size: 0.9em;
}
div.toclevel4 {
margin-left: 6em;
font-size: 0.9em;
}
/* Overrides for manpage documents */
h1 {
padding-top: 0.5em;
padding-bottom: 0.5em;
border-top: 2px solid silver;
border-bottom: 2px solid silver;
}
h2 {
border-style: none;
}
div.sectionbody {
margin-left: 5%;
}
@media print {
div#toc { display: none; }
}
/* Workarounds for IE6's broken and incomplete CSS2. */
div.sidebar-content {
background: #ffffee;
border: 1px solid silver;
padding: 0.5em;
}
div.sidebar-title, div.image-title {
color: #527bbd;
font-family: sans-serif;
font-weight: bold;
margin-top: 0.0em;
margin-bottom: 0.5em;
}
div.listingblock div.content {
border: 1px solid silver;
background: #f4f4f4;
padding: 0.5em;
}
div.quoteblock-attribution {
padding-top: 0.5em;
text-align: right;
}
div.verseblock-content {
white-space: pre;
}
div.verseblock-attribution {
padding-top: 0.75em;
text-align: left;
}
div.exampleblock-content {
border-left: 3px solid #dddddd;
padding-left: 0.5em;
}
/* IE6 sets dynamically generated links as visited. */
div#toc a:visited { color: blue; }
</style>
<script type="text/javascript">
/*<+'])');
// Function that scans the DOM tree for header elements (the DOM2
// nodeIterator API would be a better technique but not supported by all
// browsers).
var iterate = function (el) {
for (var i = el.firstChild; i != null; i = i.nextSibling) {
if (i.nodeType == 1 /* Node.ELEMENT_NODE */) {
var mo = re.exec(i.tagName);
if (mo && (i.getAttribute("class") || i.getAttribute("className")) != "float") {
result[result.length] = new TocEntry(i, getText(i), mo[1]-1);
}
iterate(i);
}
}
}
iterate(el);
return result;
}
var toc = document.getElementById("toc");
var entries = tocEntries(document.getElementById("content"), toclevels);
for (var i = 0; i < entries.length; ++i) {
var entry = entries[i];
if (entry.element.id == "")
entry.element.id = "_toc_" + i;
var a = document.createElement("a");
a.href = "#" + entry.element.id;
a.appendChild(document.createTextNode(entry.text));
var div = document.createElement("div");
div.appendChild(a);
div.className = "toclevel" + entry.toclevel;
toc.appendChild(div);
}
if (entries.length == 0)
toc.parentNode.removeChild(toc);
},
/////////////////////////////////////////////////////////////////////
// Footnotes generator
/////////////////////////////////////////////////////////////////////
/* Based on footnote generation code from:
* http://www.brandspankingnew.net/archive/2005/07/format_footnote.html
*/
footnotes: function () {
var cont = document.getElementById("content");
var noteholder = document.getElementById("footnotes");
var spans = cont.getElementsByTagName("span");
var refs = {};
var n = 0;
for (i=0; i<spans.length; i++) {
if (spans[i].className == "footnote") {
n++;
// Use [\s\S] in place of . so multi-line matches work.
// Because JavaScript has no s (dotall) regex flag.
note = spans[i].innerHTML.match(/\s*\[([\s\S]*)]\s*/)[1];
noteholder.innerHTML +=
"<div class='footnote' id='_footnote_" + n + "'>" +
"<a href='#_footnoteref_" + n + "' title='Return to text'>" +
n + "</a>. " + note + "</div>";
spans[i].innerHTML =
"[<a id='_footnoteref_" + n + "' href='#_footnote_" + n +
"' title='View footnote' class='footnote'>" + n + "</a>]";
var id =spans[i].getAttribute("id");
if (id != null) refs["#"+id] = n;
}
}
if (n == 0)
noteholder.parentNode.removeChild(noteholder);
else {
// Process footnoterefs.
for (i=0; i<spans.length; i++) {
if (spans[i].className == "footnoteref") {
var href = spans[i].getElementsByTagName("a")[0].getAttribute("href");
href = href.match(/#.*/)[0]; // Because IE return full URL.
n = refs[href];
spans[i].innerHTML =
"[<a href='#_footnote_" + n +
"' title='View footnote' class='footnote'>" + n + "</a>]";
}
}
}
}
}
/*]]>*/
</script>
</head>
<body>
<div id="header">
<h1>
UNICHARSET_EXTRACTOR(1) Manual Page
</h1>
<h2>NAME</h2>
<div class="sectionbody">
<p>unicharset_extractor -
extract unicharset from Tesseract boxfiles
</p>
</div>
</div>
<div id="content">
<h2 id="_synopsis">SYNOPSIS</h2>
<div class="sectionbody">
<div class="paragraph"><p><strong>unicharset_extractor</strong> <em>[-D dir]</em> <em>FILE</em>…</p></div>
</div>
<h2 id="_description">DESCRIPTION</h2>
<div class="sectionbody">
<div class="paragraph"><p>Tesseract needs to know the set of possible characters it can output.
To generate the unicharset data file, use the unicharset_extractor
program on the same training pages bounding box files as used for
clustering:</p></div>
<div class="literalblock">
<div class="content">
<pre><tt>unicharset_extractor fontfile_1.box fontfile_2.box ...</tt></pre>
</div></div>
<div class="paragraph"><p>The unicharset will be put into the file <em>dir/unicharset</em>, or simply
<em>./unicharset</em> if no output directory is provided.</p></div>
<div class="paragraph"><p>Tesseract also needs to have access to character properties isalpha,
isdigit, isupper, islower, ispunctuation. all of this auxilury data
and more is encoded in this file. (See unicharset(5))</p></div>
<div class="paragraph"><p>If your system supports the wctype functions, these values will be set
automatically by unicharset_extractor and there is no need to edit the
unicharset file. On some older systems (eg Windows 95), the unicharset
file must be edited by hand to add these property description codes.</p></div>
<div class="paragraph"><p><strong>NOTE</strong> The unicharset file must be regenerated whenever inttemp, normproto
and pffmtable are generated (i.e. they must all be recreated when the box
file is changed) as they have to be in sync. This is made easier than in
previous versions by running unicharset_extractor before mftraining and
cntraining, and giving the unicharset to mftraining.</p></div>
</div>
<h2 id="_see_also">SEE ALSO</h2>
<div class="sectionbody">
<div class="paragraph"><p>tesseract(1), unicharset(5)</p></div>
<div class="paragraph"><p><a href="http://code.google.com/p/tesseract-ocr/wiki/TrainingTesseract3">http://code.google.com/p/tesseract-ocr/wiki/TrainingTesseract3</a></p></div>
</div>
<h2 id="_history">HISTORY</h2>
<div class="sectionbody">
<div class="paragraph"><p>unicharset_extractor first appeared in Tesseract 2.00.</p></div>
</div>
<h2 id="_copying">COPYING</h2>
<div class="sectionbody">
<div class="paragraph"><p>Copyright (C) 2006, Google Inc.
Licensed under the Apache License, Version 2.0</p></div>
</div>
<h2 id="_author">AUTHOR</h2>
<div class="sectionbody">
<div class="paragraph"><p>The Tesseract OCR engine was written by Ray Smith and his research groups
at Hewlett Packard (1985-1995) and Google (2006-present).</p></div>
</div>
</div>
<div id="footnotes"><hr /></div>
<div id="footer">
<div id="footer-text">
Last updated 2012-02-09 09:19:05 PDT
</div>
</div>
</body>
</html>
| 1080228-arabicocr11 | doc/unicharset_extractor.1.html | HTML | asf20 | 15,100 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="generator" content="AsciiDoc 8.5.2" />
<title>MFTRAINING(1)</title>
<style type="text/css">
/* Debug borders */
p, li, dt, dd, div, pre, h1, h2, h3, h4, h5, h6 {
/*
border: 1px solid red;
*/
}
body {
margin: 1em 5% 1em 5%;
}
a {
color: blue;
text-decoration: underline;
}
a:visited {
color: fuchsia;
}
em {
font-style: italic;
color: navy;
}
strong {
font-weight: bold;
color: #083194;
}
tt {
color: navy;
}
h1, h2, h3, h4, h5, h6 {
color: #527bbd;
font-family: sans-serif;
margin-top: 1.2em;
margin-bottom: 0.5em;
line-height: 1.3;
}
h1, h2, h3 {
border-bottom: 2px solid silver;
}
h2 {
padding-top: 0.5em;
}
h3 {
float: left;
}
h3 + * {
clear: left;
}
div.sectionbody {
font-family: serif;
margin-left: 0;
}
hr {
border: 1px solid silver;
}
p {
margin-top: 0.5em;
margin-bottom: 0.5em;
}
ul, ol, li > p {
margin-top: 0;
}
pre {
padding: 0;
margin: 0;
}
span#author {
color: #527bbd;
font-family: sans-serif;
font-weight: bold;
font-size: 1.1em;
}
span#email {
}
span#revnumber, span#revdate, span#revremark {
font-family: sans-serif;
}
div#footer {
font-family: sans-serif;
font-size: small;
border-top: 2px solid silver;
padding-top: 0.5em;
margin-top: 4.0em;
}
div#footer-text {
float: left;
padding-bottom: 0.5em;
}
div#footer-badges {
float: right;
padding-bottom: 0.5em;
}
div#preamble {
margin-top: 1.5em;
margin-bottom: 1.5em;
}
div.tableblock, div.imageblock, div.exampleblock, div.verseblock,
div.quoteblock, div.literalblock, div.listingblock, div.sidebarblock,
div.admonitionblock {
margin-top: 1.0em;
margin-bottom: 1.5em;
}
div.admonitionblock {
margin-top: 2.0em;
margin-bottom: 2.0em;
margin-right: 10%;
color: #606060;
}
div.content { /* Block element content. */
padding: 0;
}
/* Block element titles. */
div.title, caption.title {
color: #527bbd;
font-family: sans-serif;
font-weight: bold;
text-align: left;
margin-top: 1.0em;
margin-bottom: 0.5em;
}
div.title + * {
margin-top: 0;
}
td div.title:first-child {
margin-top: 0.0em;
}
div.content div.title:first-child {
margin-top: 0.0em;
}
div.content + div.title {
margin-top: 0.0em;
}
div.sidebarblock > div.content {
background: #ffffee;
border: 1px solid silver;
padding: 0.5em;
}
div.listingblock > div.content {
border: 1px solid silver;
background: #f4f4f4;
padding: 0.5em;
}
div.quoteblock, div.verseblock {
padding-left: 1.0em;
margin-left: 1.0em;
margin-right: 10%;
border-left: 5px solid #dddddd;
color: #777777;
}
div.quoteblock > div.attribution {
padding-top: 0.5em;
text-align: right;
}
div.verseblock > div.content {
white-space: pre;
}
div.verseblock > div.attribution {
padding-top: 0.75em;
text-align: left;
}
/* DEPRECATED: Pre version 8.2.7 verse style literal block. */
div.verseblock + div.attribution {
text-align: left;
}
div.admonitionblock .icon {
vertical-align: top;
font-size: 1.1em;
font-weight: bold;
text-decoration: underline;
color: #527bbd;
padding-right: 0.5em;
}
div.admonitionblock td.content {
padding-left: 0.5em;
border-left: 3px solid #dddddd;
}
div.exampleblock > div.content {
border-left: 3px solid #dddddd;
padding-left: 0.5em;
}
div.imageblock div.content { padding-left: 0; }
span.image img { border-style: none; }
a.image:visited { color: white; }
dl {
margin-top: 0.8em;
margin-bottom: 0.8em;
}
dt {
margin-top: 0.5em;
margin-bottom: 0;
font-style: normal;
color: navy;
}
dd > *:first-child {
margin-top: 0.1em;
}
ul, ol {
list-style-position: outside;
}
ol.arabic {
list-style-type: decimal;
}
ol.loweralpha {
list-style-type: lower-alpha;
}
ol.upperalpha {
list-style-type: upper-alpha;
}
ol.lowerroman {
list-style-type: lower-roman;
}
ol.upperroman {
list-style-type: upper-roman;
}
div.compact ul, div.compact ol,
div.compact p, div.compact p,
div.compact div, div.compact div {
margin-top: 0.1em;
margin-bottom: 0.1em;
}
div.tableblock > table {
border: 3px solid #527bbd;
}
thead, p.table.header {
font-family: sans-serif;
font-weight: bold;
}
tfoot {
font-weight: bold;
}
td > div.verse {
white-space: pre;
}
p.table {
margin-top: 0;
}
/* Because the table frame attribute is overriden by CSS in most browsers. */
div.tableblock > table[frame="void"] {
border-style: none;
}
div.tableblock > table[frame="hsides"] {
border-left-style: none;
border-right-style: none;
}
div.tableblock > table[frame="vsides"] {
border-top-style: none;
border-bottom-style: none;
}
div.hdlist {
margin-top: 0.8em;
margin-bottom: 0.8em;
}
div.hdlist tr {
padding-bottom: 15px;
}
dt.hdlist1.strong, td.hdlist1.strong {
font-weight: bold;
}
td.hdlist1 {
vertical-align: top;
font-style: normal;
padding-right: 0.8em;
color: navy;
}
td.hdlist2 {
vertical-align: top;
}
div.hdlist.compact tr {
margin: 0;
padding-bottom: 0;
}
.comment {
background: yellow;
}
.footnote, .footnoteref {
font-size: 0.8em;
}
span.footnote, span.footnoteref {
vertical-align: super;
}
#footnotes {
margin: 20px 0 20px 0;
padding: 7px 0 0 0;
}
#footnotes div.footnote {
margin: 0 0 5px 0;
}
#footnotes hr {
border: none;
border-top: 1px solid silver;
height: 1px;
text-align: left;
margin-left: 0;
width: 20%;
min-width: 100px;
}
@media print {
div#footer-badges { display: none; }
}
div#toc {
margin-bottom: 2.5em;
}
div#toctitle {
color: #527bbd;
font-family: sans-serif;
font-size: 1.1em;
font-weight: bold;
margin-top: 1.0em;
margin-bottom: 0.1em;
}
div.toclevel1, div.toclevel2, div.toclevel3, div.toclevel4 {
margin-top: 0;
margin-bottom: 0;
}
div.toclevel2 {
margin-left: 2em;
font-size: 0.9em;
}
div.toclevel3 {
margin-left: 4em;
font-size: 0.9em;
}
div.toclevel4 {
margin-left: 6em;
font-size: 0.9em;
}
/* Overrides for manpage documents */
h1 {
padding-top: 0.5em;
padding-bottom: 0.5em;
border-top: 2px solid silver;
border-bottom: 2px solid silver;
}
h2 {
border-style: none;
}
div.sectionbody {
margin-left: 5%;
}
@media print {
div#toc { display: none; }
}
/* Workarounds for IE6's broken and incomplete CSS2. */
div.sidebar-content {
background: #ffffee;
border: 1px solid silver;
padding: 0.5em;
}
div.sidebar-title, div.image-title {
color: #527bbd;
font-family: sans-serif;
font-weight: bold;
margin-top: 0.0em;
margin-bottom: 0.5em;
}
div.listingblock div.content {
border: 1px solid silver;
background: #f4f4f4;
padding: 0.5em;
}
div.quoteblock-attribution {
padding-top: 0.5em;
text-align: right;
}
div.verseblock-content {
white-space: pre;
}
div.verseblock-attribution {
padding-top: 0.75em;
text-align: left;
}
div.exampleblock-content {
border-left: 3px solid #dddddd;
padding-left: 0.5em;
}
/* IE6 sets dynamically generated links as visited. */
div#toc a:visited { color: blue; }
</style>
<script type="text/javascript">
/*<+'])');
// Function that scans the DOM tree for header elements (the DOM2
// nodeIterator API would be a better technique but not supported by all
// browsers).
var iterate = function (el) {
for (var i = el.firstChild; i != null; i = i.nextSibling) {
if (i.nodeType == 1 /* Node.ELEMENT_NODE */) {
var mo = re.exec(i.tagName);
if (mo && (i.getAttribute("class") || i.getAttribute("className")) != "float") {
result[result.length] = new TocEntry(i, getText(i), mo[1]-1);
}
iterate(i);
}
}
}
iterate(el);
return result;
}
var toc = document.getElementById("toc");
var entries = tocEntries(document.getElementById("content"), toclevels);
for (var i = 0; i < entries.length; ++i) {
var entry = entries[i];
if (entry.element.id == "")
entry.element.id = "_toc_" + i;
var a = document.createElement("a");
a.href = "#" + entry.element.id;
a.appendChild(document.createTextNode(entry.text));
var div = document.createElement("div");
div.appendChild(a);
div.className = "toclevel" + entry.toclevel;
toc.appendChild(div);
}
if (entries.length == 0)
toc.parentNode.removeChild(toc);
},
/////////////////////////////////////////////////////////////////////
// Footnotes generator
/////////////////////////////////////////////////////////////////////
/* Based on footnote generation code from:
* http://www.brandspankingnew.net/archive/2005/07/format_footnote.html
*/
footnotes: function () {
var cont = document.getElementById("content");
var noteholder = document.getElementById("footnotes");
var spans = cont.getElementsByTagName("span");
var refs = {};
var n = 0;
for (i=0; i<spans.length; i++) {
if (spans[i].className == "footnote") {
n++;
// Use [\s\S] in place of . so multi-line matches work.
// Because JavaScript has no s (dotall) regex flag.
note = spans[i].innerHTML.match(/\s*\[([\s\S]*)]\s*/)[1];
noteholder.innerHTML +=
"<div class='footnote' id='_footnote_" + n + "'>" +
"<a href='#_footnoteref_" + n + "' title='Return to text'>" +
n + "</a>. " + note + "</div>";
spans[i].innerHTML =
"[<a id='_footnoteref_" + n + "' href='#_footnote_" + n +
"' title='View footnote' class='footnote'>" + n + "</a>]";
var id =spans[i].getAttribute("id");
if (id != null) refs["#"+id] = n;
}
}
if (n == 0)
noteholder.parentNode.removeChild(noteholder);
else {
// Process footnoterefs.
for (i=0; i<spans.length; i++) {
if (spans[i].className == "footnoteref") {
var href = spans[i].getElementsByTagName("a")[0].getAttribute("href");
href = href.match(/#.*/)[0]; // Because IE return full URL.
n = refs[href];
spans[i].innerHTML =
"[<a href='#_footnote_" + n +
"' title='View footnote' class='footnote'>" + n + "</a>]";
}
}
}
}
}
/*]]>*/
</script>
</head>
<body>
<div id="header">
<h1>
MFTRAINING(1) Manual Page
</h1>
<h2>NAME</h2>
<div class="sectionbody">
<p>mftraining -
feature training for Tesseract
</p>
</div>
</div>
<div id="content">
<h2 id="_synopsis">SYNOPSIS</h2>
<div class="sectionbody">
<div class="paragraph"><p>mftraining -U <em>unicharset</em> -O <em>lang.unicharset</em> <em>FILE</em>…</p></div>
</div>
<h2 id="_description">DESCRIPTION</h2>
<div class="sectionbody">
<div class="paragraph"><p>mftraining takes a list of .tr files, from which it generates the
files <strong>inttemp</strong> (the shape prototypes), <strong>shapetable</strong>, and <strong>pffmtable</strong>
(the number of expected features for each character). (A fourth file
called Microfeat is also written by this program, but it is not used.)</p></div>
</div>
<h2 id="_options">OPTIONS</h2>
<div class="sectionbody">
<div class="dlist"><dl>
<dt class="hdlist1">
-U <em>FILE</em>
</dt>
<dd>
<p>
(Input) The unicharset generated by unicharset_extractor(1)
</p>
</dd>
<dt class="hdlist1">
-F <em>font_properties_file</em>
</dt>
<dd>
<p>
(Input) font properties file, each line is of the following form, where each field other than the font name is 0 or 1:
</p>
<div class="literalblock">
<div class="content">
<pre><tt>*font_name* *italic* *bold* *fixed_pitch* *serif* *fraktur*</tt></pre>
</div></div>
</dd>
<dt class="hdlist1">
-X <em>xheights_file</em>
</dt>
<dd>
<p>
(Input) x heights file, each line is of the following form, where xheight is calculated as the pixel x height of a character drawn at 32pt on 300 dpi. [ That is, if base x height + ascenders + descenders = 133, how much is x height? ]
</p>
<div class="literalblock">
<div class="content">
<pre><tt>*font_name* *xheight*</tt></pre>
</div></div>
</dd>
<dt class="hdlist1">
-D <em>dir</em>
</dt>
<dd>
<p>
Directory to write output files to.
</p>
</dd>
<dt class="hdlist1">
-O <em>FILE</em>
</dt>
<dd>
<p>
(Output) The output unicharset that will be given to combine_tessdata(1)
</p>
</dd>
</dl></div>
</div>
<h2 id="_see_also">SEE ALSO</h2>
<div class="sectionbody">
<div class="paragraph"><p>tesseract(1), cntraining(1), unicharset_extractor(1), combine_tessdata(1),
shapeclustering(1), unicharset(5)</p></div>
<div class="paragraph"><p><a href="http://code.google.com/p/tesseract-ocr/wiki/TrainingTesseract3">http://code.google.com/p/tesseract-ocr/wiki/TrainingTesseract3</a></p></div>
</div>
<h2 id="_copying">COPYING</h2>
<div class="sectionbody">
<div class="paragraph"><p>Copyright (C) Hewlett-Packard Company, 1988
Licensed under the Apache License, Version 2.0</p></div>
</div>
<h2 id="_author">AUTHOR</h2>
<div class="sectionbody">
<div class="paragraph"><p>The Tesseract OCR engine was written by Ray Smith and his research groups
at Hewlett Packard (1985-1995) and Google (2006-present).</p></div>
</div>
</div>
<div id="footnotes"><hr /></div>
<div id="footer">
<div id="footer-text">
Last updated 2012-02-09 14:23:49 PDT
</div>
</div>
</body>
</html>
| 1080228-arabicocr11 | doc/mftraining.1.html | HTML | asf20 | 15,144 |
'\" t
.\" Title: unicharambigs
.\" Author: [see the "AUTHOR" section]
.\" Generator: DocBook XSL Stylesheets v1.75.2 <http://docbook.sf.net/>
.\" Date: 02/09/2012
.\" Manual: \ \&
.\" Source: \ \&
.\" Language: English
.\"
.TH "UNICHARAMBIGS" "5" "02/09/2012" "\ \&" "\ \&"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.\" http://bugs.debian.org/507673
.\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.ie \n(.g .ds Aq \(aq
.el .ds Aq '
.\" -----------------------------------------------------------------
.\" * set default formatting
.\" -----------------------------------------------------------------
.\" disable hyphenation
.nh
.\" disable justification (adjust text to left margin only)
.ad l
.\" -----------------------------------------------------------------
.\" * MAIN CONTENT STARTS HERE *
.\" -----------------------------------------------------------------
.SH "NAME"
unicharambigs \- Tesseract unicharset ambiguities
.SH "DESCRIPTION"
.sp
The unicharambigs file (a component of traineddata, see combine_tessdata(1) ) is used by Tesseract to represent possible ambiguities between characters, or groups of characters\&.
.sp
The file contains a number of lines, laid out as follow:
.sp
.if n \{\
.RS 4
.\}
.nf
[num] <TAB> [char(s)] <TAB> [num] <TAB> [char(s)] <TAB> [num]
.fi
.if n \{\
.RE
.\}
.sp
.TS
tab(:);
lt lt
lt lt
lt lt
lt lt
lt lt.
T{
.sp
Field one
T}:T{
.sp
the number of characters contained in field two
T}
T{
.sp
Field two
T}:T{
.sp
the character sequence to be replaced
T}
T{
.sp
Field three
T}:T{
.sp
the number of characters contained in field four
T}
T{
.sp
Field four
T}:T{
.sp
the character sequence used to replace field two
T}
T{
.sp
Field five
T}:T{
.sp
contains either 1 or 0\&. 1 denotes a mandatory replacement, 0 denotes an optional replacement\&.
T}
.TE
.sp 1
.sp
Characters appearing in fields two and four should appear in unicharset\&. The numbers in fields one and three refer to the number of unichars (not bytes)\&.
.SH "EXAMPLE"
.sp
.if n \{\
.RS 4
.\}
.nf
2 \*(Aq \*(Aq 1 " 1
1 m 2 r n 0
3 i i i 1 m 0
.fi
.if n \{\
.RE
.\}
.sp
In this example, all instances of the \fI2\fR character sequence \fI\*(Aq\fR\*(Aq will \fBalways\fR be replaced by the \fI1\fR character sequence \fI"\fR; a \fI1\fR character sequence \fIm\fR \fBmay\fR be replaced by the \fI2\fR character sequence \fIrn\fR, and the \fI3\fR character sequence \fBmay\fR be replaced by the \fI1\fR character sequence \fIm\fR\&.
.SH "HISTORY"
.sp
The unicharambigs file first appeared in Tesseract 3\&.00; prior to that, a similar format, called DangAmbigs (\fIdangerous ambiguities\fR) was used: the format was almost identical, except only mandatory replacements could be specified, and field 5 was absent\&.
.SH "BUGS"
.sp
This is a documentation "bug": it\(cqs not currently clear what should be done in the case of ligatures (such as \fIfi\fR) which may also appear as regular letters in the unicharset\&.
.SH "SEE ALSO"
.sp
tesseract(1), unicharset(5)
.SH "AUTHOR"
.sp
The Tesseract OCR engine was written by Ray Smith and his research groups at Hewlett Packard (1985\-1995) and Google (2006\-present)\&.
| 1080228-arabicocr11 | doc/unicharambigs.5 | Roff Manpage | asf20 | 3,491 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="generator" content="AsciiDoc 8.5.2" />
<title>AMBIGUOUS_WORDS(1)</title>
<style type="text/css">
/* Debug borders */
p, li, dt, dd, div, pre, h1, h2, h3, h4, h5, h6 {
/*
border: 1px solid red;
*/
}
body {
margin: 1em 5% 1em 5%;
}
a {
color: blue;
text-decoration: underline;
}
a:visited {
color: fuchsia;
}
em {
font-style: italic;
color: navy;
}
strong {
font-weight: bold;
color: #083194;
}
tt {
color: navy;
}
h1, h2, h3, h4, h5, h6 {
color: #527bbd;
font-family: sans-serif;
margin-top: 1.2em;
margin-bottom: 0.5em;
line-height: 1.3;
}
h1, h2, h3 {
border-bottom: 2px solid silver;
}
h2 {
padding-top: 0.5em;
}
h3 {
float: left;
}
h3 + * {
clear: left;
}
div.sectionbody {
font-family: serif;
margin-left: 0;
}
hr {
border: 1px solid silver;
}
p {
margin-top: 0.5em;
margin-bottom: 0.5em;
}
ul, ol, li > p {
margin-top: 0;
}
pre {
padding: 0;
margin: 0;
}
span#author {
color: #527bbd;
font-family: sans-serif;
font-weight: bold;
font-size: 1.1em;
}
span#email {
}
span#revnumber, span#revdate, span#revremark {
font-family: sans-serif;
}
div#footer {
font-family: sans-serif;
font-size: small;
border-top: 2px solid silver;
padding-top: 0.5em;
margin-top: 4.0em;
}
div#footer-text {
float: left;
padding-bottom: 0.5em;
}
div#footer-badges {
float: right;
padding-bottom: 0.5em;
}
div#preamble {
margin-top: 1.5em;
margin-bottom: 1.5em;
}
div.tableblock, div.imageblock, div.exampleblock, div.verseblock,
div.quoteblock, div.literalblock, div.listingblock, div.sidebarblock,
div.admonitionblock {
margin-top: 1.0em;
margin-bottom: 1.5em;
}
div.admonitionblock {
margin-top: 2.0em;
margin-bottom: 2.0em;
margin-right: 10%;
color: #606060;
}
div.content { /* Block element content. */
padding: 0;
}
/* Block element titles. */
div.title, caption.title {
color: #527bbd;
font-family: sans-serif;
font-weight: bold;
text-align: left;
margin-top: 1.0em;
margin-bottom: 0.5em;
}
div.title + * {
margin-top: 0;
}
td div.title:first-child {
margin-top: 0.0em;
}
div.content div.title:first-child {
margin-top: 0.0em;
}
div.content + div.title {
margin-top: 0.0em;
}
div.sidebarblock > div.content {
background: #ffffee;
border: 1px solid silver;
padding: 0.5em;
}
div.listingblock > div.content {
border: 1px solid silver;
background: #f4f4f4;
padding: 0.5em;
}
div.quoteblock, div.verseblock {
padding-left: 1.0em;
margin-left: 1.0em;
margin-right: 10%;
border-left: 5px solid #dddddd;
color: #777777;
}
div.quoteblock > div.attribution {
padding-top: 0.5em;
text-align: right;
}
div.verseblock > div.content {
white-space: pre;
}
div.verseblock > div.attribution {
padding-top: 0.75em;
text-align: left;
}
/* DEPRECATED: Pre version 8.2.7 verse style literal block. */
div.verseblock + div.attribution {
text-align: left;
}
div.admonitionblock .icon {
vertical-align: top;
font-size: 1.1em;
font-weight: bold;
text-decoration: underline;
color: #527bbd;
padding-right: 0.5em;
}
div.admonitionblock td.content {
padding-left: 0.5em;
border-left: 3px solid #dddddd;
}
div.exampleblock > div.content {
border-left: 3px solid #dddddd;
padding-left: 0.5em;
}
div.imageblock div.content { padding-left: 0; }
span.image img { border-style: none; }
a.image:visited { color: white; }
dl {
margin-top: 0.8em;
margin-bottom: 0.8em;
}
dt {
margin-top: 0.5em;
margin-bottom: 0;
font-style: normal;
color: navy;
}
dd > *:first-child {
margin-top: 0.1em;
}
ul, ol {
list-style-position: outside;
}
ol.arabic {
list-style-type: decimal;
}
ol.loweralpha {
list-style-type: lower-alpha;
}
ol.upperalpha {
list-style-type: upper-alpha;
}
ol.lowerroman {
list-style-type: lower-roman;
}
ol.upperroman {
list-style-type: upper-roman;
}
div.compact ul, div.compact ol,
div.compact p, div.compact p,
div.compact div, div.compact div {
margin-top: 0.1em;
margin-bottom: 0.1em;
}
div.tableblock > table {
border: 3px solid #527bbd;
}
thead, p.table.header {
font-family: sans-serif;
font-weight: bold;
}
tfoot {
font-weight: bold;
}
td > div.verse {
white-space: pre;
}
p.table {
margin-top: 0;
}
/* Because the table frame attribute is overriden by CSS in most browsers. */
div.tableblock > table[frame="void"] {
border-style: none;
}
div.tableblock > table[frame="hsides"] {
border-left-style: none;
border-right-style: none;
}
div.tableblock > table[frame="vsides"] {
border-top-style: none;
border-bottom-style: none;
}
div.hdlist {
margin-top: 0.8em;
margin-bottom: 0.8em;
}
div.hdlist tr {
padding-bottom: 15px;
}
dt.hdlist1.strong, td.hdlist1.strong {
font-weight: bold;
}
td.hdlist1 {
vertical-align: top;
font-style: normal;
padding-right: 0.8em;
color: navy;
}
td.hdlist2 {
vertical-align: top;
}
div.hdlist.compact tr {
margin: 0;
padding-bottom: 0;
}
.comment {
background: yellow;
}
.footnote, .footnoteref {
font-size: 0.8em;
}
span.footnote, span.footnoteref {
vertical-align: super;
}
#footnotes {
margin: 20px 0 20px 0;
padding: 7px 0 0 0;
}
#footnotes div.footnote {
margin: 0 0 5px 0;
}
#footnotes hr {
border: none;
border-top: 1px solid silver;
height: 1px;
text-align: left;
margin-left: 0;
width: 20%;
min-width: 100px;
}
@media print {
div#footer-badges { display: none; }
}
div#toc {
margin-bottom: 2.5em;
}
div#toctitle {
color: #527bbd;
font-family: sans-serif;
font-size: 1.1em;
font-weight: bold;
margin-top: 1.0em;
margin-bottom: 0.1em;
}
div.toclevel1, div.toclevel2, div.toclevel3, div.toclevel4 {
margin-top: 0;
margin-bottom: 0;
}
div.toclevel2 {
margin-left: 2em;
font-size: 0.9em;
}
div.toclevel3 {
margin-left: 4em;
font-size: 0.9em;
}
div.toclevel4 {
margin-left: 6em;
font-size: 0.9em;
}
/* Overrides for manpage documents */
h1 {
padding-top: 0.5em;
padding-bottom: 0.5em;
border-top: 2px solid silver;
border-bottom: 2px solid silver;
}
h2 {
border-style: none;
}
div.sectionbody {
margin-left: 5%;
}
@media print {
div#toc { display: none; }
}
/* Workarounds for IE6's broken and incomplete CSS2. */
div.sidebar-content {
background: #ffffee;
border: 1px solid silver;
padding: 0.5em;
}
div.sidebar-title, div.image-title {
color: #527bbd;
font-family: sans-serif;
font-weight: bold;
margin-top: 0.0em;
margin-bottom: 0.5em;
}
div.listingblock div.content {
border: 1px solid silver;
background: #f4f4f4;
padding: 0.5em;
}
div.quoteblock-attribution {
padding-top: 0.5em;
text-align: right;
}
div.verseblock-content {
white-space: pre;
}
div.verseblock-attribution {
padding-top: 0.75em;
text-align: left;
}
div.exampleblock-content {
border-left: 3px solid #dddddd;
padding-left: 0.5em;
}
/* IE6 sets dynamically generated links as visited. */
div#toc a:visited { color: blue; }
</style>
<script type="text/javascript">
/*<+'])');
// Function that scans the DOM tree for header elements (the DOM2
// nodeIterator API would be a better technique but not supported by all
// browsers).
var iterate = function (el) {
for (var i = el.firstChild; i != null; i = i.nextSibling) {
if (i.nodeType == 1 /* Node.ELEMENT_NODE */) {
var mo = re.exec(i.tagName);
if (mo && (i.getAttribute("class") || i.getAttribute("className")) != "float") {
result[result.length] = new TocEntry(i, getText(i), mo[1]-1);
}
iterate(i);
}
}
}
iterate(el);
return result;
}
var toc = document.getElementById("toc");
var entries = tocEntries(document.getElementById("content"), toclevels);
for (var i = 0; i < entries.length; ++i) {
var entry = entries[i];
if (entry.element.id == "")
entry.element.id = "_toc_" + i;
var a = document.createElement("a");
a.href = "#" + entry.element.id;
a.appendChild(document.createTextNode(entry.text));
var div = document.createElement("div");
div.appendChild(a);
div.className = "toclevel" + entry.toclevel;
toc.appendChild(div);
}
if (entries.length == 0)
toc.parentNode.removeChild(toc);
},
/////////////////////////////////////////////////////////////////////
// Footnotes generator
/////////////////////////////////////////////////////////////////////
/* Based on footnote generation code from:
* http://www.brandspankingnew.net/archive/2005/07/format_footnote.html
*/
footnotes: function () {
var cont = document.getElementById("content");
var noteholder = document.getElementById("footnotes");
var spans = cont.getElementsByTagName("span");
var refs = {};
var n = 0;
for (i=0; i<spans.length; i++) {
if (spans[i].className == "footnote") {
n++;
// Use [\s\S] in place of . so multi-line matches work.
// Because JavaScript has no s (dotall) regex flag.
note = spans[i].innerHTML.match(/\s*\[([\s\S]*)]\s*/)[1];
noteholder.innerHTML +=
"<div class='footnote' id='_footnote_" + n + "'>" +
"<a href='#_footnoteref_" + n + "' title='Return to text'>" +
n + "</a>. " + note + "</div>";
spans[i].innerHTML =
"[<a id='_footnoteref_" + n + "' href='#_footnote_" + n +
"' title='View footnote' class='footnote'>" + n + "</a>]";
var id =spans[i].getAttribute("id");
if (id != null) refs["#"+id] = n;
}
}
if (n == 0)
noteholder.parentNode.removeChild(noteholder);
else {
// Process footnoterefs.
for (i=0; i<spans.length; i++) {
if (spans[i].className == "footnoteref") {
var href = spans[i].getElementsByTagName("a")[0].getAttribute("href");
href = href.match(/#.*/)[0]; // Because IE return full URL.
n = refs[href];
spans[i].innerHTML =
"[<a href='#_footnote_" + n +
"' title='View footnote' class='footnote'>" + n + "</a>]";
}
}
}
}
}
/*]]>*/
</script>
</head>
<body>
<div id="header">
<h1>
AMBIGUOUS_WORDS(1) Manual Page
</h1>
<h2>NAME</h2>
<div class="sectionbody">
<p>ambiguous_words -
generate sets of words Tesseract is likely to find ambiguous
</p>
</div>
</div>
<div id="content">
<h2 id="_synopsis">SYNOPSIS</h2>
<div class="sectionbody">
<div class="paragraph"><p><strong>ambiguous_words</strong> [-l lang] <em>TESSDATADIR</em> <em>WORDLIST</em> <em>AMBIGUOUSFILE</em></p></div>
</div>
<h2 id="_description">DESCRIPTION</h2>
<div class="sectionbody">
<div class="paragraph"><p>ambiguous_words(1) runs Tesseract in a special mode, and for each word
in word list, produces a set of words which Tesseract thinks might be
ambiguous with it. <em>TESSDATADIR</em> must be set to the absolute path of
a directory containing <em>tessdata/lang.traineddata</em>.</p></div>
</div>
<h2 id="_see_also">SEE ALSO</h2>
<div class="sectionbody">
<div class="paragraph"><p>tesseract(1)</p></div>
</div>
<h2 id="_copying">COPYING</h2>
<div class="sectionbody">
<div class="paragraph"><p>Copyright (C) 2012 Google, Inc.
Licensed under the Apache License, Version 2.0</p></div>
</div>
<h2 id="_author">AUTHOR</h2>
<div class="sectionbody">
<div class="paragraph"><p>The Tesseract OCR engine was written by Ray Smith and his research groups
at Hewlett Packard (1985-1995) and Google (2006-present).</p></div>
</div>
</div>
<div id="footnotes"><hr /></div>
<div id="footer">
<div id="footer-text">
Last updated 2012-02-07 13:38:29 PDT
</div>
</div>
</body>
</html>
| 1080228-arabicocr11 | doc/ambiguous_words.1.html | HTML | asf20 | 13,575 |
'\" t
.\" Title: mftraining
.\" Author: [see the "AUTHOR" section]
.\" Generator: DocBook XSL Stylesheets v1.75.2 <http://docbook.sf.net/>
.\" Date: 02/09/2012
.\" Manual: \ \&
.\" Source: \ \&
.\" Language: English
.\"
.TH "MFTRAINING" "1" "02/09/2012" "\ \&" "\ \&"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.\" http://bugs.debian.org/507673
.\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.ie \n(.g .ds Aq \(aq
.el .ds Aq '
.\" -----------------------------------------------------------------
.\" * set default formatting
.\" -----------------------------------------------------------------
.\" disable hyphenation
.nh
.\" disable justification (adjust text to left margin only)
.ad l
.\" -----------------------------------------------------------------
.\" * MAIN CONTENT STARTS HERE *
.\" -----------------------------------------------------------------
.SH "NAME"
mftraining \- feature training for Tesseract
.SH "SYNOPSIS"
.sp
mftraining \-U \fIunicharset\fR \-O \fIlang\&.unicharset\fR \fIFILE\fR\&...
.SH "DESCRIPTION"
.sp
mftraining takes a list of \&.tr files, from which it generates the files \fBinttemp\fR (the shape prototypes), \fBshapetable\fR, and \fBpffmtable\fR (the number of expected features for each character)\&. (A fourth file called Microfeat is also written by this program, but it is not used\&.)
.SH "OPTIONS"
.PP
\-U \fIFILE\fR
.RS 4
(Input) The unicharset generated by unicharset_extractor(1)
.RE
.PP
\-F \fIfont_properties_file\fR
.RS 4
(Input) font properties file, each line is of the following form, where each field other than the font name is 0 or 1:
.sp
.if n \{\
.RS 4
.\}
.nf
*font_name* *italic* *bold* *fixed_pitch* *serif* *fraktur*
.fi
.if n \{\
.RE
.\}
.RE
.PP
\-X \fIxheights_file\fR
.RS 4
(Input) x heights file, each line is of the following form, where xheight is calculated as the pixel x height of a character drawn at 32pt on 300 dpi\&. [ That is, if base x height + ascenders + descenders = 133, how much is x height? ]
.sp
.if n \{\
.RS 4
.\}
.nf
*font_name* *xheight*
.fi
.if n \{\
.RE
.\}
.RE
.PP
\-D \fIdir\fR
.RS 4
Directory to write output files to\&.
.RE
.PP
\-O \fIFILE\fR
.RS 4
(Output) The output unicharset that will be given to combine_tessdata(1)
.RE
.SH "SEE ALSO"
.sp
tesseract(1), cntraining(1), unicharset_extractor(1), combine_tessdata(1), shapeclustering(1), unicharset(5)
.sp
\m[blue]\fBhttp://code\&.google\&.com/p/tesseract\-ocr/wiki/TrainingTesseract3\fR\m[]
.SH "COPYING"
.sp
Copyright (C) Hewlett\-Packard Company, 1988 Licensed under the Apache License, Version 2\&.0
.SH "AUTHOR"
.sp
The Tesseract OCR engine was written by Ray Smith and his research groups at Hewlett Packard (1985\-1995) and Google (2006\-present)\&.
| 1080228-arabicocr11 | doc/mftraining.1 | Roff Manpage | asf20 | 3,022 |
'\" t
.\" Title: wordlist2dawg
.\" Author: [see the "AUTHOR" section]
.\" Generator: DocBook XSL Stylesheets v1.75.2 <http://docbook.sf.net/>
.\" Date: 02/09/2012
.\" Manual: \ \&
.\" Source: \ \&
.\" Language: English
.\"
.TH "WORDLIST2DAWG" "1" "02/09/2012" "\ \&" "\ \&"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.\" http://bugs.debian.org/507673
.\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.ie \n(.g .ds Aq \(aq
.el .ds Aq '
.\" -----------------------------------------------------------------
.\" * set default formatting
.\" -----------------------------------------------------------------
.\" disable hyphenation
.nh
.\" disable justification (adjust text to left margin only)
.ad l
.\" -----------------------------------------------------------------
.\" * MAIN CONTENT STARTS HERE *
.\" -----------------------------------------------------------------
.SH "NAME"
wordlist2dawg \- convert a wordlist to a DAWG for Tesseract
.SH "SYNOPSIS"
.sp
\fBwordlist2dawg\fR \fIWORDLIST\fR \fIDAWG\fR \fIlang\&.unicharset\fR
.sp
\fBwordlist2dawg\fR \-t \fIWORDLIST\fR \fIDAWG\fR \fIlang\&.unicharset\fR
.sp
\fBwordlist2dawg\fR \-r 1 \fIWORDLIST\fR \fIDAWG\fR \fIlang\&.unicharset\fR
.sp
\fBwordlist2dawg\fR \-r 2 \fIWORDLIST\fR \fIDAWG\fR \fIlang\&.unicharset\fR
.sp
\fBwordlist2dawg\fR \-l <short> <long> \fIWORDLIST\fR \fIDAWG\fR \fIlang\&.unicharset\fR
.SH "DESCRIPTION"
.sp
wordlist2dawg(1) converts a wordlist to a Directed Acyclic Word Graph (DAWG) for use with Tesseract\&. A DAWG is a compressed, space and time efficient representation of a word list\&.
.SH "OPTIONS"
.sp
\-t Verify that a given dawg file is equivalent to a given wordlist\&.
.sp
\-r 1 Reverse a word if it contains an RTL character\&.
.sp
\-r 2 Reverse all words\&.
.sp
\-l <short> <long> Produce a file with several dawgs in it, one each for words of length <short>, <short+1>,\&... <long>
.SH "ARGUMENTS"
.sp
\fIWORDLIST\fR A plain text file in UTF\-8, one word per line\&.
.sp
\fIDAWG\fR The output DAWG to write\&.
.sp
\fIlang\&.unicharset\fR The unicharset of the language\&. This is the unicharset generated by mftraining(1)\&.
.SH "SEE ALSO"
.sp
tesseract(1), combine_tessdata(1), dawg2wordlist(1)
.sp
\m[blue]\fBhttp://code\&.google\&.com/p/tesseract\-ocr/wiki/TrainingTesseract3\fR\m[]
.SH "COPYING"
.sp
Copyright (C) 2006 Google, Inc\&. Licensed under the Apache License, Version 2\&.0
.SH "AUTHOR"
.sp
The Tesseract OCR engine was written by Ray Smith and his research groups at Hewlett Packard (1985\-1995) and Google (2006\-present)\&.
| 1080228-arabicocr11 | doc/wordlist2dawg.1 | Roff Manpage | asf20 | 2,847 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
<meta name="generator" content="AsciiDoc 8.6.8" />
<title>TESSERACT(1)</title>
<style type="text/css">
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
/* Default font. */
body {
font-family: Georgia,serif;
}
/* Title font. */
h1, h2, h3, h4, h5, h6,
div.title, caption.title,
thead, p.table.header,
#toctitle,
#author, #revnumber, #revdate, #revremark,
#footer {
font-family: Arial,Helvetica,sans-serif;
}
body {
margin: 1em 5% 1em 5%;
}
a {
color: blue;
text-decoration: underline;
}
a:visited {
color: fuchsia;
}
em {
font-style: italic;
color: navy;
}
strong {
font-weight: bold;
color: #083194;
}
h1, h2, h3, h4, h5, h6 {
color: #527bbd;
margin-top: 1.2em;
margin-bottom: 0.5em;
line-height: 1.3;
}
h1, h2, h3 {
border-bottom: 2px solid silver;
}
h2 {
padding-top: 0.5em;
}
h3 {
float: left;
}
h3 + * {
clear: left;
}
h5 {
font-size: 1.0em;
}
div.sectionbody {
margin-left: 0;
}
hr {
border: 1px solid silver;
}
p {
margin-top: 0.5em;
margin-bottom: 0.5em;
}
ul, ol, li > p {
margin-top: 0;
}
ul > li { color: #aaa; }
ul > li > * { color: black; }
.monospaced, code, pre {
font-family: "Courier New", Courier, monospace;
font-size: inherit;
color: navy;
padding: 0;
margin: 0;
}
#author {
color: #527bbd;
font-weight: bold;
font-size: 1.1em;
}
#email {
}
#revnumber, #revdate, #revremark {
}
#footer {
font-size: small;
border-top: 2px solid silver;
padding-top: 0.5em;
margin-top: 4.0em;
}
#footer-text {
float: left;
padding-bottom: 0.5em;
}
#footer-badges {
float: right;
padding-bottom: 0.5em;
}
#preamble {
margin-top: 1.5em;
margin-bottom: 1.5em;
}
div.imageblock, div.exampleblock, div.verseblock,
div.quoteblock, div.literalblock, div.listingblock, div.sidebarblock,
div.admonitionblock {
margin-top: 1.0em;
margin-bottom: 1.5em;
}
div.admonitionblock {
margin-top: 2.0em;
margin-bottom: 2.0em;
margin-right: 10%;
color: #606060;
}
div.content { /* Block element content. */
padding: 0;
}
/* Block element titles. */
div.title, caption.title {
color: #527bbd;
font-weight: bold;
text-align: left;
margin-top: 1.0em;
margin-bottom: 0.5em;
}
div.title + * {
margin-top: 0;
}
td div.title:first-child {
margin-top: 0.0em;
}
div.content div.title:first-child {
margin-top: 0.0em;
}
div.content + div.title {
margin-top: 0.0em;
}
div.sidebarblock > div.content {
background: #ffffee;
border: 1px solid #dddddd;
border-left: 4px solid #f0f0f0;
padding: 0.5em;
}
div.listingblock > div.content {
border: 1px solid #dddddd;
border-left: 5px solid #f0f0f0;
background: #f8f8f8;
padding: 0.5em;
}
div.quoteblock, div.verseblock {
padding-left: 1.0em;
margin-left: 1.0em;
margin-right: 10%;
border-left: 5px solid #f0f0f0;
color: #888;
}
div.quoteblock > div.attribution {
padding-top: 0.5em;
text-align: right;
}
div.verseblock > pre.content {
font-family: inherit;
font-size: inherit;
}
div.verseblock > div.attribution {
padding-top: 0.75em;
text-align: left;
}
/* DEPRECATED: Pre version 8.2.7 verse style literal block. */
div.verseblock + div.attribution {
text-align: left;
}
div.admonitionblock .icon {
vertical-align: top;
font-size: 1.1em;
font-weight: bold;
text-decoration: underline;
color: #527bbd;
padding-right: 0.5em;
}
div.admonitionblock td.content {
padding-left: 0.5em;
border-left: 3px solid #dddddd;
}
div.exampleblock > div.content {
border-left: 3px solid #dddddd;
padding-left: 0.5em;
}
div.imageblock div.content { padding-left: 0; }
span.image img { border-style: none; }
a.image:visited { color: white; }
dl {
margin-top: 0.8em;
margin-bottom: 0.8em;
}
dt {
margin-top: 0.5em;
margin-bottom: 0;
font-style: normal;
color: navy;
}
dd > *:first-child {
margin-top: 0.1em;
}
ul, ol {
list-style-position: outside;
}
ol.arabic {
list-style-type: decimal;
}
ol.loweralpha {
list-style-type: lower-alpha;
}
ol.upperalpha {
list-style-type: upper-alpha;
}
ol.lowerroman {
list-style-type: lower-roman;
}
ol.upperroman {
list-style-type: upper-roman;
}
div.compact ul, div.compact ol,
div.compact p, div.compact p,
div.compact div, div.compact div {
margin-top: 0.1em;
margin-bottom: 0.1em;
}
tfoot {
font-weight: bold;
}
td > div.verse {
white-space: pre;
}
div.hdlist {
margin-top: 0.8em;
margin-bottom: 0.8em;
}
div.hdlist tr {
padding-bottom: 15px;
}
dt.hdlist1.strong, td.hdlist1.strong {
font-weight: bold;
}
td.hdlist1 {
vertical-align: top;
font-style: normal;
padding-right: 0.8em;
color: navy;
}
td.hdlist2 {
vertical-align: top;
}
div.hdlist.compact tr {
margin: 0;
padding-bottom: 0;
}
.comment {
background: yellow;
}
.footnote, .footnoteref {
font-size: 0.8em;
}
span.footnote, span.footnoteref {
vertical-align: super;
}
#footnotes {
margin: 20px 0 20px 0;
padding: 7px 0 0 0;
}
#footnotes div.footnote {
margin: 0 0 5px 0;
}
#footnotes hr {
border: none;
border-top: 1px solid silver;
height: 1px;
text-align: left;
margin-left: 0;
width: 20%;
min-width: 100px;
}
div.colist td {
padding-right: 0.5em;
padding-bottom: 0.3em;
vertical-align: top;
}
div.colist td img {
margin-top: 0.3em;
}
@media print {
#footer-badges { display: none; }
}
#toc {
margin-bottom: 2.5em;
}
#toctitle {
color: #527bbd;
font-size: 1.1em;
font-weight: bold;
margin-top: 1.0em;
margin-bottom: 0.1em;
}
div.toclevel0, div.toclevel1, div.toclevel2, div.toclevel3, div.toclevel4 {
margin-top: 0;
margin-bottom: 0;
}
div.toclevel2 {
margin-left: 2em;
font-size: 0.9em;
}
div.toclevel3 {
margin-left: 4em;
font-size: 0.9em;
}
div.toclevel4 {
margin-left: 6em;
font-size: 0.9em;
}
span.aqua { color: aqua; }
span.black { color: black; }
span.blue { color: blue; }
span.fuchsia { color: fuchsia; }
span.gray { color: gray; }
span.green { color: green; }
span.lime { color: lime; }
span.maroon { color: maroon; }
span.navy { color: navy; }
span.olive { color: olive; }
span.purple { color: purple; }
span.red { color: red; }
span.silver { color: silver; }
span.teal { color: teal; }
span.white { color: white; }
span.yellow { color: yellow; }
span.aqua-background { background: aqua; }
span.black-background { background: black; }
span.blue-background { background: blue; }
span.fuchsia-background { background: fuchsia; }
span.gray-background { background: gray; }
span.green-background { background: green; }
span.lime-background { background: lime; }
span.maroon-background { background: maroon; }
span.navy-background { background: navy; }
span.olive-background { background: olive; }
span.purple-background { background: purple; }
span.red-background { background: red; }
span.silver-background { background: silver; }
span.teal-background { background: teal; }
span.white-background { background: white; }
span.yellow-background { background: yellow; }
span.big { font-size: 2em; }
span.small { font-size: 0.6em; }
span.underline { text-decoration: underline; }
span.overline { text-decoration: overline; }
span.line-through { text-decoration: line-through; }
div.unbreakable { page-break-inside: avoid; }
/*
* xhtml11 specific
*
* */
div.tableblock {
margin-top: 1.0em;
margin-bottom: 1.5em;
}
div.tableblock > table {
border: 3px solid #527bbd;
}
thead, p.table.header {
font-weight: bold;
color: #527bbd;
}
p.table {
margin-top: 0;
}
/* Because the table frame attribute is overriden by CSS in most browsers. */
div.tableblock > table[frame="void"] {
border-style: none;
}
div.tableblock > table[frame="hsides"] {
border-left-style: none;
border-right-style: none;
}
div.tableblock > table[frame="vsides"] {
border-top-style: none;
border-bottom-style: none;
}
/*
* html5 specific
*
* */
table.tableblock {
margin-top: 1.0em;
margin-bottom: 1.5em;
}
thead, p.tableblock.header {
font-weight: bold;
color: #527bbd;
}
p.tableblock {
margin-top: 0;
}
table.tableblock {
border-width: 3px;
border-spacing: 0px;
border-style: solid;
border-color: #527bbd;
border-collapse: collapse;
}
th.tableblock, td.tableblock {
border-width: 1px;
padding: 4px;
border-style: solid;
border-color: #527bbd;
}
table.tableblock.frame-topbot {
border-left-style: hidden;
border-right-style: hidden;
}
table.tableblock.frame-sides {
border-top-style: hidden;
border-bottom-style: hidden;
}
table.tableblock.frame-none {
border-style: hidden;
}
th.tableblock.halign-left, td.tableblock.halign-left {
text-align: left;
}
th.tableblock.halign-center, td.tableblock.halign-center {
text-align: center;
}
th.tableblock.halign-right, td.tableblock.halign-right {
text-align: right;
}
th.tableblock.valign-top, td.tableblock.valign-top {
vertical-align: top;
}
th.tableblock.valign-middle, td.tableblock.valign-middle {
vertical-align: middle;
}
th.tableblock.valign-bottom, td.tableblock.valign-bottom {
vertical-align: bottom;
}
/*
* manpage specific
*
* */
body.manpage h1 {
padding-top: 0.5em;
padding-bottom: 0.5em;
border-top: 2px solid silver;
border-bottom: 2px solid silver;
}
body.manpage h2 {
border-style: none;
}
body.manpage div.sectionbody {
margin-left: 3em;
}
@media print {
body.manpage div#toc { display: none; }
}
</style>
<script type="text/javascript">
/*<+'])');
// Function that scans the DOM tree for header elements (the DOM2
// nodeIterator API would be a better technique but not supported by all
// browsers).
var iterate = function (el) {
for (var i = el.firstChild; i != null; i = i.nextSibling) {
if (i.nodeType == 1 /* Node.ELEMENT_NODE */) {
var mo = re.exec(i.tagName);
if (mo && (i.getAttribute("class") || i.getAttribute("className")) != "float") {
result[result.length] = new TocEntry(i, getText(i), mo[1]-1);
}
iterate(i);
}
}
}
iterate(el);
return result;
}
var toc = document.getElementById("toc");
if (!toc) {
return;
}
// Delete existing TOC entries in case we're reloading the TOC.
var tocEntriesToRemove = [];
var i;
for (i = 0; i < toc.childNodes.length; i++) {
var entry = toc.childNodes[i];
if (entry.nodeName.toLowerCase() == 'div'
&& entry.getAttribute("class")
&& entry.getAttribute("class").match(/^toclevel/))
tocEntriesToRemove.push(entry);
}
for (i = 0; i < tocEntriesToRemove.length; i++) {
toc.removeChild(tocEntriesToRemove[i]);
}
// Rebuild TOC entries.
var entries = tocEntries(document.getElementById("content"), toclevels);
for (var i = 0; i < entries.length; ++i) {
var entry = entries[i];
if (entry.element.id == "")
entry.element.id = "_toc_" + i;
var a = document.createElement("a");
a.href = "#" + entry.element.id;
a.appendChild(document.createTextNode(entry.text));
var div = document.createElement("div");
div.appendChild(a);
div.className = "toclevel" + entry.toclevel;
toc.appendChild(div);
}
if (entries.length == 0)
toc.parentNode.removeChild(toc);
},
/////////////////////////////////////////////////////////////////////
// Footnotes generator
/////////////////////////////////////////////////////////////////////
/* Based on footnote generation code from:
* http://www.brandspankingnew.net/archive/2005/07/format_footnote.html
*/
footnotes: function () {
// Delete existing footnote entries in case we're reloading the footnodes.
var i;
var noteholder = document.getElementById("footnotes");
if (!noteholder) {
return;
}
var entriesToRemove = [];
for (i = 0; i < noteholder.childNodes.length; i++) {
var entry = noteholder.childNodes[i];
if (entry.nodeName.toLowerCase() == 'div' && entry.getAttribute("class") == "footnote")
entriesToRemove.push(entry);
}
for (i = 0; i < entriesToRemove.length; i++) {
noteholder.removeChild(entriesToRemove[i]);
}
// Rebuild footnote entries.
var cont = document.getElementById("content");
var spans = cont.getElementsByTagName("span");
var refs = {};
var n = 0;
for (i=0; i<spans.length; i++) {
if (spans[i].className == "footnote") {
n++;
var note = spans[i].getAttribute("data-note");
if (!note) {
// Use [\s\S] in place of . so multi-line matches work.
// Because JavaScript has no s (dotall) regex flag.
note = spans[i].innerHTML.match(/\s*\[([\s\S]*)]\s*/)[1];
spans[i].innerHTML =
"[<a id='_footnoteref_" + n + "' href='#_footnote_" + n +
"' title='View footnote' class='footnote'>" + n + "</a>]";
spans[i].setAttribute("data-note", note);
}
noteholder.innerHTML +=
"<div class='footnote' id='_footnote_" + n + "'>" +
"<a href='#_footnoteref_" + n + "' title='Return to text'>" +
n + "</a>. " + note + "</div>";
var id =spans[i].getAttribute("id");
if (id != null) refs["#"+id] = n;
}
}
if (n == 0)
noteholder.parentNode.removeChild(noteholder);
else {
// Process footnoterefs.
for (i=0; i<spans.length; i++) {
if (spans[i].className == "footnoteref") {
var href = spans[i].getElementsByTagName("a")[0].getAttribute("href");
href = href.match(/#.*/)[0]; // Because IE return full URL.
n = refs[href];
spans[i].innerHTML =
"[<a href='#_footnote_" + n +
"' title='View footnote' class='footnote'>" + n + "</a>]";
}
}
}
},
install: function(toclevels) {
var timerId;
function reinstall() {
asciidoc.footnotes();
if (toclevels) {
asciidoc.toc(toclevels);
}
}
function reinstallAndRemoveTimer() {
clearInterval(timerId);
reinstall();
}
timerId = setInterval(reinstall, 500);
if (document.addEventListener)
document.addEventListener("DOMContentLoaded", reinstallAndRemoveTimer, false);
else
window.onload = reinstallAndRemoveTimer;
}
}
asciidoc.install();
/*]]>*/
</script>
</head>
<body class="manpage">
<div id="header">
<h1>
TESSERACT(1) Manual Page
</h1>
<h2>NAME</h2>
<div class="sectionbody">
<p>tesseract -
command-line OCR engine
</p>
</div>
</div>
<div id="content">
<div class="sect1">
<h2 id="_synopsis">SYNOPSIS</h2>
<div class="sectionbody">
<div class="paragraph"><p><strong>tesseract</strong> <em>imagename</em>|<em>stdin</em> <em>outputbase</em>|<em>stdout</em> [options…] [configfile…]</p></div>
</div>
</div>
<div class="sect1">
<h2 id="_description">DESCRIPTION</h2>
<div class="sectionbody">
<div class="paragraph"><p>tesseract(1) is a commercial quality OCR engine originally developed at HP
between 1985 and 1995. In 1995, this engine was among the top 3 evaluated by
UNLV. It was open-sourced by HP and UNLV in 2005, and has been developed
at Google since then.</p></div>
</div>
</div>
<div class="sect1">
<h2 id="_in_out_arguments">IN/OUT ARGUMENTS</h2>
<div class="sectionbody">
<div class="dlist"><dl>
<dt class="hdlist1">
<em>imagename</em>
</dt>
<dd>
<p>
The name of the input image. Most image file formats (anything
readable by Leptonica) are supported.
</p>
</dd>
<dt class="hdlist1">
<em>stdin</em>
</dt>
<dd>
<p>
Instruction to read data from standard input
</p>
</dd>
<dt class="hdlist1">
<em>outputbase</em>
</dt>
<dd>
<p>
The basename of the output file (to which the appropriate extension
will be appended). By default the output will be named <em>outbase.txt</em>.
</p>
</dd>
<dt class="hdlist1">
<em>stdout</em>
</dt>
<dd>
<p>
Instruction to sent output data to standard output
</p>
</dd>
</dl></div>
</div>
</div>
<div class="sect1">
<h2 id="_options">OPTIONS</h2>
<div class="sectionbody">
<div class="dlist"><dl>
<dt class="hdlist1">
<em>--tessdata-dir /path</em>
</dt>
<dd>
<p>
Specify the location of tessdata path
</p>
</dd>
<dt class="hdlist1">
<em>--user-words /path/to/file</em>
</dt>
<dd>
<p>
Specify the location of user words file
</p>
</dd>
<dt class="hdlist1">
<em>--user-patterns /path/to/file specify</em>
</dt>
<dd>
<p>
The location of user patterns file
</p>
</dd>
<dt class="hdlist1">
<em>-c configvar=value</em>
</dt>
<dd>
<p>
Set value for control parameter. Multiple -c arguments are allowed.
</p>
</dd>
<dt class="hdlist1">
<em>-l lang</em>
</dt>
<dd>
<p>
The language to use. If none is specified, English is assumed.
Multiple languages may be specified, separated by plus characters.
Tesseract uses 3-character ISO 639-2 language codes. (See LANGUAGES)
</p>
</dd>
<dt class="hdlist1">
<em>-psm N</em>
</dt>
<dd>
<p>
Set Tesseract to only run a subset of layout analysis and assume
a certain form of image. The options for <strong>N</strong> are:
</p>
<div class="literalblock">
<div class="content">
<pre><code>0 = Orientation and script detection (OSD) only.
1 = Automatic page segmentation with OSD.
2 = Automatic page segmentation, but no OSD, or OCR.
3 = Fully automatic page segmentation, but no OSD. (Default)
4 = Assume a single column of text of variable sizes.
5 = Assume a single uniform block of vertically aligned text.
6 = Assume a single uniform block of text.
7 = Treat the image as a single text line.
8 = Treat the image as a single word.
9 = Treat the image as a single word in a circle.
10 = Treat the image as a single character.</code></pre>
</div></div>
</dd>
<dt class="hdlist1">
<em>configfile</em>
</dt>
<dd>
<p>
The name of a config to use. A config is a plaintext file which
contains a list of variables and their values, one per line, with a
space separating variable from value. Interesting config files
include:<br />
</p>
<div class="ulist"><ul>
<li>
<p>
hocr - Output in hOCR format instead of as a text file.
</p>
</li>
<li>
<p>
pdf - Output in pdf instead of a text file.
</p>
</li>
</ul></div>
</dd>
</dl></div>
<div class="paragraph"><p><strong>Nota Bene:</strong> The options <em>-l lang</em> and <em>-psm N</em> must occur
before any <em>configfile</em>.</p></div>
</div>
</div>
<div class="sect1">
<h2 id="_single_options">SINGLE OPTIONS</h2>
<div class="sectionbody">
<div class="dlist"><dl>
<dt class="hdlist1">
<em>-v</em>
</dt>
<dd>
<p>
Returns the current version of the tesseract(1) executable.
</p>
</dd>
<dt class="hdlist1">
<em>--list-langs</em>
</dt>
<dd>
<p>
list available languages for tesseract engine. Can be used with --tessdata-dir.
</p>
</dd>
<dt class="hdlist1">
<em>--print-parameters</em>
</dt>
<dd>
<p>
print tesseract parameters to the stdout.
</p>
</dd>
</dl></div>
</div>
</div>
<div class="sect1">
<h2 id="_languages">LANGUAGES</h2>
<div class="sectionbody">
<div class="paragraph"><p>There are currently language packs available for the following languages:</p></div>
<div class="paragraph"><p><strong>ara</strong> (Arabic),
<strong>aze</strong> (Azerbauijani),
<strong>bul</strong> (Bulgarian),
<strong>cat</strong> (Catalan),
<strong>ces</strong> (Czech),
<strong>chi_sim</strong> (Simplified Chinese),
<strong>chi_tra</strong> (Traditional Chinese),
<strong>chr</strong> (Cherokee),
<strong>dan</strong> (Danish),
<strong>dan-frak</strong> (Danish (Fraktur)),
<strong>deu</strong> (German),
<strong>ell</strong> (Greek),
<strong>eng</strong> (English),
<strong>enm</strong> (Old English),
<strong>epo</strong> (Esperanto),
<strong>est</strong> (Estonian),
<strong>fin</strong> (Finnish),
<strong>fra</strong> (French),
<strong>frm</strong> (Old French),
<strong>glg</strong> (Galician),
<strong>heb</strong> (Hebrew),
<strong>hin</strong> (Hindi),
<strong>hrv</strong> (Croation),
<strong>hun</strong> (Hungarian),
<strong>ind</strong> (Indonesian),
<strong>ita</strong> (Italian),
<strong>jpn</strong> (Japanese),
<strong>kor</strong> (Korean),
<strong>lav</strong> (Latvian),
<strong>lit</strong> (Lithuanian),
<strong>nld</strong> (Dutch),
<strong>nor</strong> (Norwegian),
<strong>pol</strong> (Polish),
<strong>por</strong> (Portuguese),
<strong>ron</strong> (Romanian),
<strong>rus</strong> (Russian),
<strong>slk</strong> (Slovakian),
<strong>slv</strong> (Slovenian),
<strong>sqi</strong> (Albanian),
<strong>spa</strong> (Spanish),
<strong>srp</strong> (Serbian),
<strong>swe</strong> (Swedish),
<strong>tam</strong> (Tamil),
<strong>tel</strong> (Telugu),
<strong>tgl</strong> (Tagalog),
<strong>tha</strong> (Thai),
<strong>tur</strong> (Turkish),
<strong>ukr</strong> (Ukrainian),
<strong>vie</strong> (Vietnamese)</p></div>
<div class="paragraph"><p>To use a non-standard language pack named <strong>foo.traineddata</strong>, set the
<strong>TESSDATA_PREFIX</strong> environment variable so the file can be found at
<strong>TESSDATA_PREFIX</strong>/tessdata/<strong>foo</strong>.traineddata and give Tesseract the
argument <em>-l foo</em>.</p></div>
</div>
</div>
<div class="sect1">
<h2 id="_config_files_and_augmenting_with_user_data">CONFIG FILES AND AUGMENTING WITH USER DATA</h2>
<div class="sectionbody">
<div class="paragraph"><p>Tesseract config files consist of lines with variable-value pairs (space
separated). The variables are documented as flags in the source code like
the following one in tesseractclass.h:</p></div>
<div class="paragraph"><p>STRING_VAR_H(tessedit_char_blacklist, "",
"Blacklist of chars not to recognize");</p></div>
<div class="paragraph"><p>These variables may enable or disable various features of the engine, and
may cause it to load (or not load) various data. For instance, let’s suppose
you want to OCR in English, but suppress the normal dictionary and load an
alternative word list and an alternative list of patterns — these two files
are the most commonly used extra data files.</p></div>
<div class="paragraph"><p>If your language pack is in /path/to/eng.traineddata and the hocr config
is in /path/to/configs/hocr then create three new files:</p></div>
<div class="paragraph"><p>/path/to/eng.user-words:</p></div>
<div class="verseblock">
<pre class="content">the
quick
brown
fox
jumped</pre>
<div class="attribution">
</div></div>
<div class="paragraph"><p>/path/to/eng.user-patterns:</p></div>
<div class="verseblock">
<pre class="content">1-\d\d\d-GOOG-411
www.\n\\\*.com</pre>
<div class="attribution">
</div></div>
<div class="paragraph"><p>/path/to/configs/bazaar:</p></div>
<div class="verseblock">
<pre class="content">load_system_dawg F
load_freq_dawg F
user_words_suffix user-words
user_patterns_suffix user-patterns</pre>
<div class="attribution">
</div></div>
<div class="paragraph"><p>Now, if you pass the word <em>bazaar</em> as a trailing command line parameter
to Tesseract, Tesseract will not bother loading the system dictionary nor
the dictionary of frequent words and will load and use the eng.user-words
and eng.user-patterns files you provided. The former is a simple word list,
one per line. The format of the latter is documented in dict/trie.h
on read_pattern_list().</p></div>
</div>
</div>
<div class="sect1">
<h2 id="_history">HISTORY</h2>
<div class="sectionbody">
<div class="paragraph"><p>The engine was developed at Hewlett Packard Laboratories Bristol and at
Hewlett Packard Co, Greeley Colorado between 1985 and 1994, with some more
changes made in 1996 to port to Windows, and some C++izing in 1998. A
lot of the code was written in C, and then some more was written in C++.
The C\++ code makes heavy use of a list system using macros. This predates
stl, was portable before stl, and is more efficient than stl lists, but has
the big negative that if you do get a segmentation violation, it is hard to
debug.</p></div>
<div class="paragraph"><p>Version 2.00 brought Unicode (UTF-8) support, six languages, and the ability
to train Tesseract.</p></div>
<div class="paragraph"><p>Tesseract was included in UNLV’s Fourth Annual Test of OCR Accuracy.
See <a href="http://www.isri.unlv.edu/downloads/AT-1995.pdf">http://www.isri.unlv.edu/downloads/AT-1995.pdf</a>. With Tesseract 2.00,
scripts are now included to allow anyone to reproduce some of these tests.
See <a href="http://code.google.com/p/tesseract-ocr/wiki/TestingTesseract">http://code.google.com/p/tesseract-ocr/wiki/TestingTesseract</a> for more
details.</p></div>
<div class="paragraph"><p>Tesseract 3.00 adds a number of new languages, including Chinese, Japanese,
and Korean. It also introduces a new, single-file based system of managing
language data.</p></div>
<div class="paragraph"><p>Tesseract 3.02 adds BiDirectional text support, the ability to recognize
multiple languages in a single image, and improved layout analysis.</p></div>
<div class="paragraph"><p>For further details, see the file ReleaseNotes included with the distribution.</p></div>
</div>
</div>
<div class="sect1">
<h2 id="_resources">RESOURCES</h2>
<div class="sectionbody">
<div class="paragraph"><p>Main web site: <a href="http://code.google.com/p/tesseract-ocr/">http://code.google.com/p/tesseract-ocr/</a><br />
Information on training: <a href="http://code.google.com/p/tesseract-ocr/wiki/TrainingTesseract3">http://code.google.com/p/tesseract-ocr/wiki/TrainingTesseract3</a></p></div>
</div>
</div>
<div class="sect1">
<h2 id="_see_also">SEE ALSO</h2>
<div class="sectionbody">
<div class="paragraph"><p>ambiguous_words(1), cntraining(1), combine_tessdata(1), dawg2wordlist(1),
shape_training(1), mftraining(1), unicharambigs(5), unicharset(5),
unicharset_extractor(1), wordlist2dawg(1)</p></div>
</div>
</div>
<div class="sect1">
<h2 id="_author">AUTHOR</h2>
<div class="sectionbody">
<div class="paragraph"><p>Tesseract development was led at Hewlett-Packard and Google by Ray Smith.
The development team has included:</p></div>
<div class="paragraph"><p>Ahmad Abdulkader, Chris Newton, Dan Johnson, Dar-Shyang Lee, David Eger,
Eric Wiseblatt, Faisal Shafait, Hiroshi Takenaka, Joe Liu, Joern Wanke,
Mark Seaman, Mickey Namiki, Nicholas Beato, Oded Fuhrmann, Phil Cheatle,
Pingping Xiu, Pong Eksombatchai (Chantat), Ranjith Unnikrishnan, Raquel
Romano, Ray Smith, Rika Antonova, Robert Moss, Samuel Charron, Sheelagh
Lloyd, Shobhit Saxena, and Thomas Kielbus.</p></div>
</div>
</div>
<div class="sect1">
<h2 id="_copying">COPYING</h2>
<div class="sectionbody">
<div class="paragraph"><p>Licensed under the Apache License, Version 2.0</p></div>
</div>
</div>
</div>
<div id="footnotes"><hr /></div>
<div id="footer">
<div id="footer-text">
Last updated 2014-08-02 22:51:16 CEST
</div>
</div>
</body>
</html>
| 1080228-arabicocr11 | doc/tesseract.1.html | HTML | asf20 | 29,023 |
@inproceedings{TableDetect,
author = {Faisal Shafait and Ray Smith},
booktitle = {Document Analysis Systems},
editor = {David S. Doermann and Venu Govindaraju and Daniel P. Lopresti and Premkumar Natarajan},
pages = {65--72},
publisher = {ACM},
series = {ACM International Conference Proceeding Series},
title = {Table detection in heterogeneous documents.},
url = {http://dblp.uni-trier.de/db/conf/das/das2010.html#ShafaitS10},
year = 2010,
isbn = {978-1-60558-773-8},
date = {2010-07-07}
}
@inproceedings{Multilingual,
author = {Ray Smith and Daria Antonova and Dar-Shyang Lee},
booktitle = {MOCR '09: Proceedings of the International Workshop on Multilingual OCR},
editor = {Venu Govindaraju and Premkumar Natarajan and Santanu Chaudhury and Daniel P. Lopresti},
pages = {1--8},
publisher = {ACM},
series = {ACM International Conference Proceeding Series},
title = {Adapting the Tesseract Open Source OCR Engine for Multilingual OCR.},
url = {http://www.google.de/research/pubs/archive/35248.pdf},
year = 2009,
isbn = {978-1-60558-698-4},
date = {2009-07-25}
doi = {http://doi.acm.org/10/1145/1577802.1577804}
location = {Barcelona, Spain},
}
@inproceedings{ScriptDetect,
author = {Ranjith Unnikrishnan and Ray Smith},
title = {Combined Orientation and Script Detection using the Tesseract OCR Engine},
booktitle = {MOCR '09: Proceedings of the International Workshop on Multilingual OCR},
editor = {Venu Govindaraju and Premkumar Natarajan and Santanu Chaudhury and Daniel P. Lopresti},
url = {http://www.google.de/research/pubs/archive/35506.pdf}
year = {2009},
isbn = {978-1-60558-698-4},
pages = {1--7},
location = {Barcelona, Spain},
doi = {http://doi.acm.org/10.1145/1577802.1577809},
publisher = {ACM},
address = {New York, NY, USA},
}
@inproceedings{PageLayout,
author = {Ray Smith},
title = {Hybrid Page Layout Analysis via Tab-Stop Detection},
booktitle = {ICDAR '09: Proceedings of the 2009 10th International Conference on Document Analysis and Recognition},
url = {http://www.google.de/research/pubs/archive/35094.pdf}
year = {2009},
isbn = {978-0-7695-3725-2},
pages = {241--245},
doi = {http://dx.doi.org/10.1109/ICDAR.2009.257},
publisher = {IEEE Computer Society},
address = {Washington, DC, USA},
}
@inproceedings{TessOverview,
author = {Ray Smith},
title = {An Overview of the Tesseract OCR Engine},
booktitle = {ICDAR '07: Proceedings of the Ninth International Conference on Document Analysis and Recognition},
url = {http://www.google.de/research/pubs/archive/33418.pdf}
year = {2007},
isbn = {0-7695-2822-8},
pages = {629--633},
publisher = {IEEE Computer Society},
address = {Washington, DC, USA},
}
| 1080228-arabicocr11 | doc/tesseract.bib | BibTeX | asf20 | 2,741 |
'\" t
.\" Title: shapeclustering
.\" Author: [see the "AUTHOR" section]
.\" Generator: DocBook XSL Stylesheets v1.75.2 <http://docbook.sf.net/>
.\" Date: 02/09/2012
.\" Manual: \ \&
.\" Source: \ \&
.\" Language: English
.\"
.TH "SHAPECLUSTERING" "1" "02/09/2012" "\ \&" "\ \&"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.\" http://bugs.debian.org/507673
.\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.ie \n(.g .ds Aq \(aq
.el .ds Aq '
.\" -----------------------------------------------------------------
.\" * set default formatting
.\" -----------------------------------------------------------------
.\" disable hyphenation
.nh
.\" disable justification (adjust text to left margin only)
.ad l
.\" -----------------------------------------------------------------
.\" * MAIN CONTENT STARTS HERE *
.\" -----------------------------------------------------------------
.SH "NAME"
shapeclustering \- shape clustering training for Tesseract
.SH "SYNOPSIS"
.sp
shapeclustering \-D \fIoutput_dir\fR \-U \fIunicharset\fR \-O \fImfunicharset\fR \-F \fIfont_props\fR \-X \fIxheights\fR \fIFILE\fR\&...
.SH "DESCRIPTION"
.sp
shapeclustering(1) takes extracted feature \&.tr files (generated by tesseract(1) run in a special mode from box files) and produces a file \fBshapetable\fR and an enhanced unicharset\&. This program is still experimental, and is not required (yet) for training Tesseract\&.
.SH "OPTIONS"
.PP
\-U \fIFILE\fR
.RS 4
The unicharset generated by unicharset_extractor(1)\&.
.RE
.PP
\-D \fIdir\fR
.RS 4
Directory to write output files to\&.
.RE
.PP
\-F \fIfont_properties_file\fR
.RS 4
(Input) font properties file, where each line is of the following form, where each field other than the font name is 0 or 1:
.sp
.if n \{\
.RS 4
.\}
.nf
\*(Aqfont_name\*(Aq \*(Aqitalic\*(Aq \*(Aqbold\*(Aq \*(Aqfixed_pitch\*(Aq \*(Aqserif\*(Aq \*(Aqfraktur\*(Aq
.fi
.if n \{\
.RE
.\}
.RE
.PP
\-X \fIxheights_file\fR
.RS 4
(Input) x heights file, each line is of the following form, where xheight is calculated as the pixel x height of a character drawn at 32pt on 300 dpi\&. [ That is, if base x height + ascenders + descenders = 133, how much is x height? ]
.sp
.if n \{\
.RS 4
.\}
.nf
\*(Aqfont_name\*(Aq \*(Aqxheight\*(Aq
.fi
.if n \{\
.RE
.\}
.RE
.PP
\-O \fIFILE\fR
.RS 4
The output unicharset that will be given to combine_tessdata(1)\&.
.RE
.SH "SEE ALSO"
.sp
tesseract(1), cntraining(1), unicharset_extractor(1), combine_tessdata(1), unicharset(5)
.sp
\m[blue]\fBhttp://code\&.google\&.com/p/tesseract\-ocr/wiki/TrainingTesseract3\fR\m[]
.SH "COPYING"
.sp
Copyright (C) Google, 2011 Licensed under the Apache License, Version 2\&.0
.SH "AUTHOR"
.sp
The Tesseract OCR engine was written by Ray Smith and his research groups at Hewlett Packard (1985\-1995) and Google (2006\-present)\&.
| 1080228-arabicocr11 | doc/shapeclustering.1 | Roff Manpage | asf20 | 3,109 |
'\" t
.\" Title: combine_tessdata
.\" Author: [see the "AUTHOR" section]
.\" Generator: DocBook XSL Stylesheets v1.75.2 <http://docbook.sf.net/>
.\" Date: 02/09/2012
.\" Manual: \ \&
.\" Source: \ \&
.\" Language: English
.\"
.TH "COMBINE_TESSDATA" "1" "02/09/2012" "\ \&" "\ \&"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.\" http://bugs.debian.org/507673
.\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.ie \n(.g .ds Aq \(aq
.el .ds Aq '
.\" -----------------------------------------------------------------
.\" * set default formatting
.\" -----------------------------------------------------------------
.\" disable hyphenation
.nh
.\" disable justification (adjust text to left margin only)
.ad l
.\" -----------------------------------------------------------------
.\" * MAIN CONTENT STARTS HERE *
.\" -----------------------------------------------------------------
.SH "NAME"
combine_tessdata \- combine/extract/overwrite Tesseract data
.SH "SYNOPSIS"
.sp
\fBcombine_tessdata\fR [\fIOPTION\fR] \fIFILE\fR\&...
.SH "DESCRIPTION"
.sp
combine_tessdata(1) is the main program to combine/extract/overwrite tessdata components in [lang]\&.traineddata files\&.
.sp
To combine all the individual tessdata components (unicharset, DAWGs, classifier templates, ambiguities, language configs) located at, say, /home/$USER/temp/eng\&.* run:
.sp
.if n \{\
.RS 4
.\}
.nf
combine_tessdata /home/$USER/temp/eng\&.
.fi
.if n \{\
.RE
.\}
.sp
The result will be a combined tessdata file /home/$USER/temp/eng\&.traineddata
.sp
Specify option \-e if you would like to extract individual components from a combined traineddata file\&. For example, to extract language config file and the unicharset from tessdata/eng\&.traineddata run:
.sp
.if n \{\
.RS 4
.\}
.nf
combine_tessdata \-e tessdata/eng\&.traineddata \e
/home/$USER/temp/eng\&.config /home/$USER/temp/eng\&.unicharset
.fi
.if n \{\
.RE
.\}
.sp
The desired config file and unicharset will be written to /home/$USER/temp/eng\&.config /home/$USER/temp/eng\&.unicharset
.sp
Specify option \-o to overwrite individual components of the given [lang]\&.traineddata file\&. For example, to overwrite language config and unichar ambiguities files in tessdata/eng\&.traineddata use:
.sp
.if n \{\
.RS 4
.\}
.nf
combine_tessdata \-o tessdata/eng\&.traineddata \e
/home/$USER/temp/eng\&.config /home/$USER/temp/eng\&.unicharambigs
.fi
.if n \{\
.RE
.\}
.sp
As a result, tessdata/eng\&.traineddata will contain the new language config and unichar ambigs, plus all the original DAWGs, classifier templates, etc\&.
.sp
Note: the file names of the files to extract to and to overwrite from should have the appropriate file suffixes (extensions) indicating their tessdata component type (\&.unicharset for the unicharset, \&.unicharambigs for unichar ambigs, etc)\&. See k*FileSuffix variable in ccutil/tessdatamanager\&.h\&.
.sp
Specify option \-u to unpack all the components to the specified path:
.sp
.if n \{\
.RS 4
.\}
.nf
combine_tessdata \-u tessdata/eng\&.traineddata /home/$USER/temp/eng\&.
.fi
.if n \{\
.RE
.\}
.sp
This will create /home/$USER/temp/eng\&.* files with individual tessdata components from tessdata/eng\&.traineddata\&.
.SH "OPTIONS"
.sp
\fB\-e\fR \fI\&.traineddata\fR \fIFILE\fR\&...: Extracts the specified components from the \&.traineddata file
.sp
\fB\-o\fR \fI\&.traineddata\fR \fIFILE\fR\&...: Overwrites the specified components of the \&.traineddata file with those provided on the comand line\&.
.sp
\fB\-u\fR \fI\&.traineddata\fR \fIPATHPREFIX\fR Unpacks the \&.traineddata using the provided prefix\&.
.SH "CAVEATS"
.sp
\fIPrefix\fR refers to the full file prefix, including period (\&.)
.SH "COMPONENTS"
.sp
The components in a Tesseract lang\&.traineddata file as of Tesseract 3\&.02 are briefly described below; For more information on many of these files, see \m[blue]\fBhttp://code\&.google\&.com/p/tesseract\-ocr/wiki/TrainingTesseract3\fR\m[]
.PP
lang\&.config
.RS 4
(Optional) Language\-specific overrides to default config variables\&.
.RE
.PP
lang\&.unicharset
.RS 4
(Required) The list of symbols that Tesseract recognizes, with properties\&. See unicharset(5)\&.
.RE
.PP
lang\&.unicharambigs
.RS 4
(Optional) This file contains information on pairs of recognized symbols which are often confused\&. For example,
\fIrn\fR
and
\fIm\fR\&.
.RE
.PP
lang\&.inttemp
.RS 4
(Required) Character shape templates for each unichar\&. Produced by mftraining(1)\&.
.RE
.PP
lang\&.pffmtable
.RS 4
(Required) The number of features expected for each unichar\&. Produced by mftraining(1) from
\fB\&.tr\fR
files\&.
.RE
.PP
lang\&.normproto
.RS 4
(Required) Character normalization prototypes generated by cntraining(1) from
\fB\&.tr\fR
files\&.
.RE
.PP
lang\&.punc\-dawg
.RS 4
(Optional) A dawg made from punctuation patterns found around words\&. The "word" part is replaced by a single space\&.
.RE
.PP
lang\&.word\-dawg
.RS 4
(Optional) A dawg made from dictionary words from the language\&.
.RE
.PP
lang\&.number\-dawg
.RS 4
(Optional) A dawg made from tokens which originally contained digits\&. Each digit is replaced by a space character\&.
.RE
.PP
lang\&.freq\-dawg
.RS 4
(Optional) A dawg made from the most frequent words which would have gone into word\-dawg\&.
.RE
.PP
lang\&.fixed\-length\-dawgs
.RS 4
(Optional) Several dawgs of different fixed lengths \(em useful for languages like Chinese\&.
.RE
.PP
lang\&.cube\-unicharset
.RS 4
(Optional) A unicharset for cube, if cube was trained on a different set of symbols\&.
.RE
.PP
lang\&.cube\-word\-dawg
.RS 4
(Optional) A word dawg for cube\(cqs alternate unicharset\&. Not needed if Cube was trained with Tesseract\(cqs unicharset\&.
.RE
.PP
lang\&.shapetable
.RS 4
(Optional) When present, a shapetable is an extra layer between the character classifier and the word recognizer that allows the character classifier to return a collection of unichar ids and fonts instead of a single unichar\-id and font\&.
.RE
.PP
lang\&.bigram\-dawg
.RS 4
(Optional) A dawg of word bigrams where the words are separated by a space and each digit is replaced by a
\fI?\fR\&.
.RE
.PP
lang\&.unambig\-dawg
.RS 4
(Optional) TODO: Describe\&.
.RE
.PP
lang\&.params\-training\-model
.RS 4
(Optional) TODO: Describe\&.
.RE
.SH "HISTORY"
.sp
combine_tessdata(1) first appeared in version 3\&.00 of Tesseract
.SH "SEE ALSO"
.sp
tesseract(1), wordlist2dawg(1), cntraining(1), mftraining(1), unicharset(5), unicharambigs(5)
.SH "COPYING"
.sp
Copyright (C) 2009, Google Inc\&. Licensed under the Apache License, Version 2\&.0
.SH "AUTHOR"
.sp
The Tesseract OCR engine was written by Ray Smith and his research groups at Hewlett Packard (1985\-1995) and Google (2006\-present)\&.
| 1080228-arabicocr11 | doc/combine_tessdata.1 | Roff Manpage | asf20 | 7,001 |
man_MANS = cntraining.1 combine_tessdata.1 mftraining.1 tesseract.1 \
unicharset_extractor.1 wordlist2dawg.1 unicharambigs.5 \
unicharset.5 ambiguous_words.1 shapeclustering.1 dawg2wordlist.1
EXTRA_DIST = $(man_MANS) MOCRadaptingtesseract2.pdf \
PageLayoutAnalysisICDAR2.pdf tesseracticdar2007.pdf Doxyfile
| 1080228-arabicocr11 | doc/Makefile.am | Makefile | asf20 | 314 |
#!/bin/bash
#
# File: generate_manpages.sh
# Description: Converts .asc files into man pages, etc. for Tesseract.
# Author: eger@google.com (David Eger)
# Created: 9 Feb 2012
#
# (C) Copyright 2012 Google Inc.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
man_xslt=/usr/share/xml/docbook/stylesheet/docbook-xsl/manpages/docbook.xsl
asciidoc=$(which asciidoc)
xsltproc=$(which xsltproc)
if [[ -z "${asciidoc}" ]] || [[ -z "${xsltproc}" ]]; then
echo "Please make sure asciidoc and xsltproc are installed."
exit 1
else
for src in *.asc; do
pagename=${src/.asc/}
(${asciidoc} -d manpage ${src} &&
${asciidoc} -d manpage -b docbook ${src} &&
${xsltproc} ${man_xslt} ${pagename}.xml) ||
echo "Error generating ${pagename}"
done
fi
exit 0
| 1080228-arabicocr11 | doc/generate_manpages.sh | Shell | asf20 | 1,279 |
'\" t
.\" Title: tesseract
.\" Author: [see the "AUTHOR" section]
.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
.\" Date: 08/02/2014
.\" Manual: \ \&
.\" Source: \ \&
.\" Language: English
.\"
.TH "TESSERACT" "1" "08/02/2014" "\ \&" "\ \&"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.\" http://bugs.debian.org/507673
.\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.ie \n(.g .ds Aq \(aq
.el .ds Aq '
.\" -----------------------------------------------------------------
.\" * set default formatting
.\" -----------------------------------------------------------------
.\" disable hyphenation
.nh
.\" disable justification (adjust text to left margin only)
.ad l
.\" -----------------------------------------------------------------
.\" * MAIN CONTENT STARTS HERE *
.\" -----------------------------------------------------------------
.SH "NAME"
tesseract \- command\-line OCR engine
.SH "SYNOPSIS"
.sp
\fBtesseract\fR \fIimagename\fR|\fIstdin\fR \fIoutputbase\fR|\fIstdout\fR [options\&...] [configfile\&...]
.SH "DESCRIPTION"
.sp
tesseract(1) is a commercial quality OCR engine originally developed at HP between 1985 and 1995\&. In 1995, this engine was among the top 3 evaluated by UNLV\&. It was open\-sourced by HP and UNLV in 2005, and has been developed at Google since then\&.
.SH "IN/OUT ARGUMENTS"
.PP
\fIimagename\fR
.RS 4
The name of the input image\&. Most image file formats (anything readable by Leptonica) are supported\&.
.RE
.PP
\fIstdin\fR
.RS 4
Instruction to read data from standard input
.RE
.PP
\fIoutputbase\fR
.RS 4
The basename of the output file (to which the appropriate extension will be appended)\&. By default the output will be named
\fIoutbase\&.txt\fR\&.
.RE
.PP
\fIstdout\fR
.RS 4
Instruction to sent output data to standard output
.RE
.SH "OPTIONS"
.PP
\fI\-\-tessdata\-dir /path\fR
.RS 4
Specify the location of tessdata path
.RE
.PP
\fI\-\-user\-words /path/to/file\fR
.RS 4
Specify the location of user words file
.RE
.PP
\fI\-\-user\-patterns /path/to/file specify\fR
.RS 4
The location of user patterns file
.RE
.PP
\fI\-c configvar=value\fR
.RS 4
Set value for control parameter\&. Multiple \-c arguments are allowed\&.
.RE
.PP
\fI\-l lang\fR
.RS 4
The language to use\&. If none is specified, English is assumed\&. Multiple languages may be specified, separated by plus characters\&. Tesseract uses 3\-character ISO 639\-2 language codes\&. (See LANGUAGES)
.RE
.PP
\fI\-psm N\fR
.RS 4
Set Tesseract to only run a subset of layout analysis and assume a certain form of image\&. The options for
\fBN\fR
are:
.sp
.if n \{\
.RS 4
.\}
.nf
0 = Orientation and script detection (OSD) only\&.
1 = Automatic page segmentation with OSD\&.
2 = Automatic page segmentation, but no OSD, or OCR\&.
3 = Fully automatic page segmentation, but no OSD\&. (Default)
4 = Assume a single column of text of variable sizes\&.
5 = Assume a single uniform block of vertically aligned text\&.
6 = Assume a single uniform block of text\&.
7 = Treat the image as a single text line\&.
8 = Treat the image as a single word\&.
9 = Treat the image as a single word in a circle\&.
10 = Treat the image as a single character\&.
.fi
.if n \{\
.RE
.\}
.RE
.PP
\fIconfigfile\fR
.RS 4
The name of a config to use\&. A config is a plaintext file which contains a list of variables and their values, one per line, with a space separating variable from value\&. Interesting config files include:
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
hocr \- Output in hOCR format instead of as a text file\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
pdf \- Output in pdf instead of a text file\&.
.RE
.RE
.sp
\fBNota Bene:\fR The options \fI\-l lang\fR and \fI\-psm N\fR must occur before any \fIconfigfile\fR\&.
.SH "SINGLE OPTIONS"
.PP
\fI\-v\fR
.RS 4
Returns the current version of the tesseract(1) executable\&.
.RE
.PP
\fI\-\-list\-langs\fR
.RS 4
list available languages for tesseract engine\&. Can be used with \-\-tessdata\-dir\&.
.RE
.PP
\fI\-\-print\-parameters\fR
.RS 4
print tesseract parameters to the stdout\&.
.RE
.SH "LANGUAGES"
.sp
There are currently language packs available for the following languages:
.sp
\fBara\fR (Arabic), \fBaze\fR (Azerbauijani), \fBbul\fR (Bulgarian), \fBcat\fR (Catalan), \fBces\fR (Czech), \fBchi_sim\fR (Simplified Chinese), \fBchi_tra\fR (Traditional Chinese), \fBchr\fR (Cherokee), \fBdan\fR (Danish), \fBdan\-frak\fR (Danish (Fraktur)), \fBdeu\fR (German), \fBell\fR (Greek), \fBeng\fR (English), \fBenm\fR (Old English), \fBepo\fR (Esperanto), \fBest\fR (Estonian), \fBfin\fR (Finnish), \fBfra\fR (French), \fBfrm\fR (Old French), \fBglg\fR (Galician), \fBheb\fR (Hebrew), \fBhin\fR (Hindi), \fBhrv\fR (Croation), \fBhun\fR (Hungarian), \fBind\fR (Indonesian), \fBita\fR (Italian), \fBjpn\fR (Japanese), \fBkor\fR (Korean), \fBlav\fR (Latvian), \fBlit\fR (Lithuanian), \fBnld\fR (Dutch), \fBnor\fR (Norwegian), \fBpol\fR (Polish), \fBpor\fR (Portuguese), \fBron\fR (Romanian), \fBrus\fR (Russian), \fBslk\fR (Slovakian), \fBslv\fR (Slovenian), \fBsqi\fR (Albanian), \fBspa\fR (Spanish), \fBsrp\fR (Serbian), \fBswe\fR (Swedish), \fBtam\fR (Tamil), \fBtel\fR (Telugu), \fBtgl\fR (Tagalog), \fBtha\fR (Thai), \fBtur\fR (Turkish), \fBukr\fR (Ukrainian), \fBvie\fR (Vietnamese)
.sp
To use a non\-standard language pack named \fBfoo\&.traineddata\fR, set the \fBTESSDATA_PREFIX\fR environment variable so the file can be found at \fBTESSDATA_PREFIX\fR/tessdata/\fBfoo\fR\&.traineddata and give Tesseract the argument \fI\-l foo\fR\&.
.SH "CONFIG FILES AND AUGMENTING WITH USER DATA"
.sp
Tesseract config files consist of lines with variable\-value pairs (space separated)\&. The variables are documented as flags in the source code like the following one in tesseractclass\&.h:
.sp
STRING_VAR_H(tessedit_char_blacklist, "", "Blacklist of chars not to recognize");
.sp
These variables may enable or disable various features of the engine, and may cause it to load (or not load) various data\&. For instance, let\(cqs suppose you want to OCR in English, but suppress the normal dictionary and load an alternative word list and an alternative list of patterns \(em these two files are the most commonly used extra data files\&.
.sp
If your language pack is in /path/to/eng\&.traineddata and the hocr config is in /path/to/configs/hocr then create three new files:
.sp
/path/to/eng\&.user\-words:
.sp
.if n \{\
.RS 4
.\}
.nf
the
quick
brown
fox
jumped
.fi
.if n \{\
.RE
.\}
.sp
/path/to/eng\&.user\-patterns:
.sp
.if n \{\
.RS 4
.\}
.nf
1\-\ed\ed\ed\-GOOG\-411
www\&.\en\e\e\e*\&.com
.fi
.if n \{\
.RE
.\}
.sp
/path/to/configs/bazaar:
.sp
.if n \{\
.RS 4
.\}
.nf
load_system_dawg F
load_freq_dawg F
user_words_suffix user\-words
user_patterns_suffix user\-patterns
.fi
.if n \{\
.RE
.\}
.sp
Now, if you pass the word \fIbazaar\fR as a trailing command line parameter to Tesseract, Tesseract will not bother loading the system dictionary nor the dictionary of frequent words and will load and use the eng\&.user\-words and eng\&.user\-patterns files you provided\&. The former is a simple word list, one per line\&. The format of the latter is documented in dict/trie\&.h on read_pattern_list()\&.
.SH "HISTORY"
.sp
The engine was developed at Hewlett Packard Laboratories Bristol and at Hewlett Packard Co, Greeley Colorado between 1985 and 1994, with some more changes made in 1996 to port to Windows, and some C++izing in 1998\&. A lot of the code was written in C, and then some more was written in C++\&. The C\e++ code makes heavy use of a list system using macros\&. This predates stl, was portable before stl, and is more efficient than stl lists, but has the big negative that if you do get a segmentation violation, it is hard to debug\&.
.sp
Version 2\&.00 brought Unicode (UTF\-8) support, six languages, and the ability to train Tesseract\&.
.sp
Tesseract was included in UNLV\(cqs Fourth Annual Test of OCR Accuracy\&. See \m[blue]\fBhttp://www\&.isri\&.unlv\&.edu/downloads/AT\-1995\&.pdf\fR\m[]\&. With Tesseract 2\&.00, scripts are now included to allow anyone to reproduce some of these tests\&. See \m[blue]\fBhttp://code\&.google\&.com/p/tesseract\-ocr/wiki/TestingTesseract\fR\m[] for more details\&.
.sp
Tesseract 3\&.00 adds a number of new languages, including Chinese, Japanese, and Korean\&. It also introduces a new, single\-file based system of managing language data\&.
.sp
Tesseract 3\&.02 adds BiDirectional text support, the ability to recognize multiple languages in a single image, and improved layout analysis\&.
.sp
For further details, see the file ReleaseNotes included with the distribution\&.
.SH "RESOURCES"
.sp
Main web site: \m[blue]\fBhttp://code\&.google\&.com/p/tesseract\-ocr/\fR\m[] Information on training: \m[blue]\fBhttp://code\&.google\&.com/p/tesseract\-ocr/wiki/TrainingTesseract3\fR\m[]
.SH "SEE ALSO"
.sp
ambiguous_words(1), cntraining(1), combine_tessdata(1), dawg2wordlist(1), shape_training(1), mftraining(1), unicharambigs(5), unicharset(5), unicharset_extractor(1), wordlist2dawg(1)
.SH "AUTHOR"
.sp
Tesseract development was led at Hewlett\-Packard and Google by Ray Smith\&. The development team has included:
.sp
Ahmad Abdulkader, Chris Newton, Dan Johnson, Dar\-Shyang Lee, David Eger, Eric Wiseblatt, Faisal Shafait, Hiroshi Takenaka, Joe Liu, Joern Wanke, Mark Seaman, Mickey Namiki, Nicholas Beato, Oded Fuhrmann, Phil Cheatle, Pingping Xiu, Pong Eksombatchai (Chantat), Ranjith Unnikrishnan, Raquel Romano, Ray Smith, Rika Antonova, Robert Moss, Samuel Charron, Sheelagh Lloyd, Shobhit Saxena, and Thomas Kielbus\&.
.SH "COPYING"
.sp
Licensed under the Apache License, Version 2\&.0
| 1080228-arabicocr11 | doc/tesseract.1 | Roff Manpage | asf20 | 10,017 |
'\" t
.\" Title: ambiguous_words
.\" Author: [see the "AUTHOR" section]
.\" Generator: DocBook XSL Stylesheets v1.75.2 <http://docbook.sf.net/>
.\" Date: 02/09/2012
.\" Manual: \ \&
.\" Source: \ \&
.\" Language: English
.\"
.TH "AMBIGUOUS_WORDS" "1" "02/09/2012" "\ \&" "\ \&"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.\" http://bugs.debian.org/507673
.\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.ie \n(.g .ds Aq \(aq
.el .ds Aq '
.\" -----------------------------------------------------------------
.\" * set default formatting
.\" -----------------------------------------------------------------
.\" disable hyphenation
.nh
.\" disable justification (adjust text to left margin only)
.ad l
.\" -----------------------------------------------------------------
.\" * MAIN CONTENT STARTS HERE *
.\" -----------------------------------------------------------------
.SH "NAME"
ambiguous_words \- generate sets of words Tesseract is likely to find ambiguous
.SH "SYNOPSIS"
.sp
\fBambiguous_words\fR [\-l lang] \fITESSDATADIR\fR \fIWORDLIST\fR \fIAMBIGUOUSFILE\fR
.SH "DESCRIPTION"
.sp
ambiguous_words(1) runs Tesseract in a special mode, and for each word in word list, produces a set of words which Tesseract thinks might be ambiguous with it\&. \fITESSDATADIR\fR must be set to the absolute path of a directory containing \fItessdata/lang\&.traineddata\fR\&.
.SH "SEE ALSO"
.sp
tesseract(1)
.SH "COPYING"
.sp
Copyright (C) 2012 Google, Inc\&. Licensed under the Apache License, Version 2\&.0
.SH "AUTHOR"
.sp
The Tesseract OCR engine was written by Ray Smith and his research groups at Hewlett Packard (1985\-1995) and Google (2006\-present)\&.
| 1080228-arabicocr11 | doc/ambiguous_words.1 | Roff Manpage | asf20 | 1,970 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="generator" content="AsciiDoc 8.5.2" />
<title>CNTRAINING(1)</title>
<style type="text/css">
/* Debug borders */
p, li, dt, dd, div, pre, h1, h2, h3, h4, h5, h6 {
/*
border: 1px solid red;
*/
}
body {
margin: 1em 5% 1em 5%;
}
a {
color: blue;
text-decoration: underline;
}
a:visited {
color: fuchsia;
}
em {
font-style: italic;
color: navy;
}
strong {
font-weight: bold;
color: #083194;
}
tt {
color: navy;
}
h1, h2, h3, h4, h5, h6 {
color: #527bbd;
font-family: sans-serif;
margin-top: 1.2em;
margin-bottom: 0.5em;
line-height: 1.3;
}
h1, h2, h3 {
border-bottom: 2px solid silver;
}
h2 {
padding-top: 0.5em;
}
h3 {
float: left;
}
h3 + * {
clear: left;
}
div.sectionbody {
font-family: serif;
margin-left: 0;
}
hr {
border: 1px solid silver;
}
p {
margin-top: 0.5em;
margin-bottom: 0.5em;
}
ul, ol, li > p {
margin-top: 0;
}
pre {
padding: 0;
margin: 0;
}
span#author {
color: #527bbd;
font-family: sans-serif;
font-weight: bold;
font-size: 1.1em;
}
span#email {
}
span#revnumber, span#revdate, span#revremark {
font-family: sans-serif;
}
div#footer {
font-family: sans-serif;
font-size: small;
border-top: 2px solid silver;
padding-top: 0.5em;
margin-top: 4.0em;
}
div#footer-text {
float: left;
padding-bottom: 0.5em;
}
div#footer-badges {
float: right;
padding-bottom: 0.5em;
}
div#preamble {
margin-top: 1.5em;
margin-bottom: 1.5em;
}
div.tableblock, div.imageblock, div.exampleblock, div.verseblock,
div.quoteblock, div.literalblock, div.listingblock, div.sidebarblock,
div.admonitionblock {
margin-top: 1.0em;
margin-bottom: 1.5em;
}
div.admonitionblock {
margin-top: 2.0em;
margin-bottom: 2.0em;
margin-right: 10%;
color: #606060;
}
div.content { /* Block element content. */
padding: 0;
}
/* Block element titles. */
div.title, caption.title {
color: #527bbd;
font-family: sans-serif;
font-weight: bold;
text-align: left;
margin-top: 1.0em;
margin-bottom: 0.5em;
}
div.title + * {
margin-top: 0;
}
td div.title:first-child {
margin-top: 0.0em;
}
div.content div.title:first-child {
margin-top: 0.0em;
}
div.content + div.title {
margin-top: 0.0em;
}
div.sidebarblock > div.content {
background: #ffffee;
border: 1px solid silver;
padding: 0.5em;
}
div.listingblock > div.content {
border: 1px solid silver;
background: #f4f4f4;
padding: 0.5em;
}
div.quoteblock, div.verseblock {
padding-left: 1.0em;
margin-left: 1.0em;
margin-right: 10%;
border-left: 5px solid #dddddd;
color: #777777;
}
div.quoteblock > div.attribution {
padding-top: 0.5em;
text-align: right;
}
div.verseblock > div.content {
white-space: pre;
}
div.verseblock > div.attribution {
padding-top: 0.75em;
text-align: left;
}
/* DEPRECATED: Pre version 8.2.7 verse style literal block. */
div.verseblock + div.attribution {
text-align: left;
}
div.admonitionblock .icon {
vertical-align: top;
font-size: 1.1em;
font-weight: bold;
text-decoration: underline;
color: #527bbd;
padding-right: 0.5em;
}
div.admonitionblock td.content {
padding-left: 0.5em;
border-left: 3px solid #dddddd;
}
div.exampleblock > div.content {
border-left: 3px solid #dddddd;
padding-left: 0.5em;
}
div.imageblock div.content { padding-left: 0; }
span.image img { border-style: none; }
a.image:visited { color: white; }
dl {
margin-top: 0.8em;
margin-bottom: 0.8em;
}
dt {
margin-top: 0.5em;
margin-bottom: 0;
font-style: normal;
color: navy;
}
dd > *:first-child {
margin-top: 0.1em;
}
ul, ol {
list-style-position: outside;
}
ol.arabic {
list-style-type: decimal;
}
ol.loweralpha {
list-style-type: lower-alpha;
}
ol.upperalpha {
list-style-type: upper-alpha;
}
ol.lowerroman {
list-style-type: lower-roman;
}
ol.upperroman {
list-style-type: upper-roman;
}
div.compact ul, div.compact ol,
div.compact p, div.compact p,
div.compact div, div.compact div {
margin-top: 0.1em;
margin-bottom: 0.1em;
}
div.tableblock > table {
border: 3px solid #527bbd;
}
thead, p.table.header {
font-family: sans-serif;
font-weight: bold;
}
tfoot {
font-weight: bold;
}
td > div.verse {
white-space: pre;
}
p.table {
margin-top: 0;
}
/* Because the table frame attribute is overriden by CSS in most browsers. */
div.tableblock > table[frame="void"] {
border-style: none;
}
div.tableblock > table[frame="hsides"] {
border-left-style: none;
border-right-style: none;
}
div.tableblock > table[frame="vsides"] {
border-top-style: none;
border-bottom-style: none;
}
div.hdlist {
margin-top: 0.8em;
margin-bottom: 0.8em;
}
div.hdlist tr {
padding-bottom: 15px;
}
dt.hdlist1.strong, td.hdlist1.strong {
font-weight: bold;
}
td.hdlist1 {
vertical-align: top;
font-style: normal;
padding-right: 0.8em;
color: navy;
}
td.hdlist2 {
vertical-align: top;
}
div.hdlist.compact tr {
margin: 0;
padding-bottom: 0;
}
.comment {
background: yellow;
}
.footnote, .footnoteref {
font-size: 0.8em;
}
span.footnote, span.footnoteref {
vertical-align: super;
}
#footnotes {
margin: 20px 0 20px 0;
padding: 7px 0 0 0;
}
#footnotes div.footnote {
margin: 0 0 5px 0;
}
#footnotes hr {
border: none;
border-top: 1px solid silver;
height: 1px;
text-align: left;
margin-left: 0;
width: 20%;
min-width: 100px;
}
@media print {
div#footer-badges { display: none; }
}
div#toc {
margin-bottom: 2.5em;
}
div#toctitle {
color: #527bbd;
font-family: sans-serif;
font-size: 1.1em;
font-weight: bold;
margin-top: 1.0em;
margin-bottom: 0.1em;
}
div.toclevel1, div.toclevel2, div.toclevel3, div.toclevel4 {
margin-top: 0;
margin-bottom: 0;
}
div.toclevel2 {
margin-left: 2em;
font-size: 0.9em;
}
div.toclevel3 {
margin-left: 4em;
font-size: 0.9em;
}
div.toclevel4 {
margin-left: 6em;
font-size: 0.9em;
}
/* Overrides for manpage documents */
h1 {
padding-top: 0.5em;
padding-bottom: 0.5em;
border-top: 2px solid silver;
border-bottom: 2px solid silver;
}
h2 {
border-style: none;
}
div.sectionbody {
margin-left: 5%;
}
@media print {
div#toc { display: none; }
}
/* Workarounds for IE6's broken and incomplete CSS2. */
div.sidebar-content {
background: #ffffee;
border: 1px solid silver;
padding: 0.5em;
}
div.sidebar-title, div.image-title {
color: #527bbd;
font-family: sans-serif;
font-weight: bold;
margin-top: 0.0em;
margin-bottom: 0.5em;
}
div.listingblock div.content {
border: 1px solid silver;
background: #f4f4f4;
padding: 0.5em;
}
div.quoteblock-attribution {
padding-top: 0.5em;
text-align: right;
}
div.verseblock-content {
white-space: pre;
}
div.verseblock-attribution {
padding-top: 0.75em;
text-align: left;
}
div.exampleblock-content {
border-left: 3px solid #dddddd;
padding-left: 0.5em;
}
/* IE6 sets dynamically generated links as visited. */
div#toc a:visited { color: blue; }
</style>
<script type="text/javascript">
/*<+'])');
// Function that scans the DOM tree for header elements (the DOM2
// nodeIterator API would be a better technique but not supported by all
// browsers).
var iterate = function (el) {
for (var i = el.firstChild; i != null; i = i.nextSibling) {
if (i.nodeType == 1 /* Node.ELEMENT_NODE */) {
var mo = re.exec(i.tagName);
if (mo && (i.getAttribute("class") || i.getAttribute("className")) != "float") {
result[result.length] = new TocEntry(i, getText(i), mo[1]-1);
}
iterate(i);
}
}
}
iterate(el);
return result;
}
var toc = document.getElementById("toc");
var entries = tocEntries(document.getElementById("content"), toclevels);
for (var i = 0; i < entries.length; ++i) {
var entry = entries[i];
if (entry.element.id == "")
entry.element.id = "_toc_" + i;
var a = document.createElement("a");
a.href = "#" + entry.element.id;
a.appendChild(document.createTextNode(entry.text));
var div = document.createElement("div");
div.appendChild(a);
div.className = "toclevel" + entry.toclevel;
toc.appendChild(div);
}
if (entries.length == 0)
toc.parentNode.removeChild(toc);
},
/////////////////////////////////////////////////////////////////////
// Footnotes generator
/////////////////////////////////////////////////////////////////////
/* Based on footnote generation code from:
* http://www.brandspankingnew.net/archive/2005/07/format_footnote.html
*/
footnotes: function () {
var cont = document.getElementById("content");
var noteholder = document.getElementById("footnotes");
var spans = cont.getElementsByTagName("span");
var refs = {};
var n = 0;
for (i=0; i<spans.length; i++) {
if (spans[i].className == "footnote") {
n++;
// Use [\s\S] in place of . so multi-line matches work.
// Because JavaScript has no s (dotall) regex flag.
note = spans[i].innerHTML.match(/\s*\[([\s\S]*)]\s*/)[1];
noteholder.innerHTML +=
"<div class='footnote' id='_footnote_" + n + "'>" +
"<a href='#_footnoteref_" + n + "' title='Return to text'>" +
n + "</a>. " + note + "</div>";
spans[i].innerHTML =
"[<a id='_footnoteref_" + n + "' href='#_footnote_" + n +
"' title='View footnote' class='footnote'>" + n + "</a>]";
var id =spans[i].getAttribute("id");
if (id != null) refs["#"+id] = n;
}
}
if (n == 0)
noteholder.parentNode.removeChild(noteholder);
else {
// Process footnoterefs.
for (i=0; i<spans.length; i++) {
if (spans[i].className == "footnoteref") {
var href = spans[i].getElementsByTagName("a")[0].getAttribute("href");
href = href.match(/#.*/)[0]; // Because IE return full URL.
n = refs[href];
spans[i].innerHTML =
"[<a href='#_footnote_" + n +
"' title='View footnote' class='footnote'>" + n + "</a>]";
}
}
}
}
}
/*]]>*/
</script>
</head>
<body>
<div id="header">
<h1>
CNTRAINING(1) Manual Page
</h1>
<h2>NAME</h2>
<div class="sectionbody">
<p>cntraining -
character normalization training for Tesseract
</p>
</div>
</div>
<div id="content">
<h2 id="_synopsis">SYNOPSIS</h2>
<div class="sectionbody">
<div class="paragraph"><p><strong>cntraining</strong> [-D <em>dir</em>] <em>FILE</em>…</p></div>
</div>
<h2 id="_description">DESCRIPTION</h2>
<div class="sectionbody">
<div class="paragraph"><p>cntraining takes a list of .tr files, from which it generates the
<strong>normproto</strong> data file (the character normalization sensitivity
prototypes).</p></div>
</div>
<h2 id="_options">OPTIONS</h2>
<div class="sectionbody">
<div class="dlist"><dl>
<dt class="hdlist1">
-D <em>dir</em>
</dt>
<dd>
<p>
Directory to write output files to.
</p>
</dd>
</dl></div>
</div>
<h2 id="_see_also">SEE ALSO</h2>
<div class="sectionbody">
<div class="paragraph"><p>tesseract(1), shapeclustering(1), mftraining(1)</p></div>
<div class="paragraph"><p><a href="http://code.google.com/p/tesseract-ocr/wiki/TrainingTesseract3">http://code.google.com/p/tesseract-ocr/wiki/TrainingTesseract3</a></p></div>
</div>
<h2 id="_copying">COPYING</h2>
<div class="sectionbody">
<div class="paragraph"><p>Copyright (c) Hewlett-Packard Company, 1988
Licensed under the Apache License, Version 2.0</p></div>
</div>
<h2 id="_author">AUTHOR</h2>
<div class="sectionbody">
<div class="paragraph"><p>The Tesseract OCR engine was written by Ray Smith and his research groups
at Hewlett Packard (1985-1995) and Google (2006-present).</p></div>
</div>
</div>
<div id="footnotes"><hr /></div>
<div id="footer">
<div id="footer-text">
Last updated 2012-02-09 11:37:31 PDT
</div>
</div>
</body>
</html>
| 1080228-arabicocr11 | doc/cntraining.1.html | HTML | asf20 | 13,830 |
'\" t
.\" Title: cntraining
.\" Author: [see the "AUTHOR" section]
.\" Generator: DocBook XSL Stylesheets v1.75.2 <http://docbook.sf.net/>
.\" Date: 02/09/2012
.\" Manual: \ \&
.\" Source: \ \&
.\" Language: English
.\"
.TH "CNTRAINING" "1" "02/09/2012" "\ \&" "\ \&"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.\" http://bugs.debian.org/507673
.\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.ie \n(.g .ds Aq \(aq
.el .ds Aq '
.\" -----------------------------------------------------------------
.\" * set default formatting
.\" -----------------------------------------------------------------
.\" disable hyphenation
.nh
.\" disable justification (adjust text to left margin only)
.ad l
.\" -----------------------------------------------------------------
.\" * MAIN CONTENT STARTS HERE *
.\" -----------------------------------------------------------------
.SH "NAME"
cntraining \- character normalization training for Tesseract
.SH "SYNOPSIS"
.sp
\fBcntraining\fR [\-D \fIdir\fR] \fIFILE\fR\&...
.SH "DESCRIPTION"
.sp
cntraining takes a list of \&.tr files, from which it generates the \fBnormproto\fR data file (the character normalization sensitivity prototypes)\&.
.SH "OPTIONS"
.PP
\-D \fIdir\fR
.RS 4
Directory to write output files to\&.
.RE
.SH "SEE ALSO"
.sp
tesseract(1), shapeclustering(1), mftraining(1)
.sp
\m[blue]\fBhttp://code\&.google\&.com/p/tesseract\-ocr/wiki/TrainingTesseract3\fR\m[]
.SH "COPYING"
.sp
Copyright (c) Hewlett\-Packard Company, 1988 Licensed under the Apache License, Version 2\&.0
.SH "AUTHOR"
.sp
The Tesseract OCR engine was written by Ray Smith and his research groups at Hewlett Packard (1985\-1995) and Google (2006\-present)\&.
| 1080228-arabicocr11 | doc/cntraining.1 | Roff Manpage | asf20 | 1,994 |
'\" t
.\" Title: dawg2wordlist
.\" Author: [see the "AUTHOR" section]
.\" Generator: DocBook XSL Stylesheets v1.75.2 <http://docbook.sf.net/>
.\" Date: 02/09/2012
.\" Manual: \ \&
.\" Source: \ \&
.\" Language: English
.\"
.TH "DAWG2WORDLIST" "1" "02/09/2012" "\ \&" "\ \&"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.\" http://bugs.debian.org/507673
.\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.ie \n(.g .ds Aq \(aq
.el .ds Aq '
.\" -----------------------------------------------------------------
.\" * set default formatting
.\" -----------------------------------------------------------------
.\" disable hyphenation
.nh
.\" disable justification (adjust text to left margin only)
.ad l
.\" -----------------------------------------------------------------
.\" * MAIN CONTENT STARTS HERE *
.\" -----------------------------------------------------------------
.SH "NAME"
dawg2wordlist \- convert a Tesseract DAWG to a wordlist
.SH "SYNOPSIS"
.sp
\fBdawg2wordlist\fR \fIUNICHARSET\fR \fIDAWG\fR \fIWORDLIST\fR
.SH "DESCRIPTION"
.sp
dawg2wordlist(1) converts a Tesseract Directed Acyclic Word Graph (DAWG) to a list of words using a unicharset as key\&.
.SH "OPTIONS"
.sp
\fIUNICHARSET\fR The unicharset of the language\&. This is the unicharset generated by mftraining(1)\&.
.sp
\fIDAWG\fR The input DAWG, created by wordlist2dawg(1)
.sp
\fIWORDLIST\fR Plain text (output) file in UTF\-8, one word per line
.SH "SEE ALSO"
.sp
tesseract(1), mftraining(1), wordlist2dawg(1), unicharset(5), combine_tessdata(1)
.sp
\m[blue]\fBhttp://code\&.google\&.com/p/tesseract\-ocr/wiki/TrainingTesseract3\fR\m[]
.SH "COPYING"
.sp
Copyright (C) 2012 Google, Inc\&. Licensed under the Apache License, Version 2\&.0
.SH "AUTHOR"
.sp
The Tesseract OCR engine was written by Ray Smith and his research groups at Hewlett Packard (1985\-1995) and Google (2006\-present)\&.
| 1080228-arabicocr11 | doc/dawg2wordlist.1 | Roff Manpage | asf20 | 2,177 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="generator" content="AsciiDoc 8.5.2" />
<title>COMBINE_TESSDATA(1)</title>
<style type="text/css">
/* Debug borders */
p, li, dt, dd, div, pre, h1, h2, h3, h4, h5, h6 {
/*
border: 1px solid red;
*/
}
body {
margin: 1em 5% 1em 5%;
}
a {
color: blue;
text-decoration: underline;
}
a:visited {
color: fuchsia;
}
em {
font-style: italic;
color: navy;
}
strong {
font-weight: bold;
color: #083194;
}
tt {
color: navy;
}
h1, h2, h3, h4, h5, h6 {
color: #527bbd;
font-family: sans-serif;
margin-top: 1.2em;
margin-bottom: 0.5em;
line-height: 1.3;
}
h1, h2, h3 {
border-bottom: 2px solid silver;
}
h2 {
padding-top: 0.5em;
}
h3 {
float: left;
}
h3 + * {
clear: left;
}
div.sectionbody {
font-family: serif;
margin-left: 0;
}
hr {
border: 1px solid silver;
}
p {
margin-top: 0.5em;
margin-bottom: 0.5em;
}
ul, ol, li > p {
margin-top: 0;
}
pre {
padding: 0;
margin: 0;
}
span#author {
color: #527bbd;
font-family: sans-serif;
font-weight: bold;
font-size: 1.1em;
}
span#email {
}
span#revnumber, span#revdate, span#revremark {
font-family: sans-serif;
}
div#footer {
font-family: sans-serif;
font-size: small;
border-top: 2px solid silver;
padding-top: 0.5em;
margin-top: 4.0em;
}
div#footer-text {
float: left;
padding-bottom: 0.5em;
}
div#footer-badges {
float: right;
padding-bottom: 0.5em;
}
div#preamble {
margin-top: 1.5em;
margin-bottom: 1.5em;
}
div.tableblock, div.imageblock, div.exampleblock, div.verseblock,
div.quoteblock, div.literalblock, div.listingblock, div.sidebarblock,
div.admonitionblock {
margin-top: 1.0em;
margin-bottom: 1.5em;
}
div.admonitionblock {
margin-top: 2.0em;
margin-bottom: 2.0em;
margin-right: 10%;
color: #606060;
}
div.content { /* Block element content. */
padding: 0;
}
/* Block element titles. */
div.title, caption.title {
color: #527bbd;
font-family: sans-serif;
font-weight: bold;
text-align: left;
margin-top: 1.0em;
margin-bottom: 0.5em;
}
div.title + * {
margin-top: 0;
}
td div.title:first-child {
margin-top: 0.0em;
}
div.content div.title:first-child {
margin-top: 0.0em;
}
div.content + div.title {
margin-top: 0.0em;
}
div.sidebarblock > div.content {
background: #ffffee;
border: 1px solid silver;
padding: 0.5em;
}
div.listingblock > div.content {
border: 1px solid silver;
background: #f4f4f4;
padding: 0.5em;
}
div.quoteblock, div.verseblock {
padding-left: 1.0em;
margin-left: 1.0em;
margin-right: 10%;
border-left: 5px solid #dddddd;
color: #777777;
}
div.quoteblock > div.attribution {
padding-top: 0.5em;
text-align: right;
}
div.verseblock > div.content {
white-space: pre;
}
div.verseblock > div.attribution {
padding-top: 0.75em;
text-align: left;
}
/* DEPRECATED: Pre version 8.2.7 verse style literal block. */
div.verseblock + div.attribution {
text-align: left;
}
div.admonitionblock .icon {
vertical-align: top;
font-size: 1.1em;
font-weight: bold;
text-decoration: underline;
color: #527bbd;
padding-right: 0.5em;
}
div.admonitionblock td.content {
padding-left: 0.5em;
border-left: 3px solid #dddddd;
}
div.exampleblock > div.content {
border-left: 3px solid #dddddd;
padding-left: 0.5em;
}
div.imageblock div.content { padding-left: 0; }
span.image img { border-style: none; }
a.image:visited { color: white; }
dl {
margin-top: 0.8em;
margin-bottom: 0.8em;
}
dt {
margin-top: 0.5em;
margin-bottom: 0;
font-style: normal;
color: navy;
}
dd > *:first-child {
margin-top: 0.1em;
}
ul, ol {
list-style-position: outside;
}
ol.arabic {
list-style-type: decimal;
}
ol.loweralpha {
list-style-type: lower-alpha;
}
ol.upperalpha {
list-style-type: upper-alpha;
}
ol.lowerroman {
list-style-type: lower-roman;
}
ol.upperroman {
list-style-type: upper-roman;
}
div.compact ul, div.compact ol,
div.compact p, div.compact p,
div.compact div, div.compact div {
margin-top: 0.1em;
margin-bottom: 0.1em;
}
div.tableblock > table {
border: 3px solid #527bbd;
}
thead, p.table.header {
font-family: sans-serif;
font-weight: bold;
}
tfoot {
font-weight: bold;
}
td > div.verse {
white-space: pre;
}
p.table {
margin-top: 0;
}
/* Because the table frame attribute is overriden by CSS in most browsers. */
div.tableblock > table[frame="void"] {
border-style: none;
}
div.tableblock > table[frame="hsides"] {
border-left-style: none;
border-right-style: none;
}
div.tableblock > table[frame="vsides"] {
border-top-style: none;
border-bottom-style: none;
}
div.hdlist {
margin-top: 0.8em;
margin-bottom: 0.8em;
}
div.hdlist tr {
padding-bottom: 15px;
}
dt.hdlist1.strong, td.hdlist1.strong {
font-weight: bold;
}
td.hdlist1 {
vertical-align: top;
font-style: normal;
padding-right: 0.8em;
color: navy;
}
td.hdlist2 {
vertical-align: top;
}
div.hdlist.compact tr {
margin: 0;
padding-bottom: 0;
}
.comment {
background: yellow;
}
.footnote, .footnoteref {
font-size: 0.8em;
}
span.footnote, span.footnoteref {
vertical-align: super;
}
#footnotes {
margin: 20px 0 20px 0;
padding: 7px 0 0 0;
}
#footnotes div.footnote {
margin: 0 0 5px 0;
}
#footnotes hr {
border: none;
border-top: 1px solid silver;
height: 1px;
text-align: left;
margin-left: 0;
width: 20%;
min-width: 100px;
}
@media print {
div#footer-badges { display: none; }
}
div#toc {
margin-bottom: 2.5em;
}
div#toctitle {
color: #527bbd;
font-family: sans-serif;
font-size: 1.1em;
font-weight: bold;
margin-top: 1.0em;
margin-bottom: 0.1em;
}
div.toclevel1, div.toclevel2, div.toclevel3, div.toclevel4 {
margin-top: 0;
margin-bottom: 0;
}
div.toclevel2 {
margin-left: 2em;
font-size: 0.9em;
}
div.toclevel3 {
margin-left: 4em;
font-size: 0.9em;
}
div.toclevel4 {
margin-left: 6em;
font-size: 0.9em;
}
/* Overrides for manpage documents */
h1 {
padding-top: 0.5em;
padding-bottom: 0.5em;
border-top: 2px solid silver;
border-bottom: 2px solid silver;
}
h2 {
border-style: none;
}
div.sectionbody {
margin-left: 5%;
}
@media print {
div#toc { display: none; }
}
/* Workarounds for IE6's broken and incomplete CSS2. */
div.sidebar-content {
background: #ffffee;
border: 1px solid silver;
padding: 0.5em;
}
div.sidebar-title, div.image-title {
color: #527bbd;
font-family: sans-serif;
font-weight: bold;
margin-top: 0.0em;
margin-bottom: 0.5em;
}
div.listingblock div.content {
border: 1px solid silver;
background: #f4f4f4;
padding: 0.5em;
}
div.quoteblock-attribution {
padding-top: 0.5em;
text-align: right;
}
div.verseblock-content {
white-space: pre;
}
div.verseblock-attribution {
padding-top: 0.75em;
text-align: left;
}
div.exampleblock-content {
border-left: 3px solid #dddddd;
padding-left: 0.5em;
}
/* IE6 sets dynamically generated links as visited. */
div#toc a:visited { color: blue; }
</style>
<script type="text/javascript">
/*<+'])');
// Function that scans the DOM tree for header elements (the DOM2
// nodeIterator API would be a better technique but not supported by all
// browsers).
var iterate = function (el) {
for (var i = el.firstChild; i != null; i = i.nextSibling) {
if (i.nodeType == 1 /* Node.ELEMENT_NODE */) {
var mo = re.exec(i.tagName);
if (mo && (i.getAttribute("class") || i.getAttribute("className")) != "float") {
result[result.length] = new TocEntry(i, getText(i), mo[1]-1);
}
iterate(i);
}
}
}
iterate(el);
return result;
}
var toc = document.getElementById("toc");
var entries = tocEntries(document.getElementById("content"), toclevels);
for (var i = 0; i < entries.length; ++i) {
var entry = entries[i];
if (entry.element.id == "")
entry.element.id = "_toc_" + i;
var a = document.createElement("a");
a.href = "#" + entry.element.id;
a.appendChild(document.createTextNode(entry.text));
var div = document.createElement("div");
div.appendChild(a);
div.className = "toclevel" + entry.toclevel;
toc.appendChild(div);
}
if (entries.length == 0)
toc.parentNode.removeChild(toc);
},
/////////////////////////////////////////////////////////////////////
// Footnotes generator
/////////////////////////////////////////////////////////////////////
/* Based on footnote generation code from:
* http://www.brandspankingnew.net/archive/2005/07/format_footnote.html
*/
footnotes: function () {
var cont = document.getElementById("content");
var noteholder = document.getElementById("footnotes");
var spans = cont.getElementsByTagName("span");
var refs = {};
var n = 0;
for (i=0; i<spans.length; i++) {
if (spans[i].className == "footnote") {
n++;
// Use [\s\S] in place of . so multi-line matches work.
// Because JavaScript has no s (dotall) regex flag.
note = spans[i].innerHTML.match(/\s*\[([\s\S]*)]\s*/)[1];
noteholder.innerHTML +=
"<div class='footnote' id='_footnote_" + n + "'>" +
"<a href='#_footnoteref_" + n + "' title='Return to text'>" +
n + "</a>. " + note + "</div>";
spans[i].innerHTML =
"[<a id='_footnoteref_" + n + "' href='#_footnote_" + n +
"' title='View footnote' class='footnote'>" + n + "</a>]";
var id =spans[i].getAttribute("id");
if (id != null) refs["#"+id] = n;
}
}
if (n == 0)
noteholder.parentNode.removeChild(noteholder);
else {
// Process footnoterefs.
for (i=0; i<spans.length; i++) {
if (spans[i].className == "footnoteref") {
var href = spans[i].getElementsByTagName("a")[0].getAttribute("href");
href = href.match(/#.*/)[0]; // Because IE return full URL.
n = refs[href];
spans[i].innerHTML =
"[<a href='#_footnote_" + n +
"' title='View footnote' class='footnote'>" + n + "</a>]";
}
}
}
}
}
/*]]>*/
</script>
</head>
<body>
<div id="header">
<h1>
COMBINE_TESSDATA(1) Manual Page
</h1>
<h2>NAME</h2>
<div class="sectionbody">
<p>combine_tessdata -
combine/extract/overwrite Tesseract data
</p>
</div>
</div>
<div id="content">
<h2 id="_synopsis">SYNOPSIS</h2>
<div class="sectionbody">
<div class="paragraph"><p><strong>combine_tessdata</strong> [<em>OPTION</em>] <em>FILE</em>…</p></div>
</div>
<h2 id="_description">DESCRIPTION</h2>
<div class="sectionbody">
<div class="paragraph"><p>combine_tessdata(1) is the main program to combine/extract/overwrite
tessdata components in [lang].traineddata files.</p></div>
<div class="paragraph"><p>To combine all the individual tessdata components (unicharset, DAWGs,
classifier templates, ambiguities, language configs) located at, say,
/home/$USER/temp/eng.* run:</p></div>
<div class="literalblock">
<div class="content">
<pre><tt>combine_tessdata /home/$USER/temp/eng.</tt></pre>
</div></div>
<div class="paragraph"><p>The result will be a combined tessdata file /home/$USER/temp/eng.traineddata</p></div>
<div class="paragraph"><p>Specify option -e if you would like to extract individual components
from a combined traineddata file. For example, to extract language config
file and the unicharset from tessdata/eng.traineddata run:</p></div>
<div class="literalblock">
<div class="content">
<pre><tt>combine_tessdata -e tessdata/eng.traineddata \
/home/$USER/temp/eng.config /home/$USER/temp/eng.unicharset</tt></pre>
</div></div>
<div class="paragraph"><p>The desired config file and unicharset will be written to
/home/$USER/temp/eng.config /home/$USER/temp/eng.unicharset</p></div>
<div class="paragraph"><p>Specify option -o to overwrite individual components of the given
[lang].traineddata file. For example, to overwrite language config
and unichar ambiguities files in tessdata/eng.traineddata use:</p></div>
<div class="literalblock">
<div class="content">
<pre><tt>combine_tessdata -o tessdata/eng.traineddata \
/home/$USER/temp/eng.config /home/$USER/temp/eng.unicharambigs</tt></pre>
</div></div>
<div class="paragraph"><p>As a result, tessdata/eng.traineddata will contain the new language config
and unichar ambigs, plus all the original DAWGs, classifier templates, etc.</p></div>
<div class="paragraph"><p>Note: the file names of the files to extract to and to overwrite from should
have the appropriate file suffixes (extensions) indicating their tessdata
component type (.unicharset for the unicharset, .unicharambigs for unichar
ambigs, etc). See k*FileSuffix variable in ccutil/tessdatamanager.h.</p></div>
<div class="paragraph"><p>Specify option -u to unpack all the components to the specified path:</p></div>
<div class="literalblock">
<div class="content">
<pre><tt>combine_tessdata -u tessdata/eng.traineddata /home/$USER/temp/eng.</tt></pre>
</div></div>
<div class="paragraph"><p>This will create /home/$USER/temp/eng.* files with individual tessdata
components from tessdata/eng.traineddata.</p></div>
</div>
<h2 id="_options">OPTIONS</h2>
<div class="sectionbody">
<div class="paragraph"><p><strong>-e</strong> <em>.traineddata</em> <em>FILE</em>…:
Extracts the specified components from the .traineddata file</p></div>
<div class="paragraph"><p><strong>-o</strong> <em>.traineddata</em> <em>FILE</em>…:
Overwrites the specified components of the .traineddata file
with those provided on the comand line.</p></div>
<div class="paragraph"><p><strong>-u</strong> <em>.traineddata</em> <em>PATHPREFIX</em>
Unpacks the .traineddata using the provided prefix.</p></div>
</div>
<h2 id="_caveats">CAVEATS</h2>
<div class="sectionbody">
<div class="paragraph"><p><em>Prefix</em> refers to the full file prefix, including period (.)</p></div>
</div>
<h2 id="_components">COMPONENTS</h2>
<div class="sectionbody">
<div class="paragraph"><p>The components in a Tesseract lang.traineddata file as of
Tesseract 3.02 are briefly described below; For more information on
many of these files, see
<a href="http://code.google.com/p/tesseract-ocr/wiki/TrainingTesseract3">http://code.google.com/p/tesseract-ocr/wiki/TrainingTesseract3</a></p></div>
<div class="dlist"><dl>
<dt class="hdlist1">
lang.config
</dt>
<dd>
<p>
(Optional) Language-specific overrides to default config variables.
</p>
</dd>
<dt class="hdlist1">
lang.unicharset
</dt>
<dd>
<p>
(Required) The list of symbols that Tesseract recognizes, with properties.
See unicharset(5).
</p>
</dd>
<dt class="hdlist1">
lang.unicharambigs
</dt>
<dd>
<p>
(Optional) This file contains information on pairs of recognized symbols
which are often confused. For example, <em>rn</em> and <em>m</em>.
</p>
</dd>
<dt class="hdlist1">
lang.inttemp
</dt>
<dd>
<p>
(Required) Character shape templates for each unichar. Produced by
mftraining(1).
</p>
</dd>
<dt class="hdlist1">
lang.pffmtable
</dt>
<dd>
<p>
(Required) The number of features expected for each unichar.
Produced by mftraining(1) from <strong>.tr</strong> files.
</p>
</dd>
<dt class="hdlist1">
lang.normproto
</dt>
<dd>
<p>
(Required) Character normalization prototypes generated by cntraining(1)
from <strong>.tr</strong> files.
</p>
</dd>
<dt class="hdlist1">
lang.punc-dawg
</dt>
<dd>
<p>
(Optional) A dawg made from punctuation patterns found around words.
The "word" part is replaced by a single space.
</p>
</dd>
<dt class="hdlist1">
lang.word-dawg
</dt>
<dd>
<p>
(Optional) A dawg made from dictionary words from the language.
</p>
</dd>
<dt class="hdlist1">
lang.number-dawg
</dt>
<dd>
<p>
(Optional) A dawg made from tokens which originally contained digits.
Each digit is replaced by a space character.
</p>
</dd>
<dt class="hdlist1">
lang.freq-dawg
</dt>
<dd>
<p>
(Optional) A dawg made from the most frequent words which would have
gone into word-dawg.
</p>
</dd>
<dt class="hdlist1">
lang.fixed-length-dawgs
</dt>
<dd>
<p>
(Optional) Several dawgs of different fixed lengths — useful for
languages like Chinese.
</p>
</dd>
<dt class="hdlist1">
lang.cube-unicharset
</dt>
<dd>
<p>
(Optional) A unicharset for cube, if cube was trained on a different set
of symbols.
</p>
</dd>
<dt class="hdlist1">
lang.cube-word-dawg
</dt>
<dd>
<p>
(Optional) A word dawg for cube’s alternate unicharset. Not needed if Cube
was trained with Tesseract’s unicharset.
</p>
</dd>
<dt class="hdlist1">
lang.shapetable
</dt>
<dd>
<p>
(Optional) When present, a shapetable is an extra layer between the character
classifier and the word recognizer that allows the character classifier to
return a collection of unichar ids and fonts instead of a single unichar-id
and font.
</p>
</dd>
<dt class="hdlist1">
lang.bigram-dawg
</dt>
<dd>
<p>
(Optional) A dawg of word bigrams where the words are separated by a space
and each digit is replaced by a <em>?</em>.
</p>
</dd>
<dt class="hdlist1">
lang.unambig-dawg
</dt>
<dd>
<p>
(Optional) TODO: Describe.
</p>
</dd>
<dt class="hdlist1">
lang.params-training-model
</dt>
<dd>
<p>
(Optional) TODO: Describe.
</p>
</dd>
</dl></div>
</div>
<h2 id="_history">HISTORY</h2>
<div class="sectionbody">
<div class="paragraph"><p>combine_tessdata(1) first appeared in version 3.00 of Tesseract</p></div>
</div>
<h2 id="_see_also">SEE ALSO</h2>
<div class="sectionbody">
<div class="paragraph"><p>tesseract(1), wordlist2dawg(1), cntraining(1), mftraining(1), unicharset(5),
unicharambigs(5)</p></div>
</div>
<h2 id="_copying">COPYING</h2>
<div class="sectionbody">
<div class="paragraph"><p>Copyright (C) 2009, Google Inc.
Licensed under the Apache License, Version 2.0</p></div>
</div>
<h2 id="_author">AUTHOR</h2>
<div class="sectionbody">
<div class="paragraph"><p>The Tesseract OCR engine was written by Ray Smith and his research groups
at Hewlett Packard (1985-1995) and Google (2006-present).</p></div>
</div>
</div>
<div id="footnotes"><hr /></div>
<div id="footer">
<div id="footer-text">
Last updated 2012-02-08 10:52:17 PDT
</div>
</div>
</body>
</html>
| 1080228-arabicocr11 | doc/combine_tessdata.1.html | HTML | asf20 | 20,279 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="generator" content="AsciiDoc 8.5.2" />
<title>DAWG2WORDLIST(1)</title>
<style type="text/css">
/* Debug borders */
p, li, dt, dd, div, pre, h1, h2, h3, h4, h5, h6 {
/*
border: 1px solid red;
*/
}
body {
margin: 1em 5% 1em 5%;
}
a {
color: blue;
text-decoration: underline;
}
a:visited {
color: fuchsia;
}
em {
font-style: italic;
color: navy;
}
strong {
font-weight: bold;
color: #083194;
}
tt {
color: navy;
}
h1, h2, h3, h4, h5, h6 {
color: #527bbd;
font-family: sans-serif;
margin-top: 1.2em;
margin-bottom: 0.5em;
line-height: 1.3;
}
h1, h2, h3 {
border-bottom: 2px solid silver;
}
h2 {
padding-top: 0.5em;
}
h3 {
float: left;
}
h3 + * {
clear: left;
}
div.sectionbody {
font-family: serif;
margin-left: 0;
}
hr {
border: 1px solid silver;
}
p {
margin-top: 0.5em;
margin-bottom: 0.5em;
}
ul, ol, li > p {
margin-top: 0;
}
pre {
padding: 0;
margin: 0;
}
span#author {
color: #527bbd;
font-family: sans-serif;
font-weight: bold;
font-size: 1.1em;
}
span#email {
}
span#revnumber, span#revdate, span#revremark {
font-family: sans-serif;
}
div#footer {
font-family: sans-serif;
font-size: small;
border-top: 2px solid silver;
padding-top: 0.5em;
margin-top: 4.0em;
}
div#footer-text {
float: left;
padding-bottom: 0.5em;
}
div#footer-badges {
float: right;
padding-bottom: 0.5em;
}
div#preamble {
margin-top: 1.5em;
margin-bottom: 1.5em;
}
div.tableblock, div.imageblock, div.exampleblock, div.verseblock,
div.quoteblock, div.literalblock, div.listingblock, div.sidebarblock,
div.admonitionblock {
margin-top: 1.0em;
margin-bottom: 1.5em;
}
div.admonitionblock {
margin-top: 2.0em;
margin-bottom: 2.0em;
margin-right: 10%;
color: #606060;
}
div.content { /* Block element content. */
padding: 0;
}
/* Block element titles. */
div.title, caption.title {
color: #527bbd;
font-family: sans-serif;
font-weight: bold;
text-align: left;
margin-top: 1.0em;
margin-bottom: 0.5em;
}
div.title + * {
margin-top: 0;
}
td div.title:first-child {
margin-top: 0.0em;
}
div.content div.title:first-child {
margin-top: 0.0em;
}
div.content + div.title {
margin-top: 0.0em;
}
div.sidebarblock > div.content {
background: #ffffee;
border: 1px solid silver;
padding: 0.5em;
}
div.listingblock > div.content {
border: 1px solid silver;
background: #f4f4f4;
padding: 0.5em;
}
div.quoteblock, div.verseblock {
padding-left: 1.0em;
margin-left: 1.0em;
margin-right: 10%;
border-left: 5px solid #dddddd;
color: #777777;
}
div.quoteblock > div.attribution {
padding-top: 0.5em;
text-align: right;
}
div.verseblock > div.content {
white-space: pre;
}
div.verseblock > div.attribution {
padding-top: 0.75em;
text-align: left;
}
/* DEPRECATED: Pre version 8.2.7 verse style literal block. */
div.verseblock + div.attribution {
text-align: left;
}
div.admonitionblock .icon {
vertical-align: top;
font-size: 1.1em;
font-weight: bold;
text-decoration: underline;
color: #527bbd;
padding-right: 0.5em;
}
div.admonitionblock td.content {
padding-left: 0.5em;
border-left: 3px solid #dddddd;
}
div.exampleblock > div.content {
border-left: 3px solid #dddddd;
padding-left: 0.5em;
}
div.imageblock div.content { padding-left: 0; }
span.image img { border-style: none; }
a.image:visited { color: white; }
dl {
margin-top: 0.8em;
margin-bottom: 0.8em;
}
dt {
margin-top: 0.5em;
margin-bottom: 0;
font-style: normal;
color: navy;
}
dd > *:first-child {
margin-top: 0.1em;
}
ul, ol {
list-style-position: outside;
}
ol.arabic {
list-style-type: decimal;
}
ol.loweralpha {
list-style-type: lower-alpha;
}
ol.upperalpha {
list-style-type: upper-alpha;
}
ol.lowerroman {
list-style-type: lower-roman;
}
ol.upperroman {
list-style-type: upper-roman;
}
div.compact ul, div.compact ol,
div.compact p, div.compact p,
div.compact div, div.compact div {
margin-top: 0.1em;
margin-bottom: 0.1em;
}
div.tableblock > table {
border: 3px solid #527bbd;
}
thead, p.table.header {
font-family: sans-serif;
font-weight: bold;
}
tfoot {
font-weight: bold;
}
td > div.verse {
white-space: pre;
}
p.table {
margin-top: 0;
}
/* Because the table frame attribute is overriden by CSS in most browsers. */
div.tableblock > table[frame="void"] {
border-style: none;
}
div.tableblock > table[frame="hsides"] {
border-left-style: none;
border-right-style: none;
}
div.tableblock > table[frame="vsides"] {
border-top-style: none;
border-bottom-style: none;
}
div.hdlist {
margin-top: 0.8em;
margin-bottom: 0.8em;
}
div.hdlist tr {
padding-bottom: 15px;
}
dt.hdlist1.strong, td.hdlist1.strong {
font-weight: bold;
}
td.hdlist1 {
vertical-align: top;
font-style: normal;
padding-right: 0.8em;
color: navy;
}
td.hdlist2 {
vertical-align: top;
}
div.hdlist.compact tr {
margin: 0;
padding-bottom: 0;
}
.comment {
background: yellow;
}
.footnote, .footnoteref {
font-size: 0.8em;
}
span.footnote, span.footnoteref {
vertical-align: super;
}
#footnotes {
margin: 20px 0 20px 0;
padding: 7px 0 0 0;
}
#footnotes div.footnote {
margin: 0 0 5px 0;
}
#footnotes hr {
border: none;
border-top: 1px solid silver;
height: 1px;
text-align: left;
margin-left: 0;
width: 20%;
min-width: 100px;
}
@media print {
div#footer-badges { display: none; }
}
div#toc {
margin-bottom: 2.5em;
}
div#toctitle {
color: #527bbd;
font-family: sans-serif;
font-size: 1.1em;
font-weight: bold;
margin-top: 1.0em;
margin-bottom: 0.1em;
}
div.toclevel1, div.toclevel2, div.toclevel3, div.toclevel4 {
margin-top: 0;
margin-bottom: 0;
}
div.toclevel2 {
margin-left: 2em;
font-size: 0.9em;
}
div.toclevel3 {
margin-left: 4em;
font-size: 0.9em;
}
div.toclevel4 {
margin-left: 6em;
font-size: 0.9em;
}
/* Overrides for manpage documents */
h1 {
padding-top: 0.5em;
padding-bottom: 0.5em;
border-top: 2px solid silver;
border-bottom: 2px solid silver;
}
h2 {
border-style: none;
}
div.sectionbody {
margin-left: 5%;
}
@media print {
div#toc { display: none; }
}
/* Workarounds for IE6's broken and incomplete CSS2. */
div.sidebar-content {
background: #ffffee;
border: 1px solid silver;
padding: 0.5em;
}
div.sidebar-title, div.image-title {
color: #527bbd;
font-family: sans-serif;
font-weight: bold;
margin-top: 0.0em;
margin-bottom: 0.5em;
}
div.listingblock div.content {
border: 1px solid silver;
background: #f4f4f4;
padding: 0.5em;
}
div.quoteblock-attribution {
padding-top: 0.5em;
text-align: right;
}
div.verseblock-content {
white-space: pre;
}
div.verseblock-attribution {
padding-top: 0.75em;
text-align: left;
}
div.exampleblock-content {
border-left: 3px solid #dddddd;
padding-left: 0.5em;
}
/* IE6 sets dynamically generated links as visited. */
div#toc a:visited { color: blue; }
</style>
<script type="text/javascript">
/*<+'])');
// Function that scans the DOM tree for header elements (the DOM2
// nodeIterator API would be a better technique but not supported by all
// browsers).
var iterate = function (el) {
for (var i = el.firstChild; i != null; i = i.nextSibling) {
if (i.nodeType == 1 /* Node.ELEMENT_NODE */) {
var mo = re.exec(i.tagName);
if (mo && (i.getAttribute("class") || i.getAttribute("className")) != "float") {
result[result.length] = new TocEntry(i, getText(i), mo[1]-1);
}
iterate(i);
}
}
}
iterate(el);
return result;
}
var toc = document.getElementById("toc");
var entries = tocEntries(document.getElementById("content"), toclevels);
for (var i = 0; i < entries.length; ++i) {
var entry = entries[i];
if (entry.element.id == "")
entry.element.id = "_toc_" + i;
var a = document.createElement("a");
a.href = "#" + entry.element.id;
a.appendChild(document.createTextNode(entry.text));
var div = document.createElement("div");
div.appendChild(a);
div.className = "toclevel" + entry.toclevel;
toc.appendChild(div);
}
if (entries.length == 0)
toc.parentNode.removeChild(toc);
},
/////////////////////////////////////////////////////////////////////
// Footnotes generator
/////////////////////////////////////////////////////////////////////
/* Based on footnote generation code from:
* http://www.brandspankingnew.net/archive/2005/07/format_footnote.html
*/
footnotes: function () {
var cont = document.getElementById("content");
var noteholder = document.getElementById("footnotes");
var spans = cont.getElementsByTagName("span");
var refs = {};
var n = 0;
for (i=0; i<spans.length; i++) {
if (spans[i].className == "footnote") {
n++;
// Use [\s\S] in place of . so multi-line matches work.
// Because JavaScript has no s (dotall) regex flag.
note = spans[i].innerHTML.match(/\s*\[([\s\S]*)]\s*/)[1];
noteholder.innerHTML +=
"<div class='footnote' id='_footnote_" + n + "'>" +
"<a href='#_footnoteref_" + n + "' title='Return to text'>" +
n + "</a>. " + note + "</div>";
spans[i].innerHTML =
"[<a id='_footnoteref_" + n + "' href='#_footnote_" + n +
"' title='View footnote' class='footnote'>" + n + "</a>]";
var id =spans[i].getAttribute("id");
if (id != null) refs["#"+id] = n;
}
}
if (n == 0)
noteholder.parentNode.removeChild(noteholder);
else {
// Process footnoterefs.
for (i=0; i<spans.length; i++) {
if (spans[i].className == "footnoteref") {
var href = spans[i].getElementsByTagName("a")[0].getAttribute("href");
href = href.match(/#.*/)[0]; // Because IE return full URL.
n = refs[href];
spans[i].innerHTML =
"[<a href='#_footnote_" + n +
"' title='View footnote' class='footnote'>" + n + "</a>]";
}
}
}
}
}
/*]]>*/
</script>
</head>
<body>
<div id="header">
<h1>
DAWG2WORDLIST(1) Manual Page
</h1>
<h2>NAME</h2>
<div class="sectionbody">
<p>dawg2wordlist -
convert a Tesseract DAWG to a wordlist
</p>
</div>
</div>
<div id="content">
<h2 id="_synopsis">SYNOPSIS</h2>
<div class="sectionbody">
<div class="paragraph"><p><strong>dawg2wordlist</strong> <em>UNICHARSET</em> <em>DAWG</em> <em>WORDLIST</em></p></div>
</div>
<h2 id="_description">DESCRIPTION</h2>
<div class="sectionbody">
<div class="paragraph"><p>dawg2wordlist(1) converts a Tesseract Directed Acyclic Word
Graph (DAWG) to a list of words using a unicharset as key.</p></div>
</div>
<h2 id="_options">OPTIONS</h2>
<div class="sectionbody">
<div class="paragraph"><p><em>UNICHARSET</em>
The unicharset of the language. This is the unicharset
generated by mftraining(1).</p></div>
<div class="paragraph"><p><em>DAWG</em>
The input DAWG, created by wordlist2dawg(1)</p></div>
<div class="paragraph"><p><em>WORDLIST</em>
Plain text (output) file in UTF-8, one word per line</p></div>
</div>
<h2 id="_see_also">SEE ALSO</h2>
<div class="sectionbody">
<div class="paragraph"><p>tesseract(1), mftraining(1), wordlist2dawg(1), unicharset(5),
combine_tessdata(1)</p></div>
<div class="paragraph"><p><a href="http://code.google.com/p/tesseract-ocr/wiki/TrainingTesseract3">http://code.google.com/p/tesseract-ocr/wiki/TrainingTesseract3</a></p></div>
</div>
<h2 id="_copying">COPYING</h2>
<div class="sectionbody">
<div class="paragraph"><p>Copyright (C) 2012 Google, Inc.
Licensed under the Apache License, Version 2.0</p></div>
</div>
<h2 id="_author">AUTHOR</h2>
<div class="sectionbody">
<div class="paragraph"><p>The Tesseract OCR engine was written by Ray Smith and his research groups
at Hewlett Packard (1985-1995) and Google (2006-present).</p></div>
</div>
</div>
<div id="footnotes"><hr /></div>
<div id="footer">
<div id="footer-text">
Last updated 2012-02-07 13:38:01 PDT
</div>
</div>
</body>
</html>
| 1080228-arabicocr11 | doc/dawg2wordlist.1.html | HTML | asf20 | 14,057 |
'\" t
.\" Title: unicharset
.\" Author: [see the "AUTHOR" section]
.\" Generator: DocBook XSL Stylesheets v1.75.2 <http://docbook.sf.net/>
.\" Date: 02/09/2012
.\" Manual: \ \&
.\" Source: \ \&
.\" Language: English
.\"
.TH "UNICHARSET" "5" "02/09/2012" "\ \&" "\ \&"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.\" http://bugs.debian.org/507673
.\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.ie \n(.g .ds Aq \(aq
.el .ds Aq '
.\" -----------------------------------------------------------------
.\" * set default formatting
.\" -----------------------------------------------------------------
.\" disable hyphenation
.nh
.\" disable justification (adjust text to left margin only)
.ad l
.\" -----------------------------------------------------------------
.\" * MAIN CONTENT STARTS HERE *
.\" -----------------------------------------------------------------
.SH "NAME"
unicharset \- character properties file used by tesseract(1)
.SH "DESCRIPTION"
.sp
Tesseract\(cqs unicharset file contains information on each symbol (unichar) the Tesseract OCR engine is trained to recognize\&.
.sp
A unicharset file (i\&.e\&. \fIeng\&.unicharset\fR) is distributed as part of a Tesseract language pack (i\&.e\&. \fIeng\&.traineddata\fR)\&. For information on extracting the unicharset file, see combine_tessdata(1)\&.
.sp
The first line of a unicharset file contains the number of unichars in the file\&. After this line, each subsequent line provides information for a single unichar\&. The first such line contains a placeholder reserved for the space character\&. Each unichar is referred to within Tesseract by its Unichar ID, which is the line number (minus 1) within the unicharset file\&. Therefore, space gets unichar 0\&.
.sp
Each unichar line in the unicharset file (v2+) may have four space\-separated fields:
.sp
.if n \{\
.RS 4
.\}
.nf
\*(Aqcharacter\*(Aq \*(Aqproperties\*(Aq \*(Aqscript\*(Aq \*(Aqid\*(Aq
.fi
.if n \{\
.RE
.\}
.sp
Starting with Tesseract v3\&.02, more information may be given for each unichar:
.sp
.if n \{\
.RS 4
.\}
.nf
\*(Aqcharacter\*(Aq \*(Aqproperties\*(Aq \*(Aqglyph_metrics\*(Aq \*(Aqscript\*(Aq \*(Aqother_case\*(Aq \*(Aqdirection\*(Aq \*(Aqmirror\*(Aq \*(Aqnormed_form\*(Aq
.fi
.if n \{\
.RE
.\}
.sp
Entries:
.PP
\fIcharacter\fR
.RS 4
The UTF\-8 encoded string to be produced for this unichar\&.
.RE
.PP
\fIproperties\fR
.RS 4
An integer mask of character properties, one per bit\&. From least to most significant bit, these are: isalpha, islower, isupper, isdigit, ispunctuation\&.
.RE
.PP
\fIglyph_metrics\fR
.RS 4
Ten comma\-separated integers representing various standards for where this glyph is to be found within a baseline\-normalized coordinate system where 128 is normalized to x\-height\&.
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
min_bottom, max_bottom: the ranges where the bottom of the character can be found\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
min_top, max_top: the ranges where the top of the character may be found\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
min_width, max_width: horizontal width of the character\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
min_bearing, max_bearing: how far from the usual start position does the leftmost part of the character begin\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
min_advance, max_advance: how far from the printer\(cqs cell left do we advance to begin the next character\&.
.RE
.RE
.PP
\fIscript\fR
.RS 4
Name of the script (Latin, Common, Greek, Cyrillic, Han, null)\&.
.RE
.PP
\fIother_case\fR
.RS 4
The Unichar ID of the other case version of this character (upper or lower)\&.
.RE
.PP
\fIdirection\fR
.RS 4
The Unicode BiDi direction of this character, as defined by ICU\(cqs enum UCharDirection\&. (0 = Left to Right, 1 = Right to Left, 2 = European Number\&...)
.RE
.PP
\fImirror\fR
.RS 4
The Unichar ID of the BiDirectional mirror of this character\&. For example the mirror of open paren is close paren, but Latin Capital C has no mirror, so it remains a Latin Capital C\&.
.RE
.PP
\fInormed_form\fR
.RS 4
The UTF\-8 representation of a "normalized form" of this unichar for the purpose of blaming a module for errors given ground truth text\&. For instance, a left or right single quote may normalize to an ASCII quote\&.
.RE
.SH "EXAMPLE (V2)"
.sp
.if n \{\
.RS 4
.\}
.nf
; 10 Common 46
b 3 Latin 59
W 5 Latin 40
7 8 Common 66
= 0 Common 93
.fi
.if n \{\
.RE
.\}
.sp
";" is a punctuation character\&. Its properties are thus represented by the binary number 10000 (10 in hexadecimal)\&.
.sp
"b" is an alphabetic character and a lower case character\&. Its properties are thus represented by the binary number 00011 (3 in hexadecimal)\&.
.sp
"W" is an alphabetic character and an upper case character\&. Its properties are thus represented by the binary number 00101 (5 in hexadecimal)\&.
.sp
"7" is just a digit\&. Its properties are thus represented by the binary number 01000 (8 in hexadecimal)\&.
.sp
"=" is not punctuation nor a digit nor an alphabetic character\&. Its properties are thus represented by the binary number 00000 (0 in hexadecimal)\&.
.sp
Japanese or Chinese alphabetic character properties are represented by the binary number 00001 (1 in hexadecimal): they are alphabetic, but neither upper nor lower case\&.
.SH "EXAMPLE (V3.02)"
.sp
.if n \{\
.RS 4
.\}
.nf
110
NULL 0 NULL 0
N 5 59,68,216,255,87,236,0,27,104,227 Latin 11 0 1 N
Y 5 59,68,216,255,91,205,0,47,91,223 Latin 33 0 2 Y
1 8 59,69,203,255,45,128,0,66,74,173 Common 3 2 3 1
9 8 18,66,203,255,89,156,0,39,104,173 Common 4 2 4 9
a 3 58,65,186,198,85,164,0,26,97,185 Latin 56 0 5 a
\&. \&. \&.
.fi
.if n \{\
.RE
.\}
.SH "CAVEATS"
.sp
Although the unicharset reader maintains the ability to read unicharsets of older formats and will assign default values to missing fields, the accuracy will be degraded\&.
.sp
Further, most other data files are indexed by the unicharset file, so changing it without re\-generating the others is likely to have dire consequences\&.
.SH "HISTORY"
.sp
The unicharset format first appeared with Tesseract 2\&.00, which was the first version to support languages other than English\&. The unicharset file contained only the first two fields, and the "ispunctuation" property was absent (punctuation was regarded as "0", as "=" is in the above example\&.
.SH "SEE ALSO"
.sp
tesseract(1), combine_tessdata(1), unicharset_extractor(1)
.sp
\m[blue]\fBhttp://code\&.google\&.com/p/tesseract\-ocr/wiki/TrainingTesseract3\fR\m[]
.SH "AUTHOR"
.sp
The Tesseract OCR engine was written by Ray Smith and his research groups at Hewlett Packard (1985\-1995) and Google (2006\-present)\&.
| 1080228-arabicocr11 | doc/unicharset.5 | Roff Manpage | asf20 | 7,119 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="generator" content="AsciiDoc 8.5.2" />
<title>UNICHARSET(5)</title>
<style type="text/css">
/* Debug borders */
p, li, dt, dd, div, pre, h1, h2, h3, h4, h5, h6 {
/*
border: 1px solid red;
*/
}
body {
margin: 1em 5% 1em 5%;
}
a {
color: blue;
text-decoration: underline;
}
a:visited {
color: fuchsia;
}
em {
font-style: italic;
color: navy;
}
strong {
font-weight: bold;
color: #083194;
}
tt {
color: navy;
}
h1, h2, h3, h4, h5, h6 {
color: #527bbd;
font-family: sans-serif;
margin-top: 1.2em;
margin-bottom: 0.5em;
line-height: 1.3;
}
h1, h2, h3 {
border-bottom: 2px solid silver;
}
h2 {
padding-top: 0.5em;
}
h3 {
float: left;
}
h3 + * {
clear: left;
}
div.sectionbody {
font-family: serif;
margin-left: 0;
}
hr {
border: 1px solid silver;
}
p {
margin-top: 0.5em;
margin-bottom: 0.5em;
}
ul, ol, li > p {
margin-top: 0;
}
pre {
padding: 0;
margin: 0;
}
span#author {
color: #527bbd;
font-family: sans-serif;
font-weight: bold;
font-size: 1.1em;
}
span#email {
}
span#revnumber, span#revdate, span#revremark {
font-family: sans-serif;
}
div#footer {
font-family: sans-serif;
font-size: small;
border-top: 2px solid silver;
padding-top: 0.5em;
margin-top: 4.0em;
}
div#footer-text {
float: left;
padding-bottom: 0.5em;
}
div#footer-badges {
float: right;
padding-bottom: 0.5em;
}
div#preamble {
margin-top: 1.5em;
margin-bottom: 1.5em;
}
div.tableblock, div.imageblock, div.exampleblock, div.verseblock,
div.quoteblock, div.literalblock, div.listingblock, div.sidebarblock,
div.admonitionblock {
margin-top: 1.0em;
margin-bottom: 1.5em;
}
div.admonitionblock {
margin-top: 2.0em;
margin-bottom: 2.0em;
margin-right: 10%;
color: #606060;
}
div.content { /* Block element content. */
padding: 0;
}
/* Block element titles. */
div.title, caption.title {
color: #527bbd;
font-family: sans-serif;
font-weight: bold;
text-align: left;
margin-top: 1.0em;
margin-bottom: 0.5em;
}
div.title + * {
margin-top: 0;
}
td div.title:first-child {
margin-top: 0.0em;
}
div.content div.title:first-child {
margin-top: 0.0em;
}
div.content + div.title {
margin-top: 0.0em;
}
div.sidebarblock > div.content {
background: #ffffee;
border: 1px solid silver;
padding: 0.5em;
}
div.listingblock > div.content {
border: 1px solid silver;
background: #f4f4f4;
padding: 0.5em;
}
div.quoteblock, div.verseblock {
padding-left: 1.0em;
margin-left: 1.0em;
margin-right: 10%;
border-left: 5px solid #dddddd;
color: #777777;
}
div.quoteblock > div.attribution {
padding-top: 0.5em;
text-align: right;
}
div.verseblock > div.content {
white-space: pre;
}
div.verseblock > div.attribution {
padding-top: 0.75em;
text-align: left;
}
/* DEPRECATED: Pre version 8.2.7 verse style literal block. */
div.verseblock + div.attribution {
text-align: left;
}
div.admonitionblock .icon {
vertical-align: top;
font-size: 1.1em;
font-weight: bold;
text-decoration: underline;
color: #527bbd;
padding-right: 0.5em;
}
div.admonitionblock td.content {
padding-left: 0.5em;
border-left: 3px solid #dddddd;
}
div.exampleblock > div.content {
border-left: 3px solid #dddddd;
padding-left: 0.5em;
}
div.imageblock div.content { padding-left: 0; }
span.image img { border-style: none; }
a.image:visited { color: white; }
dl {
margin-top: 0.8em;
margin-bottom: 0.8em;
}
dt {
margin-top: 0.5em;
margin-bottom: 0;
font-style: normal;
color: navy;
}
dd > *:first-child {
margin-top: 0.1em;
}
ul, ol {
list-style-position: outside;
}
ol.arabic {
list-style-type: decimal;
}
ol.loweralpha {
list-style-type: lower-alpha;
}
ol.upperalpha {
list-style-type: upper-alpha;
}
ol.lowerroman {
list-style-type: lower-roman;
}
ol.upperroman {
list-style-type: upper-roman;
}
div.compact ul, div.compact ol,
div.compact p, div.compact p,
div.compact div, div.compact div {
margin-top: 0.1em;
margin-bottom: 0.1em;
}
div.tableblock > table {
border: 3px solid #527bbd;
}
thead, p.table.header {
font-family: sans-serif;
font-weight: bold;
}
tfoot {
font-weight: bold;
}
td > div.verse {
white-space: pre;
}
p.table {
margin-top: 0;
}
/* Because the table frame attribute is overriden by CSS in most browsers. */
div.tableblock > table[frame="void"] {
border-style: none;
}
div.tableblock > table[frame="hsides"] {
border-left-style: none;
border-right-style: none;
}
div.tableblock > table[frame="vsides"] {
border-top-style: none;
border-bottom-style: none;
}
div.hdlist {
margin-top: 0.8em;
margin-bottom: 0.8em;
}
div.hdlist tr {
padding-bottom: 15px;
}
dt.hdlist1.strong, td.hdlist1.strong {
font-weight: bold;
}
td.hdlist1 {
vertical-align: top;
font-style: normal;
padding-right: 0.8em;
color: navy;
}
td.hdlist2 {
vertical-align: top;
}
div.hdlist.compact tr {
margin: 0;
padding-bottom: 0;
}
.comment {
background: yellow;
}
.footnote, .footnoteref {
font-size: 0.8em;
}
span.footnote, span.footnoteref {
vertical-align: super;
}
#footnotes {
margin: 20px 0 20px 0;
padding: 7px 0 0 0;
}
#footnotes div.footnote {
margin: 0 0 5px 0;
}
#footnotes hr {
border: none;
border-top: 1px solid silver;
height: 1px;
text-align: left;
margin-left: 0;
width: 20%;
min-width: 100px;
}
@media print {
div#footer-badges { display: none; }
}
div#toc {
margin-bottom: 2.5em;
}
div#toctitle {
color: #527bbd;
font-family: sans-serif;
font-size: 1.1em;
font-weight: bold;
margin-top: 1.0em;
margin-bottom: 0.1em;
}
div.toclevel1, div.toclevel2, div.toclevel3, div.toclevel4 {
margin-top: 0;
margin-bottom: 0;
}
div.toclevel2 {
margin-left: 2em;
font-size: 0.9em;
}
div.toclevel3 {
margin-left: 4em;
font-size: 0.9em;
}
div.toclevel4 {
margin-left: 6em;
font-size: 0.9em;
}
/* Overrides for manpage documents */
h1 {
padding-top: 0.5em;
padding-bottom: 0.5em;
border-top: 2px solid silver;
border-bottom: 2px solid silver;
}
h2 {
border-style: none;
}
div.sectionbody {
margin-left: 5%;
}
@media print {
div#toc { display: none; }
}
/* Workarounds for IE6's broken and incomplete CSS2. */
div.sidebar-content {
background: #ffffee;
border: 1px solid silver;
padding: 0.5em;
}
div.sidebar-title, div.image-title {
color: #527bbd;
font-family: sans-serif;
font-weight: bold;
margin-top: 0.0em;
margin-bottom: 0.5em;
}
div.listingblock div.content {
border: 1px solid silver;
background: #f4f4f4;
padding: 0.5em;
}
div.quoteblock-attribution {
padding-top: 0.5em;
text-align: right;
}
div.verseblock-content {
white-space: pre;
}
div.verseblock-attribution {
padding-top: 0.75em;
text-align: left;
}
div.exampleblock-content {
border-left: 3px solid #dddddd;
padding-left: 0.5em;
}
/* IE6 sets dynamically generated links as visited. */
div#toc a:visited { color: blue; }
</style>
<script type="text/javascript">
/*<+'])');
// Function that scans the DOM tree for header elements (the DOM2
// nodeIterator API would be a better technique but not supported by all
// browsers).
var iterate = function (el) {
for (var i = el.firstChild; i != null; i = i.nextSibling) {
if (i.nodeType == 1 /* Node.ELEMENT_NODE */) {
var mo = re.exec(i.tagName);
if (mo && (i.getAttribute("class") || i.getAttribute("className")) != "float") {
result[result.length] = new TocEntry(i, getText(i), mo[1]-1);
}
iterate(i);
}
}
}
iterate(el);
return result;
}
var toc = document.getElementById("toc");
var entries = tocEntries(document.getElementById("content"), toclevels);
for (var i = 0; i < entries.length; ++i) {
var entry = entries[i];
if (entry.element.id == "")
entry.element.id = "_toc_" + i;
var a = document.createElement("a");
a.href = "#" + entry.element.id;
a.appendChild(document.createTextNode(entry.text));
var div = document.createElement("div");
div.appendChild(a);
div.className = "toclevel" + entry.toclevel;
toc.appendChild(div);
}
if (entries.length == 0)
toc.parentNode.removeChild(toc);
},
/////////////////////////////////////////////////////////////////////
// Footnotes generator
/////////////////////////////////////////////////////////////////////
/* Based on footnote generation code from:
* http://www.brandspankingnew.net/archive/2005/07/format_footnote.html
*/
footnotes: function () {
var cont = document.getElementById("content");
var noteholder = document.getElementById("footnotes");
var spans = cont.getElementsByTagName("span");
var refs = {};
var n = 0;
for (i=0; i<spans.length; i++) {
if (spans[i].className == "footnote") {
n++;
// Use [\s\S] in place of . so multi-line matches work.
// Because JavaScript has no s (dotall) regex flag.
note = spans[i].innerHTML.match(/\s*\[([\s\S]*)]\s*/)[1];
noteholder.innerHTML +=
"<div class='footnote' id='_footnote_" + n + "'>" +
"<a href='#_footnoteref_" + n + "' title='Return to text'>" +
n + "</a>. " + note + "</div>";
spans[i].innerHTML =
"[<a id='_footnoteref_" + n + "' href='#_footnote_" + n +
"' title='View footnote' class='footnote'>" + n + "</a>]";
var id =spans[i].getAttribute("id");
if (id != null) refs["#"+id] = n;
}
}
if (n == 0)
noteholder.parentNode.removeChild(noteholder);
else {
// Process footnoterefs.
for (i=0; i<spans.length; i++) {
if (spans[i].className == "footnoteref") {
var href = spans[i].getElementsByTagName("a")[0].getAttribute("href");
href = href.match(/#.*/)[0]; // Because IE return full URL.
n = refs[href];
spans[i].innerHTML =
"[<a href='#_footnote_" + n +
"' title='View footnote' class='footnote'>" + n + "</a>]";
}
}
}
}
}
/*]]>*/
</script>
</head>
<body>
<div id="header">
<h1>
UNICHARSET(5) Manual Page
</h1>
<h2>NAME</h2>
<div class="sectionbody">
<p>unicharset -
character properties file used by tesseract(1)
</p>
</div>
</div>
<div id="content">
<h2 id="_description">DESCRIPTION</h2>
<div class="sectionbody">
<div class="paragraph"><p>Tesseract’s unicharset file contains information on each symbol
(unichar) the Tesseract OCR engine is trained to recognize.</p></div>
<div class="paragraph"><p>A unicharset file (i.e. <em>eng.unicharset</em>) is distributed as part of a
Tesseract language pack (i.e. <em>eng.traineddata</em>). For information on
extracting the unicharset file, see combine_tessdata(1).</p></div>
<div class="paragraph"><p>The first line of a unicharset file contains the number of unichars in
the file. After this line, each subsequent line provides information for
a single unichar. The first such line contains a placeholder reserved for
the space character. Each unichar is referred to within Tesseract by its
Unichar ID, which is the line number (minus 1) within the unicharset file.
Therefore, space gets unichar 0.</p></div>
<div class="paragraph"><p>Each unichar line in the unicharset file (v2+) may have four space-separated fields:</p></div>
<div class="literalblock">
<div class="content">
<pre><tt>'character' 'properties' 'script' 'id'</tt></pre>
</div></div>
<div class="paragraph"><p>Starting with Tesseract v3.02, more information may be given for each unichar:</p></div>
<div class="literalblock">
<div class="content">
<pre><tt>'character' 'properties' 'glyph_metrics' 'script' 'other_case' 'direction' 'mirror' 'normed_form'</tt></pre>
</div></div>
<div class="paragraph"><p>Entries:</p></div>
<div class="dlist"><dl>
<dt class="hdlist1">
<em>character</em>
</dt>
<dd>
<p>
The UTF-8 encoded string to be produced for this unichar.
</p>
</dd>
<dt class="hdlist1">
<em>properties</em>
</dt>
<dd>
<p>
An integer mask of character properties, one per bit.
From least to most significant bit, these are: isalpha, islower, isupper,
isdigit, ispunctuation.
</p>
</dd>
<dt class="hdlist1">
<em>glyph_metrics</em>
</dt>
<dd>
<p>
Ten comma-separated integers representing various standards
for where this glyph is to be found within a baseline-normalized coordinate
system where 128 is normalized to x-height.
</p>
<div class="ulist"><ul>
<li>
<p>
min_bottom, max_bottom: the ranges where the bottom of the character can
be found.
</p>
</li>
<li>
<p>
min_top, max_top: the ranges where the top of the character may be found.
</p>
</li>
<li>
<p>
min_width, max_width: horizontal width of the character.
</p>
</li>
<li>
<p>
min_bearing, max_bearing: how far from the usual start position does the
leftmost part of the character begin.
</p>
</li>
<li>
<p>
min_advance, max_advance: how far from the printer’s cell left do we
advance to begin the next character.
</p>
</li>
</ul></div>
</dd>
<dt class="hdlist1">
<em>script</em>
</dt>
<dd>
<p>
Name of the script (Latin, Common, Greek, Cyrillic, Han, null).
</p>
</dd>
<dt class="hdlist1">
<em>other_case</em>
</dt>
<dd>
<p>
The Unichar ID of the other case version of this character
(upper or lower).
</p>
</dd>
<dt class="hdlist1">
<em>direction</em>
</dt>
<dd>
<p>
The Unicode BiDi direction of this character, as defined by
ICU’s enum UCharDirection. (0 = Left to Right, 1 = Right to Left,
2 = European Number…)
</p>
</dd>
<dt class="hdlist1">
<em>mirror</em>
</dt>
<dd>
<p>
The Unichar ID of the BiDirectional mirror of this character.
For example the mirror of open paren is close paren, but Latin Capital C
has no mirror, so it remains a Latin Capital C.
</p>
</dd>
<dt class="hdlist1">
<em>normed_form</em>
</dt>
<dd>
<p>
The UTF-8 representation of a "normalized form" of this unichar
for the purpose of blaming a module for errors given ground truth text.
For instance, a left or right single quote may normalize to an ASCII quote.
</p>
</dd>
</dl></div>
</div>
<h2 id="_example_v2">EXAMPLE (v2)</h2>
<div class="sectionbody">
<div class="literalblock">
<div class="content">
<pre><tt>; 10 Common 46
b 3 Latin 59
W 5 Latin 40
7 8 Common 66
= 0 Common 93</tt></pre>
</div></div>
<div class="paragraph"><p>";" is a punctuation character. Its properties are thus represented by the
binary number 10000 (10 in hexadecimal).</p></div>
<div class="paragraph"><p>"b" is an alphabetic character and a lower case character. Its properties are
thus represented by the binary number 00011 (3 in hexadecimal).</p></div>
<div class="paragraph"><p>"W" is an alphabetic character and an upper case character. Its properties are
thus represented by the binary number 00101 (5 in hexadecimal).</p></div>
<div class="paragraph"><p>"7" is just a digit. Its properties are thus represented by the binary number
01000 (8 in hexadecimal).</p></div>
<div class="paragraph"><p>"=" is not punctuation nor a digit nor an alphabetic character. Its properties
are thus represented by the binary number 00000 (0 in hexadecimal).</p></div>
<div class="paragraph"><p>Japanese or Chinese alphabetic character properties are represented by the
binary number 00001 (1 in hexadecimal): they are alphabetic, but neither
upper nor lower case.</p></div>
</div>
<h2 id="_example_v3_02">EXAMPLE (v3.02)</h2>
<div class="sectionbody">
<div class="literalblock">
<div class="content">
<pre><tt>110
NULL 0 NULL 0
N 5 59,68,216,255,87,236,0,27,104,227 Latin 11 0 1 N
Y 5 59,68,216,255,91,205,0,47,91,223 Latin 33 0 2 Y
1 8 59,69,203,255,45,128,0,66,74,173 Common 3 2 3 1
9 8 18,66,203,255,89,156,0,39,104,173 Common 4 2 4 9
a 3 58,65,186,198,85,164,0,26,97,185 Latin 56 0 5 a
. . .</tt></pre>
</div></div>
</div>
<h2 id="_caveats">CAVEATS</h2>
<div class="sectionbody">
<div class="paragraph"><p>Although the unicharset reader maintains the ability to read unicharsets
of older formats and will assign default values to missing fields,
the accuracy will be degraded.</p></div>
<div class="paragraph"><p>Further, most other data files are indexed by the unicharset file,
so changing it without re-generating the others is likely to have dire
consequences.</p></div>
</div>
<h2 id="_history">HISTORY</h2>
<div class="sectionbody">
<div class="paragraph"><p>The unicharset format first appeared with Tesseract 2.00, which was the
first version to support languages other than English. The unicharset file
contained only the first two fields, and the "ispunctuation" property was
absent (punctuation was regarded as "0", as "=" is in the above example.</p></div>
</div>
<h2 id="_see_also">SEE ALSO</h2>
<div class="sectionbody">
<div class="paragraph"><p>tesseract(1), combine_tessdata(1), unicharset_extractor(1)</p></div>
<div class="paragraph"><p><a href="http://code.google.com/p/tesseract-ocr/wiki/TrainingTesseract3">http://code.google.com/p/tesseract-ocr/wiki/TrainingTesseract3</a></p></div>
</div>
<h2 id="_author">AUTHOR</h2>
<div class="sectionbody">
<div class="paragraph"><p>The Tesseract OCR engine was written by Ray Smith and his research groups
at Hewlett Packard (1985-1995) and Google (2006-present).</p></div>
</div>
</div>
<div id="footnotes"><hr /></div>
<div id="footer">
<div id="footer-text">
Last updated 2012-02-08 11:01:57 PDT
</div>
</div>
</body>
</html>
| 1080228-arabicocr11 | doc/unicharset.5.html | HTML | asf20 | 19,513 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="generator" content="AsciiDoc 8.5.2" />
<title>SHAPECLUSTERING(1)</title>
<style type="text/css">
/* Debug borders */
p, li, dt, dd, div, pre, h1, h2, h3, h4, h5, h6 {
/*
border: 1px solid red;
*/
}
body {
margin: 1em 5% 1em 5%;
}
a {
color: blue;
text-decoration: underline;
}
a:visited {
color: fuchsia;
}
em {
font-style: italic;
color: navy;
}
strong {
font-weight: bold;
color: #083194;
}
tt {
color: navy;
}
h1, h2, h3, h4, h5, h6 {
color: #527bbd;
font-family: sans-serif;
margin-top: 1.2em;
margin-bottom: 0.5em;
line-height: 1.3;
}
h1, h2, h3 {
border-bottom: 2px solid silver;
}
h2 {
padding-top: 0.5em;
}
h3 {
float: left;
}
h3 + * {
clear: left;
}
div.sectionbody {
font-family: serif;
margin-left: 0;
}
hr {
border: 1px solid silver;
}
p {
margin-top: 0.5em;
margin-bottom: 0.5em;
}
ul, ol, li > p {
margin-top: 0;
}
pre {
padding: 0;
margin: 0;
}
span#author {
color: #527bbd;
font-family: sans-serif;
font-weight: bold;
font-size: 1.1em;
}
span#email {
}
span#revnumber, span#revdate, span#revremark {
font-family: sans-serif;
}
div#footer {
font-family: sans-serif;
font-size: small;
border-top: 2px solid silver;
padding-top: 0.5em;
margin-top: 4.0em;
}
div#footer-text {
float: left;
padding-bottom: 0.5em;
}
div#footer-badges {
float: right;
padding-bottom: 0.5em;
}
div#preamble {
margin-top: 1.5em;
margin-bottom: 1.5em;
}
div.tableblock, div.imageblock, div.exampleblock, div.verseblock,
div.quoteblock, div.literalblock, div.listingblock, div.sidebarblock,
div.admonitionblock {
margin-top: 1.0em;
margin-bottom: 1.5em;
}
div.admonitionblock {
margin-top: 2.0em;
margin-bottom: 2.0em;
margin-right: 10%;
color: #606060;
}
div.content { /* Block element content. */
padding: 0;
}
/* Block element titles. */
div.title, caption.title {
color: #527bbd;
font-family: sans-serif;
font-weight: bold;
text-align: left;
margin-top: 1.0em;
margin-bottom: 0.5em;
}
div.title + * {
margin-top: 0;
}
td div.title:first-child {
margin-top: 0.0em;
}
div.content div.title:first-child {
margin-top: 0.0em;
}
div.content + div.title {
margin-top: 0.0em;
}
div.sidebarblock > div.content {
background: #ffffee;
border: 1px solid silver;
padding: 0.5em;
}
div.listingblock > div.content {
border: 1px solid silver;
background: #f4f4f4;
padding: 0.5em;
}
div.quoteblock, div.verseblock {
padding-left: 1.0em;
margin-left: 1.0em;
margin-right: 10%;
border-left: 5px solid #dddddd;
color: #777777;
}
div.quoteblock > div.attribution {
padding-top: 0.5em;
text-align: right;
}
div.verseblock > div.content {
white-space: pre;
}
div.verseblock > div.attribution {
padding-top: 0.75em;
text-align: left;
}
/* DEPRECATED: Pre version 8.2.7 verse style literal block. */
div.verseblock + div.attribution {
text-align: left;
}
div.admonitionblock .icon {
vertical-align: top;
font-size: 1.1em;
font-weight: bold;
text-decoration: underline;
color: #527bbd;
padding-right: 0.5em;
}
div.admonitionblock td.content {
padding-left: 0.5em;
border-left: 3px solid #dddddd;
}
div.exampleblock > div.content {
border-left: 3px solid #dddddd;
padding-left: 0.5em;
}
div.imageblock div.content { padding-left: 0; }
span.image img { border-style: none; }
a.image:visited { color: white; }
dl {
margin-top: 0.8em;
margin-bottom: 0.8em;
}
dt {
margin-top: 0.5em;
margin-bottom: 0;
font-style: normal;
color: navy;
}
dd > *:first-child {
margin-top: 0.1em;
}
ul, ol {
list-style-position: outside;
}
ol.arabic {
list-style-type: decimal;
}
ol.loweralpha {
list-style-type: lower-alpha;
}
ol.upperalpha {
list-style-type: upper-alpha;
}
ol.lowerroman {
list-style-type: lower-roman;
}
ol.upperroman {
list-style-type: upper-roman;
}
div.compact ul, div.compact ol,
div.compact p, div.compact p,
div.compact div, div.compact div {
margin-top: 0.1em;
margin-bottom: 0.1em;
}
div.tableblock > table {
border: 3px solid #527bbd;
}
thead, p.table.header {
font-family: sans-serif;
font-weight: bold;
}
tfoot {
font-weight: bold;
}
td > div.verse {
white-space: pre;
}
p.table {
margin-top: 0;
}
/* Because the table frame attribute is overriden by CSS in most browsers. */
div.tableblock > table[frame="void"] {
border-style: none;
}
div.tableblock > table[frame="hsides"] {
border-left-style: none;
border-right-style: none;
}
div.tableblock > table[frame="vsides"] {
border-top-style: none;
border-bottom-style: none;
}
div.hdlist {
margin-top: 0.8em;
margin-bottom: 0.8em;
}
div.hdlist tr {
padding-bottom: 15px;
}
dt.hdlist1.strong, td.hdlist1.strong {
font-weight: bold;
}
td.hdlist1 {
vertical-align: top;
font-style: normal;
padding-right: 0.8em;
color: navy;
}
td.hdlist2 {
vertical-align: top;
}
div.hdlist.compact tr {
margin: 0;
padding-bottom: 0;
}
.comment {
background: yellow;
}
.footnote, .footnoteref {
font-size: 0.8em;
}
span.footnote, span.footnoteref {
vertical-align: super;
}
#footnotes {
margin: 20px 0 20px 0;
padding: 7px 0 0 0;
}
#footnotes div.footnote {
margin: 0 0 5px 0;
}
#footnotes hr {
border: none;
border-top: 1px solid silver;
height: 1px;
text-align: left;
margin-left: 0;
width: 20%;
min-width: 100px;
}
@media print {
div#footer-badges { display: none; }
}
div#toc {
margin-bottom: 2.5em;
}
div#toctitle {
color: #527bbd;
font-family: sans-serif;
font-size: 1.1em;
font-weight: bold;
margin-top: 1.0em;
margin-bottom: 0.1em;
}
div.toclevel1, div.toclevel2, div.toclevel3, div.toclevel4 {
margin-top: 0;
margin-bottom: 0;
}
div.toclevel2 {
margin-left: 2em;
font-size: 0.9em;
}
div.toclevel3 {
margin-left: 4em;
font-size: 0.9em;
}
div.toclevel4 {
margin-left: 6em;
font-size: 0.9em;
}
/* Overrides for manpage documents */
h1 {
padding-top: 0.5em;
padding-bottom: 0.5em;
border-top: 2px solid silver;
border-bottom: 2px solid silver;
}
h2 {
border-style: none;
}
div.sectionbody {
margin-left: 5%;
}
@media print {
div#toc { display: none; }
}
/* Workarounds for IE6's broken and incomplete CSS2. */
div.sidebar-content {
background: #ffffee;
border: 1px solid silver;
padding: 0.5em;
}
div.sidebar-title, div.image-title {
color: #527bbd;
font-family: sans-serif;
font-weight: bold;
margin-top: 0.0em;
margin-bottom: 0.5em;
}
div.listingblock div.content {
border: 1px solid silver;
background: #f4f4f4;
padding: 0.5em;
}
div.quoteblock-attribution {
padding-top: 0.5em;
text-align: right;
}
div.verseblock-content {
white-space: pre;
}
div.verseblock-attribution {
padding-top: 0.75em;
text-align: left;
}
div.exampleblock-content {
border-left: 3px solid #dddddd;
padding-left: 0.5em;
}
/* IE6 sets dynamically generated links as visited. */
div#toc a:visited { color: blue; }
</style>
<script type="text/javascript">
/*<+'])');
// Function that scans the DOM tree for header elements (the DOM2
// nodeIterator API would be a better technique but not supported by all
// browsers).
var iterate = function (el) {
for (var i = el.firstChild; i != null; i = i.nextSibling) {
if (i.nodeType == 1 /* Node.ELEMENT_NODE */) {
var mo = re.exec(i.tagName);
if (mo && (i.getAttribute("class") || i.getAttribute("className")) != "float") {
result[result.length] = new TocEntry(i, getText(i), mo[1]-1);
}
iterate(i);
}
}
}
iterate(el);
return result;
}
var toc = document.getElementById("toc");
var entries = tocEntries(document.getElementById("content"), toclevels);
for (var i = 0; i < entries.length; ++i) {
var entry = entries[i];
if (entry.element.id == "")
entry.element.id = "_toc_" + i;
var a = document.createElement("a");
a.href = "#" + entry.element.id;
a.appendChild(document.createTextNode(entry.text));
var div = document.createElement("div");
div.appendChild(a);
div.className = "toclevel" + entry.toclevel;
toc.appendChild(div);
}
if (entries.length == 0)
toc.parentNode.removeChild(toc);
},
/////////////////////////////////////////////////////////////////////
// Footnotes generator
/////////////////////////////////////////////////////////////////////
/* Based on footnote generation code from:
* http://www.brandspankingnew.net/archive/2005/07/format_footnote.html
*/
footnotes: function () {
var cont = document.getElementById("content");
var noteholder = document.getElementById("footnotes");
var spans = cont.getElementsByTagName("span");
var refs = {};
var n = 0;
for (i=0; i<spans.length; i++) {
if (spans[i].className == "footnote") {
n++;
// Use [\s\S] in place of . so multi-line matches work.
// Because JavaScript has no s (dotall) regex flag.
note = spans[i].innerHTML.match(/\s*\[([\s\S]*)]\s*/)[1];
noteholder.innerHTML +=
"<div class='footnote' id='_footnote_" + n + "'>" +
"<a href='#_footnoteref_" + n + "' title='Return to text'>" +
n + "</a>. " + note + "</div>";
spans[i].innerHTML =
"[<a id='_footnoteref_" + n + "' href='#_footnote_" + n +
"' title='View footnote' class='footnote'>" + n + "</a>]";
var id =spans[i].getAttribute("id");
if (id != null) refs["#"+id] = n;
}
}
if (n == 0)
noteholder.parentNode.removeChild(noteholder);
else {
// Process footnoterefs.
for (i=0; i<spans.length; i++) {
if (spans[i].className == "footnoteref") {
var href = spans[i].getElementsByTagName("a")[0].getAttribute("href");
href = href.match(/#.*/)[0]; // Because IE return full URL.
n = refs[href];
spans[i].innerHTML =
"[<a href='#_footnote_" + n +
"' title='View footnote' class='footnote'>" + n + "</a>]";
}
}
}
}
}
/*]]>*/
</script>
</head>
<body>
<div id="header">
<h1>
SHAPECLUSTERING(1) Manual Page
</h1>
<h2>NAME</h2>
<div class="sectionbody">
<p>shapeclustering -
shape clustering training for Tesseract
</p>
</div>
</div>
<div id="content">
<h2 id="_synopsis">SYNOPSIS</h2>
<div class="sectionbody">
<div class="paragraph"><p>shapeclustering -D <em>output_dir</em>
-U <em>unicharset</em> -O <em>mfunicharset</em>
-F <em>font_props</em> -X <em>xheights</em>
<em>FILE</em>…</p></div>
</div>
<h2 id="_description">DESCRIPTION</h2>
<div class="sectionbody">
<div class="paragraph"><p>shapeclustering(1) takes extracted feature .tr files (generated by
tesseract(1) run in a special mode from box files) and produces a
file <strong>shapetable</strong> and an enhanced unicharset. This program is still
experimental, and is not required (yet) for training Tesseract.</p></div>
</div>
<h2 id="_options">OPTIONS</h2>
<div class="sectionbody">
<div class="dlist"><dl>
<dt class="hdlist1">
-U <em>FILE</em>
</dt>
<dd>
<p>
The unicharset generated by unicharset_extractor(1).
</p>
</dd>
<dt class="hdlist1">
-D <em>dir</em>
</dt>
<dd>
<p>
Directory to write output files to.
</p>
</dd>
<dt class="hdlist1">
-F <em>font_properties_file</em>
</dt>
<dd>
<p>
(Input) font properties file, where each line is of the following form, where each field other than the font name is 0 or 1:
</p>
<div class="literalblock">
<div class="content">
<pre><tt>'font_name' 'italic' 'bold' 'fixed_pitch' 'serif' 'fraktur'</tt></pre>
</div></div>
</dd>
<dt class="hdlist1">
-X <em>xheights_file</em>
</dt>
<dd>
<p>
(Input) x heights file, each line is of the following form, where xheight is calculated as the pixel x height of a character drawn at 32pt on 300 dpi. [ That is, if base x height + ascenders + descenders = 133, how much is x height? ]
</p>
<div class="literalblock">
<div class="content">
<pre><tt>'font_name' 'xheight'</tt></pre>
</div></div>
</dd>
<dt class="hdlist1">
-O <em>FILE</em>
</dt>
<dd>
<p>
The output unicharset that will be given to combine_tessdata(1).
</p>
</dd>
</dl></div>
</div>
<h2 id="_see_also">SEE ALSO</h2>
<div class="sectionbody">
<div class="paragraph"><p>tesseract(1), cntraining(1), unicharset_extractor(1), combine_tessdata(1),
unicharset(5)</p></div>
<div class="paragraph"><p><a href="http://code.google.com/p/tesseract-ocr/wiki/TrainingTesseract3">http://code.google.com/p/tesseract-ocr/wiki/TrainingTesseract3</a></p></div>
</div>
<h2 id="_copying">COPYING</h2>
<div class="sectionbody">
<div class="paragraph"><p>Copyright (C) Google, 2011
Licensed under the Apache License, Version 2.0</p></div>
</div>
<h2 id="_author">AUTHOR</h2>
<div class="sectionbody">
<div class="paragraph"><p>The Tesseract OCR engine was written by Ray Smith and his research groups
at Hewlett Packard (1985-1995) and Google (2006-present).</p></div>
</div>
</div>
<div id="footnotes"><hr /></div>
<div id="footer">
<div id="footer-text">
Last updated 2012-02-09 14:19:44 PDT
</div>
</div>
</body>
</html>
| 1080228-arabicocr11 | doc/shapeclustering.1.html | HTML | asf20 | 15,165 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="generator" content="AsciiDoc 8.5.2" />
<title>UNICHARAMBIGS(5)</title>
<style type="text/css">
/* Debug borders */
p, li, dt, dd, div, pre, h1, h2, h3, h4, h5, h6 {
/*
border: 1px solid red;
*/
}
body {
margin: 1em 5% 1em 5%;
}
a {
color: blue;
text-decoration: underline;
}
a:visited {
color: fuchsia;
}
em {
font-style: italic;
color: navy;
}
strong {
font-weight: bold;
color: #083194;
}
tt {
color: navy;
}
h1, h2, h3, h4, h5, h6 {
color: #527bbd;
font-family: sans-serif;
margin-top: 1.2em;
margin-bottom: 0.5em;
line-height: 1.3;
}
h1, h2, h3 {
border-bottom: 2px solid silver;
}
h2 {
padding-top: 0.5em;
}
h3 {
float: left;
}
h3 + * {
clear: left;
}
div.sectionbody {
font-family: serif;
margin-left: 0;
}
hr {
border: 1px solid silver;
}
p {
margin-top: 0.5em;
margin-bottom: 0.5em;
}
ul, ol, li > p {
margin-top: 0;
}
pre {
padding: 0;
margin: 0;
}
span#author {
color: #527bbd;
font-family: sans-serif;
font-weight: bold;
font-size: 1.1em;
}
span#email {
}
span#revnumber, span#revdate, span#revremark {
font-family: sans-serif;
}
div#footer {
font-family: sans-serif;
font-size: small;
border-top: 2px solid silver;
padding-top: 0.5em;
margin-top: 4.0em;
}
div#footer-text {
float: left;
padding-bottom: 0.5em;
}
div#footer-badges {
float: right;
padding-bottom: 0.5em;
}
div#preamble {
margin-top: 1.5em;
margin-bottom: 1.5em;
}
div.tableblock, div.imageblock, div.exampleblock, div.verseblock,
div.quoteblock, div.literalblock, div.listingblock, div.sidebarblock,
div.admonitionblock {
margin-top: 1.0em;
margin-bottom: 1.5em;
}
div.admonitionblock {
margin-top: 2.0em;
margin-bottom: 2.0em;
margin-right: 10%;
color: #606060;
}
div.content { /* Block element content. */
padding: 0;
}
/* Block element titles. */
div.title, caption.title {
color: #527bbd;
font-family: sans-serif;
font-weight: bold;
text-align: left;
margin-top: 1.0em;
margin-bottom: 0.5em;
}
div.title + * {
margin-top: 0;
}
td div.title:first-child {
margin-top: 0.0em;
}
div.content div.title:first-child {
margin-top: 0.0em;
}
div.content + div.title {
margin-top: 0.0em;
}
div.sidebarblock > div.content {
background: #ffffee;
border: 1px solid silver;
padding: 0.5em;
}
div.listingblock > div.content {
border: 1px solid silver;
background: #f4f4f4;
padding: 0.5em;
}
div.quoteblock, div.verseblock {
padding-left: 1.0em;
margin-left: 1.0em;
margin-right: 10%;
border-left: 5px solid #dddddd;
color: #777777;
}
div.quoteblock > div.attribution {
padding-top: 0.5em;
text-align: right;
}
div.verseblock > div.content {
white-space: pre;
}
div.verseblock > div.attribution {
padding-top: 0.75em;
text-align: left;
}
/* DEPRECATED: Pre version 8.2.7 verse style literal block. */
div.verseblock + div.attribution {
text-align: left;
}
div.admonitionblock .icon {
vertical-align: top;
font-size: 1.1em;
font-weight: bold;
text-decoration: underline;
color: #527bbd;
padding-right: 0.5em;
}
div.admonitionblock td.content {
padding-left: 0.5em;
border-left: 3px solid #dddddd;
}
div.exampleblock > div.content {
border-left: 3px solid #dddddd;
padding-left: 0.5em;
}
div.imageblock div.content { padding-left: 0; }
span.image img { border-style: none; }
a.image:visited { color: white; }
dl {
margin-top: 0.8em;
margin-bottom: 0.8em;
}
dt {
margin-top: 0.5em;
margin-bottom: 0;
font-style: normal;
color: navy;
}
dd > *:first-child {
margin-top: 0.1em;
}
ul, ol {
list-style-position: outside;
}
ol.arabic {
list-style-type: decimal;
}
ol.loweralpha {
list-style-type: lower-alpha;
}
ol.upperalpha {
list-style-type: upper-alpha;
}
ol.lowerroman {
list-style-type: lower-roman;
}
ol.upperroman {
list-style-type: upper-roman;
}
div.compact ul, div.compact ol,
div.compact p, div.compact p,
div.compact div, div.compact div {
margin-top: 0.1em;
margin-bottom: 0.1em;
}
div.tableblock > table {
border: 3px solid #527bbd;
}
thead, p.table.header {
font-family: sans-serif;
font-weight: bold;
}
tfoot {
font-weight: bold;
}
td > div.verse {
white-space: pre;
}
p.table {
margin-top: 0;
}
/* Because the table frame attribute is overriden by CSS in most browsers. */
div.tableblock > table[frame="void"] {
border-style: none;
}
div.tableblock > table[frame="hsides"] {
border-left-style: none;
border-right-style: none;
}
div.tableblock > table[frame="vsides"] {
border-top-style: none;
border-bottom-style: none;
}
div.hdlist {
margin-top: 0.8em;
margin-bottom: 0.8em;
}
div.hdlist tr {
padding-bottom: 15px;
}
dt.hdlist1.strong, td.hdlist1.strong {
font-weight: bold;
}
td.hdlist1 {
vertical-align: top;
font-style: normal;
padding-right: 0.8em;
color: navy;
}
td.hdlist2 {
vertical-align: top;
}
div.hdlist.compact tr {
margin: 0;
padding-bottom: 0;
}
.comment {
background: yellow;
}
.footnote, .footnoteref {
font-size: 0.8em;
}
span.footnote, span.footnoteref {
vertical-align: super;
}
#footnotes {
margin: 20px 0 20px 0;
padding: 7px 0 0 0;
}
#footnotes div.footnote {
margin: 0 0 5px 0;
}
#footnotes hr {
border: none;
border-top: 1px solid silver;
height: 1px;
text-align: left;
margin-left: 0;
width: 20%;
min-width: 100px;
}
@media print {
div#footer-badges { display: none; }
}
div#toc {
margin-bottom: 2.5em;
}
div#toctitle {
color: #527bbd;
font-family: sans-serif;
font-size: 1.1em;
font-weight: bold;
margin-top: 1.0em;
margin-bottom: 0.1em;
}
div.toclevel1, div.toclevel2, div.toclevel3, div.toclevel4 {
margin-top: 0;
margin-bottom: 0;
}
div.toclevel2 {
margin-left: 2em;
font-size: 0.9em;
}
div.toclevel3 {
margin-left: 4em;
font-size: 0.9em;
}
div.toclevel4 {
margin-left: 6em;
font-size: 0.9em;
}
/* Overrides for manpage documents */
h1 {
padding-top: 0.5em;
padding-bottom: 0.5em;
border-top: 2px solid silver;
border-bottom: 2px solid silver;
}
h2 {
border-style: none;
}
div.sectionbody {
margin-left: 5%;
}
@media print {
div#toc { display: none; }
}
/* Workarounds for IE6's broken and incomplete CSS2. */
div.sidebar-content {
background: #ffffee;
border: 1px solid silver;
padding: 0.5em;
}
div.sidebar-title, div.image-title {
color: #527bbd;
font-family: sans-serif;
font-weight: bold;
margin-top: 0.0em;
margin-bottom: 0.5em;
}
div.listingblock div.content {
border: 1px solid silver;
background: #f4f4f4;
padding: 0.5em;
}
div.quoteblock-attribution {
padding-top: 0.5em;
text-align: right;
}
div.verseblock-content {
white-space: pre;
}
div.verseblock-attribution {
padding-top: 0.75em;
text-align: left;
}
div.exampleblock-content {
border-left: 3px solid #dddddd;
padding-left: 0.5em;
}
/* IE6 sets dynamically generated links as visited. */
div#toc a:visited { color: blue; }
</style>
<script type="text/javascript">
/*<+'])');
// Function that scans the DOM tree for header elements (the DOM2
// nodeIterator API would be a better technique but not supported by all
// browsers).
var iterate = function (el) {
for (var i = el.firstChild; i != null; i = i.nextSibling) {
if (i.nodeType == 1 /* Node.ELEMENT_NODE */) {
var mo = re.exec(i.tagName);
if (mo && (i.getAttribute("class") || i.getAttribute("className")) != "float") {
result[result.length] = new TocEntry(i, getText(i), mo[1]-1);
}
iterate(i);
}
}
}
iterate(el);
return result;
}
var toc = document.getElementById("toc");
var entries = tocEntries(document.getElementById("content"), toclevels);
for (var i = 0; i < entries.length; ++i) {
var entry = entries[i];
if (entry.element.id == "")
entry.element.id = "_toc_" + i;
var a = document.createElement("a");
a.href = "#" + entry.element.id;
a.appendChild(document.createTextNode(entry.text));
var div = document.createElement("div");
div.appendChild(a);
div.className = "toclevel" + entry.toclevel;
toc.appendChild(div);
}
if (entries.length == 0)
toc.parentNode.removeChild(toc);
},
/////////////////////////////////////////////////////////////////////
// Footnotes generator
/////////////////////////////////////////////////////////////////////
/* Based on footnote generation code from:
* http://www.brandspankingnew.net/archive/2005/07/format_footnote.html
*/
footnotes: function () {
var cont = document.getElementById("content");
var noteholder = document.getElementById("footnotes");
var spans = cont.getElementsByTagName("span");
var refs = {};
var n = 0;
for (i=0; i<spans.length; i++) {
if (spans[i].className == "footnote") {
n++;
// Use [\s\S] in place of . so multi-line matches work.
// Because JavaScript has no s (dotall) regex flag.
note = spans[i].innerHTML.match(/\s*\[([\s\S]*)]\s*/)[1];
noteholder.innerHTML +=
"<div class='footnote' id='_footnote_" + n + "'>" +
"<a href='#_footnoteref_" + n + "' title='Return to text'>" +
n + "</a>. " + note + "</div>";
spans[i].innerHTML =
"[<a id='_footnoteref_" + n + "' href='#_footnote_" + n +
"' title='View footnote' class='footnote'>" + n + "</a>]";
var id =spans[i].getAttribute("id");
if (id != null) refs["#"+id] = n;
}
}
if (n == 0)
noteholder.parentNode.removeChild(noteholder);
else {
// Process footnoterefs.
for (i=0; i<spans.length; i++) {
if (spans[i].className == "footnoteref") {
var href = spans[i].getElementsByTagName("a")[0].getAttribute("href");
href = href.match(/#.*/)[0]; // Because IE return full URL.
n = refs[href];
spans[i].innerHTML =
"[<a href='#_footnote_" + n +
"' title='View footnote' class='footnote'>" + n + "</a>]";
}
}
}
}
}
/*]]>*/
</script>
</head>
<body>
<div id="header">
<h1>
UNICHARAMBIGS(5) Manual Page
</h1>
<h2>NAME</h2>
<div class="sectionbody">
<p>unicharambigs -
Tesseract unicharset ambiguities
</p>
</div>
</div>
<div id="content">
<h2 id="_description">DESCRIPTION</h2>
<div class="sectionbody">
<div class="paragraph"><p>The unicharambigs file (a component of traineddata, see combine_tessdata(1) )
is used by Tesseract to represent possible ambiguities between characters,
or groups of characters.</p></div>
<div class="paragraph"><p>The file contains a number of lines, laid out as follow:</p></div>
<div class="literalblock">
<div class="content">
<pre><tt>[num] <TAB> [char(s)] <TAB> [num] <TAB> [char(s)] <TAB> [num]</tt></pre>
</div></div>
<div class="hdlist"><table>
<tr>
<td class="hdlist1">
Field one
<br />
</td>
<td class="hdlist2">
<p style="margin-top: 0;">
the number of characters contained in field two
</p>
</td>
</tr>
<tr>
<td class="hdlist1">
Field two
<br />
</td>
<td class="hdlist2">
<p style="margin-top: 0;">
the character sequence to be replaced
</p>
</td>
</tr>
<tr>
<td class="hdlist1">
Field three
<br />
</td>
<td class="hdlist2">
<p style="margin-top: 0;">
the number of characters contained in field four
</p>
</td>
</tr>
<tr>
<td class="hdlist1">
Field four
<br />
</td>
<td class="hdlist2">
<p style="margin-top: 0;">
the character sequence used to replace field two
</p>
</td>
</tr>
<tr>
<td class="hdlist1">
Field five
<br />
</td>
<td class="hdlist2">
<p style="margin-top: 0;">
contains either 1 or 0. 1 denotes a mandatory
replacement, 0 denotes an optional replacement.
</p>
</td>
</tr>
</table></div>
<div class="paragraph"><p>Characters appearing in fields two and four should appear in
unicharset. The numbers in fields one and three refer to the
number of unichars (not bytes).</p></div>
</div>
<h2 id="_example">EXAMPLE</h2>
<div class="sectionbody">
<div class="literalblock">
<div class="content">
<pre><tt>2 ' ' 1 " 1
1 m 2 r n 0
3 i i i 1 m 0</tt></pre>
</div></div>
<div class="paragraph"><p>In this example, all instances of the <em>2</em> character sequence <em>'</em>' will
<strong>always</strong> be replaced by the <em>1</em> character sequence <em>"</em>; a <em>1</em> character
sequence <em>m</em> <strong>may</strong> be replaced by the <em>2</em> character sequence <em>rn</em>, and
the <em>3</em> character sequence <strong>may</strong> be replaced by the <em>1</em> character
sequence <em>m</em>.</p></div>
</div>
<h2 id="_history">HISTORY</h2>
<div class="sectionbody">
<div class="paragraph"><p>The unicharambigs file first appeared in Tesseract 3.00; prior to that, a
similar format, called DangAmbigs (<em>dangerous ambiguities</em>) was used: the
format was almost identical, except only mandatory replacements could be
specified, and field 5 was absent.</p></div>
</div>
<h2 id="_bugs">BUGS</h2>
<div class="sectionbody">
<div class="paragraph"><p>This is a documentation "bug": it’s not currently clear what should be done
in the case of ligatures (such as <em>fi</em>) which may also appear as regular
letters in the unicharset.</p></div>
</div>
<h2 id="_see_also">SEE ALSO</h2>
<div class="sectionbody">
<div class="paragraph"><p>tesseract(1), unicharset(5)</p></div>
</div>
<h2 id="_author">AUTHOR</h2>
<div class="sectionbody">
<div class="paragraph"><p>The Tesseract OCR engine was written by Ray Smith and his research groups
at Hewlett Packard (1985-1995) and Google (2006-present).</p></div>
</div>
</div>
<div id="footnotes"><hr /></div>
<div id="footer">
<div id="footer-text">
Last updated 2012-02-08 10:59:49 PDT
</div>
</div>
</body>
</html>
| 1080228-arabicocr11 | doc/unicharambigs.5.html | HTML | asf20 | 15,839 |