"));
182 |
183 | return result.elements();
184 | }
185 |
186 | /**
187 | * Parses a list of options for this object.
188 | *
189 |
190 | * Valid options are:
191 | *
192 | * -W
193 | * Whiten the data (decorrelate the inputs so the covariance
194 | * is the identity matrix) before performing ICA. This should
195 | * *probably* be enabled unless you whitened the data yourself
196 | * or have a specific reason not to perform whitening.
197 | *
198 | * -A <num>
199 | * Maximum number of attributes to include in results.
200 | * (-1 = include all, default: all)
201 | *
202 | * -N <num>
203 | * Maximum number of iterations.
204 | * (default: 200)
205 | *
206 | * -T <num>
207 | * Convergence tolerance to stop training.
208 | * (default: 1E-4)
209 | *
210 |
211 | *
212 | * @param options the list of options as an array of strings
213 | * @throws Exception if an option is not supported
214 | */
215 | public void setOptions(String[] options) throws Exception {
216 | String tmpStr;
217 |
218 | setWhitenData(Utils.getFlag('W', options));
219 |
220 | tmpStr = Utils.getOption('A', options);
221 | if (tmpStr.length() != 0)
222 | setNumAttributes(Integer.parseInt(tmpStr));
223 | else
224 | setNumAttributes(-1);
225 |
226 | tmpStr = Utils.getOption('N', options);
227 | if (tmpStr.length() != 0)
228 | setNumIterations(Integer.parseInt(tmpStr));
229 | else
230 | setNumIterations(200);
231 |
232 | tmpStr = Utils.getOption('T', options);
233 | if (tmpStr.length() != 0)
234 | setTolerance(Double.parseDouble(tmpStr));
235 | else
236 | setTolerance(1E-4);
237 | }
238 |
239 | /**
240 | * Gets the current settings of the filter.
241 | *
242 | * @return an array of strings suitable for passing to setOptions
243 | */
244 | public String[] getOptions() {
245 | Vector result;
246 |
247 | result = new Vector();
248 |
249 | result.add("-W");
250 |
251 | result.add("-A");
252 | result.add("" + getNumAttributes());
253 |
254 | result.add("-N");
255 | result.add("" + getNumIterations());
256 |
257 | result.add("-T");
258 | result.add("" + getTolerance());
259 |
260 | return result.toArray(new String[result.size()]);
261 | }
262 |
263 | /**
264 | * Determines the output format based on the input format and returns
265 | * this. In case the output format cannot be returned immediately, i.e.,
266 | * immediateOutputFormat() returns false, then this method will be called
267 | * from batchFinished().
268 | *
269 | * @param inputFormat the input format to base the output format on
270 | * @return the output format
271 | * @throws Exception in case the determination goes wrong
272 | * @see #batchFinished()
273 | */
274 | protected Instances determineOutputFormat(Instances inputFormat)
275 | throws Exception {
276 |
277 | // Error if any data is missing or for non-numeric attributes
278 | for (int j = 0; j < inputFormat.numAttributes(); j++) {
279 |
280 | if (j == inputFormat.classIndex()) { // skip the class index
281 | continue;
282 | }
283 |
284 | if (!inputFormat.attribute(j).isNumeric()) {
285 | throw new Exception("All data must be numeric.");
286 | }
287 |
288 | AttributeStats att = inputFormat.attributeStats(j);
289 | if (att.missingCount > 0) {
290 | throw new Exception("Missing data is not supported.");
291 | }
292 | }
293 |
294 | // Add generic labels for the required number of unmixed sources
295 | ArrayList attributes = new ArrayList();
296 | for (int i = 0; i < m_numAttributes; i++) {
297 | attributes.add(new Attribute("Source_" + Integer.toString(i)));
298 | }
299 |
300 | // Copy the class attribute from the input (if set)
301 | if (inputFormat.classIndex() >= 0) {
302 | m_hasClass = true;
303 | attributes.remove(m_numAttributes - 1); // remove the last source first
304 | attributes.add((Attribute) inputFormat.classAttribute().copy());
305 | }
306 |
307 | Instances outputFormat =
308 | new Instances(
309 | inputFormat.relationName() + "_ICA", attributes, 0);
310 |
311 | if (inputFormat.classIndex() >= 0)
312 | outputFormat.setClassIndex(outputFormat.numAttributes() - 1);
313 |
314 | return outputFormat;
315 | }
316 |
317 | /**
318 | * Sets the format of the input instances.
319 | *
320 | * @param instanceInfo an {@link Instances} object containing the input
321 | * instance structure (any instances contained
322 | * in the object are ignored - only the structure
323 | * is required).
324 | * @return true if the outputFormat may be collected
325 | * immediately
326 | * @throws Exception if the input format can't be set successfully
327 | */
328 | public boolean setInputFormat(Instances instanceInfo) throws Exception {
329 | super.setInputFormat(instanceInfo);
330 | m_filter = null;
331 | m_hasClass = false;
332 |
333 | return false;
334 | }
335 |
336 | /**
337 | *
338 | * Transform a single instance into the ICA projected space based on the
339 | * FastICA filter object. This should not be called prior to training the
340 | * filter with input(), then calling batchFinished().
341 | *
342 | * @param currentInstance an {@link Instance} object containing one value of
343 | * each attribute
344 | * @return a {@link Instance} object containing the result of
345 | * projecting the input into the ICA domain
346 | * @throws Exception if the filter has not been trained, or the
347 | * transformation does not succeed
348 | */
349 | protected Instance convertInstance(Instance currentInstance) throws Exception {
350 |
351 | int last_idx;
352 | Instance tmp;
353 | Instance inst;
354 | double[][] result;
355 |
356 | if (m_filter == null) {
357 | throw new Exception("No ICA instance has been trained.");
358 | }
359 |
360 | // make a copy of the instance and transform it
361 | tmp = new DenseInstance(currentInstance);
362 | if (currentInstance.classIndex() >= 0) {
363 | tmp.deleteAttributeAt(currentInstance.classIndex());
364 | }
365 | result = m_filter.transform(new double[][]{tmp.toDoubleArray()});
366 | last_idx = result[0].length;
367 |
368 | // copy the results back into an instance
369 | inst = new DenseInstance(getOutputFormat().numAttributes());
370 | for (int i = 0; i < last_idx; i++) {
371 | inst.setValue(i, result[0][i]);
372 | }
373 | if (currentInstance.classIndex() >= 0) {
374 | inst.setValue(last_idx, currentInstance.classValue());
375 | }
376 |
377 | return inst;
378 | }
379 |
380 | /**
381 | * Signify that this batch of input to the filter is finished. If
382 | * the filter requires all instances prior to filtering, output()
383 | * may now be called to retrieve the filtered instances. Any
384 | * subsequent instances filtered should be filtered based on setting
385 | * obtained from the first batch (unless the inputFormat has been
386 | * re-assigned or new options have been set). This default
387 | * implementation assumes all instance processing occurs during
388 | * inputFormat() and input().
389 | *
390 | * @return true if there are instances pending output
391 | * @throws NullPointerException if no input structure has
392 | * been defined
393 | * @throws Exception if there was a problem finishing the batch
394 | */
395 | public boolean batchFinished() throws Exception {
396 |
397 | Instances inputs;
398 | Instance output;
399 |
400 | if (getInputFormat() == null) {
401 | throw new Exception("Input format not defined.");
402 | }
403 |
404 | inputs = getInputFormat();
405 |
406 | m_numAttributes = (m_numAttributes == -1) ? inputs.numAttributes() : m_numAttributes;
407 | setOutputFormat(determineOutputFormat(inputs));
408 | setup(inputs);
409 |
410 | for (int i = 0; i < inputs.numInstances(); i++) {
411 | output = convertInstance(inputs.instance(i));
412 | output.setDataset(getOutputFormat());
413 | push(output);
414 | }
415 |
416 | return super.batchFinished();
417 | }
418 |
419 | /**
420 | * Run the filter on the input data
421 | *
422 | * @param instances {@link Instances} containing data for
423 | * training/fitting the {@link FastICA} filter
424 | * @throws Exception if the {@link FastICA} or any preprocessing
425 | * filters encounter a problem
426 | */
427 | protected void setup(Instances instances) throws Exception {
428 |
429 | Instances data = dropClass(instances);
430 |
431 | // TODO: add filters to handle missing data and non-numeric attributes &
432 | // remove the errors on missing/non-numeric from determineOutputFormat
433 |
434 | // Convert the data to a row-indexed double[][]
435 | double[][] readings = new double[data.numInstances()][];
436 | for (int i = 0; i < data.numInstances(); i++) {
437 | readings[i] = data.instance(i).toDoubleArray();
438 | }
439 |
440 | // Perform ICA
441 | m_filter = new FastICA(m_tolerance, m_numIterations, m_whiten);
442 | m_filter.fit(readings, data.numAttributes());
443 | }
444 |
445 | /*
446 | * Return a copy of an {@link Instances} object with the class
447 | * attribute removed
448 | */
449 | private Instances dropClass(Instances instances) throws Exception {
450 |
451 | if (instances.classIndex() == -1) {
452 | return instances;
453 | }
454 |
455 | Remove removeFilter = new Remove();
456 | String[] options = new String[2];
457 | options[0] = "-R";
458 | options[1] = Integer.toString(instances.classIndex());
459 | removeFilter.setOptions(options);
460 | removeFilter.setInputFormat(instances);
461 | return Filter.useFilter(instances, removeFilter);
462 | }
463 |
464 | /**
465 | * Returns the revision string.
466 | *
467 | * @return the revision
468 | */
469 | public String getRevision() {
470 | return RevisionUtils.extract("$Revision: 1.0 $");
471 | }
472 |
473 | /**
474 | * Main method for running this filter.
475 | *
476 | * @param args should contain arguments to the filter: use -h for help
477 | */
478 | public static void main(String[] args) {
479 | runFilter(new IndependentComponents(), args);
480 | }
481 |
482 | }
483 |
--------------------------------------------------------------------------------
/src/main/resources/csv/car_bin_test.csv:
--------------------------------------------------------------------------------
1 | 0,0,0,1,0,0,0,1,1,0,0,0,0,0,1,1,0,0,1,0,0,0
2 | 0,0,0,1,0,0,0,1,1,0,0,0,0,0,1,1,0,0,0,1,0,0
3 | 0,0,0,1,0,0,0,1,1,0,0,0,0,0,1,1,0,0,0,0,1,0
4 | 0,0,0,1,0,0,0,1,1,0,0,0,0,0,1,0,1,0,1,0,0,0
5 | 0,0,0,1,0,0,0,1,1,0,0,0,0,0,1,0,1,0,0,1,0,1
6 | 0,0,0,1,0,0,0,1,1,0,0,0,0,0,1,0,1,0,0,0,1,1
7 | 0,0,0,1,0,0,0,1,1,0,0,0,0,0,1,0,0,1,1,0,0,0
8 | 0,0,0,1,0,0,0,1,1,0,0,0,0,0,1,0,0,1,0,1,0,1
9 | 0,0,0,1,0,0,0,1,1,0,0,0,0,0,1,0,0,1,0,0,1,1
10 | 0,0,0,1,0,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,0
11 | 0,0,0,1,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,1,0,0
12 | 0,0,0,1,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,1,0
13 | 0,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,1,0,1,0,0,0
14 | 0,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,1,0,0,1,0,0
15 | 0,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,1,0,0,0,1,0
16 | 0,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,1,1,0,0,0
17 | 0,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,1,0,1,0,0
18 | 0,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,1,0,0,1,0
19 | 0,0,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,0,1,0,0,0
20 | 0,0,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,1,0,1
21 | 0,0,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,1,1
22 | 0,1,0,0,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,1,0,0
23 | 0,1,0,0,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,1,0
24 | 0,1,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0
25 | 0,1,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,1,0,0
26 | 0,1,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0
27 | 0,1,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,1,1,0,0,0
28 | 0,1,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,1,0,1,0,0
29 | 0,1,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0
30 | 0,1,0,0,0,0,0,1,0,0,0,1,0,1,0,1,0,0,1,0,0,0
31 | 0,1,0,0,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,1,0,0
32 | 0,1,0,0,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,1,1
33 | 0,1,0,0,0,0,0,1,0,0,0,1,0,1,0,0,1,0,1,0,0,0
34 | 0,1,0,0,0,0,0,1,0,0,0,1,0,1,0,0,1,0,0,1,0,1
35 | 0,1,0,0,0,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,1,1
36 | 0,1,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,1,1,0,0,0
37 | 0,1,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,1
38 | 0,1,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,1,0,0,1,1
39 | 0,1,0,0,0,0,0,1,0,0,0,1,0,0,1,1,0,0,1,0,0,0
40 | 0,1,0,0,0,0,0,1,0,0,0,1,0,0,1,1,0,0,0,1,0,0
41 | 0,1,0,0,0,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,1
42 | 0,1,0,0,0,0,0,1,0,0,0,1,0,0,1,0,1,0,1,0,0,0
43 | 0,1,0,0,0,0,0,1,0,0,0,1,0,0,1,0,1,0,0,1,0,1
44 | 0,1,0,0,0,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,1,1
45 | 0,1,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,0
46 | 0,1,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,1,0,1,0,1
47 | 0,1,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,1
48 | 0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0
49 | 0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0,0
50 | 0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,1,0
51 | 0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0
52 | 0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,1,0,0
53 | 0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0
54 | 0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,1,1,0,0,0
55 | 0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,1,0,1,0,0
56 | 0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,1,0
57 | 0,0,1,0,1,0,0,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0
58 | 0,0,1,0,1,0,0,0,1,0,0,0,0,1,0,1,0,0,0,1,0,0
59 | 0,0,1,0,1,0,0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,1
60 | 0,0,1,0,1,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0
61 | 0,0,1,0,1,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0
62 | 0,0,1,0,1,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,1,1
63 | 0,0,1,0,1,0,0,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0
64 | 0,0,1,0,1,0,0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,1
65 | 0,0,1,0,1,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,1,1
66 | 0,0,1,0,1,0,0,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0
67 | 0,0,1,0,1,0,0,0,1,0,0,0,0,0,1,1,0,0,0,1,0,0
68 | 0,0,1,0,1,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,1,0
69 | 0,0,1,0,1,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0
70 | 0,0,1,0,1,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0
71 | 0,0,1,0,1,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1
72 | 0,0,1,0,1,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,0
73 | 1,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0
74 | 1,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1
75 | 1,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,0,1,1,0,0,0
76 | 1,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,0,1,0,1,0,1
77 | 1,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,0,1,0,0,1,1
78 | 1,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0
79 | 1,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0
80 | 1,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0
81 | 1,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0
82 | 1,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0
83 | 1,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,0,1,0
84 | 1,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0
85 | 1,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,1,0,0
86 | 1,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0
87 | 1,0,0,0,0,0,1,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0
88 | 1,0,0,0,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,1,0,0
89 | 1,0,0,0,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,1,1
90 | 1,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0
91 | 1,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0
92 | 1,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,0,1,1
93 | 1,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0
94 | 1,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,1,0,1,0,1
95 | 1,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,1,0,0,1,1
96 | 1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0
97 | 1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0,1,0,0
98 | 1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0,0,1,1
99 | 1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0
100 | 1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,1,0,0,1,0,1
101 | 1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,1,0,0,0,1,1
102 | 1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,1,1,0,0,0
103 | 1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,1,0,1
104 | 1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,1
105 | 1,0,0,0,0,0,1,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0
106 | 1,0,0,0,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,1,0,0
107 | 1,0,0,0,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,1,0
108 | 1,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0
109 | 1,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0
110 | 1,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,1,0,0,0,1,0
111 | 1,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,1,1,0,0,0
112 | 1,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0
113 | 1,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0
114 | 1,0,0,0,0,0,1,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0
115 | 1,0,0,0,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,1,0,0
116 | 1,0,0,0,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,1,1
117 | 1,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0
118 | 1,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,1
119 | 1,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,1,1
120 | 1,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,1,1,0,0,0
121 | 1,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0,1,0,1
122 | 1,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0,0,1,1
123 | 1,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0
124 | 0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0
125 | 0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,0,1,1,0,0,0
126 | 0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,0,1,0,1,0,0
127 | 0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,0,1,0,0,1,0
128 | 0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0
129 | 0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,1,0,1
130 | 0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,1,1
131 | 0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0
132 | 0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,1,0,1
133 | 0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,1,1
134 | 0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,0,0
135 | 0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,1,0,1,0,1
136 | 0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,1,0,0,1,1
137 | 0,0,0,1,0,1,0,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0
138 | 0,0,0,1,0,1,0,0,0,0,0,1,0,0,1,1,0,0,0,1,0,1
139 | 0,0,0,1,0,1,0,0,0,0,0,1,0,0,1,1,0,0,0,0,1,1
140 | 0,0,0,1,0,1,0,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0
141 | 0,0,0,1,0,1,0,0,0,0,0,1,0,0,1,0,1,0,0,1,0,1
142 | 0,0,0,1,0,1,0,0,0,0,0,1,0,0,1,0,1,0,0,0,1,1
143 | 0,0,0,1,0,1,0,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0
144 | 0,0,0,1,0,1,0,0,0,0,0,1,0,0,1,0,0,1,0,1,0,1
145 | 0,0,0,1,0,1,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,1
146 | 0,0,0,1,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0
147 | 0,0,0,1,0,0,1,0,1,0,0,0,1,0,0,1,0,0,0,1,0,0
148 | 0,0,0,1,0,0,1,0,1,0,0,0,1,0,0,1,0,0,0,0,1,0
149 | 0,0,0,1,0,0,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0
150 | 0,0,0,1,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,1,0,0
151 | 0,0,0,1,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0
152 | 0,0,0,1,0,0,1,0,1,0,0,0,1,0,0,0,0,1,1,0,0,0
153 | 0,0,0,1,0,0,1,0,1,0,0,0,1,0,0,0,0,1,0,1,0,0
154 | 0,0,0,1,0,0,1,0,1,0,0,0,1,0,0,0,0,1,0,0,1,0
155 | 0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0
156 | 0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,1,0,0,0,1,0,0
157 | 0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,1,0,0,0,0,1,0
158 | 0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0
159 | 0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0
160 | 0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1
161 | 0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,0
162 | 0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,1,0,1,0,1
163 | 0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,1,0,0,1,1
164 | 0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0
165 | 0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0
166 | 0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0
167 | 0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0
168 | 0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0
169 | 0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0,0,0,1,0
170 | 0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0
171 | 0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,0,0,1,0,1,0,0
172 | 0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0
173 | 0,0,1,0,0,1,0,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0
174 | 0,0,1,0,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,1,0,0
175 | 0,0,1,0,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,1,1
176 | 0,0,1,0,0,1,0,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0
177 | 0,0,1,0,0,1,0,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0
178 | 0,0,1,0,0,1,0,0,0,1,0,0,0,1,0,0,1,0,0,0,1,1
179 | 0,0,1,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0
180 | 0,0,1,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,1,0,1
181 | 0,0,1,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,1,1
182 | 0,0,1,0,0,1,0,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0
183 | 0,0,1,0,0,1,0,0,0,1,0,0,0,0,1,1,0,0,0,1,0,0
184 | 0,0,1,0,0,1,0,0,0,1,0,0,0,0,1,1,0,0,0,0,1,1
185 | 0,0,1,0,0,1,0,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0
186 | 0,0,1,0,0,1,0,0,0,1,0,0,0,0,1,0,1,0,0,1,0,1
187 | 0,0,1,0,0,1,0,0,0,1,0,0,0,0,1,0,1,0,0,0,1,1
188 | 0,0,1,0,0,1,0,0,0,1,0,0,0,0,1,0,0,1,1,0,0,0
189 | 0,0,1,0,0,1,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,1
190 | 0,0,1,0,0,1,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,1
191 | 0,0,1,0,0,1,0,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0
192 | 0,0,1,0,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,1,0,0
193 | 0,0,1,0,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,1,0
194 | 0,0,1,0,0,1,0,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0
195 | 0,0,1,0,0,1,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0
196 | 0,0,1,0,0,1,0,0,0,0,1,0,1,0,0,0,1,0,0,0,1,0
197 | 0,0,1,0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,1,0,0,0
198 | 0,0,1,0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0
199 | 0,0,1,0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0
200 | 0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0
201 | 0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,1,0,0
202 | 0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,1,1
203 | 0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0
204 | 0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,1
205 | 0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,1,1
206 | 1,0,0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,1,0
207 | 1,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0
208 | 1,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0
209 | 1,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0
210 | 1,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0
211 | 1,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,1,0,1,0,0
212 | 1,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,1,0
213 | 1,0,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0
214 | 1,0,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,0,0,1,0,0
215 | 1,0,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,1,0
216 | 1,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0
217 | 1,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,1,0,0,1,0,0
218 | 1,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,1,0,0,0,1,0
219 | 1,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,1,1,0,0,0
220 | 1,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0
221 | 1,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0
222 | 1,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0
223 | 1,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,1,0,0
224 | 1,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,1,0
225 | 1,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0
226 | 1,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0
227 | 1,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,1,0
228 | 1,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,1,1,0,0,0
229 | 1,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0
230 | 1,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0
231 | 1,0,0,0,1,0,0,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0
232 | 0,0,1,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0,1,0,1
233 | 0,0,1,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,1
234 | 0,0,1,0,0,0,0,1,0,0,0,1,1,0,0,1,0,0,1,0,0,0
235 | 0,0,1,0,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,1,0,0
236 | 0,0,1,0,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,1,0
237 | 0,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0
238 | 0,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,1,0,0
239 | 0,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0
240 | 0,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0,0,1,1,0,0,0
241 | 0,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0,0,1,0,1,0,0
242 | 0,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0
243 | 0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,1,0,0,1,0,0,0
244 | 0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,1,0,1
245 | 0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,1,1
246 | 0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,1,0,1,0,0,0
247 | 0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,1,0,0,1,0,1
248 | 0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,1,1
249 | 0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,1,1,0,0,0
250 | 0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,1
251 | 0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,1,0,0,1,1
252 | 0,0,1,0,0,0,0,1,0,0,0,1,0,0,1,1,0,0,1,0,0,0
253 | 0,0,1,0,0,0,0,1,0,0,0,1,0,0,1,1,0,0,0,1,0,1
254 | 0,0,1,0,0,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,1
255 | 0,0,1,0,0,0,0,1,0,0,0,1,0,0,1,0,1,0,1,0,0,0
256 | 0,0,1,0,0,0,0,1,0,0,0,1,0,0,1,0,1,0,0,1,0,1
257 | 0,0,1,0,0,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,1,1
258 | 0,0,1,0,0,0,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,0
259 | 0,0,1,0,0,0,0,1,0,0,0,1,0,0,1,0,0,1,0,1,0,1
260 | 0,0,1,0,0,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,1
261 | 0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0
262 | 0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0,0
263 | 1,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1
264 | 1,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1
265 | 1,0,0,0,0,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,0
266 | 1,0,0,0,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,1,0,0
267 | 1,0,0,0,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,1,0
268 | 1,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,1,0,1,0,0,0
269 | 1,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,1,0,0,1,0,0
270 | 1,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,1,0,0,0,1,0
271 | 1,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,1,1,0,0,0
272 | 1,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,1,0,1,0,0
273 | 1,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0
274 | 1,0,0,0,0,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,0
275 | 1,0,0,0,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,1,0,0
276 | 1,0,0,0,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,1,1
277 | 1,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,0
278 | 1,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1
279 | 1,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,1
280 | 1,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,1,1,0,0,0
281 | 1,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,1,0,1,0,1
282 | 1,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,1
283 | 1,0,0,0,0,0,0,1,0,0,1,0,0,0,1,1,0,0,1,0,0,0
284 | 1,0,0,0,0,0,0,1,0,0,1,0,0,0,1,1,0,0,0,1,0,0
285 | 1,0,0,0,0,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,1,1
286 | 1,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,1,0,1,0,0,0
287 | 1,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,1,0,0,1,0,1
288 | 1,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,1,1
289 | 1,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1,1,0,0,0
290 | 1,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0,1,0,1
291 | 1,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,1
292 | 1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,1,0,0,1,0,0,0
293 | 1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,1,0,0
294 | 1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,1,0
295 | 1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0
296 | 1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,1,0,0
297 | 1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0
298 | 1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,1,1,0,0,0
299 | 1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,1,0,1,0,0
300 | 1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0
301 | 1,0,0,0,0,0,0,1,0,0,0,1,0,1,0,1,0,0,1,0,0,0
302 | 1,0,0,0,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,1,0,0
303 | 1,0,0,0,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,1,1
304 | 1,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,1,0,1,0,0,0
305 | 1,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,1,0,0,1,0,1
306 | 1,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,1,1
307 | 1,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,1,1,0,0,0
308 | 1,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,1
309 | 1,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,1,0,0,1,1
310 | 1,0,0,0,0,0,0,1,0,0,0,1,0,0,1,1,0,0,1,0,0,0
311 | 1,0,0,0,0,0,0,1,0,0,0,1,0,0,1,1,0,0,0,1,0,0
312 | 1,0,0,0,0,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,1
313 | 1,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,1,0,1,0,0,0
314 | 1,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,1,0,0,1,0,1
315 | 1,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,1,1
316 | 1,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,0
317 | 1,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,1,0,1,0,1
318 | 1,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,1
319 | 0,1,0,0,1,0,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0
320 | 0,1,0,0,1,0,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0,0
321 | 0,1,0,0,1,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,1,0
322 | 0,1,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0
323 | 0,1,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,1,0,0
324 | 0,1,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0
325 | 0,1,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,1,1,0,0,0
326 | 0,1,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,1,0,1,0,0
327 | 0,1,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,1,0
328 | 0,1,0,0,1,0,0,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0
329 | 0,1,0,0,1,0,0,0,1,0,0,0,0,1,0,1,0,0,0,1,0,0
330 | 0,1,0,0,1,0,0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0
331 | 0,1,0,0,1,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0
332 | 0,1,0,0,1,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0
333 | 0,1,0,0,1,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,1,0
334 | 0,1,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0
335 | 0,1,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0
336 | 0,1,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,1,0
337 | 0,1,0,0,1,0,0,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0
338 | 0,1,0,0,1,0,0,0,1,0,0,0,0,0,1,1,0,0,0,1,0,0
339 | 0,1,0,0,1,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,1,0
340 | 0,1,0,0,1,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0
341 | 0,1,0,0,1,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0
342 | 0,1,0,0,1,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,0
343 | 0,1,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,0
344 | 0,1,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,1,0,1,0,0
345 | 0,1,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,1,0
346 | 0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0
347 | 0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0
348 | 0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0
349 | 0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0
350 | 0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0
351 | 0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,1,0
352 | 0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0
353 | 0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,1,0,1,0,0
354 | 0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0
355 | 0,1,0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0
356 | 0,1,0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,1,0,0
357 | 0,1,0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,1,0
358 | 0,1,0,0,1,0,0,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0
359 | 0,1,0,0,1,0,0,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0
360 | 0,1,0,0,1,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0
361 | 0,1,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0
362 | 0,1,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,1,0,1,0,0
363 | 0,1,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,1,0
364 | 1,0,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0
365 | 1,0,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,0,1,0,0
366 | 1,0,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,1,1
367 | 1,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0
368 | 1,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0
369 | 1,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,0,1,1
370 | 1,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0
371 | 1,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,1
372 | 1,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,1,1
373 | 1,0,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0
374 | 1,0,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,0
375 | 1,0,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,0,1,0
376 | 1,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0
377 | 1,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0
378 | 1,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,1,1
379 | 1,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0
380 | 1,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,1,0,0,1,0,1
381 | 1,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,1,1
382 | 1,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,1,1,0,0,0
383 | 1,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,1,0,1,0,1
384 | 1,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,1,0,0,1,1
385 | 1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0
386 | 1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,1,0,0
387 | 1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,1,0
388 | 1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0
389 | 1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,1,0,0,1,0,0
390 | 1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0
391 | 1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,1,1,0,0,0
392 | 1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,1,0,1,0,0
393 | 1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,1,0,0,1,0
394 | 1,0,0,0,0,0,1,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0
395 | 1,0,0,0,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,1,0,0
396 | 1,0,0,0,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,1,1
397 | 1,0,0,0,0,0,1,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0
398 | 1,0,0,0,0,0,1,0,0,0,0,1,0,1,0,0,1,0,0,1,0,1
399 | 1,0,0,0,0,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,1,1
400 | 1,0,0,0,0,0,1,0,0,0,0,1,0,1,0,0,0,1,1,0,0,0
401 | 1,0,0,0,0,0,1,0,0,0,0,1,0,1,0,0,0,1,0,1,0,1
402 | 1,0,0,0,0,0,1,0,0,0,0,1,0,1,0,0,0,1,0,0,1,1
403 | 1,0,0,0,0,0,1,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0
404 | 1,0,0,0,0,0,1,0,0,0,0,1,0,0,1,1,0,0,0,1,0,0
405 | 1,0,0,0,0,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,1,1
406 | 1,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0
407 | 1,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1,0,1
408 | 1,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,1,1
409 | 1,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0
410 | 1,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1,0,1
411 | 1,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,1
412 | 1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,1,0,0,1,0,0,0
413 | 1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,1,0,0,0,1,0,0
414 | 1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,1,0,0,0,0,1,0
415 | 1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,1,0,0,0
416 | 1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,1,0,0
417 | 1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0
418 | 1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,1,1,0,0,0
419 | 1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,1,0,1,0,0
420 | 1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,1,0,0,1,0
421 | 1,0,0,0,0,0,0,1,1,0,0,0,0,1,0,1,0,0,1,0,0,0
422 | 1,0,0,0,0,0,0,1,1,0,0,0,0,1,0,1,0,0,0,1,0,0
423 | 1,0,0,0,0,0,0,1,1,0,0,0,0,1,0,1,0,0,0,0,1,1
424 | 1,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,1,0,1,0,0,0
425 | 1,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,1,0,0
426 | 1,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,1,1
427 | 1,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,1,1,0,0,0
428 | 1,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,1,0,1,0,1
429 | 1,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,1,0,0,1,1
430 | 1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,0,0,1,0,0,0
431 | 1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,0,0,0,1,0,0
432 | 1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,0,0,0,0,1,0
433 | 1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,1,0,1,0,0,0
434 | 1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,1,0,0,1,0,0
435 | 1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,1,0,0,0,1,1
436 | 1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,1,1,0,0,0
437 | 1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,1,0,1,0,1
438 | 1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,1,0,0,1,1
439 | 1,0,0,0,0,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,0
440 | 1,0,0,0,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,1,0,0
441 | 1,0,0,0,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,1,0
442 | 1,0,0,0,0,0,0,1,0,1,0,0,1,0,0,0,1,0,1,0,0,0
443 | 1,0,0,0,0,0,0,1,0,1,0,0,1,0,0,0,1,0,0,1,0,0
444 | 1,0,0,0,0,0,0,1,0,1,0,0,1,0,0,0,1,0,0,0,1,0
445 | 1,0,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,1,1,0,0,0
446 | 1,0,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,1,0,1,0,0
447 | 1,0,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,1,0,0,1,0
448 | 1,0,0,0,0,0,0,1,0,1,0,0,0,1,0,1,0,0,1,0,0,0
449 | 1,0,0,0,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,1,0,0
450 | 1,0,0,0,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,1,1
451 | 1,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0
452 | 1,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0
453 | 1,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,0,1,1
454 | 1,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0
455 | 1,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,1,0,1,0,1
456 | 1,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,1,1
457 | 1,0,0,0,0,0,0,1,0,1,0,0,0,0,1,1,0,0,1,0,0,0
458 | 1,0,0,0,0,0,0,1,0,1,0,0,0,0,1,1,0,0,0,1,0,0
459 | 1,0,0,0,0,0,0,1,0,1,0,0,0,0,1,1,0,0,0,0,1,1
460 | 1,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0
461 | 1,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,1
462 | 1,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,0,1,1
463 | 1,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0
464 | 0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0
465 |
--------------------------------------------------------------------------------
/src/main/resources/arffs/car_bin_test.arff:
--------------------------------------------------------------------------------
1 | @relation car_bin_test
2 |
3 | @attribute a numeric
4 | @attribute b numeric
5 | @attribute c numeric
6 | @attribute d numeric
7 | @attribute e numeric
8 | @attribute f numeric
9 | @attribute g numeric
10 | @attribute h numeric
11 | @attribute i numeric
12 | @attribute j numeric
13 | @attribute k numeric
14 | @attribute l numeric
15 | @attribute m numeric
16 | @attribute n numeric
17 | @attribute o numeric
18 | @attribute p numeric
19 | @attribute q numeric
20 | @attribute r numeric
21 | @attribute s numeric
22 | @attribute t numeric
23 | @attribute u numeric
24 | @attribute v {0, 1}
25 |
26 | @data
27 | 0,0,0,1,0,0,0,1,1,0,0,0,0,0,1,1,0,0,1,0,0,0
28 | 0,0,0,1,0,0,0,1,1,0,0,0,0,0,1,1,0,0,0,1,0,0
29 | 0,0,0,1,0,0,0,1,1,0,0,0,0,0,1,1,0,0,0,0,1,0
30 | 0,0,0,1,0,0,0,1,1,0,0,0,0,0,1,0,1,0,1,0,0,0
31 | 0,0,0,1,0,0,0,1,1,0,0,0,0,0,1,0,1,0,0,1,0,1
32 | 0,0,0,1,0,0,0,1,1,0,0,0,0,0,1,0,1,0,0,0,1,1
33 | 0,0,0,1,0,0,0,1,1,0,0,0,0,0,1,0,0,1,1,0,0,0
34 | 0,0,0,1,0,0,0,1,1,0,0,0,0,0,1,0,0,1,0,1,0,1
35 | 0,0,0,1,0,0,0,1,1,0,0,0,0,0,1,0,0,1,0,0,1,1
36 | 0,0,0,1,0,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,0
37 | 0,0,0,1,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,1,0,0
38 | 0,0,0,1,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,1,0
39 | 0,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,1,0,1,0,0,0
40 | 0,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,1,0,0,1,0,0
41 | 0,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,1,0,0,0,1,0
42 | 0,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,1,1,0,0,0
43 | 0,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,1,0,1,0,0
44 | 0,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,1,0,0,1,0
45 | 0,0,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,0,1,0,0,0
46 | 0,0,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,1,0,1
47 | 0,0,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,1,1
48 | 0,1,0,0,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,1,0,0
49 | 0,1,0,0,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,1,0
50 | 0,1,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0
51 | 0,1,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,1,0,0
52 | 0,1,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0
53 | 0,1,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,1,1,0,0,0
54 | 0,1,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,1,0,1,0,0
55 | 0,1,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0
56 | 0,1,0,0,0,0,0,1,0,0,0,1,0,1,0,1,0,0,1,0,0,0
57 | 0,1,0,0,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,1,0,0
58 | 0,1,0,0,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,1,1
59 | 0,1,0,0,0,0,0,1,0,0,0,1,0,1,0,0,1,0,1,0,0,0
60 | 0,1,0,0,0,0,0,1,0,0,0,1,0,1,0,0,1,0,0,1,0,1
61 | 0,1,0,0,0,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,1,1
62 | 0,1,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,1,1,0,0,0
63 | 0,1,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,1
64 | 0,1,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,1,0,0,1,1
65 | 0,1,0,0,0,0,0,1,0,0,0,1,0,0,1,1,0,0,1,0,0,0
66 | 0,1,0,0,0,0,0,1,0,0,0,1,0,0,1,1,0,0,0,1,0,0
67 | 0,1,0,0,0,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,1
68 | 0,1,0,0,0,0,0,1,0,0,0,1,0,0,1,0,1,0,1,0,0,0
69 | 0,1,0,0,0,0,0,1,0,0,0,1,0,0,1,0,1,0,0,1,0,1
70 | 0,1,0,0,0,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,1,1
71 | 0,1,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,0
72 | 0,1,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,1,0,1,0,1
73 | 0,1,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,1
74 | 0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0
75 | 0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0,0
76 | 0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,1,0
77 | 0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0
78 | 0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,1,0,0
79 | 0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0
80 | 0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,1,1,0,0,0
81 | 0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,1,0,1,0,0
82 | 0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,1,0
83 | 0,0,1,0,1,0,0,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0
84 | 0,0,1,0,1,0,0,0,1,0,0,0,0,1,0,1,0,0,0,1,0,0
85 | 0,0,1,0,1,0,0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,1
86 | 0,0,1,0,1,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0
87 | 0,0,1,0,1,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0
88 | 0,0,1,0,1,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,1,1
89 | 0,0,1,0,1,0,0,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0
90 | 0,0,1,0,1,0,0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,1
91 | 0,0,1,0,1,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,1,1
92 | 0,0,1,0,1,0,0,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0
93 | 0,0,1,0,1,0,0,0,1,0,0,0,0,0,1,1,0,0,0,1,0,0
94 | 0,0,1,0,1,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,1,0
95 | 0,0,1,0,1,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0
96 | 0,0,1,0,1,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0
97 | 0,0,1,0,1,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1
98 | 0,0,1,0,1,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,0
99 | 1,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0
100 | 1,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1
101 | 1,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,0,1,1,0,0,0
102 | 1,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,0,1,0,1,0,1
103 | 1,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,0,1,0,0,1,1
104 | 1,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0
105 | 1,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0
106 | 1,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0
107 | 1,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0
108 | 1,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0
109 | 1,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,0,1,0
110 | 1,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0
111 | 1,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,1,0,0
112 | 1,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0
113 | 1,0,0,0,0,0,1,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0
114 | 1,0,0,0,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,1,0,0
115 | 1,0,0,0,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,1,1
116 | 1,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0
117 | 1,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0
118 | 1,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,0,1,1
119 | 1,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0
120 | 1,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,1,0,1,0,1
121 | 1,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,1,0,0,1,1
122 | 1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0
123 | 1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0,1,0,0
124 | 1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0,0,1,1
125 | 1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0
126 | 1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,1,0,0,1,0,1
127 | 1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,1,0,0,0,1,1
128 | 1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,1,1,0,0,0
129 | 1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,1,0,1
130 | 1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,1
131 | 1,0,0,0,0,0,1,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0
132 | 1,0,0,0,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,1,0,0
133 | 1,0,0,0,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,1,0
134 | 1,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0
135 | 1,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0
136 | 1,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,1,0,0,0,1,0
137 | 1,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,1,1,0,0,0
138 | 1,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0
139 | 1,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0
140 | 1,0,0,0,0,0,1,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0
141 | 1,0,0,0,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,1,0,0
142 | 1,0,0,0,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,1,1
143 | 1,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0
144 | 1,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,1
145 | 1,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,1,1
146 | 1,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,1,1,0,0,0
147 | 1,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0,1,0,1
148 | 1,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0,0,1,1
149 | 1,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0
150 | 0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0
151 | 0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,0,1,1,0,0,0
152 | 0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,0,1,0,1,0,0
153 | 0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,0,1,0,0,1,0
154 | 0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0
155 | 0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,1,0,1
156 | 0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,1,1
157 | 0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0
158 | 0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,1,0,1
159 | 0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,1,1
160 | 0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,0,0
161 | 0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,1,0,1,0,1
162 | 0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,1,0,0,1,1
163 | 0,0,0,1,0,1,0,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0
164 | 0,0,0,1,0,1,0,0,0,0,0,1,0,0,1,1,0,0,0,1,0,1
165 | 0,0,0,1,0,1,0,0,0,0,0,1,0,0,1,1,0,0,0,0,1,1
166 | 0,0,0,1,0,1,0,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0
167 | 0,0,0,1,0,1,0,0,0,0,0,1,0,0,1,0,1,0,0,1,0,1
168 | 0,0,0,1,0,1,0,0,0,0,0,1,0,0,1,0,1,0,0,0,1,1
169 | 0,0,0,1,0,1,0,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0
170 | 0,0,0,1,0,1,0,0,0,0,0,1,0,0,1,0,0,1,0,1,0,1
171 | 0,0,0,1,0,1,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,1
172 | 0,0,0,1,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0
173 | 0,0,0,1,0,0,1,0,1,0,0,0,1,0,0,1,0,0,0,1,0,0
174 | 0,0,0,1,0,0,1,0,1,0,0,0,1,0,0,1,0,0,0,0,1,0
175 | 0,0,0,1,0,0,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0
176 | 0,0,0,1,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,1,0,0
177 | 0,0,0,1,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0
178 | 0,0,0,1,0,0,1,0,1,0,0,0,1,0,0,0,0,1,1,0,0,0
179 | 0,0,0,1,0,0,1,0,1,0,0,0,1,0,0,0,0,1,0,1,0,0
180 | 0,0,0,1,0,0,1,0,1,0,0,0,1,0,0,0,0,1,0,0,1,0
181 | 0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0
182 | 0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,1,0,0,0,1,0,0
183 | 0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,1,0,0,0,0,1,0
184 | 0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0
185 | 0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0
186 | 0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1
187 | 0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,0
188 | 0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,1,0,1,0,1
189 | 0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,1,0,0,1,1
190 | 0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0
191 | 0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0
192 | 0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0
193 | 0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0
194 | 0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0
195 | 0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0,0,0,1,0
196 | 0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0
197 | 0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,0,0,1,0,1,0,0
198 | 0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0
199 | 0,0,1,0,0,1,0,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0
200 | 0,0,1,0,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,1,0,0
201 | 0,0,1,0,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,1,1
202 | 0,0,1,0,0,1,0,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0
203 | 0,0,1,0,0,1,0,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0
204 | 0,0,1,0,0,1,0,0,0,1,0,0,0,1,0,0,1,0,0,0,1,1
205 | 0,0,1,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0
206 | 0,0,1,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,1,0,1
207 | 0,0,1,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,1,1
208 | 0,0,1,0,0,1,0,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0
209 | 0,0,1,0,0,1,0,0,0,1,0,0,0,0,1,1,0,0,0,1,0,0
210 | 0,0,1,0,0,1,0,0,0,1,0,0,0,0,1,1,0,0,0,0,1,1
211 | 0,0,1,0,0,1,0,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0
212 | 0,0,1,0,0,1,0,0,0,1,0,0,0,0,1,0,1,0,0,1,0,1
213 | 0,0,1,0,0,1,0,0,0,1,0,0,0,0,1,0,1,0,0,0,1,1
214 | 0,0,1,0,0,1,0,0,0,1,0,0,0,0,1,0,0,1,1,0,0,0
215 | 0,0,1,0,0,1,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,1
216 | 0,0,1,0,0,1,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,1
217 | 0,0,1,0,0,1,0,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0
218 | 0,0,1,0,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,1,0,0
219 | 0,0,1,0,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,1,0
220 | 0,0,1,0,0,1,0,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0
221 | 0,0,1,0,0,1,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0
222 | 0,0,1,0,0,1,0,0,0,0,1,0,1,0,0,0,1,0,0,0,1,0
223 | 0,0,1,0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,1,0,0,0
224 | 0,0,1,0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0
225 | 0,0,1,0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0
226 | 0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0
227 | 0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,1,0,0
228 | 0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,1,1
229 | 0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0
230 | 0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,1
231 | 0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,1,1
232 | 1,0,0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,1,0
233 | 1,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0
234 | 1,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0
235 | 1,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0
236 | 1,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0
237 | 1,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,1,0,1,0,0
238 | 1,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,1,0
239 | 1,0,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0
240 | 1,0,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,0,0,1,0,0
241 | 1,0,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,1,0
242 | 1,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0
243 | 1,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,1,0,0,1,0,0
244 | 1,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,1,0,0,0,1,0
245 | 1,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,1,1,0,0,0
246 | 1,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0
247 | 1,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0
248 | 1,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0
249 | 1,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,1,0,0
250 | 1,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,1,0
251 | 1,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0
252 | 1,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0
253 | 1,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,1,0
254 | 1,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,1,1,0,0,0
255 | 1,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0
256 | 1,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0
257 | 1,0,0,0,1,0,0,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0
258 | 0,0,1,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0,1,0,1
259 | 0,0,1,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,1
260 | 0,0,1,0,0,0,0,1,0,0,0,1,1,0,0,1,0,0,1,0,0,0
261 | 0,0,1,0,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,1,0,0
262 | 0,0,1,0,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,1,0
263 | 0,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0
264 | 0,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,1,0,0
265 | 0,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0
266 | 0,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0,0,1,1,0,0,0
267 | 0,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0,0,1,0,1,0,0
268 | 0,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0
269 | 0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,1,0,0,1,0,0,0
270 | 0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,1,0,1
271 | 0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,1,1
272 | 0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,1,0,1,0,0,0
273 | 0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,1,0,0,1,0,1
274 | 0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,1,1
275 | 0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,1,1,0,0,0
276 | 0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,1
277 | 0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,1,0,0,1,1
278 | 0,0,1,0,0,0,0,1,0,0,0,1,0,0,1,1,0,0,1,0,0,0
279 | 0,0,1,0,0,0,0,1,0,0,0,1,0,0,1,1,0,0,0,1,0,1
280 | 0,0,1,0,0,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,1
281 | 0,0,1,0,0,0,0,1,0,0,0,1,0,0,1,0,1,0,1,0,0,0
282 | 0,0,1,0,0,0,0,1,0,0,0,1,0,0,1,0,1,0,0,1,0,1
283 | 0,0,1,0,0,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,1,1
284 | 0,0,1,0,0,0,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,0
285 | 0,0,1,0,0,0,0,1,0,0,0,1,0,0,1,0,0,1,0,1,0,1
286 | 0,0,1,0,0,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,1
287 | 0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0
288 | 0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0,0
289 | 1,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1
290 | 1,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1
291 | 1,0,0,0,0,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,0
292 | 1,0,0,0,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,1,0,0
293 | 1,0,0,0,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,1,0
294 | 1,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,1,0,1,0,0,0
295 | 1,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,1,0,0,1,0,0
296 | 1,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,1,0,0,0,1,0
297 | 1,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,1,1,0,0,0
298 | 1,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,1,0,1,0,0
299 | 1,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0
300 | 1,0,0,0,0,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,0
301 | 1,0,0,0,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,1,0,0
302 | 1,0,0,0,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,1,1
303 | 1,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,0
304 | 1,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1
305 | 1,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,1
306 | 1,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,1,1,0,0,0
307 | 1,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,1,0,1,0,1
308 | 1,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,1
309 | 1,0,0,0,0,0,0,1,0,0,1,0,0,0,1,1,0,0,1,0,0,0
310 | 1,0,0,0,0,0,0,1,0,0,1,0,0,0,1,1,0,0,0,1,0,0
311 | 1,0,0,0,0,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,1,1
312 | 1,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,1,0,1,0,0,0
313 | 1,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,1,0,0,1,0,1
314 | 1,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,1,1
315 | 1,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1,1,0,0,0
316 | 1,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0,1,0,1
317 | 1,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,1
318 | 1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,1,0,0,1,0,0,0
319 | 1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,1,0,0
320 | 1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,1,0
321 | 1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0
322 | 1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,1,0,0
323 | 1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0
324 | 1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,1,1,0,0,0
325 | 1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,1,0,1,0,0
326 | 1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0
327 | 1,0,0,0,0,0,0,1,0,0,0,1,0,1,0,1,0,0,1,0,0,0
328 | 1,0,0,0,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,1,0,0
329 | 1,0,0,0,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,1,1
330 | 1,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,1,0,1,0,0,0
331 | 1,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,1,0,0,1,0,1
332 | 1,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,1,1
333 | 1,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,1,1,0,0,0
334 | 1,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,1
335 | 1,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,1,0,0,1,1
336 | 1,0,0,0,0,0,0,1,0,0,0,1,0,0,1,1,0,0,1,0,0,0
337 | 1,0,0,0,0,0,0,1,0,0,0,1,0,0,1,1,0,0,0,1,0,0
338 | 1,0,0,0,0,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,1
339 | 1,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,1,0,1,0,0,0
340 | 1,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,1,0,0,1,0,1
341 | 1,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,1,1
342 | 1,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,0
343 | 1,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,1,0,1,0,1
344 | 1,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,1
345 | 0,1,0,0,1,0,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0
346 | 0,1,0,0,1,0,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0,0
347 | 0,1,0,0,1,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,1,0
348 | 0,1,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0
349 | 0,1,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,1,0,0
350 | 0,1,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0
351 | 0,1,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,1,1,0,0,0
352 | 0,1,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,1,0,1,0,0
353 | 0,1,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,1,0
354 | 0,1,0,0,1,0,0,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0
355 | 0,1,0,0,1,0,0,0,1,0,0,0,0,1,0,1,0,0,0,1,0,0
356 | 0,1,0,0,1,0,0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0
357 | 0,1,0,0,1,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0
358 | 0,1,0,0,1,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0
359 | 0,1,0,0,1,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,1,0
360 | 0,1,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0
361 | 0,1,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0
362 | 0,1,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,1,0
363 | 0,1,0,0,1,0,0,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0
364 | 0,1,0,0,1,0,0,0,1,0,0,0,0,0,1,1,0,0,0,1,0,0
365 | 0,1,0,0,1,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,1,0
366 | 0,1,0,0,1,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0
367 | 0,1,0,0,1,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0
368 | 0,1,0,0,1,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,0
369 | 0,1,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,0
370 | 0,1,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,1,0,1,0,0
371 | 0,1,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,1,0
372 | 0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0
373 | 0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0
374 | 0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0
375 | 0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0
376 | 0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0
377 | 0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,1,0
378 | 0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0
379 | 0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,1,0,1,0,0
380 | 0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0
381 | 0,1,0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0
382 | 0,1,0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,1,0,0
383 | 0,1,0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,1,0
384 | 0,1,0,0,1,0,0,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0
385 | 0,1,0,0,1,0,0,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0
386 | 0,1,0,0,1,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0
387 | 0,1,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0
388 | 0,1,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,1,0,1,0,0
389 | 0,1,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,1,0
390 | 1,0,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0
391 | 1,0,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,0,1,0,0
392 | 1,0,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,1,1
393 | 1,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0
394 | 1,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0
395 | 1,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,0,1,1
396 | 1,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0
397 | 1,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,1
398 | 1,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,1,1
399 | 1,0,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0
400 | 1,0,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,0
401 | 1,0,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,0,1,0
402 | 1,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0
403 | 1,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0
404 | 1,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,1,1
405 | 1,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0
406 | 1,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,1,0,0,1,0,1
407 | 1,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,1,1
408 | 1,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,1,1,0,0,0
409 | 1,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,1,0,1,0,1
410 | 1,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,1,0,0,1,1
411 | 1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0
412 | 1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,1,0,0
413 | 1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,1,0
414 | 1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0
415 | 1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,1,0,0,1,0,0
416 | 1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0
417 | 1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,1,1,0,0,0
418 | 1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,1,0,1,0,0
419 | 1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,1,0,0,1,0
420 | 1,0,0,0,0,0,1,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0
421 | 1,0,0,0,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,1,0,0
422 | 1,0,0,0,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,1,1
423 | 1,0,0,0,0,0,1,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0
424 | 1,0,0,0,0,0,1,0,0,0,0,1,0,1,0,0,1,0,0,1,0,1
425 | 1,0,0,0,0,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,1,1
426 | 1,0,0,0,0,0,1,0,0,0,0,1,0,1,0,0,0,1,1,0,0,0
427 | 1,0,0,0,0,0,1,0,0,0,0,1,0,1,0,0,0,1,0,1,0,1
428 | 1,0,0,0,0,0,1,0,0,0,0,1,0,1,0,0,0,1,0,0,1,1
429 | 1,0,0,0,0,0,1,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0
430 | 1,0,0,0,0,0,1,0,0,0,0,1,0,0,1,1,0,0,0,1,0,0
431 | 1,0,0,0,0,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,1,1
432 | 1,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0
433 | 1,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1,0,1
434 | 1,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,1,1
435 | 1,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0
436 | 1,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1,0,1
437 | 1,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,1
438 | 1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,1,0,0,1,0,0,0
439 | 1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,1,0,0,0,1,0,0
440 | 1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,1,0,0,0,0,1,0
441 | 1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,1,0,0,0
442 | 1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,1,0,0
443 | 1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0
444 | 1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,1,1,0,0,0
445 | 1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,1,0,1,0,0
446 | 1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,1,0,0,1,0
447 | 1,0,0,0,0,0,0,1,1,0,0,0,0,1,0,1,0,0,1,0,0,0
448 | 1,0,0,0,0,0,0,1,1,0,0,0,0,1,0,1,0,0,0,1,0,0
449 | 1,0,0,0,0,0,0,1,1,0,0,0,0,1,0,1,0,0,0,0,1,1
450 | 1,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,1,0,1,0,0,0
451 | 1,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,1,0,0
452 | 1,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,1,1
453 | 1,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,1,1,0,0,0
454 | 1,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,1,0,1,0,1
455 | 1,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,1,0,0,1,1
456 | 1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,0,0,1,0,0,0
457 | 1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,0,0,0,1,0,0
458 | 1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,0,0,0,0,1,0
459 | 1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,1,0,1,0,0,0
460 | 1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,1,0,0,1,0,0
461 | 1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,1,0,0,0,1,1
462 | 1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,1,1,0,0,0
463 | 1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,1,0,1,0,1
464 | 1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,1,0,0,1,1
465 | 1,0,0,0,0,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,0
466 | 1,0,0,0,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,1,0,0
467 | 1,0,0,0,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,1,0
468 | 1,0,0,0,0,0,0,1,0,1,0,0,1,0,0,0,1,0,1,0,0,0
469 | 1,0,0,0,0,0,0,1,0,1,0,0,1,0,0,0,1,0,0,1,0,0
470 | 1,0,0,0,0,0,0,1,0,1,0,0,1,0,0,0,1,0,0,0,1,0
471 | 1,0,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,1,1,0,0,0
472 | 1,0,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,1,0,1,0,0
473 | 1,0,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,1,0,0,1,0
474 | 1,0,0,0,0,0,0,1,0,1,0,0,0,1,0,1,0,0,1,0,0,0
475 | 1,0,0,0,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,1,0,0
476 | 1,0,0,0,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,1,1
477 | 1,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0
478 | 1,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0
479 | 1,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,0,1,1
480 | 1,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0
481 | 1,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,1,0,1,0,1
482 | 1,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,1,1
483 | 1,0,0,0,0,0,0,1,0,1,0,0,0,0,1,1,0,0,1,0,0,0
484 | 1,0,0,0,0,0,0,1,0,1,0,0,0,0,1,1,0,0,0,1,0,0
485 | 1,0,0,0,0,0,0,1,0,1,0,0,0,0,1,1,0,0,0,0,1,1
486 | 1,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0
487 | 1,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,1
488 | 1,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,0,1,1
489 | 1,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0
490 | 0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0
491 |
--------------------------------------------------------------------------------